.popup_layer {
    z-index: 10001;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    width: 70%;
    max-width: 500px;
    top: 100px;
    left: 100px
}
.popup_layer .popup-inner {
    width:100%;
    position: relative;
}
.popup_layer .popup_layer_close {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    border-radius: 50%;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.popup_layer .popup_layer_close svg {
    width: 26px;
    height: 26px;
    pointer-events: none;
    vertical-align: top;
}
.popup_layer .popup_layer_close svg .st10 {
    stroke: #000000
}
.popup_layer .popup_layer_close:hover svg .st10 {
    stroke: red
}
.popup_layer .popup_layer_reject {
    width:100%;
    height: 40px;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.popup_layer .popup_layer_reject:hover {
    background: red
}
.popup_layer .swiper-button-next:after, 
.popup_layer .swiper-button-prev:after {
    font-size: 20px;
    color: #000000
}
/* 
.popup_layer .gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
}
.popupSlide .gallery-slider .swiper-slide {
    width: auto;
}
.popupSlide .gallery-slider .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.popupSlide .gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.popupSlide .gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
}
.popupSlide .gallery-thumbs .swiper-slide-active {
    opacity: 1;
}
.popupSlide .gallery-thumbs .swiper-slide img {
    width: auto;
    height: 100%;
} */
    @media (max-width: 768px) {
        .popup_layer {
            width:90%;
            margin:0 auto;
            left:0 !important;
            right:0
        }
        .popup_layer img {
            width:100% !important
        }
        .popup_layer .popup_layer_con {
            width: 100% !important;
            height: auto !important
        }
        .popup_layer .popup_layer_reject {
            font-size: 13px
        }
        .popup_layer .popup_layer_close {
            width: 20px;
            height:20px;
            top: 10px;
            right: 10px;
        }
        .popup_layer .popup_layer_close svg {
            width: 20px;
            height:20px;
        }
    }