﻿html {
    overflow: hidden;
}

html, body, div, span {
    font-family: 'Open Sans', sans-serif;
}

.container {
    margin-top: 125px;
}

#message {
    transform: translateY(-100px);
}

#message-appendix {
    display: none !important;
}
/*header*/
span.scheme {
    padding-left: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.delimer > img {
    height: 40px;
}

.delimer {
    position: absolute;
    top: 5px;
}

.languages-container {
    height: 30px;
    width: 50px;
    top: 15px;
    right: 110px;
    position: absolute;
}

#languagesDiv {
    z-index: 1;
    width: 40px;
    float: right;
    position: absolute;
}

.logo {
    position: absolute;
    top: 0px;
    left: 5px;
    margin: 0px;
    padding: 0px;
    height: 50px;
    width: 150px;
}

    .logo > img {
        width: 140px;
        position: absolute;
        margin: auto;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
    }

.order-timer {
    position: absolute;
    right: 40px;
    top: 7px;
}

.timer-text.bottom {
    top: 16px;
}

.timer-text.top {
    top: 4px;
}

.timer-text {
    width: 100px;
    font-size: 12px;
    position: absolute;
    right: 75px;
}

.order-timer > span.timer {
    width: 75px;
    font-size: 25px;
    color: #e22823;
    text-align: center;
    color: red;
}

.btn-toggle-cart, .btn-close-cart {
    top: 0px;
    height: 50px;
    width: 50px;
    padding: 15px;
}

.btn-close-cart {
    display: none;
    color:black;
    font-weight:bold;
}

.btn-toggle-cart {
    display: none;
    position: fixed;
    right: 360px;
}

    .btn-toggle-cart > button > img, .btn-close-cart > button > img {
        position: absolute;
        top: 20px;
        left: 20px;
    }
/*end-header*/

/*main*/
.wrapper {
    width: 100vw;
    height: 100vh;
}

.main-page {
    position: fixed;
    width: calc(100% - 360px);
    height: 100vh;
    left: 0px;
    top: 0px;
}

