/* - - - Z-INDEX CATALOG - - - */
/*

*/

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
* {
    /*
        -webkit-appearance: none;
        -moz-appearance: none;
    */
}

::-webkit-input-placeholder {
    color: #d0d0d0;
}

::-moz-placeholder {
    color: #d0d0d0;
}

/* firefox 19+ */
:-ms-input-placeholder {
    color: #d0d0d0;
}

/* ie */
input:-moz-placeholder {
    color: #d0d0d0;
}

/* --- BODY --- */
html {
    height: 100%;
}

body {
    position: relative;
    height: 100%;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    flex-direction: column;

    min-height: 100%;
    background: #ffffff;

    font-family: 'RobotoCondensed', sans-serif;
    font-size: 1rem;
    color: #333333;

    overflow-x: auto;
    overflow-y: scroll;
}

.center {
    max-width: 1000px;
    box-sizing: border-box;

    padding: 0 15px;
    margin: 0 auto;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


/* --- HEADER --- */
.G-header {
    padding: 15px 0;
    background: url('/assets/images/brushed_bg.png');
}

.G-header.sales {
    background: #76b4e8;
}

.G-header.entrance {
    background: #f2a73c;
}

/*MEDIA QUERY*/
@media only screen and (max-width: 800px) {
    .G-header {
        min-height: 50px;
    }
}

.G-header .center {
    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: space-between;
    justify-content: space-between;

    -webkit-align-items: center;
    align-items: center;
}


.G-header .logo {
    display: block;
    margin-right: 15px;

    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    z-index: 1000;
    margin-bottom: -50px;
}

/*MEDIA QUERY*/
@media only screen and (max-width: 800px) {
    .G-header .logo {
        position: absolute;
        top: 20px;
        left: 20px;
    }
}

.G-header .logo img {
    display: block;
    top: 5px;
}

/*MEDIA QUERY*/
@media only screen and (max-width: 800px) {
    .G-header .logo img {
        width: 80px;
    }
}

.G-header h1 {
    font-family: 'Homestead', sans-serif;
    font-size: 20px;
    color: #C4FFF5;
    text-transform: uppercase;
}

.G-header.sales h1 {
    color: #fff;
}

.G-header .ph {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.G-header .cart, .G-header .checkout {
    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: center;
    justify-content: center;

    -webkit-align-items: center;
    align-items: center;

    margin-left: 22px;
    padding: 12px 18px;

    -webkit-flex-shrink: 0;
    flex-shrink: 0;

    font-size: 18px;
    color: #a4a4a4;
    font-weight: 300;

    background: #ffffff;
    transition: box-shadow .2s, color .2s, background .2s;
}

.G-header .checkout {
    margin-left: 2px;
    background-color: #DC534B;
    color: white;
}

.G-header .logout {
    padding-left: 30px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.5s;
}

.G-header .logout:hover {
    color: #D22F39;
}

.G-header .cart:before {
    display: block;
    content: "";

    width: 21px;
    height: 14px;

    margin-right: 16px;

    background: url('../images/cart.svg') no-repeat 0 0;
    background-size: 100%;
}

.G-header .cart:hover {
    color: #888;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.G-header .cart:active {
    color: #a4a4a4;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/*MEDIA QUERY*/
@media only screen and (max-width: 800px) {
    .G-header .cart div,
    .G-header .logout-dummy {
        display: none;
    }

    .G-header .cart {
        background: none;
        box-shadow: none;
        /*position: absolute;*/
        top: 15px;
        right: 10px;
    }

    .G-header .cart:hover {
        box-shadow: none;
    }

    .G-header .cart:before {
        background: url('../images/cart_res.svg') no-repeat 0 0;
        width: 35px;
        height: 25px;
        margin-right: 0px;
    }

    .G-header .cart:before svg {
        fill: red;
    }

    .G-header .cart:active {
        background: none;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* --- MAINPAGE --- */

.G-container {
    width: 100%;
    height: 100%;
    background: #272727;
    transition: height 0.5s;
    display: block;
}

.G-container.small-height {
    height: 85px;
}

.G-booking-container {
    width: 1000px;
    height: 100%;
    margin: 70px auto;
    transition: height 0.5s, opacity 0.5s;
    display: none;
    max-width: 100%;
}

.G-room-container {
    width: 1000px;
    height: 100%;
    margin: 70px auto;
    transition: height 0.5s, opacity 0.5s, transform 0.5s;
    display: none;
    z-index: 3;
}

.G-bed-container {
    width: 1000px;
    height: auto;
    margin: 70px auto;
    height: 0px;
    transition: height 0.5s, opacity 0.5s;
    display: none;
}

.G-shop-container {
    width: 1000px;
    height: auto;
    margin: 70px auto;
    transition: height 0.5s, opacity 0.5s;
    display: none;
}

.G-ticket-container,
.G-ticketmodify-container,
.G-roommodify-container {
    width: 1000px;
    height: auto;
    margin: 70px auto;
    transition: height 0.5s, opacity 0.5s;
    display: none;
}

/*MEDIA QUERY*/
@media only screen and (max-width: 1024px) {
    .G-ticket-container, .G-ticketmodify-container, .G-roommodify-container {
        width: 100%;
        margin: 10px auto;
    }

    .G-ticket-container .ticket-container .ticket .L-button.white:not(:disabled),
    .G-ticketmodify-container .ticket-container .ticket .L-button.white:not(:disabled),
    .G-roommodify-container .ticket-container .ticket .L-button.white:not(:disabled) {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .G-ticket-container .ticket-container .L-button.white:not(:disabled),
    .G-ticketmodify-container .ticket-container .L-button.white:not(:disabled),
    .G-roommodify-container .ticket-container .L-button.white:not(:disabled) {
        display: none;
    }

    .G-booking-container {
        width: 100%;
        margin: 10px auto;
    }

    .G-shop-container {
        width: 100%;
        margin: 10px auto;
    }

    .G-room-container {
        width: 100%;
        margin: 10px auto;
    }

    .G-roombuying-container {
        position: absolute !important;
    }

}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* --- POPUP CONTAINERS --- */

.G-roombuying-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    min-height: 100%;
    padding-bottom: 50px;
    z-index: 1001;
    transform: translate(0, -100%) translateZ(0);
    -webkit-transform: translate(0, -100%) translateZ(0);
    transition: all 800ms;
    visibility: hidden;
    display: none;
}

.G-upsell-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    min-height: 100%;
    z-index: 1001;
    transform: translate(0, -100%) translateZ(0);
    -webkit-transform: translate(0, -100%) translateZ(0);
    transition: all 800ms;
    visibility: hidden;
}

.G-upticket-container, .G-refund-container, .G-room-refund-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    /*min-height: 300%;*/
    height: 100%;
    z-index: 1002;
    transform: translate(0, -100%) translateZ(0);
    -webkit-transform: translate(0, -100%) translateZ(0);
    transition: all 800ms;
    visibility: hidden;
}

.G-choose-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    min-height: 100%;
    z-index: 1001;
}

.G-bedbuying-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.G-prebuying-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.G-basket-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    min-height: 150%;
    z-index: 1001;
    transform: translate(0, -100%) translateZ(0);
    -webkit-transform: translate(0, -100%) translateZ(0);
    transition: all 800ms;
    visibility: hidden;
}

@media only screen and (max-width: 800px) {
    .G-upsell-container {
        transition: none;
        height: auto;
    }

    .G-upticket-container {
        min-height: 120%;
    }

    .G-refund-container {
        min-height: 120%;
    }

    .G-room-refund-container {
        min-height: 120%;
    }

    .G-basket-container {
        transition: none;
    }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


/* --- BARION BANNER --- */
.G-barion_banner {
    display: flex;
    margin: 0 auto;
    margin-top: 50px;
}

.G-barion_banner img {
    display: block;
}

.G-barion_banner img:first-child {
    margin-right: 1em;
}

.text-center {
    text-align: center !important;
}

body.corvinus .G-header .cart, body.corvinus .G-header .cart:hover {
    background-color: #1B213E;
    color: white;
}

body.corvinus .G-header h1 {
    color: #1B213E;
}

body.corvinus .G-checkout_step .inputs {
    max-width: initial;
}

body.corvinus .G-summary-container {
    display: flex;
    flex-direction: column-reverse;
}

body.corvinus .G-summary-container .summary-box {
    width: 100% !important;
}

body.corvinus.main-page, body.corvinus.main-page .G-container, body.corvinus.main-page .docs,
body.corvinus .G-checkout_progress .step.selected.done .box, body.corvinus .G-checkout_progress .step.selected .box {
    background-color: #5C6873;
}

body.corvinus .L-button.white:not(:disabled), body.corvinus .L-button.red:not(:disabled), body.corvinus .L-button {
    color: #1B213E;
    border: 0;
}

body.corvinus .G-header, body.corvinus .G-message-container, .G-upticket-container .popup,
body.corvinus .L-button,
body.corvinus .L-button.red:not(:disabled) {
    background: none;
    background-color: #F5C832 !important;
}

body.corvinus .G-header .logo img {
    max-height: 50px !important;
}

body.corvinus .G-header .logo {
    margin-bottom: initial;
}

body.corvinus .G-header h1 {
    font-size: 19px;
}

@media only screen and (max-width: 800px) {
    body.corvinus .G-header .logo {
        top: initial;
    }

    body.corvinus .G-header .center .logo img {
        margin-top: initial;
    }
}

body.pop .G-header {
    background: none;
    background-color: #FAAF40;
}

body.pop .G-checkout_step .inputs,
body.simple-checkout .G-checkout_step .inputs{
    max-width: initial;
}

body.pop .G-header .logo img {
    max-height: 40px !important;
}

body.pop .G-header .logo {
    margin-bottom: initial;
}

body.pop .G-header h1 {
    font-size: 19px;
}

@media only screen and (max-width: 800px) {
    body.pop .G-header .logo {
        top: initial;
    }

    body.pop .G-header .center .logo img {
        margin-top: initial;
    }
}


.cart-container {
    background-color: #DC534B;
    color: #ffffff;
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
}

.payment-result .cart-container {
    background-color: #F2A73C;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-result textarea {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.payment-result .cart-container .name {
    text-align: left;
}

.cart-container .title {
    font-size: 18px;
    line-height: 31px;
    text-transform: uppercase;
    font-weight: 700;
}
.cart-container .mb-3 {
    margin-bottom: 1rem!important;
}

.cart-container .summary {
    font-size: 16px;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-container .d-flex {
    display: flex;
    justify-content: center;
}

.cart-container .name {
    margin-right: 1rem;
    flex-grow: 1;
}

.cart-container .d-none {
    display: none;
}

.cart-container .text-nowrap {
    white-space: nowrap!important;
}

.cart-container .text-end {
    text-align: right!important;
}

.cart-container .mb-2 {
    margin-bottom: 0.5rem!important;
}

.cart-container .mt-3 {
    margin-top: 1rem!important;
}

.cart-container .ml-3 {
    margin-left: 3rem!important;
}

.cart-container .checkout-button {
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    color: #192e4d;
    font-weight: 700;
    padding: 3px 16px;
    background-color: #ffffff;
}
.d-none {
    display: none;
}

.payment-banners {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding:10px;
    gap: 20px;
    flex-wrap: wrap;
    img {
        max-height: 35px;
    }
}
