.cookies-container {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 320px;
    height: 314px;
    border-radius: 12px;
    border: 1px solid #969696;
    background-color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 999;
}

.cookies-container img {
    width: 16px;
    height: 16px;
    margin-bottom: 15px;
}

.cookies-container .title-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-container p {
    font-size: 14px;
    padding: 0;
    margin-bottom: 15px;
}

.cookies-container p.title {
    font-weight: bold;
}

.cookies-container button {
    display: block;
    width: 100%;
    height: 50px;
    background-color: #00CE7C;
    border: none;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    border-radius: 100px;
}

.cookies-container button:hover {
    background-color: #00C376;
}

.cookies-container button.reject {
    background-color: #ffffff;
    border: 1px solid #00CE7C;
    color: #000000;
    font-weight: 400;
}

.cookies-container button.reject:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {

.cookies-container {
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 20px;
    right: 0;
}

}