
.custom_popup_wrapper.open {
    display: block;
}
.custom_popup_wrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background: rgba(0,0,0,0.2);
    display: none;
}
.custom_popup_wrapper .custom_popup {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: calc(100% - 50px);
    max-height: calc(100% - 20px);
    background: #FFFFFF;
    padding: 15px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.custom_popup .popup_close {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    background: #E7E7E7;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.custom_popup .popup_close:before {
    width: 100%;
    height: 2px;
}
.custom_popup .popup_close:before, .custom_popup .popup_close:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: calc(100% - 14px);
    max-height: calc(100% - 14px);
    background: #462c59;
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.custom_popup .popup_close:after {
    width: 2px;
    height: 100%;
}
.custom_popup .popup_content {
    width: 100%;
    max-height: calc(100vh - 50px);
}
.custom_popup .popup_content .popup-image {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}