html, body {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
    height: 3168px;
    width: 2448px;
}

.swiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    height: 100%;
}

.btn {
    position: absolute;
    aspect-ratio: 1;
    border: none;
    /* border: 1px solid black; */
    background-color: transparent;
}

.hidden {
    display: none;
}

.show-popup,
.show-popup-box {
    width: 117px;
    background-image: url(../images/btn_plus.png);
    background-size: contain;
    background-position: center;
    animation: pulse 1s linear infinite forwards;
    cursor: pointer;
}

.show-popup.references {
    width: 262px;
    height: 72px;
    background-image: url(../images/btn_references.png);
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-repeat: no-repeat;
}

.show-home {
    width: 262px;
    height: 72px;
    background-image: url(../images/btn_home.png);
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-repeat: no-repeat;
    animation: pulse 1s linear infinite forwards;
}

.show-popup[data-popup="popup-1"] {
    top: 340px;
    left: 317px;
}

.show-popup[data-popup="popup-2"] {
    top: 648px;
    right: 868px;
}

.show-popup[data-popup="popup-3"] {
    top: 2151px;
    left: 316px;
}


.show-popup.references,
.show-home {
    top: 2939px;
    left: 145px;
}

.show-popup-box[data-popup-box="popup-box-1"] {
    top: 1836px;
    left: 1357px;
}

.show-popup-box[data-popup-box="popup-box-2"] {
    top: 1995px;
    left: 952px;
}

.show-popup-box[data-popup-box="popup-box-3"] {
    top: 2320px;
    left: 625px;
}

.show-popup-box[data-popup-box="popup-box-4"] {
    top: 2464px;
    left: 1425px;
}

.popup-box-1 {
    position: absolute;
    top: 1591px;
    left: 1494px;
    width: 707px;
    height: 593px;
    background-image: url(../images/popup3_box_symptomps.png);
    background-size: contain;
}

.popup-box-2 {
    position: absolute;
    top: 1873px;
    left: 290px;
    width: 659px;
    height: 288px;
    background-image: url(../images/popup3_box_exacerbations.png);
    background-size: contain;
}

.popup-box-3 {
    position: absolute;
    top: 2335px;
    left: 169px;
    width: 460px;
    height: 328px;
    background-image: url(../images/popup3_box_postexacerbations.png);
    background-size: contain;
}

.popup-box-4 {
    position: absolute;
    top: 2311px;
    left: 1560px;
    width: 648px;
    height: 400px;
    background-image: url(../images/popup3_box_systemic.png);
    background-size: contain;
}

.bottom-next-slide,
.bottom-prev-slide 
{
    background-repeat: no-repeat;
    position: absolute;
    width: 262px;
    height: 72px;
    cursor: pointer;
    animation: pulse 1s linear infinite forwards;
}

.bottom-next-slide {
    background-image: url(../images/btn_next.png);
    top: 2939px;
    left: 464px;
}

.bottom-prev-slide {
    background-image: url(../images/btn_prev.png);
    top: 2939px;
    left: 464px;
}

.close-popup {
    background-image: url(../images/btn_close.png);
    top: 47px;
    right: 50px;
    width: 117px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.popup-container {
    position: absolute;
    top: 0;
    left: 0;
    /*
    left: 50%;
    transform: translateX(-50%);
    */
    height: 100%;
    z-index: 999;
}

.popup-container .popup {
    width: auto;
    height: 100%;
    position: relative;
    background-color: #fff;

}

.popup-container .popup > img {
    height: 100%;
}

.popup-references {
    position: fixed !important;
    top: 0px;
    left: 0px;
}

.footer {
    font-family: "Poppins";
    font-size: 20px;
    font-weight: normal;
    color: #000;
    position: absolute;
    bottom: 51px;
    left: 699px;
    text-align: center;
    line-height: 1.3;
    z-index: 1000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}