.floatingButtonContainer {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 99;
}

@media (max-width: 1000px) {
    .floatingButtonContainer {
        top: auto;            /* 기존 top 값 제거 */
        bottom: 5px;         /* 하단 여백 */
        left: 50%;            /* 가운데 정렬 기준 */
        right: auto;          /* 기존 right 제거 */
        transform: translateX(-50%); /* 가운데 정렬 */
        width: 90%;       /* 내용만큼 너비 유지 */
        max-width: 100%;
    }
}

.floatingButtonContainer .container {
    position: relative;
}

.floatingButtonContainer .container .closeButton {
    position: absolute;
    top: -10px;
    right: -12px;
    cursor: pointer;
    display: flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 60px;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.floatingButtonContainer .container .ctaButton {
    position: relative;
    display: flex;
    padding: 0 24px 0 68px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    height: 60px;
    border-radius: 60px;
    background-color: rgba(0, 0, 0, 0.72);
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.floatingButtonContainer .container .ctaButton .text {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    font-family: "Pretendard Variable", "Pretendard", "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", " sans-serif "," sans-serif";
    color: #FFF;
    margin: 0 4px;
}

.floatingButtonContainer .container .ctaButton .logoBox {
    position: absolute;
    left: 4px;
    display: flex;
    width: 52px;
    height: 52px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 32px;
    background-color: #fff
}

.floatingButtonContainer .container .ctaButton .logo {
    width: 35px;
}

.floatingButtonContainer .container .ctaButton .arrow {
    width: 16px;
    height: 16px;
}

#RenewalMain {
    width:100%;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #FFF 24%, #F3F0FF 72%, #CDBEFF 100%);
}

#RenewalMain .container {
    /*max-width: 1080px;*/
    margin-left: auto;
    margin-right: auto;
}


#RenewalMain .container > .contents {
    /* header 64px, 하단 현황 66px */
    /*height: calc(100vh - 64px - 200px);*/
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 78px;
    gap: 48px;
}

#RenewalMain .container > .contents > .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
#RenewalMain .container > .contents > .title > .main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

#RenewalMain .container > .contents > .title > .main > img{
    position: absolute;
    width: 150px;
    bottom: 0;
    left: 115px;
    z-index: -1;
}


#RenewalMain .container > .contents > .title > .main > span {
    font-size: 40px;
    font-weight: 800;
    line-height: 148%;
}

#RenewalMain .container > .contents > .title > span {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

#RenewalMain .container > .contents > .buttonWrap {
    height: 48px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 4px;
    background: linear-gradient(90deg, #5F2EFF 40%, #8C2EFF 100%);
    box-shadow: 0 4px 12px -4px rgba(95, 46, 255, 0.40);
    border-radius: 48px;
}

#RenewalMain .container > .contents > .buttonWrap > .buttonWithIcon {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2px;
    /*font-size: 18px;*/
    /*font-weight: 600;*/
    /*line-height: 160%;*/
    /*margin: 0 4px;*/
    /*color: #fff;*/
    /*display: flex;*/
}

#RenewalMain .container > .contents > .buttonWrap > .buttonWithIcon > .buttonText {
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    margin: 0 4px;
    color: #fff;
    display: flex;
    align-items: center;
}
#RenewalMain .container > .contents > .buttonWrap > .buttonWithIcon > .arrow {
    width: 16px;
    height: 16px;
}
/*#RenewalMain .container > .contents > .buttonWrap > button > div {*/
/*    height: 100%;*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*    line-height: 160%;*/
/*    margin: 0 4px;*/
/*    color: #fff;*/
/*}*/

#RenewalMain .container > .contents > .sliderContainer {
    position: relative;
    /*overflow-x: visible;*/
}

#RenewalMain .container > .contents > .sliderContainer > .slideWrap {
    /*margin-top: 16px;*/
    width: 100vw;
    /*padding: 10px 0 15px 0;*/
    /*!*max-width: 100vw;*!*/
    /*min-width: 420px;*/
    /*min-height: 50px;*/
    /*position: relative;*/
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

#RenewalMain .container > .contents > .sliderContainer > .balloonContainer {
    animation: float 3s ease-in-out infinite;
    position: absolute;
    left:50%;
    bottom: -28px;
    transform: translateX(-50%);
    display: flex;
    min-width: 214px;
    height: 42px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(4px);
    z-index: 998;
}

#RenewalMain .container > .contents > .sliderContainer >.balloonContainer > img {
    position: absolute;
    width: 8px;
    height: 5px;
    fill: rgba(0, 0, 0, 0.64);
    top: -5px;
    right: 40px;
}

#RenewalMain .container > .contents > .sliderContainer > .balloonContainer > span {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}








#SummaryWrap {
    background: linear-gradient(90deg, #5F2EFF 40%, #8C2EFF 100%);
}

#SummaryWrap .summary {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

#SummaryWrap .summary .divider {
    height: 16px;
    width: 1px;
    background-color: #fff;
    opacity: 0.4;
}

#SummaryWrap .summary * {
    color: #ffffff;
    font-size: 16px;
    line-height: 160%; /* 25.6px */
    font-style: normal;
}







#Revenue {
    width: 100%;
    background-color: #F3F5F7;
}

#Revenue .revenueContent {
    margin-left: auto;
    margin-right: auto;
    padding: 80px 20px 120px 20px;
    max-width: 1120px;
    width: 100%;
}

#Revenue .revenueContent .contentWrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#Revenue .revenueContent .contentWrap .title span {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 51.2px */
}

#Revenue .revenueContent .contentWrap .cardWrap {
    display: flex;
    gap: 24px;
}

#Revenue .revenueContent .contentWrap .cardWrap .card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 16px;
    background-color: #fff;
}

#Revenue .revenueContent .contentWrap .cardWrap .card .title {
    color:  #424242;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 148%; /* 23.68px */
}

#Revenue .revenueContent .contentWrap .cardWrap .card .revenue {
    color: #424242;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 51.2px */
}

#Revenue .revenueContent .contentWrap .cardWrap .card .cardDescription span {
    display: flex;
    flex-direction: column;
    color: #757575;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%; /* 17.76px */
}








#Introduce {
    width: 100%;

}

#Introduce .container {
    margin-left: auto;
    margin-right: auto;
    padding: 80px 20px 120px 20px;
    max-width: 1120px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

#Introduce .container .leftDescription {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


