.afx-popup {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10050;
    max-width: 1000px;
    max-height: 1000px;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.afx-popup_mobile {
    left: 10px;
    bottom: 10px;
}

.afx-popup_visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.afx-popup_hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.afx-popup__content {
    position: relative;
    max-width: 1000px;
    max-height: 1000px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
    background: #111;
    line-height: 0;
}

.afx-popup__content img,
.afx-popup__content iframe,
.afx-popup__content > div {
    display: block;
    max-width: 1000px;
    max-height: 1000px;
}

.afx-popup__close {
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: #ececec;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    cursor: pointer;
    appearance: none;
}

.afx-popup__close:hover {
    background: #f7f7f7;
}

.afx-popup__close-label {
    display: block;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
