@charset "UTF-8";
.scrollfixed{overflow: hidden;}
/* walk through */
.popup-onboarding{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 50;
}

.popup-wt-content{
    width: 85%;
    max-width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    /* box-shadow: 6px 8px 10px rgb(0,0,0,.5); */
    /* overflow: hidden; */
}

.popup-wt-content-mission1, .popup-wt-content-film{
    opacity: 0;
    display: none;
}

.popup-wt-container:after{
    content: '';
    display: table;
    clear: both;
}

.popup-wt-item{
    width: 100%;
    position: relative;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.popup-wt-item:before{
    /* content: '';
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0,0,255,.1); */
    /* background: rgb(255,255,255,.2); */
}

.popup-wt-container.slick-initialized .slick-slide.popup-wt-item{
    display: flex;
}

.popup-wt-container.slick-dotted.slick-slider{
    margin-bottom: 0;
}

.wt-item-text{
    width: 300px;
    position: relative;
    min-height: 400px;
    background: url('/images/walk-through/bg.jpg') no-repeat;
    /* background: url('/images/walk-through/bg2.jpg') no-repeat; */
    background-size: cover;
    background-position: center left;
    box-shadow: 6px 8px 10px rgba(0, 0, 0, .5);
}

.wt-item-text h4{
    width: 75%;
    /* position: relative;
    margin: 0 auto; */
    font-size: 2.2em;
    font-weight: 900!important;
    text-align: left;
    color: #5cbbff;
    /* color: #333; */
    /* text-shadow: 1px 1px 1px rgb(0,0,0,.5); */
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%,-50%);
}

.wt-item-text h4 em{
    color: #fff;
    /* color: #1771bf; */
}

.wt-item-pic{
    width: calc(100% - 300px);
    padding-bottom: calc(100% - 300px);
    position: relative;
    /* border: 10px solid #010829; */
    /* box-sizing: border-box; */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .5);
    z-index: 2;
}

.wt-item-pic img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
}

.popup-wt-container .slick-dots{
    width: 300px;
    margin: 0;
    bottom: 65px;
    right: 0;
}

.popup-wt-container .slick-next{
    width: 50px;
    height: 50px;
    background: url('/images/walk-through/arrow-next.svg') no-repeat;
    background-size: 50px 50px;
    background-position: center;
    top: 50%;
    /* bottom: -25px; */
    right: 0;
    opacity: 1;
    box-shadow: -4px -4px 4px rgb(0,0,0,.2);
}

.popup-wt-container .slick-next.slick-disabled{
    opacity: 0;
    display: none;
    cursor: default;
}

.popup-wt-container .slick-prev{
    display: none;
    opacity: 0;
}

.popup-wt-close{
    width: 24px;
    height: 24px;
    position: absolute;
    top: 65px;
    right: 15px;
    /* right: 40px; */
    cursor: pointer;
    opacity: .7;
    transition: .15s linear;
}

.popup-wt-close img{
    width: 100%;
}

.popup-wt-close:hover{
    opacity: 1;
}

.popup-wt-close.popup-wt-play-close{
    top: 15px;
}

.popup-wt-item.popup-wt-film-item{
    background: url('/images/walk-through/bg.jpg') no-repeat;
    background-size: cover;
    background-position: center right;
    min-height: 470px;
    width: 100%;
}

.wt-item-films{
    width: 90%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 30px;
}

.popup-wt-item:nth-last-child(1):before{
    content: '';
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: none;
}

