﻿/*----------------------------1. CSS Reset----------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
del {
    text-decoration: line-through;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}
:focus {
    outline: 0;
}
/*----------------------------2. Global----------------------------*/
@font-face {
    font-family: "Dana-Light";
    src: url('../fonts/Dana-Light.ttf') format('truetype');
    font-weight: 300;
    Font-display: swap
}
@font-face {
    font-family: "Dana-Regular";
    src: url('../fonts/Dana-Regular.ttf') format('truetype');
    font-weight: 400;
    Font-display: swap
}
@font-face {
    font-family: "Dana-Medium";
    src: url('../fonts/Dana-Medium.ttf') format('truetype');
    font-weight: 500;
    Font-display: swap
}
@font-face {
    font-family: "Dana-DemiBold";
    src: url('../fonts/Dana-DemiBold.ttf') format('truetype');
    font-weight: 600;
    Font-display: swap
}
@font-face {
    font-family: "Dana-Bold";
    src: url('../fonts/Dana-Bold.ttf') format('truetype');
    font-weight: 700;
    Font-display: swap
}
@font-face {
    font-family: "Dana-ExtraBold";
    src: url('../fonts/Dana-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    Font-display: swap
}
:root {
    --slate-blue: #7670E1;
    --blue: #66C8F9;
    --background: #F8FBFF;
    --text-color: #495363;
    --link-color: #1F3E72;
    --white: #fff;
    --Dana-Light: "Dana-Light", tahoma;
    --Dana-Regular: "Dana-Regular", tahoma;
    --Dana-Medium: "Dana-Medium", tahoma;
    --Dana-DemiBold: "Dana-DemiBold", tahoma;
    --Dana-Bold: "Dana-Bold", tahoma;
    --Dana-ExtraBold: "Dana-ExtraBold", tahoma;
    --bigtitle-size: 24px;
    --title-size: 18px;
    --bigparagraph-size: 14px;
    --paragraph-size: 13px;
    --mediumparagraph-size: 12px;
    --smallparagraph-size: 12px;
}
p {
    font-size: var(--paragraph-size);
    font-family: var(--Dana-Regular);
    font-weight: 400;
    text-align: justify;
}
body {
    direction: rtl;
    width: 100%;
    background: var(--background);
    color: var(--text-color);
    font-size: var(--paragraph-size);
    font-family: var(--Dana-Regular);
    font-weight: 400;
    line-height: 30px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: var(--text-color);
}
img {
    object-fit: cover;
}
.btn:hover {
    border: 0;
}
input[type=search]::-ms-clear, input[type=search]::-moz-clear {
    display: none;
    width: 0;
    height: 0;
}
input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    display: none;
}
/*----------------------------3. Custom ----------------------------*/
/******************************************************* Header Start *******************************************************/
#header {
    margin-bottom: 55px;
}
.header-wrapper {
    margin-top: 45px;
}
#brand {
    display: block;
}
.brand-img {
    width: 174px;
   /* height: 45px;*/
}
/********************** navbar start *********************/
.navbar {
    margin-bottom: 26px;
}
.navbar .nav-link {
    color: var(--text-color);
    font-size: var(--mediumparagraph-size);
    font-family: var(--Dana-Medium);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 3px solid transparent;
    transition: all .5s;
}
.navbar .navbar-collapse .nav-link.active, .navbar .navbar-collapse .nav-link:hover {
    color: var(--slate-blue);
    border-bottom: 10px;
    border-bottom: 3px solid var(--slate-blue);
    transition: all .5s;
}
.left-btns .nav-link {
    height: 38.7px;
    color: var(--background);
    font-size: var(--smallparagraph-size);
    font-family: var(--Dana-DemiBold);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 7px;
}
.left-btns .nav-item:nth-child(1) .nav-link {
    background: var(--blue);
}
.left-btns .nav-item:nth-child(1):hover .nav-link {
    background: var(--blue);
    color: var(--background);
}
.left-btns .nav-item:nth-child(2) .nav-link {
    background: var(--slate-blue);
}
.left-btns .nav-item:nth-child(2):hover .nav-link {
    background: var(--slate-blue);
    color: var(--background);
}
/********************** navbar end *********************/
/********************** search-bar start *********************/
#searchform {
    min-height: 38px;
    position: relative;
}
.searchform-input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    background: #E7EEF8;
    display: block;
}
#searchsubmit {
    width: 18px;
    height: 17.7px;
    background: url(../images/Search.svg) no-repeat;
    border: 0;
    position: absolute;
    left: 20px;
    top: 23%;
}
#choose-city {
    min-height: 38px;
    border-radius: 10px;
    background: #E7EEF8;
}
#cities {
    background: #B8B5F1;
    color: var(--white);
    text-align: right;
    font-size: var(--mediumparagraph-size);
    font-family: var(--Dana-Regular);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}
