.mos-form-error{border: 2px solid red}
.form-error{border: 2px solid red}
.tab-headder{
padding:3px;
background:#EDEDED;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:none;
color:#000000;
padding: 5px 8px 5px 5px;
-moz-border-radius-bottomright:15px;
-moz-border-top-right-radius: 15px; 
border-top-right-radius:15px; 
border-bottom-right-radius:15px;
cursor: pointer;
}
.tab-headder:hover{
background: #EDED00;
-moz-border-radius-bottomright:15px;
-moz-border-top-right-radius: 15px; 
border-top-right-radius:15px; 
border-bottom-right-radius:15px;
}
.tab-headder-current{
background: #55E000;
color:#000000;
-moz-border-radius-bottomright:15px;
-moz-border-top-right-radius: 15px; 
border-top-right-radius:15px; 
border-bottom-right-radius:15px;
}

.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;  
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}