
.container_check{
    margin: 0 auto;
    text-align: center;
    color: white;

    zoom: 48%;
}

.container_check_sm{
    margin: 0 auto;
    color: white;

    zoom: 36%;
}

.check_si_no.toggle{
    display: none;
}

.check_si_no.toggle + .label_si_no{
    display: inline-block;
    height: 60px;
    width: 150px;
    position: relative;
    font-size: 20px;
    border: 4px solid #CB3234;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.check_si_no.toggle + .label_si_no:before{
    position: absolute;
    top: 4px;
    height: 44px;
    width: 44px;
    content: '';
    transition: all 0.3s ease;
    z-index: 3;
}

.check_si_no.toggle + .label_si_no:after{
    width: 140px;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-overflow: ellipsis;
    overflow: hidden;
}


.check_si_no.toggle + .label_si_no{
    border-radius: 30px;
}


.check_si_no.toggle + .label_si_no:before{
    border-radius: 50%;
}

.check_si_no.toggle:not(:checked) + .label_si_no{
    background-color: transparent;
    text-align: right;
}

.check_si_no.toggle:not(:checked) + .label_si_no:after{
    content: attr(data-unchecked);
    right: 0;
    left: auto;
    opacity: 1;
    color: #4d4d4d;
}

.check_si_no.toggle:not(:checked) + .label_si_no:before{
    left: 4px;
    background-color: #CB3234;
}

.check_si_no.toggle:checked + .label_si_no{
    text-align: left;
    border-color: #7BB622;
}

.check_si_no.toggle:checked + .label_si_no:after{
    content: attr(data-checked);
    left: 4px;
    right: auto;
    opacity: 1;
    color: #4d4d4d;
}

.check_si_no.toggle:checked + .label_si_no:before{
    left: 94px;
    background-color: #7BB622;
}
