/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22-set-2021, 9.35.49
    Author     : lib3ns
*/


/**
*
* Cookie consent modal
*
**/

.form-cookie-consent-preferences{
    text-align: left;
}

.cookie_consent_collaspe_element{
    display: block;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px 10px 15px 10px ;
}

.cookie_consent_collaspe_element .cookie_consent_target_element{
    display: block;
}

.cookie_consent_collaspe_element i{
    position: absolute;
    right: 0;
    transform-origin: 50% 65%;
    margin-right: 10px;
    top: 3px;
    font-size: 17px;
}

.cookie_consent_collaspe_element .container-option-title{
    position: relative;
}
.cookie_consent_collaspe_element .title-option-consent{
    font-size: 17px;
    font-weight: bold;
}

.cookie_consent_collaspe_element .description-option-consent{
    font-size: 14px;
    margin-top: 10px;
}

.cookie_consent_collaspe_element  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 10px;

}

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

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

.cookie_consent_collaspe_element .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie_consent_collaspe_element .switcher-container{
    vertical-align: middle;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.cookie_consent_collaspe_element input:checked + .slider {
    background-color: #FFB926;
}

.cookie_consent_collaspe_element input:focus + .slider {
    box-shadow: 0 0 1px #FFB926;
}

.cookie_consent_collaspe_element input:checked + .slider:before {
    -webkit-transform: translateX(27px);
    -ms-transform: translateX(27px);
    transform: translateX(27px);
}

/* Rounded sliders */
.cookie_consent_collaspe_element .slider.round {
    border-radius: 24px;
}

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

.btn-save-preferences-cookie{
    padding: 10px !important;
    /*border: none !important;*/
}

.btn-save-all-cookie{
    padding: 10px !important;
}

.marginTop30{
    margin-top: 30px !important;
}


.CookieConsent{
    overflow: initial !important;
}

.CookieConsentMobile{
    overflow-y: auto !important;
}

.cookie-link-policy{
    text-decoration: none !important;
    font-size: 13px !important;
    color: #FFB926 !important;
}