#Introduce .container .leftDescription .descriptionWrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#Introduce .container .leftDescription .title span {
    color: #212121;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 51.2px */
    align-self: stretch;
}
#Introduce .container .leftDescription .desc_mobile {
    display: none;
}
#Introduce .container .leftDescription .desc_web {
    display: flex;
    flex-direction: column;
}

#Introduce .container .leftDescription .desc_web span {
    color: #212121;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 32px */
}

#Introduce .container .leftDescription .desc_web span b {
    font-weight: 700;
    color: #212121;
    font-size: 20px;
    font-style: normal;
    line-height: 160%; /* 32px */
}

#Introduce .container .leftDescription .iminLink {
    display: flex;
    align-items: center;
    gap: 8px;
}


#Introduce .container .leftDescription .iminLink span {
    color: #5F2EFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

#Introduce .container .leftDescription .iminLink .arrow {
    width: 12px;
    height: 12px;
}

#Introduce .container .leftDescription .qnaWrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#Introduce .container .leftDescription .qnaWrap .question {
    display: flex;
    padding: 32px;
    align-items: center;
    gap: 16px;
    border-radius: 32px 32px 32px 4px;
    background-color: #F3F5F7;
    width: fit-content;
}

#Introduce .container .leftDescription .qnaWrap .question .q {
    display: flex;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    /*padding-top: 2px;*/
    /*padding-left:1px;*/
    align-items: center;
    aspect-ratio: 1/1;
    color: #FFF;
    text-align: center;
    font-family: "GmarketSansBold";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 19.2px */
    border-radius: 24px;
    background-color: #B3BDC7;
}

#Introduce .container .leftDescription .qnaWrap .question .qnaDescription {
    color: #424242;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 148%; /* 23.68px */
}

#Introduce .container .leftDescription .qnaWrap .answer {
    display: flex;
    padding: 32px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 32px 32px 4px 32px;
    background: linear-gradient(90deg, #F3F0FF 40%, #F7F0FF 100%);
}

#Introduce .container .leftDescription .qnaWrap .answer .a {
    display: flex;
    width: 24px;
    height: 24px;
    /*padding-top: 2px;*/
    /*padding-left:1px;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    color: #FFF;
    text-align: center;
    font-family: "GmarketSansBold";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 19.2px */
    border-radius: 24px;
    background-color: #B59FFF;
}

#Introduce .container .leftDescription .qnaWrap .answer .answerDescription {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#Introduce .container .leftDescription .qnaWrap .answer .answerDescription span {
    color: #424242;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 148%; /* 23.68px */
}

#Introduce .container .leftDescription .qnaWrap .answer .answerDescription b {
    font-size: 16px;
    font-weight: 600;
}

#Introduce .container .leftDescription .qnaWrap .answer .answerDescription .point_mobile {
    display: none;
}

#Introduce .container .leftDescription .qnaWrap .answer .answerDescription .point_web {
    display: block;
    font-weight: 600;
}

#Introduce .container .rightDescription {
    max-width: 302px;
    max-height: 532px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /*display: flex;*/
    /*justify-content: center;*/
    overflow:hidden;
    border-radius: 16px;
}

#Introduce .container .rightDescription .youtubeVideo {
    position: relative;
    width: 100%;
    /*height: 100%;*/
    /*width: 304px;*/
    /*height: 540px;*/
    padding-bottom: 177.78%;
    border-radius: 16px;
}


#Introduce .container .rightDescription .youtubeVideo iframe {
    /*border: 1px solid #fff;*/
    border-top: 3px solid #fff;
    /*border-bottom: 1px solid #fff;*/
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    border-radius: 16px;
        /*border: 1px solid #fff;*/

}

#Introduce .container .rightDescription .youtubeVideo .thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.ytimg.com/vi/ZzQFKTglW2s/oar2.jpg?sqp=-oaymwEoCJUDENAFSFqQAgHyq4qpAxcIARUAAIhC2AEB4gEKCBgQAhgGOAFAAQ==&rs=AOn4CLBL5S-I9C_o5DZkYPJzVg2qeZPaaQ') !important;
    z-index: 99999;
}








#Rewards {
    width: 100%;
    background-color: #F3F5F7;
}

#Rewards .container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 80px 20px 120px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#Rewards .container .top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

#Rewards .container .top .title {
    color: #212121;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 51.2px */
}

#Rewards .container .top .descContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#Rewards .container .top .descContainer .desc {
    color: #212121;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 32px */
}

#Rewards .container .top .descContainer .desc b {
    color: #212121;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

#Rewards .container .top .descContainer .guide {
    display: flex;
    align-items: center;
    gap: 8px;
}

#Rewards .container .top .descContainer .guide span {
    color: #5F2EFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

#Rewards .container .top .descContainer .guide img {
    width: 12px;
    height: 12px;
}

#Rewards .container .bottom {
    width: 100%;
    background-color: #fff;
    padding: 16px 48px 16px 48px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    border-radius: 16px;
}

#Rewards .container .bottom .left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

#Rewards .container .bottom .left .rewardIcon {
    background: linear-gradient(90deg, #5F2EFF 40%, #8C2EFF 100%);
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    padding: 0 8px;
    width: fit-content;
}

#Rewards .container .bottom .left .rewardIcon span {
    align-self: stretch;
    text-align: center;
    font-family: "GmarketSansBold";
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#Rewards .container .bottom .left .rewardText {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#Rewards .container .bottom .left .rewardText .rewardMain {
    color: #212121;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 51.2px */
}

#Rewards .container .bottom .left .rewardText .rewardMain span {
    color: #5F2EFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

#Rewards .container .bottom .left .rewardText .rewardSub {
    color: #757575;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

#Rewards .container .bottom .right {
    position: relative;
    display: flex;
    align-items: center;
}
#Rewards .container .bottom .right img{
    width: 300px;
}
#Rewards .container .bottom .right .balloonArrow {
    position: absolute;
    left: 40px;
    top: -6px;
    width: 8px;
    height: 6px;
}
#Rewards .container .bottom .right .balloon {
    position: absolute;
    left: 40px;
    bottom: 10px;
    border-radius: 36px;
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
}
#Rewards .container .bottom .right .balloon .desc {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
#Rewards .container .bottom .right .balloon .desc .desc1 {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
#Rewards .container .bottom .right .balloon .desc .desc2 {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}




#ProcessWeb {
    width: 100%;
    height: fit-content;
}

