/**********************************************************

                Landing Page style sheet

***********************************************************/







/*
    z-index option


    tutorial > 100
    badge-content > 50
    modal popup > 40
    menu > 30
    chatting > 20
    header, footer > 10
    section > 0

*/

.play-page {
    display: none;
    background: none;
}


.wrap {
    background: url(./../images/Background-img.png) center center no-repeat;
    background-size: cover;
}


/* header title */
.text-title {
    font-size: 72px;
    line-height: 72px;
    font-weight: 400;
    letter-spacing: -8.5%;
    color: #fff;
    padding-top: 12px;
    padding-left: 20px;

    /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
}

@media screen and (max-width:1024px) {
    .text-title {
        font-size: 56px;
        line-height: 50px;
    }
}

@media screen and (max-width:768px) {
    .text-title {
        font-size: 48px;
        line-height: 48px;
    }
}

@media screen and (max-width:640px) {
    .text-title {
        font-size: 30px;
        line-height: 30px;
    }
}

.img-logo {
    width: 100px;
    margin: 15px;
}

@media screen and (max-width:640px) {
    .img-logo {
        width: 50px;
        margin: 10px;
    }
}



/*
    
    content option

*/


.minimap-bottom-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: -1;

    pointer-events: none;
}

@media screen and (max-width:640px) {
    .minimap-bottom {
        width: 248px;
    }
}


/* notice option */

.area-notice {
    width: fit-content;
    height: 50px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;

    /* overflow: hidden; */

    /* padding-top: 60px; */
    margin-top: 60px;

    pointer-events: none;

    display: none;

    /* border: 1px solid black; */

    
}

@media screen and (max-width:640px) {
    .area-notice {
        height: 45px;

        margin-top: 80px;
    }
}


@media screen and (max-width:1024px) {
    .sqs-block-notice {
        padding-top: 32px;
    }
}
@media screen and (max-width:768px) {
    .sqs-block-notice {
        padding-top: 30px;
    }
}

@media screen and (max-width:640px) {
    .sqs-block-notice {
        padding-top:  66px;
    }
}
.notice-block {
    width: fit-content;

    background: #ffffff;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 5px 30px 5px 18px;

    /* box-sizing: border-box; */

    /* border: 1px solid blue; */

    
    /* animation-duration: 0.3s;
    animation-name: textMove; */
}

@media screen and (max-width:640px) {
    .notice-block {
        padding: 0px 20px 0px 8px;
    }
}

.notice-block.move {
    animation-duration: 3s;
    animation-name: textMove;
    animation-fill-mode:forwards;
}

@keyframes textMove {
    0% {
        margin-left: 600px;
      }
      10% {
          margin-left: -100px;
        }
      22% {
          margin-left: 0px;
        }
      90% {
          opacity: 1;
        }
      100% {
          opacity: 0;
        }
  }


.img-notice-icon {
    width: 40px;
    height: auto;
}

@media screen and (max-width:1024px) {
    .img-notice-icon {
        width: 30px;
    }
}

.text-notice {
    width: 100%;
    /* height: 50px; */
    font-size: 20px;
    font-weight: 800;
    line-height: 27px;
    color: #000000;


    padding-left: 8px;

    /* border: 1px solid red; */

    display: flex;
    justify-content: center;
    align-items: center;
    
}

@media screen and (max-width:1024px) {
    .text-notice {
        font-size: 17px;
        line-height: 17px;
    
        padding-left: 7px;
    }
}

@media screen and (max-width:768px) {
    .text-notice {
        font-size: 15px;
        line-height: 15px;
    
        padding-left: 7px;
    }
}

@media screen and (max-width:640px) {
    .text-notice {
        font-size: 12px;
        line-height: 12px;
    
        padding-left: 6px;
    }
}

.text-notice span {
    margin: 0 5px;
}

.notice-color-notice {
    color: #ff0000;
}

.notice-color-item {
    color: #F50359;
}

.notice-color-badge {
    color: #0540DA;
}




.area-notice-check {
    width: fit-content;
    /* height: 50px; */
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;

    /* overflow: hidden; */

    /* padding-top: 60px; */
    margin-top: 130px;

    pointer-events: none;

    display: none;

    /* border: 1px solid black; */

    
}

@media screen and (max-width:640px) {
    .area-notice-check {
        height: 45px;

        margin-top: 130px;
    }
}


.notice-block-check {
    width: fit-content;

    background: #ffffff;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px 30px 10px 18px;


}

@media screen and (max-width:640px) {
    .notice-block {
        padding: 5px 20px 5px 8px;
    }
}



.notice-block-check.move {
    animation-duration: 1s;
    animation-name: textMoveFade;
    animation-fill-mode:forwards;
}

@keyframes textMoveFade {
    0% {
        opacity: 0;
      }
      100% {
          opacity: 1;
        }
  }







.text-notice-check {
    display: block;
    text-align: center;

    font-size: 20px;
    font-weight: 800;
    line-height: 27px;
    color: #000000;


    padding-left: 8px;
}


