﻿.cookie-container {
    display: flex;
    align-content: center;
    align-items: center;
    padding: 1rem 1rem;
    background: #EBEBEB;
    color: #000000;
    position: fixed;
    bottom: 0;
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    gap: 0.5rem;
    opacity: 1;
    visibility: visible;
    flex-wrap: wrap;
    z-index:9999;
}

.cookie-container.hide {
    opacity: 0;
    visibility: hidden;
}

.cookie-container .cookie-text {
    flex: 8 768px;
}

.cookie-container .agree {
    flex: 1 150px;
    text-align: center;
}

.agree button {
    background: #fff;
    color: #007af7;
    border: none;
    padding: 0.4rem 1.2rem;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.7rem;
}

    .agree button:hover {
        background: #FFE2BC;
        color: #000000;
    }

.reject button {
    background: #D1D1D1;
    color: #2E2E2E;
    border: none;
    padding: 0.4rem 1.2rem;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.7rem;
}

.reject button:hover {
    background: #6F7F8F;
    color: #060606;
}
