
.check_switch {
    position: relative;
    width: 40px;
    height: 20px;
}

.check_switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

#env_prio_content {
    cursor: pointer;
}

.check_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background-color: #cbcaca;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.check_slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    bottom: -1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    border: 1px solid #aaaaaa;
}

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

.div_envio_prioritario {
    display: flex;
    /*align-items: center;*/
    margin-top: 30px;
    justify-content: center;
    color: var(--cml-body-color);
    white-space: nowrap;
}
.div_check_individual{
    display: flex;
    flex-direction: column;
}
#envio_prio_span {
    margin-left: 50px;
    font-size: var(--cml-body-size);
}
.text_checks{  
    cursor: pointer;
}
.text_checks.checked{
    text-shadow:0px 0px 1px black;
    color: #666;
}
#envio_prio_dates {
    font-size: var(--cml-body-sub-size);
    margin-left: 5px;
    line-height: 24px;
}
#env_prio_slider {
    height: 20px;
    top: -5px;
}
@media (max-width: 600px) {
    .div_envio_prioritario {
        flex-direction: column;
        align-items: center;
    }
    #envio_prio_dates {
        margin-left: 65px;
    }
}