
.calendar-container {
    display: block;
    position: relative;
    background-color: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 0;
}

.calendar-items-wrapper {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #F9F9F9;
}

.calendar-items-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 48px;
}

.calendar-items-container.hidden {
    display: none;
}

.calendar-item {
    display: block;
    position: relative;
    width: 100%;
    /*padding-top: 163%;*/
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.calendar-item.hidden {
    display: none;
}


.calendar-item div.bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 163%;
    background-position: center;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}
.calendar-item div.bg svg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}
.calendar-item div.bg path{
}

.calendar-item .calender-item-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 56%;
    z-index: 2;
}

.calendar-item .image-container {
    position: absolute;
    top: 1%;
    left: 2%;
    right: 2%;
    height: 54%;
    background-size: contain;
    background-position: center;
    border-top-right-radius: 15%;
    border-top-left-radius: 15%;
    transform: translateZ(0);
    overflow: hidden;
}

.calendar-item img.calendar-item-image {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: scale 0.2s ease-in-out;
}

.calendar-item:hover img.calendar-item-image {
    scale: 1.2;
}

.calendar-item-info-container {
    position: absolute;
    left: 0;
    top: 56%;
    bottom: 1%;
    right: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 40px;
    overflow: hidden;
}

.calendar-item-info-container .item-type {
    text-transform: uppercase;
}

.calendar-item-info-container .item-title {
    text-transform: uppercase;
    color: #1E1E1E;
    margin-top: 20px;

}

.calendar-item-info-container .item-name {
    margin-top: 14px;
    line-height: 20px;

}

.calendar-item-info-container .item-place {
    width: 100%;
    margin-top: 9px;
    line-height: 20px;

    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 1; !* number of lines to show *!*/
    /*line-clamp: 1;*/
    /*-webkit-box-orient: vertical;*/
    /*overflow: hidden;*/
}

.calendar-item-info-container .item-date {
    color: #1E1E1E;
    margin-top: 18px;
    line-height: 20px;
}

.calendar-item .ticket-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.calendar-filter-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 120px;
    padding-right: 120px;
}

.calendar-title {
    text-transform: uppercase;
    margin-bottom: 42px;
}

.calendar-filter-container .calendar-filter-prev, .calendar-filter-container .calendar-filter-next {
    width: 67px;
    height: 67px;
    flex-shrink: 0;
    background-color: #29A181;
    border-radius: 14px;
    position: relative;
    margin: 0;
    display: block;
    top: unset;
    left: unset;
    right: unset;
    color: unset;
    cursor: pointer;
    visibility: hidden;
}

.calendar-filter-container .calendar-filter-prev {
    margin-right: 117px;
}

.calendar-filter-container .calendar-filter-next {
    margin-left: 117px;
}


.calendar-filter-container .calendar-filter-prev:after, .calendar-filter-container .calendar-filter-next:after {
    display: none;
}

.calendar-filter-container .calendar-filter-prev img, .calendar-filter-container .calendar-filter-next img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.calendar-filter-container .filter-gradient {
    display: none;
}

.calendar-filter-container .feature-filter {
    margin: 0;
    display: flex;
    position: relative;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: bold;
    color: #1E1E1E;
    width: auto;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 21px;
}

.calendar-filter-container .feature-filter:first-child {
    padding-left: 0;
}

.calendar-filter-container .feature-filter:last-child {
    padding-right: 0;
}


.calendar-filter-container .feature-filter.selected {
    color: #E95722;
}

.calendar-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(35, 47, 81, 0.5);
    margin: 3px 0;
}

.month-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.calendar-container.style-month .month-picker {
    display: none;
}

.calendar-container:not(.style-month) .past-items-title-container,
.calendar-container:not(.style-month) .calendar-items-container.past {
    display: none;
}

.month-picker .prev, .month-picker .next {
    width: 18px;
    height: 20px;
    display: block;
    position: relative;
    cursor: pointer;
}

.month-picker .prev img, .month-picker .next img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.month-picker .next {
    transform: rotate(180deg);
}

.month-picker .text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 40px;
}

.month-picker .text-container .month {
    color: #29A181;
    text-transform: uppercase;
}

.top-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.date-picker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 32px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.date-item-wrapper,
.feature-filter-wrapper {
    display: flex;
    align-items: center;
    overflow: scroll;
    /*scroll-snap-type: x mandatory;*/
}

.date-item-wrapper::-webkit-scrollbar,
.feature-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.date-item-wrapper,
.feature-filter-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