/********************** search-bar end *********************/
/********************** calendar start *********************/
#calendar {
    border-top: 1px solid #BAC6D3;
    padding-top: 5px;
}
.calendar-date {
    color: #76849B;
    font-size: var(--smallparagraph-size);
    font-family: var(--Dana-Light);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
/********************** calendar end *********************/
/******************************************************* Header End *******************************************************/
/******************************************************* HOME PAGE start *******************************************************/
/********************** carousel start *********************/
.home-slider__item {
    background: linear-gradient(160deg, #E4F9FF 0%, #66C8F9 100%);
    border-radius: 26px;
    overflow: hidden;
}
.home-slider__item--image {
    grid-column: 1;
    grid-row: 1;
    opacity: .1;
}
.home-slider__item--caption {
    padding-top: 20px;
    padding-bottom: 20px;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
}
.home-slider__item--caption img {
    width: initial !important;
}
.home-slider__item--icon-box {
    padding: 7.5px;
    background: linear-gradient(180deg, #FFFCEF 0%, rgba(255, 252, 239, 0.00) 100%);
    box-shadow: 0px 6px 18px 0px rgba(255, 208, 18, 0.25);
}
.home-slider__item--title {
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: var(--bigtitle-size);
    font-family: var(--Dana-Bold);
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}
.home-slider__item--date {
    color: rgba(25, 13, 45, 0.50);
    font-size: 16px;
    font-family: var(--Dana-Regular);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.home-slider__item--icon-wrapper {
    color: #7E8296;
    font-size: var(--bigparagraph-size);
    font-family: var(--Dana-Medium);
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
}
.home-slider__item--buy {
    padding: 10px 20px;
    background: var(--slate-blue);
    box-shadow: 0px 24px 40px -12px rgba(118, 112, 225, 0.40);
    color: var(--white);
    border-radius: 30px;
    text-align: right;
    font-size: var(--mediumparagraph-size);
    font-family: var(--Dana-DemiBold);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.home-slider__item--buy:hover {
    color: var(--white);
}
.home-slider__item--buy p {
    line-height: 20px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--slate-blue);
}
.owl-theme .owl-dots .owl-dot span {
    background: #C9E1FF;
}
/********************** carousel end *********************/
/********************** concerts-list start *********************/
#concerts-list {
    background: #F2F8FF;
}
.concerts-list__wrapper {
    border: 1px solid #D2D0F0;
    border-radius: 26px;
}
.concerts-list__nav {
    margin-right: -25px;
    margin-left: -25px;
    border-right: 3px solid var(--slate-blue);
    border-left: 3px solid var(--slate-blue);
}
#concerts-list .nav-item .nav-link {
    margin: 10px 0;
    background: transparent;
    color: var(--link-color);
    border-radius: 10px;
    text-align: right;
    font-size: var(--paragraph-size);
    font-family: var(--Dana-Bold);
    font-style: normal;
    font-weight: 700;
    line-height: 28.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#concerts-list .nav-item .nav-link.active, #concerts-list .nav-item .nav-link:hover {
    background: var(--slate-blue);
    color: var(--white);
    transition: all .3s;
}
#concerts-list .nav-item:nth-child(1) .nav-link .nav-link--icon {
    width: 24px;
    height: 24px;
    background: url(../images/all-concerts-black.svg);
}
#concerts-list .nav-item:nth-child(1) .nav-link.active .nav-link--icon, #concerts-list .nav-item:nth-child(1) .nav-link:hover .nav-link--icon {
    background: url(../images/all-concerts-white.svg);
}
#concerts-list .nav-item:nth-child(2) .nav-link .nav-link--icon {
    width: 13.2px;
    height: 19.23px;
    background: url(../images/tehran-concerts-black.svg);
}
#concerts-list .nav-item:nth-child(2) .nav-link.active .nav-link--icon, #concerts-list .nav-item:nth-child(2) .nav-link:hover .nav-link--icon {
    background: url(../images/tehran-concerts-white.svg);
}
#concerts-list .nav-item:nth-child(3) .nav-link .nav-link--icon {
    width: 23.2px;
    height: 19.3px;
    background: url(../images/other-cities-concerts-black.svg);
}
#concerts-list .nav-item:nth-child(3) .nav-link.active .nav-link--icon, #concerts-list .nav-item:nth-child(3) .nav-link:hover .nav-link--icon {
    background: url(../images/other-cities-concerts-white.svg);
}
#concerts-list .nav-item:nth-child(4) .nav-link .nav-link--icon {
    width: 24px;
    height: 24px;
    background: url(../images/music-filter-black.svg);
}
#concerts-list .nav-item:nth-child(4) .nav-link.active .nav-link--icon, #concerts-list .nav-item:nth-child(4) .nav-link:hover .nav-link--icon {
    background: url(../images/music-filter-white.svg);
}
#concerts-list .nav-item:nth-child(5) .nav-link .nav-link--icon {
    width: 22px;
    height: 21.4px;
    background: url(../images/concertshow-black.svg);
}
#concerts-list .nav-item:nth-child(5) .nav-link.active .nav-link--icon, #concerts-list .nav-item:nth-child(5) .nav-link:hover .nav-link--icon {
    background: url(../images/concertshow-white.svg);
}
.tab-content__header {
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid #D2D0F0;
}
.concerts-list__item {
    margin: 23px;
    position: relative;
}
.concerts-list__item--sold-out .concerts-list__item--img  {
    filter: grayscale(100%);
}
.concerts-list__item--finish .concerts-list__item--img {
    filter: grayscale(100%);
}
.concerts-list__item--extended .concerts-list__item--ticket:before {
    content: "به زودی";
    position: absolute;
    top: 43px;
    padding: 4px 28px 4px 10px;
    border-radius: 7px 0px 0px 7px;
    background: url(../images/tick.svg) no-repeat 75.5px center, url(../images/tick-border.svg) no-repeat 70px center, rgba(74, 255, 58, 0.40);
    z-index: 1;
    text-align: right;
    font-size: 14px;
    color: var(--white);
    font-family: var(--Dana-Medium);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.concerts-list__item--sold-out .concerts-list__item--ticket:before {
    content: "اتمام بلیت";
    position: absolute;
    top: 43px;
    padding: 1px 5px;
    border-radius: 7px 0px 0px 7px;
    background: rgba(212, 74, 74, 0.40);
    z-index: 1;
    text-align: right;
    font-size: 20px;
    color: var(--white);
    font-family: var(--Dana-Medium);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.concerts-list__item--finish .concerts-list__item--ticket:before {
    content: "پایان فروش";
    position: absolute;
    top: 43px;
    padding: 1px 5px;
    border-radius: 7px 0px 0px 7px;
    background: rgba(212, 74, 74, 0.40);
    z-index: 1;
    text-align: right;
    font-size: 20px;
    color: var(--white);
    font-family: var(--Dana-Medium);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
@media only screen and (max-width: 483px) {
  .concerts-list__item--ticket {
    width: 140px;
    height: 240px;
  }
}
.concerts-list__item--ticket {
    border-radius: 26px;
    width: 171px;
    height: 308px;
    overflow: hidden;
    display: grid;
}
.concerts-list__item--img {
    grid-row: 1;
    grid-column: 1;
    width: 173px;
    height: 307px;
}
.concerts-list__item--overlay {
    padding: 10px;
    text-align: center;
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    z-index: 4 !important;
}
.concerts-list__item--title {
    padding: 0 10px;
    color: var(--white);
    font-size: 20px;
    font-family: var(--Dana-Bold);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}
.concerts-list__item--title::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 15px 18px 15px 0;
    border-color: transparent var(--background) transparent transparent;
    top: 0;
    right: -10px;
}
.concerts-list__item--title::after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 15px 0 15px 18px;
    border-color: transparent transparent transparent var(--background);
    top: 0;
    left: -10px;
}
.concerts-list__item--info {
    color: var(--white);
    font-size: var(--smallparagraph-size);
    font-family: var(--Dana-Light);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.concerts-list__item--buy {
    padding: 3px 7px;
    background: var(--slate-blue);
    color: var(--white);
    border-radius: 7px;
    font-size: var(--mediumparagraph-size);
    font-family: var(--Dana-Medium);
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    border: 0;
}
.concerts-list__item--buy:hover,.concerts-list__item--buy:focus,.concerts-list__item--buy:active {
    background: var(--slate-blue) !important;
    color: var(--white) !important;
}
.concerts-list__item--sold-out .concerts-list__item--buy  {
    background: #BAB9CA;
}
.concerts-list__item--finish .concerts-list__item--buy {
    background: #BAB9CA;
}
.concerts-list__item--extended .concerts-list__item--buy {
    background: #BAB9CA;
}
/********************** concerts-list end *********************/
/******************************************************* HOME PAGE end *******************************************************/
/******************************************************* Footer Start *******************************************************/
footer {
    background: #F2F8FF;
}
.footer--title {
    margin-bottom: 21px;
    color: #1F3E72;
    font-size: 24px;
    font-family: var(--Dana-ExtraBold);
    font-style: normal;
    font-weight: 800;
    line-height: 25px;
}
.footer__link {
    color: #6D7B93;
    font-size: var(--paragraph-size);
    font-family: var(--Dana-ExtraBold);
    font-style: normal;
    font-weight: 800;
    line-height: 25px;
}
.social__item:not(:last-child) {
    margin-left: 20px;
}
.social__link {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright__text {
    color: #858296;
    font-size: var(--bigparagraph-size);
    font-family: var(--Dana-Regular);/*sans-serif;*/
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
/******************************************************* Footer End *******************************************************/
/******************************************************* Select Time start *******************************************************/
/********************** breadcrumb start *********************/
#breadcrumb {
    width: 100%;
    position: relative;
}
#breadcrumb:after {
    content: "";
    position: absolute;
    background: linear-gradient(271deg, rgba(83, 89, 108, 0.00) 0%, rgba(83, 89, 108, 0.52) 48.44%, rgba(120, 126, 144, 0.00) 100%);
    background-size: 100% 2px;
    width: 100%;
    height: 2px;
    background-position: center bottom;
    bottom: 0;
}
.breadcrumb-item {
    text-align: right;
    font-family: var(--Dana-Bold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: "»";
    color: var(--slate-blue);
}
.breadcrumb-item:first-child::before {
    content: "»";
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
    color: var(--slate-blue);
}
/********************** breadcrumb end *********************/
/********************** concert-banner start *********************/
.concert-banner {
    background: var(--slate-blue);
    border-radius: 35px;
    overflow: hidden;
}
.concert-banner__caption {
    grid-row: 1;
    grid-column: 1;
    justify-self: auto;
    align-self: center;
    z-index: 1;
}
.concert-banner__caption--title {
    color: var(--white);
    text-align: right;
    font-family: var(--Dana-Bold);
    font-size: var(--bigtitle-size);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.concert-banner__caption--info {
    color: var(--white);
    font-size: 15px;
    font-family: var(--Dana-Light);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.concert-banner__image {
    grid-row: 1;
    grid-column: 1;
    justify-self: end;
    background: linear-gradient(124deg, rgba(118, 112, 225, 0.00) 0%, #7670E1 100%), url(<path-to-image>), lightgray 50% / cover no-repeat;
}
/********************** concert-banner end *********************/
/********************** buy-process start *********************/
.buy-process__item {
    position: relative;
}
.buy-process__item:not(:last-child):after {
    content: '';
    position: absolute;
    width: 100%;
    height: auto;
    border-bottom: 3px dashed #CECEE0;
    top: 19px;
    right: 50%;
    z-index: -1;
}
.buy-process__item.active:not(:last-child):after {
    content: '';
    position: absolute;
    width: 100%;
    height: auto;
    border-bottom: 3px solid var(--slate-blue);
    top: 19px;
    right: 50%;
    z-index: -1;
}
.buy-process__link {
    text-align: center;
}
.buy-process--shape {
    width: 25px;
    height: 25px;
    background: #CECEE0;
    color: var(--white);
    display: inline-block;
    transform: rotate(45deg);
    font-family: var(--Dana-Bold);
    font-size: var(--mediumparagraph-size);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 11px;
}
.buy-process--shape-num {
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    transform: rotate(-45deg);
}
.buy-process--text {
    min-height: 38px;
    margin-top: 5px;
    color: #CECDE0;
    font-family: var(--Dana-Medium);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}
.buy-process__item.active .buy-process--shape {
    background: var(--slate-blue);
}
.buy-process__item.active .buy-process--text {
    color: var(--slate-blue);
}
/********************** buy-process end *********************/
/********************** select-time start *********************/
.select-time{
    margin-bottom: 100px;
}
.select-time--header {
    color: #000;
    font-family: var(--Dana-Bold);
    font-size: var(--bigparagraph-size);
    line-height: 30px;
}
.select-time__text-item {
    padding-right: 15px;
    position: relative;
    color: var(--text-color);
    text-align: right;
    font-family: var(--Dana-Medium);
    font-size: var(--paragraph-size);
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.select-time__text-item:before {
    content: ".";
    position: absolute;
    color: var(--text-color);
    font-family: var(--Dana-Medium);
    font-size: var(--bigtitle-size);
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    right: 0;
}
.select-time__item {
    min-width: 232px;
    margin: 20px 10px;
    padding: 10px 10px 45px;
    background: #EDEFF9;
    border-radius: 20px;
    text-align: center;
    position: relative;
}
.select-time__item--date, .select-time__item--time {
    color: #000;
    text-align: center;
    font-family: var(--Dana-Regular);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.select-time__item--time {
    font-family: var(--Dana-Bold);
    font-size: 22px;
    font-weight: 700;
}
.select-time__item--sold-out .select-time__item--date, .select-time__item--sold-out .select-time__item--time, .select-time__item--finish .select-time__item--time {
    color: var(--text-color);
}
.select-time__item--btn {
    padding: 13px 40px;
    background: var(--slate-blue);
    color: var(--white);
    text-align: center;
    font-family: var(--Dana-Regular);
    font-size: var(--bigparagraph-size);
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    bottom: -5px;
    transform: translate(50%, 5px);
    border: 0;
}
.select-time__item--btn:hover,.select-time__item--btn:focus,.select-time__item--btn:active{
    background: var(--slate-blue) !important;
    color: var(--white) !important;
}
.select-time__item--btn::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/Arrow-Left.svg);
    position: absolute;
    top: 16px;
    left: 13px;
}
.select-time__item--sold-out .select-time__item--btn, .select-time__item--finish .select-time__item--btn {
    background: #BAB9CA;
}
.select-time__item--sold-out .select-time__item--btn::after{
    background: none;
}
.select-time__item--finish .select-time__item--btn::after {
    background: none;
}
/********************** select-time end *********************/
/******************************************************* Select Time end *******************************************************/
/******************************************************* Select Chair start *******************************************************/
.select-chair__receipt-item:first-child{
    margin-left: 30px;
}
.select-chair__receipt-item--p{
    color: var(--text-color);
    text-align: right;
    font-family: var(--Dana-Regular);
    font-size: var(--paragraph-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.select-chair__receipt-item--span{
    color: #000;
    text-align: right;
    font-family: var(--Dana-Bold);
    font-size: var(--paragraph-size);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.select-chair__select {
    min-height: 525px;
    border-radius: 20px;
    background: #EDEFF9;
    position: relative;
    overflow: scroll;
}
.select-chair__select--btn {
    padding: 13px 40px;
    background: var(--slate-blue);
    color: var(--white);
    text-align: center;
    font-family: var(--Dana-Regular);
    font-size: var(--bigparagraph-size);
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    right: 50%;
    bottom: -2%;
    transform: translate(50%, 2%);
    border: 0;
}
.select-chair__select--btn:hover,.select-chair__select--btn:focus,.select-chair__select--btn:active{
    background: var(--slate-blue) !important;
    color: var(--white) !important;
}
.select-chair__select--btn::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/Arrow-Left.svg);
    position: absolute;
    top: 16px;
    left: 13px;
}
/******************************************************* Select Chair end *******************************************************/
/******************************************************* Select Info start *******************************************************/
.select-info{
    padding: 28px 20px 32px;
    background: url(../images/Vector12.svg) top center no-repeat, url(../images/Vector13.svg) bottom center no-repeat;
    background-size: contain;
}
.form-label{
    color: #000;
    text-align: right;
    font-family: var(--Dana-Medium);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.form-label--required{
    position: relative;
}
.form-label--required::after{
    content: "*";
    position: absolute;
    color: red;
}
.form-control{
    border-radius: 10px;
    background-color: #E7EEF8;
    border: 0;
}
.form-control, .form-control::placeholder{
    text-align: right;
    color: #B0B0B0;
    text-align: right;
    font-family: var(--Dana-Light);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.form-control{
    color: #000;
}
.refresh-captcha{
    width: 42px;
    height: 42px;
}
.select-info__part--submit:hover,.select-info__part--submit:focus,.select-info__part--submit:active{
    background: var(--slate-blue) !important;
    color: var(--white) !important;
}
.select-info__description--heading,.select-info__description--text{
    color: #000;
    text-align: justify;
    font-family: var(--Dana-Bold);
    font-size: var(--mediumparagraph-size);
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
.select-info__description--text{
    font-family: var(--Dana-Regular);
    font-weight: 400;
}
.select-info__part{
    background: #EEF1FA;
    border-radius: 30px;
}
.select-info__title{
    padding: 22px 25px;
    background: var(--blue);
    border-radius: 30px;
}
.select-info__title--heading{
    color: var(--white);
    text-align: right;
    font-family: var(--Dana-Bold);
    font-size: var(--bigtitle-size);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.select-info__part--submit{
    background: var(--slate-blue);
    color: var(--white);
    font-family: var(--Dana-DemiBold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.select-info__title--item{
    color: var(--white);
    text-align: right;
    font-family: var(--paragraph-size);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.select-info__checkout--titles{
    border-radius: 30px;
    background: #DFE3EF;
}
.select-info__checkout--th,.select-info__checkout--item{
    color: #717171;
    font-family: var(--Dana-DemiBold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.select-info__checkout--total{
    margin-top: 10px;
    padding-top: 10px;
}
.select-info__checkout--total-item, .select-info__checkout--total-tax-item{
    color: #000;
    font-family: var(--Dana-DemiBold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.select-info__checkout--total-tax-item{
    color: var(--slate-blue);
}
/******************************************************* Select Info end *******************************************************/
/******************************************************* Select Ticket start *******************************************************/
.select-ticket__heading{
    color: #6F6F6F;
    font-family: var(--Dana-Bold);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.select-ticket__item{
    padding: 9px 25px 16.5px 0;
}
.select-ticket__item--receipt-icon{
    position: relative;
}
.select-ticket__item--receipt-icon:before,.select-ticket__item:last-child .select-ticket__item--receipt-icon::after{
    content: "";
    position: absolute;
    background: url(../images/vertical-line.svg);
    width: 1px;
    height: 124px;
    bottom: 130%;
    left: 35%;
}
.select-ticket__item:not(:first-child) .select-ticket__item--receipt-icon::before{
    height: 180px;
    bottom: 145%;
}
.select-ticket__item:last-child .select-ticket__item--receipt-icon::after{
    height: 180px;
    top: 145%;
}
.select-ticket__item--receipt-img{
    z-index: 1;
}
.select-ticket__paper{
    width: 100%;
    background: linear-gradient(270deg, #EEF1FA 0%, rgba(238, 241, 250, 0.76) 52.08%, rgba(238, 241, 250, 0.00) 100%);
    border: 2px solid var(--slate-blue);
    border-radius: 22px;
    overflow: hidden;
}
.select-ticket__column-one{
    border-bottom: 2px solid #B2BBBD;
}
.select-ticket__number{
    width: 95px;
    position: absolute;
    right: -17px;
    top: 25%;
    transform: rotate(-90deg) translate(-25%, 17px);
}
.select-ticket--qr {
    /*  max-width: 150px;
    max-height: 150px;*/
    max-width: 116px;
    max-height: 150px;
    padding-right: 15px;
}
.select-ticket__customer-info--span{
    color: #495363;
    text-align: right;
    font-family: var(--Dana-Light);
    font-size: var(--mediumparagraph-size);
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}
.select-ticket__customer-info--span-bold{
    color: #495363;
    text-align: right;
    font-family: var(--Dana-Bold);
    font-size: var(--paragraph-size);
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.select-ticket__seating-position {
    background: var(--blue);
    border-radius: 25px;
    margin-top: 22px;
}
.select-ticket__seating-position--text{
    padding-left: 20px;
    color: var(--white);
    font-family: var(--Dana-DemiBold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.select-ticket__seating-position--number{
    color: #25396F;
    font-family: var(--Dana-Bold);
    font-size: var(--bigparagraph-size);
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.select-ticket__concert-info--name{
    color: #495363;
    text-align: right;
    font-family: var(--Dana-DemiBold);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}
.select-ticket__concert-info--item{
    color: #6D7B93;
    text-align: right;
    font-family: var(--Dana-Regular);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.select-ticket__concert-info--total-text{
    color: var(--slate-blue);
    text-align: right;
    font-family: var(--Dana-Medium);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.select-ticket__concert-info--total-price{
    color: var(--slate-blue);
    font-family: var(--Dana-DemiBold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}
.select-ticket__column-three{
    border-right: 5px dashed var(--slate-blue);
}
.select-ticket__performer{
    width: 100%;
    height: 100%;
    display: grid;
}
.select-ticket__performer--img{
    width: 100%;
    height: 100%;
    grid-row: 1;
    grid-column: 1;
}
.select-ticket__performer-overlay{
    width: 100%;
    height: 100%;
    grid-row: 1;
    grid-column: 1;
    background: linear-gradient(270deg, #EEF1FA 0%, rgba(238, 241, 250, 0.5) 52.08%, rgba(238, 241, 250, 0.00) 100%);
}
.select-ticket__more--download,.select-ticket__more--print {
    padding: 7px 10px 7px 30px;
    background: var(--slate-blue);
    color: var(--white);
    text-align: right;
    font-family: var(--Dana-DemiBold);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    border-radius: 7px;
}
.select-ticket__more--print{
    background: var(--blue);
}
.select-ticket__more--download:hover,.select-ticket__more--download:active,.select-ticket__more--download:focus,.select-ticket__more--print:hover,.select-ticket__more--print:active,.select-ticket__more--print:focus{
    color: var(--white);
}
.select-ticket__more--text{
    color: #76849B;
    font-family: var(--Dana-Medium);
    font-size: var(--smallparagraph-size);
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
/******************************************************* Select Ticket end *******************************************************/
/******************************************************* RESPONSIVE Start *******************************************************/
@media only screen and (min-width: 576px) {
    .container {
        padding-right: 0;
        padding-left: 0;
   }
    .buy-process__item.active:not(:last-child):after, .buy-process__item:not(:last-child):after {
        top: 24px 
   }
    .buy-process--shape {
        width: 35px;
        height: 35px;
        font-size: 20px;
   }
    .buy-process--shape-num {
        line-height: 40px;
   }
}
@media only screen and (min-width: 768px) {
    #header {
        margin-bottom: 70px;
   }
    .home-slider__item--image {
        opacity: 1;
   }
   .home-slider__item--buy {
    padding: 20px 30px;
   }
    .buy-process--text {
        min-height: auto;
        font-family: var(--Dana-Medium);
        font-size: var(--smallparagraph-size);
   }
    .select-ticket__paper{
        width: 90%;
   }
    .select-ticket__more{
        width: 92%;
   }
    .select-ticket__column-one{
        border-left: 2px solid #B2BBBD;
        border-bottom: 0;
   }
    .select-ticket__more--download,.select-ticket__more--print {
        padding: 7px 10px 7px 40px;
   }
}
@media only screen and (min-width: 992px) {
    :root {
        --bigtitle-size: 32px;
        --title-size: var(--bigtitle-size);
        --bigparagraph-size: 16px;
        --paragraph-size: 14px;
        --mediumparagraph-size: 13px;
        --smallparagraph-size: 12px;
   }
    #header {
        margin-bottom: 82px;
   }
    .home-slider__item--caption {
        padding-top: 50px;
        padding-bottom: 50px;
   }
    .home-slider__item--date {
        font-size: 20px;
        line-height: 36px;
   }
    .select-time{
        margin-bottom: 200px;
   }
}
.float-left{
    float:left !important;
}
@media (min-width: 576px) {
    .justify-content-sm-between {
        justify-content: center !important;
    }
}

/******************************************************* RESPONSIVE End *******************************************************/
.countdown {
    background: #CCC9F2 !important;
    color: var(--white) !important;
    border-radius: 7px !important;
    font-size: var(--mediumparagraph-size) !important;
    font-family: var(--Dana-Medium) !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    border: 0 !important;
    margin-top: 1rem !important;
}

.breadcrumb-item.active > a {
    background: inherit !important;
    color: inherit !important;
}

.nav-item.buy-process__item.col.active > a {
    background: inherit;
}
.logModal .product_title_top {
    background: #3a376f !important;
    margin-bottom: 15px;
}
#LoadingSave > p {
    text-align: center !important;
}
#btnAdmin {
    background-color: #7670e1;
}
#btnBack {
    background-color: #66c8f9;
}
.Menu-pg {
    min-height: 500px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #f8fbff !important;
    padding: 10px;
    border:0px !important;
    border-radius: 8px;
}
.title-Menu {
    background:none !important;
}
.main-film {
   
    background: none !important;
    border: 0px !important;
    
}

.title-ListFilm {
    background:none !important;
}
.title-ListGallery {
    background: none !important;
}
.main-gallery {
    background: none !important;
    border: 0px !important;
}
.listReserv {
    background: none !important;
    border: 0px !important;
}
#btnAdmin {
    background-color: #7670e1;
}

#btnBack {
    background-color: #66c8f9;
}

#BtnShowDiscount {
    background-color: #66c8f9;
}

.title-ContactUs {
    background: none !important;
    border: 0px !important;
}

.ContactUs {
    background: none !important;
    border: 0px !important;
}
.pad-12 {
    padding:12px !important;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: inherit !important;
        padding-right: inherit !important;
    }
}
footer a {
  color: #000 !important;
}

.btn-success {
  background-color: #7670e1 !important;
}
.concert-cat
{
color :#626b78 !important;
}
@media only screen and (max-width: 483px) {
  .concerts-list__item {
    margin: 10px 5px;
  }
}