/*-----cookie-banner-----*/
.cookie-banner-fixed{
    position: fixed;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
} 
@keyframes fadeInOpacity {
    0% {
            opacity: 0;
    }
    100% {
            opacity: 1;
    }
}
.cookie-banner *{
    outline: none !important;
}
.cookie-banner {
    display: none;
    z-index: 999999;
    top: 0;
    width: 100%;
    background-color: #494e54;
}
.cookie-banner .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 10px;
}
.cookie-banner .wrapper .wrapper__text{
    font-size: 14px;
    text-align: center;
    color: #fff;
    opacity: 1;
}
.cookie-banner .wrapper .wrapper__text a{
    color: #e84b3c;
    text-decoration: none;
} 
.cookie-banner .wrapper .wrapper__text a:hover, .cookie-banner .wrapper .wrapper__text a:focus{
    color: #e84b3c;
    text-decoration: none;
}
.cookie-banner .wrapper .wrapper__buttons button {
    white-space: nowrap;
    border-radius: 4px;
    color: #fff;
    opacity: 1;
    font-size: 14px;
    border: none;
    background: #e84b3c;
    padding: 6px 10px;
    line-height: 1;
    margin: 5px 15px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cookie-banner .wrapper .wrapper__buttons button:hover {
    text-decoration: none;
    background: #d62413;
}
@media screen and (max-width: 600px) {
    .cookie-banner .wrapper {
        flex-direction: column;
    }
}


.checkbox-gdbr{
    font-size: 14px;
}

.alert-danger-gdbr{
    margin-top: 10px;
    font-size: 15px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;    
}

/*-----Custom checkbox GDPR-----*/
.container-checkbox-gdpr{
    display: inline-block;
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400 !important;
    padding-top: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-checkbox-gdpr input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container-checkbox-gdpr .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
.container-checkbox-gdpr input:checked ~ .checkmark {
    background-color: #ffffff;
}
.container-checkbox-gdpr .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container-checkbox-gdpr input:checked ~ .checkmark:after {
    display: block;
}
.container-checkbox-gdpr .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    box-sizing: border-box;
}
.container-checkbox-gdpr .gdpr-agree-err ~ span.checkmark{
    border-color: red;
}

#callback-request-form-checkbox .alert-danger-gdbr,
#client-lead-form-checkbox .alert-danger-gdbr,
#goBackForm-checkbox .alert-danger-gdbr {
    display: block;
    color: rgb(224, 49, 0);
    font-family: Arial;
    padding: 0px;
    margin: 0px;
    background: transparent !important;
    text-align: center;
}

#callback-request-form-checkbox .alert-danger-gdbr span,
#client-lead-form-checkbox .alert-danger-gdbr span,
#goBackForm-checkbox .alert-danger-gdbr span {
    font-size: 14px;
}
/*-----Custom checkbox GDPR-----*/