@charset 'UTF-8';

.modal-overlay
{
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    background: rgba(0, 0, 0, .5);
}

.modal-overlay.second
{
    z-index: 11;
}

.modal,
.modal:before,
.modal:after
{
    font-size: 12pt;
}

.modal
{
    position: fixed;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;

    display: none;

    margin: 3pt;
    width: calc(100% - 6pt);
    background-color: transparent;
}

.modal.active
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.modal.second
{
    z-index: 12;
}

.modal-header
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    text-align: center;

    color: #375378;
    background-color: #ffeeb7;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-header .modal-header-text
{
    font-size: 12pt;
    font-weight: 600;

    text-align: center;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.modal-header .close
{
    padding: 12pt;

    color: #375378;
}

.modal-bar
{
    background-color: #fff;
}

.modal-body
{
    overflow-y: auto;

    cursor: pointer;

    background-color: #fff;

    -webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-footer
{
    position: absolute;
    bottom: 0;

    width: 100%;
}

.btn-rounded
{
    border: none;
    border-radius: 3pt;
}

.btn-primary
{
    position: relative;

    display: inline-block;

    width: 100%;

    cursor: pointer;
    -webkit-transition: none;
            transition: none;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.5pt;

    color: #fff;
    border: 1px solid #0087dd;
    border-radius: 3pt;
    outline: none;
    background-color: #007fd0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#008fea), to(#006fb7));
    background-image: linear-gradient(to bottom, #008fea, #006fb7);
    -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 4px #00609d;
            box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 4px #00609d;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-secondary
{
    position: relative;

    display: inline-block;

    width: 100%;

    cursor: pointer;
    -webkit-transition: none;
            transition: none;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.44pt;

    color: #fff;
    border: 1px solid #ffaa0d;
    border-radius: 3pt;
    outline: none;
    background-color: orange;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffae1a), to(#e69500));
    background-image: linear-gradient(to bottom, #ffae1a, #e69500);
    -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 4px #cc8400;
            box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 4px #cc8400;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-caution
{
    position: relative;

    display: inline-block;

    width: 100%;

    cursor: pointer;
    -webkit-transition: none;
            transition: none;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.44pt;

    color: #fff;
    border: 1px solid #ff5040;
    border-radius: 3pt;
    outline: none;
    background-color: #f43;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ff5b4d), to(#ff2d1a));
    background-image: linear-gradient(to bottom, #ff5b4d, #ff2d1a);
    -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 4px #ff1500;
            box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 4px #ff1500;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-md
{
    font-size: 14.4pt;
    font-weight: 600;
    line-height: 28.8pt;
}

.btn-sm
{
    font-size: 9pt;
    font-weight: 600;
    line-height: 18pt;
}

.btn-tertiary
{
    font-weight: 600;

    margin: 0;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    color: #375378;
    border: none;
    border-radius: 3pt;
    outline: none;
    background-color: #fecd51;
    -webkit-box-shadow: 0 6pt 0 0 #ff7a15;
            box-shadow: 0 6pt 0 0 #ff7a15;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-tertiary.waiting
{
    cursor: not-allowed;
    pointer-events: none;

    opacity: .5;
}

.btn-quaternary
{
    font-weight: 600;

    margin: 0;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    color: #666;
    border: none;
    outline: none;
    background-color: #ccc;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-caret-up
{
    font-weight: 600;

    display: block;

    width: 100%;
    margin: 0;
    padding: 0;

    cursor: pointer;
    text-align: center;
    text-decoration: none;

    color: #375378;
    border: none;
    outline: none;
    background-color: #fecd51;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-caret-up.borders
{
    border-right: 1px solid #375378;
    border-bottom: 1px solid #375378;
    border-left: 1px solid #375378;
}

.btn-caret-up.full-borders
{
    border: 1px solid #375378;
}

.btn-caret-down
{
    font-weight: 600;

    display: block;

    width: 100%;
    margin: 0;
    padding: 0;

    cursor: pointer;
    text-align: center;
    text-decoration: none;

    color: #375378;
    border: none;
    border: 1px solid #375378;
    outline: none;
    background-color: #fecd51;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-filter-submit
{
    margin: 0;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    color: #fff;
    border: none;
    border: 1px solid #008fea;
    outline: none;
    background-color: #007fd0;
    -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 1px #00609d;
            box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 1px #00609d;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-filter-cancel
{
    font-weight: 600;

    margin: 0;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    color: #666;
    border: none;
    border: 1px solid #d9d9d9;
    outline: none;
    background-color: #ccc;
    -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 1px #b3b3b3;
            box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .4), 0 1px #b3b3b3;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-flat-secondary
{
    margin: 0;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    color: #fff;
    border: none;
    outline: none;
    background-color: #fd6c00;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.btn-flat-caution
{
    margin: 0;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    color: #fff;
    border: none;
    outline: none;
    background-color: #f43;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

@font-face
{
    font-family: 'ENA';
    font-weight: normal;
    font-style: normal;

    src: url('../font/ENA.eot?uk6rul');
    src: url('../font/ENA.eot?uk6rul#iefix') format('embedded-opentype'), url('../font/ENA.ttf?uk6rul') format('truetype'), url('../font/ENA.woff?uk6rul') format('woff'), url('../font/ENA.svg?uk6rul#ENA') format('svg');
}

[class^='ena-'],
[class*=' ena-']
{
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'ENA' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;

    text-transform: none;

    speak: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ena-adult:before
{
    content: '\e900';
}

.ena-aircraft:before
{
    content: '\e901';
}

.ena-arrow-top:before
{
    content: '\e902';
}

.ena-baby:before
{
    content: '\e903';
}

.ena-bank:before
{
    content: '\e904';
}

.ena-bath:before
{
    content: '\e905';
}

.ena-beginner:before
{
    content: '\e906';
}

.ena-bill:before
{
    content: '\e907';
}

.ena-calendar:before
{
    content: '\e908';
}

.ena-cancel:before
{
    content: '\e909';
}

.ena-car:before
{
    content: '\e90a';
}

.ena-child:before
{
    content: '\e90b';
}

.ena-close:before
{
    content: '\e90c';
}

.ena-coin:before
{
    content: '\e90d';
}

.ena-company:before
{
    content: '\e90e';
}

.ena-confirm:before
{
    content: '\e90f';
}

.ena-convinience:before
{
    content: '\e910';
}

.ena-credit:before
{
    content: '\e911';
}

.ena-crown:before
{
    content: '\e912';
}

.ena-docs:before
{
    content: '\e913';
}

.ena-domestic:before
{
    content: '\e914';
}

.ena-done:before
{
    content: '\e915';
}

.ena-dp:before
{
    content: '\e916';
}

.ena-edit:before
{
    content: '\e917';
}

.ena-entry:before
{
    content: '\e918';
}

.ena-filter:before
{
    content: '\e919';
}

.ena-flow:before
{
    content: '\e91a';
}

.ena-global:before
{
    content: '\e91b';
}

.ena-guidebook:before
{
    content: '\e91c';
}

.ena-heart:before
{
    content: '\e91d';
}

.ena-hotel:before
{
    content: '\e91e';
}

.ena-info:before
{
    content: '\e91f';
}

.ena-landing:before
{
    content: '\e920';
}

.ena-login:before
{
    content: '\e921';
}

.ena-logout:before
{
    content: '\e922';
}

.ena-mail:before
{
    content: '\e923';
}

.ena-menu:before
{
    content: '\e924';
}

.ena-morning:before
{
    content: '\e925';
}

.ena-nomorning .path1:before
{
    content: '\e926';

    color: #010002;
}

.ena-nomorning .path2:before
{
    margin-left: -1em;

    content: '\e927';

    color: #010002;
}

.ena-nomorning .path3:before
{
    margin-left: -1em;

    content: '\e928';

    color: black;
}

.ena-nomorning .path4:before
{
    margin-left: -1em;

    content: '\e929';

    color: black;
}

.ena-nosmoking:before
{
    content: '\e92a';
}

.ena-parking:before
{
    content: '\e92b';
}

.ena-privacy:before
{
    content: '\e92c';
}

.ena-question:before
{
    content: '\e92d';
}

.ena-room:before
{
    content: '\e92e';
}

.ena-search:before
{
    content: '\e92f';
}

.ena-seat:before
{
    content: '\e930';
}

.ena-sort:before
{
    content: '\e931';
}

.ena-star-half:before
{
    content: '\e932';
}

.ena-star:before
{
    content: '\e933';
}

.ena-takeoff:before
{
    content: '\e934';
}

.ena-ticket:before
{
    content: '\e935';
}

.ena-time:before
{
    content: '\e936';
}

.ena-wifi:before
{
    content: '\e937';
}

.m-1r
{
    margin: 12pt !important;
}

.mt-1r
{
    margin-top: 12pt !important;
}

.mb-1r
{
    margin-bottom: 12pt !important;
}

.mr-1r
{
    margin-right: 12pt !important;
}

.ml-1r
{
    margin-left: 12pt !important;
}

.mx-1r
{
    margin-right: 12pt !important;
    margin-left: 12pt !important;
}

.my-1r
{
    margin-top: 12pt !important;
    margin-bottom: 12pt !important;
}

.p-1r
{
    padding: 12pt !important;
}

.pt-1r
{
    padding-top: 12pt !important;
}

.pb-1r
{
    padding-bottom: 12pt !important;
}

.pr-1r
{
    padding-right: 12pt !important;
}

.pl-1r
{
    padding-left: 12pt !important;
}

.px-1r
{
    padding-right: 12pt !important;
    padding-left: 12pt !important;
}

.py-1r
{
    padding-top: 12pt !important;
    padding-bottom: 12pt !important;
}

.m-2r
{
    margin: 24pt !important;
}

.mt-2r
{
    margin-top: 24pt !important;
}

.mb-2r
{
    margin-bottom: 24pt !important;
}

.mr-2r
{
    margin-right: 24pt !important;
}

.ml-2r
{
    margin-left: 24pt !important;
}

.mx-2r
{
    margin-right: 24pt !important;
    margin-left: 24pt !important;
}

.my-2r
{
    margin-top: 24pt !important;
    margin-bottom: 24pt !important;
}

.p-2r
{
    padding: 24pt !important;
}

.pt-2r
{
    padding-top: 24pt !important;
}

.pb-2r
{
    padding-bottom: 24pt !important;
}

.pr-2r
{
    padding-right: 24pt !important;
}

.pl-2r
{
    padding-left: 24pt !important;
}

.px-2r
{
    padding-right: 24pt !important;
    padding-left: 24pt !important;
}

.py-2r
{
    padding-top: 24pt !important;
    padding-bottom: 24pt !important;
}

.m-3r
{
    margin: 36pt !important;
}

.mt-3r
{
    margin-top: 36pt !important;
}

.mb-3r
{
    margin-bottom: 36pt !important;
}

.mr-3r
{
    margin-right: 36pt !important;
}

.ml-3r
{
    margin-left: 36pt !important;
}

.mx-3r
{
    margin-right: 36pt !important;
    margin-left: 36pt !important;
}

.my-3r
{
    margin-top: 36pt !important;
    margin-bottom: 36pt !important;
}

.p-3r
{
    padding: 36pt !important;
}

.pt-3r
{
    padding-top: 36pt !important;
}

.pb-3r
{
    padding-bottom: 36pt !important;
}

.pr-3r
{
    padding-right: 36pt !important;
}

.pl-3r
{
    padding-left: 36pt !important;
}

.px-3r
{
    padding-right: 36pt !important;
    padding-left: 36pt !important;
}

.py-3r
{
    padding-top: 36pt !important;
    padding-bottom: 36pt !important;
}

.m-4r
{
    margin: 48pt !important;
}

.mt-4r
{
    margin-top: 48pt !important;
}

.mb-4r
{
    margin-bottom: 48pt !important;
}

.mr-4r
{
    margin-right: 48pt !important;
}

.ml-4r
{
    margin-left: 48pt !important;
}

.mx-4r
{
    margin-right: 48pt !important;
    margin-left: 48pt !important;
}

.my-4r
{
    margin-top: 48pt !important;
    margin-bottom: 48pt !important;
}

.p-4r
{
    padding: 48pt !important;
}

.pt-4r
{
    padding-top: 48pt !important;
}

.pb-4r
{
    padding-bottom: 48pt !important;
}

.pr-4r
{
    padding-right: 48pt !important;
}

.pl-4r
{
    padding-left: 48pt !important;
}

.px-4r
{
    padding-right: 48pt !important;
    padding-left: 48pt !important;
}

.py-4r
{
    padding-top: 48pt !important;
    padding-bottom: 48pt !important;
}

.m-5r
{
    margin: 60pt !important;
}

.mt-5r
{
    margin-top: 60pt !important;
}

.mb-5r
{
    margin-bottom: 60pt !important;
}

.mr-5r
{
    margin-right: 60pt !important;
}

.ml-5r
{
    margin-left: 60pt !important;
}

.mx-5r
{
    margin-right: 60pt !important;
    margin-left: 60pt !important;
}

.my-5r
{
    margin-top: 60pt !important;
    margin-bottom: 60pt !important;
}

.p-5r
{
    padding: 60pt !important;
}

.pt-5r
{
    padding-top: 60pt !important;
}

.pb-5r
{
    padding-bottom: 60pt !important;
}

.pr-5r
{
    padding-right: 60pt !important;
}

.pl-5r
{
    padding-left: 60pt !important;
}

.px-5r
{
    padding-right: 60pt !important;
    padding-left: 60pt !important;
}

.py-5r
{
    padding-top: 60pt !important;
    padding-bottom: 60pt !important;
}

.m-6r
{
    margin: 72pt !important;
}

.mt-6r
{
    margin-top: 72pt !important;
}

.mb-6r
{
    margin-bottom: 72pt !important;
}

.mr-6r
{
    margin-right: 72pt !important;
}

.ml-6r
{
    margin-left: 72pt !important;
}

.mx-6r
{
    margin-right: 72pt !important;
    margin-left: 72pt !important;
}

.my-6r
{
    margin-top: 72pt !important;
    margin-bottom: 72pt !important;
}

.p-6r
{
    padding: 72pt !important;
}

.pt-6r
{
    padding-top: 72pt !important;
}

.pb-6r
{
    padding-bottom: 72pt !important;
}

.pr-6r
{
    padding-right: 72pt !important;
}

.pl-6r
{
    padding-left: 72pt !important;
}

.px-6r
{
    padding-right: 72pt !important;
    padding-left: 72pt !important;
}

.py-6r
{
    padding-top: 72pt !important;
    padding-bottom: 72pt !important;
}

.m-7r
{
    margin: 84pt !important;
}

.mt-7r
{
    margin-top: 84pt !important;
}

.mb-7r
{
    margin-bottom: 84pt !important;
}

.mr-7r
{
    margin-right: 84pt !important;
}

.ml-7r
{
    margin-left: 84pt !important;
}

.mx-7r
{
    margin-right: 84pt !important;
    margin-left: 84pt !important;
}

.my-7r
{
    margin-top: 84pt !important;
    margin-bottom: 84pt !important;
}

.p-7r
{
    padding: 84pt !important;
}

.pt-7r
{
    padding-top: 84pt !important;
}

.pb-7r
{
    padding-bottom: 84pt !important;
}

.pr-7r
{
    padding-right: 84pt !important;
}

.pl-7r
{
    padding-left: 84pt !important;
}

.px-7r
{
    padding-right: 84pt !important;
    padding-left: 84pt !important;
}

.py-7r
{
    padding-top: 84pt !important;
    padding-bottom: 84pt !important;
}

.m-8r
{
    margin: 96pt !important;
}

.mt-8r
{
    margin-top: 96pt !important;
}

.mb-8r
{
    margin-bottom: 96pt !important;
}

.mr-8r
{
    margin-right: 96pt !important;
}

.ml-8r
{
    margin-left: 96pt !important;
}

.mx-8r
{
    margin-right: 96pt !important;
    margin-left: 96pt !important;
}

.my-8r
{
    margin-top: 96pt !important;
    margin-bottom: 96pt !important;
}

.p-8r
{
    padding: 96pt !important;
}

.pt-8r
{
    padding-top: 96pt !important;
}

.pb-8r
{
    padding-bottom: 96pt !important;
}

.pr-8r
{
    padding-right: 96pt !important;
}

.pl-8r
{
    padding-left: 96pt !important;
}

.px-8r
{
    padding-right: 96pt !important;
    padding-left: 96pt !important;
}

.py-8r
{
    padding-top: 96pt !important;
    padding-bottom: 96pt !important;
}

.m-9r
{
    margin: 108pt !important;
}

.mt-9r
{
    margin-top: 108pt !important;
}

.mb-9r
{
    margin-bottom: 108pt !important;
}

.mr-9r
{
    margin-right: 108pt !important;
}

.ml-9r
{
    margin-left: 108pt !important;
}

.mx-9r
{
    margin-right: 108pt !important;
    margin-left: 108pt !important;
}

.my-9r
{
    margin-top: 108pt !important;
    margin-bottom: 108pt !important;
}

.p-9r
{
    padding: 108pt !important;
}

.pt-9r
{
    padding-top: 108pt !important;
}

.pb-9r
{
    padding-bottom: 108pt !important;
}

.pr-9r
{
    padding-right: 108pt !important;
}

.pl-9r
{
    padding-left: 108pt !important;
}

.px-9r
{
    padding-right: 108pt !important;
    padding-left: 108pt !important;
}

.py-9r
{
    padding-top: 108pt !important;
    padding-bottom: 108pt !important;
}

.m-10r
{
    margin: 120pt !important;
}

.mt-10r
{
    margin-top: 120pt !important;
}

.mb-10r
{
    margin-bottom: 120pt !important;
}

.mr-10r
{
    margin-right: 120pt !important;
}

.ml-10r
{
    margin-left: 120pt !important;
}

.mx-10r
{
    margin-right: 120pt !important;
    margin-left: 120pt !important;
}

.my-10r
{
    margin-top: 120pt !important;
    margin-bottom: 120pt !important;
}

.p-10r
{
    padding: 120pt !important;
}

.pt-10r
{
    padding-top: 120pt !important;
}

.pb-10r
{
    padding-bottom: 120pt !important;
}

.pr-10r
{
    padding-right: 120pt !important;
}

.pl-10r
{
    padding-left: 120pt !important;
}

.px-10r
{
    padding-right: 120pt !important;
    padding-left: 120pt !important;
}

.py-10r
{
    padding-top: 120pt !important;
    padding-bottom: 120pt !important;
}

.m-1q
{
    margin: 3pt !important;
}

.mt-1q
{
    margin-top: 3pt !important;
}

.mb-1q
{
    margin-bottom: 3pt !important;
}

.mr-1q
{
    margin-right: 3pt !important;
}

.ml-1q
{
    margin-left: 3pt !important;
}

.mx-1q
{
    margin-right: 3pt !important;
    margin-left: 3pt !important;
}

.my-1q
{
    margin-top: 3pt !important;
    margin-bottom: 3pt !important;
}

.p-1q
{
    padding: 3pt !important;
}

.pt-1q
{
    padding-top: 3pt !important;
}

.pb-1q
{
    padding-bottom: 3pt !important;
}

.pr-1q
{
    padding-right: 3pt !important;
}

.pl-1q
{
    padding-left: 3pt !important;
}

.px-1q
{
    padding-right: 3pt !important;
    padding-left: 3pt !important;
}

.py-1q
{
    padding-top: 3pt !important;
    padding-bottom: 3pt !important;
}

.m-2q
{
    margin: 6pt !important;
}

.mt-2q
{
    margin-top: 6pt !important;
}

.mb-2q
{
    margin-bottom: 6pt !important;
}

.mr-2q
{
    margin-right: 6pt !important;
}

.ml-2q
{
    margin-left: 6pt !important;
}

.mx-2q
{
    margin-right: 6pt !important;
    margin-left: 6pt !important;
}

.my-2q
{
    margin-top: 6pt !important;
    margin-bottom: 6pt !important;
}

.p-2q
{
    padding: 6pt !important;
}

.pt-2q
{
    padding-top: 6pt !important;
}

.pb-2q
{
    padding-bottom: 6pt !important;
}

.pr-2q
{
    padding-right: 6pt !important;
}

.pl-2q
{
    padding-left: 6pt !important;
}

.px-2q
{
    padding-right: 6pt !important;
    padding-left: 6pt !important;
}

.py-2q
{
    padding-top: 6pt !important;
    padding-bottom: 6pt !important;
}

.m-3q
{
    margin: 9pt !important;
}

.mt-3q
{
    margin-top: 9pt !important;
}

.mb-3q
{
    margin-bottom: 9pt !important;
}

.mr-3q
{
    margin-right: 9pt !important;
}

.ml-3q
{
    margin-left: 9pt !important;
}

.mx-3q
{
    margin-right: 9pt !important;
    margin-left: 9pt !important;
}

.my-3q
{
    margin-top: 9pt !important;
    margin-bottom: 9pt !important;
}

.p-3q
{
    padding: 9pt !important;
}

.pt-3q
{
    padding-top: 9pt !important;
}

.pb-3q
{
    padding-bottom: 9pt !important;
}

.pr-3q
{
    padding-right: 9pt !important;
}

.pl-3q
{
    padding-left: 9pt !important;
}

.px-3q
{
    padding-right: 9pt !important;
    padding-left: 9pt !important;
}

.py-3q
{
    padding-top: 9pt !important;
    padding-bottom: 9pt !important;
}

.m-4q
{
    margin: 12pt !important;
}

.mt-4q
{
    margin-top: 12pt !important;
}

.mb-4q
{
    margin-bottom: 12pt !important;
}

.mr-4q
{
    margin-right: 12pt !important;
}

.ml-4q
{
    margin-left: 12pt !important;
}

.mx-4q
{
    margin-right: 12pt !important;
    margin-left: 12pt !important;
}

.my-4q
{
    margin-top: 12pt !important;
    margin-bottom: 12pt !important;
}

.p-4q
{
    padding: 12pt !important;
}

.pt-4q
{
    padding-top: 12pt !important;
}

.pb-4q
{
    padding-bottom: 12pt !important;
}

.pr-4q
{
    padding-right: 12pt !important;
}

.pl-4q
{
    padding-left: 12pt !important;
}

.px-4q
{
    padding-right: 12pt !important;
    padding-left: 12pt !important;
}

.py-4q
{
    padding-top: 12pt !important;
    padding-bottom: 12pt !important;
}

.m-5q
{
    margin: 15pt !important;
}

.mt-5q
{
    margin-top: 15pt !important;
}

.mb-5q
{
    margin-bottom: 15pt !important;
}

.mr-5q
{
    margin-right: 15pt !important;
}

.ml-5q
{
    margin-left: 15pt !important;
}

.mx-5q
{
    margin-right: 15pt !important;
    margin-left: 15pt !important;
}

.my-5q
{
    margin-top: 15pt !important;
    margin-bottom: 15pt !important;
}

.p-5q
{
    padding: 15pt !important;
}

.pt-5q
{
    padding-top: 15pt !important;
}

.pb-5q
{
    padding-bottom: 15pt !important;
}

.pr-5q
{
    padding-right: 15pt !important;
}

.pl-5q
{
    padding-left: 15pt !important;
}

.px-5q
{
    padding-right: 15pt !important;
    padding-left: 15pt !important;
}

.py-5q
{
    padding-top: 15pt !important;
    padding-bottom: 15pt !important;
}

.m-6q
{
    margin: 18pt !important;
}

.mt-6q
{
    margin-top: 18pt !important;
}

.mb-6q
{
    margin-bottom: 18pt !important;
}

.mr-6q
{
    margin-right: 18pt !important;
}

.ml-6q
{
    margin-left: 18pt !important;
}

.mx-6q
{
    margin-right: 18pt !important;
    margin-left: 18pt !important;
}

.my-6q
{
    margin-top: 18pt !important;
    margin-bottom: 18pt !important;
}

.p-6q
{
    padding: 18pt !important;
}

.pt-6q
{
    padding-top: 18pt !important;
}

.pb-6q
{
    padding-bottom: 18pt !important;
}

.pr-6q
{
    padding-right: 18pt !important;
}

.pl-6q
{
    padding-left: 18pt !important;
}

.px-6q
{
    padding-right: 18pt !important;
    padding-left: 18pt !important;
}

.py-6q
{
    padding-top: 18pt !important;
    padding-bottom: 18pt !important;
}

.m-7q
{
    margin: 21pt !important;
}

.mt-7q
{
    margin-top: 21pt !important;
}

.mb-7q
{
    margin-bottom: 21pt !important;
}

.mr-7q
{
    margin-right: 21pt !important;
}

.ml-7q
{
    margin-left: 21pt !important;
}

.mx-7q
{
    margin-right: 21pt !important;
    margin-left: 21pt !important;
}

.my-7q
{
    margin-top: 21pt !important;
    margin-bottom: 21pt !important;
}

.p-7q
{
    padding: 21pt !important;
}

.pt-7q
{
    padding-top: 21pt !important;
}

.pb-7q
{
    padding-bottom: 21pt !important;
}

.pr-7q
{
    padding-right: 21pt !important;
}

.pl-7q
{
    padding-left: 21pt !important;
}

.px-7q
{
    padding-right: 21pt !important;
    padding-left: 21pt !important;
}

.py-7q
{
    padding-top: 21pt !important;
    padding-bottom: 21pt !important;
}

.m-8q
{
    margin: 24pt !important;
}

.mt-8q
{
    margin-top: 24pt !important;
}

.mb-8q
{
    margin-bottom: 24pt !important;
}

.mr-8q
{
    margin-right: 24pt !important;
}

.ml-8q
{
    margin-left: 24pt !important;
}

.mx-8q
{
    margin-right: 24pt !important;
    margin-left: 24pt !important;
}

.my-8q
{
    margin-top: 24pt !important;
    margin-bottom: 24pt !important;
}

.p-8q
{
    padding: 24pt !important;
}

.pt-8q
{
    padding-top: 24pt !important;
}

.pb-8q
{
    padding-bottom: 24pt !important;
}

.pr-8q
{
    padding-right: 24pt !important;
}

.pl-8q
{
    padding-left: 24pt !important;
}

.px-8q
{
    padding-right: 24pt !important;
    padding-left: 24pt !important;
}

.py-8q
{
    padding-top: 24pt !important;
    padding-bottom: 24pt !important;
}

.m-9q
{
    margin: 27pt !important;
}

.mt-9q
{
    margin-top: 27pt !important;
}

.mb-9q
{
    margin-bottom: 27pt !important;
}

.mr-9q
{
    margin-right: 27pt !important;
}

.ml-9q
{
    margin-left: 27pt !important;
}

.mx-9q
{
    margin-right: 27pt !important;
    margin-left: 27pt !important;
}

.my-9q
{
    margin-top: 27pt !important;
    margin-bottom: 27pt !important;
}

.p-9q
{
    padding: 27pt !important;
}

.pt-9q
{
    padding-top: 27pt !important;
}

.pb-9q
{
    padding-bottom: 27pt !important;
}

.pr-9q
{
    padding-right: 27pt !important;
}

.pl-9q
{
    padding-left: 27pt !important;
}

.px-9q
{
    padding-right: 27pt !important;
    padding-left: 27pt !important;
}

.py-9q
{
    padding-top: 27pt !important;
    padding-bottom: 27pt !important;
}

.m-10q
{
    margin: 30pt !important;
}

.mt-10q
{
    margin-top: 30pt !important;
}

.mb-10q
{
    margin-bottom: 30pt !important;
}

.mr-10q
{
    margin-right: 30pt !important;
}

.ml-10q
{
    margin-left: 30pt !important;
}

.mx-10q
{
    margin-right: 30pt !important;
    margin-left: 30pt !important;
}

.my-10q
{
    margin-top: 30pt !important;
    margin-bottom: 30pt !important;
}

.p-10q
{
    padding: 30pt !important;
}

.pt-10q
{
    padding-top: 30pt !important;
}

.pb-10q
{
    padding-bottom: 30pt !important;
}

.pr-10q
{
    padding-right: 30pt !important;
}

.pl-10q
{
    padding-left: 30pt !important;
}

.px-10q
{
    padding-right: 30pt !important;
    padding-left: 30pt !important;
}

.py-10q
{
    padding-top: 30pt !important;
    padding-bottom: 30pt !important;
}

.m-11q
{
    margin: 33pt !important;
}

.mt-11q
{
    margin-top: 33pt !important;
}

.mb-11q
{
    margin-bottom: 33pt !important;
}

.mr-11q
{
    margin-right: 33pt !important;
}

.ml-11q
{
    margin-left: 33pt !important;
}

.mx-11q
{
    margin-right: 33pt !important;
    margin-left: 33pt !important;
}

.my-11q
{
    margin-top: 33pt !important;
    margin-bottom: 33pt !important;
}

.p-11q
{
    padding: 33pt !important;
}

.pt-11q
{
    padding-top: 33pt !important;
}

.pb-11q
{
    padding-bottom: 33pt !important;
}

.pr-11q
{
    padding-right: 33pt !important;
}

.pl-11q
{
    padding-left: 33pt !important;
}

.px-11q
{
    padding-right: 33pt !important;
    padding-left: 33pt !important;
}

.py-11q
{
    padding-top: 33pt !important;
    padding-bottom: 33pt !important;
}

.m-12q
{
    margin: 36pt !important;
}

.mt-12q
{
    margin-top: 36pt !important;
}

.mb-12q
{
    margin-bottom: 36pt !important;
}

.mr-12q
{
    margin-right: 36pt !important;
}

.ml-12q
{
    margin-left: 36pt !important;
}

.mx-12q
{
    margin-right: 36pt !important;
    margin-left: 36pt !important;
}

.my-12q
{
    margin-top: 36pt !important;
    margin-bottom: 36pt !important;
}

.p-12q
{
    padding: 36pt !important;
}

.pt-12q
{
    padding-top: 36pt !important;
}

.pb-12q
{
    padding-bottom: 36pt !important;
}

.pr-12q
{
    padding-right: 36pt !important;
}

.pl-12q
{
    padding-left: 36pt !important;
}

.px-12q
{
    padding-right: 36pt !important;
    padding-left: 36pt !important;
}

.py-12q
{
    padding-top: 36pt !important;
    padding-bottom: 36pt !important;
}

.m-13q
{
    margin: 39pt !important;
}

.mt-13q
{
    margin-top: 39pt !important;
}

.mb-13q
{
    margin-bottom: 39pt !important;
}

.mr-13q
{
    margin-right: 39pt !important;
}

.ml-13q
{
    margin-left: 39pt !important;
}

.mx-13q
{
    margin-right: 39pt !important;
    margin-left: 39pt !important;
}

.my-13q
{
    margin-top: 39pt !important;
    margin-bottom: 39pt !important;
}

.p-13q
{
    padding: 39pt !important;
}

.pt-13q
{
    padding-top: 39pt !important;
}

.pb-13q
{
    padding-bottom: 39pt !important;
}

.pr-13q
{
    padding-right: 39pt !important;
}

.pl-13q
{
    padding-left: 39pt !important;
}

.px-13q
{
    padding-right: 39pt !important;
    padding-left: 39pt !important;
}

.py-13q
{
    padding-top: 39pt !important;
    padding-bottom: 39pt !important;
}

.m-14q
{
    margin: 42pt !important;
}

.mt-14q
{
    margin-top: 42pt !important;
}

.mb-14q
{
    margin-bottom: 42pt !important;
}

.mr-14q
{
    margin-right: 42pt !important;
}

.ml-14q
{
    margin-left: 42pt !important;
}

.mx-14q
{
    margin-right: 42pt !important;
    margin-left: 42pt !important;
}

.my-14q
{
    margin-top: 42pt !important;
    margin-bottom: 42pt !important;
}

.p-14q
{
    padding: 42pt !important;
}

.pt-14q
{
    padding-top: 42pt !important;
}

.pb-14q
{
    padding-bottom: 42pt !important;
}

.pr-14q
{
    padding-right: 42pt !important;
}

.pl-14q
{
    padding-left: 42pt !important;
}

.px-14q
{
    padding-right: 42pt !important;
    padding-left: 42pt !important;
}

.py-14q
{
    padding-top: 42pt !important;
    padding-bottom: 42pt !important;
}

.m-15q
{
    margin: 45pt !important;
}

.mt-15q
{
    margin-top: 45pt !important;
}

.mb-15q
{
    margin-bottom: 45pt !important;
}

.mr-15q
{
    margin-right: 45pt !important;
}

.ml-15q
{
    margin-left: 45pt !important;
}

.mx-15q
{
    margin-right: 45pt !important;
    margin-left: 45pt !important;
}

.my-15q
{
    margin-top: 45pt !important;
    margin-bottom: 45pt !important;
}

.p-15q
{
    padding: 45pt !important;
}

.pt-15q
{
    padding-top: 45pt !important;
}

.pb-15q
{
    padding-bottom: 45pt !important;
}

.pr-15q
{
    padding-right: 45pt !important;
}

.pl-15q
{
    padding-left: 45pt !important;
}

.px-15q
{
    padding-right: 45pt !important;
    padding-left: 45pt !important;
}

.py-15q
{
    padding-top: 45pt !important;
    padding-bottom: 45pt !important;
}

.m-16q
{
    margin: 48pt !important;
}

.mt-16q
{
    margin-top: 48pt !important;
}

.mb-16q
{
    margin-bottom: 48pt !important;
}

.mr-16q
{
    margin-right: 48pt !important;
}

.ml-16q
{
    margin-left: 48pt !important;
}

.mx-16q
{
    margin-right: 48pt !important;
    margin-left: 48pt !important;
}

.my-16q
{
    margin-top: 48pt !important;
    margin-bottom: 48pt !important;
}

.p-16q
{
    padding: 48pt !important;
}

.pt-16q
{
    padding-top: 48pt !important;
}

.pb-16q
{
    padding-bottom: 48pt !important;
}

.pr-16q
{
    padding-right: 48pt !important;
}

.pl-16q
{
    padding-left: 48pt !important;
}

.px-16q
{
    padding-right: 48pt !important;
    padding-left: 48pt !important;
}

.py-16q
{
    padding-top: 48pt !important;
    padding-bottom: 48pt !important;
}

.m-17q
{
    margin: 51pt !important;
}

.mt-17q
{
    margin-top: 51pt !important;
}

.mb-17q
{
    margin-bottom: 51pt !important;
}

.mr-17q
{
    margin-right: 51pt !important;
}

.ml-17q
{
    margin-left: 51pt !important;
}

.mx-17q
{
    margin-right: 51pt !important;
    margin-left: 51pt !important;
}

.my-17q
{
    margin-top: 51pt !important;
    margin-bottom: 51pt !important;
}

.p-17q
{
    padding: 51pt !important;
}

.pt-17q
{
    padding-top: 51pt !important;
}

.pb-17q
{
    padding-bottom: 51pt !important;
}

.pr-17q
{
    padding-right: 51pt !important;
}

.pl-17q
{
    padding-left: 51pt !important;
}

.px-17q
{
    padding-right: 51pt !important;
    padding-left: 51pt !important;
}

.py-17q
{
    padding-top: 51pt !important;
    padding-bottom: 51pt !important;
}

.m-18q
{
    margin: 54pt !important;
}

.mt-18q
{
    margin-top: 54pt !important;
}

.mb-18q
{
    margin-bottom: 54pt !important;
}

.mr-18q
{
    margin-right: 54pt !important;
}

.ml-18q
{
    margin-left: 54pt !important;
}

.mx-18q
{
    margin-right: 54pt !important;
    margin-left: 54pt !important;
}

.my-18q
{
    margin-top: 54pt !important;
    margin-bottom: 54pt !important;
}

.p-18q
{
    padding: 54pt !important;
}

.pt-18q
{
    padding-top: 54pt !important;
}

.pb-18q
{
    padding-bottom: 54pt !important;
}

.pr-18q
{
    padding-right: 54pt !important;
}

.pl-18q
{
    padding-left: 54pt !important;
}

.px-18q
{
    padding-right: 54pt !important;
    padding-left: 54pt !important;
}

.py-18q
{
    padding-top: 54pt !important;
    padding-bottom: 54pt !important;
}

.m-19q
{
    margin: 57pt !important;
}

.mt-19q
{
    margin-top: 57pt !important;
}

.mb-19q
{
    margin-bottom: 57pt !important;
}

.mr-19q
{
    margin-right: 57pt !important;
}

.ml-19q
{
    margin-left: 57pt !important;
}

.mx-19q
{
    margin-right: 57pt !important;
    margin-left: 57pt !important;
}

.my-19q
{
    margin-top: 57pt !important;
    margin-bottom: 57pt !important;
}

.p-19q
{
    padding: 57pt !important;
}

.pt-19q
{
    padding-top: 57pt !important;
}

.pb-19q
{
    padding-bottom: 57pt !important;
}

.pr-19q
{
    padding-right: 57pt !important;
}

.pl-19q
{
    padding-left: 57pt !important;
}

.px-19q
{
    padding-right: 57pt !important;
    padding-left: 57pt !important;
}

.py-19q
{
    padding-top: 57pt !important;
    padding-bottom: 57pt !important;
}

.m-20q
{
    margin: 60pt !important;
}

.mt-20q
{
    margin-top: 60pt !important;
}

.mb-20q
{
    margin-bottom: 60pt !important;
}

.mr-20q
{
    margin-right: 60pt !important;
}

.ml-20q
{
    margin-left: 60pt !important;
}

.mx-20q
{
    margin-right: 60pt !important;
    margin-left: 60pt !important;
}

.my-20q
{
    margin-top: 60pt !important;
    margin-bottom: 60pt !important;
}

.p-20q
{
    padding: 60pt !important;
}

.pt-20q
{
    padding-top: 60pt !important;
}

.pb-20q
{
    padding-bottom: 60pt !important;
}

.pr-20q
{
    padding-right: 60pt !important;
}

.pl-20q
{
    padding-left: 60pt !important;
}

.px-20q
{
    padding-right: 60pt !important;
    padding-left: 60pt !important;
}

.py-20q
{
    padding-top: 60pt !important;
    padding-bottom: 60pt !important;
}

.m-21q
{
    margin: 63pt !important;
}

.mt-21q
{
    margin-top: 63pt !important;
}

.mb-21q
{
    margin-bottom: 63pt !important;
}

.mr-21q
{
    margin-right: 63pt !important;
}

.ml-21q
{
    margin-left: 63pt !important;
}

.mx-21q
{
    margin-right: 63pt !important;
    margin-left: 63pt !important;
}

.my-21q
{
    margin-top: 63pt !important;
    margin-bottom: 63pt !important;
}

.p-21q
{
    padding: 63pt !important;
}

.pt-21q
{
    padding-top: 63pt !important;
}

.pb-21q
{
    padding-bottom: 63pt !important;
}

.pr-21q
{
    padding-right: 63pt !important;
}

.pl-21q
{
    padding-left: 63pt !important;
}

.px-21q
{
    padding-right: 63pt !important;
    padding-left: 63pt !important;
}

.py-21q
{
    padding-top: 63pt !important;
    padding-bottom: 63pt !important;
}

.m-22q
{
    margin: 66pt !important;
}

.mt-22q
{
    margin-top: 66pt !important;
}

.mb-22q
{
    margin-bottom: 66pt !important;
}

.mr-22q
{
    margin-right: 66pt !important;
}

.ml-22q
{
    margin-left: 66pt !important;
}

.mx-22q
{
    margin-right: 66pt !important;
    margin-left: 66pt !important;
}

.my-22q
{
    margin-top: 66pt !important;
    margin-bottom: 66pt !important;
}

.p-22q
{
    padding: 66pt !important;
}

.pt-22q
{
    padding-top: 66pt !important;
}

.pb-22q
{
    padding-bottom: 66pt !important;
}

.pr-22q
{
    padding-right: 66pt !important;
}

.pl-22q
{
    padding-left: 66pt !important;
}

.px-22q
{
    padding-right: 66pt !important;
    padding-left: 66pt !important;
}

.py-22q
{
    padding-top: 66pt !important;
    padding-bottom: 66pt !important;
}

.m-23q
{
    margin: 69pt !important;
}

.mt-23q
{
    margin-top: 69pt !important;
}

.mb-23q
{
    margin-bottom: 69pt !important;
}

.mr-23q
{
    margin-right: 69pt !important;
}

.ml-23q
{
    margin-left: 69pt !important;
}

.mx-23q
{
    margin-right: 69pt !important;
    margin-left: 69pt !important;
}

.my-23q
{
    margin-top: 69pt !important;
    margin-bottom: 69pt !important;
}

.p-23q
{
    padding: 69pt !important;
}

.pt-23q
{
    padding-top: 69pt !important;
}

.pb-23q
{
    padding-bottom: 69pt !important;
}

.pr-23q
{
    padding-right: 69pt !important;
}

.pl-23q
{
    padding-left: 69pt !important;
}

.px-23q
{
    padding-right: 69pt !important;
    padding-left: 69pt !important;
}

.py-23q
{
    padding-top: 69pt !important;
    padding-bottom: 69pt !important;
}

.m-24q
{
    margin: 72pt !important;
}

.mt-24q
{
    margin-top: 72pt !important;
}

.mb-24q
{
    margin-bottom: 72pt !important;
}

.mr-24q
{
    margin-right: 72pt !important;
}

.ml-24q
{
    margin-left: 72pt !important;
}

.mx-24q
{
    margin-right: 72pt !important;
    margin-left: 72pt !important;
}

.my-24q
{
    margin-top: 72pt !important;
    margin-bottom: 72pt !important;
}

.p-24q
{
    padding: 72pt !important;
}

.pt-24q
{
    padding-top: 72pt !important;
}

.pb-24q
{
    padding-bottom: 72pt !important;
}

.pr-24q
{
    padding-right: 72pt !important;
}

.pl-24q
{
    padding-left: 72pt !important;
}

.px-24q
{
    padding-right: 72pt !important;
    padding-left: 72pt !important;
}

.py-24q
{
    padding-top: 72pt !important;
    padding-bottom: 72pt !important;
}

.m-25q
{
    margin: 75pt !important;
}

.mt-25q
{
    margin-top: 75pt !important;
}

.mb-25q
{
    margin-bottom: 75pt !important;
}

.mr-25q
{
    margin-right: 75pt !important;
}

.ml-25q
{
    margin-left: 75pt !important;
}

.mx-25q
{
    margin-right: 75pt !important;
    margin-left: 75pt !important;
}

.my-25q
{
    margin-top: 75pt !important;
    margin-bottom: 75pt !important;
}

.p-25q
{
    padding: 75pt !important;
}

.pt-25q
{
    padding-top: 75pt !important;
}

.pb-25q
{
    padding-bottom: 75pt !important;
}

.pr-25q
{
    padding-right: 75pt !important;
}

.pl-25q
{
    padding-left: 75pt !important;
}

.px-25q
{
    padding-right: 75pt !important;
    padding-left: 75pt !important;
}

.py-25q
{
    padding-top: 75pt !important;
    padding-bottom: 75pt !important;
}

.m-26q
{
    margin: 78pt !important;
}

.mt-26q
{
    margin-top: 78pt !important;
}

.mb-26q
{
    margin-bottom: 78pt !important;
}

.mr-26q
{
    margin-right: 78pt !important;
}

.ml-26q
{
    margin-left: 78pt !important;
}

.mx-26q
{
    margin-right: 78pt !important;
    margin-left: 78pt !important;
}

.my-26q
{
    margin-top: 78pt !important;
    margin-bottom: 78pt !important;
}

.p-26q
{
    padding: 78pt !important;
}

.pt-26q
{
    padding-top: 78pt !important;
}

.pb-26q
{
    padding-bottom: 78pt !important;
}

.pr-26q
{
    padding-right: 78pt !important;
}

.pl-26q
{
    padding-left: 78pt !important;
}

.px-26q
{
    padding-right: 78pt !important;
    padding-left: 78pt !important;
}

.py-26q
{
    padding-top: 78pt !important;
    padding-bottom: 78pt !important;
}

.m-27q
{
    margin: 81pt !important;
}

.mt-27q
{
    margin-top: 81pt !important;
}

.mb-27q
{
    margin-bottom: 81pt !important;
}

.mr-27q
{
    margin-right: 81pt !important;
}

.ml-27q
{
    margin-left: 81pt !important;
}

.mx-27q
{
    margin-right: 81pt !important;
    margin-left: 81pt !important;
}

.my-27q
{
    margin-top: 81pt !important;
    margin-bottom: 81pt !important;
}

.p-27q
{
    padding: 81pt !important;
}

.pt-27q
{
    padding-top: 81pt !important;
}

.pb-27q
{
    padding-bottom: 81pt !important;
}

.pr-27q
{
    padding-right: 81pt !important;
}

.pl-27q
{
    padding-left: 81pt !important;
}

.px-27q
{
    padding-right: 81pt !important;
    padding-left: 81pt !important;
}

.py-27q
{
    padding-top: 81pt !important;
    padding-bottom: 81pt !important;
}

.m-28q
{
    margin: 84pt !important;
}

.mt-28q
{
    margin-top: 84pt !important;
}

.mb-28q
{
    margin-bottom: 84pt !important;
}

.mr-28q
{
    margin-right: 84pt !important;
}

.ml-28q
{
    margin-left: 84pt !important;
}

.mx-28q
{
    margin-right: 84pt !important;
    margin-left: 84pt !important;
}

.my-28q
{
    margin-top: 84pt !important;
    margin-bottom: 84pt !important;
}

.p-28q
{
    padding: 84pt !important;
}

.pt-28q
{
    padding-top: 84pt !important;
}

.pb-28q
{
    padding-bottom: 84pt !important;
}

.pr-28q
{
    padding-right: 84pt !important;
}

.pl-28q
{
    padding-left: 84pt !important;
}

.px-28q
{
    padding-right: 84pt !important;
    padding-left: 84pt !important;
}

.py-28q
{
    padding-top: 84pt !important;
    padding-bottom: 84pt !important;
}

.m-29q
{
    margin: 87pt !important;
}

.mt-29q
{
    margin-top: 87pt !important;
}

.mb-29q
{
    margin-bottom: 87pt !important;
}

.mr-29q
{
    margin-right: 87pt !important;
}

.ml-29q
{
    margin-left: 87pt !important;
}

.mx-29q
{
    margin-right: 87pt !important;
    margin-left: 87pt !important;
}

.my-29q
{
    margin-top: 87pt !important;
    margin-bottom: 87pt !important;
}

.p-29q
{
    padding: 87pt !important;
}

.pt-29q
{
    padding-top: 87pt !important;
}

.pb-29q
{
    padding-bottom: 87pt !important;
}

.pr-29q
{
    padding-right: 87pt !important;
}

.pl-29q
{
    padding-left: 87pt !important;
}

.px-29q
{
    padding-right: 87pt !important;
    padding-left: 87pt !important;
}

.py-29q
{
    padding-top: 87pt !important;
    padding-bottom: 87pt !important;
}

.m-30q
{
    margin: 90pt !important;
}

.mt-30q
{
    margin-top: 90pt !important;
}

.mb-30q
{
    margin-bottom: 90pt !important;
}

.mr-30q
{
    margin-right: 90pt !important;
}

.ml-30q
{
    margin-left: 90pt !important;
}

.mx-30q
{
    margin-right: 90pt !important;
    margin-left: 90pt !important;
}

.my-30q
{
    margin-top: 90pt !important;
    margin-bottom: 90pt !important;
}

.p-30q
{
    padding: 90pt !important;
}

.pt-30q
{
    padding-top: 90pt !important;
}

.pb-30q
{
    padding-bottom: 90pt !important;
}

.pr-30q
{
    padding-right: 90pt !important;
}

.pl-30q
{
    padding-left: 90pt !important;
}

.px-30q
{
    padding-right: 90pt !important;
    padding-left: 90pt !important;
}

.py-30q
{
    padding-top: 90pt !important;
    padding-bottom: 90pt !important;
}

.m-31q
{
    margin: 93pt !important;
}

.mt-31q
{
    margin-top: 93pt !important;
}

.mb-31q
{
    margin-bottom: 93pt !important;
}

.mr-31q
{
    margin-right: 93pt !important;
}

.ml-31q
{
    margin-left: 93pt !important;
}

.mx-31q
{
    margin-right: 93pt !important;
    margin-left: 93pt !important;
}

.my-31q
{
    margin-top: 93pt !important;
    margin-bottom: 93pt !important;
}

.p-31q
{
    padding: 93pt !important;
}

.pt-31q
{
    padding-top: 93pt !important;
}

.pb-31q
{
    padding-bottom: 93pt !important;
}

.pr-31q
{
    padding-right: 93pt !important;
}

.pl-31q
{
    padding-left: 93pt !important;
}

.px-31q
{
    padding-right: 93pt !important;
    padding-left: 93pt !important;
}

.py-31q
{
    padding-top: 93pt !important;
    padding-bottom: 93pt !important;
}

.m-32q
{
    margin: 96pt !important;
}

.mt-32q
{
    margin-top: 96pt !important;
}

.mb-32q
{
    margin-bottom: 96pt !important;
}

.mr-32q
{
    margin-right: 96pt !important;
}

.ml-32q
{
    margin-left: 96pt !important;
}

.mx-32q
{
    margin-right: 96pt !important;
    margin-left: 96pt !important;
}

.my-32q
{
    margin-top: 96pt !important;
    margin-bottom: 96pt !important;
}

.p-32q
{
    padding: 96pt !important;
}

.pt-32q
{
    padding-top: 96pt !important;
}

.pb-32q
{
    padding-bottom: 96pt !important;
}

.pr-32q
{
    padding-right: 96pt !important;
}

.pl-32q
{
    padding-left: 96pt !important;
}

.px-32q
{
    padding-right: 96pt !important;
    padding-left: 96pt !important;
}

.py-32q
{
    padding-top: 96pt !important;
    padding-bottom: 96pt !important;
}

.m-33q
{
    margin: 99pt !important;
}

.mt-33q
{
    margin-top: 99pt !important;
}

.mb-33q
{
    margin-bottom: 99pt !important;
}

.mr-33q
{
    margin-right: 99pt !important;
}

.ml-33q
{
    margin-left: 99pt !important;
}

.mx-33q
{
    margin-right: 99pt !important;
    margin-left: 99pt !important;
}

.my-33q
{
    margin-top: 99pt !important;
    margin-bottom: 99pt !important;
}

.p-33q
{
    padding: 99pt !important;
}

.pt-33q
{
    padding-top: 99pt !important;
}

.pb-33q
{
    padding-bottom: 99pt !important;
}

.pr-33q
{
    padding-right: 99pt !important;
}

.pl-33q
{
    padding-left: 99pt !important;
}

.px-33q
{
    padding-right: 99pt !important;
    padding-left: 99pt !important;
}

.py-33q
{
    padding-top: 99pt !important;
    padding-bottom: 99pt !important;
}

.m-34q
{
    margin: 102pt !important;
}

.mt-34q
{
    margin-top: 102pt !important;
}

.mb-34q
{
    margin-bottom: 102pt !important;
}

.mr-34q
{
    margin-right: 102pt !important;
}

.ml-34q
{
    margin-left: 102pt !important;
}

.mx-34q
{
    margin-right: 102pt !important;
    margin-left: 102pt !important;
}

.my-34q
{
    margin-top: 102pt !important;
    margin-bottom: 102pt !important;
}

.p-34q
{
    padding: 102pt !important;
}

.pt-34q
{
    padding-top: 102pt !important;
}

.pb-34q
{
    padding-bottom: 102pt !important;
}

.pr-34q
{
    padding-right: 102pt !important;
}

.pl-34q
{
    padding-left: 102pt !important;
}

.px-34q
{
    padding-right: 102pt !important;
    padding-left: 102pt !important;
}

.py-34q
{
    padding-top: 102pt !important;
    padding-bottom: 102pt !important;
}

.m-35q
{
    margin: 105pt !important;
}

.mt-35q
{
    margin-top: 105pt !important;
}

.mb-35q
{
    margin-bottom: 105pt !important;
}

.mr-35q
{
    margin-right: 105pt !important;
}

.ml-35q
{
    margin-left: 105pt !important;
}

.mx-35q
{
    margin-right: 105pt !important;
    margin-left: 105pt !important;
}

.my-35q
{
    margin-top: 105pt !important;
    margin-bottom: 105pt !important;
}

.p-35q
{
    padding: 105pt !important;
}

.pt-35q
{
    padding-top: 105pt !important;
}

.pb-35q
{
    padding-bottom: 105pt !important;
}

.pr-35q
{
    padding-right: 105pt !important;
}

.pl-35q
{
    padding-left: 105pt !important;
}

.px-35q
{
    padding-right: 105pt !important;
    padding-left: 105pt !important;
}

.py-35q
{
    padding-top: 105pt !important;
    padding-bottom: 105pt !important;
}

.m-36q
{
    margin: 108pt !important;
}

.mt-36q
{
    margin-top: 108pt !important;
}

.mb-36q
{
    margin-bottom: 108pt !important;
}

.mr-36q
{
    margin-right: 108pt !important;
}

.ml-36q
{
    margin-left: 108pt !important;
}

.mx-36q
{
    margin-right: 108pt !important;
    margin-left: 108pt !important;
}

.my-36q
{
    margin-top: 108pt !important;
    margin-bottom: 108pt !important;
}

.p-36q
{
    padding: 108pt !important;
}

.pt-36q
{
    padding-top: 108pt !important;
}

.pb-36q
{
    padding-bottom: 108pt !important;
}

.pr-36q
{
    padding-right: 108pt !important;
}

.pl-36q
{
    padding-left: 108pt !important;
}

.px-36q
{
    padding-right: 108pt !important;
    padding-left: 108pt !important;
}

.py-36q
{
    padding-top: 108pt !important;
    padding-bottom: 108pt !important;
}

.m-37q
{
    margin: 111pt !important;
}

.mt-37q
{
    margin-top: 111pt !important;
}

.mb-37q
{
    margin-bottom: 111pt !important;
}

.mr-37q
{
    margin-right: 111pt !important;
}

.ml-37q
{
    margin-left: 111pt !important;
}

.mx-37q
{
    margin-right: 111pt !important;
    margin-left: 111pt !important;
}

.my-37q
{
    margin-top: 111pt !important;
    margin-bottom: 111pt !important;
}

.p-37q
{
    padding: 111pt !important;
}

.pt-37q
{
    padding-top: 111pt !important;
}

.pb-37q
{
    padding-bottom: 111pt !important;
}

.pr-37q
{
    padding-right: 111pt !important;
}

.pl-37q
{
    padding-left: 111pt !important;
}

.px-37q
{
    padding-right: 111pt !important;
    padding-left: 111pt !important;
}

.py-37q
{
    padding-top: 111pt !important;
    padding-bottom: 111pt !important;
}

.m-38q
{
    margin: 114pt !important;
}

.mt-38q
{
    margin-top: 114pt !important;
}

.mb-38q
{
    margin-bottom: 114pt !important;
}

.mr-38q
{
    margin-right: 114pt !important;
}

.ml-38q
{
    margin-left: 114pt !important;
}

.mx-38q
{
    margin-right: 114pt !important;
    margin-left: 114pt !important;
}

.my-38q
{
    margin-top: 114pt !important;
    margin-bottom: 114pt !important;
}

.p-38q
{
    padding: 114pt !important;
}

.pt-38q
{
    padding-top: 114pt !important;
}

.pb-38q
{
    padding-bottom: 114pt !important;
}

.pr-38q
{
    padding-right: 114pt !important;
}

.pl-38q
{
    padding-left: 114pt !important;
}

.px-38q
{
    padding-right: 114pt !important;
    padding-left: 114pt !important;
}

.py-38q
{
    padding-top: 114pt !important;
    padding-bottom: 114pt !important;
}

.m-39q
{
    margin: 117pt !important;
}

.mt-39q
{
    margin-top: 117pt !important;
}

.mb-39q
{
    margin-bottom: 117pt !important;
}

.mr-39q
{
    margin-right: 117pt !important;
}

.ml-39q
{
    margin-left: 117pt !important;
}

.mx-39q
{
    margin-right: 117pt !important;
    margin-left: 117pt !important;
}

.my-39q
{
    margin-top: 117pt !important;
    margin-bottom: 117pt !important;
}

.p-39q
{
    padding: 117pt !important;
}

.pt-39q
{
    padding-top: 117pt !important;
}

.pb-39q
{
    padding-bottom: 117pt !important;
}

.pr-39q
{
    padding-right: 117pt !important;
}

.pl-39q
{
    padding-left: 117pt !important;
}

.px-39q
{
    padding-right: 117pt !important;
    padding-left: 117pt !important;
}

.py-39q
{
    padding-top: 117pt !important;
    padding-bottom: 117pt !important;
}

.m-40q
{
    margin: 120pt !important;
}

.mt-40q
{
    margin-top: 120pt !important;
}

.mb-40q
{
    margin-bottom: 120pt !important;
}

.mr-40q
{
    margin-right: 120pt !important;
}

.ml-40q
{
    margin-left: 120pt !important;
}

.mx-40q
{
    margin-right: 120pt !important;
    margin-left: 120pt !important;
}

.my-40q
{
    margin-top: 120pt !important;
    margin-bottom: 120pt !important;
}

.p-40q
{
    padding: 120pt !important;
}

.pt-40q
{
    padding-top: 120pt !important;
}

.pb-40q
{
    padding-bottom: 120pt !important;
}

.pr-40q
{
    padding-right: 120pt !important;
}

.pl-40q
{
    padding-left: 120pt !important;
}

.px-40q
{
    padding-right: 120pt !important;
    padding-left: 120pt !important;
}

.py-40q
{
    padding-top: 120pt !important;
    padding-bottom: 120pt !important;
}

.lh-12
{
    line-height: 1.2 !important;
}

.lh-14
{
    line-height: 1.4 !important;
}

.lh-15
{
    line-height: 1.5 !important;
}

.lh-16
{
    line-height: 1.6 !important;
}

.lh-18
{
    line-height: 1.8 !important;
}

.lh-20
{
    line-height: 2.0 !important;
}

.text-xxsmall
{
    font-size: 4.8pt !important;
}

.text-xxsmall.bold
{
    font-weight: 600 !important;
}

.text-xsmall
{
    font-size: 7.2pt !important;
}

.text-xsmall.bold
{
    font-weight: 600 !important;
}

.text-small
{
    font-size: 9.6pt !important;
}

.text-small.bold
{
    font-weight: 600 !important;
}

.text-normal
{
    font-size: 12pt !important;
}

.text-normal.bold
{
    font-weight: 600 !important;
}

.text-large
{
    font-size: 14.4pt !important;
}

.text-large.bold
{
    font-weight: 600 !important;
}

.text-xlarge
{
    font-size: 16.8pt !important;
}

.text-xlarge.bold
{
    font-weight: 600 !important;
}

.text-v-xsmall
{
    font-size: 1vmin !important;
}

.text-v-xsmall.bold
{
    font-weight: 600 !important;
}

.text-v-small
{
    font-size: 2vmin !important;
}

.text-v-small.bold
{
    font-weight: 600 !important;
}

.text-v-normal
{
    font-size: 3vmin !important;
}

.text-v-normal.bold
{
    font-weight: 600 !important;
}

.text-v-large
{
    font-size: 4vmin !important;
}

.text-v-large.bold
{
    font-weight: 600 !important;
}

.text-v-xlarge
{
    font-size: 6vmin !important;
}

.text-v-xlarge.bold
{
    font-weight: 600 !important;
}

.icon-xsmall
{
    font-size: 7.2pt !important;
}

.icon-xsmall.bold
{
    font-weight: 600 !important;
}

.icon-small
{
    font-size: 9.6pt !important;
}

.icon-small.bold
{
    font-weight: 600 !important;
}

.icon-normal
{
    font-size: 12pt !important;
}

.icon-normal.bold
{
    font-weight: 600 !important;
}

.icon-large
{
    font-size: 14.4pt !important;
}

.icon-large.bold
{
    font-weight: 600 !important;
}

.icon-xlarge
{
    font-size: 16.8pt !important;
}

.icon-xlarge.bold
{
    font-weight: 600 !important;
}

.w-0p
{
    width: 0;
}

.w-1p
{
    width: 1%;
}

.w-2p
{
    width: 2%;
}

.w-3p
{
    width: 3%;
}

.w-4p
{
    width: 4%;
}

.w-5p
{
    width: 5%;
}

.w-6p
{
    width: 6%;
}

.w-7p
{
    width: 7%;
}

.w-8p
{
    width: 8%;
}

.w-9p
{
    width: 9%;
}

.w-10p
{
    width: 10%;
}

.w-11p
{
    width: 11%;
}

.w-12p
{
    width: 12%;
}

.w-13p
{
    width: 13%;
}

.w-14p
{
    width: 14%;
}

.w-15p
{
    width: 15%;
}

.w-16p
{
    width: 16%;
}

.w-17p
{
    width: 17%;
}

.w-18p
{
    width: 18%;
}

.w-19p
{
    width: 19%;
}

.w-20p
{
    width: 20%;
}

.w-21p
{
    width: 21%;
}

.w-22p
{
    width: 22%;
}

.w-23p
{
    width: 23%;
}

.w-24p
{
    width: 24%;
}

.w-25p
{
    width: 25%;
}

.w-26p
{
    width: 26%;
}

.w-27p
{
    width: 27%;
}

.w-28p
{
    width: 28%;
}

.w-29p
{
    width: 29%;
}

.w-30p
{
    width: 30%;
}

.w-31p
{
    width: 31%;
}

.w-32p
{
    width: 32%;
}

.w-33p
{
    width: 33%;
}

.w-34p
{
    width: 34%;
}

.w-35p
{
    width: 35%;
}

.w-36p
{
    width: 36%;
}

.w-37p
{
    width: 37%;
}

.w-38p
{
    width: 38%;
}

.w-39p
{
    width: 39%;
}

.w-40p
{
    width: 40%;
}

.w-41p
{
    width: 41%;
}

.w-42p
{
    width: 42%;
}

.w-43p
{
    width: 43%;
}

.w-44p
{
    width: 44%;
}

.w-45p
{
    width: 45%;
}

.w-46p
{
    width: 46%;
}

.w-47p
{
    width: 47%;
}

.w-48p
{
    width: 48%;
}

.w-49p
{
    width: 49%;
}

.w-50p
{
    width: 50%;
}

.w-51p
{
    width: 51%;
}

.w-52p
{
    width: 52%;
}

.w-53p
{
    width: 53%;
}

.w-54p
{
    width: 54%;
}

.w-55p
{
    width: 55%;
}

.w-56p
{
    width: 56%;
}

.w-57p
{
    width: 57%;
}

.w-58p
{
    width: 58%;
}

.w-59p
{
    width: 59%;
}

.w-60p
{
    width: 60%;
}

.w-61p
{
    width: 61%;
}

.w-62p
{
    width: 62%;
}

.w-63p
{
    width: 63%;
}

.w-64p
{
    width: 64%;
}

.w-65p
{
    width: 65%;
}

.w-66p
{
    width: 66%;
}

.w-67p
{
    width: 67%;
}

.w-68p
{
    width: 68%;
}

.w-69p
{
    width: 69%;
}

.w-70p
{
    width: 70%;
}

.w-71p
{
    width: 71%;
}

.w-72p
{
    width: 72%;
}

.w-73p
{
    width: 73%;
}

.w-74p
{
    width: 74%;
}

.w-75p
{
    width: 75%;
}

.w-76p
{
    width: 76%;
}

.w-77p
{
    width: 77%;
}

.w-78p
{
    width: 78%;
}

.w-79p
{
    width: 79%;
}

.w-80p
{
    width: 80%;
}

.w-81p
{
    width: 81%;
}

.w-82p
{
    width: 82%;
}

.w-83p
{
    width: 83%;
}

.w-84p
{
    width: 84%;
}

.w-85p
{
    width: 85%;
}

.w-86p
{
    width: 86%;
}

.w-87p
{
    width: 87%;
}

.w-88p
{
    width: 88%;
}

.w-89p
{
    width: 89%;
}

.w-90p
{
    width: 90%;
}

.w-91p
{
    width: 91%;
}

.w-92p
{
    width: 92%;
}

.w-93p
{
    width: 93%;
}

.w-94p
{
    width: 94%;
}

.w-95p
{
    width: 95%;
}

.w-96p
{
    width: 96%;
}

.w-97p
{
    width: 97%;
}

.w-98p
{
    width: 98%;
}

.w-99p
{
    width: 99%;
}

.w-100p
{
    width: 100%;
}

.calendar .calendar-months
{
    padding-right: 12pt;
    padding-bottom: 60pt;
    padding-left: 12pt;
}

.calendar .calendar-month
{
    border-bottom: 1.2pt solid #333;
}

.calendar .calendar-month:not(:first-child)
{
    margin-bottom: 12pt;
}

.calendar .calendar-month caption
{
    text-align: center;
}

.calendar .calendar-month h4
{
    text-align: center;
}

.calendar .calendar-date
{
    font-size: 12pt;
    line-height: 12pt;

    margin: 0;
    padding-top: 12pt;
    padding-bottom: 12pt;

    cursor: pointer;
    text-align: center;

    color: #333;
}

.calendar .calendar-date:first-child
{
    color: #f00;
}

.calendar .calendar-date:last-child
{
    color: #00f;
}

.calendar .calendar-date.holiday
{
    color: #f00;
}

.calendar .calendar-date.disabled
{
    cursor: none;
    pointer-events: none;

    opacity: .3;
}

.calendar .calendar-date.selected
{
    font-weight: 600;

    cursor: none;
    pointer-events: none;

    color: white;
    background-color: #fd6c00;
}

.calendar .calendar-date.past
{
    cursor: none;
    pointer-events: none;

    opacity: .3;
}

.calendar .calendar-date.selected-from
{
    font-weight: 600;

    cursor: none;
    pointer-events: none;

    color: white;
    background-color: #ffeeb7;
    background-image: url(../img/arrow-from.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.calendar .calendar-date.selected-from.day-trip
{
    pointer-events: auto;
}

.calendar .calendar-date.selected-to
{
    font-weight: 600;

    color: white;
    background-color: #ffeeb7;
    background-image: url(../img/arrow-to.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.calendar .calendar-date.selected-between
{
    font-weight: 600;

    background-color: #ffeeb7;
}

.selected-dates
{
    position: fixed;
    z-index: 30;
    bottom: 0;

    display: block;

    width: calc(100% - 30pt);
    padding-top: 6pt;
    padding-right: 12pt;
    padding-bottom: 6pt;
    padding-left: 12pt;

    background: rgba(0, 0, 0, .75);
}

.selected-dates .contents
{
    display: block;

    width: 100%;
    margin: 0;
    padding: 0;
}

.selected-dates .contents .dates
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.selected-dates .contents .dates .date
{
    font-size: 4vw;
    font-weight: 600;

    text-align: center;

    color: #fff;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.selected-dates .contents .dates .date-from
{
    width: 40vw;
}

.selected-dates .contents .dates .date-to
{
    width: 40vw;
}

.selected-dates .contents .dates .text
{
    font-size: 12pt;
    font-weight: 600;

    color: white;
}

.selected-dates .buttons
{
    margin-top: 3pt;
    margin-bottom: 3pt;
}

.panel
{
    border: 1px solid #375378;
    background-color: #fff;
}

.panel.round
{
    border-radius: 3pt;
}

.panel.shadow
{
    -webkit-box-shadow: 3pt 3pt rgba(0, 0, 0, .5);
            box-shadow: 3pt 3pt rgba(0, 0, 0, .5);
}

.panel.selected
{
    border: 1px solid #fd6c00;
}

.panel.selected .panel
{
    border: none;
}

.panel.caution
{
    border: 1px solid #f43;
}

.panel.caution .panel
{
    border: none;
}

.select-button
{
    display: block;

    width: 100%;
    margin: 0;
    padding: 0;

    cursor: pointer;

    color: #375378;
    border: none;
    border: 1px solid #375378;
    outline: none;
    background-color: #ffeeb7;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.select-button .contents
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    height: 33.6pt;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select-button .contents.align-left
{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.select-button .contents.around
{
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.select-button .contents.between
{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.select-button.light
{
    background-color: #fff;
}

.icon-caption
{
    font-size: 12pt;
    line-height: 1;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    margin: 0;
    padding: 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select-tabs
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
}

.select-tabs.rounded
{
    border-radius: 3pt;
}

.select-tabs .tab
{
    padding: 0;

    cursor: pointer;
    text-align: center;
    text-decoration: none;

    color: #999;
    border-top: none;
    border-right: 1px solid #375378;
    border-bottom: 1px solid #375378;
    border-left: 1px solid #375378;
    outline: none;
    background: #eee;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.select-tabs .tab.active
{
    pointer-events: none;

    color: #fff;
    background: #375378;
}

.select-input
{
    font-size: 14.4pt;
    font-weight: 600;

    width: 100%;
    height: 36pt;
    padding: 0;

    text-align: center;
    text-decoration: none;

    border: 1px solid #375378;
    outline: none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.number-input
{
    display: table;

    border: 1px solid #375378;
}

.number-input .number-input-button
{
    font-size: 12pt;
    font-weight: 600;
    line-height: 1.5;

    display: table-cell;

    margin: 0;
    padding: 0;
    padding: 6pt;

    text-align: center;
    text-decoration: none;

    color: #375378;
    border-radius: 0;
    outline: none;
    background-color: #999;
    background-image: none;
    -webkit-box-shadow: none;
            box-shadow: none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.number-input .number-input-button.increment
{
    border-left: 1px solid #375378;
}

.number-input .number-input-button.decrement
{
    border-right: 1px solid #375378;
}

.number-input .number-input-button.enabled
{
    background-color: #ffeeb7;
}

.number-input .number-input-number
{
    font-size: 12pt;
    font-weight: 600;
    line-height: 1.5;

    display: table-cell;

    margin: 0;
    padding: 0;
    padding-top: 6pt;
    padding-right: 12pt;
    padding-bottom: 6pt;
    padding-left: 12pt;

    text-align: center;
}

.number-select
{
    font-size: 12pt;
    line-height: 1;

    position: relative;
    z-index: 20;

    display: inline-block;

    margin: 0;
    padding: 0;

    border: 1px solid #375378;
    outline: none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.number-select:before
{
    font-family: 'FontAwesome';
    font-size: 12pt;
    line-height: 30pt;

    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 24pt;
    height: 30pt;
    margin: 0;
    padding: 0;

    content: '\f0d7';
    text-align: center;
    pointer-events: none;

    color: #375378;
    background-color: #ffeeb7;
}

.number-select select
{
    font-size: inherit;
    font-size: 12pt;
    font-weight: 600;
    line-height: inherit;
    line-height: 24pt;

    min-width: 72pt;
    height: 30pt;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 18pt;

    vertical-align: middle;
    text-indent: 0;
    text-overflow: '';

    color: inherit;
    border: none;
    outline: none;
    background: none transparent;
    background-color: #fff;

    -webkit-appearance: button;
       -moz-appearance: button;
            appearance: button;
}

.number-select select option
{
    font-size: 12pt;

    color: #333;
    background-color: #fff;
}

.number-select select::-ms-expand
{
    display: none;
}

.number-select select:-moz-focusring
{
    color: transparent;
}

.dropdown
{
    display: block;

    width: 100%;
    margin: 0;
    padding: 12pt;
}

.dropdown .dropdown-items
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    border: 1px solid #375378;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.dropdown .dropdown-items .dropdown-item
{
    font-size: 12pt;
    font-weight: 600;
    line-height: 12pt;

    position: relative;

    display: block;

    width: 100%;
    margin: 0;
    padding: 12pt;

    cursor: pointer;
    text-decoration: none;

    color: #375378;
    background-color: #fff;
}

.dropdown .dropdown-items .dropdown-item.active
{
    color: #fff;
    background-color: #375378;
}

.dropdown .dropdown-items .dropdown-item.active:after
{
    font-family: FontAwesome;

    position: absolute;
    right: 12pt;

    content: '\f00c';
}

.dropdown .dropdown-items .dropdown-item:not(:last-child)
{
    border-bottom: 1px solid #375378;
}

.checkbox
{
    display: none;
}

.checkbox + .checkbox-icon
{
    position: relative;

    vertical-align: middle;
}

.checkbox + .checkbox-icon:before
{
    font-family: 'FontAwesome';
    font-size: 22px;

    content: '\f096';

    color: #ccc;
}

.checkbox:checked + .checkbox-icon:before
{
    content: 'f14a';

    color: #17bcdf;
}

#toggle-options
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#toggle-options .icon
{
    color: #fd6c00;
}

.toggle-contents .toggles
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    width: 100%;

    border: 1px solid #375378;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
}

.toggle-contents .toggles.rounded
{
    border-radius: 3pt;
}

.toggle-contents .toggles .toggle
{
    padding: 0;

    cursor: pointer;
    text-align: center;
    text-decoration: none;

    color: #999;
    border: none;
    outline: none;
    background: #fff;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.toggle-contents .toggles .toggle:not(:last-child)
{
    border-right: 1px solid #375378;
}

.toggle-contents .toggles .toggle.active
{
    pointer-events: none;

    color: #fff;
    background: #375378;
}

.toggle-contents .toggle-content
{
    width: 100%;
    margin: 0;
    padding: 0;

    border: none;
    border-top: none;
    border-right: 1px solid #375378;
    border-bottom: 1px solid #375378;
    border-left: 1px solid #375378;
}

.tooltip-secondary
{
    position: absolute;
    z-index: 50;
    bottom: 100%;
    left: -200%;

    text-align: left;

    opacity: .8;
    color: #fd6c00;
    border: 1px solid #fd6c00;
    background-color: #fff;
}

.room-gallery a:not(:first-child)
{
    display: none;
}

.lg-download
{
    display: none;
}

.report-textarea
{
    font-size: 9.6pt;
    line-height: 2;

    padding: 6pt;

    border: 1px solid #aaa;
    border-radius: 3pt;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.report-text
{
    font-size: 9.6pt;
    line-height: 2;

    padding: 6pt;

    border: 1px solid #aaa;
    border-radius: 3pt;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.color-primary
{
    color: #375378;
}

.color-secondary
{
    color: #fd6c00;
}

.color-darkest
{
    color: #333;
}

.color-darkgray
{
    color: #666;
}

.color-gray
{
    color: #999;
}

.color-caution
{
    color: #f43;
}

.text-center
{
    text-align: center;
}

.text-right
{
    text-align: right;
}

.text-left
{
    text-align: left;
}

.color-star
{
    color: #fd6c00;
}

.price-discounted
{
    font-size: 12pt;
    font-weight: 600;
    line-height: 1;

    color: #fd6c00;
}

.price-discounted.xsmall
{
    font-size: 7.2pt;
}

.price-discounted.small
{
    font-size: 9.6pt;
}

.price-discounted.large
{
    font-size: 14.4pt;
}

.price-discounted.xlarge
{
    font-size: 16.8pt;
}

.price-discounted.huge
{
    font-size: 19.2pt;
}

.price-discounted.xhuge
{
    font-size: 21.6pt;
}

.price-amount
{
    font-size: 12pt;
    line-height: 1;

    color: #999;
}

.price-amount.xsmall
{
    font-size: 7.2pt;
}

.price-amount.small
{
    font-size: 9.6pt;
}

.price-amount.large
{
    font-size: 14.4pt;
}

.price-amount.xlarge
{
    font-size: 16.8pt;
}

.price-amount.strike
{
    text-decoration: line-through;
}

.price-description
{
    font-size: 12pt;
    line-height: 1;

    color: #666;
}

.price-description.xsmall
{
    font-size: 7.2pt;
}

.price-description.small
{
    font-size: 9.6pt;
}

.price-description.large
{
    font-size: 14.4pt;
}

.price-description.xlarge
{
    font-size: 16.8pt;
}

.price-description.strike
{
    text-decoration: line-through;
}

.stars
{
    font-size: 12pt;
    line-height: 1;

    color: #fd6c00;
}

.stars.xsmall
{
    font-size: 7.2pt;
}

.stars.small
{
    font-size: 9.6pt;
}

.stars.large
{
    font-size: 14.4pt;
}

.stars.xlarge
{
    font-size: 16.8pt;
}

.tripadvisor
{
    font-size: 12pt;
    font-weight: 600;
    line-height: 1;

    color: #4f893b;
}

img.tripadvisor
{
    width: 20vw;
    height: auto;
}

img.fit
{
    width: 100%;
    height: auto;
}

.promotion
{
    font-size: 12pt;
    font-weight: 600;
    line-height: 1;

    border: 1px solid #375378;
}

.promotion.xsmall
{
    font-size: 7.2pt;
}

.promotion.small
{
    font-size: 9.6pt;
}

.promotion.large
{
    font-size: 14.4pt;
}

.promotion.xlarge
{
    font-size: 16.8pt;
}

.columns
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    margin: 0;
    padding: 0;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.columns.left
{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.columns.right
{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.columns.between
{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.columns.around
{
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.rows
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    margin: 0;
    padding: 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rows.top
{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.rows.bottom
{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rows.between
{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rows.around
{
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.rows.left
{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.stacks
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    margin: 0;
    padding: 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.ellipsis
{
    text-overflow: ellipsis;
}

.bt-primary
{
    border-top: 1px solid #375378 !important;
}

.bt-light
{
    border-top: 1px solid #999 !important;
}

.bb-light
{
    border-bottom: 1px solid #999 !important;
}

.border-primary
{
    border: 1px solid #999 !important;
}

.inline-block
{
    display: inline-block;
}

.table-cells
{
    display: table;
}

.table-cells .table-cell
{
    display: table-cell;
}

.cancel-policy
{
    color: #f43;
    border: 1px solid #f43;
    background-color: #fff;
}

.list-blocks .list-block:not(:first-child)
{
    margin-top: 6pt;
}

/**
*	Air関連
*
*/

.ticket-type
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    width: 21pt;
    min-height: 24pt;

    text-align: center;

    border: 1px solid #375378;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.has-lcc
{
    color: #fff;
    background-color: #375378;
}

.flight-sequence
{
    border: 1px solid #375378;
    border-radius: 24pt;
}

.horizontal-timeline
{
    line-height: 1.4;

    position: relative;

    border-bottom: 1px solid #375378;
}

.horizontal-timeline:before
{
    position: absolute;
    right: -4px;
    bottom: -3px;

    display: block;

    width: 0;
    height: 0;

    content: '';
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);

    border-right: 3px solid transparent;
    border-bottom: 5px solid #375378;
    border-left: 3px solid transparent;
}

.label-transfer
{
    line-height: 1.4;

    display: inline-block;

    color: #fff;
    background-color: #fd6c00;
}

.label-direct
{
    line-height: 1.4;

    display: inline-block;

    color: #fd6c00;
    border: 1px solid #fd6c00;
    background-color: #fff;
}

.over-night
{
    display: inline-block;

    color: #fd6c00;
}

.background-warning
{
    background-color: #ffdbbf;
}

.color-secondary
{
    color: #fd6c00;
}

.color-description
{
    color: #666;
}

.flex-between
{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.selected-title
{
    width: 100%;
    margin: 0;

    color: #fff;
    background-color: #fd6c00;
}

.caution-title
{
    position: relative;

    width: 100%;
    margin: 0;

    color: #fff;
    background-color: #f43;
}

.tour-amount-title
{
    position: relative;

    width: 100%;
    margin: 0;

    color: #375378;
    background-color: #eee;
}

.tour-amount-title:after
{
    font-family: FontAwesome;

    content: '\a0\a0\f054';
}

.tour-amount-title.active:after
{
    content: '\a0\a0\f078';
}

.package-rate-title
{
    display: inline-block;

    color: #fd6c00;
    border-radius: 6pt;
    background-color: #fff;
}

.ex-link
{
    text-decoration: underline;
}

:root
{
    --microtip-transition-duration: .1s;
    --microtip-transition-delay: 0s;
    --microtip-transition-easing: ease-in-out;
    --microtip-font-size: 7.2pt;
    --microtip-font-weight: bold;
    --microtip-text-transform: none;
}

[role~='tooltip-secondary'][data-microtip-size='medium']::after
{
    width: 55vw;

    white-space: initial;
}

[aria-label][role~='tooltip-secondary']::after
{
    text-align: left;

    color: #fd6c00;
    border: 1px solid #fd6c00;
    background: rgba(255, 255, 255, .95);
}

[role~='tooltip-secondary'][data-microtip-position|='top']::before
{
    background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/20…0,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
}

[role~='tooltip-primary'][data-microtip-size='medium']::after
{
    width: 55vw;

    white-space: initial;
}

[aria-label][role~='tooltip-primary']::after
{
    text-align: left;

    color: #375378;
    border: 1px solid #375378;
    background: rgba(255, 255, 255, .95);
}

[role~='tooltip-primary'][data-microtip-position|='top']::before
{
    background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/20…0,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
}

.html-tooltip-container
{
    position: relative;

    cursor: pointer;
}

.html-tooltip-container .html-tooltip-contents
{
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;

    visibility: hidden;

    width: 50vw;
    margin-left: -50vw;
    padding: 5px 0;

    -webkit-transition: opacity .5s;
            transition: opacity .5s;
    text-align: center;
    /* Fade in tooltip */

    opacity: 0;
    color: #333;
    border-radius: 6px;
    background-color: #fff;
}

.html-tooltip-container .html-tooltip-contents.large
{
    width: 60vw;
    margin-left: -60vw;
}

.html-tooltip-container .html-tooltip-contents.xlarge
{
    width: 75vw;
    margin-left: -75vw;
}

.html-tooltip-container .html-tooltip-contents.primary
{
    color: #375378;
    border: 1px solid #375378;
}

.html-tooltip-container .html-tooltip-contents.secondary
{
    color: #fd6c00;
    border: 1px solid #fd6c00;
}

.html-tooltip-container:hover .html-tooltip-contents
{
    visibility: visible;

    opacity: 1;
}

.html-tooltip-container:focus .html-tooltip-contents
{
    visibility: visible;

    opacity: 1;
}

.tooltip-title
{
    display: inline-block;

    text-align: left;

    color: #fff;
    border-radius: 3pt;
    background-color: #375378;
}

.air-hotel-selected
{
    /* 横幅のMAXに達しても改行しない */
    overflow: hidden;

    white-space: nowrap;
    /* ハミ出した部分を隠す */
            text-overflow: ellipsis;
    /* 「…」と省略 */

    -webkit-text-overflow: ellipsis;
    /* Safari */
         -o-text-overflow: ellipsis;
    /* Opera */
}

.filter-dialog
{
    display: block;

    width: 100%;
    margin: 0;
    padding: 0 0 100px 0;
}

.filter-dialog .filter-items
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 100%;
    margin: 0;
    padding: 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.filter-dialog .filter-items .filter-item .filter-item-title
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    color: #fff;
    border-bottom: 1px solid #fff;
    background-color: #375378;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter-dialog .filter-items .filter-item .filter-item-title h1,
.filter-dialog .filter-items .filter-item .filter-item-title h2,
.filter-dialog .filter-items .filter-item .filter-item-title h3,
.filter-dialog .filter-items .filter-item .filter-item-title h4,
.filter-dialog .filter-items .filter-item .filter-item-title h5,
.filter-dialog .filter-items .filter-item .filter-item-title h6
{
    font-size: 12pt;

    padding-top: 6pt;
    padding-right: 6pt;
    padding-bottom: 6pt;
    padding-left: 6pt;
}

.filter-dialog .filter-items .filter-item .filter-item-title:before
{
    font-family: 'FontAwesome';

    padding-left: 3pt;

    content: '\f055';
}

.filter-dialog .filter-items .filter-item .filter-item-title.opened:before
{
    font-family: 'FontAwesome';

    content: '\f056';
}

.filter-dialog .filter-items .filter-item .filter-item-input
{
    font-size: 12pt;

    position: relative;

    padding-top: 6pt;
    padding-right: 6pt;
    padding-bottom: 6pt;
    padding-left: 6pt;
}

.filter-dialog .filter-items .filter-item .filter-item-input input[type=text]
{
    font-size: 12pt;

    position: relative;

    padding-right: 6pt;
    padding-left: 6pt;

    border: 1px solid #375378;
    border-radius: 0;
}

.filter-dialog .filter-items .filter-item .filter-item-input input[type=button]
{
    font-family: FontAwesome;
    font-size: 12pt;

    position: relative;

    padding: 6pt;

    border: 1px solid #375378;
    border-radius: 0;
}

.filter-dialog .filter-items .filter-item .filter-item-input .fa-input
{
    position: absolute !important;
    right: 9px;

    width: 24px;
    height: 24px;
    padding: 2pt 4pt !important;

    border: none !important;
}

.filter-dialog .filter-items .filter-item .filter-item-input .suggested-items
{
    position: absolute;
    z-index: 30;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 100%;
    padding-right: 12pt;

    border: 1px solid #666;
    background-color: #fff;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.filter-dialog .filter-items .filter-item .filter-item-input input[type=number]
{
    border: 1px solid #375378;
}

.filter-dialog .filter-items .filter-item .filter-item-input select
{
    text-align: center;

    border: 1px solid #375378;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.filter-dialog .filter-items .filter-item .filter-item-input.horizontal
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
}

.filter-dialog .filter-items .filter-item .filter-item-input .checkboxes
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.filter-dialog .filter-items .filter-item .filter-item-input .checkboxes label
{
    font-size: 12pt;
    line-height: 2;
}

.filter-dialog .filter-items .filter-item .filter-item-input .checkboxes label.has-separator
{
    font-weight: 600;
}

.filter-dialog .filter-items .filter-item .filter-item-input .checkboxes label input[type=checkbox]
{
    display: none;
}

.filter-dialog .filter-items .filter-item .filter-item-input .checkboxes label input[type=checkbox] ~ span:before
{
    font-family: 'FontAwesome';
    font-size: 12pt;
    font-weight: 600;

    content: '\f096\00a0';

    color: #007fd0;
}

.filter-dialog .filter-items .filter-item .filter-item-input .checkboxes label input[type=checkbox]:checked ~ span:before
{
    font-family: 'FontAwesome';

    content: '\f14a\00a0';
}

.filter-dialog .filter-items .filter-item .filter-item-input .radio-buttons
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    width: 100%;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
}

.filter-dialog .filter-items .filter-item .filter-item-input .radio-buttons.vertical
{
        flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.filter-dialog .filter-items .filter-item .filter-item-input .radio-buttons label
{
    font-size: 14.4pt;
    font-weight: 600;
    line-height: 2;
}

.filter-dialog .filter-items .filter-item .filter-item-input .radio-buttons label input[type=radio]
{
    display: none;
}

.filter-dialog .filter-items .filter-item .filter-item-input .radio-buttons label input[type=radio] ~ span:before
{
    font-family: 'FontAwesome';
    font-size: 14.4pt;
    font-weight: 600;

    content: '\f10c\00a0';

    color: #007fd0;
}

.filter-dialog .filter-items .filter-item .filter-item-input .radio-buttons label input[type=radio]:checked ~ span:before
{
    font-family: 'FontAwesome';

    content: '\f058\00a0';
}

.autocomplete-items
{
    z-index: 30;

    display: none;

    background-color: white;
}

.autocomplete-items.is-shown
{
    position: absolute;
    top: 25.8pt;
    right: 6pt;
    left: 6pt;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: hidden;
    overflow-y: scroll;
        flex-direction: column;

    max-height: 70vh;

    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid #375378;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

.autocomplete-items .autocomplete-item
{
    font-size: 9pt;

    padding-top: 3pt;
    padding-bottom: 3pt;

    cursor: pointer;
}

body
{
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset;
}

.green-check
{
    color: #4f893b;
}

main,
main:before,
main:after
{
    font-size: 12pt;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

main
{
    min-height: 60vh;
}

main .page-title-container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

main h2.page-title
{
    font-size: 12pt;
    font-weight: bold;
    line-height: 36pt;

    display: block;

    color: #375378;
}

main .caution-container
{
    position: relative;

    height: 35px;
}

main .caution-container .caution-container-inner
{
    position: absolute;
    right: 0;
}

main .alert-message
{
    font-size: 9.6pt;
    font-weight: bold;
    line-height: 24pt;

    display: block;

    margin: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 12pt;

    color: #f43;
    background: #faccc8;
}

main .primary-message
{
    font-size: 9.6pt;
    font-weight: bold;
    line-height: 24pt;

    display: block;

    margin: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 12pt;

    color: #375378;
    background: #ffeeb7;
}

main .suggested-items
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 100%;
    margin: 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

main .suggested-items .suggested-item
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 100%;
    margin: 0;
    padding-top: 6pt;
    padding-right: 6pt;
    padding-bottom: 6pt;
    padding-left: 6pt;

    cursor: pointer;

    border-bottom: 1px solid #375378;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

main .suggested-items .suggested-item .country-name
{
    font-size: 7.2pt;
}

main .suggested-items .suggested-item .region-name
{
    font-size: 9.6pt;
}

main .regions
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 100%;
    margin: 0;
    padding-top: 6pt;
    padding-right: 6pt;
    padding-bottom: 6pt;
    padding-left: 6pt;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}

main .regions .region
{
    display: block;

    width: 100%;
    margin: 0;
    padding-top: 6pt;
    padding-right: 0;
    padding-bottom: 6pt;
    padding-left: 0;
}

main .regions .region .region-name
{
    font-size: 14.4pt;
    font-weight: 600;
}

main .regions .region .airport-cities
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    width: 100%;
    margin: 0;
    padding: 0;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

main .regions .region .airport-cities .airport-city
{
    font-size: 12pt;

    padding-top: 6pt;
    padding-right: 6pt;
    padding-bottom: 6pt;
    padding-left: 6pt;

    cursor: pointer;
}

main .regions .region .airport-cities .airport-city:after
{
    font-family: 'FontAwesome';

    content: '\00a0\f105\00a0';

    color: #f43;
}

main #map
{
    width: 100%;
    height: 40vh;
}

main .slider-item
{
    width: 100%;
    height: 40vh;

    background: #ddd no-repeat center center;
    background-size: cover;
}

.tippy-tooltip
{
    color: #fd6c00 !important;
    border: 1px solid #fd6c00 !important;
    background-color: #fff !important;
}

.tippy-backdrop
{
    background-color: #fff !important;
}

#ticket-types
{
    border: 1px solid #375378;
}

#ticket-types .tab
{
    border: none;
    border-radius: 0;
    background-color: #fff;
}

#ticket-types .tab.active
{
    background-color: #375378;
}

#ticket-types .tab:not(:last-child)
{
    border-right: 1px solid #375378;
}

.flight
{
    margin-top: 12pt;
}

.flight:not(:last-child)
{
    border-bottom: 1px solid #ccc;
}

.air-segments
{
    line-height: 1.0;

    margin: 0;
    padding: 0;
    padding-top: 12pt;
    padding-right: 6pt;
    padding-bottom: 12pt;
    padding-left: 6pt;

    list-style: none;
}

.air-segments .air-segment
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: row;

    list-style: none;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.air-segments .air-segment.transfered
{
    padding-top: 21.6pt;
}

.air-segments .air-segment .times
{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 25%;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.air-segments .air-segment .times:before
{
    position: absolute;
    right: -7px;

    width: 12pt;
    height: 12pt;

    content: '';

    border-radius: 100%;
    background-color: #375378;
}

.air-segments .air-segment .airports
{
    position: relative;

    display: block;

    padding-left: 24pt;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.air-segments .air-segment .airports.departure:before
{
    position: absolute;
    left: -2px;

    width: 0;
    height: 100%;

    content: '';

    border: 1px solid #375378;
}

.air-segments .air-segment .airports.has-transfer:before
{
    position: absolute;
    top: 12pt;
    left: -1.2pt;

    width: 0;
    height: 72pt;

    content: '';

    border: 1px dotted #375378;
}

.air-segments .air-segment .airports.has-transfer:after
{
    font-size: 7.2pt;
    line-height: 21.6pt;

    position: absolute;
    z-index: 100;
    top: 50%;
    left: -12pt;

    width: 21.6pt;
    height: 21.6pt;
    margin-top: -6pt;
    margin-top: 6pt;
    margin-bottom: 6pt;

    content: '乗継';
    text-align: center;
    white-space: nowrap;

    border: solid 1px #375378;
    border-radius: 100%;
    background: #fff;
}

.air-segments .air-segment .airports .summary
{
    font-size: 7.2pt;
    line-height: 1.4;

    display: inline-block;

    margin-top: 6pt;
    margin-right: 0;
    margin-bottom: 6pt;
    margin-left: 0;
    padding: 6pt;

    background: #eee;
}

.summary-balloons
{
    margin-top: -6pt;
    padding-bottom: 6pt;
}

.balloon-text
{
    font-size: 7.2pt;

    position: relative;

    max-width: 190px;
    margin-top: 6pt;
    padding: 6pt;

    color: #ff6c00;
    border: solid 1px #ff6c00;
    background: #fff;
}

.balloon-text:before
{
    position: absolute;
    top: -5px;
    left: 20px;

    width: 8px;
    height: 8px;

    content: '';
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border: solid #ff6c00;
    border-width: 1px 0 0 1px;
    background: #fff;
}

.price-bg
{
    background-color: #ffdabf;
}

.circle
{
    z-index: 40;

    margin: -6pt;
    padding-top: 6pt;
    padding-right: 3pt;
    padding-bottom: 6pt;
    padding-left: 3pt;

    border: 1px solid #375378;
    border-radius: 36pt;
    background-color: #fff;
}

.air-caution
{
    display: block;

    margin-top: 12pt;

    border: 1px solid #f43;
}

.air-caution-header
{
    position: relative;
}

.air-caution-header:after
{
    font-family: 'FontAwesome';

    position: absolute;
    top: 50%;
    right: 3pt;

    margin-top: -.75em;

    content: '\f054';
}

.air-caution-header.opened:after
{
    font-family: 'FontAwesome';

    position: absolute;
    top: 50%;
    right: 3pt;

    margin-top: -.75em;

    content: '\f078';
}

.selected_air_hotel_area
{
    display: inline-block;
}

.image_center_hight
{
    vertical-align: middle;
}

.selected_air_hotel_icon
{
    width: 60%;
    margin-left: 5px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx)
{
    body
    {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
