@import "../fonts/opensans.css";

@font-face {
    font-family: "Bookman Old Style";
    src: url("/fonts/bookman-old-style.ttf");
}

:root {
    color-scheme: light dark;
}
textarea {
    background: light-dark(#efedea, #223a2c) !important;
}
@media (prefers-color-scheme: dark) {
    .select2-search__field {
        background-color: #df9165;
        color: whitesmoke;
    }
    textarea {
        background-color: white;
        color: black;
    }
}

@media (prefers-color-scheme: light) {
    textarea {
        background-color: white;
        color: black;
    }
}
/*@font-face {*/
/*    font-family: "Open Sans";*/
/*    src: url("/fonts/OpenSans-Regular.ttf");*/
/*}*/

*, ::after, ::before {
    box-sizing: border-box;
}


a {
    text-decoration: none;
}

img {
    border: none;
    vertical-align: bottom;
}

html, body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    background: #9e7943 url(/images/bg_fly.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
    font-family: 'Open Sans';
    font-size: 16px;
}

.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

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

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

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

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

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

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

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

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

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

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

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

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

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

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

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

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

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

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

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

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}
.d-space-between {
    justify-content: space-between;
}
.w-50 {
    width: 50%;
}

.fader {
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: #a27c65 url(/images/bg_fly.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 1400px;
}

#wrapper {
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
}

.container {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    max-width: 100%;
}

section#main {
    display: flex;
    flex: auto;
    /*overflow-y: auto;*/
}
section#main .container {
    color: #fedf6f;
    /*background-color: #3c1901c7;*/
    /*background-color: #401e06;*/
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    /*box-shadow: 4px 2px 2px #111;*/
    /*background-color: #8e6a51c9;*/
    background-color: #8e7251ba;
    /*text-shadow: 2px 0 0 #604444;*/
}
section#main .container.main-page {
    background-color: transparent;
    box-shadow: none;
}
section#main .container.main-page .row {
    display: flex;
    margin: 0 -20px;
    justify-content: space-between;
}
section#main .container.main-page .col {
    width: 45%;
    padding: 10px;
    box-sizing: border-box;
}
section#main .container.main-page .block {
    padding: 10px 10px 30px;
    /*background-color: #82502c;*/
    background-color: #82572cb3;
    box-shadow: 2px 2px 3px #000000a3;
}

section#main .container.main-page .block > div {
    display: flex;
    flex-direction: column;
}
section#main .container.main-page .block > div a {
    margin: 10px 5px;
    color: #e9dfd9;
    font-size: 1.2em;
    /*text-decoration: none;*/

    /*border: 1px solid #c3a407;*/
    /*padding: 4px;*/
    /*border-radius: 4px;*/
    /*background-color: #bfa60638;*/
}
section#main .container.main-page .block > div a:hover {
    color: #ebda84;
}
.main-page.main-page-client {
    min-height: 85vh;
}
section#main .title {
    display: block;
    box-shadow: 4px 2px 2px #5c3c21a3;
    border: 1px #48280e solid;
    /*background-image: url(/images/leftmenu_header_bg.jpg);*/
    position: relative;
    background-size: cover;
    margin: -10px -10px 10px -10px;
    background-color: #90603b;
    background-image: none;
}
section#main .title h1 {
    display: flex;
    flex: 1;
    padding: 10px;
    font-size: 20px;
    font-weight: normal;
    /*color: #d0c394;*/
    color: #d0c394;
    text-shadow: 1px 1px #584040;
    /*text-shadow: 2px 2px #000;*/
    /*text-shadow: none;*/
    margin: 0;
}
/*section#main .title h1:not(.unhovered):hover {
    cursor: pointer;
}
 */
#main a:not(.button-vip) {
    color: white;
    text-decoration: underline;
}
#main a:hover:not(.button-vip) {
    /*color: #f3ca8c;*/
    color: #ffd586;
}

.lounge-modal-body-text {
    padding: 1rem;
    font-weight: bold;
}

