
/* General Bootstrap */

html {
    font-family: 'Open Sans';
    font-size: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
}

    html.lock {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

body {
    position: relative;
    min-height: 100vh;
    font-size: 0;
    background-color: white;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none !important;
    -webkit-font-smoothing: antialiased;
}

    *:focus {
        outline: none !important;
    }

a {
    text-decoration: none;
}

b,
strong {
    font-weight: 700;
}

.vcenter {
    font-size: 0;
}

    .vcenter > * {
        display: inline-block;
        vertical-align: middle;
    }

    .vcenter:before {
        content: '';
        display: inline-block;
        height: 100%;
        width: 0;
        vertical-align: middle;
    }

.font * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}


/* Loading */

.loading {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,.75);
    display: none;
}

.load {
    width: 150px;
    height: 150px;
    animation: loading 3s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    margin-top: -75px;
}

    .load .loading-inner {
        stroke-dashoffset: 0;
        stroke-dasharray: 300;
        stroke-width: 10;
        stroke-miterlimit: 10;
        stroke-linecap: round;
        animation: loading-circle 2s linear infinite;
        stroke: #000;
        fill: transparent;
    }

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading-circle {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -600;
    }
}

.lightbox {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 9999;
    text-align: center;
    overflow: auto;
}

    .lightbox.hide {
        display: none;
    }

    .lightbox .content {
        max-width: 100%;
        width: 3.62rem;
        padding: .25rem;
        height: auto;
        display: inline-block;
    }

        .lightbox .content.wide {
            width: 7.24rem;
        }

        .lightbox .content .box {
            width: 100%;
            padding-bottom: .13rem;
            border-width: 1px;
            border-style: solid;
            border-radius: .04rem;
        }

            .lightbox .content .box .title {
                position: relative;
                width: 100%;
                padding: .11rem .3rem .11rem .12rem;
                font-size: .14rem;
                font-weight: 600;
                border-bottom-width: 1px;
                border-bottom-style: solid;
                text-align: left;
            }

                .lightbox .content .box .title img.close {
                    position: absolute;
                    width: .28rem;
                    padding: .1rem;
                    right: .1rem;
                    top: 50%;
                    margin-top: -.14rem;
                    cursor: pointer;
                }

            .lightbox .content .box .text {
                width: 100%;
                padding: .2rem .3rem .15rem .12rem;
                font-size: .12rem;
                text-align: left;
            }

section {
    padding-top: .1rem;
    padding-bottom: .1rem;
}

.container {
    position: relative;
    display: block;
    max-width: 100%;
    width: 10.2rem;
    padding-left: .5rem;
    padding-right: .5rem;
    margin-left: auto;
    margin-right: auto;
}


/* Form */

.form {
    border-radius: .04rem;
    overflow: hidden;
}

    .form .title {
        padding: 0.09rem;
        font-size: .16rem;
        text-align: center;
        font-weight: 600;
    }

    .form form {
        padding: .14rem .4rem .24rem .4rem;
    }

    .form .form-item {
        position: relative;
        width: 100%;
        margin-top: .2rem;
    }

    .form [data-section] {
        margin-top: .2rem;
    }

    .form .form-item.half {
        width: calc((100% - .2rem) / 2);
        display: inline-block;
        vertical-align: top;
    }

        .form .form-item.half + .form-item.half {
            margin-left: .2rem;
        }

    .form .form-item:first-child {
        margin-top: 0;
    }

    .form .form-item.half:nth-child(2) {
        margin-top: 0;
    }

    .form.multiple-column .form-item {
        width: calc((100% - .2rem) / 2);
        margin-left: .2rem;
        display: inline-block;
        vertical-align: top;
    }

        .form.multiple-column .form-item:nth-child(2n + 1) {
            margin-left: 0;
        }

        .form.multiple-column .form-item:nth-child(1),
        .form.multiple-column .form-item:nth-child(2) {
            margin-top: 0;
        }

        .form.multiple-column .form-item.full-width {
            width: 100%;
            margin-left: 0;
        }

            .form.multiple-column .form-item.full-width + .form-item {
                margin-top: 0;
            }

    .form .form-item label {
        width: 100%;
        margin-bottom: .05rem;
        font-size: .14rem;
        font-weight: 700;
        display: inline-block;
    }

    .form .form-item .link {
        width: 100%;
        margin-bottom: .05rem;
        font-size: .12rem;
        font-weight: 500;
        display: inline-block;
        text-decoration: underline;
    }

.form-item-forget-password {
    margin-left: 0px !important;
    margin-right: .2rem;
}

.form .form-item label svg {
    width: auto;
    width: .12rem;
    height: .11rem;
    margin-right: .05rem;
    margin-top: -.02rem;
    vertical-align: middle;
}

.form .form-item input {
    width: 100%;
    height: .4rem;
    padding-left: .15rem;
    font-size: .12rem;
    color: #000;
    outline: none;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
    background-color: #FFF;
}

.form .form-item textarea {
    width: 100%;
    height: 1.4rem;
    padding: .15rem;
    font-size: .12rem;
    color: #000;
    outline: none;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
    background-color: #FFF;
    resize: none;
}

.form .form-item.form-item-with-input-button input {
    padding-right: 1.8rem;
}

.form .form-item select {
    width: 100%;
    height: .4rem;
    font-size: .12rem;
    color: #000;
    border-radius: .04rem;
    background-color: #FFF;
}

.select2-container .select2-selection--single {
    height: .4rem;
    border-radius: .04rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: .38rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: .14rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: .15rem;
    padding-right: .25rem;
    font-size: .14rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: .38rem;
    width: .2rem;
}

.select2-results__option {
    font-size: .12rem;
    padding: .06rem .15rem;
}

.form .form-item.form-item-nationality .select2-container {
    position: absolute;
    width: .56rem !important;
    left: 0;
    bottom: 0;
    display: none;
}

    .form .form-item.form-item-nationality .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: .12rem;
        padding-right: .2rem;
    }

.form .form-item.form-item-nationality.other-nationalities .select2-container {
    display: block;
}

.form .form-item.form-item-nationality.other-nationalities input {
    padding-left: .71rem;
}

