.upa_cookie_layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(234, 234, 234, 0.8);
    z-index: 11000;
}

.upa_cookie_wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upa_cookie {
    width: 90vw;
    height: auto;
    background-color: #ffffff;
    padding: 30px 20px;
    max-width: 640px;
    border-radius: 20px;
    box-shadow: rgba(2, 2, 3, 0.28) 0px 0.625px 1.875px 0px;
}

.upa_cookie h2 {
    font-size: 24px;
}

.upa_cookie p {
    font-size: 15px;
    line-height: 1.7;
}

.upa_cookie button {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    line-height: 1.4;
    margin-right: 16px;
    border-radius: 10px;
}

.upa_cookie button:last-child {
    margin-right: 0;
}

.upa_cookie button:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.upa_cookie_buttons {
    font-size: 0;
    line-height: 0;
}

#upa_bite_hint {
    display: none;
    padding: calc(var(--mg-padding-sm) * 2);
    position: relative;
    z-index: 1;
    background-color: var(--mg-primary-color-a-super-bright);
    border-left: 4px solid var(--mg-primary-color-a-full);
}

@media (min-width: 768px) {
    #upa_bite_hint {
        padding: calc(var(--mg-padding-lg) * 2);
    }
}

@media (min-width: 1440px) {
    .upa_cookie {
        padding: 40px;
    }
}