@media screen and (max-width:1024px) {
    .text-notice-check {
        font-size: 17px;
        line-height: 24px;
    
        padding-left: 7px;
    }
}

@media screen and (max-width:768px) {
    .text-notice-check {
        font-size: 15px;
        line-height: 22px;
    
        padding-left: 7px;
    }
}

@media screen and (max-width:640px) {
    .text-notice-check {
        font-size: 12px;
        line-height: 19px;
    
        padding-left: 6px;
    }
}








/* 

    minimap option 

*/
.area-minimap {
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;

    margin: auto;

    padding: 15px 20px;

    z-index: 30;

    max-width: 160px;

    text-align: center;
}
@media screen and (max-width:1024px) {
    .area-minimap {
        padding: 12px px;
    }
}
@media screen and (max-width:768px) {
    .area-minimap {
        padding: 9px 20px;
    }
}
@media screen and (max-width:640px) {
    .area-minimap {
        bottom: 0px;
        padding: 10px 7px;
    }
}

.minimap-text {
    font-size: 22px;
    color: #f50359;

    font-family: 'One Mobile';
}

@media screen and (max-width:768px) {
    .minimap-text {
        font-size: 17px;
    }
}



/* .minimap-icon.show {
    animation-duration: 0.5s;
    animation-name: showEffect;
    animation-fill-mode:forwards;
}


.minimap-icon.show:hover{
    animation-duration: 0.5s;
    animation-name: showEffect;
    animation-fill-mode:forwards;
} */

.minimap-icon {
    animation-duration: 0.5s;
    animation-name: showEffect;
    animation-fill-mode:forwards;

    margin: 0 auto;

    font-family: 'One Mobile';
}


.minimap-icon:hover{
    animation-duration: 0.5s;
    animation-name: hoverEffectMap;
    animation-fill-mode:forwards;
}




@keyframes showEffect {
    0% {
        /* opacity: 0; */
        transform: scale(1);
    }
    50% {
        /* opacity: 1; */
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }

}

@keyframes hoverEffectMap {
    0% {
        /* opacity: 0; */
        transform: scale(1);
    }
    50% {
        /* opacity: 1; */
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}





.minimap-icon.hide {
    animation: none;
}



#btnMiniMapClose {
    display: none;
}

#btnMiniMapClose.show {
    animation-duration: 0.5s;
    animation-name: showEffect;
    animation-fill-mode:forwards;
}


.img-minimap {
    width: 100%;
    height: auto;

    margin: 0 auto;
}


@media screen and (max-width:640px) {
    .img-minimap {
        width: 120px;
    }
}





/* menu content */
.area-menu {
    position: absolute;
    bottom: 10px;
    left: 0;
    margin: 0 auto;
    z-index: 30;
}



.menu-icon {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    padding: 6px 20px;
    
}


@media screen and (max-width:768px) {
    .menu-icon-pc {
        display: none !important;
    }
}


@media screen and (max-width:640px) {
    .menu-icon {
        padding: 5px 15px;
    }
}

.menu-text {
    margin-top: 3px;
    text-align: center;

    font-size: 12px;
    font-weight: 800;

    color: #ffffff;
}


/* btn-option */
.btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:640px) {
    .btn {
        width: 35px;
        height: 35px;
    }
}

.btn.active {
    background: #3142DA;
}

.btn img {
    width: 20px;
    height: auto;
}

@media screen and (max-width:640px) {
    .btn img {
        width: 15px;
        height: auto;
    }
}

.btn-menu.active img:first-child {
    display: none;
}

.btn-menu img:nth-child(2) {
    display: none;
}

.btn-menu.active img:nth-child(2) {
    display: block;
}

.btn-menu:hover {
    background: #0D47DB;
    transform: scale(1.4);
    /* transition: all 0.5s ease; */

    animation-duration: 0.5s;
    animation-name: hoverEffect;
    animation-fill-mode:forwards;
}

@keyframes hoverEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }

}

@keyframes textMove {
    0% {
        margin-left: 600px;
      }
      10% {
          margin-left: -100px;
        }
      22% {
          margin-left: 0px;
        }
      90% {
          opacity: 1;
        }
      100% {
          opacity: 0;
        }
  }

.btn-menu:hover img{
    transform: scale(1);
}

.btn-menu:hover  .btn-first-img{
    display: none;
}

.btn-menu:hover  .btn-second-img {
    display: block;
}




/* 

    footer content 

*/
#playPageFooter .footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
}




#playPageFooter .sqs-block-icon {
    padding: 0 9px;
}

@media screen and (max-width:768px) {
    #playPageFooter .sqs-block-icon {
        padding: 0 10px;
    }

    #playPageFooter .footer-icon-box {
        margin-right: 10px;
    }
}

@media screen and (max-width:640px) {
    #playPageFooter .footer-icon-box {
        display: none;
    }
}

.btn-footter-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}









/*****************************************

                modal popup

*****************************************/

.modal-popup {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    z-index: 40;

    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);

    display: none;
}







/* 
    modal loading 
*/