.cart {
    max-width: 100%;
    transition: .2s;
    position: fixed;
    width: 360px;
    height: 100%;
    top: 0px;
    right: 0px;
    border: 0.4px solid grey;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

b, strong {
    font-weight: 700;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.is-full-width {
    width: 100% !important;
}

.is-list {
    transform: translateX(-34px);
}

.hallframe {
    margin-top: 55px;
    z-index: -2;
    position: fixed;
    width: calc(100% - 360px);
    height: calc(100% - 100px);
}

.event-info-container {
    position: fixed;
    top: 50px;
    left: 160px;
    background-color: transparent;
    height: 60px;
    transition: transform .2s,background-color .2s,-webkit-transform .2s;
}

.event-info:not(.is-full-width) {
    width: calc(100% - 360px);
}

.event-info {
    width: calc(100vw - 160px) !important;
}

    .event-info.is-full-width {
        width: calc(100vw - 160px) !important;
    }

.event-image {
    position: relative;
    float: left;
    margin: 5px 15px 5px 0;
}

    .event-image > img {
        height: 50px;
        max-width: 100%;
        border: none;
        display: inline-block;
    }
/*event-text auto scroll*/
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

@-moz-keyframes scroll {
    0% {
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -moz-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

@keyframes scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, 0)
    }
}
/* end event-text auto scroll*/
.event-text {
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    white-space: nowrap;
    padding-top: 20px;
}

    .event-text > p {
        font-size: 14px;
        color: #444;
        margin: 0px;
        display: inline-block;
    }

/*cart*/
.cart-header {
    height: 50px;
    background-color: #202129;
    color: white;
}

.cart-icon {
    position: absolute;
    left: 185px;
    top: 5px;
    width: 50px;
    height: 50px;
    padding-top: 7px;
    padding-left: 12.5px;
}

    .cart-icon > img.cart-img {
        width: 25px;
        height: 25px;
    }

    .cart-icon > div.orderitem-counter {
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 50%;
        background-color: #e22823;
        width: 15px;
        height: 15px;
        font-size: 10px;
        text-align: center;
    }

.cart-header-name {
    position: absolute;
    left: 115px;
    top: 12px;
    font-size: 19px;
    font-weight: bold;
}

.cart-header-clear {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 13px;
    padding: 0;
    border-bottom: 1px dashed rgba(35,31,31,0.3);
    border-color: rgba(255,255,255,0.5);
    position: absolute;
}

    .cart-header-clear:hover {
        color: #ed2113;
        border-color: rgba(237,33,19,0.3);
    }

.cart-body {
    padding-right: 10px;
    height: calc(100% - 150px);
    overflow-y: scroll;
    background-color: rgba(255,255,255,0.8);
    border-left: 1px solid #eee;
}

.ticket-item {
    padding: 15px 0;
    position: relative;
}

    .ticket-item > a > img {
        float: left;
        margin: 0 15px;
        max-width: 60px;
        height: auto;
        border: none;
        display: inline-block;
    }

.ticket-item-info {
    margin: 0;
    overflow: hidden;
    position: relative;
}

    .ticket-item-info > h3 {
        margin: 0px;
        font-size: 18px;
        padding-right: 30px;
        line-height: 30px;
    }

    .ticket-item-info > p {
        font-size: 14px;
        color: #8c8b8d;
        line-height: 16px;
        margin-bottom: 10px;
    }

    .ticket-item-info > .btn-ticket-del {
        position: absolute;
        top: 0;
        right: 10px;
        font-size: 16px;
        height: 20px;
        width: 20px;
        border-radius: 10px;
    }

        .ticket-item-info > .btn-ticket-del:hover {
            background-color: #ed2113;
            color: #fff;
        }

.btn-ticket-del > img {
    width: 14px;
    position: absolute;
    left: 4px;
    top: 4px;
}

.cart-footer {
    height: 100px;
    background-color: #1f2129;
    color: #fff;
    padding: 10px 20px 0;
}

    .cart-footer > p {
        margin-bottom: 15px;
    }

    .cart-footer > .btn-confirm > a {
        background-color: #37ba21;
        display: block;
        height: 40px;
        line-height: 40px;
        color: #fff;
        font-weight: 700;
        text-align: center;
        border-radius: 2px;
        box-shadow: inset 0 15px 20px rgba(255,255,255,0.25);
    }

    .cart-footer > .btn-confirm[disabled="disabled"] > a {
        background-color: grey;
    }

.is-closed {
    transform: translateX(100vw);
}

.btn-toggle-cart.is-closed {
    transform: translateX(360px) /*rotate(180deg)*/;
}
/*end-cart*/

/*adaptivity*/
@media (max-width: 1300px) {
    .timer-text {
        display: block;
    }

    .hallframe {
        height: calc(100% - 150px);
    }
}

@media (max-width: 920px) {
    .btn-toggle-cart {
        display: block;
    }

    .main-page {
        width: 100vw;
    }

    .hallframe, #hallContainer {
        width: 100vw;
    }

    .timer-text {
        display: block;
    }

    .btn-toggle-cart:not(.is-closed) {
        background-color: white;
        opacity: 0.8;
    }
}

@media (max-width: 820px) {
    div.event-info-container {
        z-index: -3;
        top: 50px;
        left: 25px;
    }

    div.event-info, div.event-info.is-full-width {
        width: calc(100vw - 30px) !important;
    }

    div.event-image {
        margin: 5px 15px 5px 0;
    }

    div.event-info-container > .event-info > .event-image > img {
        height: 40px;
    }

    .event-text {
        padding-top: 15px;
    }

    .hallframe {
        height: calc(100% - 150px);
    }
    /*ToDO:придумать куда его засунуть и как его прятать*/
    .event-info-container {
        /*display: none;*/
    }
}

@media (max-width: 500px) {
    .order-timer {
        top: 7px;
    }
}

