/* Filtro Categoria */

.s61-events .title-filter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--categoria_titulo);
}

.s61-events .title-filter .title{
    position: relative;
    color: var(--titulo-agenda);
    font-family: var(--e-global-typography-8596efe-font-family), Sans-serif;
    font-size: var(--e-global-typography-8596efe-font-size);
    font-weight: var(--e-global-typography-8596efe-font-weight);
    line-height: var(--e-global-typography-8596efe-line-height);
    letter-spacing: var(--e-global-typography-8596efe-letter-spacing);
    word-spacing: var(--e-global-typography-8596efe-word-spacing);
}

.s61-events .title-filter .title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    z-index: -1;
    width: 100%;
    height: 10px;
    background-color: var(--titulo-barra);
}

.s61-events .title-filter .filter{
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.s61-events .title-filter .filter .filter-title{
    font-family: var(--e-global-typography-20f72cc-font-family), Sans-serif;
    font-size: var(--e-global-typography-20f72cc-font-size);
    font-weight: var(--e-global-typography-20f72cc-font-weight);
    line-height: var(--e-global-typography-20f72cc-line-height);
    letter-spacing: var(--e-global-typography-20f72cc-letter-spacing);
    word-spacing: var(--e-global-typography-20f72cc-word-spacing);
}

.s61-events .title-filter .filter .category{
    position: relative;
    color: var(--categoria_filtro);
    font-family: var(--e-global-typography-b83d8c3-font-family), Sans-serif;
    font-size: var(--e-global-typography-b83d8c3-font-size);
    font-weight: var(--e-global-typography-b83d8c3-font-weight);
    line-height: var(--e-global-typography-b83d8c3-line-height);
    letter-spacing: var(--e-global-typography-b83d8c3-letter-spacing);
    word-spacing: var(--e-global-typography-b83d8c3-word-spacing);
    cursor: pointer;
}

.s61-events .title-filter .filter .category.active{
    color: var(--categoria_filtro_ativo);
}

.s61-events .title-filter .filter .category.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: var(--categoria_filtro_ativo);
}

@media only screen and (max-width: 768px) {
    .s61-events .title-filter{
        flex-direction: column;
    }
    .s61-events .title-filter .filter{
        margin-top: 60px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .s61-events .title-filter .filter .filter-title{
        width: 100%;
    }
}

/* Filtro de data */

.calendar-filter{
    display: flex;
    justify-content: center;
    gap: 4px;
    user-select: none;
    margin-top: 50px;
}

.calendar-filter #calendar {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-y: visible;
    overflow-x: auto;
}

.calendar-filter #calendar .day{
    position: relative;
    color: var(--data_texto);
    font-family: var(--e-global-typography-d91a188-font-family), Sans-serif;
    font-size: var(--e-global-typography-d91a188-font-size);
    font-weight: var(--e-global-typography-d91a188-font-weight);
    line-height: var(--e-global-typography-d91a188-line-height);
    letter-spacing: var(--e-global-typography-d91a188-letter-spacing);
    word-spacing: var(--e-global-typography-d91a188-word-spacing);
}

.calendar-filter #calendar .day .month-label {
    position: absolute;
    top: 0px;
    left: 10px;
    font-size: 13px;
    text-transform: uppercase;
}

.calendar-filter #calendar .day .day-content{
    width: 32px;
    height: 58px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    color: var(--data_texto);
    margin-top: 25px;
    margin-bottom: 15px;
    cursor: pointer;
}

.calendar-filter #calendar .day .day-content.active{
    background-color: var(--data_dia_ativo);
}

.calendar-filter #calendar .day.marked .day-content{
    border: 2px solid var(--data_dia_marcado);
}

.calendar-filter #calendar .day .day-content .day-number{
    font-family: var(--e-global-typography-f4aceb8-font-family), Sans-serif;
    font-size: var(--e-global-typography-f4aceb8-font-size);
    font-weight: var(--e-global-typography-f4aceb8-font-weight);
    line-height: var(--e-global-typography-f4aceb8-line-height);
    letter-spacing: var(--e-global-typography-f4aceb8-letter-spacing);
    word-spacing: var(--e-global-typography-f4aceb8-word-spacing);
}

.calendar-filter #calendar .day .day-content .day-of-week{
    margin-bottom: 11px;
    font-family: var(--e-global-typography-ce6f3aa-font-family), Sans-serif;
    font-size: var(--e-global-typography-ce6f3aa-font-size);
    font-weight: var(--e-global-typography-ce6f3aa-font-weight);
    line-height: var(--e-global-typography-ce6f3aa-line-height);
    letter-spacing: var(--e-global-typography-ce6f3aa-letter-spacing);
    word-spacing: var(--e-global-typography-ce6f3aa-word-spacing);
    text-transform: uppercase;
}

