@charset "UTF-8";
:root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --reject-color: rgba(0, 0, 0, 0.9);
}
#popup {
    z-index: 10001;
    position: absolute;
    width: 70%;
    max-width: 500px;
    top: 100px;
    left: 100px;
    border-radius: var(--space-10);
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
#popup .inner {
    width:100%;
    position: relative;
}
#popup .popupContent {
    position: relative;
    /* background: var(--reject-color); */
}
#popup .popupContent iframe {
    width: 100%;
}
#popup .inner .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
#popup .inner .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#popup .swiper-pagination {
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto
}
#popup .swiper-pagination-bullet {
    margin: 0 3px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--white-color);
}
#popup .swiper-pagination-bullet-active {
    background-color: var(--white-color);
}
#popup .swiper-button-next:after, 
#popup .swiper-button-prev:after {
    font-size: 20px;
    color: var(--white-color)
}
#popup .popupClose {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    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 .popupClose img {
    width: 18px;
    height: 18px;
}
#popup .popupClose:hover {
    background-color: var(--reject-color);
}
#popup .popupReject {
    width:100%;
    height: 40px;
    font-size: 14px;
    color: var(--white-color);
    background: var(--reject-color);
    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 .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 {
            width:90%;
            margin:0 auto;
            left:0 !important;
            right:0
        }
        #popup img {
            width:100% !important
        }
        #popup .popupContent {
            width: 100% !important;
            height: auto !important
        }
        #popup .popupReject {
            font-size: 13px
        }
        #popup .popupClose {
            width: 20px;
            height:20px;
            top: 10px;
            right: 10px;
        }
        #popup .popupClose svg {
            width: 20px;
            height:20px;
        }
    }