.pop-up-cookie-container {
    position: fixed;
    z-index: 999999;
    height: auto;
    padding: 27px 29px 25px 33px;
    background: #fff;
    border: #00709e 1px solid;
    border-radius: 31px;
    width: 94vw;
    right: 50px;
    bottom: 10px;
    display: none;
}

.lgpd {
    position: relative !important;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    padding: 5px  !important;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.pop-up-cookie-container.active {
    background: #fff;
}

.cookie-accept-box p {
    font-size: 14px;
    color: #444444;
    line-height: 18px;
    margin-bottom: 29px;
}

.cookie-accept-box .control {
    font-size: 14px;
    color: #444444;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 17px;
}

p.links-cookie a {
    font-size: 14px;
    color: #444444;
    font-weight: bold;
    line-height: 24px;
    text-decoration: underline;
    width: fit-content;
}

p.links-cookie a:hover {
    text-decoration: underline !important;
}

p.links-cookie {
    margin-bottom: 29px;
    display: flex;
    flex-direction: column;
}

.cookies-btns-box #my-options {
    display: flex;
    font-size: 14px;
    color: #00709e;
    text-transform: uppercase;
    text-decoration: none;
    background: #FCFCFC;
    border-radius: 10px;
    border: #00709e 1px solid;
    width: fit-content;
    transition: .3s;
    height: 37px;
    align-items: center;
    padding: 0 18px 0 13px;
}

.cookies-btns-box #accept-cookies {
    display: flex;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background: #00709e;
    border-radius: 10px;
    border: #00709e 1px solid;
    width: 129px;
    height: 37px;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

#accept-cookies:hover {
    color: #fff;
    background: #00709e;
    border-color: #00709e;
    transition: .3s ease;
}

.cookies-btns-box a {
    cursor: pointer;
}

.cookies-btns-box {
    display: flex;
    justify-content: space-between;
}

.cookies-btns-box #my-options:hover {
    background: #00709e;
    border-color: #00709e;
    color: #fff;
}

.cookie-preferences-box {
    display: none;
}

.header-cookies {
    font-size: 14px;
    color: #00709e;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

a.esc-preferences-cookie {
    background: #00709e;
    border-radius: 100%;
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
    padding-bottom: 2px;
    cursor: pointer;
    text-decoration: none !important;
}

.title-cookie-check-box {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

span.switch-check {
    width: 25px;
    height: 8px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
}

span.switch-check.on {
    background-color: #98cc96;
    border: #98cc96 1px solid;
}

span.switch-check.off {
    background-color: #bebebe;
    border: #bebebe 1px solid;
}

span.switch-check::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    transition: all .1s linear;
    border-radius: 100%;
    z-index: 2;
    box-shadow: 0 1px 1px rgb(0 0 0 / 30%);
    top: -5px;
}

span.switch-cookie {
    margin-right: 10px;
}

span.switch-check.on::before {
    transform: translate(13px);
    background-color: #1a9315;
}

span.switch-check.off::before {
    transform: translate(-3px);
    background-color: #898989;
}

.cookie-check-box p {
    font-size: 13px;
}

span.switch-cookie.disable span.switch-check.on {
    background-color: #adcaac;
    border: #adcaac 1px solid;
}

span.switch-cookie.disable span.switch-check.on::before {
    background-color: #4d824b;
}

.save-preferences {
    display: flex;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background: #00709e;
    border-radius: 25px;
    border: #00709e 1px solid;
    width: fit-content;
    margin: 0 auto;
    margin-top: 15px;
    cursor: pointer;
    transition: .3s;
    height: 37px;
    align-items: center;
    padding: 0 15px;
    text-decoration: none !important;
}

.save-preferences:hover {
    color: #fff;
    background: #00709e;
    border-color: #00709e;
}

.preferences-box {
    max-height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 10px;
}

/* width */
.preferences-box::-webkit-scrollbar {
    width: 5px;
}
  
  /* Track */
.preferences-box::-webkit-scrollbar-track {
    background: rgb(230, 230, 230);
    margin-top: 5px;
}
  
  /* Handle */
.preferences-box::-webkit-scrollbar-thumb {
    background: #00709e;
    border-radius: 10px;
    transition: .2s;
}
  
  /* Handle on hover */
.preferences-box::-webkit-scrollbar-thumb:hover {
    background: #00709e;
}

@media (max-width: 560px) {
    .pop-up-cookie-container {
        width: 95%;
        right: 2.5%;
    }

    .cookie-accept-box p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .cookie-accept-box .control {
        margin-bottom: 13px;
    }

    p.links-cookie a {
        font-size: 12px;
    }

    p.links-cookie {
        margin-bottom: 13px;
    }

    .cookies-btns-box #my-options {
        font-size: 12px;
    }

    .cookies-btns-box #accept-cookies {
        font-size: 12px;
        width: 115px;
    }
}