#ProcessWeb .processContainer {
    max-width: 1120px;
    padding: 80px 20px 60px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#ProcessWeb .processContainer .title {
    display: flex;
    flex-direction: column;
}
#ProcessWeb .processContainer .title span {
        color: #212121;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
}

#ProcessWeb .processContainer .slideContainer {
    display: flex;
    justify-content: space-between;
}

#ProcessWeb .processContainer .slideContainer .left {
    display: flex;
    gap: 32px;
    flex-direction: column;
}

#ProcessWeb .processContainer .slideContainer .left .desc {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}
/*#ProcessWeb .processContainer .slideContainer .left .desc .index.active {*/
/*    background: #F3F0FF;*/
/*    color: #5F2EFF;*/
/*    font-size: 16px;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    line-height: 100%; !* 16px *!*/
/*    transition: all 1s ease;*/
/*}*/

#ProcessWeb .processContainer .slideContainer .left .desc .textTwoLines {
    display: flex;
    flex-direction: column;
}

#ProcessWeb .processContainer .slideContainer .left .desc .textTwoLines span {
        color: #BDBDBD;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 32px */
}
#ProcessWeb .processContainer .slideContainer .left .desc .textTwoLines.active span {
    color: #424242;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
    transition: all 1s ease;
}

#ProcessWeb .processContainer .slideContainer .left .desc .text {
    color: #BDBDBD;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 32px */
}

#ProcessWeb .processContainer .slideContainer .left .desc .text.active {
    color: #424242;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
    transition: all 1s ease;
}

#ProcessWeb .processContainer .slideContainer .left .index {
        display: flex;
        width: 32px;
        height: 32px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 32px;
        background: #F5F5F5;
        color: #757575;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 16px */
}

#ProcessWeb .processContainer .slideContainer .right {
    max-width: 435px;
    width: 100%;
    /*max-height: 100%;*/
}

#ProcessWeb .processContainer .slideContainer .img {
    height: 100%;
    border-radius: 16px;
}

/*.scrollAnimationSection_web {*/
/*    display: block;*/
/*}*/

.scrollAnimationSection_mobile {
    display: none;
}

/*#PartnersManual {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    !*height: fit-content;*!*/
/*    max-height: 1080px;*/
/*    height: 100%;*/
/*    !*height: 100vh;*!*/
/*}*/

/*!*@media (min-height: 1080px) {*!*/
/*!*    #PartnersManual {*!*/
/*!*        height: 50vh;*!*/
/*!*    }*!*/
/*!*}*!*/

/*#PartnersManual .scrollContainer {*/
/*    !*height: 100%;*!*/
/*    max-width: 1080px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    padding: 80px 0 80px 0;*/
/*    !*margin-bottom: 80px;*!*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    !*justify-content: center;*!*/
/*    gap: 60px;*/
/*}*/
/*#PartnersManual .scrollContainer .title {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/
/*#PartnersManual .scrollContainer .title span {*/
/*    color: #212121;*/
/*    font-size: 32px;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    line-height: 160%; !* 51.2px *!*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox .left {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 32px;*/
/*}*/
/*#PartnersManual .scrollContainer .scrollBox .left .desc {*/
/*    display: flex;*/
/*    gap: 16px;*/
/*}*/
/*#PartnersManual .scrollContainer .scrollBox .left .desc .index {*/
/*    display: flex;*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border-radius: 32px;*/
/*    background: #F5F5F5;*/
/*    color: #757575;*/
/*    text-align: center;*/
/*    font-size: 16px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 100%; !* 16px *!*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox .left .desc .text {*/
/*    color: #BDBDBD;*/
/*    font-size: 20px;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    line-height: 160%; !* 32px *!*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox .left .desc .textTwoLines {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox .left .desc .textTwoLines span {*/
/*    color: #BDBDBD;*/
/*    font-size: 20px;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    line-height: 160%; !* 32px *!*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox .right {*/
/*    position: relative;*/
/*    width: 480px;*/
/*}*/

/*#PartnersManual .scrollContainer .scrollBox .right img {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    border-radius: 16px;*/
/*}*/









#Faq {
    position: relative;
    /*z-index: 99999;*/
    /*margin-top: -2000px;*/
    width: 100%;
}

#Faq .faqContainer {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 20px 120px 20px;
}

#Faq .faqContainer .faqTop {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
}

#Faq .faqContainer .faqTop .title {
    color: #212121;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
}

#Faq .faqContainer .faqTop .shortcut {
    display: flex;
    align-items: center;
    gap: 8px;
}
#Faq .faqContainer .faqTop .shortcut span {
    color: #5F2EFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}
#Faq .faqContainer .faqTop .shortcut img {
    width: 12px;
    height: 12px;
}

#Faq .faqContainer .faqListContainer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#Faq .faqContainer .faqListContainer .faqCard {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 16px;
    background: #F9FAFB;
}
#Faq .faqContainer .faqListContainer .faqCard .faqIcon {
    color: #BDBDBD;
    font-family: "GmarketSansMedium";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
}

#Faq .faqContainer .faqListContainer .faqCard .faqQuestion {
    flex: 1 0 0;
    color: #424242;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
}









#Review {
    width: 100%;
    position: relative;
    background: #F3F5F7;
}

#Review .reviewContainer {
    height: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 20px 120px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

#Review .reviewTitleContainer {
    max-width: 1080px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#Review .reviewContainer .reviewTitle {
    color: #212121;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 51.2px */
}

#Review .reviewContainer .userReviewContainer {
    position: relative;
    width: 100%;
    /*max-width: 100vw;*/
    margin-left: auto;
    margin-right: auto;
    /*overflow: visible;*/
}

#Review .reviewContainer .dotsContainer {
    max-width: 1080px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

#Review .reviewContainer .userReviewContainer .slick-item {
    max-width: 344px;
    width: 100%;
    /*white-space: nowrap;*/
}


#Review .reviewContainer .userReviewContainer .slick-slider {
    overflow: visible !important;
}
#Review .reviewContainer .userReviewContainer .slick-list {
    overflow: visible !important;
}

#Review .reviewContainer .userReviewContainer .slick-slide {
    width: fit-content !important;
    /*margin: 0 24px;*/
    padding-right: 24px;
}

#Review .reviewContainer .userReviewContainer .slick-track {
    /*width: 100%;*/
    display: flex;
    flex-wrap: nowrap;
    /*margin-left: -270px;*/
}

