#disabled-js {
    background-color: #8e9396;
}

.modal-on-off-js {
    width: 650px;
    height: 200px;
    background-color: #fff;
}

.full-size-screen {
    width: 100vw !important;
    height: 100vh !important;
}

.custom-radio[type="radio"]:checked,
.custom-radio[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio[type="radio"]:checked + label,
.custom-radio[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    line-height: 30px;
    display: inline-block;
}

.custom-radio[type="radio"]:checked + label:before,
.custom-radio[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border: 1px solid #41A38C;
    border-radius: 100%;
    background: #fff;
}
.custom-radio[type="radio"]:checked + label:after,
.custom-radio[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #41A38C;
    position: absolute;
    top: 7px;
    left: 7px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radio[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
