/*
Popups
==================================================
*/
.wrap-popup {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
}
.wrap-popup[style*=block] {
    display: flex !important;
}

.row.popup {
    position: relative;
    width: 100%;
    margin: auto;
    top: auto;
    transform: none;
    max-width: 40em;
}

.popup .btn-close {
    position: absolute;
    top:0;
    right: 0;
    transform: translate(50%, -50%);
    border-radius: 50%;
    background: white;
    width: 4rem;
    height: 4rem;
    border: 2px solid;
}

.popup .csc-textpic:last-child .wrap-img {
    margin-bottom: 0;
}
.popup .wrap-img img {
    width: 100%;
}