#Review .reviewContainer .userReviewContainer .reviewCard {
    /*flex: 1 0 0;*/
    /*flex-shrink: 0;*/
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    display: flex !important;
    /*width: 400px !important;*/
    max-width: 344px;
    width: 100%;
    height: 240px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

#Review .reviewContainer .userReviewContainer .reviewCard .review {
    color: #424242;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%; /* 23.68px */
}

#Review .reviewContainer .userReviewContainer .reviewCard .userInfo {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

#Review .reviewContainer .userReviewContainer .reviewCard .userInfo .userIcon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /*aspect-ratio: 1/1;*/
    border-radius: 24px;
    background: #B59FFF;
    color: #FFF;
    font-family: GmarketSansMedium;
    text-align: center;
    /*font-feature-settings: 'liga' off, 'clig' off;*/
    font-size: 12px;
    font-style: normal;
    /*font-weight: 700;*/
    /*line-height: 148%; !* 17.76px *!*/
}

#Review .reviewContainer .userReviewContainer .reviewCard .userInfo .userName {
    color: #424242;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 22.4px */
}

#Review .reviewContainer .userReviewContainer .reviewCard .userInfo .userTag {
    display: flex;
    height: 24px;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #F3F5F7;
    color: #637587;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 12px */
}







#Form {
    width: 100%;
    background: linear-gradient(180deg, #FFF 0%, #F3F0FF 72%, #CDBEFF 100%), linear-gradient(180deg, #FFF 40%, #F3F0FF 100%);
}

#Form .formContainer {
    height: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 20px 120px 20px;
    display: flex;
    gap: 80px;
}

#Form .formContainer .left {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
#Form .formContainer .left .formTitle_mobile {
    display: none;
}
#Form .formContainer .left .formTitle_web {
    display: flex;
    flex-direction: column;
}

#Form .formContainer .left .formTitle_web span {
    color: #212121;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 51.2px */
}

#Form .formContainer .right {
    display: flex;
    /*padding: 40px;*/

    /*flex-direction: column;*/
    /*align-items: flex-start;*/
    /*gap: 24px;*/
    flex: 1;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 4px 18px 0 rgba(0, 0, 0, 0.06);
}

#Form .formContainer .right form {
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

#Form .formContainer .right .inputBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

#Form .formContainer .right .inputBox:focus {
    border: 2px solid #5F2EFF;
    padding-left: 11px;
}

#Form .formContainer .right .inputBox .error {
    border: 2px solid #F42C2C;
    padding-left: 11px;
}

#Form .formContainer .right .inputBox .errorMessage {
    padding-left: 0;
    font-size: 12px;
    line-height: 148%;
    padding-top: 8px;
    color: #F00000;
}

#Form .formContainer .right .inputWrapper {
    position: relative;
    width: 100%;
}

#Form .formContainer .right .inputWrapper input{
    display: flex;
    height: 56px;
    padding: 0 12px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

#Form .formContainer .right .inputWrapper .label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    color: #757575;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    cursor: text;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

/*!*!*포커싱 시 라벨 이동*!*!*/
/*#Form .formContainer .right .inputWrapper input:not(:placeholder-shown) + .label,*/
#Form .formContainer .right .inputWrapper input.filled + .label,
#Form .formContainer .right .inputWrapper input:focus + .label {
    top: 16px; /* 포커스 시, label이 위로 이동 */
    color: #757575;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 12px */
}

/*!*!*포커싱 시 input 내부 이동*!*!*/
/*#Form .formContainer .right .inputWrapper input:not(:placeholder-shown),*/
#Form .formContainer .right .inputWrapper input.filled,
#Form .formContainer .right .inputWrapper input:focus {
    padding-top:12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

#Form .formContainer .right .inputWrapper .label .inputRequired {
    position: absolute;
    right: -8px;
    top: 4px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #5F2EFF;
}
#Form .formContainer .right .inputWrapper input.filled + .label .inputRequired,
#Form .formContainer .right .inputWrapper input:focus + .label .inputRequired {
    position: absolute;
    right: -8px;
    top: 0!important;
}

#Form .formContainer .right .termsCheck {
    padding: 8px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

#Form .formContainer .right .termsCheck .checkAll {
    display: flex;
    gap: 8px;
}

#Form .formContainer .right .termsCheck .checkAll .desc {
    color: #424242;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    cursor: pointer;
}

#Form .formContainer .right .termsCheck .checkAll .checkAllLabel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Form .formContainer .right .termsCheck .divider {
    border-bottom: 1px solid #E0E0E0;
}

#Form .formContainer .right .termsCheck .termsBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

#Form .formContainer .right .termsCheck .termsBox .terms {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

#Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

#Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm span {
    color: #424242;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

#Form .formContainer .right .termsCheck .termsBox .terms .more {
    color: #5F2EFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 22.4px */
}

#Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm .imgBox {
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm .imgBox img {
    width: 10px;
    height: 8px;
    flex-shrink: 0;
}

#Form .formContainer .right .termsCheck .termsBox .terms .personalTerm {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

#Form .formContainer .right .termsCheck .termsBox .terms .personalTerm span {
    color: #424242;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

#Form .formContainer .right .termsCheck .termsBox .terms .personalTerm .imgBox {
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Form .formContainer .right .termsCheck .termsBox .terms .personalTerm .imgBox img {
    width: 10px;
    height: 8px;
    flex-shrink: 0;
}

#Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

#Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm .imgBox {
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm span {
    color: #424242;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

#Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm .imgBox img {
    width: 10px;
    height: 8px;
    flex-shrink: 0;
}

#Form .formContainer .right .submitButton {
    width: 100%;
}

#Form .formContainer .right .submitButton button:disabled{
    /*background-color: #E0E0E0;*/
    /*display: flex;*/
    /*height: 56px;*/
    /*padding: 0 16px;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*gap: 12px;*/
    /*align-self: stretch;*/
    border-radius: 8px;
    opacity: 0.2;
    background: #5F2EFF;
}


#Form .formContainer .right .submitButton button {
    width:100%;
    display: flex;
    height: 56px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 8px;
    background: #5F2EFF;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