/* 
    modal tutorial 
*/
.modal-tutorial {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;

    z-index: 100;
}
.modal-tutorial-child {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.circle-tutorial {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    /* box-shadow: inset 0px 10px 25px rgba(255, 255, 255, 0.44), inset 0px -10px 25px rgba(0, 0, 0, 0.44); */

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    display: none;
}

@media screen and (max-width:640px) {
    .circle-tutorial {
        width: 270px;
        height: 270px;
    }
}


/* element option */

.tutorial-img-box {
    height: 114px;

    display: flex;
    justify-content: center;
    align-items: center;

}
.circle-tutorial img {
    height: 100%;
    /* border: 1px solid black; */
}

@media screen and (max-width:640px) {
   .tutorial-img-box {
       height: 96px;
    }
}

.circle-tutorial-mint {
    background: rgba(45, 223, 211, 0.8);
}

.circle-tutorial-orange {
    background: rgba(253, 150, 100, 0.8);
}

.circle-tutorial-blue {
    background: rgba(148, 210, 233, 0.8);
}


/* text option */
.text-tutorial {
    font-size: 22px;
    line-height: 30px;
    color: #fff;

    /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */

    text-align: center;

    margin-top: 26px;

    z-index: 100;
    font-family: 'One Mobile';
}

@media screen and (max-width:640px) {
    .text-tutorial {
        font-size: 14px;
        line-height: 27px;

        margin-top: 26px;
    }
}




.loading-image {
    /* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}
.btn-footter-icon img{
    width: 20px;
    height: auto;
    /* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}







/*

    modal event

*/

.modal-event {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}
.area-event-popup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-event-banner {
    max-width: 768px;
    width: 90%;

    border-radius: 20px;
}












/*

    modal badge 

*/

.modal-minimap {
    display: none;
}






.modal-badge {
    width: 100%;
    height: 100%;

    /* z-index: 15; */
    display: flex;

    display: none;
}

.modal-badge-block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}


/* area badge title*/
.area-badge-title {
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    
    background: rgba(67, 74, 208, 0.7);
}

/* badge count */
.badge-count {
    width: 150px;
    height: 50px;

    display: flex;
    /* justify-content: space-between; */
    align-items: center;

    margin-left: 30px;
    /* background: #999; */
    /* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}

@media screen and (max-width:768px) {
    .badge-count {
        margin-left: 24px;
    }
}

@media screen and (max-width:640px) {
    .badge-count {
        margin-left: 15px;
    }
}

.img-badge-count {
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-badge-count img{
    width: 28px;
    height: 28px;

    margin-right: 10px;
}

@media screen and (max-width:768px) {
    .img-badge-count img{
        width: 24px;
        height: 24px;
    }
}

.text-badge-count {
    width: 100;
    /* height: 50px; */

    /* margin: 0 auto; */

    display: flex;
    justify-content: center;
    align-items: center;
}

.text-badge-count h1{
    /* font-weight: 800; */
    font-size: 20px;
    line-height: 20px;

    color: #FFFFFF;
}

@media screen and (max-width:768px) {
    .text-badge-count h1{
        font-size: 16px;
        line-height: 16px;
    }
}

/* badge title */
.text-badge-title {
    max-width: 500px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: auto;
}

@media screen and (max-width:640px) {
    .text-badge-title {
        display: none;
    }
}

.badge-title {
    font-size: 25px;
    line-height: 25px;

    color: #FFFFFF;
}

@media screen and (max-width:768px) {
    .badge-title {
        font-size: 20px;
        line-height: 20px;
    }
}



/* badge close */
.btn-badge-close {
    width: 28px;
    height: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-right: 30px;
}

@media screen and (max-width:768px) {
    .btn-badge-close {
        width: 22px;
        height: 22px;
    
        margin-right: 24px;
    }
}

@media screen and (max-width:640px) {
    .btn-badge-close {
        width: 18px;
        height: 18px;
    
        margin-right: 15px;
    }
}

.btn-badge-close img {
    width: 100%;
    height: 100%;
}






/* area badge items */
.area-badge-items {
    width: 100%;
    max-height: 90%;
    padding: 32px 70px;
    box-sizing: border-box;

    display: flex;
    /* flex-flow: row wrap; */
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    .area-badge-items {
        padding: 32px 90px;
    }
}

@media screen and (max-width:640px) {
    .area-badge-items {
        padding: 32px 20px;
    }
}

.badge-item-list {
    width: 100%;
    height: 100%;

    gap: 10px;
    box-sizing: border-box;

    overflow-y: auto;

    display: grid;
    grid-template-columns: repeat(auto-fill ,minmax(100px, 1fr));
    /* padding-right: 7px; */

    /* border: 1px solid white; */
}

@media screen and (max-width:640px) {
    .badge-item-list {
        gap: 10px;
    }
}

.badge-item-icon {
    width: 100px;
    height: 100px;
    /* background: #999; */
    /* opacity: 30%; */
    /* margin: 20px; */

    cursor: pointer;

    pointer-events: none;
    
}

.badge-item-icon.active {
    opacity: 100%;
    pointer-events: all;
}

.badge-item-icon.active .badge-image{
    display: none;
}

.badge-item-icon.active .badge-image-active{
    display: block;
}

.badge-image {
    width: 100%;
    height: auto;
}

.badge-image-active {
    display: none;
}








/* 

    modal-badge-popup 

*/
.modal-badge-popup {
    z-index: 50;

    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}

.popup-badge-content {
    width: 400px;
    height: 550px;

    box-sizing: border-box;
    padding: 50px 40px 40px 40px;

    background: #FFFFFF;
    border-radius: 14px;

    position: relative;
}

@media screen and (max-width:640px) {
    .popup-badge-content {
        width: 287px;
        height: 420px;

        padding: 33px 28px;
    }
}

.popup-badge-content .sqs-block-child {
    width: 100%;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end;

    padding: 0;

    position: relative;
}


.img-popup-badge-icon {
    width: 200px;
    height: 200px;
    /* background: #999; */

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.img-popup-badge-icon img {
    /* width: 110%; */
    height: 100%;
}

@media screen and (max-width:640px) {
    .img-popup-badge-icon {
        width: 168px;
        height: 168px;
    }
}


.text-popup-badge-name {
    width: 100%;
    text-align: left;
    padding: 18px 0;
}

.text-popup-badge-name h2 {
    font-size: 28px;
}

@media screen and (max-width:640px) {
    .text-popup-badge-name {
        padding: 10px 0;
    }

    .text-popup-badge-name h2 {
        font-size: 20px;
    }
}

.area-popup-badge-text {
    width: 100%;
    /* height: 136px; */

    overflow-y: auto;

    /* margin-bottom: 20px; */
}

@media screen and (max-width:640px) {
    .area-popup-badge-text {
        width: 100%;
        /* height: 80px; */
    
        /* margin-bottom: 17px; */
    }
}

.area-popup-badge-text ul {
    /* width: 100%; */
}


.area-popup-badge-text ul li {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 7px 0;
}

.area-popup-badge-text ul li p {
    padding-right: 5px;
    box-sizing: border-box;
    word-break: keep-all;
    flex: 1;

    display: flex;
    align-items: center;

    margin-top: 1px;
}

.area-popup-badge-text ul li a {
    color: black;

    margin-top: 1px;
}

@media screen and (max-width:640px) {
    .area-popup-badge-text ul li {
        padding: 5px 0;
    }
    .area-popup-badge-text ul li p {
        font-size: 13px;
        line-height: 13px;

        margin-top: 2px;
    }

    .area-popup-badge-text ul li a {
        font-size: 13px;
        line-height: 13px;

        margin-top: 2px;
    }
}

.area-popup-badge-text ul li img {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    padding-right: 13px;
}


.area-popup-badge-btn {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 18px 0;
}

@media screen and (max-width:640px) {
    .area-popup-badge-btn {    
        padding: 10px 0;
    }
}


.btn-popup-badge {
    width: 280px;
    height: 60px;

    background: #1C228C;
    border-radius: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 18px;
    font-weight: 800;
    line-height: 18px;
    color: #FFFFFF;

}

.btn-popup-badge:hover {
    background: #8386BA;
}

@media screen and (max-width:640px) {
    .btn-popup-badge {
        width: 238px;
        height: 50px;
    
        font-size: 15px;
        line-height: 20px;
    }
}

.btn-popup-badge img {
    width: 20px;
    /* height: 20px; */
    
    margin-right: 7px;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:640px) {
    .btn-popup-badge img {
        width: 15px;
        /* height: 15px; */
    
        /* margin-top: 7px;
        margin-right: 5px; */
    }
}



.area-popup-close-btn {
    width: 20px;
    height: 20px;



    position: absolute;

    top: 24px;
    right: 24px;

    margin: auto;
}


@media screen and (max-width:640px) {
    .area-popup-close-btn {
        top: 15px;
        right: 15px;
    
    }
}

.btn-popup-close {
    width: 20px;
    height: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-popup-close img {
    width: 20px;
    height: 20px;
}




/*
    area
*/

/* area avatar */
.modal-avatar {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    background: none;
    backdrop-filter: none;

    display: none;
}

.avatar-content {
    display: flex;
    flex-flow: column;
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {
    .area-avatar-body {

    }
}

@media screen and (max-width:640px) {
    .avatar-content {
        margin-bottom: 10px;
    }
}

.area-avatar-body {
    width: 600px;
    height: 570px;
    /* background: #999; */
    /* border: 1px solid black; */
    display: none;
}

.area-avatar-body img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:960px) {
    .area-avatar-body {
        width: 470px;
        height: 450px;
    }
}

@media screen and (max-width:640px) {
    .area-avatar-body {
        width: 300px;
        height: 286px;
    }
}

.area-avatar-item {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px 0; */
}



.btn-avatar-item-block {
    padding : 10px 5px;
}

@media screen and (max-width:960px) {
    .btn-avatar-item-block {
        padding : 8px 5px;
    }
}

@media screen and (max-width:640px) {
    .btn-avatar-item-block {
        padding : 6px 3px;
    }
}

.btn-item {
    position: relative;
    overflow:visible;
}

@media screen and (max-width:960px) {
    .btn-item {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width:640px) {
    .btn-item {
        width: 22px;
        height: 22px;
    }
}


.btn-item img{
    
}

@media screen and (max-width:960px) {
    .btn-item img{
        /* width: 16px; */
    }
}

@media screen and (max-width:640px) {
    .btn-item img{
        width: 14px;
    }
}





.btn-avatar-item.active {
    background: #0D47DB;;
    /* overflow: hidden; */
}

img.btn-avatar-color {
    width: 122%
}


@media screen and (max-width:640px) {
    img.btn-avatar-color {
        /* width: 24px; */
    }
}

.btn-avatar-img {
    display: none;
}

.btn-item.active > img {
    display: none;
}

.btn-item.active .btn-avatar-img {
    display: block;
}





.new-item {
    width: 13px;
    height: 13px;
    border-radius: 50%;

    position: absolute;
    top: 0px;
    right: 0px;

    background: #FF3D00;

    display: none;
}

@media screen and (max-width:960px) {
    .new-item {
        width: 9px;
        height: 9px;
    }
}

@media screen and (max-width:640px) {
    .new-item {
        width: 7px;
        height: 7px;
    }
}


.area-avatar-ui {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-arrow {
    width: 58px;
    height: 58px;
}

/* @media screen and (max-width:960px) {
    .btn-arrow {
        width: 66px;
        height: 66px;
    }
} */

@media screen and (max-width:640px) {
    .btn-arrow {
        width: 33px;
        height: 33px;
    }
}

.btn-arrow:active {
    background: #0D47DB;;
}

.btn-select-active {
    display: none;
}

.btn-arrow:active .btn-select {
    display: none;
}

.btn-arrow:active .btn-select-active {
    display: block;
}

img.btn-arrow-img {
    width: 20px;
}

@media screen and (max-width:640px) {
    img.btn-arrow-img {
        width: 12px;
    }
}

.btn-avatar {
    width: 370px;
    height: 84px;
    border-radius: 50px;
    margin: 0 15px;
}

@media screen and (max-width:960px) {
    .btn-avatar {
        width: 290px;
        height: 66px;
        margin: 0 10px;
    }
}

@media screen and (max-width:640px) {
    .btn-avatar {
        width: 186px;
        height: 42px;
        margin: 0 8px;
    }
}


.text-btn-avatar {
    font-size: 24px;
    font-weight: 800;

}

@media screen and (max-width:960px) {
    .text-btn-avatar {
        font-size: 18px;
    }
}

@media screen and (max-width:640px) {
    .text-btn-avatar {
        font-size: 12px;
    }
}

.area-avatar-amount {
    padding: 10px;
}

@media screen and (max-width:960px) {
    .area-avatar-amount {
        padding: 8px;
    }
}

@media screen and (max-width:640px) {
    .area-avatar-amount {
        padding: 6px;
    }
}


.text-avatar-amount {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

@media screen and (max-width:960px) {
    .text-avatar-amount {
        font-size: 18px;
    }
}

@media screen and (max-width:640px) {
    .text-avatar-amount {
        font-size: 12px;
    }
}






.area-avatar-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media screen and (max-width:960px) {
    .area-avatar-close {
        top: 16px;
    }
}

@media screen and (max-width:640px) {
    .area-avatar-close {
        top: 10px;
        right: 10px;
    }
}



.btn-avatar-close {
    width: 47px;
    height: 47px;
    border-radius: 50%;

    background: #FFFFFF;

    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-avatar-close:hover {
    background: #3142DA;
    /* transform: scale(1.4); */

    animation-duration: 0.5s;
    animation-name: hoverEffect;
    animation-fill-mode:forwards;
}

.btn-avatar-close img:nth-child(2) {
    display: none;
}

.btn-avatar-close:hover .btn-close-second-img {
    display: block;
}

.btn-avatar-close:hover .btn-close-first-img {
    display: none;
}


@media screen and (max-width:640px) {
    .btn-avatar-close {
        width: 40px;
        height: 40px;
    }
}


.btn-avatar-close img {
    width: 24px;
    height: 24px;

    height: auto;
}

@media screen and (max-width:640px) {
    .btn-avatar-close img {
        width: 18px;
    }
}










/* area chatting */
.modal-chatting {
    /* width: 560px; */
    width: 0;
    height: 252px;
    position: absolute;
    /* left: 20px;
    bottom: 10px; */
    left: 24px;
    bottom: 24px;
    margin: auto;
    z-index: 15;

    display: none;
    box-sizing: border-box;
    /* padding: 0px 0px 21px 20px; */

    z-index: -1;
}

@media screen and (max-width:640px) {
    .modal-chatting {
        height: 164px;

        left: 20px;
        bottom: 22px;
    }
}

.modal-chatting.active {
    width: 512px;
    transition: width 1s;
}

@media screen and (max-width:640px) {
    .modal-chatting.active {
        width: 100vw;
        padding-right: 40px;
        box-sizing: border-box;
        /* padding: 0px 16px 18px 16px; */

        /* chatting icon 추가시 */
        /* padding: 0 10px 18px 16px; */
    }
}

.sqs-block-modal {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
}


.modal-chatting-text {
    height: 100%;
    border-radius: 11px 11px 30px 30px;

    background: rgba(0, 0, 0, 0.6);
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px -5px 10px rgba(0, 0, 0, 0.6); */

    flex: 1;

    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    
}

@media screen and (max-width:640px) {
    .modal-chatting-text {
    height: 100%;
    }
}


.display-message {
    border-radius: 30px;

    overflow: hidden;
    /* overflow-y: auto; */
    box-sizing: border-box;
    padding: 20px 10px 10px 20px;

    flex: 1;
}
@media screen and (max-width:640px) {
    .display-message {
        padding: 12px;
    }
}

.display-message-list {
    height: 100%;
    overflow-y: auto;
} 


/* .display-message-list::-webkit-scrollbar {
    width: 5px;
    transition: scroll 0.5 ease;
  }
  
.display-message-list::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(25, 147, 147, 0);
  }
  .display-message-list:hover::-webkit-scrollbar-track {
    background-color: rgba(25, 147, 147, 0.1);
  }
  
  .display-message-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(25, 147, 147, 0);
  }

  .display-message-list:hover::-webkit-scrollbar-thumb {
    background-color: rgba(25, 147, 147, 0.2);
  } */

  .display-message-list p {
      margin-right: 10px;
  }



.input-message {
    width: 100%;
}

.input-message input {
    width: 100%;
    height: 40px;
    text-indent: 50px;

    background: #FFFFFF;

    border: none;
    border-radius: 50px;
}

.input-message input:focus {
    outline: none;
}

@media screen and (max-width:640px) {
    .input-message input {
        height: 35px;
        border: none;

        text-indent: 40px;
    }
}


/* chatting text option*/
.text-chatting {
    font-size: 16px;
    font-weight: 200;
    line-height: 21px;
    color: #fff;
    padding: 3px 0;
}
@media screen and (max-width:640px) {
    .text-chatting {
        font-size: 11px;
        line-height: 14px;
    }
}

.text-chatting span {
    font-weight: 600;
    padding-right: 5px;
}

.text-chatting-event {
    font-weight: 600;
    color: #00C2FF;
    margin-left: -2px;
}

.text-chatting-alert {
    font-weight: 600;
    color: #FF6262;
    /* margin-left: -1px; */
}

.text-chatting-chat {
    /* font-weight: 200; */
}
.text-chatting-chat span {
    font-weight: 800;
    padding-left: 3px;
    padding-right: 3px;
}


.modal-chating-icon {
    /* border: 1px solid white; */
    display: none;
}

.chatting-icon {
    padding-top: 10px;
    padding-left: 10px;
}










/*

    land Mark

*/

.modal-land {
    display: flex;
    justify-content: center;
    align-items: flex-end;

    display: none;
}


.modal-land .npc-chat-content {
    display: block;
    width: 100%;
    max-width: 1500px;
}

.area-land-npc {

}

.img-land-image img {
    width: 100%;
    max-width: 625px;
}

.img-land-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-land .area-land-text {
    width: 100%;
    max-width: 1500px;
    height: 250px;

    background: #FFFFFF;
    /* box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.25), inset 0px 3px 4px rgba(0, 0, 0, 0.25), inset 0px -5px 20px rgba(0, 0, 0, 0.25); */

    box-sizing: border-box;
    padding: 24px 46px;

    border-radius: 50px 50px 0 0;

    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

/* @media screen and (max-width:640px) {
    .modal-land .area-land-text {
        height: 220px;
    }
} */


.text-land-detail {
    max-width: 860px;
    width: 100%;

    font-size: 24px;
    line-height: 50px;
    letter-spacing: 0.1rem;

    word-break: keep-all;
}
@media screen and (max-width:960px) {
    .text-land-detail {
        font-size: 20px;
        line-height: 40px;
    }
}

@media screen and (max-width:640px) {
    .text-land-detail {
        font-size: 14px;
        line-height: 30px;
    }
}


.hide {
    display: none;
}


.text-land-name {
    font-weight: 800;
}




.btn-land {
    position:absolute;
    right: 0px;
    bottom: 0px;
}

.btn-land-next {
    padding: 30px 36px;
}

.btn-land-detail {
    display: none;
    margin: 22px;
    padding: 10px 32px;
    background: #0094FF;
    border-radius: 20px;

    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1rem;

}

@media screen and (max-width:960px) {
    .btn-land-detail {
        font-size: 14px;
    }
}

@media screen and (max-width:640px) {
    .btn-land-detail {
        font-size: 12px;
    }
}



















/*

    cafe popup

*/

.modal-cafe-popup {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}

.popup-cafe-content {
    width: 400px;
    height: 600px;

    box-sizing: border-box;
    padding: 24px 46px;

    background: #FFFFFF;
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px -5px 10px rgba(0, 0, 0, 0.6); */
    border-radius: 50px;

    position: relative;

    align-items: flex-start;
}

@media screen and (max-width:640px) {
    .popup-cafe-content {
        width: 340px;
        height: 500px;

        padding: 30px 40px;
    }
}







.modal-cafe-popup .popup-cafe-content .sqs-block-child {
    width: 100%;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end;

    padding: 0;

    /* position: relative; */
}


.modal-cafe-popup .img-popup-cafe-icon {
    width: 346px;
    height: 266px;
    background: none;

}

@media screen and (max-width:640px) {
    .modal-cafe-popup .img-popup-cafe-icon {
        width: 280px;
        height: 215px;
    }
}





.swiper-container {
    width: 100%;
    height: 100%;

    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #999;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    border-radius: 30px;

    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    left: 0;
    right: 0;
    margin: 5px auto;
}

.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 5px;
}

.swiper-pagination-bullet-active {
    background: #000000;
}





.modal-cafe-popup .text-popup-badge-name {
    text-align: center;
    padding: 45px 0 35px 0;
}

.modal-cafe-popup .text-popup-badge-name h2 {
    font-size: 24px;
}

@media screen and (max-width:640px) {
    .modal-cafe-popup .text-popup-badge-name {
        padding: 34px 0 28px 0;
    }

    .modal-cafe-popup .text-popup-badge-name h2 {
        font-size: 20px;
    }
}

.modal-cafe-popup .area-popup-badge-text {
    width: 100%;
    height: 140px;

    overflow-y: auto;

    margin-bottom: 20px;
}

@media screen and (max-width:640px) {
    .modal-cafe-popup .area-popup-badge-text {
        width: 100%;
        height: 112px;
    
        overflow-y: auto;
    
        margin-bottom: 12px;
    }
}

.modal-cafe-popup .area-popup-badge-text ul {
    /* width: 100%; */
}


.modal-cafe-popup .area-popup-badge-text ul li {
    /* width: 100%; */
    display: flex;
    align-items: flex-start;
    padding: 7px 0;
}

.modal-cafe-popup .area-popup-badge-text ul li:first-child {
    padding-top: 0;
}


.modal-cafe-popup .area-popup-badge-text ul li p {
    padding-right: 5px;
    box-sizing: border-box;
    word-break: keep-all;
    flex: 1;
}

.modal-cafe-popup .area-popup-badge-text ul li a {
    color: black;
}

@media screen and (max-width:640px) {
    .modal-cafe-popup .area-popup-badge-text ul li {
        padding: 4px 0;
    }
    .modal-cafe-popup .area-popup-badge-text ul li p {
        font-size: 13px;
        line-height: 13px;
    }
    .modal-cafe-popup .area-popup-badge-text ul li a {
        font-size: 13px;
    }
}

.modal-cafe-popup .area-popup-badge-text ul li img {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    padding-right: 13px;
}

.modal-cafe-popup .text-cafe-detail{
    font-size: 16px;
    line-height: 32px;

    margin-top: 30px;
}

@media screen and (max-width:640px) {
    .modal-cafe-popup .area-popup-badge-text ul li p.text-cafe-detail{
        line-height: 27px;
    
        margin-top: 30px;
    }
}











/*

    modal menu

*/

.modal-menu {
    width: 100%;
    height: 100%;
    background: #b6dee6;
background: -moz-linear-gradient(top,  #b6dee6 0%, #6da8c8 43%, #2b78a2 100%);
background: -webkit-linear-gradient(top,  #b6dee6 0%,#6da8c8 43%,#2b78a2 100%);
background: linear-gradient(to bottom,  #b6dee6 0%,#6da8c8 43%,#2b78a2 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6dee6', endColorstr='#2b78a2',GradientType=0 );




    position: absolute;
    top: 0;
    left: 0;

    z-index: 40;

    display: flex;
    justify-content: center;
    align-items: center;

    display: none;

}
.area-menu-img {
    width: 427px;
    height: 427px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

@media screen and (max-width:768px) {
    .area-menu-img {
        width: 300px;
        height: 300px;
    }
}

.area-menu-img img {
    width: 100%;
    margin-right: 20px;
}
.area-menu-select {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;


    /* padding: 26px 0; */
}

.btn-menu-popup {
    font-size: 34px;

    color: #ffffff;
    font-family: 'One Mobile';
}

@media screen and (max-width:640px) {
    .btn-menu-popup {
        font-size: 27px;
    }
}


.btn-menu-popup-box {
    padding: 10px 0;
}


.area-menu-footer {
    padding: 40px 0;
}

.btn-menu-footer-box {
    padding: 0 9px;
}

.btn-menu-policy-box {
    padding: 14px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-menu-policy {
    font-size: 14px;
    font-weight: 600;

    color: #ffffff;

    cursor: pointer;
}

.center-dot {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 6px;
}















.landmark-popup {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;

    overflow: hidden;
}

.npc-chat {
    width: fit-content;
    /* height: 100%; */
    /* margin-bottom: 10vh; */

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;


    position: static;
}
.area-npc-chat {
    width: 100%;
    max-width: 726px;
    
    margin-top: -70px;
}

@media screen and (max-width:768px) {
    .area-npc-chat {
        margin-top: -90px;
    }
}

.move-right {
    right: -360px;
}

@media screen and (max-width:768px) {
    .move-right {
        right: -200px;
    }
}

.npc-img {
    width: 60%;
}

.area-npc-image {
    width: 426px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;

    pointer-events: none;
}

@media screen and (max-width:768px) {
    .area-npc-image {
        width: 426px;
    }
}

@media screen and (max-width:640px) {
    .area-npc-image {
        width: 326px;
    }
}

.npc-chat-rectangle {
    
}

.area-npc-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 26px;
}

@media screen and (max-width:640px) {
    .area-npc-btn {
        margin-top: 16px;
    }
}

.npc-chat-btn {
    /* margin: 0 14px; */
}

.btn-bg-color-blue {
    margin-left: 14px;
}








.landmark-info {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;

    overflow: hidden;
}

.npc-info {
    width: fit-content;
    /* height: 100%; */
    /* margin-bottom: 10vh; */

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    /* margin-top: 100px; */
}


.area-spot-image {
    width: 540px;
    height: 540px;
    border-radius: 50%;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 4px solid #ffffff;
}

@media screen and (max-width:768px) {
    .area-spot-image {
        width: 540px;
        height: 540px;
    }
}

@media screen and (max-width:640px) {
    .area-spot-image {
        width: 330px;
        height: 330px;
    }
}

.npc-info-img {
    height: 100%;
}

.info-chat {
    margin-top: -100px;

    position: relative;
    z-index: 100;
}

@media screen and (max-width:640px) {
    .info-chat {
        margin-top: 10px;
    }
}

.area-npc-image-right {
    width: 400px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;

    /* right: -800px; */
    left: 0;
    top: 0;
    /* bottom: -400px; */
    bottom: -140px;
    right: -420px;
    margin: 0 auto;

    pointer-events: none;
}

@media screen and (max-width:768px) {
    .area-npc-image-right {
        bottom: -140px;
        right: -420px;
        margin: auto;
    }
}

@media screen and (max-width:640px) {
    .area-npc-image-right {
        bottom: -80px;
        right: -220px;
        width: 300px;
    }
}




.modal-video {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}

.npc-video-box {
    width: 100%;
    height: 100%;
    padding: 100px;

    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

@media screen and (max-width:768px) {    
    .npc-video-box {
        padding: 50px;
    }
}

@media screen and (max-width:640px) {    
    .npc-video-box {
        padding: 30px;
    }
}

/* .npc-video {
    width: 100%;
    max-width: 1200px;
} */









/* modal server error */
.modal-server-error {
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;

}

.img-error-image {
    width: 300px;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    pointer-events: none;
}

.img-error-image img {
    width: 100%;
}



@media screen and (max-width:640px) {
    .img-error-image {
        width: 240px;
    }
}















/* modal server check */
.modal-server-check {
    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 60px 0;
    
    pointer-events: none;

    display: none;
}


.server-check-bg {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;
    z-index: -1;
}

.server-check-bg-img {
    width: 1920px;
    height: 100%;
}


.server-check-content {
    width: 100%;
    max-width: 1200px;
    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 60px;
    box-sizing: border-box;
}

@media screen and (max-width:768px) {
    .server-check-content {

        flex-flow: column-reverse;
        justify-content: center;

        padding: 50px 30px;

    }
}

.check-text-block {

}


@media screen and (max-width:768px) {
    .check-text-block {
        width: 100%;
        text-align: left;

        margin-top: 20px;
    }
    .check-avatar-block {
        width: 100%;
        text-align: center;
    }
}


@media screen and (max-width:640px) {
    .check-text-block {
        margin-top: 40px;
    }
}


.area-check-text img {
    
    max-width: 620px;
    width: 75%;
}


@media screen and (max-width:768px) {
    .area-check-text img {
        max-width: 400px;
    }
}
/* .area-check-avatar {
    text-align: center;
} */

.area-check-avatar img {
    
    max-width: 270px;
    min-width: 200px;
}

@media screen and (max-width:768px) {
    .area-check-avatar img {
        max-width: 200px;
        min-width: 140px;
        width: 30%;
    }
}


.text-check-subTitle {
    font-size: 24px;
    font-weight: 200;
    font-weight: normal;
    font-family: 'One Mobile';

    margin-bottom: 15px;
}


.text-check-title {
    font-size: 48px;
    font-weight: normal;
    font-family: 'One Mobile';
}

.text-check-name {
    font-size: 40px;

    margin: 20px 0;
}

.text-check-content {
    font-size: 24px;
    line-height: 36px;

}


.text-check-hr {
    border: 1px solid #000;
    margin: 12px;
}



.check-avatar-img {
    width: 190px;
    height: auto;
}