#main .content-block-light {
    background-color: white;
    color: #4d4d4d;
}

#main .content-block-light a {
    color: #c17705;
}

#main .content-block-light a:hover {
    color: #a56607;
}


/* Mobile app buttons */
.mobile-apps {
    margin: 10px;
    display: flex;
}
.mobile-apps a span {
    float: none;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    line-height: 20px;
    height: 20px;
}
.mobile-apps a {
    color: white;
    /*display: inline-block;*/
    height: 24px;
    padding: 0px 5px;
    vertical-align: middle;
    float: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin-left: 5px;
    text-decoration: none;
}
.mobile-apps a .icon,
.mobile-apps a .text {
    /*display: inline-block;*/
    height: 20px;
    line-height: 20px;
    /*margin-top: 2px;*/
    display: flex;
}
.mobile-apps a .icon {
    width: 20px;
    background-repeat: no-repeat;
    margin-right: 5px;
}
.mobile-apps a .text {
    text-decoration: none;
}
.mobile-apps a.android {
    background-color: #a4c739;
}
.mobile-apps a.apple {
    background-color: #8c8c8c;
}
.mobile-apps a.android .icon {
    background-image: url("/images/android.png");
}
.mobile-apps a.apple .icon {
    background-image: url("/images/apple.png");
}

.android-hide .android {
    display: none;
}
.ios-hide .apple {
    display: none;
}

.section-mobile-app-apps .container {
    text-align: right;
}

/* Header */
header {
    width: 100%;
    /*background-color: #0000005c;*/
    background-color: #321d0e57;
    overflow: hidden;
    padding: 10px 0 0;
    position: relative;
    display: block;
}

header .container {
    flex-direction: row;
    position: relative;
    overflow: hidden;
    padding: 0;
}

header .title {
    margin: 0 0 10px 10px;
    float: left;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header h1, header .title span {
    color: #d0c394;
    font-weight: normal;
    font-size: 24px;
}

header .icon {
    width: 74px;
    float: left;
}

header .icon img {
    align-self: center;
    width: 75px;
}

header .blk-info #phone_list {
    margin-left: 0;
    margin-top: 20px;
}

header .blk-info #cards {
    margin-left: 0;
}

header .blk-info p a,
header .blk-info p a:hover {
    color: white;
    font-size: 20px;
    text-decoration: none;
}
header .blk-info p {
    z-index: 100;
    color: white;
    font-size: 20px;
    margin: 10px 5px 10px 0;
    text-decoration: none;
}

header .blk-info {
    text-align: right;
    float: right;
    width: 50%;
}

header .blk-info .row {
    display: flex;
}
header .blk-info .language-row {
    justify-content: flex-end;
}


.language,
.language a {
    font-size: 12px;
    color: #d0c394;
    text-shadow: 2px 2px #000;
}

.language .selected {
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    /*background-image: url('/images/bar_bg.png');*/
    /*background-repeat: repeat-x;*/
    /*background-position: top;*/
    background: #424242;
    /*background: rgb(0,0,0);*/
    /*background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(34,34,34,1) 50%, rgba(34,34,34,1) 100%);*/
}

footer, footer .container {
    /*height: 150px;*/
}

footer p {
    color: #b1b1b1;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer a {
    color: #b1b1b1;
    text-decoration: underline;
}
footer a:hover {
    color: #d1d1d1;
}

footer ul li,
footer p
{
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 2px 0;
}
footer .container > .row {
    overflow: hidden;
}
footer .buttons {
    overflow: hidden;
}
footer .buttons .item {
    width: 33.3%;
    text-align: center;
    float: left;
}
footer .buttons .item a {
    display: block;
}
footer .buttons .item .img {
    height: 75px;
}

footer img {
    margin-top: 9px;
}
footer .buttons .item:first-child img {
    margin-top: 5px;
}

footer .buttons p {
    color: #fff;
    text-align: center;
    margin-top: 3px;
    margin-bottom: 0;
}