#Form > .consentForm > .layerCon > .layerTop > .layerCont >  .scrollBox > select {
    margin-bottom: 16px;
}
/*#Form .layerPop{position: fixed; top:0; left:0; width:100%; height: 100vh; background: rgba(0, 0, 0, 0.32);backdrop-filter: blur(4px); z-index: 999999;}*/
/*#Form .layerPop .layerCon{position: absolute; top:50%; left:50%; transform: translate(-50%, -50%);  border-radius: 16px; overflow: hidden; width: 280px}*/
/*#Form .layerPop > .layerCon .layerTop{border:1px solid #eaeaea;}*/
/*#Form .layerPop > .layerCon .layerTop > .ltCont{padding: 18px 24px; background-color: #fff; border-bottom: 1px solid #eaeaea; display: flex; align-items: center; justify-content: space-between;}*/
/*#Form .layerPop > .layerCon .layerTop > .ltCont > p{font-size: 18px; font-weight: 700;}*/
/*#Form .layerPop > .layerCon .layerTop > .ltCont > a{display: block; width:24px; height: 24px;}*/
/*#Form .layerPop > .layerCon .layerTop > .layerCont{background-color: #fff; padding: 24px;}*/
/*#Form .layerPop > .layerCon .layerCont > p{color:#666; text-align: left; word-break: keep-all;}*/
/*#Form .layerPop > .layerCon .popBtn{width:100%; background-color:#6042F9; color:#fff; padding: 14px 0 15px 0; text-align: center; display: block; font-weight: 700;}*/
/*#Form .layerPop > .layerCon .twoBtn{display: flex;}*/
/*#Form .layerPop > .layerCon .twoBtn > .popbtn{width:50%;}*/
/*#Form .layerPop > .layerCon .twoBtn > a:first-child{background-color: #f4f4f4; color:#bbb;}*/


