/* POPUP */
.ms-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.ms-popup > .ms-popup-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ms-popup.darkOverlay > .ms-popup-overlay {
    background: rgba(0, 0, 0, 0.5);
}
.ms-popup.lightOverlay > .ms-popup-overlay {
    background: rgba(255, 255, 255, 0.5);
}

.ms-popup-container {
    max-width: 700px;
    width: 100%;
    height: auto;
    position: relative;
    max-height: 100%;
    overflow: hidden auto;
}
.ms-popup-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 2;
}
.ms-popup-close:hover {
    opacity: 1;
}
.ms-popup-close:before, .ms-popup-close:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}
.ms-popup-close:before {
    transform: rotate(45deg);
}
.ms-popup-close:after {
    transform: rotate(-45deg);
}
.ms-popup-content > .ms-row {
    margin: 0;
}

/* OFFCANVAS POPUP */
.ms-popup.offcanvas-right {
    justify-content: flex-end;
}

.ms-popup.offcanvas-left {
    justify-content: flex-start;
}

.ms-popup[class*="offcanvas"] .ms-popup-container {
    height: 100%;
    /* height: 100vh; */
}