.form .form-item [type="checkbox"]:not(:checked),
.form .form-item [type="checkbox"]:checked,
.form .form-item [type="radio"]:not(:checked),
.form .form-item [type="radio"]:checked {
    position: absolute;
    left: -9999px;
}

    .form .form-item [type="checkbox"]:not(:checked) + label,
    .form .form-item [type="checkbox"]:checked + label,
    .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label,
    .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label,
    .form .form-item [type="radio"]:not(:checked) + label,
    .form .form-item [type="radio"]:checked + label,
    .form .form-item [type="radio"]:not(:checked) + input[type="hidden"] + label,
    .form .form-item [type="radio"]:checked + input[type="hidden"] + label {
        content: '';
        position: relative;
        width: auto;
        margin: 0;
        padding-left: .26rem;
        font-size: .14rem;
        font-weight: normal;
        line-height: 1.36em;
        display: block;
    }

        .form .form-item [type="checkbox"]:not(:checked) + label.small,
        .form .form-item [type="checkbox"]:checked + label.small,
        .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label.small,
        .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label.small,
        .form .form-item [type="radio"]:not(:checked) + label.small,
        .form .form-item [type="radio"]:checked + label.small,
        .form .form-item [type="radio"]:not(:checked) + input[type="hidden"] + label.small,
        .form .form-item [type="radio"]:checked + input[type="hidden"] + label.small {
            font-size: .12rem;
            line-height: 1.66em;
        }

        .form .form-item [type="checkbox"]:not(:checked) + label:before,
        .form .form-item [type="checkbox"]:checked + label:before,
        .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label:before,
        .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label:before,
        .form .form-item [type="radio"]:not(:checked) + label:before,
        .form .form-item [type="radio"]:checked + label:before,
        .form .form-item [type="radio"]:not(:checked) + input[type="hidden"] + label:before,
        .form .form-item [type="radio"]:checked + input[type="hidden"] + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: .2rem;
            height: .2rem;
            border-width: 1px;
            border-style: solid;
            border-radius: 50%;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            cursor: pointer;
        }

        .form .form-item [type="checkbox"]:not(:checked) + label:before,
        .form .form-item [type="checkbox"]:checked + label:before,
        .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label:before,
        .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label:before {
            border-radius: .04rem;
        }

        .form .form-item [type="checkbox"]:not(:checked) + label:after,
        .form .form-item [type="checkbox"]:checked + label:after,
        .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label:after,
        .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label:after,
        .form .form-item [type="radio"]:not(:checked) + label:after,
        .form .form-item [type="radio"]:checked + label:after,
        .form .form-item [type="radio"]:not(:checked) + input[type="hidden"] + label:after,
        .form .form-item [type="radio"]:checked + input[type="hidden"] + label:after {
            content: '';
            position: absolute;
            display: block;
            width: .1rem;
            height: .1rem;
            left: .05rem;
            top: .05rem;
            border-radius: 50%;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            cursor: pointer;
        }

        .form .form-item [type="checkbox"]:not(:checked) + label:after,
        .form .form-item [type="checkbox"]:checked + label:after,
        .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label:after,
        .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label:after {
            border-radius: .02rem;
        }

        .form .form-item [type="checkbox"]:not(:checked) + label:after,
        .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label:after,
        .form .form-item [type="radio"]:not(:checked) + label:after,
        .form .form-item [type="radio"]:not(:checked) + input[type="hidden"] + label:after {
            transform: scale(0);
            -webkit-transform: scale(0);
            -ms-transform: scale(0);
            -moz-transform: scale(0);
            -o-transform: scale(0);
        }

        .form .form-item [type="checkbox"]:checked + label:after,
        .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label:after,
        .form .form-item [type="radio"]:checked + label:after,
        .form .form-item [type="radio"]:checked + input[type="hidden"] + label:after {
            transform: scale(1);
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
        }

.form .form-item .label-item[type="checkbox"]:not(:checked) + label,
.form .form-item .label-item[type="checkbox"]:checked + label,
.form .form-item .label-item[type="checkbox"]:not(:checked) + input[type="hidden"] + label,
.form .form-item .label-item[type="checkbox"]:checked + input[type="hidden"] + label,
.form .form-item .label-item[type="radio"]:not(:checked) + label,
.form .form-item .label-item[type="radio"]:checked + label,
.form .form-item .label-item[type="radio"]:not(:checked) + input[type="hidden"] + label,
.form .form-item .label-item[type="radio"]:checked + input[type="hidden"] + label {
    content: '';
    position: absolute;
    font-size: .1rem;
    line-height: 2em;
    right: 0;
    top: 0;
}

.form .button-container {
    margin-top: .15rem;
    text-align: center;
}

.form .form-item.form-item-with-input-button .input-button {
    position: absolute;
    right: 0;
    bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/* Button */

.button {
    width: auto;
    max-width: 100%;
    padding: 0 .2rem;
    height: .4rem;
    text-align: center;
    border-radius: .04rem;
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
}

    .button.full-width {
        width: 100%;
    }

    .button.small {
        padding: 0 .1rem;
        width: .8rem;
    }

    .button.middle {
        padding: 0 .1rem;
        width: 1.1rem;
    }

    .button.big {
        padding: 0 .1rem;
        width: 1.6rem;
    }

    .button.huge {
        padding: 0 .1rem;
        width: 2rem;
    }

    .button span {
        font-size: .16rem;
        font-weight: 700;
    }

    .button.small-font span {
        font-size: .12rem;
        font-weight: 600;
    }

    .button span svg {
        width: .18rem;
        height: .18rem;
        margin-left: .08rem;
        margin-top: -.02rem;
        vertical-align: middle;
    }


/* Header */

.header {
    position: relative;
    background-color: #FFF;
    margin-bottom: .1rem;
    z-index: 2;
}

    .header .container {
        width: 12rem;
    }

    .header .logo {
        position: absolute;
        width: 2.26rem;
        height: .57rem;
        top: 50%;
        left: .5rem;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

        .header .logo img {
            position: relative;
            max-width: 100%;
            max-height: 100%;
        }

    .header .menu {
        text-align: right;
    }

        .header .menu .info .icons {
            display: inline-block;
            vertical-align: middle;
        }

            .header .menu .info .icons .languages {
                position: relative;
                margin-right: .26rem;
                display: inline-block;
                vertical-align: middle;
            }

                .header .menu .info .icons .languages .current-language {
                    padding: .1rem 0;
                    font-size: .12rem;
                    font-weight: 600;
                    cursor: pointer;
                }

                    .header .menu .info .icons .languages .current-language svg {
                        width: .2rem;
                        height: .2rem;
                        margin-right: .04rem;
                        vertical-align: middle;
                    }

                .header .menu .info .icons .languages .items {
                    position: absolute;
                    width: auto;
                    padding: .1rem .3rem;
                    text-align: center;
                    border-width: 1px;
                    border-style: solid;
                    top: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    -webkit-transform: translateX(-50%);
                    -moz-transform: translateX(-50%);
                    -ms-transform: translateX(-50%);
                    -o-transform: translateX(-50%);
                    border-radius: .04rem;
                    display: none;
                }

                .header .menu .info .icons .languages:hover .items {
                    display: block;
                }

            .header .menu .info .icons > .languages .items .item {
                font-size: .12rem;
                line-height: 3em;
                font-weight: 600;
            }

                .header .menu .info .icons > .languages .items .item a {
                    color: inherit;
                }

            .header .menu .info .icons > span {
                font-size: .12rem;
                font-weight: 600;
                margin-right: .26rem;
                vertical-align: middle;
            }

                .header .menu .info .icons > span svg {
                    width: .24rem;
                    height: .24rem;
                    margin-right: .04rem;
                    vertical-align: middle;
                }

        .header .menu .info .title {
            position: relative;
            height: .6rem;
            padding-left: .8rem;
            display: inline-block;
            vertical-align: middle;
        }

            .header .menu .info .title span {
                position: relative;
                font-size: .14rem;
                z-index: 2;
            }

                .header .menu .info .title span b {
                    font-size: .18rem;
                    padding-left: .4rem;
                }

            .header .menu .info .title:after {
                content: '';
                position: absolute;
                width: calc((100%  + .17rem) + ((100vw - 11rem) / 2));
                height: 100%;
                left: 0;
                top: 0;
                border-top-left-radius: .1rem;
                transform: skew(-30deg);
                -webkit-transform: skew(-30deg);
                -moz-transform: skew(-30deg);
                -ms-transform: skew(-30deg);
                -o-transform: skew(-30deg);
            }

        .header .menu .menu-items {
            position: relative;
            height: .4rem;
            display: inline-block;
        }

            .header .menu .menu-items:after {
                content: '';
                position: absolute;
                width: calc((100%  + .115rem) + ((100vw - 11rem) / 2));
                height: 100%;
                left: 0;
                top: 0;
                border-top-left-radius: .1rem;
                transform: skew(-30deg);
                -webkit-transform: skew(-30deg);
                -moz-transform: skew(-30deg);
                -ms-transform: skew(-30deg);
                -o-transform: skew(-30deg);
            }

            .header .menu .menu-items > div {
                height: 100%;
            }

            .header .menu .menu-items .menu-item {
                position: relative;
                height: 100%;
                display: inline-block;
                vertical-align: middle;
                z-index: 1;
            }

                .header .menu .menu-items .menu-item:first-child {
                    margin-left: .17rem;
                }

                .header .menu .menu-items .menu-item > a {
                    height: 100%;
                    padding-left: .1rem;
                    padding-right: .1rem;
                }

                    .header .menu .menu-items .menu-item > a span {
                        font-size: .12rem;
                        font-weight: 700;
                    }

                        .header .menu .menu-items .menu-item > a span svg {
                            width: .06rem;
                            height: .04rem;
                            margin-left: .04rem;
                            vertical-align: middle;
                        }

                .header .menu .menu-items .menu-item .sub-items {
                    display: none;
                }


    /* Header Secondary */

    .header.secondary {
        padding-top: .24rem;
        padding-bottom: .24rem;
    }

        .header.secondary:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            opacity: .5;
            z-index: 1;
        }

        .header.secondary > * {
            position: relative;
            z-index: 2;
        }

        .header.secondary .logo {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            top: auto;
            left: auto;
            transform: none;
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
        }

        .header.secondary .menu {
            display: inline-block;
            vertical-align: middle;
            width: calc(100% - 2.26rem);
        }

            .header.secondary .menu .menu-items:after {
                display: none;
            }

            .header.secondary .menu .menu-items .menu-item > a {
                padding-left: .16rem;
                padding-right: .16rem;
            }

                .header.secondary .menu .menu-items .menu-item > a span {
                    font-size: .16rem;
                }


/* Banner With Search */

section.banner-with-search .container {
    width: 12rem;
}

section.banner-with-search .search {
    width: 3.5rem;
    display: inline-block;
    vertical-align: top;
}

    section.banner-with-search .search .form form {
        padding: .34rem .3rem .4rem .3rem;
    }

    section.banner-with-search .search .form .form-item {
        margin-top: .1rem;
    }

        section.banner-with-search .search .form .form-item:first-child {
            margin-top: 0;
        }

        section.banner-with-search .search .form .form-item label {
            font-size: .12rem;
        }

            section.banner-with-search .search .form .form-item label .swap-icon {
                position: absolute;
                right: 0;
                margin-top: .04rem;
                cursor: pointer;
            }

    section.banner-with-search .search .select2-container--default .select2-selection--single .select2-selection__placeholder {
        font-size: .12rem;
    }

    section.banner-with-search .search .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: .12rem;
    }