.date-picker .date-item {
    /*scroll-snap-align: start;*/
    position: relative;
    width: 67px;
    height: 67px;
    border-radius: 14px;
    border: 1px solid #29A181;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 8px;
    flex-shrink: 0;
}
.date-picker .date-item.month {
    cursor: pointer;
}


.date-picker .date-item:first-child {
    margin-left: 0;
}

.date-picker .date-item:last-child {
    margin-right: 0;
}

.date-picker .date-item.selected {
    background-color: #29A181;
}

.date-picker .date-item p {
    font-weight: bold;
    color: #29A181;
    line-height: 20px;
}

.date-picker .date-item.selected p {
    color: white;
}

.past-items-title-container {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 42px;
    border-bottom: 1px solid #D9D9D9;
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    /*display: none;*/
}
/*.calendar-container.style-month .past-items-title-container {*/
/*    display: flex;*/
/*}*/


.past-items-title-container.hidden {
    display: none;
}

.past-items-title-container .title {
    text-transform: uppercase;
}

.past-items-title-container .month {
    text-transform: uppercase;
    color: #2DC4B5;
}

/*.calendar-items-container.past {*/
/*    display: none;*/
/*}*/

/*.calendar-container.style-month .calendar-items-container.past {*/
/*    display: grid;*/
/*}*/

.calendar-items-container.past .calendar-item-info-container,
.calendar-items-container.past .calendar-item div.bg,
.calendar-items-container.past .ticket-icon {
    opacity: 0.3;
    filter: grayscale(1);
}

.calendar-items-container.past .calendar-item-image {
    filter: grayscale(1);
}


@media only screen and (max-width: 1900px) {

    h1 {
        font-size: 80px;
        line-height: 80px;
    }

    h2 {
        font-size: 56px;
        line-height: 56px;
    }

    h3 {
        font-size: 30px;
        line-height: 30px;
    }

    h4 {
        font-size: 22px;
        line-height: 25px;
    }

    div, p, a, input {
        font-size: 18px;
        line-height: 28px;
    }

    div.p2, p.p2, a.p2 {
        font-size: 13px;
        line-height: 22px;
    }


    .calendar-item-info-container .item-title {
        margin-top: 12px;
    }

    .calendar-item-info-container .item-name {
        margin-top: 10px;
    }

    .calendar-item-info-container .item-place {
        margin-top: 9px;
    }

    .calendar-item-info-container .item-date {
        margin-top: 12px;
    }
}
@media only screen and (max-width: 1700px) {

    .calendar-filter-container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .calendar-item-info-container .item-title {
        margin-top: 8px;
    }

    .calendar-item-info-container .item-name {
        margin-top: 8px;
        line-height: 16px;
    }

    .calendar-item-info-container .item-place {
        margin-top: 4px;
        line-height: 16px;
    }

    .calendar-item-info-container .item-date {
        color: #1E1E1E;
        margin-top: 8px;
        line-height: 16px;
    }
}

