.txHAKrToHamvEqKHkEwODwaQ {
    margin-top: 30px;
    text-align: center;
    color: var(--light-text-color);
    font-size: 28px;
    font-weight: 400;
}

.tBDnqXZWkPLhYbGiHjrGqoQe {
    margin-bottom: 30px;
}

.uXdYKxzQyFlRMTyxBeCExINF {
    margin: 10px 0 20px 0;
    text-align: center;
    color: var(--light-text-color);
    font-size: 16px;
    font-weight: 350;
}

.uXdYKxzQyFlRMTyxBeCExINF p {
    text-align: center;
    color: var(--light-text-color);
    font-size: 16px;
    font-weight: 350;
    padding: 3px 0;
}

.selection {
    width: 100%;
    padding: 16px;
    background: var(--dark-bg-color-4);
    border-radius: 20px;
    margin-top: 10px;
}

.selection .zUOmRQzUbtBSColmrzHQvVYt {
    text-align: center;
    padding-bottom: 10px;
    color: var(--light-text-color);
    font-size: 26px;
    font-weight: 400;
}

.selection p {
    color: var(--light-text-color);
    font-size: 16px;
    font-weight: 350;
    line-height: 19px;
    padding: 3px 0;
}

.selection p b {
    font-weight: 500;
    padding-right: 3px;
}

.selection p span {
    font-weight: 450;
    background-color: var(--dark-bg-color-3);
    border-radius: 6px;
    padding: 1px 6px;
}

.selection p span.punishment {
    font-weight: 350;
    background-color: var(--dark-bg-color-3);
    border-radius: 6px;
    padding: 1px 6px;
    /*opacity: 0;*/
    transition: opacity 0.8s ease;
    /*background-color: rgba(0, 0, 0, 0);*/
    /*border-radius: 0;*/
    /*padding: 0 0;*/
    /*opacity: 0.8;*/
}

.selection p span.visible {
    opacity: 1 !important;
}

.selection p span.hidden {
    opacity: 0 !important;
}

.footer {
    margin-top: 50px;
}


.selection {
    opacity: .5;
    transform: translateY(8px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: transform, opacity;
}

.visible-selection {
    opacity: 1;
    transform: translateY(0);
}

.switch {
    position: relative;
    display: inline-block;
    width: calc(60px - 23px);
    height: calc(34px - 12px);
}

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

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

.slider:before {
    position: absolute;
    content: "";
    height: calc(26px - 12px);
    width: calc(26px - 12px);
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--green-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--green-color);
}

input:checked + .slider:before {
    -webkit-transform: translateX(calc(26px - 11px));
    -ms-transform: translateX(calc(26px - 11px));
    transform: translateX(calc(26px - 11px));
}

/* Rounded sliders */
.round {
    border-radius: 34px;
}

.round:before {
    border-radius: 50%;
}