.jo-toast {
    overflow-y: auto;
    height: 48px;
    width: fit-content;
    padding: 0 10px;
    visibility: hidden;
    min-width: 288px;
    max-width: 576px;
    margin-left: -144px;
    text-align: center;
    border-radius: 5px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    /*bottom: 166px;*/
    bottom: 3%;
    text-align: center;
    line-height: 48px;
    font-weight: bold;
}

.jo-toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.7s, fadeout 0.7s 2.5s;
    animation: fadein 0.7s, fadeout 0.7s 2.5s;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {display:none;}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2196F3;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .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%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #2c2c2c;
    -webkit-box-shadow: 0 0 0px 1000px #EEE inset;
    box-shadow: 0 0 0px 1000px #EEE inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Pad */
@media screen and (max-width: 1099px) {
    .col-md-offset-3 {
         margin-left: 0px !important;
    }

    .col-md-6 {
        width: 100% !important;
    }
}

