.me-cookies-close-img {
    width: 100%;
    text-align: right;
}

.me-cookies-close-btn {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.me-cookies-title {
    font-weight: 500;
    margin: 20px 0;
}

.me-cookies-card {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-radius: 5px;
    background-color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    display: none;
    z-index: 100;
}

.me-cookies-card.active {
    display: block;
}

.me-cookies-buttons-row {
    display: flex;
    margin: 20px 0;
}

.me-cookies-accept-btn {
    margin-right: 20px;
    display: flex;
    align-items: center;
    background: #F6C10A;
    border-radius: 6px;
    color: #000;
    cursor: pointer;
    padding: 10px 20px;
}

.me-cookies-deny-btn {
    margin-right: 20px;
    display: flex;
    align-items: center;
    background: #ECEBEA;
    border-radius: 6px;
    color: #000;
    cursor: pointer;
    padding: 10px 20px;
}

@media (min-width: 320px) {
    .me-cookies-card {
        width: 80%;
    }
}

@media (min-width: 780px) {
    .me-cookies-card {
        width: 526px;
        margin-left: auto;
    }
}