/* TRIPLE SWITCH CLASSES */

.triple-switch-container {
    display: flex;
    justify-content: space-around;
    background: var(--rulv-other-gray);
    width: 300px;
    height: 80px;
    border-radius: 36px;
}

.labels-container {
    display: flex;
    justify-content: space-around;
    width: 300px;
    font-family: Roboto Condensed;
    font-weight: bold;
    padding: 6px;
}

.radio {
  margin-top: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 68px;
  width: 68px;
  border-radius: 100%;
  background-size: auto 42px !important;
  background-position: center !important;

}

.radio:focus {
    outline:0 !important;
}

.radio:checked {
  border-radius: 100%;
  background-size: auto 42px !important;
  background-color: var(--rulv-yellow) !important;
  background-color: white;
  background-position: center !important;

}

.radio:hover {
    background-color: var(--rulv-dark-gray);
}


/* CLIENT.TOOLBAR CLASSES */

#hamburguer {
/*Chrome, Safari*/
    position: fixed;
    z-index: 200;
    width: 20px;
    height: 28px;
    transform: scale(1.2);
    right: 20px;
    top: 15px;
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
}

.logo__container {
    display: inline-block;
    color: var(--rulv-blue);
    font-weight: bold;
}

.logo__container svg {
    height: 38px;
    width: 42px;
}

.logo__container span {
    vertical-align: middle;
    line-height: initial;
    display: inline-block;
    margin-top: 0px;
    margin-left: 10px;
    border-bottom: none !important;
}

.logo__container:hover {
  opacity: 0.7;
}

.logo--img {
    position: relative;
    display: inline-block;
    margin-left: 0.5em;
}

.logo--text {
   position: absolute;
}

.toolbar-btn {
    cursor: pointer;
    line-height: normal;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
    top: 5px;
    padding-bottom: 7.3px;
}
.toolbar-btn:hover {
   box-shadow: inset 0 0px 0 white, inset 0 -6px 0 var(--rulv-yellow);
}

.toolbar-btn.active {
    cursor: default;
    padding-bottom: 7.3px;
    box-shadow: inset 0 0px 0 white, inset 0 -6px 0 var(--rulv-yellow);
}
.toolbar-btn>.icon {
    font-size: 32px;
    color: var(--rulv-blue);
}
.toolbar-btn>div {
    font-size: 12px;
}



.custom-wrapper {
    background-color: var(--rulv-white);
    margin-bottom: 1em;
    height: 4.2em;
    width: 110%;
    -webkit-transition: height 0.5s;
    -moz-transition: height 0.5s;
    -ms-transition: height 0.5s;
    transition: height 0.5s;
    -webkit-font-smoothing: antialiased;
    box-shadow: 0 0 18px 0 var(--rulv-other-gray);
}

/*========================================*/
/*========== SMALL SCREEN SIZES ==========*/
/*========================================*/

/*Mobile (any size) and vertical tablet*/
@media (max-width: 1023px) {
      #toolbar-ul li {
        visibility: hidden;
      }
      #hamburguer:checked + #toolbar--right .toolbar-btn.active {
        box-shadow: none !important;
      }
      #hamburguer:checked + #toolbar--right .toolbar-btn  {
        box-shadow: none !important;
        float: none !important;
        text-align: left !important;

      }
      #hamburguer:checked + #toolbar--right #toolbar-ul li {
        position: static;
        visibility: visible !important;
        padding: 0px 160px 0px 0px;
        background: var(--rulv-white);
        margin-bottom: 1px;
      }
       #hamburguer + #toolbar--right #toolbar-ul {
       display: none;
       }
      #hamburguer:checked + #toolbar--right #toolbar-ul {
        display: grid !important;
        background: var(--rulv-gray);
        position: fixed;
        width: min-content;
      }
      #hamburguer:focus {
        outline: none;
      }
}

/*Mobile (any size) but no vertical tablet*/
@media (max-width:425px) {
    #hamburguer:checked + #toolbar--right #toolbar-ul li .svg {
        display:none !important;
    }
    #hamburguer:checked + #toolbar--right .toolbar-btn {
        height:70px;
        background: var(--rulv-white);
        padding: 20px;
        top:35px;
        margin-left: 1px;
    }
    #hamburguer:checked + #toolbar--right .toolbar-btn div {
        font-size: 13.5px;
        color: var(--rulv-dark-gray);
        margin-left: -12px;
        font-weight:bold;
    }
}

/*Mobile S */
@media (max-width:320px){
    #toolbar-pure--right {
        margin-left: 240px;
    }
    #hamburguer:checked + #toolbar--right #toolbar-ul {
        right: -180px;
    }
}

/*Mobile M */
@media (min-width:321px) and (max-width:375px){
    #toolbar-pure--right {
        margin-left: 270px;
    }
    #hamburguer:checked + #toolbar--right #toolbar-ul {
        right: -180px;
    }
}

/*Mobile L */
@media (min-width:376px) and (max-width:425px){
    #toolbar-pure--right {
        margin-left: 300px;
    }
    #hamburguer:checked + #toolbar--right #toolbar-ul {
        right: -180px;
    }
}

/*Tablet (vertical)*/
@media (min-width:426px) and (max-width:1023px){
   #hamburguer:checked + #toolbar--right #toolbar-ul {
        right: 0px;
        top: 59px;
   }

   #hamburguer:checked + #toolbar--right #toolbar-ul li .svg {
        height: 25px;
        width: 25px;
        float: left;
        display: block;
    }

   #hamburguer:checked + #toolbar--right .toolbar-btn {
       width: 70px;
       height:70px;
       background: var(--rulv-blue);
       color: var(--rulv-white);
       padding: 20px;
       top:35px;
       margin-left: 1px;
    }

   #hamburguer:checked + #toolbar--right .toolbar-btn div {
       font-size: 13.5px;
       color: var(--rulv-dark-gray);
       margin-left: 60px;
       font-weight:bold;
   }
}

/*========================================*/
/*========== BIG SCREEN SIZES ============*/
/*========================================*/

/*Hide hamburger icon on laptop (any size)*/
@media (min-width: 1024px) {
    #hamburguer {
        display: none;
    }
}

/*Laptop M*/
@media (min-width:1024px) and (max-width:1280px){
   #toolbar--right { margin-left: 10%; }
}

/*Laptop L*/
@media (min-width:1281px) and (max-width:1440px){
   #toolbar--right { margin-left: 30%; }
}

/*Laptop XL*/
@media (min-width:1441px){
   #toolbar--right { margin-left: 40%; }
}

#toolbar--right {
    height: 0px;
}