section.banner-with-search .banner {
    width: calc(100% - 3.75rem);
    margin-left: .25rem;
    border-radius: .04rem;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

section.banner-with-search .owl-carousel .item {
    position: relative;
    width: 100%;
    height: 3.35rem;
}

    section.banner-with-search .owl-carousel .item img {
        position: absolute;
    }

section.banner-with-search .owl-dots {
    position: absolute;
    width: 100%;
    bottom: .2rem;
    left: 0;
    text-align: center;
}

    section.banner-with-search .owl-dots .owl-dot {
        width: .12rem;
        height: .12rem;
        margin-left: .025rem;
        margin-right: .025rem;
        border-radius: 50%;
        background-color: #c6c6c6;
        display: inline-block;
        vertical-align: middle;
    }

        section.banner-with-search .owl-dots .owl-dot.active {
            background-color: #FFF;
        }


/* Banner With Search Secondary */

section.banner-with-search-secondary {
    position: relative;
}

    section.banner-with-search-secondary .container {
        height: 100%;
    }

    section.banner-with-search-secondary .search {
        position: sticky;
        top: 0;
        z-index: 2;
    }

    section.banner-with-search-secondary .form {
        position: relative;
        z-index: 100;
    }

        section.banner-with-search-secondary .form:before {
            content: '';
            opacity: .7;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            border-radius: inherit;
        }

        section.banner-with-search-secondary .form .form-item {
            display: inline-block;
            vertical-align: top;
            width: calc(25% - .18rem);
            margin-top: 0;
        }

            section.banner-with-search-secondary .form .form-item label {
                font-size: .16rem;
            }

        section.banner-with-search-secondary .form .button-container {
            display: inline-block;
            vertical-align: top;
            width: calc(25% - .18rem);
            margin-top: .27rem;
        }

            section.banner-with-search-secondary .form .button-container .button {
                padding: 0 .1rem;
            }

        section.banner-with-search-secondary .form form {
            position: relative;
            padding: .2rem .48rem .24rem .48rem;
            z-index: 2;
        }

            section.banner-with-search-secondary .form form > * + * {
                margin-left: .24rem;
            }

    section.banner-with-search-secondary .banner {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 1;
    }

        section.banner-with-search-secondary .banner .owl-carousel,
        section.banner-with-search-secondary .banner .owl-stage-outer,
        section.banner-with-search-secondary .banner .owl-stage,
        section.banner-with-search-secondary .banner .owl-item {
            height: 100%;
        }

        section.banner-with-search-secondary .banner .item {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

            section.banner-with-search-secondary .banner .item .content {
                position: absolute;
                width: 50%;
                left: 50%;
                bottom: 2.4rem;
                font-weight: 300;
                font-size: .56rem;
                line-height: 1.34em;
                color: white;
                transform: translateY(50%);
                -webkit-transform: translateY(50%);
                -ms-transform: translateY(50%);
                -moz-transform: translateY(50%);
                -o-transform: translateY(50%);
            }

        section.banner-with-search-secondary .banner .owl-nav {
            position: absolute;
            width: 100%;
            height: 0;
            left: 0;
            top: 50%;
        }

            section.banner-with-search-secondary .banner .owl-nav .owl-prev {
                position: absolute;
                width: .46rem;
                height: .46rem;
                left: .56rem;
                margin-top: -.23rem;
                border-radius: .23rem;
                background-color: rgba(255, 255, 255, .4);
                background-image: url(icons/arrow-left.svg);
                background-size: .1rem;
                background-position: center;
                background-repeat: no-repeat;
            }

            section.banner-with-search-secondary .banner .owl-nav .owl-next {
                position: absolute;
                width: .46rem;
                height: .46rem;
                right: .56rem;
                margin-top: -.23rem;
                border-radius: .23rem;
                background-color: rgba(255, 255, 255, .4);
                background-image: url(icons/arrow-right.svg);
                background-size: .1rem;
                background-position: center;
                background-repeat: no-repeat;
            }


/* Boxes */

section.boxes {
    text-align: center;
}

    section.boxes .container {
        width: 12rem;
    }

    section.boxes .box {
        position: relative;
        height: 0;
        padding-top: calc((100% - .6rem) / 4);
        margin-left: .2rem;
        border-width: .05rem;
        border-style: solid;
        border-radius: .05rem;
        overflow: hidden;
        display: inline-block;
        vertical-align: middle;
    }

        section.boxes .box.box4 {
            width: calc((100% - .6rem) / 4);
        }

            section.boxes .box.box4:nth-child(4n + 1) {
                margin-left: 0;
            }

            section.boxes .box.box4:nth-child(n + 5) {
                margin-top: .2rem;
            }

        section.boxes .box.box2 {
            width: calc((100% - .2rem) / 2);
        }

            section.boxes .box.box2:nth-child(2n + 1) {
                margin-left: 0;
            }

            section.boxes .box.box2:nth-child(n + 3) {
                margin-top: .2rem;
            }

        section.boxes .box.box3 {
            width: calc((100% - .4rem) / 3);
        }

            section.boxes .box.box3:nth-child(3n + 1) {
                margin-left: 0;
            }

            section.boxes .box.box3:nth-child(n + 4) {
                margin-top: .2rem;
            }

        section.boxes .box:before {
            content: '';
            position: absolute;
            width: 80%;
            height: .25rem;
            left: -0.0721rem;
            top: 0;
            border-bottom-right-radius: .1rem;
            transform: skew(-30deg);
            -webkit-transform: skew(-30deg);
            -moz-transform: skew(-30deg);
            -ms-transform: skew(-30deg);
            -o-transform: skew(-30deg);
            z-index: 2;
        }

        section.boxes .box:after {
            content: '';
            position: absolute;
            width: 60%;
            height: .15rem;
            left: -.0433rem;
            top: .25rem;
            border-bottom-right-radius: .1rem;
            transform: skew(-30deg);
            -webkit-transform: skew(-30deg);
            -moz-transform: skew(-30deg);
            -ms-transform: skew(-30deg);
            -o-transform: skew(-30deg);
            z-index: 2;
        }

        section.boxes .box > img {
            position: absolute;
        }

        section.boxes .box .text {
            position: absolute;
            width: 100%;
            padding: .1rem;
            font-size: .2rem;
            font-weight: 700;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
        }


/* Full Image */

section.full-image .container {
    width: 12rem;
}

section.full-image img {
    width: 100%;
    height: auto;
}


/* List Search */

section.list-search .form form {
    padding: 0;
}

section.list-search .form .form-item {
    width: 25%;
    margin-top: 0;
    padding: .1rem;
    border-width: 1px;
    border-style: solid;
    display: inline-block;
    vertical-align: middle;
}

    section.list-search .form .form-item + .form-item {
        border-left: none;
    }

    section.list-search .form .form-item label {
        position: relative;
        margin-bottom: 0;
    }

        section.list-search .form .form-item label svg {
            position: absolute;
            top: calc(100% + .06rem);
        }

    section.list-search .form .form-item input {
        height: .2rem;
        background-color: transparent;
        border: none;
    }

    section.list-search .form .form-item select {
        height: .2rem;
    }

section.list-search .select2-container .select2-selection--single {
    height: .2rem;
    border: none;
}

section.list-search .select2-container--default .select2-selection--single {
    background-color: transparent !important;
}

    section.list-search .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: .2rem;
    }

    section.list-search .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: .2rem;
    }

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-logo {
    display: inline-block;
    width: 25%; /* default */
    max-height: 75px;
    margin: 0;
    padding: 0;
}