@media only screen and (max-width: 1500px) {

    h1 {
        font-size: 60px;
        line-height: 60px;
    }

    h2 {
        font-size: 45px;
        line-height: 45px;
    }

    h3 {
        font-size: 23px;
        line-height: 23px;
    }

    h4 {
        font-size: 18px;
        line-height: 22px;
    }

    div, p, a, input {
        font-size: 14px;
        line-height: 24px;
    }
}
@media only screen and (max-width: 1300px) {

    h1 {
        font-size: 52px;
        line-height: 52px;
    }

    h2 {
        font-size: 40px;
        line-height: 40px;
    }

    h3 {
        font-size: 21px;
        line-height: 21px;
    }

    h4 {
        font-size: 16px;
        line-height: 19px;
    }

    div, p, a, input {
        font-size: 13px;
        line-height: 21px;
    }

    .calendar-item .ticket-icon {
        position: absolute;
        bottom: 25px;
        right: 25px;
        width: 47px;
        height: 47px;
    }

    .calendar-item-info-container {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 1100px) {

    h1 {
        font-size: 50px;
        line-height: 50px;
    }

    h2 {
        font-size: 36px;
        line-height: 36px;
    }

    h3 {
        font-size: 19px;
        line-height: 19px;
    }

    h4 {
        font-size: 15px;
        line-height: 18px;
    }

    div, p, a, input {
        font-size: 12px;
        line-height: 19px;
    }
}



@media only screen and (max-width: 992px) {

    .calendar-filter-container {
        padding-left: 0;
        padding-right: 0;
    }

    .calendar-container {
        padding-top: 42px;
        padding-bottom: 0;
    }

    .calendar-items-wrapper {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .calendar-items-container {
        grid-template-columns: auto;
        column-gap: 0;
        row-gap: 24px;
    }

    .calendar-item-info-container .item-type {
        /*font-size: 24px;*/
        /*line-height: 28px;*/
    }

    .calendar-item-info-container .item-title {
        /*font-size: 24px;*/
        /*line-height: 28px;*/
        margin-top: 16px;
    }

    .calendar-item-info-container .item-name {
        /*font-size: 16px;*/
        /*line-height: 11px;*/
        margin-top: 12px;
    }

    .calendar-item-info-container .item-place {
        /*font-size: 16px;*/
        /*line-height: 11px;*/
        margin-top: 12px;
    }

    .calendar-item-info-container .item-date {
        /*font-size: 16px;*/
        /*line-height: 11px;*/
        margin-top: 12px;
    }


    .calendar-item .ticket-icon {
        position: absolute;
        bottom: 40px;
        right: 40px;
        width: 57px;
        height: 57px;
    }

    .month-picker .text-container .month {
        font-size: 20px;
        line-height: 24px;
    }


    .calendar-title {
        font-size: 32px;
        margin-bottom: 3px;
    }

    .top-filters {
        padding: 24px 0;
    }

    .month-picker .text-container {
        margin: 0 24px;
    }

    .calendar-filter-prev, .calendar-filter-next {
        display: none !important;
    }

    .calendar-filter-container .filter-gradient {
        display: block;
        position: absolute;
        top: 0;
        width: 50px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .calendar-filter-container .filter-gradient.left {
        left: 0;
        background-image: linear-gradient(90deg, white, #FFFFFF00);
    }

    .calendar-filter-container .filter-gradient.right {
        right: 0;
        background-image: linear-gradient(90deg, #FFFFFF00, white);
    }

    .calendar-filter-container .feature-filter {
        font-size: 20px;
        line-height: 24px;
        padding: 0 12px;
    }


    .date-item-wrapper,
    .feature-filter-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    .date-picker {
        margin-top: 32px;
        margin-bottom: 42px;
        overflow: visible;
        justify-content: center;
        /*margin-left: -24px;*/
        width: 100%;
    }

    .date-picker .date-item {
        width: 57px;
        height: 57px;
        margin: 0 6px;
    }



    .calendar-item-info-container .item-title {
        font-size: 60px;
        line-height: 60px;
        margin-top: 42px;
    }

    .calendar-item-info-container .item-type {
        font-size: 44px;
        line-height: 50px;
    }

    
    .calendar-item-info-container .item-name, .calendar-item-info-container .item-place, .calendar-item-info-container .item-date {
        font-size: 36px;
        line-height: 50px;
        margin-top: 30px;
    }

    .calendar-item-info-container .item-place{
    }

    .calendar-item-info-container{
        padding: 42px 60px;
    }

    .calendar-item .ticket-icon {
        bottom: 70px;
        right: 70px;
        width: 80px;
        height: 80px;
    }


}


@media only screen and (max-width: 768px) {


    .calendar-item-info-container .item-title {
        font-size: 40px;
        line-height: 40px;
        margin-top: 24px;
    }

    .calendar-item-info-container .item-type {
        font-size: 32px;
        line-height: 40px;
    }

    .calendar-item-info-container .item-name, .calendar-item-info-container .item-place, .calendar-item-info-container .item-date {
        font-size: 24px;
        line-height: 32px;
        margin-top: 8px;
    }

    .calendar-item-info-container .item-place{
    }

    .calendar-item-info-container{
        padding: 42px 60px;
    }

    .calendar-item .ticket-icon {
        bottom: 70px;
        right: 70px;
        width: 80px;
        height: 80px;
    }


}
@media only screen and (max-width: 576px) {

    .calendar-item-info-container .item-title {
        font-size: 23px;
        line-height: 23px;
        margin-top: 12px;
    }

    .calendar-item-info-container .item-type {
        font-size: 18px;
        line-height: 21px;
    }
    .calendar-item-info-container .item-name{
        font-size: 15px;
        line-height: 23px;
    }
    .calendar-item-info-container .item-place, .calendar-item-info-container .item-date {
        font-size: 15px;
        line-height: 23px;
    }
    .calendar-item-info-container{
        padding: 20px 40px;
    }


    .calendar-item .ticket-icon {
        bottom: 40px;
        right: 40px;
        width: 57px;
        height: 57px;
    }

}
