@charset "UTF-8";

/* input styles !!!YOU NEED THEM */
.checkbox-block {
    display: flex;
    justify-content: space-between;
}

.checkbox-effect:not(:checked),
.checkbox-effect:checked {
    position: absolute;
    left: -9999px;
}

label {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

/* checkbox effect #1 */
.checkbox-effect-1:not(:checked) + label:before,
.checkbox-effect-1:checked + label:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #5a5a5a;
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 15px;
}
.radio-effect-2 {
    border-radius: 50%;
}

.checkbox-effect-1:not(:checked) + label:after,
.checkbox-effect-1:checked + label:after {
    content: "";
    font-family: fontawesome;
    font-size: 22px;
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    top: 0;
    left: 5px;
    color: #fff;
    transform-origin: center center;
}

.checkbox-effect-1:not(:checked) + label:after {
    transform: scale(0);
}

.checkbox-effect-1:checked + label:before {
    background-color: var(--btn-bg-color);
    border-color: var(--btn-bg-color);
    color: var(--btn-color);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.checkbox-effect-1:checked + label:after {
    transform: scale(1);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.2s;
}

/* checkbox effect #2 */
.checkbox-effect-2:not(:checked) + label:before,
.checkbox-effect-2:checked + label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #5a5a5a;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: 20px;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.2s;
}

.checkbox-effect-2:not(:checked) + label:after,
.checkbox-effect-2:checked + label:after {
    content: "";
    font-family: fontawesome;
    font-size: 25px;
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0px;
    color: #00711b;
}

.checkbox-effect-2:not(:checked) + label:after {
    opacity: 0;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.checkbox-effect-2:checked + label:before {
    opacity: 0;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.checkbox-effect-2:checked + label:after {
    opacity: 1;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.2s;
}


/* checkbox effect #4 */
.checkbox-effect-4:not(:checked) + label:before,
.checkbox-effect-4:checked + label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #5a5a5a;
    box-sizing: border-box;
    border-radius: 3px;
    margin-right: 20px;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.2s;
}

.checkbox-effect-4:not(:checked) + label:after,
.checkbox-effect-4:checked + label:after {
    content: "";
    font-family: fontawesome;
    font-size: 24px;
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    top: 0;
    left: 2px;
    color: green;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform-origin: center center;
    opacity: 0;
}

.checkbox-effect-4:not(:checked) + label:after {
    transform: scale(0);
}

.checkbox-effect-4:checked + label:before {
    transform: scale(0);
    opacity: 0;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.checkbox-effect-4:checked + label:after {
    transform: scale(1);
    opacity: 1;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.57, 1.9, 0, 1.52);
    transition-delay: 0.2s;
}

/* checkbox effect #5 */
.checkbox-effect-5:not(:checked) + label:before,
.checkbox-effect-5:checked + label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #5a5a5a;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: 20px;
    transform-origin: center center;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.checkbox-effect-5:not(:checked) + label:after,
.checkbox-effect-5:checked + label:after {
    content: "";
    font-family: fontawesome;
    font-size: 10px;
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    top: 0;
    left: 1px;
    color: #fff;
}

.checkbox-effect-5:not(:checked) + label:after {
    opacity: 0;
}

.checkbox-effect-5:checked + label:before {
    transform: scale(1.5);
    background-color: green;
    border-color:  green;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.57, 1.9, 0, 1.52);
    transition-delay: 0s;
}

.checkbox-effect-5:checked + label:after {
    opacity: 1;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.2s;
}

/* checkbox effect #6 */
.checkbox-effect-6:not(:checked) + label:before,
.checkbox-effect-6:checked + label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #5a5a5a;
    box-sizing: border-box;
    border-radius: 3px;
    margin-right: 20px;
}

.checkbox-effect-6:not(:checked) + label:after,
.checkbox-effect-6:checked + label:after {
    content: "";
    font-family: fontawesome;
    font-size: 21px;
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    top: -2px;
    left: 1px;
    color: #C42021;
    text-shadow: 0px -1px 0px #fff;
    transform-origin: center center;
}

.checkbox-effect-6:not(:checked) + label:after {
    transform: scale(1, 0);
}

.checkbox-effect-6:checked + label:after {
    transform: scale(1, 1);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
}














.div-radio-check-input {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    background-color: #efefef;
    margin-bottom: 15px;
    border: 1px solid grey;
    /*accent-color: #ca0202;*/
    accent-color: grey;
    padding: 5px 20px 5px 20px;
    /*border-radius: 12px;*/
    border-radius: 10px !important;
}
.div-radio-check-input:hover {
    border: 2px solid var(--btn-bg-color);
    color: var(--btn-color);
    transform: scale(1.10);
}

.div-radio-check-input:has(input[type="radio"]:checked) {
    border: 3px solid white;
    transform: scale(1.2);
    font-size: 30px;
    color: #ca0202;
    background-color: var(--btn-bg-color);
    background-color: #FFCC00;
    color: var(--btn-color);
}
/*.div-radio-check-input:has(input[type="radio"]:checked) .label-radio-check-input {
    color: #fff;
    background-color: #ca0202;
}*/

.div-radio-check-input:has(input[type="checkbox"]:checked){
    border: 3px solid white;
    transform: scale(1.1);
    font-size: 23px;
    color: #fff;
    background-color: #ca0202;
}
.div-radio-check-input:has(input[type="checkbox"]:checked) .label-radio-check-input{
    color: #fff;
}

.input-radio-check {
    /*flex: 0 0 50px;*/
    border: 3px solid white;
    width: 22px;
    height: 22px;
    padding: 0;
    cursor: pointer;
}

.label-radio-check-input  {
    color: #000;
    font-size: 17px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.50px;
    text-align: left;
    padding: 4px 10px 4px 10px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0rem;
}