.cookie-banner-consent {
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 20px 0;
    box-shadow: 0 -5px 25px 0 rgba(0, 0, 0, 0.10);
    background-color: #ffffff;
    font-family: Ubuntu, sans-serif;
    line-height: 1.4;
    z-index: 99999;
}

.cookie-banner-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    column-gap: 20px;
    grid-template-columns: auto 240px;
}

.cookie-banner-inner-container .consent-text {
    margin-bottom: 5px;
    line-height: 20px;
    font-size: 15px;
}

.cookie-banner-inner-container .link-to-explanation a {
    color: #008dce;
    text-decoration: underline;
    font-size: 14px;
}

.button-cookie {
    width: 100%;
    cursor: pointer;
    padding: 12px;
    text-align: center;
    font: inherit;
    font-size: 15px;
    border-radius: 6px;
    transition: background-color .2s, color .2s, border-color .2s;
}

.button-cookie.button-cookie-filled {
    background-color: #008dce;
    color: #ffffff;
    border: solid 1px transparent;
}

.button-cookie.button-cookie-filled:hover {
    background-color: transparent;
    border: solid 1px #008dce;
    color: #008dce;
}

.button-cookie.button-cookie-outlined {
    background-color: transparent;
    color: #008dce;
    border: solid 1px #008dce;
}

.button-cookie.button-cookie-outlined:hover {
    background-color: #008dce;
    color: #ffffff;
}

.button-cookie:focus-visible {
    outline: 3px solid #e65a4b;
    outline-offset: 3px;
}

.button-cookie-group button:not(:last-child) {
    margin-bottom: 15px;
}

.cookie-banner-options {
    width: 100%;
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-banner-options .switch-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cookie-banner-options div:not(:last-child){
    margin-right: 25px;
}

.cookie-banner-options .switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 15px;
}

.cookie-banner-options .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-banner-options .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-banner-options .slider:before {
    position: absolute;
    background-color: #035a85;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    bottom: -2px;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-banner-options input:checked + .slider {
    background-color: rgba(0, 141, 206, 0.4);
}

.cookie-banner-options input:focus +  .slider {
    box-shadow: 0 0 1px #00aff0;
}

.cookie-banner-options input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    background: #008dce;
}

.cookie-banner-options input:disabled + .slider {
    cursor: default;
}

.cookie-banner-options .slider.round {
    border-radius: 34px;
}

.cookie-banner-options .slider.round:before {
    border-radius: 50%;
}

@media only screen and (max-width: 1250px) {
    .cookie-banner-inner-container {
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 800px) {
    .cookie-banner-inner-container {
        row-gap: 15px;
        grid-template-columns: auto ;
    }
}