@media (max-width: 767px) {
    #RenewalMain {
        width:100%;
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(180deg, #FFF 24%, #F3F0FF 72%, #CDBEFF 100%);
    }

    #RenewalMain .container {
        max-width: 1080px;
        margin-left: auto;
        margin-right: auto;
    }

    #RenewalMain .container > .contents {
        /* header 64px, 하단 현황 66px */
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 24px 70px 24px;
        gap: 48px;
    }

    #RenewalMain .container > .contents > .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    #RenewalMain .container > .contents > .title > .main{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #RenewalMain .container > .contents > .title > .main > img{
        position: absolute;
        width: 120px;
        bottom: 0;
        left: 90px;
        z-index: -1;
    }

    #RenewalMain .container > .contents > .title > .main > span {
        font-size: 32px;
        font-weight: 700;
        line-height: 148%;
    }

    #RenewalMain .container > .contents > .title > span {
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
    }

    #RenewalMain .container > .contents > .buttonWrap {
        height: 48px;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 16px;
        gap: 4px;
        background: linear-gradient(90deg, #5F2EFF 40%, #8C2EFF 100%);
        box-shadow: 0 4px 12px -4px rgba(95, 46, 255, 0.40);
        border-radius: 48px;
    }

    #RenewalMain .container > .contents > .buttonWrap > button {
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 22.4px */
    }

    #RenewalMain .container > .contents > .slideWrap {
        margin-top: 16px;
        max-width: 130vw;
        position: relative;
        padding-bottom:32px;
    }

    #RenewalMain .container > .contents > .slideWrap > .balloonContainer {
        position: absolute;
        left:50%;
        bottom: 0px;
        transform: translateX(-50%);
        display: flex;
        white-space: nowrap;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 36px;
        background: rgba(0, 0, 0, 0.64);
        backdrop-filter: blur(4px);
    }

    #RenewalMain .container > .contents > .slideWrap > .balloonContainer > img {
        position: absolute;
        width: 8px;
        height: 6px;
        fill: rgba(0, 0, 0, 0.64);
        top: -6px;
        right: 40px;
    }

    #RenewalMain .container > .contents > .slideWrap > .balloonContainer > span {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 19.6px */
    }


    #SummaryWrap {
        background: linear-gradient(90deg, #5F2EFF 40%, #8C2EFF 100%);
        height: fit-content;
    }

    #SummaryWrap .summary {
        padding: 16px 24px;
        display: flex;
        justify-content: center;
        gap: 24px;
        height: 100%;
    }
    #SummaryWrap .summary .divider {
        height: 40px;
        width: 1px;
        background-color: #fff;
        opacity: 0.4;
    }

    #SummaryWrap .summary .summaryLeft {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    #SummaryWrap .summary .summaryLeft b {
        font-size: 16px;
        font-weight: 700;
    }

    #SummaryWrap .summary .summaryRight {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    #SummaryWrap .summary .summaryRight b {
        font-size: 16px;
        font-weight: 700;
    }

    #SummaryWrap .summary * {
        color: #ffffff;
        font-size: 12px;
        line-height: 160%; /* 25.6px */
        font-style: normal;
    }



    #Revenue {
        width: 100%;
        background-color: #F3F5F7;
    }

    #Revenue .revenueContent {
        padding: 40px 24px 80px 24px;
        width: 100%;
    }

    #Revenue .revenueContent .contentWrap {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    #Revenue .revenueContent .contentWrap .title {
        display: flex;
        flex-direction: column;
    }

    #Revenue .revenueContent .contentWrap .title span {
        word-break: break-word;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
    }

    #Revenue .revenueContent .contentWrap .cardWrap {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #Revenue .revenueContent .contentWrap .cardWrap .card {
        display: flex;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        flex: 1 0 0;
        border-radius: 16px;
        background-color: #fff;
    }

    #Revenue .revenueContent .contentWrap .cardWrap .card .title {
        color:  #424242;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 148%; /* 23.68px */
    }

    #Revenue .revenueContent .contentWrap .cardWrap .card .revenue {
        color: #424242;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%; /* 51.2px */
    }

    #Revenue .revenueContent .contentWrap .cardWrap .card .cardDescription span {
        display: flex;
        flex-direction: column;
        color: #757575;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 148%; /* 17.76px */
    }

    #Introduce {
        width: 100%;

    }

    #Introduce .container {
        padding: 40px 24px 80px 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
    }

    #Introduce .container .leftDescription {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
    }


    #Introduce .container .leftDescription .descriptionWrap {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #Introduce .container .leftDescription .title {
        display: flex;
        flex-direction: column;
    }

    #Introduce .container .leftDescription .title span {
        color: #212121;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
        align-self: stretch;
    }

    #Introduce .container .leftDescription .desc_web {
        display: none;
    }

    #Introduce .container .leftDescription .desc_mobile {
        display: flex;
    }

    #Introduce .container .leftDescription .desc_mobile span {
        color: #212121;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 32px */
    }

    #Introduce .container .leftDescription .desc_mobile span b {
        font-weight: 700;
        color: #212121;
        font-size: 16px;
        font-style: normal;
        line-height: 160%; /* 32px */
    }

    #Introduce .container .leftDescription .iminLink {
        display: flex;
        align-items: center;
        gap: 8px;
    }


    #Introduce .container .leftDescription .iminLink span {
        color: #5F2EFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 25.6px */
    }

    #Introduce .container .leftDescription .iminLink .arrow {
        width: 12px;
        height: 12px;
    }

    #Introduce .container .leftDescription .qnaWrap {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #Introduce .container .leftDescription .qnaWrap .question {
        display: flex;
        padding: 24px;
        align-items: center;
        gap: 12px;
        border-radius: 32px 32px 32px 4px;
        background-color: #F3F5F7;
        width: fit-content;
    }

    #Introduce .container .leftDescription .qnaWrap .question .q {
        display: flex;
        width: 24px;
        height: 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1/1;
        color: #FFF;
        text-align: center;
        font-family: "GmarketSansBold";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 200%; /* 19.2px */
        border-radius: 24px;
        background-color: #B3BDC7;
    }

    #Introduce .container .leftDescription .qnaWrap .question .qnaDescription {
        color: #424242;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 148%; /* 23.68px */
    }

    #Introduce .container .leftDescription .qnaWrap .answer {
        display: flex;
        padding: 24px;
        align-items: flex-start;
        gap: 12px;
        border-radius: 32px 32px 4px 32px;
        background: linear-gradient(90deg, #F3F0FF 40%, #F7F0FF 100%);
    }

    #Introduce .container .leftDescription .qnaWrap .answer .a {
        display: flex;
        width: 24px;
        height: 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1/1;
        color: #FFF;
        text-align: center;
        font-family: "GmarketSansBold";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 200%; /* 19.2px */
        border-radius: 24px;
        background-color: #B59FFF;
    }

    #Introduce .container .leftDescription .qnaWrap .answer .answerDescription {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    #Introduce .container .leftDescription .qnaWrap .answer .answerDescription span {
        color: #424242;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 148%; /* 23.68px */
    }

    #Introduce .container .leftDescription .qnaWrap .answer .answerDescription b {
        font-size: 16px;
        font-weight: 600;
    }

    #Introduce .container .leftDescription .qnaWrap .answer .answerDescription .point_web {
        display: none;
    }
    #Introduce .container .leftDescription .qnaWrap .answer .answerDescription .point_mobile {
        display: block;
        font-weight: 600;
    }

    #Introduce .container .rightDescription {
        max-width: 100%;
        /*height: auto;*/
        /*width: 100%;*/
    }

    #Introduce .container .rightDescription .youtubeVideo {
        position: relative;
        /*width: 100%;*/
        padding-bottom: 56.25%;
    }

    #Introduce .container .rightDescription .youtubeVideo iframe {
        /*position: absolute;*/
        /*top: 0;*/
        /*left: 0;*/
        width: 100%;
        /*height: 100%;*/
        border-radius: 16px;
    }




    #Rewards {
        width: 100%;
        background-color: #F3F5F7;
    }

    #Rewards .container {
        width: 100%;
        padding: 40px 24px 80px 24px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    #Rewards .container .top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    #Rewards .container .top .title {
        color: #212121;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
    }

    #Rewards .container .top .descContainer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
    }

    #Rewards .container .top .descContainer .desc {
        color: #212121;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 32px */
    }

    #Rewards .container .top .descContainer .desc b {
        color: #212121;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%;
    }

    #Rewards .container .top .descContainer .guide {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #Rewards .container .top .descContainer .guide span {
        color: #5F2EFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 25.6px */
    }

    #Rewards .container .top .descContainer .guide img {
        width: 12px;
        height: 12px;
    }

    #Rewards .container .bottom {
        width: 100%;
        background-color: #fff;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: space-between;
        border-radius: 16px;
    }

    #Rewards .container .bottom .left {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #Rewards .container .bottom .left .rewardIcon {
        background: linear-gradient(90deg, #5F2EFF 40%, #8C2EFF 100%);
        height: 24px;
        display: flex;
        align-items: center;
        border-radius: 24px;
        padding: 0 8px;
        width: fit-content;
    }

    #Rewards .container .bottom .left .rewardIcon span {
        font-family: "GmarketSansBold";
        color: #FFF;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%;
    }

    #Rewards .container .bottom .left .rewardText {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    #Rewards .container .bottom .left .rewardText .rewardMain {
        color: #212121;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
    }

    #Rewards .container .bottom .left .rewardText .rewardMain span {
        color: #5F2EFF;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%;
    }

    #Rewards .container .bottom .left .rewardText .rewardSub {
        color: #757575;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 22.4px */
    }

    #Rewards .container .bottom .right {
        position: relative;
        width: 100%;
    }

    #Rewards .container .bottom .right img{
        width: 100%;
    }
    #Rewards .container .bottom .right .balloonArrow {
        position: absolute;
        left: 30px;
        top: -6px;
        width: 8px;
        height: 6px;
    }
    #Rewards .container .bottom .right .balloon {
        display: flex;
        justify-content: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 50px);
        bottom: 10px;
        border-radius: 36px;
        background: rgba(0, 0, 0, 0.64);
        backdrop-filter: blur(4px);
        padding: 8px 16px;
    }
    #Rewards .container .bottom .right .balloon .desc {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 19.6px */
    }
    #Rewards .container .bottom .right .balloon .desc .desc1 {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
    }
    #Rewards .container .bottom .right .balloon .desc .desc2 {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
    }


    #ProcessMobile {
        width: 100%;
    }

    #ProcessMobile .container {
        max-width: 1120px;
        padding: 40px 20px 48px 20px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    #ProcessMobile .container .title {
        display: flex;
        flex-direction: column;
    }

    #ProcessMobile .container .title span {
        color: #212121;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
    }

    #ProcessMobile .container .cardContainer {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    #ProcessMobile .container .cardContainer .card {
        display: flex;
        flex-direction: column;
        height: 100% !important;
        overflow: hidden;
        gap: 24px;
    }
    #ProcessMobile .container .cardContainer .card .desc {
        display: flex;
        gap: 16px;
    }
    #ProcessMobile .container .cardContainer .card .desc .index {
        /*display: flex;*/
        /*width: 24px;*/
        /*height: 24px;*/
        /*flex-direction: column;*/
        /*justify-content: center;*/
        /*align-items: center;*/
        /*border-radius: 32px;*/
        /*background: #F3F0FF;*/
        /*color: #5F2EFF;*/
        /*text-align: center;*/
        /*font-size: 14px;*/
        /*font-style: normal;*/
        /*font-weight: 600;*/
        /*line-height: 100%; !* 16px *!*/
    }

    #ProcessMobile .container .cardContainer .card .desc .index img {
        width: 24px;
        height: 24px;
    }

    #ProcessMobile .container .cardContainer .card .desc .text {
        color: #424242;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%; /* 32px */
    }

    #ProcessMobile .container .cardContainer .card img {
        border-radius: 16px;
    }
    /*.scrollAnimationSection_web {*/
    /*    display: none;*/
    /*}*/

    /*.scrollAnimationSection_mobile {*/
    /*    display: block;*/
    /*}*/

    /*#PartnersManual_mobile {*/
    /*    !*padding-top: 64px;*!*/
    /*    width: 100%;*/
    /*    position: relative;*/
    /*    height: fit-content;*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer {*/
    /*    !*height: 100%;*!*/
    /*    padding: 40px 24px 40px 24px;*/
    /*    !*margin-bottom: 80px;*!*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    !*justify-content: center;*!*/
    /*    height: 100%;*/
    /*    gap: 60px;*/
    /*}*/
    /*#PartnersManual_mobile .scrollContainer .title {*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*}*/
    /*#PartnersManual_mobile .scrollContainer .title span {*/
    /*    color: #212121;*/
    /*    font-size: 24px;*/
    /*    font-style: normal;*/
    /*    font-weight: 600;*/
    /*    line-height: 160%; !* 51.2px *!*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox {*/
    /*    position: relative;*/
    /*    display: flex;*/
    /*    justify-content: space-between;*/
    /*    !*height: 500px;*!*/
    /*    !*display: flex;*!*/
    /*    flex-direction: column;*/
    /*    !*height: 100% !important;*!*/
    /*    !*min-height: 500px;*!*/
    /*    gap: 32px;*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox .card {*/
    /*    position: absolute;*/
    /*    !*display: flex;*!*/
    /*    flex-direction: column;*/
    /*    !*justify-content: space-between;*!*/
    /*    opacity: 1;*/
    /*    display: none;*/
    /*    height: 100% !important;*/
    /*    overflow: hidden;*/
    /*    gap: 24px;*/
    /*}*/

    /*!*#PartnersManual_mobile .scrollContainer .scrollBox {*!*/
    /*!*    *!*/
    /*!*}*!*/
    /*#PartnersManual_mobile .scrollContainer .scrollBox .card .desc {*/
    /*    display: flex;*/
    /*    gap: 16px;*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox .card img {*/
    /*    border-radius: 16px;*/
    /*    width: 100%;*/
    /*    height: 100%!important;*/
    /*    aspect-ratio: 16/9;*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox .card .desc .index {*/
    /*    display: flex;*/
    /*    width: 24px;*/
    /*    height: 24px;*/
    /*    flex-direction: column;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    border-radius: 32px;*/
    /*    background: #F3F0FF;*/
    /*    color: #5F2EFF;*/
    /*    text-align: center;*/
    /*    font-size: 14px;*/
    /*    font-style: normal;*/
    /*    font-weight: 600;*/
    /*    line-height: 100%; !* 16px *!*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox .card .desc .text {*/
    /*    color: #424242;*/
    /*    font-size: 16px;*/
    /*    font-style: normal;*/
    /*    font-weight: 700;*/
    /*    line-height: 160%; !* 32px *!*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox .card .desc .textTwoLines {*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*}*/

    /*#PartnersManual_mobile .scrollContainer .scrollBox .card .desc .textTwoLines span {*/
    /*    color: #424242;*/
    /*    font-size: 16px;*/
    /*    font-style: normal;*/
    /*    font-weight: 700;*/
    /*    line-height: 160%; !* 32px *!*/
    /*}*/

    #Faq {
        width: 100%;
    }

    #Faq .faqContainer {
        padding: 80px 24px 80px 24px;
    }

    #Faq .faqContainer .faqTop {
        display: flex;
        justify-content: space-between;
        padding-bottom: 8px;
    }

    #Faq .faqContainer .faqTop .title {
        color: #212121;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%; /* 32px */
    }

    #Faq .faqContainer .faqTop .shortcut {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    #Faq .faqContainer .faqTop .shortcut span {
        color: #5F2EFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 25.6px */
    }
    #Faq .faqContainer .faqTop .shortcut img {
        width: 12px;
        height: 12px;
    }

    #Faq .faqContainer .faqListContainer {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    #Faq .faqContainer .faqListContainer .faqCard {
        display: flex;
        padding: 24px;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        border-radius: 16px;
        background: #F9FAFB;
    }
    #Faq .faqContainer .faqListContainer .faqCard .faqIcon {
        color: #BDBDBD;
        font-family: "GmarketSansMedium";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 25.6px */
    }

    #Faq .faqContainer .faqListContainer .faqCard .faqQuestion {
        flex: 1 0 0;
        color: #424242;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%; /* 25.6px */
    }





    #Review {
        width: 100%;
        position: relative;
        background: #F3F5F7;
    }

    #Review .reviewContainer {
        height: 100%;
        max-width: 1080px;
        margin-left: auto;
        margin-right: auto;
        padding: 40px 24px 80px 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
    }

    #Review .reviewTitleContainer {
        max-width: 1080px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    #Review .reviewContainer .reviewTitle {
        color: #212121;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
    }

    #Review .reviewContainer .userReviewContainer {
        position: relative;
        /*width: 200vw;*/
        /*max-width: 100vw;*/
        margin-left: auto;
        margin-right: auto;
        /*overflow: visible;*/
    }

    #Review .reviewContainer .dotsContainer {
        max-width: 1080px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    #Review .reviewContainer .userReviewContainer .slick-slider {
        overflow: visible !important;
    }
    #Review .reviewContainer .userReviewContainer .slick-list {
        overflow: visible !important;
    }

    #Review .reviewContainer .userReviewContainer .slick-item {
        /*max-width: 344px;*/
        /*width: 100%;*/
        /*white-space: nowrap;*/
    }


    #Review .reviewContainer .userReviewContainer .slick-slide {
        /*width: 400px !important;*/
        /*margin: 0 0 !important;*/
        padding-right: 16px;
    }

    #Review .reviewContainer .userReviewContainer .slick-track {
        /*width: 100%;*/
        display: flex;
        /*flex-wrap: nowrap;*/
        justify-content: flex-start;
        /*margin-left: -270px;*/
    }

    #Review .reviewContainer .userReviewContainer .slick-list {
        padding: 0 0 !important;
    }

    #Review .reviewContainer .userReviewContainer .reviewCard {
        /*flex: 1 0 0;*/
        /*flex-shrink: 0;*/
        padding: 32px;
        background: #fff;
        border-radius: 16px;
        display: flex !important;
        /*width: 100%;*/
        /*max-width: 350px !important;*/
        width: auto;
        max-width: none;
        height: 240px;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    #Review .reviewContainer .userReviewContainer .reviewCard .review {
        color: #424242;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 148%; /* 23.68px */
    }

    #Review .reviewContainer .userReviewContainer .reviewCard .userInfo {
        display: flex;
        align-items: center;
        gap: 12px;
        align-self: stretch;
    }

    #Review .reviewContainer .userReviewContainer .reviewCard .userInfo .userIcon {
        display: flex;
        width: 24px;
        height: 24px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        /*aspect-ratio: 1/1;*/
        border-radius: 24px;
        background: #B59FFF;
        color: #FFF;
        font-family: GmarketSansMedium;
        text-align: center;
        /*font-feature-settings: 'liga' off, 'clig' off;*/
        font-size: 12px;
        font-style: normal;
        /*font-weight: 700;*/
        /*line-height: 148%; !* 17.76px *!*/
    }

    #Review .reviewContainer .userReviewContainer .reviewCard .userInfo .userName {
        color: #424242;
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%; /* 22.4px */
    }

    #Review .reviewContainer .userReviewContainer .reviewCard .userInfo .userTag {
        display: flex;
        height: 24px;
        padding: 0 8px;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: #F3F5F7;
        color: #637587;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%; /* 12px */
    }





    #Form {
        position: relative;
        width: 100%;
        background: linear-gradient(180deg, #FFF 0%, #F3F0FF 72%, #CDBEFF 100%), linear-gradient(180deg, #FFF 40%, #F3F0FF 100%);
        /*padding-bottom:100px;*/
    }

    #Form .formContainer {
        height: 100%;
        padding: 40px 24px 80px 24px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    #Form .formContainer .left {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }
    #Form .formContainer .left .formTitle_web {
        display: none;
    }
    #Form .formContainer .left .formTitle_mobile {
        display: flex;
        flex-direction: column;
    }

    #Form .formContainer .left .formTitle_mobile span {
        color: #212121;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 51.2px */
    }

    #Form .formContainer .right {
        /*display: flex;*/
        /*padding: 24px;*/
        /*flex-direction: column;*/
        /*align-items: flex-start;*/
        /*gap: 24px;*/
        flex: 1 0 0;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 4px 18px 0 rgba(0, 0, 0, 0.06);
    }

    #Form .formContainer .right form {
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
    }

    #Form .formContainer .right .inputBox {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #Form .formContainer .right .inputWrapper {
        position: relative;
        width: 100%;
    }

    #Form .formContainer .right .inputWrapper input{
        display: flex;
        height: 56px;
        padding: 0 12px;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid #E0E0E0;
        background: #FFF;
        transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    }

    #Form .formContainer .right .inputWrapper .label {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 12px;
        color: #757575;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 22.4px */
        cursor: text;
        transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    }

    /*!*포커싱 시 라벨 이동*!*/
    /*#Form .formContainer .right .inputWrapper input:not(:placeholder-shown) + .label,*/
    #Form .formContainer .right .inputWrapper input.filled + .label,
    #Form .formContainer .right .inputWrapper input:focus + .label {
        top: 16px; /* 포커스 시, label이 위로 이동 */
        color: #757575;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 12px */
    }

    /*!*포커싱 시 input 내부 이동*!*/
    /*#Form .formContainer .right .inputWrapper input:not(:placeholder-shown),*/
    #Form .formContainer .right .inputWrapper input.filled,
    #Form .formContainer .right .inputWrapper input:focus {
        padding-top:12px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 22.4px */
    }

    #Form .formContainer .right .inputWrapper .label .inputRequired {
        position: absolute;
        right: -8px;
        top: 4px;
        width: 4px;
        height: 4px;
        border-radius: 100%;
        background: #5F2EFF;
    }

    /*#Form .formContainer .right .inputWrapper input:not(:placeholder-shown) + .label .inputRequired,*/
    #Form .formContainer .right .inputWrapper input.filled + .label .inputRequired,
    #Form .formContainer .right .inputWrapper input:focus + .label .inputRequired {
        position: absolute;
        right: -8px;
        top: 0!important;
    }


    #Form .formContainer .right .termsCheck {
        padding: 8px 0 24px 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    #Form .formContainer .right .termsCheck .checkAll {
        display: flex;
        gap: 8px;
    }

    #Form .formContainer .right .termsCheck .checkAll .desc {
        color: #424242;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 25.6px */
        cursor: pointer;
    }

    #Form .formContainer .right .termsCheck .checkAll .checkAllLabel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #Form .formContainer .right .termsCheck .divider {
        border-bottom: 1px solid #E0E0E0;
    }

    #Form .formContainer .right .termsCheck .termsBox {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        align-self: stretch;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        align-self: stretch;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .more {
        color: #5F2EFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 22.4px */
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm .imgBox {
        width: 16px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm span {
        color: #424242;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 22.4px */
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .serviceTerm .imgBox img {
        width: 10px;
        height: 8px;
        flex-shrink: 0;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .personalTerm {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .personalTerm span {
        color: #424242;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 22.4px */
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .personalTerm .imgBox {
        width: 16px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .personalTerm .imgBox img {
        width: 10px;
        height: 8px;
        flex-shrink: 0;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm span {
        color: #424242;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 22.4px */
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm .imgBox {
        width: 16px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #Form .formContainer .right .termsCheck .termsBox .terms .marketingTerm .imgBox img {
        width: 10px;
        height: 8px;
        flex-shrink: 0;
    }

    #Form .formContainer .right .submitButton {
        width: 100%;
    }

    #Form .formContainer .right .submitButton button {
        width:100%;
        display: flex;
        height: 56px;
        padding: 0 16px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        border-radius: 8px;
        background: #5F2EFF;
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 160%; /* 25.6px */
    }

    #Form .formContainer .left .imageBox {
        display: none;
    }
}