@media (max-width: 600px) {
    .cart {
        width: 100vw !important;
    }

    .btn-close-cart {
        position: absolute;
        display: block;
        width: 325px;
        padding: 15px !important;
        padding-left: 110px !important;
    }

    .cart-icon {
        left: 410px;
    }

    .cart-header-name {
        left: 340px;
    }

    .cart-clear {
        font-size: 13px;
    }
}


@media (max-width: 414px) {
    .btn-close-cart {
        position: absolute;
        display: block;
        width: 200px;
        padding: 15px !important;
        padding-left: 50px !important;
    }

    .cart-icon {
        left: 285px;
    }

    .cart-header-name {
        left: 215px;
    }

    .cart-clear {
        font-size: 13px;
    }
}

@media (max-width: 411px) {
    .btn-close-cart {
        position: absolute;
        display: block;
        width: 200px;
        padding-left: 48px !important;
    }

    .cart-icon {
        left: 285px;
    }

    .cart-header-name {
        left: 215px;
    }

    .cart-clear {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .btn-close-cart {
        position: absolute;
        display: block;
        width: 170px;
        padding: 15px !important;
        padding-left: 35px !important;
    }

    .cart-icon {
        left: 250px;
    }

    .cart-header-name {
        left: 180px;
    }

    .cart-clear {
        font-size: 13px;
    }
}

@media (max-width: 321px) {
    .btn-close-cart {
        position: absolute;
        display: block;
        width: 125px;
        padding: 5px !important;
        padding-top: 10px !important;
    }

    .cart-icon {
        left: 200px;
    }

    .cart-header-name {
        left: 130px;
    }

    .cart-clear {
        font-size: 13px;
    }
}



#hall, #drag-container, #hallContainer > .wrapper, .wrapper > .row, #hallContainer {
    height: 100%;
    width: 100%;
}

.btn-toggle-cart > button > .cart-icon {
    left: 0px;
    font-size: 23px;
    top: 1px;
}

div.orderitem-counter {
    color: white;
}
/*end-adaptivity*/

* {
    /*cursor:pointer !important;*/
    /*pointer-events: none; */
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
}

#hallContainer {
    border: 0px;
}


.list-point {
    transition: .5s;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: #d9d9d9;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
    height: 70px;
    font-size: 30px;
    padding: 25px;
    margin: 5px;
}

    .list-point.simple-ticket {
        width: 100%;
        cursor: default;
        position: relative;
        height: 100%;
        padding: 5px 0px 0px 25px;
        height: 165px;
    }

.simple-ticket > .alt-text {
    white-space: unset !important;
    text-overflow: unset !important;
    display: inline-block !important;
    height: auto !important;
    margin-bottom: 15px;
}

.simple-ticket > .list-point-title {
    cursor: default;
    top: 5px;
    font-size: 16px;
    font-weight: bold;
    padding: 0px 5px 0px 15px;
    height: 20px;
    width: 100%;
    max-width: 100%;
}

.simple-ticket > .place-title {
    cursor: default;
    height: 25px;
    font-size: 20px;
}

.simple-ticket > .sub-title {
    cursor: default;
    font-weight: normal;
}

.remove-ticket-icon {
    transition: 5s ease-in-out;
    position: absolute;
    right: 5px;
    padding: 0px;
    background: transparent;
    border: 0;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.list-point-title {
    box-sizing: border-box;
    cursor: pointer;
    font-size: 23px;
    float: left;
    position: relative;
    top: -20px;
    left: -20px;
    padding: 15px 15px 15px 15px;
    height: 60px;
    background: white;
    border-left: 3px solid #fcee5e;
    overflow: hidden;
    max-width: 50%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-point-count {
    font-size: 15px;
    color: #000000;
    font-weight: 400;
    position: relative;
    left: -20px;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.list-point:hover {
    cursor: pointer;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.resale-1 > .list-point-title {
    border-left: 3px solid #ff7575;
}


.hasDiscount-0 
{
    height: 125px !important;
}