/**COOKIE**/
  .cookieBox {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: center;
    align-items: center;
    bottom: 50px;
    z-index: 99999;
    animation: fadeInUp 2s ease-out;
}

.cookieWrapper {
    text-align: center;
    width: 90%;
    max-width: 500px;
    color: white;
    background-color: #242424;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cookieBottom {
    gap: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cookieImg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.cookieImg img {
    width: 100px;
}

.accept,
.decline {
    padding: 7.5px 35px;
    border: none;
    cursor: pointer;
    transition: all 0.6s ease;
}

.accept {
    background-color: rgb(15, 53, 15);
    color: white;
}

.accept:hover {
    background-color: green;
}

.decline {
    background-color: rgb(124, 27, 27);
    color: white;
}
.decline:hover {
    background-color: red;
}

@keyframes fadeInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookieBox.hidden {
  display: none;
}