footer .mobile-apps {
    justify-content: center;
}

footer .copyright {
    overflow: hidden;
    height: 30px;
    color: #ababab;
    margin-top: 20px;
    justify-content: center;
}

header .container.menu-second-level {
    overflow: visible;
}
.menu-row {
    display: flex;
    /*justify-content: space-evenly ;*/
    justify-content: flex-end;
    padding: 6px;
    background-color: #73431d85;
    width: 100%;
}

.auth-phone {
    width: 100%;
    padding: 12px 20px;
}
.auth-action,
.auth-action-orders {
    font-size: 1.1rem;
    color: #d0c394;
    display: inline-block;
    /*width: 33%;*/
    text-align: center;
    text-decoration: underline
}
.auth-help {
    text-align: left;
}
.auth-action:hover,
.auth-action-orders:hover {
    cursor: pointer;
    color: darkred;
}

.menu-second-level .menu-item {
    background-color: #d0c394;
    color: #73431d;
    padding: 0 10px;
    border-radius: 1em;
    text-decoration: none;
    margin-left: 0.7rem;
    position: relative;
}
.menu-second-level .menu-item:hover {
    background-color: #eae0bc;
    color: #533219;
}

.badge {
    background-color: #6f4317;
    color: #fedf6f;
    border-radius: 0.5rem;
    position: absolute;
    font-size: 0.8rem;
    display: inline-block;
    text-align: center;
    padding: 0 0.5rem;
    top: 0;
    left: 100%;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    vertical-align: baseline;
    transform: translate(-50%,-50%);
}

.cssInfoModalBody,
.cssInfoGeoModalBody {
    min-height: 10rem;
    padding: 2rem 2rem;
}
.cssInfoModalBodyRow {
    display: flex;
    justify-content: center;
}
.cssInfoModalBodyFields {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.cssInfoModalHeader {
    display: flex;
    justify-content: space-between;
}
.cssInfoModalHeader p {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}
.cssInfoModalFooter {
    display: flex;
    justify-content: center;
    /*flex-direction: column;*/
}
.cssInfoModalFooter a {
    /*width: 100%;*/
    text-align: center;
    margin-bottom: 1rem;
}
.cssInfoModalText {
    color: black;
    font-weight: bold;
    text-align: justify;
    font-size: 1.1rem
}
.asterisk-required {
    margin: 0 4px;
}

.error {
    color: #b10000 !important;
    font-weight: bold;
}

.button-with-spinner {
    position: relative;
}
.button-with-spinner .loader-spinner {
    display: none;
    left: 50%;
    margin-left: -39px;
    top: 50%;
    margin-top: -12px;
    position: absolute;
}
.button-with-spinner:disabled .loader-spinner {
    display: block;
}

.banner {
    margin: 0 10px;
    padding: 10px;
    width: 100%;
}
.banner.banner-login {
    background-color: #9e6b43;
    text-align: center;
    font-size: 1.2em;
}

@media (max-width: 630px) {

    header .blk-info p a,
    header .blk-info p a:hover {
        font-size: 17px;
    }

    .container {
        width: 100%;
        display: flex;
        /*padding-bottom: 35px;*/
    }

    header.mobile-hide {
        display: none;
    }

    header .icon {
        display: flex;
        float: none;
    }

    header .title {
        min-height: auto;
        align-self: flex-start;
    }

    header .title h1 {
        margin: 10px 0;
    }


    header .content {
        display: flex;
        flex-direction: column-reverse;
        flex: 1;
        justify-content: flex-end;
    }

    header .blk-info {
        width: auto;
        float: none;
    }

    header .blk-info p {
        position: relative;
        font-size: inherit;
        margin: 0 10px 0 0;
    }

    header .blk-info .phone {
        text-align: left;
        padding-left: 21px;
        padding-top: 2px;
    }

    header .blk-info .language {
        position: absolute;
        right: 4px;
        top: 0;
    }

    header .mobile-apps {
        position: absolute;
        right: 0;
        bottom: -15px;
    }

    section#main .container.main-page .row {
        flex-direction: column;
    }
    section#main .container.main-page .col {
        width: 100%;
    }

    .menu-row {
        padding: 13px 0;
        display: flex;
        justify-content: flex-end;
    }

    .menu-row .menu-item {
        margin-right: 1em;
    }

    .menu-second-level .menu-item span {
        display: none;
    }
}
@media all and (max-width: 400px) {
    header .blk-info p a,
    header .blk-info p a:hover {
        font-size: 13px;
    }
}
@media all and (max-width: 330px) {
    header .icon {
        margin-top: 20px;
    }
    header .content {
        margin-top: 20px;
    }
    header .title {
        min-height: 70px;
        margin-bottom: 0;
    }

    header .blk-info .phone {
        position: absolute;
        top: 0;
        left: 0;
    }
    .mobile-apps {
        margin: 10px 3px;
    }
    header .blk-info .language {
        right: -8px;
    }

}

