.cookie-popup {
    position: fixed;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    right: 100px;
    bottom: 15px;
    overflow: auto;
    z-index: 22222;
    width: 315px;
    height: 261px;
    flex-shrink: 0;
    background: #FFF;
    box-shadow: 0px 6px 20px 0px rgba(225, 224, 224, 0.50);
    opacity: 0;
    pointer-events: none;
}

.cookie-popup.a {
    transform: none;
    opacity: 1;
    pointer-events: all;
}

.cookie-popup .title {
    color: var(--primary_black, #272424);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.cookie-popup .desc {
    color: #A7A7A7;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
}

.cookie-popup .desc a {
    font-weight: 700;
    color: #C50034;
}

.cookie-popup button.submit {
    display: flex;
    height: 50px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 1px solid #C50034;
    background: #C50034;
    color: #fff;
}

@media screen and (max-width: 424px) {
    .cookie-popup {
        width: 225px;
        height: 310px;
    }
}