@charset "UTF-8";

.pup {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    user-select: none;
}

.pup img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    vertical-align: top;
    pointer-events: none;
}

.pup .pup-screen {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #0000002e;
}

.pup .pup-flex {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
}

.pup .pup-border {
    margin: auto;
    max-width: 80%;
    padding: 0 5px;
    max-height: 80vh;
    height: auto;
    box-sizing: border-box;
    z-index: 9999;
    border-radius: 25px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -1px 1px 2px 1px rgb(0 0 0 / 20%);
}

.pup .pup-title {
    padding: 0 30px;
}

.pup .pup-title-border {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom-style: solid;
    border-width: 1px;
    border-color: #ffc672;
}

.pup .pup-title-text {
    text-align: center;
    white-space: nowrap;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
}

.pup .pup-title-icon {
    font-size: 25px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.7);
    width: 25px;
    height: 25px;
    text-align: center;
    margin: auto 0;
}

.pup .pup-title-icon:hover,
.pup .pup-title-icon:active {
    color: rgba(0, 0, 0);
}

.pup .pup-content {
    height: 100%;
    overflow: auto;
}

.pup .pup-content::-webkit-scrollbar {
    /* display: none; */
}

.pup .pup-content-border {
    display: flex;
    flex-direction: column;
    padding: 50px;
    padding-top: 30px;
}

.pup .pup-content wrapper {
    padding: 0 6%;
}

.pup .owl-pup {
    opacity: 0;
}

.pup .owl-pup .item {
    display: flex;
    max-height: 50vh;
    justify-content: center;
}

.pup .owl-pup .owl-dots {
    margin-top: 25px;
}

.pup .owl-pup .owl-dots span {
    width: 10px;
    height: 10px;
    background: #ffc772;
}

.pup .video-border {
    display: flex;
    justify-content: center;
}

.pup video {
    max-width: 100%;
    max-height: 50vh;
    margin-top: 30px;
}

.pup .pup-content-text {
    margin-top: 25px;
    line-height: 1.8;
}

.pup .pup-img {
    position: relative;
}

.pup .pup-img-icon {
    position: absolute;
    top: 50%;
    padding: 0 15px;
    font-size: 50px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1;
    margin-top: -27.5px;
    cursor: pointer;
}

.pup .pup-img-icon:hover {
    color: #000;
}

.pup .pup-img-icon:active {
    color: rgba(255, 255, 255, 0.85);
}

.pup .pup-img-icon:not(:first-child) {
    right: 0;
}

@media screen and (max-width: 1024px) {

    .pup .pup-title-icon,
    .pup .pup-img-icon {
        cursor: default;
    }

    .pup .pup-border {
        max-width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .pup .pup-border {
        max-width: 80%;
    }
}

@media screen and (max-width: 550px) {
    .pup .pup-title {
        padding: 0px 9px;
    }


    .pup .pup-title-icon {
        width: 20px;
        height: 20px;
    }

    .pup .pup-title-text {
        font-size: 17px;
    }
}

@media screen and (max-width: 425px) {
    .pup .pup-border {
        max-width: 95%;
    }

    .pup .pup-content-border {
        padding: 30px 20px;
    }
}