.cookie-close-logo {
    position: absolute;
    text-align: right;
    margin: 15px;
    right: 0;
    width: 16px;
    height: 16px;
}

.cookie-logo-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: #FFC20F;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.cookie-logo-wrapper img {
    width: 34px;
    height: 34px;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999998;
    animation: fadeIn 0.3s ease-out;
    border-radius: 8px;
}

.cookie-text {
    width: 70%;
}

.btn-sm {
    background-color: #ffc20f !important;
}

.btn-sm-border {
    border: 1px solid #ffc20f !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cookie-buttons {
    gap: 20px;
    margin-top: 20px;
}

.cookie-text h6 {
    font-size: 1rem;
}

.cookie-buttons .btn {
    min-width: 100px;

}

@media (max-width: 576px) {
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1 0 auto;
    }
}