@charset "UTF-8";

body.app .intro {
    min-height: 552px;
}

body.app .covid_position {
    padding-top: 30px;
}

.main {
    min-height: 100%;
    padding-top: 100px;
}

.content__container {
    position: relative;
    padding: 16px;
}

.content--index {
    display: table;
}

.hidden_txt{
    width: 1px;
    height: 0;
    overflow: hidden;
}

.content--index h2 {
    display: inline-block;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
    background-image: url("/images/icon-plane.svg");
    background-repeat: no-repeat;
    background-position: 165px 0;
    background-size: 60px 30px;
    color: #333;
    line-height: 1.2;
    font-weight: normal;
}

.container--vert {
    display: table-cell;
    text-align: center;
    padding: 0;
    vertical-align: middle;
}

.btn--circle {
    color: #fff !important;
    font-size: 18px;
    width: 130px;
    height: 130px;
    display: inline-block;
    line-height: 130px;
    border-radius: 50%;
    vertical-align: middle;
}

.btn--circle .text1 {
    margin-top: 40px;
    line-height: 25px;
}

.btn--circle:hover {
    color: #fff;
}

.btn--circle:focus {
    outline: none;
}

.circle__left {
    margin-right: 11px;
    background-color: #5D8DCA;
}

.circle__left:hover {
    background-color: #3c73b8;
}

.circle__left:focus {
    background-color: #305b91;
    -webkit-box-shadow: 0 0 0 4px rgba(93, 141, 202, 0.25);
    box-shadow: 0 0 0 4px rgba(93, 141, 202, 0.25);
}

.circle__right {
    position: relative;
    background-color: #e27f72;
}

.circle__right:hover {
    background-color: #d95948;
}

.circle__right:focus {
    background-color: #c53b29;
    -webkit-box-shadow: 0 0 0 4px rgba(226, 127, 114, 0.25);
    box-shadow: 0 0 0 4px rgba(226, 127, 114, 0.25);
}

/* covid travel */
.label_covid {
    display: inline-block;
    position: absolute;
    bottom: -81px;
    left: 4px;
    width: 120px;
    padding: 13px 0;
    border-radius: 5px;
    border: 1px solid #b5c9e3;
    line-height: 1.5;
    font-size: 14px;
    color: #2761ad;
    animation-duration: 2.2s;
    animation-name: flash;
    animation-fill-mode: forwards;
}

.label_covid::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 9px;
    background: #fff url("/images/travel/arrow_triangle.png") no-repeat center/12px auto;
}

.label_covid .underline {
    z-index: 1;
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.label_covid .underline::before {
    z-index: -1;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ebf3ff;
    opacity: 1;
}

.scroll_wraper {
    margin: 12px auto;
    font-size: 15px;
    width: 272px;
    height: 125px;
    overflow: hidden;
    position: relative;
    left: -65px;
    color: #333;
}

.scroll_wraper div {
    height: 24px;
    width: 272px;
    position: absolute;
    left: -6px;
    text-align: center;
}

.ref_interpark {
    position: absolute;
    top: 28px;
    left: 16px
}

@media (max-width: 599px) {
    .wrapper {
        min-height: 100vh;
    }

    .content--index {
        width: 100%;
    }

    body.mobile {
        display: flex;
        flex-direction: column;
    }

    body.mobile .main {
        min-height: auto;
        padding-top: 0
    }

    body.mobile .intro {
        min-height: 616px;
    }

    body.mobile .container--vert {
        padding: 0;
    }

    body.mobile .content--index {
        min-height: 86vh;
    }

    body.mobile .content--index h2 {
        margin-top: 0;
    }
}

@media (min-width: 600px) {
    .wrapper {
        position: relative;
        min-height: 800px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    body.desktop {
        /* background: #f8f8f8 url('/images/dev-travel/travel_intro_bg@2x.png') no-repeat center bottom 167px / 1900px auto; */
        background-color: #f8f8f8;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center top;
        background-size: 2560px auto;
        /*background-image: url('/images/dev-travel/travel_intro_bg@2x.png');*/
    }

    body.desktop .main {
        min-height: calc(100vh - 127px);
    }

    .content {
        margin-left: auto;
        margin-right: auto;
        height: 700px;
        min-height: 700px;
        width: 480px;
        background-color: #fff;
        border-radius: 8px;
        -webkit-box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
    }
}

@keyframes flash {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}