/*Css Product Slider Tab Filter*/
input::selection {
  color: #fff;
  background: #f24973;
}
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}
.tabset .tab-panel {display: none;}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}
#poststuff .inside {
  margin: 10px 0 0;
}
/*Styling*/
.tabset > label {
 position: relative;
 display: inline-block;
 padding: 15px 15px;
 border: 1px solid transparent;
 border-bottom: 0;
 cursor: pointer;
 font-size: 14px;
 font-weight: 600;
 background: #f24973;
 font-family: sans-serif;
 color: #fff;
 line-height: 1;
 transition: all 0.7s;
 margin-left: -4px;
 border-left: 1px solid #ffffff;
}
.tab-icon {
  width: 20px;
  margin-right: 5px;
  font-size: 13px;
  text-align: center;
}
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}
.tabset > input:checked + label {
  color: #f24973;
  background-color: #fff;
  box-shadow: 0 3px 0 0 #f24973 inset;
}
.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
/*Demo purposes only*/
*,
*:before,
*:after {
  box-sizing: border-box;
}
.tabset {
  max-width: 80em;
}
/*input icons css*/
.input-icon-wrap {
  display: inline-flex;
  flex-direction: row;
}
.input-icon {
 background: #ddd;
 color: #555;
 border: 1px solid #7b776c;
 background-color: #f5f5f5;
 border-right: 0;
 border-radius: 4px 0 0 4px;
}
.input-with-icon {
  border: none;
  width: 65px;
}
.input-icon, .input-with-icon {
  padding: 3px;
  padding-top: 10px;
}
/*Toggle Button Css*/
.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 34px;
}
.switch input {display:none;}
.slider {
 position: absolute;
 cursor: pointer;
 top: 0;
 left: 0;
 right: 0;
 border-radius: 4px;
 bottom: 0;
 background-color: #ca2222;
 -webkit-transition: .4s;
 transition: .4s;
}
.slider:before {
 position: absolute;
 content: "";
 height: 18px;
 width: 24px;
 left: 6px;
 bottom: 8px;
 border-radius: 4px;
 background-color: white;
 -webkit-transition: .4s;
 transition: .4s;
}
input:checked + .slider {
  background-color: #2ab934;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(55px);
  -ms-transform: translateX(55px);
  transform: translateX(55px);
}
/*chosen categories */
.chosen-container-multi{
  width: 300px!important;
}
/*------ ADDED CSS ---------*/
.on
{
  display: none;
}
.on, .off
{
  color: white;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
}
input:checked+ .slider .on
{display: block;}

input:checked + .slider .off
{display: none;}
/*setting columns css*/
.row {
  display: flex;
  flex-wrap: wrap;
}
.column {
  flex: 25%;
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .column {
    flex: 50%;
  }
}
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}
.product-slider h3 {
  overflow: hidden;
  border-radius: 5px;
  padding: 20px 55px;
  color: #000;
  text-align: left;
  font-size: 15px!important;
  position: relative;
  width: 36%;
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
}
.ps-subtitle-text{
  padding: 0px 55px;
  font-style: italic;
  color: gray;
  font-family: inherit;
  position: relative;
  top: -10px;
  display: block;
  width: 300px;
  word-wrap: break-word;
}
/* plugin dashboard notices */
.plugin-notices{
  padding: 10px 20px;
  overflow: hidden;
}
.plugin-notices img{
  float: left;
}
/*theme-browser*/
.theme-browser .theme .theme-name {
  height: auto;
}
@media screen and (max-width: 768px) {
  .product-slider h3 {
    padding: 15px 13px;
    font-size: 15px!important;
    width: 30%;
  }
}
@media screen and (max-width: 425px) {
  .product-slider h3 {
   padding: 14px 0px;
   font-size: 12px!important;
   width: 45%;
 }
 .color-box {
  margin-left: 85px;
}
}
/*color image*/
input[type=radio] {
 display: none;
}
input[type=radio]:checked + label>img {
  border: 1px dashed #444;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week] {
  padding: 0 8px;
  line-height: 2;
  min-height: 30px;
  border-radius: 0 4px 4px 0;
}
input[type=number]:focus {
  border-color: #8c8f94;
  box-shadow: none ;
  outline: 2px solid transparent;
}
/* custom css */
.custom_css_h3{
  text-align: center;
  font-style: italic;
  color: gray;
  font-family: inherit;
  font-size: 22px;
  bottom: 10px;
}
.WP_Edit{
 overflow-x: hidden;
}
.WPS_editor {
  display: flex;
  flex-flow: row wrap;
  min-width: 60vw;
  min-height: 500px;
  max-height: 500px;
  background: grey;
  resize: none;
}
.WPS_editor .WPS_Number {
  background:#ffff;
  color: #62a9b9;
  display: flex;
  flex-flow: column wrap;
  padding: 1rem;
  overflow: hidden;
}
.WPS_editor .WPS_Number span {
  padding: 0.5rem;
  color: #62a9b9;
}
.WPS_editor textarea {
  background: #ececec;
  flex: 1;
  border: 1px solid #ececec
  color: white;
  padding: 1rem;
  line-height: 2.2;
  overflow: hidden;
}
.WPS_editor textarea:focus {
  outline: none;
}
/*pro demo*/
.pro-demo{
  background: #d4d4d4;
  padding: 0 10px;
  text-transform:capitalize;
  color: grey;
  font-weight: 600;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.pro-demo-text{
  color:#d4d4d4!important;
  border: none!important;
}