@media (min-width: 630px) {
    .section-mobile-app-apps {
        display: none;
    }
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
    background-color: #0e0a06c7;
}
.fade.in {
    opacity: 1;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal.fade .modal-dialog {
    /*-webkit-transform: translate(0, -25%);*/
    /*-ms-transform: translate(0, -25%);*/
    /*-o-transform: translate(0, -25%);*/
    /*transform: translate(0, -25%);*/
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}

.modal-dialog {
    position: relative;
    margin: 30px auto;
    max-width: 100%;
    width: 600px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-header {
    color: #fff;
    padding: 9px 15px;
    background-color: rgb(163, 132, 104);
    border-bottom: 1px solid #eee;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-topright: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    min-height: 40px;
}

.modal-header .close {
    margin-top: -2px;
    cursor: pointer;
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    /*opacity: 0.2;*/
    cursor: pointer;
}

.modal-body {
    position: relative;
    padding: 15px;
    color: #333230;
}
.modal-body a {
    color: black !important;
}

#description {
    /*color: #b99359;*/
    color: #f3dfd0;
    text-align: center;
    margin: 10px 0;
    font-size: 1.2em;
}

#main-menu ul {
    list-style: none;
    margin: 0;
    display: flex;
    background-color: #6f4317;
    padding: 5px;
    border: 1px solid #6d4a2a;
    box-sizing: border-box;
    box-shadow: 2px 2px 3px #000000a3;
    justify-content: space-evenly;
}
#main-menu ul li {
    display: block;
    width: 33%;
    text-align: center;
}
#main-menu ul li a {
    display: block;
    color: #d0c394;
    text-decoration: underline;
}
#main-menu ul li a:hover {
    color: #f3e9c7;
}
.row {
    clear: both;
}

.col-mb-4 {
    width: 33.33%;
    float: left;
}

.clear {
    clear: both;
}
.clear:before {
    content: '';
    display: table;
    width: 100%;
}

@media (max-width: 800px) {
    body {
        background: #a27c65 url(/images/bg_fly_m_13.jpg);
        /*background-position-y: 70px;*/
        background-position-y: -23px;
        background-repeat: no-repeat;
        background-size: contain;

        background-repeat: no-repeat;
        /* background-size: contain; */
        background-attachment: fixed;
    }
}

@media (max-width: 630px) {
    footer .col-mb-4 {
        width: 50%;
    }
    footer .row .col-mb-4:last-child {
        width: 100%;
    }
}

.breadcrumbs {
    list-style: none;
    margin: 10px 5px;
    padding: 0;
    font-size: 0.75em;
}
.breadcrumbs li {
    display: inline-block;
    margin-right: 0px;
    /*color: #b99359;*/
    color: #462d06;
    text-shadow: 0 0 #523100;
    padding: 1px 4px;
    border: 1px solid #a38468;
    margin-bottom: 2px;
    border-radius: 4px;
    background-color: #a38468a6;
}
.breadcrumbs li:before {
    content: '>>';
    display: inline-block;
    color: #9c8b55;
    font-weight: bold;
    display: none;
}
.breadcrumbs li:first-child:before {
    display: none;
}
.breadcrumbs li  a {
    /*color: #cfba79;*/
    color: #920e06;
}
.breadcrumbs li  a:hover {
    /*color: #f5e2a9;*/
    color: #fffef9;
    text-shadow: 0 0 5px #321d0e;
}