.calendar-filter #prevButton, #nextButton {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: none;
    cursor: pointer;
    stroke: var(--data_seta);
}

.calendar-filter #prevButton{
    transform: scaleX(-1);
}

.calendar-filter ::-webkit-scrollbar {
    height: 5px;
}

.calendar-filter ::-webkit-scrollbar-track {
    background: var(--data_scrollbar_track); 
}

.calendar-filter ::-webkit-scrollbar-thumb {
    background: var(--data_scrollbar_handle); 
}

/* Listagem de Eventos */

.s61-events .s61-listingEvents {
    /*display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 80px;
    justify-content: start;*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 80px;
    margin-top: 60px;
}

.s61-events .s61-listingEvents .event {
    /*max-width: 260px;*/
}

.s61-events .s61-listingEvents .event .galery{
    overflow: hidden;
}

.s61-events .s61-listingEvents .event .galery .swiper-container{
    position: relative;
}

.s61-events .s61-listingEvents .event .galery .swiper-slide{
	overflow: hidden;
}

.s61-listingEvents .event .galery .swiper-container .swiper-slide img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.s61-events .s61-listingEvents .event .galery .swiper-container .swiper-wrapper{
    width: 0;
}

.s61-events .s61-listingEvents .event .galery .swiper-pagination{
    position: relative !important;
    margin-top: 20px;
}

.s61-events .s61-listingEvents .event .galery .swiper-pagination-bullet{
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    background: var(--background-bullet-galeria) !important;
    opacity: 1 !important;
}

.s61-events .s61-listingEvents .event .galery .swiper-pagination-bullet + .swiper-pagination-bullet{
    margin-left: 5px !important;
}

.s61-events .s61-listingEvents .event .galery .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--bullet-galeria) !important;
}

.s61-events .s61-listingEvents .event .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding: 0px 10px;
}

.s61-events .s61-listingEvents .event .content .date,
.s61-events .s61-listingEvents .event .content .not-time-title{
    color: var(--texto-evento);
    text-transform: uppercase;
    font-family: var(--e-global-typography-00dd0e4-font-family), Sans-serif;
    font-size: var(--e-global-typography-00dd0e4-font-size);
    font-weight: var(--e-global-typography-00dd0e4-font-weight);
    line-height: var(--e-global-typography-00dd0e4-line-height);
    letter-spacing: var(--e-global-typography-00dd0e4-letter-spacing);
    word-spacing: var(--e-global-typography-00dd0e4-word-spacing);
}

.s61-events .s61-listingEvents .event .content .title{
    color: var(--texto-evento);
    margin-top: 20px;
    font-family: var(--e-global-typography-8596efe-font-family), Sans-serif;
    font-size: var(--e-global-typography-1a91abe-font-size);
    font-weight: var(--e-global-typography-1a91abe-font-weight);
    line-height: 35px;
    letter-spacing: var(--e-global-typography-1a91abe-letter-spacing);
    word-spacing: var(--e-global-typography-1a91abe-word-spacing);
}

.s61-events .s61-listingEvents .event .content .sub{
    color: var(--texto-evento);
    font-family: var(--e-global-typography-cf5dc6f-font-family), Sans-serif;
    font-size: var(--e-global-typography-cf5dc6f-font-size);
    font-weight: var(--e-global-typography-cf5dc6f-font-weight);
    line-height: var(--e-global-typography-cf5dc6f-line-height);
    letter-spacing: var(--e-global-typography-cf5dc6f-letter-spacing);
    word-spacing: var(--e-global-typography-cf5dc6f-word-spacing);
    text-transform: uppercase;
    margin-top: 10px;
}

.s61-events .s61-listingEvents .event .content .tags{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;            
    gap: 10px;
    font-size: 13px;
    margin-top: 20px;
}

.s61-events .s61-listingEvents .event .content .tags .tag{
    color: var(--texto-tag);
    border: 1px solid var(--borda-tag);
    padding: 5px 8px;
    font-family: var(--e-global-typography-df272e2-font-family), Sans-serif;
    font-size: var(--e-global-typography-df272e2-font-size);
    font-weight: var(--e-global-typography-df272e2-font-weight);
    line-height: var(--e-global-typography-df272e2-line-height);
    letter-spacing: var(--e-global-typography-df272e2-letter-spacing);
    word-spacing: var(--e-global-typography-df272e2-word-spacing);
}