.partner-logo-2 {
    display: inline-block;
    width: 100%; /* default */
    max-width: 1.3rem;
    max-height: 75px;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

@media (max-width: 900px) and (min-width: 636px) {
    .partner-logo {
        width: 35%;
    }
}

@media (max-width: 635px) {
    .partner-logo {
        width: 45%;
    }
}


section.list-search .form .button-container {
    width: 25%;
    margin-top: 0;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

    section.list-search .form .button-container .button span {
        font-weight: 600;
    }


/* List Search Secondary */

section.list-search-secondary {
    position: relative;
}

    section.list-search-secondary .form {
        position: relative;
        z-index: 100;
    }

        section.list-search-secondary .form:before {
            content: '';
            opacity: .7;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            border-radius: inherit;
        }

        section.list-search-secondary .form .form-item {
            display: inline-block;
            vertical-align: top;
            width: calc(25% - .18rem);
            margin-top: 0;
        }

            section.list-search-secondary .form .form-item label {
                font-size: .16rem;
            }

        section.list-search-secondary .form .button-container {
            display: inline-block;
            vertical-align: top;
            width: calc(25% - .18rem);
            margin-top: .27rem;
        }

            section.list-search-secondary .form .button-container .button {
                padding: 0 .1rem;
            }

        section.list-search-secondary .form form {
            position: relative;
            padding: .2rem .48rem .24rem .48rem;
            z-index: 2;
        }

            section.list-search-secondary .form form > * + * {
                margin-left: .24rem;
            }


/* List Dates */

section.list-dates .boxes {
    position: relative;
    padding: .04rem;
    background-color: #e1e1e1;
}

    section.list-dates .boxes .box {
        display: inline-block;
        vertical-align: top;
        width: calc(100% / 7 - .08rem);
        margin: .04rem;
        padding: .13rem;
        font-size: .12rem;
        line-height: 1.42em;
        text-align: center;
        border-radius: .03rem;
    }

    section.list-dates .boxes div.box {
        opacity: .5;
        cursor: default;
    }


/* Message */

section.message {
    padding-top: 0.05;
    padding-bottom: 0.05;
}

    section.message .message {
        padding: .06rem .2rem .09rem .2rem;
        font-size: .14rem;
        background-color: #fdfbc9;
        border-width: 1px;
        border-style: solid;
        border-radius: .04rem;
    }


/* List Results */

section.list-results .no-results {
    padding: .5rem 0;
    font-size: .14rem;
    font-weight: 600;
    text-align: center;
}

section.list-results .results .row {
    padding-left: .2rem;
    padding-right: .2rem;
}

    section.list-results .results .row > span {
        display: inline-block;
        vertical-align: top;
    }

        section.list-results .results .row > span:nth-child(1) {
            width: 15.43%;
        }

        section.list-results .results .row > span:nth-child(2) {
            width: 15.43%;
        }

        section.list-results .results .row > span:nth-child(3) {
            width: 18.26%;
        }

        section.list-results .results .row > span:nth-child(4) {
            width: 18.26%;
        }

        section.list-results .results .row > span:nth-child(5) {
            width: 16.63%;
        }

        section.list-results .results .row > span:nth-child(6) {
            width: 15.99%;
        }

section.list-results .results .titles span {
    font-size: .16rem;
}

section.list-results .results .item {
    margin-top: .2rem;
    padding-top: .22rem;
    padding-bottom: 0;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

section.list-results .results .titles + .item {
    margin-top: .05rem;
}

section.list-results .results .item > span {
    vertical-align: middle;
}

    section.list-results .results .item > span:nth-child(1) {
        font-size: .2rem;
        font-weight: 600;
    }

    section.list-results .results .item > span:nth-child(2) {
        font-size: .2rem;
        font-weight: 600;
    }

    section.list-results .results .item > span:nth-child(3) {
        font-size: .16rem;
    }

    section.list-results .results .item > span:nth-child(4) img {
        height: .13rem;
        margin-right: .11rem;
        margin-top: .05rem;
        margin-bottom: .05rem;
    }

    section.list-results .results .item > span:nth-child(5) {
        font-size: .2rem;
        font-weight: 700;
    }

    section.list-results .results .item > span:nth-child(6) {
        text-align: right;
    }

        section.list-results .results .item > span:nth-child(6) .button-cancel {
            display: none;
        }

section.list-results .results .item.selected > span:nth-child(6) .button-select {
    display: none;
}

section.list-results .results .item.selected > span:nth-child(6) .button-cancel {
    display: inline-block;
}

section.list-results .results .item .note {
    margin-bottom: .11rem;
    font-size: .12rem;
    color: #0f1f9d;
    display: block;
}

    section.list-results .results .item .note a {
        font-size: inherit;
        color: inherit;
    }

section.list-results .results .item .detail {
    position: relative;
    margin-top: .05rem;
    display: none;
}

    section.list-results .results .item .detail .legend {
        width: 1.5rem;
        padding-left: .12rem;
        display: inline-block;
        vertical-align: middle;
    }

        section.list-results .results .item .detail .legend span {
            margin-top: .13rem;
            font-size: .1rem;
            display: block;
        }

            section.list-results .results .item .detail .legend span:first-child {
                margin-top: 0;
            }

            section.list-results .results .item .detail .legend span:before {
                content: '';
                width: .16rem;
                height: .16rem;
                margin-right: .08rem;
                border-radius: .04rem;
                display: inline-block;
                vertical-align: middle;
            }

            section.list-results .results .item .detail .legend span:nth-child(1):before {
                background-color: #3aaa65;
            }

            section.list-results .results .item .detail .legend span:nth-child(2):before {
                background-color: #ff89b2;
            }

            section.list-results .results .item .detail .legend span:nth-child(3):before {
                background-color: #58bff5;
            }

            section.list-results .results .item .detail .legend span:nth-child(4):before {
                border: 1px solid #c6c6c6;
                background-color: #FFF;
            }

    section.list-results .results .item .detail .bus {
        max-width: calc(100% - 1.5rem);
        display: inline-block;
        vertical-align: middle;
        overflow: auto;
        font-size: 33px;
        text-align: center;
    }

    section.list-results .results .item .detail .cell-selector {
        position: absolute;
        width: 1.2rem;
        height: auto;
        padding: .13rem .16rem;
        border-color: #c6c6c6;
        border-width: 1px;
        border-style: solid;
        border-radius: .04rem;
        background-color: #FFF;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    }

        section.list-results .results .item .detail .cell-selector:before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            top: 100%;
            left: 50%;
            margin-left: -.1rem;
            border-style: solid;
            border-width: .1rem .1rem 0 .1rem;
            border-color: #FFF transparent transparent transparent;
            z-index: 1;
        }

        section.list-results .results .item .detail .cell-selector:after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            top: 100%;
            left: 50%;
            margin-left: -.12rem;
            border-style: solid;
            border-width: .12rem .12rem 0 .12rem;
            border-color: #c6c6c6 transparent transparent transparent;
        }

        section.list-results .results .item .detail .cell-selector .gender {
            width: calc((100% - .08rem) / 2);
            display: inline-block;
            vertical-align: top;
            cursor: pointer;
        }

            section.list-results .results .item .detail .cell-selector .gender.disabled {
                opacity: .3;
                cursor: default;
            }

            section.list-results .results .item .detail .cell-selector .gender + .gender {
                margin-left: .08rem;
            }

            section.list-results .results .item .detail .cell-selector .gender .icon {
                position: relative;
                width: 100%;
                padding-top: 100%;
                height: 0;
                border-radius: .04rem;
            }

                section.list-results .results .item .detail .cell-selector .gender .icon svg {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    left: 0;
                    top: 0px;
                }

            section.list-results .results .item .detail .cell-selector .gender .text {
                width: 100%;
                margin-top: .05rem;
                font-size: .12rem;
                text-align: center;
                color: #000;
            }

    section.list-results .results .item .detail .continue {
        width: calc(100% + .4rem);
        padding: .16rem .2rem;
        margin-top: .2rem;
        margin-left: -.2rem;
        text-align: right;
    }

    section.list-results .results .item .detail .seats {
        max-width: calc(100% - 2.8rem - 1.5rem - 1.1rem);
        font-size: .14rem;
        display: inline-block;
        vertical-align: middle;
    }

        section.list-results .results .item .detail .seats svg {
            width: .27rem;
            height: .27rem;
            margin-left: .07rem;
            vertical-align: middle;
        }

            section.list-results .results .item .detail .seats svg.male {
                stroke: #aac;
                fill: #c7e2fb;
            }

            section.list-results .results .item .detail .seats svg.female {
                stroke: #caa;
                fill: #ead8de;
            }

            section.list-results .results .item .detail .seats svg text {
                font-size: .18rem;
            }

    section.list-results .results .item .detail .price {
        margin-right: 1.5rem;
        width: 2.8rem;
        font-size: .14rem;
        display: inline-block;
        vertical-align: middle;
    }

        section.list-results .results .item .detail .price span {
            font-size: .16rem;
            font-weight: 700;
        }


/* List Result Secondary */

section.list-results.secondary .results .row.titles {
    position: relative;
    padding-top: .1rem;
    padding-bottom: .1rem;
}

    section.list-results.secondary .results .row.titles:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: .1;
        z-index: 1;
    }

    section.list-results.secondary .results .row.titles span {
        position: relative;
        font-weight: 600;
        z-index: 2;
    }

section.list-results.secondary .results .item {
    margin-top: .24rem;
    padding: .27rem .24rem;
}

    section.list-results.secondary .results .item.selected {
        padding-bottom: 0;
    }

section.list-results.secondary .results .titles + .item {
    margin-top: .16rem;
}

section.list-results.secondary .results .row > span {
    text-align: center;
}

    section.list-results.secondary .results .row > span:nth-child(1) {
        width: 17.43%;
        text-align: left;
    }

    section.list-results.secondary .results .row > span:nth-child(2) {
        width: 10.43%;
    }

    section.list-results.secondary .results .row > span:nth-child(3) {
        width: 17.43%;
        text-align: right;
    }

    section.list-results.secondary .results .row > span:nth-child(4) {
        width: 22.09%;
        padding-left: 5%;
    }

section.list-results.secondary .results .item > span {
    position: relative;
    vertical-align: top;
}

    section.list-results.secondary .results .item > span:nth-child(1) {
        font-weight: 900;
        font-size: .23rem;
        z-index: 2;
    }

    section.list-results.secondary .results .item > span:nth-child(2) {
        font-weight: 300;
        font-size: .23rem;
        z-index: 1;
    }

        section.list-results.secondary .results .item > span:nth-child(2):before {
            content: '';
            position: absolute;
            width: calc(100% + 1rem);
            height: 1px;
            left: 50%;
            top: 50%;
            margin-left: calc(-50% - .5rem);
            background-color: #e1e1e1;
        }

    section.list-results.secondary .results .item > span:nth-child(3) {
        font-weight: 900;
        font-size: .23rem;
        z-index: 2;
    }

    section.list-results.secondary .results .item > span:nth-child(4) {
        font-weight: 500;
        font-size: .23rem;
    }

    section.list-results.secondary .results .item > span:nth-child(5) {
        font-weight: 900;
        font-size: .23rem;
    }

    section.list-results.secondary .results .item > span .route-name {
        font-weight: 300;
        font-size: .2rem;
    }

    section.list-results.secondary .results .item > span i {
        position: relative;
        display: inline-block;
        font-style: normal;
        z-index: 2;
    }

    section.list-results.secondary .results .item > span sub {
        vertical-align: baseline;
        font-size: .15rem;
    }

    section.list-results.secondary .results .item > span:nth-child(2) i {
        padding-left: .04rem;
        padding-right: .04rem;
    }

    section.list-results.secondary .results .item > span:nth-child(3) i {
        opacity: .6;
    }

section.list-results .results .item .detail {
    margin-top: .24rem;
}

section.list-results.secondary .results .item .note {
    margin-top: .1rem;
    margin-bottom: 0;
}


/* Small Message */

section.small-message .message {
    padding: .08rem .1rem .08rem .1rem;
    font-size: .12rem;
    background-color: #fdfbc9;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

    section.small-message .message:before {
        content: 'i';
        width: .123rem;
        height: .123rem;
        margin-top: -.03rem;
        margin-right: .01rem;
        font-size: .08rem;
        font-weight: 700;
        text-align: center;
        border-width: 1px;
        border-style: solid;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
    }


/* Footer */

.footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-top: .28rem;
}

    .footer .container {
        width: 12rem;
    }

    .footer .left {
        width: 3rem;
        margin-top: .03rem;
        display: inline-block;
        vertical-align: bottom;
    }

        .footer .left .social .text {
            font-size: .14rem;
            font-weight: 600;
            display: inline-block;
            vertical-align: middle;
        }

        .footer .left .social .icons {
            display: inline-block;
            vertical-align: middle;
        }

            .footer .left .social .icons a {
                margin-left: .18rem;
            }

                .footer .left .social .icons a svg {
                    width: .3rem;
                    height: .3rem;
                }

        .footer .left .logo {
            position: relative;
            width: 100%;
            height: .82rem;
            margin-top: .2rem;
        }

            .footer .left .logo:after {
                content: '';
                position: absolute;
                width: calc((100%  + .23515rem) + ((100vw - 11rem) / 2));
                height: 100%;
                right: 0;
                top: 0;
                border-top-right-radius: .2rem;
                transform: skew(30deg);
                -webkit-transform: skew(30deg);
                -moz-transform: skew(30deg);
                -ms-transform: skew(30deg);
                -o-transform: skew(30deg);
                background-color: #FFF;
            }

            .footer .left .logo img {
                position: relative;
                max-width: 2.26rem;
                max-height: .57rem;
                z-index: 2;
            }

    .footer .right {
        width: calc(100% - 3rem);
        padding-left: .75rem;
        margin-bottom: .48rem;
        text-align: right;
        display: inline-block;
        vertical-align: bottom;
    }

        .footer .right .column {
            width: 25%;
            text-align: left;
            display: inline-block;
            vertical-align: top;
        }

            .footer .right .column .title {
                margin-bottom: .12rem;
                font-size: .14rem;
                font-weight: 700;
            }

            .footer .right .column a {
                margin-top: .08rem;
                font-size: .14rem;
                display: block;
            }

        .footer .right * + .payment-logos {
            margin-top: .24rem;
        }

        .footer .right .payment-logos img {
            display: inline-block;
            vertical-align: middle;
            height: .25rem;
            background-color: white;
            border-radius: .05rem;
        }

            .footer .right .payment-logos img + img {
                margin-left: .12rem;
            }


/* Static Text */

section.static-text .text {
    padding: .2rem .28rem;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

    section.static-text .text > div {
        font-size: .14rem;
        line-height: 1.375em;
    }

        section.static-text .text > div strong,
        section.static-text .text > div b {
            font-weight: 600;
        }


/* Breadcrumb */

section.breadcrumb a,
section.breadcrumb span {
    font-size: .12rem;
}

    section.breadcrumb a:last-child {
        font-weight: 600;
    }


/* Offices */

section.static-list .titles > div {
    width: 33.33%;
    font-size: .16rem;
    display: inline-block;
    vertical-align: top;
}

section.static-list .list {
    margin-top: .04rem;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

    section.static-list .list .list-item > div {
        width: 33.33%;
        padding: .1rem .2rem;
        font-size: .16rem;
        border-width: 1px;
        border-style: solid;
        border-bottom: none;
        border-right: none;
        display: inline-block;
        vertical-align: top;
    }

        section.static-list .list .list-item > div:first-child {
            border-left: none;
        }

    section.static-list .list .list-item:first-child > div {
        border-top: none;
    }

    section.static-list .list .list-item > div img,
    section.static-list .list .list-item > div svg {
        width: .14rem;
        height: .14rem;
        margin-right: .1rem;
    }

section.static-list-double .titles > div {
    width: 50%;
    font-size: .16rem;
    display: inline-block;
    vertical-align: top;
    padding-left: .2rem;
}

section.static-list-double .list {
    margin-top: .04rem;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

    section.static-list-double .list .list-item > div {
        width: 50%;
        padding: .1rem .2rem;
        font-size: .16rem;
        border-width: 1px;
        border-style: solid;
        border-bottom: none;
        border-right: none;
        display: inline-block;
        vertical-align: top;
    }

section.static-list-quadruple .container {
    width: 12rem;
}

    section.static-list-quadruple .container .title {
        font-size: .18rem;
        font-weight: 700;
        margin-bottom: .16rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding-bottom: .1rem;
    }

section.static-list-quadruple .list .list-item {
    display: flex;
}

    section.static-list-quadruple .list .list-item > div {
        width: 25%;
        padding: .1rem .14rem;
        font-size: .14rem;
        border-width: 1px;
        border-style: solid;
        border-bottom: none;
        border-right: none;
        display: inline-block;
        vertical-align: top;
    }

        section.static-list-quadruple .list .list-item > div:first-child {
            border-left: none;
        }

    section.static-list-quadruple .list .list-item:first-child > div {
        border-top: none;
    }

section.static-list-quadruple .titles > div {
    width: 25%;
    font-size: .16rem;
    display: inline-block;
    vertical-align: top;
    padding-left: .14rem;
}

section.static-list-quadruple .list {
    margin-top: .08rem;
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

section.static-list-double .list .list-item > div:first-child {
    border-left: none;
}

section.static-list-double .list .list-item:first-child > div {
    border-top: none;
}

section.static-list-double .list .list-item > div img,
section.static-list-double .list .list-item > div svg {
    width: .14rem;
    height: .14rem;
    margin-right: .1rem;
}


/* Register */

section.register .form .form-item [type="checkbox"]:not(:checked):not(.label-item) + label,
section.register .form .form-item [type="checkbox"]:checked:not(.label-item) + label,
section.register .form .form-item [type="checkbox"]:not(:checked):not(.label-item) + input[type="hidden"] + label,
section.register .form .form-item [type="checkbox"]:checked:not(.label-item) + input[type="hidden"] + label,
section.register .form .form-item [type="radio"]:not(:checked):not(.label-item) + label,
section.register .form .form-item [type="radio"]:checked:not(.label-item) + label,
section.register .form .form-item [type="radio"]:not(:checked):not(.label-item) + input[type="hidden"] + label,
section.register .form .form-item [type="radio"]:checked:not(.label-item) + input[type="hidden"] + label {
    display: inline-block;
    margin-right: .1rem;
    margin-top: .08rem;
}


/* Login */

section.login .form .form-item {
    width: calc((100% - 2rem) / 2);
    margin-top: .1rem;
}

section.login .form .button-container {
    width: auto;
    margin-top: .23rem;
    margin-left: .2rem;
    display: inline-block;
    vertical-align: top;
}


/* Pnr Search */

section.pnr-search .form .form-item {
    width: calc((100% - 2rem) / 2);
}

section.pnr-search .form .button-container {
    width: auto;
    margin-top: .23rem;
    margin-left: .2rem;
    display: inline-block;
    vertical-align: top;
}


/* Eticket */

section.eticket .container.top:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
}

section.eticket .form {
    position: relative;
    z-index: 2;
}

    section.eticket .form .form-item {
        width: calc((100% - 2rem) / 2);
    }

    section.eticket .form .button-container {
        width: calc(33.333% - .2rem);
        margin-top: .27rem;
        margin-left: .3rem;
        display: inline-block;
        vertical-align: top;
    }

        section.eticket .form .button-container .button {
            width: 100%;
        }

    section.eticket .form form {
        padding-left: 0;
        padding-right: 0;
        padding-top: .2rem;
    }

    section.eticket .form .form-item {
        width: calc(33.333% - .2rem);
    }

    section.eticket .form.multiple-column .form-item {
        margin-left: .3rem;
    }

        section.eticket .form.multiple-column .form-item:nth-child(2n + 1) {
            margin-left: 0;
        }

    section.eticket .form .form-item label {
        font-size: .16rem;
    }

section.eticket .info {
    margin-top: .09rem;
}

    section.eticket .info .item {
        display: inline-block;
        vertical-align: top;
        width: calc(33.333% - .2rem);
        font-weight: 400;
        font-size: 14px;
        line-height: 1.36em;
        color: #707070;
    }

        section.eticket .info .item + .item {
            margin-left: .3rem;
        }

section.eticket embed {
    width: 100%;
    height: 6rem;
    margin-top: .5rem;
    margin-bottom: .3rem;
}


/* Order Summary */

section.order-summary .infos {
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
    overflow: hidden;
}

    section.order-summary .infos .info {
        width: 25%;
        padding: .09rem .2rem .15rem .2rem;
        border-left-width: 1px;
        border-left-style: solid;
        display: inline-block;
        vertical-align: top;
    }

        section.order-summary .infos .info:first-child {
            border-left: none;
        }

        section.order-summary .infos .info .title {
            font-size: .12rem;
            font-weight: 600;
        }

        section.order-summary .infos .info .text {
            font-size: .14rem;
        }

            section.order-summary .infos .info .text svg {
                width: .12rem;
                height: .11rem;
                margin-right: .04rem;
            }


/* Payment */

section.payment .form form {
    padding: 0;
}

section.payment .form .column {
    width: calc((100% - .2rem) / 2);
    margin-left: .2rem;
    display: inline-block;
    vertical-align: top;
}

    section.payment .form .column:first-child {
        margin-left: 0;
    }

    section.payment .form .column .column-content {
        padding: .14rem .2rem .2rem .2rem;
    }

section.payment .form .form-item [type="checkbox"]:not(:checked) + label,
section.payment .form .form-item [type="checkbox"]:checked + label,
section.payment .form .form-item [type="checkbox"]:not(:checked) + input[type="hidden"] + label,
section.payment .form .form-item [type="checkbox"]:checked + input[type="hidden"] + label,
section.payment .form .form-item [type="radio"]:not(:checked) + label,
section.payment .form .form-item [type="radio"]:checked + label,
section.payment .form .form-item [type="radio"]:not(:checked) + input[type="hidden"] + label,
section.payment .form .form-item [type="radio"]:checked + input[type="hidden"] + label {
    display: inline-block;
    margin-right: .1rem;
}

section.payment .form .total {
    margin-top: .2rem;
    font-size: .2rem;
    font-weight: 600;
    text-align: center;
}

    section.payment .form .total span {
        font-size: .24rem;
        font-weight: 700;
    }

section.payment .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: .12rem;
}


/* Success */

section.order-success {
    margin-bottom: .3rem;
}

    section.order-success .message {
        font-size: .15rem;
        font-weight: 600;
    }

        section.order-success .message svg {
            width: .22rem;
            height: .22rem;
            margin-right: .06rem;
            vertical-align: middle;
        }


/* Ticket Detail */

section.ticket-detail .info {
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

    section.ticket-detail .info .logo {
        padding: .12rem 0;
        text-align: center;
    }

        section.ticket-detail .info .logo img {
            max-width: 1.6rem;
            max-height: .4rem;
        }

    section.ticket-detail .info .line .item {
        width: 33.33%;
        padding: .1rem .15rem .15rem .18rem;
        display: inline-block;
        vertical-align: middle;
    }

        section.ticket-detail .info .line .item .title {
            font-size: .12rem;
            font-weight: 600;
        }

        section.ticket-detail .info .line .item .text {
            font-size: .14rem;
        }

    section.ticket-detail .info .line:not(.passenger) .item {
        border-width: 1px;
        border-style: solid;
        border-right: none;
    }

        section.ticket-detail .info .line:not(.passenger) .item:first-child {
            border-left: none;
        }

section.ticket-detail .print-container {
    margin-top: .1rem;
    text-align: right;
}

section.ticket-detail .print {
    font-size: .12rem;
    font-weight: 700;
}

    section.ticket-detail .print svg {
        width: .15rem;
        height: .15rem;
        margin-right: .05rem;
        vertical-align: middle;
    }


/* Contact Us */

section.contact-us .column {
    width: calc((100% - .27rem) / 2);
    display: inline-block;
    vertical-align: top;
    border-radius: .04rem;
    overflow: hidden;
}

    section.contact-us .column + .column {
        margin-left: .27rem;
    }

section.contact-us .info .content {
    text-align: center;
}

section.contact-us .info .title {
    padding: .17rem;
    font-size: .22rem;
}

section.contact-us .info .icon {
    width: .95rem;
    padding: .3rem;
    margin-top: .08rem;
    display: inline-block;
}

section.contact-us .info {
    width: 100%;
}

    section.contact-us .info .text {
        padding: .25rem 0;
        font-size: .26rem;
        line-height: 1.92em;
        font-weight: 600;
    }

        section.contact-us .info .text span {
            font-weight: 700;
        }

    section.contact-us .info .bottom {
        padding: .2rem .3rem;
        font-size: .26rem;
        line-height: 1.92em;
        text-align: center;
        border-top-width: 1px;
        border-top-style: solid;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
    }


/* My Tickets */

section.my-tickets .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

section.my-tickets .no-results {
    padding: .12rem .17rem;
    font-size: .14rem;
    font-weight: 600;
    border-radius: .04rem;
    border-width: 1px;
    border-style: solid;
}

section.my-tickets .ticket-detail + .ticket-detail {
    margin-top: .2rem;
}

section.my-tickets .ticket-detail .top {
    padding: .12rem .17rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

    section.my-tickets .ticket-detail .top .logo {
        width: 1.53rem;
        display: inline-block;
        vertical-align: middle;
    }

        section.my-tickets .ticket-detail .top .logo img {
            width: 100%;
        }

    section.my-tickets .ticket-detail .top .buttons {
        width: calc(100% - 1.53rem);
        display: inline-block;
        vertical-align: middle;
        text-align: right;
    }

        section.my-tickets .ticket-detail .top .buttons .button + .button {
            margin-left: .1rem;
        }

section.my-tickets .ticket-detail .info {
    border-width: 1px;
    border-style: solid;
    border-radius: .04rem;
}

    section.my-tickets .ticket-detail .info .line .item {
        width: 33.33%;
        padding: .1rem .15rem .15rem .18rem;
        display: inline-block;
        vertical-align: middle;
    }

    section.my-tickets .ticket-detail .info .line.passenger .item {
        width: 25%;
    }

    section.my-tickets .ticket-detail .info .line .item .title {
        font-size: .12rem;
        font-weight: 600;
    }

    section.my-tickets .ticket-detail .info .line .item .text {
        font-size: .14rem;
    }

    section.my-tickets .ticket-detail .info .line:not(.passenger) .item {
        border-width: 1px;
        border-style: solid;
        border-right: none;
        border-top: none;
    }

        section.my-tickets .ticket-detail .info .line:not(.passenger) .item:first-child {
            border-left: none;
        }

    section.my-tickets .ticket-detail .info .line .actions {
        padding: .18rem;
        padding-top: 0;
        text-align: left;
    }

        section.my-tickets .ticket-detail .info .line .actions form {
            display: inline-block;
            vertical-align: middle;
        }

            section.my-tickets .ticket-detail .info .line .actions form + form {
                margin-left: .18rem;
            }

section.my-tickets .ticket-detail .print-container {
    margin-top: .1rem;
    text-align: right;
}

section.my-tickets .ticket-detail .print {
    font-size: .12rem;
    font-weight: 700;
}

    section.my-tickets .ticket-detail .print svg {
        width: .15rem;
        height: .15rem;
        margin-right: .05rem;
        vertical-align: middle;
    }

.datepicker-panel > ul > li.highlighted {
    background-color: transparent;
}

.datepicker-panel > ul > li.highlighted {
    background-color: #FFF;
}

.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
    background-color: rgb(229, 242, 255);
    color: unset;
}


/* Small Boxes */

section.small-boxes {
    padding-top: .24rem;
    padding-bottom: .24rem;
}

    section.small-boxes .title {
        font-weight: 700;
        font-size: .36rem;
        line-height: 1.36em;
    }

    section.small-boxes .box-container {
        position: relative;
    }

    section.small-boxes * + .box-container {
        margin-top: .24rem;
    }

    section.small-boxes .boxes {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 52%;
        padding: .15rem .1rem;
    }

        section.small-boxes .boxes:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            opacity: .1;
            border-radius: inherit;
        }

        section.small-boxes .boxes .box {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: calc(25% - .24rem);
            padding: .04rem .03rem;
            margin: .2rem .12rem;
            border-radius: 3px;
            border: 1px dashed;
            z-index: 2;
        }

            section.small-boxes .boxes .box .icon {
                padding: .06rem;
                text-align: center;
            }

                section.small-boxes .boxes .box .icon img {
                    max-height: .38rem;
                    max-width: 100%;
                }

            section.small-boxes .boxes .box .text {
                font-size: .12rem;
                line-height: 1.4em;
                text-align: center;
            }

        section.small-boxes .boxes .note {
            position: relative;
            font-size: .12rem;
            line-height: 1.4em;
            margin: -.04rem .12rem 0 .12rem;
            z-index: 2;
        }

            section.small-boxes .boxes .note a {
                font-weight: 700;
                color: inherit;
            }

    section.small-boxes .image {
        position: absolute;
        width: 48%;
        height: 100%;
        left: 52%;
        top: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


/* Quadruple Boxes */

section.quadruple-boxes {
    padding-top: .24rem;
    padding-bottom: .24rem;
}

    section.quadruple-boxes .title {
        font-weight: 700;
        font-size: .36rem;
        line-height: 1.36em;
    }

    section.quadruple-boxes .boxes {
        margin-left: -.15rem;
        margin-right: -.15rem;
    }

    section.quadruple-boxes * + .boxes {
        margin-top: .1rem;
    }

    section.quadruple-boxes .boxes .box {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: calc(25% - .3rem);
        height: 0;
        margin: .15rem;
        padding-top: calc(25% - .3rem);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        section.quadruple-boxes .boxes .box .content {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 0;
            padding: .07rem;
            text-align: center;
        }

            section.quadruple-boxes .boxes .box .content:before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                opacity: .4;
                z-index: 1;
            }

            section.quadruple-boxes .boxes .box .content .text {
                position: relative;
                font-weight: 700;
                font-size: .16rem;
                line-height: 1.4em;
                z-index: 2;
            }

            section.quadruple-boxes .boxes .box .content .btn {
                position: relative;
                display: inline-block;
                padding: .04rem .1rem;
                font-weight: 700;
                font-size: .1rem;
                line-height: 1.4em;
                text-align: center;
                border: 1px solid white;
                z-index: 2;
            }

            section.quadruple-boxes .boxes .box .content * + .btn {
                margin-top: .05rem;
            }


/* Store */

section.store {
    position: relative;
}

    section.store .container {
        width: 13.8rem;
    }

    section.store .image {
        width: 100%;
    }

    section.store .content {
        position: absolute;
        width: 50%;
        top: 50%;
        padding: .9rem;
        margin-top: -.3rem;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

        section.store .content .title {
            font-weight: 600;
            font-size: .54rem;
            line-height: 1.2em;
        }

        section.store .content .text {
            font-size: .2rem;
            line-height: 1.2em;
        }

        section.store .content * + .text {
            margin-top: .1rem;
        }

        section.store .content .link {
            display: inline-block;
            vertical-align: middle;
            margin-top: .25rem;
        }

            section.store .content .link img {
            }

            section.store .content .link + .link {
                margin-left: .1rem;
            }

/* Plate Search */
.plate-search {
    width: calc(100% - 3.75rem);
    margin-left: 0.25rem;
    border-radius: 0.04rem;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

/* NO RESULT */
.no-result {
    display: none;
}

    .no-result .container {
        width: 12rem;
    }

        .no-result .container p {
            font-size: .2rem;
            text-align: center;
            margin: .24rem 0;
        }

/* MAP */
.map {
    transition: all 1s ease;
}

    .map .container {
        width: 12rem;
        height: 100%;
    }

        .map .container .leaflet-popup-content-wrapper .title p {
            font-size: .2rem;
            margin: .1rem 0;
        }

        .map .container .map-container {
            border: .1rem solid #fff;
        }

            .map .container .map-container #map .leaflet-bottom.leaflet-right {
                display: none;
            }

        .map .container .leaflet-popup-content-wrapper .details .detail-item b, span {
            font-size: .14rem;
        }

        .map .container #map {
            height: 5rem;
            font-size: .16rem !important;
            transition: all 1s ease;
        }

.leaflet-popup-content-wrapper {
    width: 100%;
}

/* Popup */

.popup-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 100000;
}

    .popup-wrapper.active {
        display: block;
    }

    .popup-wrapper .btn-close {
        position: absolute;
        width: .4rem;
        height: .4rem;
        top: .2rem;
        right: .2rem;
        text-align: center;
        border-radius: .4rem;
        background-color: black;
        z-index: 20;
    }

        .popup-wrapper .btn-close:before {
            content: '\f00d';
            position: absolute;
            width: 44%;
            height: 2px;
            top: 50%;
            left: 28%;
            margin-top: -1px;
            background-color: white;
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
        }

        .popup-wrapper .btn-close:after {
            content: '\f00d';
            position: absolute;
            width: 44%;
            height: 2px;
            top: 50%;
            left: 28%;
            margin-top: -1px;
            background-color: white;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

    .popup-wrapper .popup-image {
        position: absolute;
        max-width: 80%;
        max-height: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }

.use-point-container {
    margin-top: 10px;
}

.road-date {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .16rem;
    background-color: #0d4d84 !important;
    padding: .16rem !important;
    border: none !important;
}

    .road-date span {
        width: max-content !important;
        color: #fff;
        font-size: .2rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .road-date img {
        filter: invert(1);
    }
