@font-face {
    font-family: 'Modern Sans';
    src: url(/App_Themes/fonts/Modern Sans Medium.otf);
}

@media screen and (min-width: 1025px) {
    :root {
        --prct: 1.2;
    }
}

@media screen and (min-width: 767px) {
    :root {
        --prct: 1;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --prct: 0.8;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --prct: 0.7;
    }
}

#popup-rwd.popup_overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 8888;
    overflow-y: hidden;
    display: none;
}

#popup-rwd .popup_content {
    height: 90vh;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
}

#popup-rwd .popup_close {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 5;
    cursor: pointer;
    font-size: 16px;
}

.rwd-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* font-family: "Modern Sans"; */
    color: rgb(1, 103, 153);
    font-size: calc(16px * var(--prct));
}

    .rwd-wrapper img {
        max-width: 100%;
        display: block;
    }

    .rwd-wrapper .slide {
        position: relative;
        height: 90vh;
        margin: 0px auto;
        display: grid;
        aspect-ratio: 1080 / 1920;
        padding: 0px;
        overflow: hidden;
        background-image: url("../images/v3/account/rewind/background.png");
    }

    .rwd-wrapper .slide-items {
        position: relative;
        grid-area: 1 / 1;
        overflow: hidden;
        font-family: "Modern Sans";
        line-height: 1.6;
    }

        .rwd-wrapper .slide-items p {
            margin: 0px;
        }

        .rwd-wrapper .slide-items section {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

    .rwd-wrapper .slide-nav {
        grid-area: 1 / 1;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        background-image: linear-gradient(rgba(0, 0, 0, 0.09) 0%, rgba(255, 255, 255, 0) 15%);
    }

    .rwd-wrapper .slide-items > * {
        position: absolute;
        top: 0px;
        opacity: 0;
        pointer-events: none;
    }

    .rwd-wrapper .slide-items > .sl-active {
        position: relative;
        opacity: 1;
        pointer-events: initial;
    }

    .rwd-wrapper .slide-nav button {
        appearance: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        opacity: 0;
    }

    .rwd-wrapper .slide-thumb {
        display: flex;
        grid-column: 1 / 3;
        padding: 0px 15px;
    }

        .rwd-wrapper .slide-thumb > span {
            flex: 1 1 0%;
            display: block;
            height: 2px;
            background: rgb(175, 175, 175);
            margin: 20px 3px 3px;
            border-radius: 3px;
            overflow: hidden;
        }

            .rwd-wrapper .slide-thumb > span.read::after {
                content: "";
                display: block;
                height: inherit;
                background: rgba(255, 255, 255, 0.9);
                border-radius: 3px;
            }

            .rwd-wrapper .slide-thumb > span.sl-active::after {
                content: "";
                display: block;
                height: inherit;
                background: rgba(255, 255, 255, 0.9);
                border-radius: 3px;
                transform: translateX(-100%);
                animation: 10s linear 0s 1 normal forwards running thumb;
            }

@keyframes thumb {
    100% {
        transform: initial;
    }
}

.p-rel {
    position: relative;
}

.rwd-wrapper .abs {
    position: absolute;
}

@keyframes appr {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.rwdsd-1 .svg-1 {
    z-index: 2;
}

.rwd-wrapper .path {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

.rwd-wrapper .sl-active .path {
    animation: 5s ease 4s 1 normal backwards running dash;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.rwdsd-1 .txt1 {
    font-size: calc(25px * var(--prct));
    top: 5%;
    left: 6%;
    opacity: 1;
}

.rwd-wrapper .sl-active .rwdsd-1 .txt1 {
    animation: 1s ease 0s 1 normal none running slide-txt;
}

.rwdsd-1 .txt2 {
    top: 12%;
    left: 6%;
    opacity: 1;
    z-index: 2;
}

.rwd-wrapper .sl-active .rwdsd-1 .txt2 {
    animation: 1s ease 1s 1 normal backwards running slide-txt;
}

@keyframes slide-txt {
    0% {
        opacity: 0;
        left: 0%;
    }

    100% {
        opacity: 1;
        left: 6%;
    }
}

.rwdsd-1 .txt3 {
    top: 20%;
    left: 3%;
    width: 90%;
    height: 50%;
    background-image: url("../images/v3/account/rewind/note.png");
    background-size: cover;
    font-size: calc(30px * var(--prct));
    font-weight: 700;
    padding: 45px;
}

.rwd-wrapper .sl-active .rwdsd-1 .txt3 {
    animation: 1s ease 2s 1 normal backwards running appr;
}

.rwdsd-1 .txt3 hr {
    width: 20%;
    border-top: 10px solid rgb(242, 108, 59);
}

.rwdsd-1 .hand-1 {
    position: absolute;
    right: -2%;
    z-index: 3;
}

.rwd-wrapper .sl-active .rwdsd-1 .hand-1 {
    animation: 2s ease 2.5s 1 normal backwards running slide-hand;
}

@keyframes slide-hand {
    0% {
        right: -50%;
    }

    100% {
        right: -2%;
    }
}

.rwdsd-1 .hand-2 {
    position: absolute;
    left: -2%;
    bottom: 0%;
    z-index: 3;
}

.rwd-wrapper .sl-active .rwdsd-1 .hand-2 {
    animation: 2s ease 2.5s 1 normal backwards running slide-sechand;
}

@keyframes slide-sechand {
    0% {
        left: -50%;
    }

    100% {
        left: -2%;
    }
}

.rwdsd-1 .magnify-dt {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 55%;
}

.rwdsd-1 .date {
    background-image: url("../images/v3/account/rewind/magnify.png");
    background-size: cover;
    width: 61%;
    height: 30%;
    font-size: calc(18px * var(--prct));
    font-weight: 700;
    position: absolute;
    bottom: 0%;
    right: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rwd-wrapper .sl-active .rwdsd-1 .date {
    animation: 3s ease 9s 1 normal backwards running rtat;
}

.rwdsd-1 .date .dt-txt1 {
    font-size: calc(55px * var(--prct));
    line-height: 1;
}

@keyframes rtat {
    0% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.sd-2 {
    background-image: url("../images/v3/account/rewind/background2.gif");
    background-size: cover;
}

.rwdsd-2 .txt1 {
    position: absolute;
    top: 4%;
    left: 39%;
    font-size: calc(30px * var(--prct));
    font-weight: 700;
}

.sl-active .rwdsd-2 .txt1, .sl-active .rwdsd-2 .img1, .sl-active .rwdsd-2 .img2 {
    animation: 2s ease 0s 1 normal none running appr;
}

.rwdsd-2 .img1 {
    position: absolute;
    top: 7%;
    left: 8%;
}

.rwdsd-2 .img2 {
    position: absolute;
    top: 6%;
    right: 8%;
}

.rwdsd-2 .txt2 {
    position: absolute;
    top: 15%;
    left: 10%;
}

.rwdsd-2 .txt3 {
    position: absolute;
    top: 15%;
    right: 10%;
}

.sl-active .rwdsd-2 .txt2 {
    animation: 1s ease 1s 1 normal backwards running appr;
}

.sl-active .rwdsd-2 .txt3 {
    animation: 1s ease 2s 1 normal backwards running appr;
}

.rwdsd-2 .txt2-2, .rwdsd-2 .txt3-2 {
    color: rgb(242, 108, 59);
    font-weight: 700;
    font-size: calc(20px * var(--prct));
}

.rwdsd-2 .vch {
    background-image: url("../images/v3/account/rewind/voucher.png");
    background-size: cover;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 74%;
    height: 12%;
    position: absolute;
}

    .rwdsd-2 .vch .vch-1 {
        margin-left: -18%;
        text-align: center;
        font-size: calc(14px * var(--prct));
        line-height: 1.2;
    }

        .rwdsd-2 .vch .vch-1.sp-vch {
            margin-left: -20%;
        }

    .rwdsd-2 .vch.vch1 {
        top: 28%;
        left: 15%;
    }

.sl-active .rwdsd-2 .vch.vch1 {
    animation: 2s ease 3s 1 normal backwards running slilft-vch;
}

@keyframes slilft-vch {
    0% {
        opacity: 0;
        left: -50%;
    }

    100% {
        opacity: 1;
        left: 15%;
    }
}

.rwdsd-2 .vch.vch2 {
    top: 41%;
    right: 11%;
}

.sl-active .rwdsd-2 .vch.vch2 {
    animation: 2s ease 4s 1 normal backwards running slirgt-vch;
}

@keyframes slirgt-vch {
    0% {
        opacity: 0;
        right: -50%;
    }

    100% {
        opacity: 1;
        right: 11%;
    }
}

.rwdsd-2 .vch.vch3 {
    top: 54%;
    left: 15%;
}

.rwdsd-2 .vch3-1 {
    position: absolute;
    top: 53%;
    left: 11%;
}

.sl-active .rwdsd-2 .vch.vch3 {
    animation: 2s ease 5s 1 normal backwards running slilft-vch;
}

.sl-active .rwdsd-2 .vch3-1 {
    animation: 2s ease 5s 1 normal backwards running slilal-vch;
}

@keyframes slilal-vch {
    0% {
        opacity: 0;
        left: -50%;
    }

    100% {
        opacity: 1;
        left: 11%;
    }
}

.rwdsd-2 .vch.vch4 {
    top: 67%;
    right: 11%;
}

.rwdsd-2 .vch4-1 {
    position: absolute;
    top: 66%;
    right: 80%;
}

.rwdsd-2 .vch3-1, .rwdsd-2 .vch4-1 {
    width: 10%;
    height: 10%;
}

.sl-active .rwdsd-2 .vch.vch4 {
    animation: 2s ease 6s 1 normal backwards running slirgt-vch;
}

.sl-active .rwdsd-2 .vch4-1 {
    animation: 1.8s ease 6s 1 normal backwards running sliral-vch;
}

@keyframes sliral-vch {
    0% {
        opacity: 0;
        right: -50%;
    }

    100% {
        opacity: 1;
        right: 80%;
    }
}

.sd-3, .sd-4 {
    background-image: url("../images/v3/account/rewind/background3.png");
    background-size: cover;
}

.rwdsd-3 {
    display: flex;
    justify-content: center;
}

    .rwdsd-3 .txt1 {
        margin-top: 13%;
    }

    .rwdsd-3 .txt1-1 {
        font-size: calc(35px * var(--prct));
        font-weight: 700;
    }

.sl-active .rwdsd-3 .txt1 {
    animation: 3s ease 0s 1 normal none running appr;
}

.rwdsd-3 .percent {
    background-image: url("../images/v3/account/rewind/note2.gif");
    background-size: cover;
    width: 85%;
    height: 62%;
    position: absolute;
    top: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px 5px 0px;
    font-size: calc(48px * var(--prct));
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.rwdsd-3 .percent2 {
    background-image: url("../images/v3/account/rewind/roket.gif");
    background-size: cover;
    width: 90%;
    height: 50%;
    position: absolute;
    top: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px 5px 0px;
    font-size: calc(48px * var(--prct));
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.rwdsd-3 .percent .prct-txt {
    font-size: calc(18px * var(--prct));
}

.sl-active .rwdsd-3 .percent, .sl-active .rwdsd-3 .percent2 {
    animation: 2s ease 2s 1 normal backwards running appr;
}

.rwdsd-4 {
    display: flex;
    justify-content: center;
}

    .rwdsd-4 .txt1 {
        margin-top: 13%;
    }

    .rwdsd-4 .txt1-1 {
        font-size: calc(35px * var(--prct));
        font-weight: 700;
    }

.sl-active .rwdsd-4 .txt1 {
    animation: 3s ease 0s 1 normal none running appr;
}

.rwdsd-4 .percent {
    background-image: url("../images/v3/account/rewind/note3.gif");
    background-size: cover;
    width: 85%;
    height: 62%;
    position: absolute;
    top: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px 18px 0px;
    font-size: calc(48px * var(--prct));
    color: rgb(255, 255, 255);
    font-weight: 700;
}

    .rwdsd-4 .percent .prct-txt {
        font-size: calc(18px * var(--prct));
    }

.sl-active .rwdsd-4 .percent {
    animation: 2s ease 2s 1 normal backwards running appr;
}

.rwdsd-5 .txt1 {
    margin-top: 10%;
    text-align: center;
}

.rwdsd-5 .img-1 {
    display: flex;
    justify-content: center;
    padding-top: 5%;
}

    .rwdsd-5 .img-1 img {
        width: 85%;
    }

.rwdsd-5 .img-2 {
    position: absolute;
    right: 8%;
}

.rwdsd-5 .div1 {
    display: flex;
    justify-content: center;
    margin-top: 3%;
}

.rwdsd-5 .txt2 {
    background-image: url("../images/v3/account/rewind/note4.png");
    background-size: cover;
    position: absolute;
    width: 95%;
    height: 56%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
}

.rwdsd-5 .txt2-1, .rwdsd-5 .txt2-2, .rwdsd-5 .txt2-3 {
    background-image: url("../images/v3/account/rewind/back.png");
    background-size: cover;
    position: absolute;
    width: 82%;
    height: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    padding: 0px 25px;
    text-align: center;
}

.rwdsd-5 .txt2-1 {
    top: 10%;
}

.rwdsd-5 .txt2-2 {
    top: 35%;
}

.rwdsd-5 .txt2-3 {
    top: 60%;
}

.sl-active .rwdsd-5 .txt1 {
    animation: 2s ease 0s 1 normal none running appr;
}

.sl-active .rwdsd-5 .img-1 {
    animation: 2s ease 1s 1 normal backwards running appr;
}

.sl-active .rwdsd-5 .img-2 {
    animation: 2s steps(20) 1.5s 1 normal backwards running appr, 2s ease infinite normal running rotate;
}

@keyframes rotate {
    0% {
        scale: 1;
        transform: rotate(0deg);
    }

    25% {
        scale: 0.8;
    }

    50% {
        scale: 1;
        transform: rotate(180deg);
    }

    75% {
        scale: 0.8;
    }

    100% {
        scale: 1;
        transform: rotate(360deg);
    }
}

.sl-active .rwdsd-5 .txt2 {
    animation: 2s ease 2.5s 1 normal backwards running appr;
}

.sl-active .rwdsd-5 .txt2-1 {
    animation: 2s ease 4s 1 normal backwards running appr;
}

.sl-active .rwdsd-5 .txt2-2 {
    animation: 5s ease 5s 1 normal backwards running appr;
}

.sl-active .rwdsd-5 .txt2-3 {
    animation: 5s ease 6s 1 normal backwards running appr;
}

.sd-6 {
    background-image: url("../images/v3/account/rewind/product-rg.gif");
    background-size: cover;
}

.rwdsd-6 .txt1 {
    padding-top: 45%;
}

.rwdsd-6 .txt2 {
    display: flex;
    justify-content: center;
}

.rwdsd-6 .txt2-1 {
    position: absolute;
    display: flex;
    font-size: calc(35px * var(--prct));
    color: rgb(242, 108, 59);
    font-weight: 700;
    padding-top: 5%;
}

.rwdsd-6 .txt2-2 {
    font-size: calc(75px * var(--prct));
}

.rwdsd-6 .svg-1 {
    margin-top: 15%;
}

.rwdsd-6 .svgCircle {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

.sl-active .rwdsd-6 .txt1 {
    animation: appr 2s;
}

.sl-active .rwdsd-6 .txt2-3 {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    text-align: center;
    animation: appr 1s forwards, typing 1s steps(10, end) forwards;
    animation-delay: 2s;
    animation-fill-mode: both;
}

@keyframes typing {
    from {
        border-right: 16px solid #F26C3B;
        width: 0
    }

    to {
        border-right: 0px solid #F26C3B;
        width: 100%;
    }
}

.sl-active .rwdsd-6 .svgCircle {
    animation: dash 1s linear;
    animation-delay: 3s;
    animation-fill-mode: backwards;
}

.rwdsd-7 .txt1 {
    text-align: center;
    margin-top: 13%;
    font-weight: 700;
}

.rwdsd-7 .txt2 {
    display: flex;
    justify-content: center;
}

.rwdsd-7 .div1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15%;
}

.rwdsd-7 .txt2-1 {
    text-align: center;
    background-image: url("../images/v3/account/rewind/top.gif");
    background-size: cover;
    width: 81%;
    height: 118%;
    position: absolute;
    top: -12%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rwdsd-7 .pno {
    color: rgb(242, 108, 59);
    font-size: calc(25px * var(--prct));
    font-weight: 700;
}

.rwdsd-7 .img-2 {
    position: absolute;
    right: 5%;
}

.rwdsd-7 .txt3 {
    text-align: center;
    margin-top: 10%;
}

.rwdsd-7 .txt3-1 {
    position: absolute;
    padding-top: 2%;
}

.rwdsd-7 .txt4 {
    display: flex;
    justify-content: center;
    margin-top: 5%;
}

.rwdsd-7 .svgCircle {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

.sl-active .rwdsd-7 .txt1 {
    animation: 2s ease 0s 1 normal none running appr;
}

.sl-active .rwdsd-7 .img-1 {
    animation: 2s ease 1s 1 normal backwards running appr;
}

.sl-active .rwdsd-7 .txt2-1 {
    animation: 2s ease 2s 1 normal backwards running appr;
}

.sl-active .rwdsd-7 .txt3 {
    animation: 2s ease 3s 1 normal backwards running appr;
}

.sl-active .rwdsd-7 .txt3-1 {
    animation: 2s ease 4s 1 normal backwards running appr;
}

.sl-active .rwdsd-7 .svgCircle {
    animation: 1s linear 5s 1 normal backwards running dash;
}

.sl-active .rwdsd-7 .img-2 {
    animation: 2s steps(20) 3s 1 normal backwards running appr, 2s ease infinite normal running zmglw;
}

@keyframes zmglw {
    0% {
        scale: 0.5;
    }

    100% {
        scale: 0.8;
    }
}

.rwdsd-8 .txt1 {
    text-align: center;
    margin-top: 12%;
}

.rwdsd-8 .txt2, .rwdsd-8 .txt3 {
    display: flex;
    justify-content: center;
}

.rwdsd-8 .txt2-1 {
    background-image: url("../images/v3/account/rewind/excard-wrapped-2023-success-locate.gif");
    background-size: cover;
    width: 100%;
    height: 63%;
    position: absolute;
    top: 10%;
    padding: 0px 0px 65px;
    font-size: calc(25px * var(--prct));
    color: rgb(255, 255, 255);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rwdsd-8 .txt3-1 {
    text-align: center;
    position: absolute;
    bottom: 10%;
}

.sl-active .rwdsd-8 .txt1 {
    animation: 2s ease 0s 1 normal none running appr;
}

.sl-active .rwdsd-8 .txt2-1 {
    animation: 2s ease 1s 1 normal backwards running appr;
}

.sl-active .rwdsd-8 .txt3 {
    animation: 2s ease 2s 1 normal backwards running appr;
}

.rwdsd-9 .txt1 {
    text-align: center;
    margin-top: 12%;
    font-weight: 700;
}

.rwdsd-9 .div-1 {
    background-image: url("../images/v3/account/rewind/note6.gif");
    background-size: cover;
    padding: 20% 10% 20% 5%;
    width: 86%;
    margin: 5% auto;
    height: 80%;
    position: absolute;
}

.rwdsd-9 .txt2, .rwdsd-9 .txt3, .rwdsd-9 .txt4 {
    display: flex;
    justify-content: space-between;
}

.rwdsd-9 .txt2-3, .rwdsd-9 .txt3-3, .rwdsd-9 .txt4-3 {
    text-align: right;
}

.rwdsd-9 .ctt-1, .rwdsd-9 .ctt-2, .rwdsd-9 .ctt-3 {
    padding: 5% 0px;
}

.rwdsd-9 .ctt-1, .rwdsd-9 .ctt-2 {
    border-bottom: 1px solid rgb(1, 103, 153);
}

.sl-active .rwdsd-9 .txt1 {
    animation: 2s ease 0s 1 normal none running appr;
}

.sl-active .rwdsd-9 .div-1 {
    animation: 2s ease 1s 1 normal backwards running appr;
}

.sl-active .rwdsd-9 .ctt-1 {
    animation: 2s ease 2s 1 normal backwards running appr;
}

.sl-active .rwdsd-9 .ctt-2 {
    animation: 2s ease 3s 1 normal backwards running appr;
}

.sl-active .rwdsd-9 .ctt-3 {
    animation: 2s ease 4s 1 normal backwards running appr;
}

.rwdsd-10 .txt1 {
    text-align: center;
    margin-top: 12%;
}

.rwdsd-10 .txt1-1 {
    font-weight: 700;
    font-size: calc(40px * var(--prct));
}

.rwdsd-10 .div1 {
    display: flex;
    justify-content: center;
}

.rwdsd-10 .div1-1 {
    background-image: url("../images/v3/account/rewind/drop.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 87%;
    height: 65%;
    position: absolute;
}

.rwdsd-10 ul {
    list-style-image: url("../images/v3/account/rewind/spot.png");
    list-style-position: outside;
    margin-left: 20%;
    margin-top: 5%;
}

.rwdsd-10 .div1-1 ul li {
    color: rgb(242, 108, 59);
    padding: 5%;
}

.sl-active .rwdsd-10 .txt1 {
    animation: 2s ease 0s 1 normal none running appr;
}

.sl-active .rwdsd-10 .div1-1 {
    animation: 2s ease 1s 1 normal backwards running appr;
}

    .sl-active .rwdsd-10 .div1-1 li:nth-child(1) {
        animation: 2s ease 2s 1 normal backwards running appr;
    }

    .sl-active .rwdsd-10 .div1-1 li:nth-child(2) {
        animation: 2s ease 3s 1 normal backwards running appr;
    }

    .sl-active .rwdsd-10 .div1-1 li:nth-child(3) {
        animation: 2s ease 4s 1 normal backwards running appr;
    }

.rwdsd-11 .div1-1 {
    background-image: url("../images/v3/account/rewind/pop.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 61%;
    position: absolute;
    top: 5%;
    font-size: calc(25px * var(--prct));
}

.rwdsd-11 .img-1 {
    position: absolute;
    bottom: 20%;
    right: -5%;
}

.rwdsd-11 .div2 {
    display: flex;
    justify-content: center;
    text-align: center;
}

.rwdsd-11 .txt1 {
    position: absolute;
    bottom: 15%;
    font-size: calc(14px * var(--prct));
    line-height: 1.2;
}

.rwdsd-11 .txt2 {
    position: absolute;
    bottom: 4%;
    font-size: calc(12px * var(--prct));
    line-height: 1.2;
}

.rwdsd-11 .glw-1 {
    position: absolute;
    bottom: 23%;
    left: 5%;
}

.rwdsd-11 .glw-2 {
    position: absolute;
    bottom: 8%;
    right: 10%;
}

.sl-active .rwdsd-11 .img-1 {
    animation: 0.5s ease 0s 1 normal forwards running slihrt;
}

@keyframes slihrt {
    0% {
        right: -50%;
    }

    100% {
        right: -5%;
    }
}

.sl-active .rwdsd-11 .div1-1 {
    animation: 0.5s ease 1s 1 normal backwards running zoom;
}

@keyframes zoom {
    0% {
        opacity: 0;
        scale: 0.5;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}

.sl-active .rwdsd-11 .txt1, .sl-active .rwdsd-11 .glw-1 {
    animation: 2s ease 2s 1 normal backwards running appr;
}

.sl-active .rwdsd-11 .txt2, .sl-active .rwdsd-11 .glw-2 {
    animation: 2s ease 3s 1 normal backwards running appr;
}
