.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: Verdana,Arial,Helvetica,sans-serif;
    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: 18px;
    text-align: justify;
    font-size: 15px;
}

.cookie-banner-inner-container .link-to-explanation a {
    color: #098abb;
    text-decoration: none;
}

.button-cookie {
    width: 100%;
    cursor: pointer;
    padding: 12px;
    text-align: center;
}

.button-cookie.button-cookie-filled {
    background-color: #009090;
    color: #ffffff;
    border: solid 1px transparent;
}

.button-cookie.button-cookie-filled:hover {
    background-color: transparent;
    border: solid 1px #009090;
    color: #009090;
}

.button-cookie.button-cookie-outlined {
    background-color: transparent;
    color: #009090;
    border: solid 1px #009090;
}

.button-cookie.button-cookie-outlined:hover {
    background-color: #009090;
    color: #ffffff;
}

.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;
}

.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;
    border: none !important;
}

.cookie-banner-options .slider:before {
    position: absolute;
    background-color: #000000;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    bottom: -2px;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-banner-options input:checked + .slider {
    background-color: rgba(0, 144, 144, 0.4);
}

.cookie-banner-options input:focus +  .slider {
    box-shadow: 0 0 1px #2196F3;
}

.cookie-banner-options input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    background: #009090;
}

.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 ;
    }
}