/*cookie box*/
.cookies-popup-container {
    background:#000000ad;
    float:left;
    clear:left;
    width:100vw;
    height:100vh;
    position:fixed;
    z-index:999908;
}

.cookies-popup-box {
    float: left;
    clear: left;
    width: 100%;
    padding:25px 120px;
    position: fixed;
    box-shadow: 0 30px 70px rgb(0 0 0 / 30%);
    z-index: 999909;
    font-size:17px;
    line-height: 24px;
    background: #fff;
    color:#212121;
}

.cookies-message {
    float: left;
    clear: left;
    /*width: 100%;*/
    width: 75%;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #eaeaea;
}
.cookies-message .title {
    margin-bottom: 5px;
    float: left;
    clear: left;
    width: 100%;
    font-weight: bold;
}
.cookies-message .msg a.popup {
    color: #2f7cf9;
    transition: all 200ms ease-in-out;
}
.cookies-message .msg a.popup:hover {
    text-decoration:underline;
    cursor:pointer;
}

.cookies-acceptance-container {
    float: left;
    clear: left;
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.cookies-acceptance {
    float: left;
    clear: left;
    width: 100%;
}
.cookie-category-description {
    float: left;
    clear: left;
    width: auto;
    font-weight: bold;
    margin: 0 30px 0 0;
    padding: 3px 0;
}
.cookie-category-description:hover {
    color: #008ee2;
    cursor:pointer;
}
.cookies-acceptance:first-child .cookie-category-description:hover {
    color:#212121;
    cursor: auto;
}



.cookies-acceptance .switch {

}
.cookies-acceptance .switch input[type=checkbox] {
  display: none;
}
.cookies-acceptance .switch input[type=checkbox]:checked + .slider {
  background-color: #2f7df9;
}
.cookies-acceptance:first-child .switch input[type=checkbox]:checked + .slider {
  background-color: #212121;
}
.cookies-acceptance .switch input[type=checkbox]:checked + .slider:after {
  left: 33px;
}
.cookies-acceptance .switch .slider {
  transition: all 200ms ease-in-out;
  display: inline-block;
  position: relative;
  height: 30px;
  width: 60px;
  border-radius: 40px;
  cursor: pointer;
  background-color: #ddd;
  color: transparent;
}
.cookies-acceptance .switch .slider:after {
  transition: all 200ms ease-in-out;
  content: " ";
  position: absolute;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: white;
  top: 3px;
  left: 3px;
  right: auto;
}


.cookies-buttons-container{
  float:right;
  width:25%;
  padding:0 30px;
}
.cookies-buttons-container button{
    float: left;
    clear: left;
    width: 100%;
    margin-bottom: 10px;
    background: transparent;
    padding: 7px 0;
    background-color: transparent;
    border: 2px solid #2f7cf9;
    border-radius: 5px;
    color: #212121;
    /*font-weight: bold;*/
}
.cookies-buttons-container button:hover{
    opacity:0.8;
}
.cookies-buttons-container button:first-child {
    background: #2f7cf9;
    color: #fff;
    font-weight: bold;
}


.cookies-popup-button {
    float: left;
    clear: left;
    width: auto;
    position: fixed;
    z-index: 99999;
    bottom:20px;
    left:20px;
}
.cookies-popup-button button {
    font-size: 0px;
    padding: 13px;
    border: 0px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 45%);
    border-radius: 50px;
    background: #2f7cf9;
    width: 50px;
    height: 50px;

}
.cookies-popup-button button:before {
    content: "\e62b";
    font-family: 'themify';
    font-size:25px;
    color:#fff;
}

/*media queries*/



@media (max-width: 1200px) {
    .cookies-popup-box {
        padding: 25px 70px;
    }
    .cookie-category-description {
        margin: 0 15px 0 0;
    }
}

@media (max-width: 991px) {
    .cookies-popup-box {
        padding: 25px;
        font-size: 15px;
        line-height: 21px;
        display: flex;
        flex-direction: column;
    }
    .cookies-message {
        order:1;
        width: 100%;
    }
    .cookies-acceptance-container{
        order:2;
        width: 100%;
    }
    .cookies-buttons-container {
        order:3;
        width: 100%;
        padding: 0;
        margin-top:20px;
        padding-top:20px;
        border-top: 2px solid #eaeaea;
        display: flex;
        justify-content: space-between;
    }
    .cookies-buttons-container button {
        width: 30%;
    }
    
}
    
@media (max-width: 767px) {
    .cookies-acceptance .switch .slider {
        height: 23px;
        width: 45px;
    }
    
    .cookies-acceptance .switch .slider:after {
        height: 19px;
        width: 19px;
        top: 2px;
        left: 2px;
    }
    .cookies-acceptance .switch input[type=checkbox]:checked + .slider:after {
        left: 24px;
    }
}

@media (max-width: 576px) {
    .cookies-acceptance-container {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .cookies-acceptance {
        width: calc(50% - 15px);
        margin-bottom:10px;
    }
    .cookies-acceptance .switch {
        float: right;
        margin-right: 40px;
    }
}

@media (max-width: 481px) {

}