.cookie-disclaimer {
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.cookie-modal {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 32px 68px rgba(0, 0, 0, .3);
    box-sizing: border-box;
    color: #141414;
    font-family: sans-serif;
    font-size: 15px;
    height: auto;
    left: 50%;
    letter-spacing: .1px;
    line-height: 24px;
    max-height: calc(100% - 16px);
    overflow: hidden;
    position: fixed;
    text-align: initial;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s ease;
    transition-property: width, max-width, top, bottom, left, opacity;
    width: calc(100% - 16px);
    z-index: 2147483631;
    max-width: 900px;
}

.cookie-header {
    align-items: center;
    border-bottom: 1px solid #d6d6d6;
    display: flex;
    padding: 1em;
    width: 100%;
    padding: 1.5em;
}

.cookie-nav {
    border-bottom: 1px solid #d6d6d6;
    display: flex;
    justify-content: space-evenly;
    overflow-x: auto;
}

.cookie-nav-item {
    border-bottom: 1px solid #ffffff;
    color: #141414;
    display: block;
    font-weight: 600;
    height: 100%;
    outline-offset: -5px;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.cookie-nav-item:hover {
    color: #ff6f00;
    cursor: pointer
}

.cookie-nav-item-active {
    border-color: #ff6f00;
}

.cookie-content-item {
    display: none;
}

.cookies-content-active {
    display: block;
    padding: 1.125em;
    box-sizing: border-box;
    font-size: 15px;
}

.cookies-content-title {
    font-weight: 600;
    letter-spacing: .25px;
    line-height: 1.6em;
    margin-bottom: 0.5em;
}

.cookies-content-text p {
    color: black !important;
    padding: 10px 0
}

.cookies-modal-footer {
    padding: 1em 1.5em 1.5em;
    border-top: 1px solid #d6d6d6;
    display: flex;
    justify-content: space-evenly;
    gap: 10px
}

.cookies-modal-button {
    border-radius: 0.25em;
    color: #141414;
    display: block;
    font-weight: 600;
    padding: 1em;
    text-align: center;
    user-select: none;
    width: 100%;
    border: solid 1px #ff6f00;
}

.cookies-modal-button:hover {
    cursor: pointer;
    background-color: #fd8b34;
}

/* Mobile */
@media (max-width: 600px) {
    .cookie-modal {
        max-width: 90%;
        overflow: scroll;
    }

    .cookie-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .cookie-nav-item {
        font-size: 14px;
    }

    .cookies-modal-footer {
        flex-direction: column;
    }
}

/* Slider checkbox */
.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.switch input {
    display: none;
}

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

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked+.slider {
    background-color: #66bb6a;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

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

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

/* Apartado de cookies slider */
.cookie-slider-box {
    display: flex;
    justify-content: space-between;
}

.cookie-content-cookie {
    border-bottom: 1px solid #d6d6d6;
    padding: 1.5em;
}

.cookie-content-cookie:last-child {
    border-bottom: none;
}