.s61-events .s61-listingEvents .event .content .buy:before,
.s61-events .s61-listingEvents .event .content .free-entrance:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s;
    background-color: var(--background-comprar-ingressos);
}

.s61-events .s61-listingEvents .event .content .free-entrance:before{
	background-color: #000;
}

.s61-events .s61-listingEvents .event .content .buy,
.s61-events .s61-listingEvents .event .content .free-entrance{
	position: relative;
    margin-top: 20px;
    padding: 18px 15px;
    color: var(--texto-comprar-ingressos);
    font-family: var(--e-global-typography-7c55c0a-font-family), Sans-serif;
    font-size: var(--e-global-typography-7c55c0a-font-size);
    font-weight: var(--e-global-typography-7c55c0a-font-weight);
    line-height: var(--e-global-typography-7c55c0a-line-height);
    letter-spacing: var(--e-global-typography-7c55c0a-letter-spacing);
    word-spacing: var(--e-global-typography-7c55c0a-word-spacing);
}

.s61-events .s61-listingEvents .event .content .buy:hover:before,
.s61-events .s61-listingEvents .event .content .free-entrance:hover:before{
    transform: scale(1.1);
}

.s61-events .loadmore{
    width: 100%;
    margin-top: 60px;
    cursor: pointer;
}

.s61-events .btnLoadmore{
    width: fit-content;
    position: relative;
    margin-top: 10px;
    padding: 18px 15px;
    color: var(--texto-comprar-ingressos);
    font-family: var(--e-global-typography-7c55c0a-font-family), Sans-serif;
    font-size: var(--e-global-typography-7c55c0a-font-size);
    font-weight: var(--e-global-typography-7c55c0a-font-weight);
    line-height: var(--e-global-typography-7c55c0a-line-height);
    letter-spacing: var(--e-global-typography-7c55c0a-letter-spacing);
    word-spacing: var(--e-global-typography-7c55c0a-word-spacing);
    text-transform: uppercase;
    margin: auto;
}

.s61-events .btnLoadmore:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s;
    background-color: var(--background-comprar-ingressos);
}


.s61-events .notfound{
	color: var(--texto-tag);
	font-family: var(--e-global-typography-df272e2-font-family), Sans-serif;
    font-size: var(--e-global-typography-df272e2-font-size);
    font-weight: var(--e-global-typography-df272e2-font-weight);
    line-height: var(--e-global-typography-df272e2-line-height);
    letter-spacing: var(--e-global-typography-df272e2-letter-spacing);
    word-spacing: var(--e-global-typography-df272e2-word-spacing);
}

.s61-listingEvents .galery.ingressos-esgotados .swiper-slide:first-child::before,
.s61-listingEvents .galery.ultimos-ingressos .swiper-slide:first-child::before,
.s61-listingEvents .galery.em-breve .swiper-slide:first-child::before{
	position: absolute;
    width: 110%;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: -5%;
    transform: translateY(-50%) rotate(-15deg);
    font-family: var(--e-global-typography-9aa55f8-font-family), Sans-serif;
    font-size: var(--e-global-typography-9aa55f8-font-size);
    font-weight: var(--e-global-typography-9aa55f8-font-weight);
}

.s61-listingEvents .galery.ingressos-esgotados .swiper-slide:first-child::before{
    content: "INGRESSOS ESGOTADOS";
    background-color: #E3BF07;
    color: var(--e-global-color-e119b53);
}

.s61-listingEvents .galery.ultimos-ingressos .swiper-slide:first-child::before{
    content: "ÚLTIMOS INGRESSOS";
    background-color: #F51720;
    color: var( --e-global-color-14f9443 );
}

.s61-listingEvents .galery.em-breve .swiper-slide:first-child::before{
    content: "EM BREVE";
    background-color: #6191E2;
    color: var( --e-global-color-e119b53 );
}

@media only screen and (max-width: 1280px) {
	.s61-events .s61-listingEvents {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 860px) {
	.s61-events .s61-listingEvents {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
	.s61-events .s61-listingEvents {
        grid-template-columns: repeat(1, 1fr);
    }
    .s61-events .s61-listingEvents .event .galery .swiper-slide{
    	display: flex;
        justify-content: center;
        max-width: 280px;
    }
    .s61-events .s61-listingEvents .event .galery{
    	max-width: 280px;
    	margin: auto;
    }
    .s61-listingEvents .event .galery .swiper-container .swiper-slide img{
    	width: auto;
    }
}