/* Buttons */
.event-button {
	padding: 15px 32px;
	display: block;
	width: max-content;
	font-family: 'Igra Sans';
	font-size: 16px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	border: 1px solid;
	border-radius: 40px;
	cursor: pointer;
	transition: 0.3s ease-out;
}

.event-button_red {
	background: #d44b3f;
	border-color: #d44b3f;
	color: #fff;
}

@media (hover: hover) {
	.event-button_red:hover {
		background: #b02e23;
		border-color: #b02e23;
	}
}

.event-button_red.disabled {
	background: #e6b1ac;
	border-color: #e6b1ac;
}

.event-button_transparent {
	background: none;
	color: #141414;
	border-color: #141414;
}

@media (hover: hover) {
	.event-button_transparent:hover {
		background: #141414;
		border-color: #141414;
		color: #fff;
	}
}

.event-button_transparent.disabled {
	background: #f8f2f1;
	border-color: #f8f2f1;
	color: #b9aaaa;
}

.event-button_white {
	background: #fff;
	border-color: #fff;
	color: #141414;
}

@media (hover: hover) {
	.event-button_white:hover {
		background: #d44b3f;
		border-color: #d44b3f;
		color: #fff !important;
	}
}

.event-button_white.disabled {
	background: #f8f2f1;
	border-color: #f8f2f1;
	color: #b9aaaa !important;
}

.event-button_yellow {
	background: #f3d84a;
	border-color: #f3d84a;
	color: #141414;
}

@media (hover: hover) {
	.event-button_yellow:hover {
		background: #e9c819;
		border-color: #e9c819;
	}
}

.event-button_with-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.event-button_with-icon svg {
	margin-bottom: -1px;
	width: 18px;
	height: 18px;
}

@media (max-width: 767px) {
	.event-button {
		width: 100%;
	}
}

/* Title */
.event-title {
	margin: 0 0 36px;
	font-family: 'Igra Sans';
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	color: #141414;
}

.event-title_small-offset {
	margin-bottom: 30px;
}

@media (max-width: 1200px) {
	.event-title {
		margin-bottom: 27px;
		font-size: 32px;
	}

	.event-title_small-offset {
		margin-bottom: 25px;
	}
}

@media (max-width: 767px) {
	.event-title {
		margin-bottom: 29px;
		font-size: 24px;
	}

	.event-title_small-offset {
		margin-bottom: 11px;
	}
}

.event-subtitle {
	margin: 0 0 32px;
	display: block;
	font-size: 16px;
	line-height: 24px;
}

.event-subtitle a {
	transition: 0.3s ease-out;
}

@media (hover: hover) {
	.event-subtitle a:hover {
		color: #d44b3f;
	}
}

@media (max-width: 767px) {
	.event-subtitle {
		margin: 0 0 24px;
		font-size: 14px;
		line-height: 19px;
	}
}

/* Offset */
.event-offset {
	padding-bottom: 76px;
}

@media (max-width: 1200px) {
	.event-offset {
		padding-bottom: 52px;
	}
}

@media (max-width: 767px) {
	.event-offset {
		padding-bottom: 36px;
	}
}

/* Slider */
.events-slider-pagination {
	position: absolute;
	top: auto !important;
	bottom: 44px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.events-slider-pagination span {
	margin: 0 !important;
	width: 8px !important;
	height: 8px !important;
	background: #fff !important;
	border-color: #fff !important;
	opacity: 0.4;
}

.events-slider-pagination span.swiper-pagination-bullet-active {
	opacity: 1;
}

.events-slider-nav {
	width: 100%;
	padding: 24px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 50%;
	transform: translateY(50%);
	left: 0;
	z-index: 1;
	pointer-events: none;
}

.events-slider-nav__button {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s ease-out;
	pointer-events: visible;
}

.events-slider-nav__button.swiper-button-disabled {
	background: #f8f2f1;
}

.events-slider-nav__button.swiper-button-disabled svg path {
	stroke: #b9aaaa;
}

@media (hover: hover) {
	.events-slider-nav__button:hover:not(.swiper-button-disabled) {
		background: #d44b3f;
		border-color: #d44b3f;
	}

	.events-slider-nav__button:hover:not(.swiper-button-disabled) svg path {
		stroke: #fff;
	}
}

.events-slider-nav__button_next {
	svg {
		transform: rotate(180deg);
	}
}

.events-slider-nav__button svg {
	width: 24px;
	height: 24px;
}

.events-slider-nav__button_transparent {
	background: none;
	color: #141414;
	border-color: #141414;
}

.events-slider-nav__button_transparent.swiper-button-disabled {
	border-color: #f8f2f1;
}

@media (max-width: 767px) {
	.events-slider-nav {
		padding: 16px;
	}

	.events-slider-nav__button {
		width: 32px;
		height: 32px;
	}

	.events-slider-nav__button svg {
		width: 16px;
		height: 16px;
	}

	.events-slider-pagination {
		bottom: 29px !important;
	}

	.events-slider-pagination span {
		width: 6px !important;
		height: 6px !important;
	}

	.events-slider-pagination_black span {
		background: #141414 !important;
		border-color: #141414 !important;
	}
}

/* Popup notice */
.event-popup-notice {
	padding: 16px;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	display: flex;
	background: rgba(22, 13, 13, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s ease-out;
}

.event-popup-notice.is-show {
	opacity: 1;
	pointer-events: visible;
}

.event-popup-notice__inner {
	margin: auto;
	padding: 40px;
	width: 100%;
	max-width: 680px;
	background: #faf8f8;
	border-radius: 24px;
	position: relative;
}

.event-popup-notice__title {
	margin-bottom: 16px;
	display: block;
	font-family: 'Igra Sans';
	text-align: center;
	font-size: 36px;
	line-height: 1;
	color: #141414;
}

.event-popup-notice__subtitle {
	display: block;
	font-size: 20px;
	line-height: 28px;
	color: #141414;
	text-align: center;
	line-height: 28px;
}

.event-popup-notice__close {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0;
	position: absolute;
	top: 16px;
	right: 16px;
	transition: 0.3s ease-out;
}

@media (hover: hover) {
	.event-popup-notice__close:hover {
		opacity: 0.7;
	}
}

.event-popup-notice__close svg {
	width: 24px;
	height: 24px;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.event-popup-notice__inner {
		padding: 32px;
		max-width: 600px;
		border-radius: 20px;
	}

	.event-popup-notice__title {
		margin-bottom: 8px;
		font-size: 32px;
	}

	.event-popup-notice__subtitle {
		font-size: 16px;
		line-height: 24px;
	}
}

@media (max-width: 767px) {
	.event-popup-notice__inner {
		padding: 24px 34px;
		border-radius: 16px;
	}

	.event-popup-notice__title {
		font-size: 24px;
	}

	.event-popup-notice__subtitle {
		font-size: 14px;
		line-height: 19px;
	}

	.event-popup-notice__close {
		top: 12px;
		right: 12px;
	}
}
