/* The switch - the box around the slider */
.toggle_swith_div {
    width: 100%;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    display: none;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #2196f3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
/*********** end of The switch - the box around the slider ***************/

.required {
    color: red;
}
.margin-left {
    margin-left: 1%;
}
.erImg img {
    height: 135px;
}
.marginLeft5 {
    /*    margin-left: -5em;*/
}
.preloader {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.5) url("../images/loader.gif") no-repeat
        center center;
}
.padTop2 {
    padding-top: 2em;
}
.padRight10 {
    padding-right: 10px;
}
.preloaderText {
    top: 26em;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

/* Publish module */
.width100 {
    width: 100%;
}

/* Publish module ends */

