@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Teko:wght@300..700&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'PlumbCondensed';
    src: url('fonts/plumbcondensed-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'RubikBold';
    src: url('fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Stengazeta-Regular';
    src: url('fonts/Stengazeta-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    margin: 0;
}

.stengazeta {
    font-family: "Stengazeta-Regular", sans-serif;
}
.rubikBold {
    font-family: "RubikBold", sans-serif;
}
.teko {
    font-family: "Teko", sans-serif;
}
.plumbCondensed {
    font-family: "PlumbCondensed", sans-serif;
}
.montserrat {
    font-family: "Montserrat", sans-serif;
}
.montserratA {
    font-family: "Montserrat Alternates", sans-serif;
}
.robotoC {
    font-family: 'Roboto Condensed', sans-serif;
}
.badebasNeue {
    font-family: "BebasNeue", sans-serif;
}

a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #005698;
    border-color: #2177ba;
    border-bottom: 1px solid;
}

.footer {
    display: flex;
    flex-direction: column;
    font-family: "Montserrat Alternates", sans-serif;
    background-color: #142046;
    border-color: #273560;
    padding-top: 100px;
}
.footer .container {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    width: 25%;
}
.footer .container .title {
    font-family: "PlumbCondensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.72;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.social-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    color: #fff;
    fill: #fff;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.social-icon:hover {
    background-color: #fff;
    color: #000;
    fill: #000;
}

.pointer {
    cursor: pointer;
}
.transition {
    transition: all 0.3s ease-in-out;
}
.d-none {
    display: none;
}

.inputDescr {
    color: #142046;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-left: 2px;
}

.inputPrimary {
    background-color: #ffffff;
    color: #005698;
    border: 2px solid #e8e8e8;
    font-size: 24px;
    padding: 0 15px;
    height: 50px;
    outline: none;
}
.inputPrimary:focus {
    border-color: #005698;
}
.inputPrimary::placeholder {

}
.inputPrimary:read-only {
    background-color: #f8f8f8;
}
.inputPrimary.error {
    background-color: #f8eaea;
    border-color: #ff0000;
    color: #ff0000;
}

.btnPrimary, .btnPrimaryM {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    min-height: 50px;
    padding: 0 20px;
    cursor: pointer;
    background-color: #ffffff;
    border: 2px solid #005499;
    color: #005499;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s ease-in-out;
}
.btnPrimary:hover {
    background-color: #005499;
    color: #ffffff;
}
.btnPrimaryM:hover {
    background-color: #005499;
    border: 2px solid #F5f5f5;
    color: #ffffff;
}
.btnPrimary.disabled, .btnPrimaryM.disabled {
    background-color: #cccccc;
    color: #666666;
    border-color: #cccccc;
    cursor: not-allowed;
}

.btnDelete {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    min-height: 50px;
    padding: 0 20px;
    cursor: pointer;
    background-color: #ffffff;
    border: 2px solid #ff0000;
    color: #ff0000;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s ease-in-out;
}
.btnDelete:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.btnBack {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #ffcd26;
    border: 2px solid #fcc200;
    height: 40px;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 20px;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s ease-in-out;
}
.btnBack:hover {
    background-color: #ffcd26;
    color: #005499;
}

.white {
    color: #ffffff;
}
.white-light {
    color: #f5f5f5;
}
.grey-very-light {
    color: #CCCCCC;
}
.grey-light {
    color: #999999;
}
.grey {
    color: #666666;
}
.grey-dark {
    color: #333333;
}
.blue {
    color: #0065ff;
}
.blue-dark {
    color: #142046;
}
.red {
    color: #ff0000;
}
.orange {
    color: #ff9700;
}
.yellow {
    color: #ffcd26;
}
.hoverYellow:hover {
    color: #ffcd26 !important;
}
.priceColor {
    color: #142046;
}

.fs7 {
    font-size: 7px;
}
.fs9 {
    font-size: 9px;
}
.fs10 {
    font-size: 10px;
}
.fs12 {
    font-size: 12px;
}
.fs14 {
    font-size: 14px;
}
.fs16 {
    font-size: 16px;
}
.fs18 {
    font-size: 18px;
}
.fs20 {
    font-size: 20px;
}
.fs22 {
    font-size: 22px;
}
.fs36 {
    font-size: 36px;
}

.uppercase {
    text-transform: uppercase;
}

.ta-c {
    text-align: center;
}
.ta-l {
    text-align: left;
}
.ta-r {
    text-align: right;
}

.fw300 {
    font-weight: 300;
}
.fw400 {
    font-weight: 400;
}
.fw500 {
    font-weight: 500;
}
.fw600 {
    font-weight: 600;
}
.fw700 {
    font-weight: 700;
}

.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-column {
    display: flex;
    flex-direction: column;
}

.ai-c {
    align-items: center;
}
.ai-fs {
    align-items: flex-start;
}
.ai-fe {
    align-items: flex-end;
}

.jc-c {
    justify-content: center;
}
.jc-fs {
    justify-content: flex-start;
}
.jc-fe {
    justify-content: flex-end;
}
.jc-sb {
    justify-content: space-between;
}
.jc-sa {
    justify-content: space-around;
}

.ml5 {
    margin-left: 5px;
}
.ml10 {
    margin-left: 10px;
}
.ml20 {
    margin-left: 20px;
}

.mr5 {
    margin-right: 5px;
}
.mr10 {
    margin-right: 10px;
}
.mr20 {
    margin-right: 20px;
}

.mt4 {
    margin-top: 4px;
}
.mt5 {
    margin-top: 5px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt40 {
    margin-top: 40px;
}
.mt80 {
    margin-top: 80px;
}

.mb10 {
    margin-bottom: 10px;
}

.priceCurrency:after {
    content: '/';
    padding-inline: 0.5ch;
}

.sectorA .block {
    cursor: pointer;
}
.sectorA .blockNotAllowed {
    cursor: not-allowed;
}
.sectorA .polygon {
    fill: #DDDDDD;
    stroke: #B8B8B8;
    stroke-width: 1;
}
.sectorA .text {
    fill: #000000;
}
.sectorA:hover .polygon {
    fill: #0065ff;
    stroke: #0049b9;
}
.sectorA:hover .text {
    fill: #ffffff;
}
.sectorA .polygonNotAllowed {
    fill: #DDDDDD;
    stroke: #B8B8B8;
    stroke-width: 1;
}
.sectorA .textNotAllowed {
    fill: #000000;
}

.sectorVIP .block {
    cursor: pointer;
}
.sectorVIP .blockNotAllowed {
    cursor: not-allowed;
}
.sectorVIP .polygon {
    fill: #DDDDDD;
    stroke: #B8B8B8;
    stroke-width: 1;
}
.sectorVIP .text {
    fill: #000000;
}
.sectorVIP:hover .polygon {
    fill: #CE39C9;
    stroke: #ab2aa7;
}
.sectorVIP:hover .text {
    fill: #ffffff;
}
.sectorVIP .polygonNotAllowed {
    fill: #DDDDDD;
    stroke: #B8B8B8;
    stroke-width: 1;
}
.sectorVIP .textNotAllowed {
    fill: #000000;
}

.sectorNS .block {
    cursor: pointer;
}
.sectorNS .blockNotAllowed {
    cursor: not-allowed;
}
.sectorNS .polygon {
    fill: #DDDDDD;
    stroke: #B8B8B8;
    stroke-width: 1;
}
.sectorNS .text {
    fill: #000000;
}
.sectorNS .polygonSelected {
    fill: #0065ff;
    stroke: #0049b9;
    stroke-width: 1;
}
.sectorNS .textSelected {
    fill: #ffffff;
}

.cover-glass {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.rowLabel {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    height: 20px;
    width: 60px;
    background-color: #E5E5E5;
    border: solid 1px #C6C6C6;
    border-radius: 5px;
    color: #5C5C5C;
    padding-right: 10px;
    padding-left: 10px;
}
.pathLabel {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 20px;
    background-color: #E5E5E5;
    border: solid 1px #C6C6C6;
    border-radius: 5px;
    color: #5C5C5C;
}

.seatBtn {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.seatBtn.freeSeat {
    color: #666666;
    background-color: #ffffff;
    border: solid 1px #999999;
    cursor: pointer;
}
.seatBtn.takenSeat {
    color: #ffffff;
    background-color: #ff0000;
    border: solid 1px #d30000;
    cursor: not-allowed;
}
.seatBtn.disabledSeat {
    color: #999999;
    background-color: #eeeeee;
    border: solid 1px #cccccc;
    cursor: not-allowed;
}
.seatBtn.inSellSeat {
    color: #ffffff;
    background-color: #FFA500;
    border: solid 1px #bb7a02;
    cursor: not-allowed;
}
.seatBtn.inSellMySeat {
    color: #ffffff;
    background-color: #4585b9;
    border: solid 1px #2c73ad;
    cursor: pointer;
}

.seatBtn.freeSeat:hover, .seatBtn.inSellMySeat:hover {
    color: #ffffff;
    background-color: #1665a6;
    border: solid 1px #005499;
    cursor: pointer;
}

/* ---error --- */
.notificationWindow {
    width: 330px;
    position: fixed;
    right: 10px;
    bottom: 53px;
    display: block;
    z-index: 1;
}

.notification {
    font-family: 'KelsonSansBG-Light', sans-serif;
    width: 300px;
    display: block;
    margin-bottom: 10px;
    padding: 14px;
    color: #fff;
    background-color: #000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-animation: notifIn 0.5s 1 ease;
    -moz-animation: notifIn 0.5s 1 ease;
    -o-animation: notifIn 0.5s 1 ease;
}
.notiOut {
    font-family: 'KelsonSansBG-Light', sans-serif;
    width: 300px;
    display: block;
    margin-bottom: 10px;
    margin-left: 400px;
    padding: 14px;
    color: #fff;
    background-color: #000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-animation: notifOut 0.3s 1 ease;
    -moz-animation: notifOut 0.3s 1 ease;
    -o-animation: notifOut 0.3s 1 ease;
}

.error {
    background-color: #d2201a;
}
.success {
    background-color: #27ae60;
}
.not-title {
    font-family: 'KelsonSansBG-Normal', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    height: 16px;
}
.not-message {
    font-size: 12px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.not-close-btn {
    float: right;
    cursor: pointer;
    font-size: 16px;
    color: #d2d2d2;
    text-decoration: none;
    outline: 0;
}
.not-close-btn:hover {
    color: #fff;
}

@-webkit-keyframes notifOut {
    from { margin-left: 0; opacity: 1.0; }
    to { margin-left: 400px; opacity: 0.0; }
}
@-moz-keyframes notifOut {
    from { margin-left: 0; opacity: 1.0; }
    to { margin-left: 400px; opacity: 0.0; }
}
@-o-keyframes notifOut {
    from { margin-left: 0; opacity: 1.0; }
    to { margin-left: 400px; opacity: 0.0; }
}

@-webkit-keyframes notifIn {
    from { margin-bottom: -30px; opacity: 0.0; }
    to { margin-bottom: 10px; opacity: 1.0; }
}
@-moz-keyframes notifIn {
    from { margin-bottom: -30px; opacity: 0.0; }
    to { margin-bottom: 10px; opacity: 1.0; }
}
@-o-keyframes notifIn {
    from { margin-bottom: -30px; opacity: 0.0; }
    to { margin-bottom: 10px; opacity: 1.0; }
}

.tippy-tooltip.levski-theme {
    background-color: black;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    line-height: 17px;
    font-weight: 500;
    color: #fff;
}
