   .switch-coupe-label {
       background-color: transparent;
       padding: 4px;
       width: 80px;
       text-align: center;
   }

   .switch-coupe-label-select {
       background-color: rgba(255, 255, 255, 0.301);
       color: white;
   }

   .switch-coupe-label-unselect {
       background-color: transparent;
       color: rgba(209, 209, 209, 0.342);
   }


   .switch-coupe-checkbox {
       position: relative;
       display: inline-block;
       width: 50px;
       height: 28px;
   }

   .switch-coupe-checkbox input {
       opacity: 0;
       width: 0;
       height: 0;
   }

   .switch-coupe-checkbox-slider {
       position: absolute;
       cursor: pointer;
       background-color: #2196F3;
       border-radius: 34px;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       transition: 0.2s;
   }

   .switch-coupe-checkbox-slider::before {
       content: "";
       position: absolute;
       height: 22px;
       width: 22px;
       left: 3px;
       top: 3px;
       background-color: white;
       border-radius: 50%;
       transition: 0.2s;
   }

   .switch-coupe-checkbox input:checked+.switch-coupe-checkbox-slider {
       background-color: #2196F3;
   }

   .switch-coupe-checkbox input:checked+.switch-coupe-checkbox-slider::before {
       transform: translateX(22px);
   }