/* Cookie consent */
.cookie-consent-container {
    border-radius: 5px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.cookie-consent-container.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content-wrapper {
    max-width: 685px;
    margin: 0 50px 60px 0;
    padding: 0;
    float: right;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-left: 40px;
    margin-right: 40px;
    gap: 0;
}

.cookie-text {
    flex: 1;
    padding-right: 30px;
}

.cookie-text p {
    color: #ffffff;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    margin: 0;
}

.cookie-text a,
.cookie-text a:hover,
.cookie-text a:active {
    color: #ffffff;
}

.cookie-consent-container.bg-light.show {
    background: rgba(20, 20, 20, 0.8) !important;
}

.cookie-content .btn {
    font-size: 10px;
}

.cookie-content .btn {
    font-size: 10px;
    padding: 20px 40px;
    color: #000000;
    line-height: 0;
    background: #ffffff;
    border-radius: 5px;
    border: none;
}

.cookie-content .btn:hover {
    background: rgba(10, 104, 255, 1);
    color: #ffffff;
}

@media (max-width: 1439px) {
    .cookie-content-wrapper {
        margin: 0 auto;
        float: none;
    }
}

@media (max-width:1023px){
    .cookie-content-wrapper {
        max-width: 720px;
    }
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    .cookie-content .btn {
        padding: 20px 80px;
    }
    .cookie-content {
        padding: 16px 0;
        margin-left: 20px;
        margin-right: 20px;
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        margin-left: 30px;
        margin-right: 30px;
    }

    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
        text-align: left;
        width: 100%;
    }
}



@media (max-width:481px){
    .cookie-content-wrapper {
        max-width: 440px;
    }

    .cookie-text {
        margin-bottom: 0;
        text-align: center;
    }

    .cookie-text p {
        margin: 0;
    }

    .cookie-content {
        margin-left: 30px;
        margin-right: 30px;
    }

}

@media (max-width:391px){
    .cookie-content-wrapper {
        max-width: 360px;
    }

    .cookie-text {
        margin-bottom: 0;
        text-align: center;
    }

    .cookie-text p {
        margin: 0;
    }

    .cookie-content {
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

}