/*@charset "utf-8";

 .yes-no {
     margin-right: 12px;
     flex-direction: row;
     width: fit-content;
 }

.yes-no span {
    height: 33px;
     border-radius: 10px;
     padding: 4px 12px;
     width: 50%;
     justify-content: center;
     align-items: center;
     position: relative;
     transition: all .2s;
 }

 .yes-no span:last-of-type::after {
     content: "";
     border: 2px solid var(--government);
     position:absolute;
     height: 100%;
     width: 100%;
     border-radius: 10px;
     transition: all .2s;
 }

 .if-yes {
    border: 2px solid white;
 }*/


 /* input[type="checkbox"] + .yes-no span:last-of-type,
 input[type="checkbox"]:checked + .yes-no span:first-of-type {
     background: var(--government);
     color: white;
     transition-delay: .2s;
 }

 input[type="checkbox"]:checked + .yes-no span:last-of-type {
    background: transparent;
    color: #333;
 } */

 /*input[type="checkbox"]:checked + .yes-no span:last-of-type::after{
     transform: translateX(-100%);
 }

 .yes-no:focus-within span:last-of-type::after{
    border: 2px solid orangered;
}

 input[type="checkbox"] + .yes-no + .if-yes {
    opacity: 0;
 }


 input[type="checkbox"] + .yes-no ~ .wrapper--info .wrapper--floating-label:last-of-type {
     opacity: 1;
 }


 input[type="checkbox"]:checked + .yes-no ~ .wrapper--info .wrapper--floating-label:last-of-type {
    opacity: 0;
}

 input[type="checkbox"]:checked + .yes-no + .if-yes {
     opacity: 1;
     background: #f2f2f2;
     box-shadow: inset 0 1px 3px rgba(35, 35, 35, .48),
                 inset 0 -1px 3px rgba(255, 255, 255, 1);
     border-radius: 5px;
    
 }

 .if-yes:focus {
    border: 2px solid var(--government);
 }*/
