* {
    --popup-border-radius: 8px;
}

.row-popup-container {
    position: fixed;
    width: 100%;
    top: 20px;
    left: 0;
    display: flex;
    flex-direction: column;
}

.row-popup {
    position: relative;
    padding: 20px 10px;
    width: 90%;
    max-width: 600px;
    margin: auto;
    margin-bottom: 10px;

    background: #fff;
    border-radius: var(--popup-border-radius);
    border: 1px solid black;
    z-index: 1;

    transition: all 1s ease;
}

.row-popup-head {
    position: absolute;
    top: 13px;
    left: 0;

    display: flex;
    justify-content: flex-end;
    width: 100%;

    z-index: 1;
}

.row-popup-close-btn {
    margin-right: 5px;
    transition: all .2s ease;
    cursor: pointer;
}

.row-popup-close-btn:hover {
    transform: scale(1.3);
}

.row-popup-close-pic {
    display: block;
    width: 32px;
    height: 32px;
    background: url(/images/svg/close.svg) no-repeat center;
}

.row-popup-hide {
    opacity: 0;
}