.page-header-content > .d-flex {
    flex-wrap: wrap-reverse;
}

.page-header .page-title {
    width: 100%;
    order: 1;
}

.page-header .breadcrumb-wrapper {
    width: 100%;
}

.event__top {
    display: flex;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .event__top {
        flex-direction: column;
    }
}

.event__top-grid {
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    padding-bottom: 34px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 9px 0 rgba(214, 214, 214, 0.2509803922);
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .event__top-grid {
        margin-left: -16px;
        width: calc(100% + 32px);
        background-color: unset;
        box-shadow: unset;
        padding: 0;
    }
		
		.modal .event__top-grid {
				margin-left: auto;
				width: 100%;
				background-color: unset;
				box-shadow: unset;
				padding: 0;
		}
		
}

.event__top-grid-images {
    flex-shrink: 0;
}

.event__top-grid-images-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px 14px;
}

.event__top-grid-images img {
    max-width: 126px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
}

.event__top-grid-images img.active {
    border: 1px solid var(--primary);
}

@media (max-width: 991px) {
    .event__top-grid-images {
        display: none;
    }
}

.event__top-grid-slider {
    position: relative;
    width: 100%;
    margin: 14px 20px;
}

@media (max-width: 991px) {
    .event__top-grid-slider {
        margin: unset;
        min-height: 342px;
    }
}

.event__top-grid-slider-wrapper {
    display: grid;
    height: 100%;
    max-height: 500px;
    position: relative;
}

.event__top-grid-slider .swiper {
    width: 100%;
}

.event__top-grid-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event__top-grid-slider .videoplay img {
		/* width: 100%;
		height: 100%;
		object-fit: contain; */
		/* width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		position: relative;
		display: block; */
}

.event__top-grid-slider-badge {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Inter", "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.73px;
    padding: 4px 10px;
    background-color: #84C73F;
    color: #fff;
}

.event__top-grid-slider-pagination {
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 8px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    border-radius: 4px;
    background: rgba(69, 69, 69, 0.6901960784);
    color: #fff;
}

.swiper-thumbs {
    max-height: 500px;
}

.swiper-thumbs .swiper-slide {
    width: 126px;
    height: 126px;
}

.swiper-thumbs-button {
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
    padding: 6px;
    border-radius: 6px;
    background-color: #f7f7f7;
    transition: .2s;
}

.swiper-thumbs-button-inactive {
    display: none;
}

.swiper-thumbs-button:hover {
    background-color: var(--primary);
}

.swiper-thumbs-button:hover svg {
    stroke: #fff;
}

.swiper-thumbs-button-prev {
    top: -18px;
}

.swiper-thumbs-button-next {
    bottom: -18px;
}

.swiper-thumbs-button-next.swiper-button-disabled,
.swiper-thumbs-button-prev.swiper-button-disabled {
    opacity: 1;
}

@media (max-width: 991px) {
    .event__top-grid-slider-pagination {
        display: block;
    }
}

.event__top-grid-slider-buttons {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -34px;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .event__top-grid-slider-buttons {
        display: none;
    }
}

.event__top-grid-slider-button {
    position: static;
    margin: 0;
    width: 24px;
    height: 24px;
}

.event__top-grid-slider-button::after {
    display: none;
}

.event__top-card {
    width: 100%;
    background-color: #fff;
    padding: 24px 16px;
    height: fit-content;
    border-radius: 8px;
    box-shadow: 0 4px 9px 0 rgba(214, 214, 214, 0.2509803922);
}

.event__top-card:not(:last-child) {
    margin-bottom: 24px;
}

.event__top-card--mobile {
    display: none;
}

@media (max-width: 991px) {
    .event__top-card {
        display: none;
        padding: 16px;
    }

    .event__top-card--mobile {
        display: block;
    }
}

.event__top-card-date {
    display: flex;
    align-items: flex-end;
    font-size: 24px !important;
    font-weight: 600;
    line-height: 35.16px;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .event__top-card-date {
        margin-bottom: 8px;
    }
}

.event__top-card-date span {
    font-size: 16px;
    font-weight: 500;
    line-height: 18.75px;
    margin-left: 11px;
    margin-bottom: 2px;
}

.event__top-card-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.75px;
    color: #959CA5;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .event__top-card-time {
        margin-bottom: 24px;
    }
}

.event__top-card-time span {
    margin-top: 2px;
}

.event__top-card-addr {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .event__top-card-addr {
        margin-bottom: 24px;
    }
}

.event__top-card-addr-icon {
    margin-right: 14px;
    width: 24px;
    height: 24px;
}

.event__top-card-addr-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 18.75px;
}

.event__top-card-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .event__top-card-link {
        margin-bottom: 24px;
    }
}

.event__top-card-price {
    font-size: 20px;
    font-weight: 600;
    line-height: 23.44px;
    text-align: left;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .event__top-card-price {
        margin-bottom: 24px;
    }
}

.event__top-card-button {
    width: 100%;
    max-width: 280px;
}

@media (max-width: 991px) {
    .event__top-card-button {
        max-width: unset;
    }
}

.event__top-card-phone {
    display: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 23.44px;
}

.event__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.08px;
}

@media (max-width: 991px) {
    .event__text {
        margin-bottom: 24px;
    }
}

.event__text ul {
    list-style: none;
    padding: 0;
}

.event__text ul li {
    position: relative;
}

.event__text ul li:not(:last-child) {
    margin-bottom: 18px;
}

.event__text ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: -21px;
    top: 0;
    width: 5px;
    height: 5px;
    margin: 8px;
    background-color: var(--primary);
    border-radius: 100px;
}

.event__text-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 18.75px;
    margin-bottom: 20px;
}

.event__text-block {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 9px 0 rgba(214, 214, 214, 0.2509803922);
    padding: 20px 40px 40px;
}

.event__text-block:not(:last-child) {
    margin-bottom: 24px;
}

.videoplay a {
    position: absolute;
    display: flex;
		overflow: hidden;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
}

.videoplay a:after {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    background-image: url('../images/play.png');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-size: 100% 100%;
}

/*# sourceMappingURL=event-page.css.map */
