@charset "UTF-8";

.js-chatbot-open{
    cursor: pointer;
}
/* WCIS */
.wcis-maintext {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    line-height: 2.4;
    margin-bottom: 50px;
}

.wcis-reels {
    height: 660px;
}

.wcis-reelsection__title {
    text-align: center;
    margin-top: -200px;
    margin-bottom: 60px;
    position: relative;
    z-index: 99;
}

.wcis-modal {
    position: fixed;
    bottom: 120px;
    right: 20px;
    max-width: 390px;
    width: 100%;
    z-index: 99999;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.12) 0px 0px 2px 0px inset, rgba(0, 0, 0, 0.05) 0px 0px 2px 1px, rgba(0, 0, 0, 0.3) 0px 12px 60px;
    border-radius: 30px;
}

.wcis-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wcis-modal-close {
    cursor: pointer;
}
.wcis-modal-close img{
    display: block;
}

.wcis-modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: rgba(0, 0, 0, 0.2); */
}

/* .wcis-modal.open .wcis-modal-bg {
    backdrop-filter: blur(20px);
} */

.wcis-modal__backicon img{
    width: 10px;
}
.wcis-modal__homeicon img{
    width: 26px;
}

.wcis-modal-content {
    z-index: 2;
    height: 660px;
    max-height: 90vh;
    max-height: 90svh;
    background-color: #fff;
}

.wcis-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    color: #fff;
    background: #38a7df;
    padding: 0 30px;
}

.wcis-modal__head--title {
    font-weight: bold;
}

.wcis-modal__inner {
    overflow-y: scroll;
    padding: 30px 20px 50px;
    background-color: #F7F7F8;
    width: 100%;
    height: calc(100% - 50px);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.wcis-modal__message {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wcis-modal__message:not(:last-of-type) {
    margin-bottom: 16px;
}

.wcis-modal__message--icon {
    width: 40px;
}

.wcis-modal__message--textbox {
    position: relative;
    background: #fff;
    width: 280px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
}

.wcis-modal__message--textbox::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    width: 16px;
    height: 12px;
    background: #fff;
}

.wcis-modal__message.message-admin .wcis-modal__message--textbox::before {
    left: -16px;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.wcis-modal__message--textbox.question {
    position: relative;
}

.wcis-modal__message--textbox.question .wcis-modal__message--text {
    font-weight: bold;
}

.wcis-modal__message--textbox.question .wcis-modal__message--text strong{
    font-size: 22px;
    display: block;
}

.question-number {
    position: absolute;
    left: calc(100% + 14px);
    bottom: 0;
}

.wcis-modal__message.message-you {
    flex-direction: row-reverse;
}

.wcis-modal__message.message-you .wcis-modal__message--textbox::before {
    right: -16px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.wcis-modal__selectors {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.wcis-modal__selectbtn {
    width: 100px;
    line-height: 42px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 25px;
    border: 1px solid #38a7df;
    cursor: pointer;
}

.wcis-modal__selectbtn.yes {
    color: #38a7df;
    background: #38a7df;
}

.wcis-modal__selectbtn.no {
    color: #38a7df;
    background: #38a7df;
}

.wcis-modal__selectbtn.disabled {
    pointer-events: none;
}

.wcis-modal__selectbtn.faded {
    opacity: 0.3;
}

.wcis-modal__age{
    text-align: right;
}
.wcis-modal__age input, .wcis-modal__people input{
    border: 1px solid #ddd;
    height: 40px;
    padding: 0 10px;
    border-radius: 2px;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}
.wcis-modal__age input{
    width: calc(100% - 30px);
}
.wcis-modal__people{
    text-align: right;
}
.wcis-modal__people input{
    width: 45px;
    margin: 0 10px;
    height: 35px;
}
.wcis-modal__age.disabled input,
.wcis-modal__people.disabled input{
    pointer-events: none;
    opacity: 0.3;
    background-color: #ddd;
}
.wcis-modal__age span{
    margin-left: 10px;
}
.wcis-modal__people-item:not(:last-child){
    margin-bottom: 5px;
}
.wcis-modal__age span, .wcis-modal__people span{
    font-size: 14px;
    font-weight: bold;
}
.wcis-modal__nextbtn{
    margin-top: 15px;
    text-align: center;
}
.wcis-modal__nextbtn span{
    font-size: 14px;
    display: inline-block;
    border-radius: 20px;
    background-color: #38a7df;
    font-weight: bold;
    padding: 5px 30px;
    cursor: pointer;
    transition: .2s;
    border: 1px solid #38a7df;
}
@media screen and (min-width: 992px) {
    .wcis-modal__nextbtn span:hover{
        background-color: transparent;
        border-color: #38a7df;

    }
}
.wcis-modal__nextbtn span.disabled{
    pointer-events: none;
    opacity: 0.3;
}
.wcis-modal__choosetype{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 8px;
}
.wcis-modal__choosetype.col-1{
    grid-template-columns: repeat(1,1fr);
}
.wcis-modal__choosetype-item input{
    display: none;
}
.wcis-modal__choosetype-item label{
    border: 1px solid #38a7df;
    text-align: center;
    display: block;
    padding: 8px 0;
    border-radius: 5px;
    font-size: 14px;
    transition: .2s;
}
.wcis-modal__choosetype-item input:checked + label,
.wcis-modal__choosetype-item label.selected{
    background-color: #38a7df;
    color: #fff;
}
.wcis-modal__choosetype-item input:disabled + label,
.wcis-modal__choosetype-item label.selected{
    pointer-events: none;
    opacity: 0.3;
}
@media screen and (min-width: 992px) {
    .wcis-modal__choosetype-item label:hover{
        background-color: #38a7df;
        color: #fff;
    }
}
.wcis-modal__choosetype-item input:disabled + label{
    pointer-events: none;
    opacity: 0.3;
}
.wcis-modal__choosetype.disabled label{
    opacity: 0.3;
    pointer-events: none;
}
.wcis-modal__toForm input[type="submit"] {
    background-color: #38a7df;
    border-radius: 30px;
    padding: 8px 0;
    text-align: center;
    font-weight: bold;
    border: 1px solid #38a7df;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: .2s;
}
@media screen and (min-width: 992px) {
    .wcis-modal__toForm input[type="submit"]:hover{
        background-color: transparent;
    }
}
.wcis-modal__choosetype-item__img{
    padding: 10px 10px 0;
}
.wcis-modal__choosetype-item__img img{
    border-radius: 6px;
}
.wcis-modal__message--text a{
    text-decoration: underline;
    color: #38a7df;
}
.wcis-modal__reception-table{
    overflow-x: scroll;
    margin-bottom: 12px;
    display: block;
}
.wcis-modal__reception-table img{
    width: 350px;
    max-width: 350px;
    display: block;
}

@media screen and (max-width: 480px) {
    .wcis-modal-content{
        height: 100svh;
        max-height: initial;
    }
    .wcis-modal{
        bottom: 0;
        right: 0;
        max-width: 100%;
        border-radius: 0;
    }
}