/* .cookies {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.212);
} */

.wrapperCookies {
    position: fixed;
    bottom: 50px;
    left: -370px;
    max-width: 345px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.wrapperCookies.show {
    left: 20px;
}

.wrapperCookies header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

header i {
    color: #02580F;
    font-size: 32px;
}

header h2 {
    color: #02580F;
    font-weight: 500px;
}

.wrapperCookies .data {
    margin-top: 16px;
}

.wrapperCookies .data p {
    color: #333;
    font-size: 16px;
}

.data p a {
    color: #037c15;
    text-decoration: none;
}

.data p a:hover {
    text-decoration: underline;
}

.wrapperCookies .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background-color: #037c15;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons .button:hover {
    background-color: #02580F;
}

@media (max-width: 430px) {
    .wrapperCookies {
        bottom: 100px;
    }

    .wrapperCookies.show {
        left: 42px;
    }
}

@media (max-width: 414px) {
    .wrapperCookies.show {
        left: 34px;
    }
}

@media (max-width: 390px) {
    .wrapperCookies.show {
        left: 22px;
    }
}

@media (max-width: 375px) {
    .wrapperCookies.show {
        left: 15px;
    }
}