.hidden {
    display: none;
}

.button-vip {
    font-size: 1.1em;
    font-weight: bold;
    display: inline-block;
    color: #523a11;
    text-decoration: none;
    padding: .3em 0.5em;
    outline: none;
    border-width: 2px 0;
    border-style: solid none;
    border-color: #c69c52 #000 #8c622b;
    border-radius: 6px;
    background: linear-gradient(#d68f4b, #cca05b) #9b591c;
    transition: 0.2s;
    text-shadow: 0 0 1px white;
    cursor: pointer;
}
.button-vip:hover { background: linear-gradient(#c69c52, #c79a46) #f1bf63; }
.button-vip:active { background: linear-gradient(#c69c52, #c79a46) #f1bf63; }
.button-vip:disabled {
    background: linear-gradient(#a97442, #b58d4f) #a97442;
    color: #8c5d0d;
}


.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 0.9em;
}
.lds-ellipsis div {
    position: absolute;
    top: 0.5em;
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

input[type=checkbox] {
    /*display: none;*/
}
input[type=checkbox]:after {
    content: "";
    height: 1em;
    width: 1em;
    border: 1px solid #c5906b;
    display: inline-block;
    position: relative;
    background-color: #FFF;
    padding: 0;
    text-align: center;
    line-height: 1em;
}
input[type=checkbox]:checked:after {/* <-- ставим иконку, когда чекбокс включен  */
    content: '\2714';
    /*position: absolute;*/
    /*top: -5px;*/
    /*left: 0;*/
    /*font-size:23px;*/
    color:#495057;
}


@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.qr-code svg > rect {
    fill: #cccccc;
}
.qr-code svg > path {
    fill: #070707;
}


@media (prefers-color-scheme: dark) {
    .button-vip {
        color: #f8e6d3;
        border-color: #c69c52 #000 #8c622b;
        background: linear-gradient(#cd8434, #efe0c9) #d68f4b;
    }
    .qr-code svg > rect {
        fill: #cccccc;
    }
    .qr-code svg > path {
        fill: #070707;
    }
}

.container #vip_main_frame {
    margin: -10px;
    width: auto;
}
#main #vip_information {
    box-shadow: none;
}

.new-site {
    text-align: center;
    margin-bottom: 10px;
    background-color: #ffffff6e;
    padding: 8px;
}
.new-site p {
    margin-top: 0;
    color: red;
    font-size: 1.1em;
}
.new-site a {
    border: 1px solid #291111;
    padding: 3px 5px;
    border-radius: 8px;
    color: #f5de97;
    background-color: #401e06;
}
.new-site a:hover {
    color: white;
}

.old-site {
    clear: both;
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
}
.old-site a {
    border: 1px solid #291111;
    padding: 3px 5px;
    border-radius: 8px;
    color: #f5de97;
    background-color: #401e06;
}
.old-site a:hover {
    color: white;
}

.p-1 {
    padding: 0.25rem!important;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 100%;
}
.d-flex {
    display: flex;
}
.d-flex-column {
    flex-direction: column;
}

.left-panel {
    flex-grow: 0.5;
}

.button-enabled {
    pointer-events: auto;
    opacity: 1;
}
.button-enabled:hover {
    cursor: pointer;
}

.button-disabled {
    pointer-events: none;
    opacity: 0.4;
}
.disabled:hover {
    cursor: not-allowed;
}
.lounge-bar {
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    justify-content: space-evenly;
    padding: 1rem;
    background: wheat;
    margin: -10px -10px -10px -10px;
}
.search-action {
    padding: .5rem 1rem;
}
.lounge-scroll-action {
    color: #584040 !important;
    font-weight: bold;
    text-underline-offset: 2px;
    text-decoration-style: dashed !important;
}
.lounge-scroll-action:hover {
    cursor: pointer;
}
.partnerImage {
    min-height: 130px;
    max-width: 260px;
}
.holidays {
    width: 25%;
    margin: 0 auto;
}
.holidays-image {
    width: 55%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-image: var(--holiday-image);
}
#foreign-cities {
    margin-top: 1rem;
}
.city-autocomplete-suggestion {
    background-color: #82572cb3;
    padding: 0.5em !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    margin: 0 1.5% 4px 1.5%;
    width: 30% !important;
}
.city-autocomplete-suggestion:hover {
    background: #82572cb3;
    box-shadow: #6f4317 0px 3px 8px;
}

.select2-results[data-theme='dark'] {
    background: #6f4317 !important;
}
.select2-results__options[data-theme='dark'] {
    background: #6f4317 !important;
}
@media (prefers-color-scheme: dark) {
    .select2-results {
        background: #6f4317 !important;
    }
    .select2-results__options {
        background: #6f4317 !important;
    }
}
/*.city-autocomplete-suggestion:hover + a {
    color: whitesmoke !important;
}*/
.city-autocomplete-suggestion a {
    color: #eae0bc !important;
    font-weight: bold;
}
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .search-action {
        padding: .15rem .25rem;
        margin-bottom: 0.5rem;
    }
    .lounge-scroll-action {
        padding: .15rem;
    }


    .float-md-start {
        float: left !important;
    }
    .float-md-end {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-grid {
        display: grid !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: flex !important;
    }
    .d-md-inline-flex {
        display: inline-flex !important;
    }
    .d-md-none {
        display: none !important;
    }
    .flex-md-fill {
        flex: 1 1 auto !important;
    }
    .flex-md-row {
        flex-direction: row !important;
    }
    .flex-md-column {
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }
    .flex-md-wrap {
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        justify-content: center !important;
    }
    .justify-content-md-between {
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        justify-content: space-around !important;
    }
    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-md-start {
        align-items: flex-start !important;
    }
    .align-items-md-end {
        align-items: flex-end !important;
    }
    .align-items-md-center {
        align-items: center !important;
    }
    .align-items-md-baseline {
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        align-items: stretch !important;
    }
    .align-content-md-start {
        align-content: flex-start !important;
    }
    .align-content-md-end {
        align-content: flex-end !important;
    }
    .align-content-md-center {
        align-content: center !important;
    }
    .align-content-md-between {
        align-content: space-between !important;
    }
    .align-content-md-around {
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        align-content: stretch !important;
    }
    .align-self-md-auto {
        align-self: auto !important;
    }
    .align-self-md-start {
        align-self: flex-start !important;
    }
    .align-self-md-end {
        align-self: flex-end !important;
    }
    .align-self-md-center {
        align-self: center !important;
    }
    .align-self-md-baseline {
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        align-self: stretch !important;
    }
    .order-md-first {
        order: -1 !important;
    }
    .order-md-0 {
        order: 0 !important;
    }
    .order-md-1 {
        order: 1 !important;
    }
    .order-md-2 {
        order: 2 !important;
    }
    .order-md-3 {
        order: 3 !important;
    }
    .order-md-4 {
        order: 4 !important;
    }
    .order-md-5 {
        order: 5 !important;
    }
    .order-md-last {
        order: 6 !important;
    }
    .m-md-0 {
        margin: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }
    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-md-0 {
        margin-top: 0 !important;
    }
    .mt-md-1 {
        margin-top: 0.25rem !important;
    }
    .mt-md-2 {
        margin-top: 0.5rem !important;
    }
    .mt-md-3 {
        margin-top: 1rem !important;
    }
    .mt-md-4 {
        margin-top: 1.5rem !important;
    }
    .mt-md-5 {
        margin-top: 3rem !important;
    }
    .mt-md-auto {
        margin-top: auto !important;
    }
    .me-md-0 {
        margin-right: 0 !important;
    }
    .me-md-1 {
        margin-right: 0.25rem !important;
    }
    .me-md-2 {
        margin-right: 0.5rem !important;
    }
    .me-md-3 {
        margin-right: 1rem !important;
    }
    .me-md-4 {
        margin-right: 1.5rem !important;
    }
    .me-md-5 {
        margin-right: 3rem !important;
    }
    .me-md-auto {
        margin-right: auto !important;
    }
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-md-3 {
        margin-bottom: 1rem !important;
    }
    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-md-5 {
        margin-bottom: 3rem !important;
    }
    .mb-md-auto {
        margin-bottom: auto !important;
    }
    .ms-md-0 {
        margin-left: 0 !important;
    }
    .ms-md-1 {
        margin-left: 0.25rem !important;
    }
    .ms-md-2 {
        margin-left: 0.5rem !important;
    }
    .ms-md-3 {
        margin-left: 1rem !important;
    }
    .ms-md-4 {
        margin-left: 1.5rem !important;
    }
    .ms-md-5 {
        margin-left: 3rem !important;
    }
    .ms-md-auto {
        margin-left: auto !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-md-0 {
        padding-top: 0 !important;
    }
    .pt-md-1 {
        padding-top: 0.25rem !important;
    }
    .pt-md-2 {
        padding-top: 0.5rem !important;
    }
    .pt-md-3 {
        padding-top: 1rem !important;
    }
    .pt-md-4 {
        padding-top: 1.5rem !important;
    }
    .pt-md-5 {
        padding-top: 3rem !important;
    }
    .pe-md-0 {
        padding-right: 0 !important;
    }
    .pe-md-1 {
        padding-right: 0.25rem !important;
    }
    .pe-md-2 {
        padding-right: 0.5rem !important;
    }
    .pe-md-3 {
        padding-right: 1rem !important;
    }
    .pe-md-4 {
        padding-right: 1.5rem !important;
    }
    .pe-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-0 {
        padding-bottom: 0 !important;
    }
    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-md-3 {
        padding-bottom: 1rem !important;
    }
    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-md-5 {
        padding-bottom: 3rem !important;
    }
    .ps-md-0 {
        padding-left: 0 !important;
    }
    .ps-md-1 {
        padding-left: 0.25rem !important;
    }
    .ps-md-2 {
        padding-left: 0.5rem !important;
    }
    .ps-md-3 {
        padding-left: 1rem !important;
    }
    .ps-md-4 {
        padding-left: 1.5rem !important;
    }
    .ps-md-5 {
        padding-left: 3rem !important;
    }
    .gap-md-0 {
        gap: 0 !important;
    }
    .gap-md-1 {
        gap: 0.25rem !important;
    }
    .gap-md-2 {
        gap: 0.5rem !important;
    }
    .gap-md-3 {
        gap: 1rem !important;
    }
    .gap-md-4 {
        gap: 1.5rem !important;
    }
    .gap-md-5 {
        gap: 3rem !important;
    }
    .text-md-start {
        text-align: left !important;
    }
    .text-md-end {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }



}

@media (max-width: 428px) {
    .holidays-image {
        order: 999;
        height: 50px;
    }
    #vip-menu {
        background-image: url("/images/vip.png") !important;
    }
    #biz-menu {
        background-image: url("/images/biz.png") !important;
    }
    #ft-menu {
        background-image: url("/images/ft.png") !important;
    }
    #check-menu {
        background-image: url("/images/status.png") !important;
    }
    #news-menu {
        background-image: url("/images/news.png") !important;
    }
    #main-menu ul li a {
        background-repeat: no-repeat !important;
        background-size: contain !important;
        width: 48px;
        height: 48px;
        color: transparent;
        user-select: none;
    }
    #main-menu ul li a:hover {
        color: transparent;
        user-select: none;
    }
}
