.cookie-banner {
    display: none;
    position: fixed;
    bottom: 1rem;
    z-index: 10;
    left: 1rem;
    padding: 2rem;
    flex-direction: column;
    gap: 0.625rem;
    border-radius: 0.375rem;
    background: #fff;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(4, 27, 58, 0.1);
}

/* Cookie Icon */
.cookie-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #FF8C42;
}

.cookie-banner button {
    border: none;
}

.cookie-banner__header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-banner__header p {
    color: #000;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cookie-banner__header {
    display: flex;
    flex-direction: column;
    margin-bottom: .75rem;
    justify-content: center;
}

.cookie-icon {
    margin: 0 auto;
}

.cookie-banner__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.cookie-banner__footer div:last-child {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.cookie-banner__body {
    max-width: 24rem;
    color: #8c8c8c;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 1rem;
}

.btn--secondary {
    background-color: #e5e5e5;
    color: #606060;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn--primary {
    background-color: rgba(22, 110, 232, 1);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn--primary:hover {
    background-color: #0056b3;
}


.btn--secondary:hover {
    background-color: #d4d4d4;
}


.cookie-banner__link {
    color: #606060;
    font-weight: bold;
}

@media only screen and (max-width: 786px) {
    .cookie-banner {
        padding: 0.5rem;
        bottom: 2%;
        right: 1rem;
    }
}