.wt-item-films-title{
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.wt-films-container{
    width: 100%;
    position: relative;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.wt-film-item{
    width: 31%;
    position: relative;
    cursor: pointer;
}

.wt-film-item-content{
    width: 100%;
    padding-bottom: 66.67%;
    position: relative;
}

.wt-film-item-content:before{
    content: '';
    display: table;
    position: absolute;
    width: 100%;
    padding-bottom: 66.67%;
    background: rgb(0,0,0,.2);
    top: 0;
    left:0;
    z-index: 2;
    transition: .15s linear;
}

.wt-film-item-content img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 1;
}

.wt-film-play{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: .6;
    z-index: 5;
    transition: .15s linear;
}

.wt-film-play img{
    width: 100%;
}

.wt-film-item:hover .wt-film-item-content:before{
    background: rgb(0,0,0,0);
}

.wt-film-item:hover .wt-film-play{
    opacity: .9;
}

.wt-film-name{
    width: 100%;
    position: relative;
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    opacity: .8;
    transition: .15s linear;
}

.wt-film-item:hover .wt-film-name{
    opacity: 1;
}

.choose-film-btn{
    width: 50px;
    height: 50px;
    position: absolute;
    background: url('/images/walk-through/arrow-next.svg') no-repeat;
    background-size: 50px 50px;
    background-position: center;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    opacity: 1;
    box-shadow: -4px -4px 4px rgb(0,0,0,.2);
    cursor: pointer;
    z-index: 5;
}
.wt-item-films ul, li{ list-style: none; text-decoration: none; padding: 0; }
.slick-dots{ bottom: 10px; }
.slick-dots li button:before{ color: #ffffff; font-size: 32px; }
.slick-dots li.slick-active button:before{ color: #ffffff; }
em{font-style: normal;text-transform: none;list-style: none;}


.mission-1 .wt-item-pic{
    background: url('/images/walk-through/bg.jpg') no-repeat;
    background-size: cover;
}

.wt-item-text h5{
    width: 85%;
    position: relative;
    margin: 50px auto 0;
    font-size: 1.3em;
    font-weight: 400 !important;
    color: #fff;
    line-height: 1.4em;
}

.wt-item-text h5 em{
    font-size: .8em;
}

.wt-item-btns{
    width: 85%;
    position: absolute;
    bottom: 10px;
    left: 7.5%;
}

.wt-item-confirm{
    width: 100%;
    height: 46px;
    position: relative;
    margin: 0 auto;
    border-radius: 2000px;
    background: #7E7E7E;
    color: #cdcdcd;
    text-align: center;
    line-height: 46px;
    font-size: 1em;
    cursor: pointer;
}

.wt-item-confirm.active{
    background: #1B62B4;
    color: #fff;
    transition: .15s linear;
}

.wt-item-confirm.active:hover{
    background: #fff;
    color:#1B62B4;
}

.wt-item-skip{
    text-align: center;
    font-size: 1em;
    font-weight: 400;
    color: #b9b9b9;
    cursor: pointer;
    margin:15px 0;
}

.wt-mission-container{
    width: 90%;
    height: 444px;
    position: relative;
    margin: 20px auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 10px 0 0;
}

.wt-mission-container.more{
    height: 486px;
    overflow-y: auto;
    padding-bottom: 20px;
}

.wt-mission-item{
    width: 49%;
    position: relative;
    margin: 5px 0;
    cursor: pointer;
    transition: .15s linear;
}

.wt-mission-item:hover{
    transform: scale(1.05);
}

.wt-mission-item.hide{
    display: none;
}

.mission-item-container{
    width: 100%;
    position: relative;
    padding-bottom: 27.78%;
    border-radius: 7px;
    overflow: hidden;
}

.mission-item-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

.mission-item-name{
    font-size: 1em;
    font-weight: 400 !important;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
}

.wt-mission-item.active:after{
    content: '';
    display: table;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    background: url(/images/walk-through/checked.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.wt-mission-item.active .mission-item-container{
    transform: scale(.9);
    opacity: .5;
}

.mission-1 .wt-item-pic{
    padding-bottom: 0;
}

.mission-nore-btn{
    width: 150px;
    height: 40px;
    position: relative;
    margin: 0 auto 20px;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 1em;
    border-radius: 2000px;
    cursor: pointer;
    transition: .15s linear;
}

.mission-nore-btn:hover{
    background: #fff;
    color: #1B62B4;
}

.wt-mission-container.more::-webkit-scrollbar{
    width: 5px;
}

.wt-mission-container.more::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #000000;
}

.wt-mission-container.more::-webkit-scrollbar-thumb {
    background: #666666; 
    border-radius: 10px;
}

.wt-mission-container.more::-webkit-scrollbar-thumb:hover {
    background: #444444; 
}

.wt-mission-container.more{
    scrollbar-face-color: #666666;
    scrollbar-highlight-color: #444444;
    scrollbar-track-color: #000000;
    scrollbar-width: 5px;
    scrollbar-border-radius: 10px;
    scrollbar-color: black;
    scrollbar-width: thin;
}
