html {
    margin: 0;
  }

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F2F7F7;
}

/* Defaults */
.ot-bg-dark { background-color: #000; }
.ot-bg-light { background-color: #fff; }

.black {
    color:#000000;
}

.ot-bg-branding {
    background-color: #579DCB;
}

.ot-text-branding {
    color: #579DCB;
}

:root {
    --ot-shop-widget-button-z-index: 1060 !important;
    --ot-shop-widget-z-index: 1060 !important;
}

.ot-shop-widget {
    z-index: 1060 !important; /* Important, so it's over the modal */
}

.ot-bg-light-secondary {
    background-color: #EBEBEB;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}


/* ---------------------------------------------- */
/* VENUE PAGE */

.center-absolute {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.hero {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3)), url(./assets/OT-hero-img.png) no-repeat center center;
    background-size: cover;
}

.height-100 {
    height: 100vh;
}

.height-80 {
    height: 80vh;
}

.height-50 {
    height: 50vh;
}

.height-30 {
    height: 30vh;
}

.height-20 {
    height: 20vh;
}

.height-10 {
    height: 10vh;
}

.height-4 {
    height: 4vh;
}

.height-3 {
    height: 3vh;
}

.height-1 {
    height: 1vh;
}

.height-0 {
    height: 0vh;
}

.widthLikeHeight-30 {
    width: 30vh;
}

.ms-n50 {
    margin-right: -50%!important;
}

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

.left-30 {
    left: 30%!important;
}

h1.title, h2.title {
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}



h1.title.stroke, h2.title.stroke {
    font-style: normal;
    -webkit-text-stroke-width: 0.03em;
    -webkit-text-fill-color: transparent;
}

.fw-black {
    font-weight: 900;
}

.baby-blue {
    background-color: #579DCB;
}

.z-n1 {
    z-index: -10;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.rotateTitle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.rounded-start-20px {
    border-bottom-left-radius: 20px!important;
    border-top-left-radius: 20px!important;
}

.rounded-end-20px {
    border-bottom-right-radius: 20px!important;
    border-top-right-radius: 20px!important;
}

/* ---------------------------------------------- */
/* ARTIST PAGE */

img.transportation {
    max-height: 60px;
}

.transportation .active{
    background-color: #579DCB;
    border-radius: 50rem!important
}

.transportation-info {
    display: none;
}

.active .transportation-info {
    display: block;
}

.faq-dropdown {
    color: #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-dropdown:hover, .faq-dropdown:focus {
    background-color: #579DCB;
    color: #ffffff;
}

.accordion-button:not(.collapsed) {
    background-color: #579DCB;
    color: #ffffff;
}

.bottom-arrow {
    padding: 5px;
    border-top:  1px solid black;
    border-right:  1px solid black;
    border-left:  none;
    border-bottom:  none;
    transform: rotate(135deg);   
}

.faq-dropdown:hover .bottom-arrow, .faq-dropdown:focus .bottom-arrow {
    transform: rotate(315deg);  
    border-top:  1px solid white;
    border-right:  1px solid white;
}

.bottom-arrow-white {
    padding: 5px;
    border-top:  1px solid rgb(255, 255, 255);
    border-right:  1px solid rgb(255, 255, 255);
    border-left:  none;
    border-bottom:  none;
    transform: rotate(135deg);  
}

button.tickets {
    min-height: 1.7rem;
    min-width: 1.7rem;
}

button.tickets:hover {
    background-color: #009dcd;
    color: #579DCB;
}

.closed .hidden {
    display: none;
}

.selected {
    background-color: #579DCB;
    padding: 10px;
    border-radius: 50%;
}

.circle-container {
    display: grid;
    place-items: center;
}

.rotate {
    height: 26vh;
}

.clockwise {
    display: none;
}

.clockwise-start {
    animation: clockwise 10s linear infinite;
    display: block;
}

.antiClockwise {
    display: none;
}

.antiClockwise-start {
    animation: clockwise 10s linear infinite;
    display: block;
}

@keyframes clockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes antiClockwise {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.circleSize {
    min-width: 15px;
    text-align: center;
    transform-origin: 0 13vh;
    font-size: 1rem;
    position: absolute;
}


.fadein {
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 3s; /* Firefox < 16 */
    -ms-animation: fadein 3s; /* Internet Explorer */
    -o-animation: fadein 3s; /* Opera < 12.1 */
    animation: fadein 3s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

      
.autoSlider .sliderCard .inner {
    background-size: cover;
    transform: scale(1, 1);
    transition: transform 0.2s;
}

.autoSlider .sliderCard:hover .inner {
    transform: scale(1.05, 1.05);
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
    opacity: 0.8;
}

/* ---------------------------------------------- */

@media (min-width:576px) {

    h1.title {
        font-size: 6em;
    }

    h2.title {
        font-size: 4em;
    }

    .height-sm-100 {
        height: 100vh;
    }

    .height-sm-80 {
        height: 80vh;
    }

    .height-sm-60 {
        height: 60vh;
    }

}

@media (min-width:768px) {

    .mt-md-n20 {
        margin-top: -20%!important;
    }

    h1.title {
        font-size: 8em;
    }

    h2.title {
        font-size: 4em;
    }

    .height-md-100 {
        height: 100vh;
    }

    .height-md-50 {
        height: 50vh;
    }
}

@media (min-width:992px) {

    .height-lg-100 {
        min-height: 100vh;
    }

    .height-lg-50 {
        height: 50vh;
    }

    .mt-lg-n20 {
        margin-top: -20%!important;
    }
}
@media (min-width:1200px) {

    h1.title {
        font-size: 8em;
    }

    h2.title {
        font-size: 6em;
    }
}


@media (max-width:575px) {

    h1.title {
        font-size: 3em;
    }

    h2.title {
        font-size: 2em;
    }

    .height-sm-auto {
        height: auto;
    }
    

    .height-sm-20 {
        height: 20vh;
    }
    
    .ms-sm-n8 {
        margin-left: -8%!important;
    }

    .mt-sm-n50 {
        margin-top: -50%!important;
    }
    
    .mt-sm-n20 {
        margin-top: -20%!important;
    }
    
    .mt-sm-n15 {
        margin-top: -15%!important;
    }
    
    .mt-sm-n8 {
        margin-top: -8%!important;
    }
    
    .mt-sm-n6 {
        margin-top: -6%!important;
    }
    
    .mt-sm-n2 {
        margin-top: -2%!important;
    }

}

@media (max-height:575px) {

    .landscape-height {
        height: 50vh;
    }

    .landscape-width {
        width: 50vh;
    }

    .rotate {
        height: 44vh;
    }

    .circleSize {
        transform-origin: 0 23vh;
    }
}




.nav-pills .nav-link, .nav-pills .show>.nav-link {
    color: #fff;
    border-radius: 50px;
    background: var(--OT-primary-300, #B2E1F0);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #009dcd !important;
    color: #fff !important;
}

.nav-pills .nav-link .badge, .nav-pills .show>.nav-link .badge {
    background-color: #009dcd;
    color: #fff;
}

.nav-pills .nav-link.active .badge, .nav-pills .show>.nav-link .badge {
    background-color: #fff !important;
    color: #009dcd !important;
}

.btn-primary {
    background-color: #009dcd;
    border-color: #009dcd;
}

.faq {
    background-color: #009dcd;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.faq.collapsed {
    background-color: #eee;
    color: #000;
}

.ot-text-intro-strong {
    margin-bottom: 0;
}

.button-wrapper {
    border-radius: 16px !important;
}

.button-wrapper .button {
    border-radius: 16px !important;
}

.button-wrapper p {
    margin-bottom: 0 !important;
}

.button-wrapper .button {
    background-color: #009dcd !important;
}

.ot-ticket-card-img {
    background-size: cover;
    background-position: center center;
    min-height: 250px;
}

.ot-ticket-card-img .ot-ticket-card-header {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 90%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 90%);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);

    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.ot-ticket-card-img h4 small {
    font-size: 0.7em;
}

.ot-notification, .ot-notifcation-close {
    background-color: #009dcd !important;
}

.hover-right {
    margin-right: 0;
    margin-left: 4px;
    transition: all 0.2s;
}

.hover-right:hover {
    margin-right: -3px;
    margin-left: 7px;
    background-color: rgba(255,255,255,0.1);
}


.hover-up {
    margin-top: 0;
    margin-bottom: 4px;
    transition: all 0.2s;
}

.hover-up:hover {
    margin-top: -3px;
    margin-bottom: 7px;
    background-color: rgba(255,255,255,0.1);
}


.is-countdown {
}
.countdown-rtl {
	direction: rtl;
}
.countdown-holding span {
}
.countdown-row {
	clear: both;
	width: 100%;
	padding: 0px 2px;
	text-align: center;
}
.countdown-show1 .countdown-section {
	width: 98%;
}
.countdown-show2 .countdown-section {
	width: 48%;
}
.countdown-show3 .countdown-section {
	width: 32.5%;
}
.countdown-show4 .countdown-section {
	width: 24.5%;
}
.countdown-show5 .countdown-section {
	width: 19.5%;
}
.countdown-show6 .countdown-section {
	width: 16.25%;
}
.countdown-show7 .countdown-section {
	width: 14%;
}
.countdown-section {
	display: block;
	float: left;
	font-size: 75%;
	text-align: center;
}
.countdown-amount {
    font-size: 200%;
    font-weight: bold;
}
.countdown-period {
    display: block;
    text-transform: lowercase;
}
.countdown-descr {
	display: block;
	width: 100%;
}

/* monthpicker */
.months-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.months-nav .nav-link {
    opacity: 0.3;
    display: block;
    position: relative;
}
.months-nav .nav-link .month {
    transition: all 0.1s ease-in-out;
}
.months-nav .nav-link .year {
    position: absolute;
    bottom: -75%;
    left: 50%;
    transform: translateX(-50%);
}

.months-nav .nav-link.active {
    opacity: 1;
}
.months-nav .nav-link.active .month {
    transform: scale(1.2);
    transition: all 0.4s ease-in-out;
}

.category-pill:hover { opacity: 0.9; }