.ts-calendarview{
    display:none;
    padding-top: 50px;
}

.ts-calendarview .event-controls{
    flex-direction: column;
}




.ts-calendarview #calendar {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 50px auto;
    color:#fff;
}

.ts-calendarview .header {
    height: 50px;
    width: 100%;
    background: rgba(255,255,255,.2);
    text-align: center;
    position: relative;
    z-index: 100;
    border-radius: 4px 4px 0 0;
}

.ts-calendarview .header h1 {
    margin: 0;
    padding: 0;
    font-size: 26px;
    line-height: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.ts-calendarview .left,
.ts-calendarview .right {
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    top: 50%;
    margin-top: -7.5px;
    cursor: pointer;
}

.ts-calendarview .left {
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #000 transparent transparent;
    left: 20px;
}

.ts-calendarview .right {
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent #000;
    right: 20px;
}

.ts-calendarview .month {
    /*overflow: hidden;*/
    opacity: 0;
    background: rgba(255,255,255,.1);
    border-radius: 0 0 4px 4px;
}

.ts-calendarview .month.new {
    -webkit-animation: fadeIn 0.2s ease-out;
    opacity: 1;
}

.ts-calendarview .month.in.next {
    -webkit-animation: moveFromTopFadeMonth 0.2s ease-out;
    -moz-animation: moveFromTopFadeMonth 0.2s ease-out;
    animation: moveFromTopFadeMonth 0.2s ease-out;
    opacity: 1;
}

.ts-calendarview .month.out.next {
    -webkit-animation: moveToTopFadeMonth 0.0s ease-in;
    -moz-animation: moveToTopFadeMonth 0.0s ease-in;
    animation: moveToTopFadeMonth 0.0s ease-in;
    opacity: 1;
}

.ts-calendarview .month.in.prev {
    -webkit-animation: moveFromBottomFadeMonth 0.2s ease-out;
    -moz-animation: moveFromBottomFadeMonth 0.2s ease-out;
    animation: moveFromBottomFadeMonth 0.2s ease-out;
    opacity: 1;
}

.ts-calendarview .month.out.prev {
    -webkit-animation: moveToBottomFadeMonth 0.0s ease-in;
    -moz-animation: moveToBottomFadeMonth 0.0s ease-in;
    animation: moveToBottomFadeMonth 0.0s ease-in;
    opacity: 1;
}

.ts-calendarview .week {
}

.ts-calendarview .day {
    display: inline-block;
    width: 14.285714%;
    padding: 0 5px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    height: 100%;
    position: relative;
    padding: 20px 0;
    z-index: 100;
    border-radius: 6px;
}

.ts-calendarview .day.other {
    opacity:.2;
}

.ts-calendarview .day.today {
    color: var(--main-color);

    border-radius: 0px;
}

.ts-calendarview .day.today:after {
    content: "";
    background-color: #ffffff;
    padding: 25px;
    transform: translate(-25px, -52px);
    position: absolute;
    border-radius: 50px;
    z-index: -1;
}
.ts-calendarview .day-name {
    font-size: 9px;
    text-transform: uppercase;
    margin-bottom: -7px;
    opacity:.5;
    letter-spacing: 0.7px;
}
.ts-calendarview .today .day-name {
    color: var(--main-color);
}

.ts-calendarview .day-number {
    font-size: 24px;
    letter-spacing: 1.5px;
}
.ts-calendarview .today .day-number{
    color:var(--main-color);
}

.ts-calendarview .day .day-events {
    list-style: none;
    margin-top: -5px;
    text-align: center;
    height: 12px;
    line-height: 6px;
}

.ts-calendarview .day .day-events span {
    vertical-align: top;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 22px;
    height: 5px;
    line-height: 5px;
    border: #fff solid 1px;
    margin: 8px 2px 0px 2px;
    border-radius: 20px;
    animation: 1.6s ease-in-out infinite both slideUpDownless;
    -webkit-animation: 1.6s ease-in-out infinite both slideUpDownless;
}

.ts-calendarview .teal {
    background: rgba(126, 251, 232, 1);
}
.ts-calendarview .yellow {
    background: rgba(251, 232, 126, 1);
}
.ts-calendarview .pink {
    background: rgba(251, 127, 145, 1);
}
.ts-calendarview .green {
    background: rgba(207, 251, 126, 1);
}
.ts-calendarview .purple {
    background: rgba(126, 145, 251, 1);
}
.ts-calendarview .orange {
    background: rgba(251, 191, 126, 1);
}
.ts-calendarview .black {
    background: rgba(0, 0, 0, 1);
}
.ts-calendarview .white {
    background: rgba(255, 255, 255, 1);
}

.ts-calendarview .details {
    position: relative;
    width: 100%;
    background: rgba(255,255,255,.2);
    /* height: 240px; */
    background: var(--main-color);
    margin-top: 5px;
    /* border-radius: 4px; */
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.ts-calendarview .details.in {
    -webkit-animation: moveFromTopFade 0.6s ease both;
    -moz-animation: moveFromTopFade 0.6s ease both;
    animation: moveFromTopFade 0.6s ease both;
}

.ts-calendarview .details.out {
    -webkit-animation: moveToTopFade 0.0s ease both;
    -moz-animation: moveToTopFade 0.0s ease both;
    animation: moveToTopFade 0.0s ease both;
}

.ts-calendarview .arrow {
    position: absolute;
    top: -14px;
    left: 50%;
    margin-left: 6%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 12px 10px;
    border-color: transparent transparent #ffffff transparent;
    transition: left 0.2s ease;
    z-index: 0;
}

.ts-calendarview .emptyevent {
    background-color: var(--main-color);
    width: 100%;
    text-align: center;
}
.ts-calendarview .events.in {
    -webkit-animation: moveFromTopFade 0.6s ease both;
    -moz-animation: moveFromTopFade 0.6s ease both;
    animation: moveFromTopFade 0.6s ease both;
}

.ts-calendarview .events.in {
    display: flex;
    overflow-x: auto;
    flex-direction: column;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
}

.ts-calendarview .details.out .events {
    -webkit-animation: fadeOutShrink 0.1s ease both;
    -moz-animation: fadeOutShink 0.1s ease both;
    animation: fadeOutShink 0.1s ease both;
}

.ts-calendarview .events.out {
    -webkit-animation: fadeOut 0.1s ease both;
    -moz-animation: fadeOut 0.1s ease both;
    animation: fadeOut 0.1s ease both;
}

.ts-calendarview .event {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.5px;
    padding: 2px 16px;
    vertical-align: top;
    width: 100%;
}

.ts-calendarview .event.empty {
    color: #eee;
    width: 100%;
    background-color: var(--main-color);
    border-radius: 3px;
    text-align: center;
    border: #fff solid 2px;
    padding: 10px;
}

.ts-calendarview .event-category {
    height: 10px;
    width: 10px;
    display: inline-block;
    margin: 6px 0 0;
    vertical-align: top;
}

.ts-calendarview .legend {
    position: absolute;
    top: -30px;
    width: 100%;
    height: 30px;
    line-height: 30px;
}

.ts-calendarview .entry {
    position: relative;
    padding: 0 0 0 25px;
    font-size: 13px;
    display: inline-block;
    line-height: 30px;
    background: transparent;
}

.ts-calendarview .entry:after {
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    top: 12px;
    left: 14px;
}

.ts-calendarview .entry.blue:after {
    background: rgba(156, 202, 235, 1);
}
.ts-calendarview .entry.orange:after {
    background: rgba(247, 167, 0, 1);
}
.ts-calendarview .entry.green:after {
    background: rgba(153, 198, 109, 1);
}
.ts-calendarview .entry.yellow:after {
    background: rgba(249, 233, 0, 1);
}


.ts-calendarview .ts-cal-header {
    height: 50px;
    width: 100%;
    background: #00000029;

    text-align: center;
    position: relative;
    z-index: 100;
}

.ts-cal-header h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 1px;
}

.ts-cal-left,
.ts-cal-right {
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    top: 50%;
    margin-top: -7.5px;
    cursor: pointer;
}

.ts-cal-left {
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #000 transparent transparent;
    left: 20px;
}

.ts-cal-right {
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent #000;
    right: 20px;
}

.ts-cal-month {
    /*overflow: hidden;*/
    opacity: 0;
}

.ts-cal-month.ts-cal-new {
    -webkit-animation: fadeIn 0.2s ease-out;
    opacity: 1;
}

.ts-cal-month.ts-cal-in.ts-cal-next {
    -webkit-animation: moveFromTopFadeMonth 0.2s ease-out;
    -moz-animation: moveFromTopFadeMonth 0.2s ease-out;
    animation: moveFromTopFadeMonth 0.2s ease-out;
    opacity: 1;
}

.ts-cal-month.ts-cal-out.ts-cal-next {
    -webkit-animation: moveToTopFadeMonth 0.2s ease-in;
    -moz-animation: moveToTopFadeMonth 0.2s ease-in;
    animation: moveToTopFadeMonth 0.2s ease-in;
    opacity: 1;
}

.ts-cal-month.ts-cal-in.ts-cal-prev {
    -webkit-animation: moveFromBottomFadeMonth 0.2s ease-out;
    -moz-animation: moveFromBottomFadeMonth 0.2s ease-out;
    animation: moveFromBottomFadeMonth 0.2s ease-out;
    opacity: 1;
}

.ts-cal-month.ts-cal-out.ts-cal-prev {
    -webkit-animation: moveToBottomFadeMonth 0.2s ease-in;
    -moz-animation: moveToBottomFadeMonth 0.2s ease-in;
    animation: moveToBottomFadeMonth 0.2s ease-in;
    opacity: 1;
}

.ts-cal-week {
}

.ts-cal-day {
    display: inline-block;
    width: 14.285714%;
    padding: 0 5px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    height: 100%;
    position: relative;
    padding: 20px 0;
    z-index: 100;
}

.ts-cal-day.ts-cal-other {
    opacity:.2;
}

.ts-cal-day.ts-cal-today {
    color: var(--main-color);

    border-radius: 0px;
}

.ts-cal-day.ts-cal-today:after {
    content: "";
    background-color: #ffffff;
    padding: 25px;
    transform: translate(-25px, -52px);
    position: absolute;
    border-radius: 50px;
    z-index: -1;
}
.ts-cal-day-name {
    font-size: 9px;
    text-transform: uppercase;
    margin-bottom: -7px;
    opacity:.5;
    letter-spacing: 0.7px;
}
.ts-cal-today .ts-cal-day-name {
    color: var(--main-color);
}

.ts-cal-day-number {
    font-size: 24px;
    letter-spacing: 1.5px;
}
.ts-cal-today .ts-cal-day-number{
    color:var(--main-color);
}

.ts-cal-day .ts-cal-day-events {
    list-style: none;
    margin-top: -5px;
    text-align: center;
    height: 12px;
    line-height: 6px;
    overflow: hidden;
}

.ts-cal-day .ts-cal-day-events span {
    vertical-align: top;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 10px;
    height: 10px;
    line-height: 5px;
    /* border: #fff solid 1px; */
    margin: 0 2px;
    border-radius: 100px;
}

.ts-cal-blue {
    background: rgba(156, 202, 235, 1);
}
.ts-cal-orange {
    background: rgba(247, 167, 0, 1);
}
.ts-cal-green {
    background: rgba(153, 198, 109, 1);
}
.ts-cal-yellow {
    background: rgba(249, 233, 0, 1);
}

.ts-cal-details {
    position: relative;
    width: 100%;
    /* height: 240px; */
    /* background: var(--main-color); */
    margin-top: 5px;
    border-radius: 4px;
    padding: 20px 0;

}

.ts-cal-details.ts-cal-in {
    -webkit-animation: moveFromTopFade 0.6s ease both;
    -moz-animation: moveFromTopFade 0.6s ease both;
    animation: moveFromTopFade 0.6s ease both;
}

.ts-cal-details.ts-cal-out {
    -webkit-animation: moveToTopFade 0.7s ease both;
    -moz-animation: moveToTopFade 0.7s ease both;
    animation: moveToTopFade 0.7s ease both;
}

.ts-cal-arrow {
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: 6.5%;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 5px 10px;
    border-color: transparent transparent #fff transparent;
    transition: left 0.2s ease;

    z-index: 100;
}

.ts-cal-emptyevent {
    background-color: var(--main-color);
    width: 100%;
    text-align: center;
}
.ts-cal-events.ts-cal-in {
    -webkit-animation: fadeIn 0.2s ease both;
    -moz-animation: fadeIn 0.2s ease both;
    animation: fadeIn 0.2s ease both;
}

.ts-cal-events.ts-cal-in {
    display: flex;
    overflow-x: auto;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
}

.ts-cal-details.ts-cal-out .ts-cal-events {
    -webkit-animation: fadeOutShrink 0.1s ease both;
    -moz-animation: fadeOutShink 0.1s ease both;
    animation: fadeOutShink 0.1s ease both;
}

.ts-cal-events.ts-cal-out {
    -webkit-animation: fadeOut 0.1s ease both;
    -moz-animation: fadeOut 0.1s ease both;
    animation: fadeOut 0.1s ease both;
}

.ts-cal-event {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.5px;
    vertical-align: top;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
    background-color: transparent;
    transform: scale(.9);
}

.ts-cal-event.ts-cal-empty {
    color: #eee;
    width: 100%;
    background-color: var(--main-color);
    border-radius: 3px;
    text-align: center;
    border: #fff solid 2px;
    padding: 10px;
}

.ts-cal-event-category {
    height: 10px;
    width: 10px;
    display: inline-block;
    margin: 6px 0 0;
    vertical-align: top;
}

.ts-cal-legend {
    position: absolute;
    top: -30px;
    width: 100%;
    height: 30px;
    line-height: 30px;
}

.ts-cal-entry {
    position: relative;
    padding: 0 0 0 25px;
    font-size: 13px;
    display: inline-block;
    line-height: 30px;
    background: transparent;
}

.ts-cal-entry:after {
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    top: 12px;
    left: 14px;
}

.ts-cal-entry.ts-cal-blue:after {
    background: rgba(156, 202, 235, 1);
}
.ts-cal-entry.ts-cal-orange:after {
    background: rgba(247, 167, 0, 1);
}
.ts-cal-entry.ts-cal-green:after {
    background: rgba(153, 198, 109, 1);
}
.ts-cal-entry.ts-cal-yellow:after {
    background: rgba(249, 233, 0, 1);
}

.ts-calendarview .events::-webkit-scrollbar-thumb {
    background-color: #ab8a8a;
    /* border-radius: 10px; */
    left: 10px;
    /* max-height: 10px !important; */
    border-radius: 5px;
    /* position: relative; */
    width: 1px;
    /* position: absolute; */
    height: 1px;
}

.ts-calendarview .events::-webkit-scrollbar-track {
    background-color: #ffffff;
    border-top: 4px solid var(--main-color);
    border-bottom: 4px solid var(--main-color);
}


#calendar .ts-show-details {
    display: none;
}

#calendar .event-details {
    border-bottom: 0;
    margin-bottom: 0;
    padding: 0;
    padding-bottom:10px;
}



.ts-cal-event .ts-event{
    padding-bottom:0px;
}


.ts-calendarview .event-bg-mobile {
    display: none;
}
.ts-seatchart-prompt{
    display:none !important;
}

.ts-seatchart-prompt{
    display: none !important;
}

.ts-calendarview .day:hover {
    background-color: rgb(255 255 255 / 19%);
}
.ts-calendarview .day:active {
    background-color: rgb(255 255 255 / 29%);
}