@-webkit-keyframes scale {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	45% {
		opacity: 0.7;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	80% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-pulse > div:nth-child(0) {
	-webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.36s
		infinite;
	animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.36s infinite;
}
.ball-pulse > div:first-child {
	-webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.24s
		infinite;
	animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.24s infinite;
}
.ball-pulse > div:nth-child(2) {
	-webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.12s
		infinite;
	animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.12s infinite;
}
.ball-pulse > div:nth-child(3) {
	-webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s
		infinite;
	animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s infinite;
}
.ball-pulse > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	margin: 2px;
	width: 15px;
}
@-webkit-keyframes ball-pulse-sync {
	33% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	66% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes ball-pulse-sync {
	33% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	66% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.ball-pulse-sync > div:nth-child(0) {
	-webkit-animation: ball-pulse-sync 0.6s ease-in-out -0.21s infinite;
	animation: ball-pulse-sync 0.6s ease-in-out -0.21s infinite;
}
.ball-pulse-sync > div:first-child {
	-webkit-animation: ball-pulse-sync 0.6s ease-in-out -0.14s infinite;
	animation: ball-pulse-sync 0.6s ease-in-out -0.14s infinite;
}
.ball-pulse-sync > div:nth-child(2) {
	-webkit-animation: ball-pulse-sync 0.6s ease-in-out -0.07s infinite;
	animation: ball-pulse-sync 0.6s ease-in-out -0.07s infinite;
}
.ball-pulse-sync > div:nth-child(3) {
	-webkit-animation: ball-pulse-sync 0.6s ease-in-out 0s infinite;
	animation: ball-pulse-sync 0.6s ease-in-out 0s infinite;
}
.ball-pulse-sync > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	margin: 2px;
	width: 15px;
}
@-webkit-keyframes ball-scale {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes ball-scale {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-scale > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: ball-scale 1s ease-in-out 0s infinite;
	animation: ball-scale 1s ease-in-out 0s infinite;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	height: 60px;
	margin: 2px;
	width: 15px;
	width: 60px;
}
.ball-scale-random {
	height: 40px;
	width: 37px;
}
.ball-scale-random > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: ball-scale 1s ease-in-out 0s infinite;
	animation: ball-scale 1s ease-in-out 0s infinite;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	height: 30px;
	margin: 2px;
	position: absolute;
	width: 15px;
	width: 30px;
}
.ball-scale-random > div:first-child {
	-webkit-animation: ball-scale 1s ease-in-out 0.2s infinite;
	animation: ball-scale 1s ease-in-out 0.2s infinite;
	margin-left: -7px;
}
.ball-scale-random > div:nth-child(3) {
	-webkit-animation: ball-scale 1s ease-in-out 0.5s infinite;
	animation: ball-scale 1s ease-in-out 0.5s infinite;
	margin-left: -2px;
	margin-top: 9px;
}
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
.ball-rotate,
.ball-rotate > div {
	position: relative;
}
.ball-rotate > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 100%;
	height: 15px;
	margin: 2px;
	width: 15px;
}
.ball-rotate > div:first-child {
	-webkit-animation: rotate 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) 0s
		infinite;
	animation: rotate 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) 0s infinite;
}
.ball-rotate > div:after,
.ball-rotate > div:before {
	background-color: #fff;
	border-radius: 100%;
	content: "";
	height: 15px;
	margin: 2px;
	opacity: 0.8;
	position: absolute;
	width: 15px;
}
.ball-rotate > div:before {
	left: -28px;
	top: 0;
}
.ball-rotate > div:after {
	left: 25px;
	top: 0;
}
.ball-clip-rotate > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: rotate 0.75s linear 0s infinite;
	animation: rotate 0.75s linear 0s infinite;
	background-color: #fff;
	background: transparent !important;
	border: 2px solid;
	border-color: #fff #fff transparent;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	height: 25px;
	margin: 2px;
	width: 15px;
	width: 25px;
}
@keyframes scale {
	30% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-clip-rotate-pulse {
	position: relative;
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
}
.ball-clip-rotate-pulse > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	border-radius: 100%;
	left: 0;
	position: absolute;
	top: 0;
}
.ball-clip-rotate-pulse > div:first-child {
	-webkit-animation: scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
	animation: scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
	background: #fff;
	height: 16px;
	left: -7px;
	top: 7px;
	width: 16px;
}
.ball-clip-rotate-pulse > div:last-child {
	-webkit-animation: rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
	animation: rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	background: transparent;
	border: 2px solid;
	border-color: #fff transparent;
	border-style: solid;
	border-width: 2px;
	height: 30px;
	left: -16px;
	position: absolute;
	top: -2px;
	width: 30px;
}
@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg) scale(1);
		transform: rotate(0deg) scale(1);
	}
	50% {
		-webkit-transform: rotate(180deg) scale(0.6);
		transform: rotate(180deg) scale(0.6);
	}
	to {
		-webkit-transform: rotate(1turn) scale(1);
		transform: rotate(1turn) scale(1);
	}
}
.ball-clip-rotate-multiple {
	position: relative;
}
.ball-clip-rotate-multiple > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: rotate 1s ease-in-out 0s infinite;
	animation: rotate 1s ease-in-out 0s infinite;
	border-color: transparent #fff;
	border-radius: 100%;
	border-style: solid;
	border-width: 2px;
	height: 35px;
	left: -20px;
	position: absolute;
	top: -20px;
	width: 35px;
}
.ball-clip-rotate-multiple > div:last-child {
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	border-color: #fff transparent;
	display: inline-block;
	height: 15px;
	left: -10px;
	top: -10px;
	width: 15px;
}
@-webkit-keyframes ball-scale-ripple {
	0% {
		opacity: 1;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	70% {
		opacity: 0.7;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
	}
}
@keyframes ball-scale-ripple {
	0% {
		opacity: 1;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	70% {
		opacity: 0.7;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
	}
}
.ball-scale-ripple > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: ball-scale-ripple 1s cubic-bezier(0.21, 0.53, 0.56, 0.8)
		0s infinite;
	animation: ball-scale-ripple 1s cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s
		infinite;
	border: 2px solid #fff;
	border-radius: 100%;
	height: 50px;
	width: 50px;
}
@-webkit-keyframes ball-scale-ripple-multiple {
	0% {
		opacity: 1;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	70% {
		opacity: 0.7;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
	}
}
@keyframes ball-scale-ripple-multiple {
	0% {
		opacity: 1;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	70% {
		opacity: 0.7;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		opacity: 0;
	}
}
.ball-scale-ripple-multiple {
	position: relative;
	-webkit-transform: translateY(-25px);
	-ms-transform: translateY(-25px);
	transform: translateY(-25px);
}
.ball-scale-ripple-multiple > div:nth-child(0) {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
.ball-scale-ripple-multiple > div:first-child {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}
.ball-scale-ripple-multiple > div:nth-child(2) {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}
.ball-scale-ripple-multiple > div:nth-child(3) {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}
.ball-scale-ripple-multiple > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: ball-scale-ripple-multiple 1.25s
		cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s infinite;
	animation: ball-scale-ripple-multiple 1.25s
		cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s infinite;
	border: 2px solid #fff;
	border-radius: 100%;
	height: 50px;
	left: -26px;
	position: absolute;
	top: -2px;
	width: 50px;
}
@-webkit-keyframes ball-beat {
	50% {
		opacity: 0.2;
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes ball-beat {
	50% {
		opacity: 0.2;
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-beat > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: ball-beat 0.7s linear 0s infinite;
	animation: ball-beat 0.7s linear 0s infinite;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	margin: 2px;
	width: 15px;
}
.ball-beat > div:nth-child(2n-1) {
	-webkit-animation-delay: -0.35s !important;
	animation-delay: -0.35s !important;
}
@-webkit-keyframes ball-scale-multiple {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	5% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes ball-scale-multiple {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	5% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-scale-multiple {
	position: relative;
	-webkit-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}
.ball-scale-multiple > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: ball-scale-multiple 1s linear 0s infinite;
	animation: ball-scale-multiple 1s linear 0s infinite;
	background-color: #fff;
	border-radius: 100%;
	height: 15px;
	height: 60px;
	left: -30px;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 15px;
	width: 60px;
}
@-webkit-keyframes ball-triangle-path-1 {
	33% {
		-webkit-transform: translate(25px, -50px);
		transform: translate(25px, -50px);
	}
	66% {
		-webkit-transform: translate(50px);
		transform: translate(50px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-triangle-path-1 {
	33% {
		-webkit-transform: translate(25px, -50px);
		transform: translate(25px, -50px);
	}
	66% {
		-webkit-transform: translate(50px);
		transform: translate(50px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@-webkit-keyframes ball-triangle-path-2 {
	33% {
		-webkit-transform: translate(25px, 50px);
		transform: translate(25px, 50px);
	}
	66% {
		-webkit-transform: translate(-25px, 50px);
		transform: translate(-25px, 50px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-triangle-path-2 {
	33% {
		-webkit-transform: translate(25px, 50px);
		transform: translate(25px, 50px);
	}
	66% {
		-webkit-transform: translate(-25px, 50px);
		transform: translate(-25px, 50px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@-webkit-keyframes ball-triangle-path-3 {
	33% {
		-webkit-transform: translate(-50px);
		transform: translate(-50px);
	}
	66% {
		-webkit-transform: translate(-25px, -50px);
		transform: translate(-25px, -50px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-triangle-path-3 {
	33% {
		-webkit-transform: translate(-50px);
		transform: translate(-50px);
	}
	66% {
		-webkit-transform: translate(-25px, -50px);
		transform: translate(-25px, -50px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
.ball-triangle-path {
	position: relative;
	-webkit-transform: translate(-29.994px, -37.50938px);
	-ms-transform: translate(-29.994px, -37.50938px);
	transform: translate(-29.994px, -37.50938px);
}
.ball-triangle-path > div:first-child {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ball-triangle-path-1;
	animation-name: ball-triangle-path-1;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
.ball-triangle-path > div:nth-child(2) {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ball-triangle-path-2;
	animation-name: ball-triangle-path-2;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
.ball-triangle-path > div:nth-child(3) {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ball-triangle-path-3;
	animation-name: ball-triangle-path-3;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
.ball-triangle-path > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	border: 1px solid #fff;
	border-radius: 100%;
	height: 10px;
	position: absolute;
	width: 10px;
}
.ball-triangle-path > div:first-of-type {
	top: 50px;
}
.ball-triangle-path > div:nth-of-type(2) {
	left: 25px;
}
.ball-triangle-path > div:nth-of-type(3) {
	left: 50px;
	top: 50px;
}
@-webkit-keyframes ball-pulse-rise-even {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	25% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	75% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes ball-pulse-rise-even {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	25% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	75% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes ball-pulse-rise-odd {
	0% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	25% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	75% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
}
@keyframes ball-pulse-rise-odd {
	0% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	25% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	75% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
}
.ball-pulse-rise > div {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
	animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 15px;
	margin: 2px;
	width: 15px;
}
.ball-pulse-rise > div:nth-child(2n) {
	-webkit-animation-name: ball-pulse-rise-even;
	animation-name: ball-pulse-rise-even;
}
.ball-pulse-rise > div:nth-child(2n-1) {
	-webkit-animation-name: ball-pulse-rise-odd;
	animation-name: ball-pulse-rise-odd;
}
@-webkit-keyframes ball-grid-beat {
	50% {
		opacity: 0.7;
	}
	to {
		opacity: 1;
	}
}
@keyframes ball-grid-beat {
	50% {
		opacity: 0.7;
	}
	to {
		opacity: 1;
	}
}
.ball-grid-beat {
	width: 57px;
}
.ball-grid-beat > div:first-child {
	-webkit-animation-delay: 0.44s;
	animation-delay: 0.44s;
	-webkit-animation-duration: 1.27s;
	animation-duration: 1.27s;
}
.ball-grid-beat > div:nth-child(2) {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	-webkit-animation-duration: 1.52s;
	animation-duration: 1.52s;
}
.ball-grid-beat > div:nth-child(3) {
	-webkit-animation-delay: 0.14s;
	animation-delay: 0.14s;
	-webkit-animation-duration: 0.61s;
	animation-duration: 0.61s;
}
.ball-grid-beat > div:nth-child(4) {
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
	-webkit-animation-duration: 0.82s;
	animation-duration: 0.82s;
}
.ball-grid-beat > div:nth-child(5) {
	-webkit-animation-delay: -0.01s;
	animation-delay: -0.01s;
	-webkit-animation-duration: 1.24s;
	animation-duration: 1.24s;
}
.ball-grid-beat > div:nth-child(6) {
	-webkit-animation-delay: -0.07s;
	animation-delay: -0.07s;
	-webkit-animation-duration: 1.35s;
	animation-duration: 1.35s;
}
.ball-grid-beat > div:nth-child(7) {
	-webkit-animation-delay: 0.29s;
	animation-delay: 0.29s;
	-webkit-animation-duration: 1.44s;
	animation-duration: 1.44s;
}
.ball-grid-beat > div:nth-child(8) {
	-webkit-animation-delay: 0.63s;
	animation-delay: 0.63s;
	-webkit-animation-duration: 1.19s;
	animation-duration: 1.19s;
}
.ball-grid-beat > div:nth-child(9) {
	-webkit-animation-delay: -0.18s;
	animation-delay: -0.18s;
	-webkit-animation-duration: 1.48s;
	animation-duration: 1.48s;
}
.ball-grid-beat > div {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ball-grid-beat;
	animation-name: ball-grid-beat;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	float: left;
	height: 15px;
	margin: 2px;
	width: 15px;
}
@-webkit-keyframes ball-grid-pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes ball-grid-pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-grid-pulse {
	width: 57px;
}
.ball-grid-pulse > div:first-child {
	-webkit-animation-delay: 0.58s;
	animation-delay: 0.58s;
	-webkit-animation-duration: 0.9s;
	animation-duration: 0.9s;
}
.ball-grid-pulse > div:nth-child(2) {
	-webkit-animation-delay: 0.01s;
	animation-delay: 0.01s;
	-webkit-animation-duration: 0.94s;
	animation-duration: 0.94s;
}
.ball-grid-pulse > div:nth-child(3) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
	-webkit-animation-duration: 1.43s;
	animation-duration: 1.43s;
}
.ball-grid-pulse > div:nth-child(4) {
	-webkit-animation-delay: -0.03s;
	animation-delay: -0.03s;
	-webkit-animation-duration: 0.74s;
	animation-duration: 0.74s;
}
.ball-grid-pulse > div:nth-child(5) {
	-webkit-animation-delay: 0.21s;
	animation-delay: 0.21s;
	-webkit-animation-duration: 0.68s;
	animation-duration: 0.68s;
}
.ball-grid-pulse > div:nth-child(6) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
	-webkit-animation-duration: 1.17s;
	animation-duration: 1.17s;
}
.ball-grid-pulse > div:nth-child(7) {
	-webkit-animation-delay: 0.46s;
	animation-delay: 0.46s;
	-webkit-animation-duration: 1.41s;
	animation-duration: 1.41s;
}
.ball-grid-pulse > div:nth-child(8) {
	-webkit-animation-delay: 0.02s;
	animation-delay: 0.02s;
	-webkit-animation-duration: 1.56s;
	animation-duration: 1.56s;
}
.ball-grid-pulse > div:nth-child(9) {
	-webkit-animation-delay: 0.13s;
	animation-delay: 0.13s;
	-webkit-animation-duration: 0.78s;
	animation-duration: 0.78s;
}
.ball-grid-pulse > div {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ball-grid-pulse;
	animation-name: ball-grid-pulse;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	float: left;
	height: 15px;
	margin: 2px;
	width: 15px;
}
@-webkit-keyframes ball-spin-fade-loader {
	50% {
		opacity: 0.3;
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes ball-spin-fade-loader {
	50% {
		opacity: 0.3;
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.ball-spin-fade-loader {
	left: -10px;
	position: relative;
	top: -10px;
}
.ball-spin-fade-loader > div:first-child {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.96s infinite;
	animation: ball-spin-fade-loader 1s linear -0.96s infinite;
	left: 0;
	top: 25px;
}
.ball-spin-fade-loader > div:nth-child(2) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.84s infinite;
	animation: ball-spin-fade-loader 1s linear -0.84s infinite;
	left: 17.04545px;
	top: 17.04545px;
}
.ball-spin-fade-loader > div:nth-child(3) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.72s infinite;
	animation: ball-spin-fade-loader 1s linear -0.72s infinite;
	left: 25px;
	top: 0;
}
.ball-spin-fade-loader > div:nth-child(4) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.6s infinite;
	animation: ball-spin-fade-loader 1s linear -0.6s infinite;
	left: 17.04545px;
	top: -17.04545px;
}
.ball-spin-fade-loader > div:nth-child(5) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.48s infinite;
	animation: ball-spin-fade-loader 1s linear -0.48s infinite;
	left: 0;
	top: -25px;
}
.ball-spin-fade-loader > div:nth-child(6) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.36s infinite;
	animation: ball-spin-fade-loader 1s linear -0.36s infinite;
	left: -17.04545px;
	top: -17.04545px;
}
.ball-spin-fade-loader > div:nth-child(7) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.24s infinite;
	animation: ball-spin-fade-loader 1s linear -0.24s infinite;
	left: -25px;
	top: 0;
}
.ball-spin-fade-loader > div:nth-child(8) {
	-webkit-animation: ball-spin-fade-loader 1s linear -0.12s infinite;
	animation: ball-spin-fade-loader 1s linear -0.12s infinite;
	left: -17.04545px;
	top: 17.04545px;
}
.ball-spin-fade-loader > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 100%;
	height: 15px;
	margin: 2px;
	position: absolute;
	width: 15px;
}
@-webkit-keyframes ball-spin-loader {
	75% {
		opacity: 0.2;
	}
	to {
		opacity: 1;
	}
}
@keyframes ball-spin-loader {
	75% {
		opacity: 0.2;
	}
	to {
		opacity: 1;
	}
}
.ball-spin-loader {
	position: relative;
}
.ball-spin-loader > span:first-child {
	-webkit-animation: ball-spin-loader 2s linear 0.9s infinite;
	animation: ball-spin-loader 2s linear 0.9s infinite;
	left: 0;
	top: 45px;
}
.ball-spin-loader > span:nth-child(2) {
	-webkit-animation: ball-spin-loader 2s linear 1.8s infinite;
	animation: ball-spin-loader 2s linear 1.8s infinite;
	left: 30.68182px;
	top: 30.68182px;
}
.ball-spin-loader > span:nth-child(3) {
	-webkit-animation: ball-spin-loader 2s linear 2.7s infinite;
	animation: ball-spin-loader 2s linear 2.7s infinite;
	left: 45px;
	top: 0;
}
.ball-spin-loader > span:nth-child(4) {
	-webkit-animation: ball-spin-loader 2s linear 3.6s infinite;
	animation: ball-spin-loader 2s linear 3.6s infinite;
	left: 30.68182px;
	top: -30.68182px;
}
.ball-spin-loader > span:nth-child(5) {
	-webkit-animation: ball-spin-loader 2s linear 4.5s infinite;
	animation: ball-spin-loader 2s linear 4.5s infinite;
	left: 0;
	top: -45px;
}
.ball-spin-loader > span:nth-child(6) {
	-webkit-animation: ball-spin-loader 2s linear 5.4s infinite;
	animation: ball-spin-loader 2s linear 5.4s infinite;
	left: -30.68182px;
	top: -30.68182px;
}
.ball-spin-loader > span:nth-child(7) {
	-webkit-animation: ball-spin-loader 2s linear 6.3s infinite;
	animation: ball-spin-loader 2s linear 6.3s infinite;
	left: -45px;
	top: 0;
}
.ball-spin-loader > span:nth-child(8) {
	-webkit-animation: ball-spin-loader 2s linear 7.2s infinite;
	animation: ball-spin-loader 2s linear 7.2s infinite;
	left: -30.68182px;
	top: 30.68182px;
}
.ball-spin-loader > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background: green;
	border-radius: 100%;
	height: 15px;
	position: absolute;
	width: 15px;
}
@-webkit-keyframes ball-zig {
	33% {
		-webkit-transform: translate(-15px, -30px);
		transform: translate(-15px, -30px);
	}
	66% {
		-webkit-transform: translate(15px, -30px);
		transform: translate(15px, -30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-zig {
	33% {
		-webkit-transform: translate(-15px, -30px);
		transform: translate(-15px, -30px);
	}
	66% {
		-webkit-transform: translate(15px, -30px);
		transform: translate(15px, -30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@-webkit-keyframes ball-zag {
	33% {
		-webkit-transform: translate(15px, 30px);
		transform: translate(15px, 30px);
	}
	66% {
		-webkit-transform: translate(-15px, 30px);
		transform: translate(-15px, 30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-zag {
	33% {
		-webkit-transform: translate(15px, 30px);
		transform: translate(15px, 30px);
	}
	66% {
		-webkit-transform: translate(-15px, 30px);
		transform: translate(-15px, 30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
.ball-zig-zag {
	position: relative;
	-webkit-transform: translate(-15px, -15px);
	-ms-transform: translate(-15px, -15px);
	transform: translate(-15px, -15px);
}
.ball-zig-zag > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 100%;
	height: 15px;
	left: -7px;
	margin: 2px 2px 2px 15px;
	position: absolute;
	top: 4px;
	width: 15px;
}
.ball-zig-zag > div:first-child {
	-webkit-animation: ball-zig 0.7s linear 0s infinite;
	animation: ball-zig 0.7s linear 0s infinite;
}
.ball-zig-zag > div:last-child {
	-webkit-animation: ball-zag 0.7s linear 0s infinite;
	animation: ball-zag 0.7s linear 0s infinite;
}
@-webkit-keyframes ball-zig-deflect {
	17% {
		-webkit-transform: translate(-15px, -30px);
		transform: translate(-15px, -30px);
	}
	34% {
		-webkit-transform: translate(15px, -30px);
		transform: translate(15px, -30px);
	}
	50% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	67% {
		-webkit-transform: translate(15px, -30px);
		transform: translate(15px, -30px);
	}
	84% {
		-webkit-transform: translate(-15px, -30px);
		transform: translate(-15px, -30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-zig-deflect {
	17% {
		-webkit-transform: translate(-15px, -30px);
		transform: translate(-15px, -30px);
	}
	34% {
		-webkit-transform: translate(15px, -30px);
		transform: translate(15px, -30px);
	}
	50% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	67% {
		-webkit-transform: translate(15px, -30px);
		transform: translate(15px, -30px);
	}
	84% {
		-webkit-transform: translate(-15px, -30px);
		transform: translate(-15px, -30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@-webkit-keyframes ball-zag-deflect {
	17% {
		-webkit-transform: translate(15px, 30px);
		transform: translate(15px, 30px);
	}
	34% {
		-webkit-transform: translate(-15px, 30px);
		transform: translate(-15px, 30px);
	}
	50% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	67% {
		-webkit-transform: translate(-15px, 30px);
		transform: translate(-15px, 30px);
	}
	84% {
		-webkit-transform: translate(15px, 30px);
		transform: translate(15px, 30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes ball-zag-deflect {
	17% {
		-webkit-transform: translate(15px, 30px);
		transform: translate(15px, 30px);
	}
	34% {
		-webkit-transform: translate(-15px, 30px);
		transform: translate(-15px, 30px);
	}
	50% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	67% {
		-webkit-transform: translate(-15px, 30px);
		transform: translate(-15px, 30px);
	}
	84% {
		-webkit-transform: translate(15px, 30px);
		transform: translate(15px, 30px);
	}
	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
.ball-zig-zag-deflect {
	position: relative;
	-webkit-transform: translate(-15px, -15px);
	-ms-transform: translate(-15px, -15px);
	transform: translate(-15px, -15px);
}
.ball-zig-zag-deflect > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 100%;
	height: 15px;
	left: -7px;
	margin: 2px 2px 2px 15px;
	position: absolute;
	top: 4px;
	width: 15px;
}
.ball-zig-zag-deflect > div:first-child {
	-webkit-animation: ball-zig-deflect 1.5s linear 0s infinite;
	animation: ball-zig-deflect 1.5s linear 0s infinite;
}
.ball-zig-zag-deflect > div:last-child {
	-webkit-animation: ball-zag-deflect 1.5s linear 0s infinite;
	animation: ball-zag-deflect 1.5s linear 0s infinite;
}
@-webkit-keyframes line-scale {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
	50% {
		-webkit-transform: scaley(0.4);
		transform: scaley(0.4);
	}
	to {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
}
@keyframes line-scale {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
	50% {
		-webkit-transform: scaley(0.4);
		transform: scaley(0.4);
	}
	to {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
}
.line-scale > div:first-child {
	-webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.4s
		infinite;
	animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.4s infinite;
}
.line-scale > div:nth-child(2) {
	-webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.3s
		infinite;
	animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.3s infinite;
}
.line-scale > div:nth-child(3) {
	-webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.2s
		infinite;
	animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.2s infinite;
}
.line-scale > div:nth-child(4) {
	-webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.1s
		infinite;
	animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.1s infinite;
}
.line-scale > div:nth-child(5) {
	-webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s
		infinite;
	animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s infinite;
}
.line-scale > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 2px;
	display: inline-block;
	height: 35px;
	margin: 2px;
	width: 4px;
}
@-webkit-keyframes line-scale-party {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes line-scale-party {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.line-scale-party > div:first-child {
	-webkit-animation-delay: -0.09s;
	animation-delay: -0.09s;
	-webkit-animation-duration: 0.83s;
	animation-duration: 0.83s;
}
.line-scale-party > div:nth-child(2) {
	-webkit-animation-delay: 0.33s;
	animation-delay: 0.33s;
	-webkit-animation-duration: 0.64s;
	animation-duration: 0.64s;
}
.line-scale-party > div:nth-child(3) {
	-webkit-animation-delay: 0.32s;
	animation-delay: 0.32s;
	-webkit-animation-duration: 0.39s;
	animation-duration: 0.39s;
}
.line-scale-party > div:nth-child(4) {
	-webkit-animation-delay: 0.47s;
	animation-delay: 0.47s;
	-webkit-animation-duration: 0.52s;
	animation-duration: 0.52s;
}
.line-scale-party > div {
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: line-scale-party;
	animation-name: line-scale-party;
	background-color: #fff;
	border-radius: 2px;
	display: inline-block;
	height: 35px;
	margin: 2px;
	width: 4px;
}
@-webkit-keyframes line-scale-pulse-out {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
	50% {
		-webkit-transform: scaley(0.4);
		transform: scaley(0.4);
	}
	to {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
}
@keyframes line-scale-pulse-out {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
	50% {
		-webkit-transform: scaley(0.4);
		transform: scaley(0.4);
	}
	to {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
}
.line-scale-pulse-out > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: line-scale-pulse-out 0.9s
		cubic-bezier(0.85, 0.25, 0.37, 0.85) -0.6s infinite;
	animation: line-scale-pulse-out 0.9s
		cubic-bezier(0.85, 0.25, 0.37, 0.85) -0.6s infinite;
	background-color: #fff;
	border-radius: 2px;
	display: inline-block;
	height: 35px;
	margin: 2px;
	width: 4px;
}
.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
	-webkit-animation-delay: -0.4s !important;
	animation-delay: -0.4s !important;
}
.line-scale-pulse-out > div:first-child,
.line-scale-pulse-out > div:nth-child(5) {
	-webkit-animation-delay: -0.2s !important;
	animation-delay: -0.2s !important;
}
@-webkit-keyframes line-scale-pulse-out-rapid {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
	80% {
		-webkit-transform: scaley(0.3);
		transform: scaley(0.3);
	}
	90% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
}
@keyframes line-scale-pulse-out-rapid {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
	80% {
		-webkit-transform: scaley(0.3);
		transform: scaley(0.3);
	}
	90% {
		-webkit-transform: scaley(1);
		transform: scaley(1);
	}
}
.line-scale-pulse-out-rapid > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: line-scale-pulse-out-rapid 0.9s
		cubic-bezier(0.11, 0.49, 0.38, 0.78) -0.5s infinite;
	animation: line-scale-pulse-out-rapid 0.9s
		cubic-bezier(0.11, 0.49, 0.38, 0.78) -0.5s infinite;
	background-color: #fff;
	border-radius: 2px;
	display: inline-block;
	height: 35px;
	margin: 2px;
	width: 4px;
}
.line-scale-pulse-out-rapid > div:nth-child(2),
.line-scale-pulse-out-rapid > div:nth-child(4) {
	-webkit-animation-delay: -0.25s !important;
	animation-delay: -0.25s !important;
}
.line-scale-pulse-out-rapid > div:first-child,
.line-scale-pulse-out-rapid > div:nth-child(5) {
	-webkit-animation-delay: 0s !important;
	animation-delay: 0s !important;
}
@-webkit-keyframes line-spin-fade-loader {
	50% {
		opacity: 0.3;
	}
	to {
		opacity: 1;
	}
}
@keyframes line-spin-fade-loader {
	50% {
		opacity: 0.3;
	}
	to {
		opacity: 1;
	}
}
.line-spin-fade-loader {
	left: -4px;
	position: relative;
	top: -10px;
}
.line-spin-fade-loader > div:first-child {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.84s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.84s infinite;
	left: 0;
	top: 20px;
}
.line-spin-fade-loader > div:nth-child(2) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.72s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.72s infinite;
	left: 13.63636px;
	top: 13.63636px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.line-spin-fade-loader > div:nth-child(3) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.6s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.6s infinite;
	left: 20px;
	top: 0;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.line-spin-fade-loader > div:nth-child(4) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.48s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.48s infinite;
	left: 13.63636px;
	top: -13.63636px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.line-spin-fade-loader > div:nth-child(5) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.36s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.36s infinite;
	left: 0;
	top: -20px;
}
.line-spin-fade-loader > div:nth-child(6) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.24s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.24s infinite;
	left: -13.63636px;
	top: -13.63636px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.line-spin-fade-loader > div:nth-child(7) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.12s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out -0.12s infinite;
	left: -20px;
	top: 0;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.line-spin-fade-loader > div:nth-child(8) {
	-webkit-animation: line-spin-fade-loader 1.2s ease-in-out 0s infinite;
	animation: line-spin-fade-loader 1.2s ease-in-out 0s infinite;
	left: -13.63636px;
	top: 13.63636px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.line-spin-fade-loader > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background-color: #fff;
	border-radius: 2px;
	height: 35px;
	height: 15px;
	margin: 2px;
	position: absolute;
	width: 4px;
	width: 5px;
}
@-webkit-keyframes triangle-skew-spin {
	25% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
		transform: perspective(100px) rotateX(180deg) rotateY(0);
	}
	50% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
		transform: perspective(100px) rotateX(180deg) rotateY(180deg);
	}
	75% {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
		transform: perspective(100px) rotateX(0) rotateY(180deg);
	}
	to {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
		transform: perspective(100px) rotateX(0) rotateY(0);
	}
}
@keyframes triangle-skew-spin {
	25% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
		transform: perspective(100px) rotateX(180deg) rotateY(0);
	}
	50% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
		transform: perspective(100px) rotateX(180deg) rotateY(180deg);
	}
	75% {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
		transform: perspective(100px) rotateX(0) rotateY(180deg);
	}
	to {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
		transform: perspective(100px) rotateX(0) rotateY(0);
	}
}
.triangle-skew-spin > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: triangle-skew-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9)
		0s infinite;
	animation: triangle-skew-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s
		infinite;
	border-bottom: 20px solid #fff;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	height: 0;
	width: 0;
}
@-webkit-keyframes square-spin {
	25% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
		transform: perspective(100px) rotateX(180deg) rotateY(0);
	}
	50% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
		transform: perspective(100px) rotateX(180deg) rotateY(180deg);
	}
	75% {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
		transform: perspective(100px) rotateX(0) rotateY(180deg);
	}
	to {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
		transform: perspective(100px) rotateX(0) rotateY(0);
	}
}
@keyframes square-spin {
	25% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
		transform: perspective(100px) rotateX(180deg) rotateY(0);
	}
	50% {
		-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
		transform: perspective(100px) rotateX(180deg) rotateY(180deg);
	}
	75% {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
		transform: perspective(100px) rotateX(0) rotateY(180deg);
	}
	to {
		-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
		transform: perspective(100px) rotateX(0) rotateY(0);
	}
}
.square-spin > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: square-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s
		infinite;
	animation: square-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
	background: #fff;
	border: 1px solid red;
	height: 50px;
	width: 50px;
}
@-webkit-keyframes rotate_pacman_half_up {
	0% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
	50% {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
	to {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}
@keyframes rotate_pacman_half_up {
	0% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
	50% {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
	to {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}
@-webkit-keyframes rotate_pacman_half_down {
	0% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	50% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}
@keyframes rotate_pacman_half_down {
	0% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	50% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}
@-webkit-keyframes pacman-balls {
	75% {
		opacity: 0.7;
	}
	to {
		-webkit-transform: translate(-100px, -6.25px);
		transform: translate(-100px, -6.25px);
	}
}
@keyframes pacman-balls {
	75% {
		opacity: 0.7;
	}
	to {
		-webkit-transform: translate(-100px, -6.25px);
		transform: translate(-100px, -6.25px);
	}
}
.pacman {
	position: relative;
}
.pacman > div:nth-child(2) {
	-webkit-animation: pacman-balls 1s linear -0.99s infinite;
	animation: pacman-balls 1s linear -0.99s infinite;
}
.pacman > div:nth-child(3) {
	-webkit-animation: pacman-balls 1s linear -0.66s infinite;
	animation: pacman-balls 1s linear -0.66s infinite;
}
.pacman > div:nth-child(4) {
	-webkit-animation: pacman-balls 1s linear -0.33s infinite;
	animation: pacman-balls 1s linear -0.33s infinite;
}
.pacman > div:nth-child(5) {
	-webkit-animation: pacman-balls 1s linear 0s infinite;
	animation: pacman-balls 1s linear 0s infinite;
}
.pacman > div:first-of-type {
	-webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
	animation: rotate_pacman_half_up 0.5s 0s infinite;
	border: 25px solid #fff;
	border-radius: 25px;
	border-right-color: transparent;
	height: 0;
	left: -30px;
	position: relative;
	width: 0;
}
.pacman > div:nth-child(2) {
	-webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
	animation: rotate_pacman_half_down 0.5s 0s infinite;
	border: 25px solid #fff;
	border-radius: 25px;
	border-right-color: transparent;
	height: 0;
	left: -30px;
	margin-top: -50px;
	position: relative;
	width: 0;
}
.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
	background-color: #fff;
	border-radius: 100%;
	height: 15px;
	height: 10px;
	left: 70px;
	margin: 2px;
	position: absolute;
	top: 25px;
	-webkit-transform: translateY(-6.25px);
	-ms-transform: translateY(-6.25px);
	transform: translateY(-6.25px);
	width: 15px;
	width: 10px;
}
@-webkit-keyframes cube-transition {
	25% {
		-webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
		transform: translateX(50px) scale(0.5) rotate(-90deg);
	}
	50% {
		-webkit-transform: translate(50px, 50px) rotate(-180deg);
		transform: translate(50px, 50px) rotate(-180deg);
	}
	75% {
		-webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
		transform: translateY(50px) scale(0.5) rotate(-270deg);
	}
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}
@keyframes cube-transition {
	25% {
		-webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
		transform: translateX(50px) scale(0.5) rotate(-90deg);
	}
	50% {
		-webkit-transform: translate(50px, 50px) rotate(-180deg);
		transform: translate(50px, 50px) rotate(-180deg);
	}
	75% {
		-webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
		transform: translateY(50px) scale(0.5) rotate(-270deg);
	}
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}
.cube-transition {
	position: relative;
	-webkit-transform: translate(-25px, -25px);
	-ms-transform: translate(-25px, -25px);
	transform: translate(-25px, -25px);
}
.cube-transition > div {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: cube-transition 1.6s ease-in-out 0s infinite;
	animation: cube-transition 1.6s ease-in-out 0s infinite;
	background-color: #fff;
	height: 10px;
	left: -5px;
	position: absolute;
	top: -5px;
	width: 10px;
}
.cube-transition > div:last-child {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
@-webkit-keyframes spin-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
@keyframes spin-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
.semi-circle-spin {
	height: 35px;
	overflow: hidden;
	position: relative;
	width: 35px;
}
.semi-circle-spin > div {
	-webkit-animation: spin-rotate 0.6s linear 0s infinite;
	animation: spin-rotate 0.6s linear 0s infinite;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(transparent),
		color-stop(70%, transparent),
		color-stop(30%, #fff),
		to(#fff)
	);
	background-image: -o-linear-gradient(
		transparent 0,
		transparent 70%,
		#fff 30%,
		#fff 100%
	);
	background-image: linear-gradient(
		transparent,
		transparent 70%,
		#fff 0,
		#fff
	);
	border-radius: 100%;
	border-width: 0;
	height: 100%;
	position: absolute;
	width: 100%;
}
@-webkit-keyframes bar-progress {
	0% {
		opacity: 1;
		-webkit-transform: scaleY(20%);
		transform: scaleY(20%);
	}
	25% {
		opacity: 0.7;
		-webkit-transform: translateX(6%) scaleY(10%);
		transform: translateX(6%) scaleY(10%);
	}
	50% {
		opacity: 1;
		-webkit-transform: translateX(20%) scaleY(20%);
		transform: translateX(20%) scaleY(20%);
	}
	75% {
		opacity: 0.7;
		-webkit-transform: translateX(6%) scaleY(10%);
		transform: translateX(6%) scaleY(10%);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleY(20%);
		transform: scaleY(20%);
	}
}
@keyframes bar-progress {
	0% {
		opacity: 1;
		-webkit-transform: scaleY(20%);
		transform: scaleY(20%);
	}
	25% {
		opacity: 0.7;
		-webkit-transform: translateX(6%) scaleY(10%);
		transform: translateX(6%) scaleY(10%);
	}
	50% {
		opacity: 1;
		-webkit-transform: translateX(20%) scaleY(20%);
		transform: translateX(20%) scaleY(20%);
	}
	75% {
		opacity: 0.7;
		-webkit-transform: translateX(6%) scaleY(10%);
		transform: translateX(6%) scaleY(10%);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleY(20%);
		transform: scaleY(20%);
	}
}
.bar-progress {
	height: 12px;
	width: 30%;
}
.bar-progress > div {
	-webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93)
		infinite;
	animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
	background-color: #fff;
	border-radius: 10px;
	height: 12px;
	opacity: 1;
	position: relative;
	width: 20%;
}
@-webkit-keyframes bar-swing {
	0% {
		left: 0;
	}
	50% {
		left: 70%;
	}
	to {
		left: 0;
	}
}
@keyframes bar-swing {
	0% {
		left: 0;
	}
	50% {
		left: 70%;
	}
	to {
		left: 0;
	}
}
.bar-swing,
.bar-swing > div {
	height: 8px;
	width: 30%;
}
.bar-swing > div {
	-webkit-animation: bar-swing 1.5s infinite;
	animation: bar-swing 1.5s infinite;
	background-color: #fff;
	border-radius: 10px;
	position: relative;
}
@-webkit-keyframes bar-swing-container {
	0% {
		left: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		left: 70%;
		-webkit-transform: translateX(-4px);
		transform: translateX(-4px);
	}
	to {
		left: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes bar-swing-container {
	0% {
		left: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		left: 70%;
		-webkit-transform: translateX(-4px);
		transform: translateX(-4px);
	}
	to {
		left: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.bar-swing-container {
	height: 8px;
	position: relative;
	width: 20%;
}
.bar-swing-container div:first-child {
	background-color: hsla(0, 0%, 100%, 0.2);
	border-radius: 10px;
	height: 12px;
	position: absolute;
	width: 100%;
}
.bar-swing-container div:nth-child(2) {
	-webkit-animation: bar-swing-container 2s
		cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
	animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6)
		infinite;
	background-color: #fff;
	border-radius: 10px;
	height: 8px;
	margin: 2px 2px 0;
	position: absolute;
	width: 30%;
}
.carousel {
	box-sizing: border-box;
	position: relative;
}
.carousel *,
.carousel :after,
.carousel :before {
	box-sizing: inherit;
}
.carousel.is-draggable {
	cursor: move;
	cursor: grab;
}
.carousel.is-dragging {
	cursor: move;
	cursor: grabbing;
}
.carousel__viewport {
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
}
.carousel__track {
	display: flex;
}
.carousel__slide {
	flex: 0 0 auto;
	max-width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 1rem;
	position: relative;
	width: var(--carousel-slide-width, 60%);
}
.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}
.carousel__dots {
	display: flex;
	justify-content: center;
	left: 0;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	right: 0;
	top: calc(100% + 0.5rem);
	user-select: none;
}
.carousel__dots .carousel__dot {
	cursor: pointer;
	display: block;
	height: 22px;
	margin: 0;
	padding: 0;
	position: relative;
	width: 22px;
}
.carousel__dots .carousel__dot:after {
	background-color: currentColor;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 50%;
	opacity: 0.25;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.15s ease-in-out;
	width: 8px;
}
.carousel__dots .carousel__dot.is-selected:after {
	opacity: 1;
}
.carousel__button {
	align-items: center;
	background: var(--carousel-button-bg, transparent);
	border: 0;
	border-radius: var(--carousel-button-border-radius, 50%);
	box-shadow: var(--carousel-button-shadow, none);
	color: var(--carousel-button-color, currentColor);
	cursor: pointer;
	display: flex;
	height: var(--carousel-button-height, 48px);
	justify-content: center;
	padding: 0;
	pointer-events: all;
	transition: opacity 0.15s ease;
	width: var(--carousel-button-width, 48px);
}
.carousel__button.is-next,
.carousel__button.is-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.carousel__button.is-prev {
	left: 10px;
}
.carousel__button.is-next {
	right: 10px;
}
.carousel__button[disabled] {
	cursor: default;
	opacity: 0.3;
}
.carousel__button svg {
	fill: none;
	stroke: currentColor;
	stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
	stroke-linejoin: bevel;
	stroke-linecap: round;
	filter: var(--carousel-button-svg-filter, none);
	height: var(--carousel-button-svg-height, 50%);
	pointer-events: none;
	width: var(--carousel-button-svg-width, 50%);
}
html.with-fancybox {
	scroll-behavior: auto;
}
body.compensate-for-scrollbar {
	overflow: hidden !important;
	touch-action: none;
}
.fancybox__container {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	--carousel-button-width: 48px;
	--carousel-button-height: 48px;
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
	--carousel-button-svg-stroke-width: 2.5;
	--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
	bottom: 0;
	box-sizing: border-box;
	color: var(--fancybox-color, #fff);
	direction: ltr;
	display: flex;
	flex-direction: column;
	left: 0;
	margin: 0;
	outline: none;
	overflow: hidden;
	padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0)
		env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
	position: fixed;
	right: 0;
	top: 0;
	transform-origin: top left;
	z-index: 1050;
}
.fancybox__container *,
.fancybox__container :after,
.fancybox__container :before {
	box-sizing: inherit;
}
.fancybox__container :focus {
	outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
	box-shadow:
		0 0 0 1px #fff,
		0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media (min-width: 1024px) {
	.fancybox__container {
		--carousel-button-width: 48px;
		--carousel-button-height: 48px;
		--carousel-button-svg-width: 27px;
		--carousel-button-svg-height: 27px;
	}
}
.fancybox__backdrop {
	background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.fancybox__carousel {
	flex: 1 1 auto;
	height: 100%;
	min-height: 0;
	position: relative;
	z-index: 10;
}
.fancybox__carousel.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}
.fancybox__viewport {
	cursor: default;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}
.fancybox__track {
	display: flex;
	height: 100%;
}
.fancybox__slide {
	--carousel-button-width: 36px;
	--carousel-button-height: 36px;
	--carousel-button-svg-width: 22px;
	--carousel-button-svg-height: 22px;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	margin: 0;
	max-width: 100%;
	outline: 0;
	overflow: auto;
	overscroll-behavior: contain;
	padding: 48px 8px 8px;
	position: relative;
	width: 100%;
}
.fancybox__slide:after,
.fancybox__slide:before {
	content: "";
	flex: 0 0 0;
	margin: auto;
}
@media (min-width: 1024px) {
	.fancybox__slide {
		padding: 64px 100px;
	}
}
.fancybox__content {
	align-self: center;
	background: var(--fancybox-content-bg, #fff);
	color: var(--fancybox-content-color, #374151);
	display: flex;
	flex-direction: column;
	margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
	padding: 36px;
	position: relative;
	z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
	box-shadow: none;
	outline: thin dotted;
}
.fancybox__caption {
	align-self: center;
	color: var(--fancybox-color, currentColor);
	cursor: auto;
	flex-shrink: 0;
	line-height: 1.375;
	margin: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	padding: 1rem 0 0;
	visibility: visible;
}
.is-loading .fancybox__caption {
	visibility: hidden;
}
.fancybox__container > .carousel__dots {
	color: var(--fancybox-color, #fff);
	top: 100%;
}
.fancybox__nav .carousel__button {
	z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
	right: 8px;
}
@media (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-next {
		right: 40px;
	}
}
.fancybox__nav .carousel__button.is-prev {
	left: 8px;
}
@media (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-prev {
		left: 40px;
	}
}
.carousel__button.is-close {
	position: absolute;
	right: 8px;
	right: calc(env(safe-area-inset-right, 0px) + 8px);
	top: 8px;
	top: calc(env(safe-area-inset-top, 0px) + 8px);
	z-index: 40;
}
@media (min-width: 1024px) {
	.carousel__button.is-close {
		right: 40px;
	}
}
.fancybox__content > .carousel__button.is-close {
	color: var(--fancybox-color, #fff);
	position: absolute;
	right: 0;
	top: -40px;
}
.fancybox__no-click,
.fancybox__no-click button {
	pointer-events: none;
}
.fancybox__spinner {
	color: var(--fancybox-color, currentColor);
	height: 50px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
}
.fancybox__slide .fancybox__spinner {
	cursor: pointer;
	z-index: 1053;
}
.fancybox__spinner svg {
	animation: fancybox-rotate 2s linear infinite;
	bottom: 0;
	height: 100%;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	transform-origin: center center;
	width: 100%;
}
.fancybox__spinner svg circle {
	fill: none;
	stroke-width: 2.75;
	stroke-miterlimit: 10;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	stroke: currentColor;
	animation: fancybox-dash 1.5s ease-in-out infinite;
}
@keyframes fancybox-rotate {
	to {
		transform: rotate(1turn);
	}
}
@keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	to {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}
.carousel__button.is-close,
.carousel__dots,
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav {
	opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden="false"]
	.carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav {
	animation: fancybox-fadeIn 0.15s ease backwards;
}
.fancybox__container.is-animated.is-closing .carousel__button.is-close,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav {
	animation: fancybox-fadeOut 0.15s ease both;
}
.fancybox-fadeIn {
	animation: fancybox-fadeIn 0.15s ease both;
}
.fancybox-fadeOut {
	animation: fancybox-fadeOut 0.1s ease both;
}
.fancybox-zoomInUp {
	animation: fancybox-zoomInUp 0.2s ease both;
}
.fancybox-zoomOutDown {
	animation: fancybox-zoomOutDown 0.15s ease both;
}
.fancybox-throwOutUp {
	animation: fancybox-throwOutUp 0.15s ease both;
}
.fancybox-throwOutDown {
	animation: fancybox-throwOutDown 0.15s ease both;
}
@keyframes fancybox-fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}
@keyframes fancybox-zoomInUp {
	0% {
		opacity: 0;
		transform: scale(0.97) translate3d(0, 16px, 0);
	}
	to {
		opacity: 1;
		transform: scale(1) translateZ(0);
	}
}
@keyframes fancybox-zoomOutDown {
	to {
		opacity: 0;
		transform: scale(0.97) translate3d(0, 16px, 0);
	}
}
@keyframes fancybox-throwOutUp {
	to {
		opacity: 0;
		transform: translate3d(0, -30%, 0);
	}
}
@keyframes fancybox-throwOutDown {
	to {
		opacity: 0;
		transform: translate3d(0, 30%, 0);
	}
}
.fancybox__carousel .carousel__slide {
	scrollbar-color: #ccc hsla(0, 0%, 100%, 0.1);
	scrollbar-width: thin;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
	height: 8px;
	width: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
	background-color: hsla(0, 0%, 100%, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 2px;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
	cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
	cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
	cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing;
}
.fancybox__image {
	transform-origin: 0 0;
	transition: none;
	user-select: none;
}
.has-image .fancybox__content {
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
	padding: 0;
}
.is-closing .has-image .fancybox__content {
	overflow: visible;
}
.has-image[data-image-fit="contain"] {
	overflow: visible;
	touch-action: none;
}
.has-image[data-image-fit="contain"] .fancybox__content {
	flex-direction: row;
	flex-wrap: wrap;
}
.has-image[data-image-fit="contain"] .fancybox__image {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}
.has-image[data-image-fit="contain-w"] {
	overflow-x: hidden;
	overflow-y: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__content {
	min-height: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__image {
	height: auto;
	max-width: 100%;
}
.has-image[data-image-fit="cover"] {
	overflow: visible;
	touch-action: none;
}
.has-image[data-image-fit="cover"] .fancybox__content {
	height: 100%;
	width: 100%;
}
.has-image[data-image-fit="cover"] .fancybox__image {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
	flex-shrink: 1;
	max-width: 100%;
	min-height: 1px;
	overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
	height: 80%;
	width: 100%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
	height: 540px;
	max-height: 100%;
	max-width: 100%;
	width: 960px;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
	background: rgba(24, 24, 27, 0.9);
	color: #fff;
	padding: 0;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
	background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
	background: rgba(0, 0, 0, 0);
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}
.fancybox-placeholder {
	clip: rect(0, 0, 0, 0);
	border-width: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}
.fancybox__thumbs {
	flex: 0 0 auto;
	opacity: var(--fancybox-opacity, 1);
	padding: 0 3px;
	position: relative;
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
	animation: fancybox-fadeIn 0.15s ease-in backwards;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
	opacity: 0;
}
.fancybox__thumbs .carousel__slide {
	align-items: center;
	box-sizing: content-box;
	cursor: pointer;
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	margin: 0;
	overflow: visible;
	padding: 8px 3px;
	width: var(--fancybox-thumbs-width, 96px);
}
.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
	border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
	border-style: solid;
	border-width: 5px;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.15s ease;
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb:after {
	opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
	pointer-events: none;
	user-select: none;
}
.fancybox__thumb {
	background-color: hsla(0, 0%, 100%, 0.1);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
	padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
	position: relative;
	width: 100%;
}
.fancybox__toolbar {
	--carousel-button-svg-width: 20px;
	--carousel-button-svg-height: 20px;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0) 0,
		rgba(0, 0, 0, 0.006) 8.1%,
		rgba(0, 0, 0, 0.021) 15.5%,
		rgba(0, 0, 0, 0.046) 22.5%,
		rgba(0, 0, 0, 0.077) 29%,
		rgba(0, 0, 0, 0.114) 35.3%,
		rgba(0, 0, 0, 0.155) 41.2%,
		rgba(0, 0, 0, 0.198) 47.1%,
		rgba(0, 0, 0, 0.242) 52.9%,
		rgba(0, 0, 0, 0.285) 58.8%,
		rgba(0, 0, 0, 0.326) 64.7%,
		rgba(0, 0, 0, 0.363) 71%,
		rgba(0, 0, 0, 0.394) 77.5%,
		rgba(0, 0, 0, 0.419) 84.5%,
		rgba(0, 0, 0, 0.434) 91.9%,
		rgba(0, 0, 0, 0.44)
	);
	display: flex;
	justify-content: space-between;
	left: 0;
	opacity: var(--fancybox-opacity, 1);
	padding: 0;
	position: absolute;
	right: 0;
	text-shadow: var(
		--fancybox-toolbar-text-shadow,
		1px 1px 1px rgba(0, 0, 0, 0.4)
	);
	top: 0;
	touch-action: none;
	z-index: 20;
}
@media (min-width: 1024px) {
	.fancybox__toolbar {
		padding: 8px;
	}
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
	animation: fancybox-fadeIn 0.15s ease-in backwards;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
	opacity: 0;
}
.fancybox__toolbar__items {
	display: flex;
}
.fancybox__toolbar__items--left {
	margin-right: auto;
}
.fancybox__toolbar__items--center {
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
	margin-left: auto;
}
@media (max-width: 640px) {
	.fancybox__toolbar__items--center:not(:last-child) {
		display: none;
	}
}
.fancybox__counter {
	-webkit-font-smoothing: subpixel-antialiased;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	line-height: var(--carousel-button-height, 48px);
	min-width: 72px;
	padding: 0 10px;
	text-align: center;
}
.fancybox__progress {
	background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	user-select: none;
	z-index: 30;
}
.fancybox__container:fullscreen::backdrop {
	opacity: 0;
}
.fancybox__button--fullscreen g:nth-child(2) {
	display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:first-child {
	display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}
.fancybox__button--slideshow g:nth-child(2) {
	display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:first-child {
	display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
	display: block;
}
.splide__container {
	box-sizing: border-box;
	position: relative;
}
.splide__list {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}
.splide__pagination {
	-ms-flex-align: center;
	-ms-flex-pack: center;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}
.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}
.splide__progress__bar {
	width: 0;
}
.splide {
	position: relative;
	visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}
.splide__slide {
	-ms-flex-negative: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}
.splide__slide img {
	vertical-align: bottom;
}
.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}
.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}
.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}
@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.splide__track--fade > .splide__list {
	display: block;
}
.splide__track--fade > .splide__list > .splide__slide {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}
.splide--rtl {
	direction: rtl;
}
.splide__track--ttb > .splide__list {
	display: block;
}
.splide__arrow {
	-ms-flex-align: center;
	-ms-flex-pack: center;
	align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	justify-content: center;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1;
}
.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
	opacity: 0.9;
}
.splide__arrow:disabled {
	opacity: 0.3;
}
.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}
.splide__arrow--prev {
	left: 1em;
}
.splide__arrow--prev svg {
	transform: scaleX(-1);
}
.splide__arrow--next {
	right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}
.splide__pagination {
	bottom: 0.5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1;
}
.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: 0.7;
	padding: 0;
	position: relative;
	transition: transform 0.2s linear;
	width: 8px;
}
.splide__pagination__page.is-active {
	background: #fff;
	transform: scale(1.4);
	z-index: 1;
}
.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}
.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}
.splide__progress__bar {
	background: #ccc;
	height: 3px;
}
.splide__slide {
	-webkit-tap-highlight-color: transparent;
}
.splide__slide:focus {
	outline: 0;
}
@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
}
@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@media screen and (-ms-high-contrast: none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}
.splide__toggle {
	cursor: pointer;
}
.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg);
}
.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}
*,
:after,
:before {
	box-sizing: border-box;
}
blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}
li,
ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
a,
a.nice-select.open,
a:active,
a:visited {
	color: inherit;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}
button,
input,
select,
textarea {
	border: none;
	border-radius: 0;
	font-family: inherit;
	font-size: inherit;
	outline: none;
	padding: 0;
}
button,
input[type="submit"] {
	cursor: pointer;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: none;
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 100;
	src: url(../fonts/noto-serif/NotoSerif-Thin.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 100;
	src: url(../fonts/noto-serif/NotoSerif-ThinItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 200;
	src: url(../fonts/noto-serif/NotoSerif-ExtraLight.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 200;
	src: url(../fonts/noto-serif/NotoSerif-ExtraLightItalic.ttf)
		format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/noto-serif/NotoSerif-Light.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 300;
	src: url(../fonts/noto-serif/NotoSerif-LightItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/noto-serif/NotoSerif-Medium.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 400;
	src: url(../fonts/noto-serif/NotoSerif-MediumItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/noto-serif/NotoSerif-SemiBold.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 500;
	src: url(../fonts/noto-serif/NotoSerif-SemiBoldItalic.ttf)
		format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/noto-serif/NotoSerif-Bold.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 600;
	src: url(../fonts/noto-serif/NotoSerif-BoldItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/noto-serif/NotoSerif-Bold.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/noto-serif/NotoSerif-BoldItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 800;
	src: url(../fonts/noto-serif/NotoSerif-Bold.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 800;
	src: url(../fonts/noto-serif/NotoSerif-BoldItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/noto-serif/NotoSerif-Bold.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 900;
	src: url(../fonts/noto-serif/NotoSerif-BoldItalic.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: normal;
	font-weight: 950;
	src: url(../fonts/noto-serif/NotoSerif-Bold.ttf) format("truetype");
}
@font-face {
	font-family: "Noto Serif";
	font-style: italic;
	font-weight: 950;
	src: url(../fonts/noto-serif/NotoSerif-BoldItalic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 500;
	src: url(../fonts/roboto/Roboto-MediumItalic.eot);
	src:
		local("Roboto Medium Italic"),
		local("Roboto-MediumItalic"),
		url(../fonts/roboto/Roboto-MediumItalic.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-MediumItalic.woff) format("woff"),
		url(../fonts/roboto/Roboto-MediumItalic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 400;
	src: url(../fonts/roboto/Roboto-Italic.eot);
	src:
		local("Roboto Italic"),
		local("Roboto-Italic"),
		url(../fonts/roboto/Roboto-Italic.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Italic.woff) format("woff"),
		url(../fonts/roboto/Roboto-Italic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/roboto/Roboto-Bold.eot);
	src:
		local("Roboto Bold"),
		local("Roboto-Bold"),
		url(../fonts/roboto/Roboto-Bold.eot?#iefix) format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Bold.woff) format("woff"),
		url(../fonts/roboto/Roboto-Bold.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/roboto/Roboto-Regular.eot);
	src:
		local("Roboto"),
		local("Roboto-Regular"),
		url(../fonts/roboto/Roboto-Regular.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Regular.woff) format("woff"),
		url(../fonts/roboto/Roboto-Regular.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/roboto/Roboto-Medium.eot);
	src:
		local("Roboto Medium"),
		local("Roboto-Medium"),
		url(../fonts/roboto/Roboto-Medium.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Medium.woff) format("woff"),
		url(../fonts/roboto/Roboto-Medium.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/roboto/Roboto-BoldItalic.eot);
	src:
		local("Roboto Bold Italic"),
		local("Roboto-BoldItalic"),
		url(../fonts/roboto/Roboto-BoldItalic.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-BoldItalic.woff) format("woff"),
		url(../fonts/roboto/Roboto-BoldItalic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 100;
	src: url(../fonts/roboto/Roboto-ThinItalic.eot);
	src:
		local("Roboto Thin Italic"),
		local("Roboto-ThinItalic"),
		url(../fonts/roboto/Roboto-ThinItalic.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-ThinItalic.woff) format("woff"),
		url(../fonts/roboto/Roboto-ThinItalic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/roboto/Roboto-Black.eot);
	src:
		local("Roboto Black"),
		local("Roboto-Black"),
		url(../fonts/roboto/Roboto-Black.eot?#iefix) format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Black.woff) format("woff"),
		url(../fonts/roboto/Roboto-Black.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/roboto/Roboto-Light.eot);
	src:
		local("Roboto Light"),
		local("Roboto-Light"),
		url(../fonts/roboto/Roboto-Light.eot?#iefix) format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Light.woff) format("woff"),
		url(../fonts/roboto/Roboto-Light.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 300;
	src: url(../fonts/roboto/Roboto-LightItalic.eot);
	src:
		local("Roboto Light Italic"),
		local("Roboto-LightItalic"),
		url(../fonts/roboto/Roboto-LightItalic.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-LightItalic.woff) format("woff"),
		url(../fonts/roboto/Roboto-LightItalic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 900;
	src: url(../fonts/roboto/Roboto-BlackItalic.eot);
	src:
		local("Roboto Black Italic"),
		local("Roboto-BlackItalic"),
		url(../fonts/roboto/Roboto-BlackItalic.eot?#iefix)
			format("embedded-opentype"),
		url(../fonts/roboto/Roboto-BlackItalic.woff) format("woff"),
		url(../fonts/roboto/Roboto-BlackItalic.ttf) format("truetype");
}
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 100;
	src: url(../fonts/roboto/Roboto-Thin.eot);
	src:
		local("Roboto Thin"),
		local("Roboto-Thin"),
		url(../fonts/roboto/Roboto-Thin.eot?#iefix) format("embedded-opentype"),
		url(../fonts/roboto/Roboto-Thin.woff) format("woff"),
		url(../fonts/roboto/Roboto-Thin.ttf) format("truetype");
}
@font-face {
	font-family: Roboto Flex;
	font-style: normal;
	font-weight: 1;
	src:
		url(../fonts/roboto-flex/RobotoFlex-Regular.woff2) format("woff2")
			url(../fonts/roboto-flex/RobotoFlex-Regular.woff) format("woff"),
		url(../fonts/roboto-flex/RobotoFlex-Regular.ttf) format("truetype");
}
@font-face {
	font-family: Roboto Flex;
	font-style: normal;
	font-weight: 400;
	src:
		url(../fonts/roboto-flex/RobotoFlex-Regular.woff2) format("woff2")
			url(../fonts/roboto-flex/RobotoFlex-Regular.woff) format("woff"),
		url(../fonts/roboto-flex/RobotoFlex-Regular.ttf) format("truetype");
}
.nice-select {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 5px;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	height: 38px;
	line-height: 36px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	text-align: left !important;
	transition: all 0.2s ease-in-out;
	user-select: none;
	white-space: nowrap;
	width: auto;
}
.nice-select:hover {
	border-color: #dbdbdb;
}
.nice-select.open,
.nice-select:active,
.nice-select:focus {
	border-color: #999;
}
.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	right: 12px;
	top: 50%;
	transform: rotate(45deg);
	transform-origin: 66% 66%;
	transition: all 0.15s ease-in-out;
	width: 5px;
}
.nice-select.open:after {
	transform: rotate(-135deg);
}
.nice-select.open .nice-select-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1) translateY(0);
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}
.nice-select.disabled:after {
	border-color: #ccc;
}
.nice-select.wide {
	width: 100%;
}
.nice-select.wide .nice-select-dropdown {
	left: 0 !important;
	right: 0 !important;
}
.nice-select.right {
	float: right;
}
.nice-select.right .nice-select-dropdown {
	left: auto;
	right: 0;
}
.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}
.nice-select.small:after {
	height: 4px;
	width: 4px;
}
.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}
.nice-select .nice-select-dropdown {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	left: 0;
	margin-top: 4px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: scale(0.75) translateY(19px);
	transform-origin: 50% 0;
	transition:
		all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
		opacity 0.15s ease-out;
	z-index: 9;
}
.nice-select .list {
	border-radius: 5px;
	box-sizing: border-box;
	max-height: 210px;
	overflow: hidden;
	overflow-y: auto;
	padding: 0;
}
.nice-select .list:hover .option:not(:hover) {
	background-color: rgba(0, 0, 0, 0) !important;
}
.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	transition: all 0.2s;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
	background-color: #f6f6f6;
}
.nice-select .option.selected {
	font-weight: 700;
}
.nice-select .option.disabled {
	background-color: rgba(0, 0, 0, 0);
	color: #999;
	cursor: default;
}
.nice-select .optgroup {
	font-weight: 700;
}
.no-csspointerevents .nice-select .nice-select-dropdown {
	display: none;
}
.no-csspointerevents .nice-select.open .nice-select-dropdown {
	display: block;
}
.nice-select .has-multiple {
	height: auto;
	line-height: 22px;
	min-height: 36px;
	padding: 7px 12px;
	white-space: inherit;
}
.nice-select .has-multiple span.current {
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 3px;
	margin-right: 3px;
	padding: 0 10px;
}
.nice-select .has-multiple .multiple-options {
	display: block;
	line-height: 24px;
	padding: 0;
}
.nice-select .nice-select-search-box {
	border-radius: 5px 5px 0 0;
	box-sizing: border-box;
	padding: 5px;
	pointer-events: none;
	width: 100%;
}
.nice-select .nice-select-search {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 3px;
	box-sizing: border-box;
	color: #444;
	display: inline-block;
	font-size: 14px;
	height: auto;
	line-height: 22px;
	margin: 0 10px 0 0;
	min-height: 36px;
	outline: 0 !important;
	padding: 7px 12px;
	vertical-align: middle;
	width: 100%;
}
body {
	padding-right: 0 !important;
}
.fancybox__backdrop {
	background: none;
	background-color: rgba(0, 0, 0, 0.4);
}
.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
	background-color: hsla(0, 0%, 100%, 0.5);
	border: none;
	opacity: 1;
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb:after {
	opacity: 0;
}
.fancybox__thumbs .carousel__slide {
	border-radius: 10px;
	flex-shrink: 0;
	height: 96px;
	margin: 0 10px 10px;
	overflow: hidden;
	padding: 0;
	width: 96px;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb {
	height: 100%;
	width: 100%;
}
a[data-fancybox] {
	position: relative;
}
a[data-fancybox]:after {
	background-color: rgba(0, 0, 0, 0.62);
	background-image: url(../img/svg/search-zoom-in.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 51px 51px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition-duration: 0.3s;
	transition-property: opacity;
	width: 100%;
}
a[data-fancybox]:hover:after {
	opacity: 1;
}
.fancybox__slide.has-video .fancybox__caption {
	display: none;
}
.fancybox__slide {
	padding-bottom: 20px;
	padding-top: 20px;
}
.fancybox__caption {
	bottom: 0;
	color: #fff;
	font-size: 24px;
	left: 0;
	padding: 50px;
	position: absolute;
	width: 100%;
	z-index: 1;
}
.fancybox__slide.has-caption.has-image .fancybox__content:after {
	background: linear-gradient(
		180.17deg,
		rgba(0, 0, 0, 0) 69.73%,
		rgba(0, 0, 0, 0.7) 99.85%
	);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}
.fancybox__content {
	border-radius: 10px;
	overflow: hidden;
}
.fancybox__nav .carousel__button svg {
	display: none;
}
.fancybox__nav .carousel__button {
	height: 78px;
	width: 78px;
}
.fancybox__nav .carousel__button:after,
.fancybox__nav .carousel__button:before {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 20px 64px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition-duration: 0.2s;
	transition-property: opacity;
	width: 100%;
}
.fancybox__nav .carousel__button:before {
	background-image: url(../img/svg/slide-arrow-3.svg);
}
.fancybox__nav .carousel__button:after {
	background-image: url(../img/svg/slide-arrow-3.svg);
	opacity: 0;
}
.fancybox__nav .carousel__button.is-next {
	transform: rotate(180deg) translateY(50%);
}
@media (max-width: 992px) {
	.fancybox__caption {
		padding: 20px;
	}
}
@media (max-width: 743.9px) {
	.fancybox__caption {
		font-size: 16px;
	}
}
.accordion .accord-item {
	border: 1px solid #ddd;
	border-radius: 10px;
	transition-duration: 0.2s;
	transition-property: background-color;
}
.accordion .accord-item:not(:last-child) {
	margin-bottom: 20px;
}
.accordion .accord-head {
	align-items: flex-start;
	cursor: pointer;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	padding: 20px;
	user-select: none;
}
.accordion .accord-head .text {
	padding-right: 40px;
}
.accordion .accord-head:after {
	background-image: url(../img/svg/accord-arrow.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 7.4px;
	margin-left: auto;
	margin-top: 10px;
	pointer-events: none;
	transform: translateZ(0);
	transition-duration: 0.2s;
	transition-property: transform;
	width: 12px;
	will-change: transform;
}
.accordion .accord-content {
	padding: 0 20px 20px;
}
.accordion .accord-body {
	overflow: hidden;
	transform: translateZ(0);
	transition-duration: 0.2s;
	transition-property: height;
	will-change: height;
}
.accordion .accord-item.active {
	background-color: #f9f9f9;
}
.accordion .accord-item.active .accord-head:after {
	transform: rotateX(180deg);
}
.pagination {
	display: flex;
	flex-wrap: nowrap;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
	width: 100%;
	width: fit-content;
}
.pagination .pag-item {
	align-items: center;
	border-radius: 10px;
	display: flex;
	flex-wrap: nowrap;
	font-size: 24px;
	height: 46px;
	justify-content: center;
	min-width: 51px;
	padding: 5px 10px;
	text-align: center;
}
.pagination .pag-item img,
.pagination .pag-item svg {
	display: block;
	flex-shrink: 0;
	max-height: 100%;
	max-width: 100%;
}
.pagination .pag-item.current {
	background-color: #ffc3a1;
	border-color: #ffc3a1;
}
.pagination .pag-item:not(:last-child) {
	margin-right: 10px;
}
.pagination a.pag-item {
	background-color: #f7f7f7;
	border: 1px solid #eee;
}
.pagination a.pag-next,
.pagination a.pag-prev {
	align-items: center;
	background-color: rgba(0, 0, 0, 0);
	background-position: 50%;
	background-repeat: no-repeat;
	border: none;
	display: flex;
	justify-content: center;
}
.pagination a.pag-next svg,
.pagination a.pag-prev svg {
	max-height: 100%;
	max-width: 100%;
}
.pagination a.pag-next path,
.pagination a.pag-prev path {
	transition-duration: 0.2s;
	transition-property: fill-opacity;
}
.pagination a.pag-next:hover path,
.pagination a.pag-prev:hover path {
	fill-opacity: 1;
}
.pagination a.pag-prev {
	background-position: 0;
	justify-content: flex-start;
	padding-left: 0;
}
.pagination a.pag-next {
	background-position: 100%;
	justify-content: flex-end;
	padding-right: 0;
}
.pagination span.pag-item {
	background-color: rgba(0, 0, 0, 0);
	border: none;
	pointer-events: none;
}
.pagination .pag-item.disabled {
	opacity: 0.4;
	pointer-events: none;
}
@media (max-width: 470px) {
	.pagination .pag-item {
		font-size: 16px;
		height: 38px;
		min-width: 40px;
		padding: 5px;
	}
	.pagination .pag-item:not(:last-child) {
		margin-right: 5px;
	}
}
@media (max-width: 360px) {
	.pagination span.pag-item {
		min-width: auto;
		width: fit-content;
	}
}
.editor-content,
.section-employee .block-employee-info .col-info .description {
	font-size: 16px;
}
.editor-content > :not(:last-child),
.section-employee
	.block-employee-info
	.col-info
	.description
	> :not(:last-child) {
	margin-bottom: 20px;
}
.editor-content strong,
.section-employee .block-employee-info .col-info .description strong {
	font-weight: 600;
}
.editor-content blockquote,
.section-employee .block-employee-info .col-info .description blockquote {
	background-color: #f9f9f9;
	background-image: url(../img/svg/quotes.svg);
	background-position: 40px 20px;
	background-repeat: no-repeat;
	background-size: 45px 36px;
	border-radius: 10px;
	display: block;
	font-size: 18px;
	font-weight: 600;
	padding: 20px 40px 20px 110px;
}
.editor-content img,
.section-employee .block-employee-info .col-info .description img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}
@media (max-width: 992px) {
	.editor-content > p + br,
	.section-employee .block-employee-info .col-info .description > p + br {
		display: none;
	}
}
html {
	scrollbar-color: rgba(0, 0, 0, 0.8) rgba(0, 0, 0, 0);
	scrollbar-width: thin;
}
html::-webkit-scrollbar {
	width: 8px;
}
html::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
}
html.compensate-for-scrollbar,
html.compensate-for-scrollbar body {
	overflow: hidden;
}
.custom-scrollbar,
.section-history .like-tabs-links {
	scrollbar-color: rgba(0, 0, 0, 0.8) rgba(0, 0, 0, 0);
	scrollbar-width: thin;
}
.custom-scrollbar::-webkit-scrollbar,
.section-history .like-tabs-links::-webkit-scrollbar {
	height: 8px;
	width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-thumb,
.section-history .like-tabs-links::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
}
body {
	background-color: #fff;
	color: inherit;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	overflow: scroll;
	overflow-x: hidden;
}
.block-title,
.cards-press .title,
.cards-schedule .day,
.cards-upcoming .actions .calendar .day,
.cards-upcoming .actions .calendar .time,
.cards-upcoming .description .title,
.editor-content blockquote,
.ff-noto,
.footer .nav-title,
.header .menu-col > ul,
.header .toggle-menu,
.pagination .pag-item,
.section-about-teatr .location-wrap .loc-title,
.section-about-teatr .location-wrap .tech-params .title,
.section-employee .block-employee-info .col-info .description blockquote,
.section-employee .block-employee-info .col-info .name,
.section-fest-info .block-fest-schedule .day-item .day-num,
.section-fest-info .block-fest-schedule .month-div .month,
.section-fest-info .block-fest-schedule .show-card .card-title,
.section-hero .calendar-item .day,
.section-hero .slide-title,
.section-history .page-title,
.section-news .title,
.section-news-list .page-title,
.section-pushkin-map .page-title,
.section-pushkin-map .spec-card .title,
.section-pushkin-map .spec-title,
.section-schedule .day-item .day-num,
.section-schedule .month-div .month,
.section-schedule .show-card .card-title,
.section-single-news .page-title,
.section-spectacle-info .block-spectacle-description .review blockquote,
.section-title,
.spec-date-wrap .day-wrap .day,
.spec-date-wrap .time {
	font-family: "Noto Serif", serif;
}
.ff-roboto,
.section-history .citation .author {
	font-family: Roboto, serif;
}
::selection {
	background-color: hsla(0, 0%, 8%, 0.8);
	color: #fff;
}
.section::selection {
	background: initial;
}
.footer .menu-row ::selection,
.footer .menu-row::selection,
.header .menu-row ::selection,
.header .menu-row::selection,
.light-selection ::selection,
.light-selection::selection {
	background-color: hsla(0, 0%, 100%, 0.6);
	color: #151515;
}
body.loading-visually {
	opacity: 0;
}
.accordion .accord-head,
.footer .info-row .info-version,
.footer .info-row a,
.footer .social-link,
.header .info-row .info-version,
.header .info-row a,
.header .toggle-menu,
.hov-opacity,
.like-tabs-links .nav-item,
.pagination a.pag-item,
.section-contacts .map-anchor,
.section-contacts .soc-col .links-wrap .link,
.section-contacts .soc-col .soc-link,
.section-contacts .tel-wrap .tel,
.section-contacts-info .tel,
.section-employee .cards-upcoming .description .title,
.section-fest-info .block-fest-schedule .reset-date,
.section-fest-info .block-fest-schedule .show-card a.card-title,
.section-news .title,
.section-pushkin-map .spec-card .title,
.section-repertoire .cards-upcoming .description .title,
.section-schedule .reset-date,
.section-schedule .show-card a.card-title {
	transition-duration: 0.2s;
	transition-property: opacity;
}
.accordion .accord-head:hover,
.footer .info-row .info-version:hover,
.footer .info-row a:hover,
.footer .social-link:hover,
.header .info-row .info-version:hover,
.header .info-row a:hover,
.header .toggle-menu:hover,
.hov-opacity:hover,
.like-tabs-links .nav-item:hover,
.pagination a.pag-item:hover,
.section-contacts .map-anchor:hover,
.section-contacts .soc-col .links-wrap .link:hover,
.section-contacts .soc-col .soc-link:hover,
.section-contacts .tel-wrap .tel:hover,
.section-contacts-info .tel:hover,
.section-employee .cards-upcoming .description .title:hover,
.section-fest-info .block-fest-schedule .reset-date:hover,
.section-fest-info .block-fest-schedule .show-card a.card-title:hover,
.section-news .title:hover,
.section-pushkin-map .spec-card .title:hover,
.section-repertoire .cards-upcoming .description .title:hover,
.section-schedule .reset-date:hover,
.section-schedule .show-card a.card-title:hover {
	opacity: 0.6;
}
.section-employee .block-employee-info .col-info .name,
.section-title {
	color: inherit;
	font-size: 48px;
	font-weight: 600;
	line-height: inherit;
	text-transform: uppercase;
}
@media (max-width: 743.9px) {
	.section-employee .block-employee-info .col-info .name,
	.section-title {
		font-size: 30px;
	}
}
.block-title {
	font-size: 24px;
	font-weight: 600;
}
.section {
	padding-bottom: 40px;
	padding-top: 40px;
	position: relative;
}
.section-bg {
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-bg img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.container,
.redraw-wrap {
	position: relative;
}
.redraw-wrap .preloader {
	background-color: hsla(0, 0%, 100%, 0.6);
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	padding-top: 100px;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition-duration: 0.2s;
	transition-property: opacity;
	width: 100%;
}
.redraw-wrap .ball-spin-fade-loader > div {
	background-color: #000;
}
.redraw-wrap.loading {
	pointer-events: none;
}
.redraw-wrap.loading .preloader {
	opacity: 1;
}
img[data-src] {
	transition-duration: 0.1s;
	transition-property: opacity;
}
img[data-src]:not(.lazy-loaded) {
	opacity: 0;
}
.img-wrap[data-gallery],
.media[data-gallery] {
	position: relative;
}
.img-wrap[data-gallery]:after,
.img-wrap[data-gallery]:before,
.media[data-gallery]:after,
.media[data-gallery]:before {
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition-duration: 0.2s;
	transition-property: opacity;
	user-select: none;
	width: 100%;
	z-index: 2;
}
.img-wrap[data-gallery]:after,
.media[data-gallery]:after {
	background-image: url(../img/svg/full-screen.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 48px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
}
.img-wrap[data-gallery]:before,
.media[data-gallery]:before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.img-wrap[data-gallery].video-preview:after,
.media[data-gallery].video-preview:after {
	background-image: url(../img/svg/video.svg);
	opacity: 1;
}
.img-wrap[data-gallery]:hover:after,
.img-wrap[data-gallery]:hover:before,
.media[data-gallery]:hover:after,
.media[data-gallery]:hover:before {
	opacity: 1;
}
.breadcrumbs {
	padding: 40px 0;
}
.breadcrumbs + .section {
	padding-top: 0;
}
.breadcrumbs .breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
}
.breadcrumbs .breadcrumbs-item {
	align-items: center;
	display: flex;
	padding-right: 15px;
	position: relative;
}
.breadcrumbs .breadcrumbs-item:not(:last-child):after {
	border: 1px solid #000;
	border-width: 1px 1px 0 0;
	content: "";
	height: 8px;
	opacity: 0.2;
	position: absolute;
	right: 0;
	transform: rotate(45deg);
	width: 8px;
}
.breadcrumbs .breadcrumbs-item:not(:first-child) {
	padding-left: 10px;
}
.breadcrumbs .breadcrumbs-link {
	color: #000;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}
.breadcrumbs .breadcrumbs-link:hover {
	opacity: 1;
}
.list-mark li,
.section-employee .block-employee-awards .list li,
.section-employee .block-employee-summary .list li {
	border-top: 1px solid #eee;
	font-size: 16px;
	padding: 20px 0 20px 20px;
	position: relative;
}
.list-mark li:last-child,
.section-employee .block-employee-awards .list li:last-child,
.section-employee .block-employee-summary .list li:last-child {
	border-bottom: 1px solid #eee;
}
.list-mark li:before,
.section-employee .block-employee-awards .list li:before,
.section-employee .block-employee-summary .list li:before {
	background-color: #ffc3a1;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	top: 26px;
	width: 10px;
}
.list-summary li,
.section-employee .block-employee-roles-current .list li,
.section-employee .block-employee-roles-total .list li {
	border-bottom: 1px solid #eee;
	display: flex;
	padding: 10px 0;
}
.list-summary li:first-child,
.section-employee .block-employee-roles-current .list li:first-child,
.section-employee .block-employee-roles-total .list li:first-child {
	padding-top: 0;
}
.list-summary .prop,
.section-employee .block-employee-roles-current .list .prop,
.section-employee .block-employee-roles-total .list .prop {
	font-weight: 600;
	margin-right: 20px;
}
.list-summary .val,
.section-employee .block-employee-roles-current .list .val,
.section-employee .block-employee-roles-total .list .val {
	color: #939393;
	text-decoration: underline;
}
.list-summary a.val:hover,
.section-employee .block-employee-roles-current .list a.val:hover,
.section-employee .block-employee-roles-total .list a.val:hover {
	opacity: 0.6;
}
@media (max-width: 575.9px) {
	.list-summary li,
	.section-employee .block-employee-roles-current .list li,
	.section-employee .block-employee-roles-total .list li {
		flex-direction: column;
	}
	.list-summary .prop,
	.section-employee .block-employee-roles-current .list .prop,
	.section-employee .block-employee-roles-total .list .prop {
		margin-right: 0;
	}
}
.section-employee .block-employee-gallery .splide__track,
.section-fest-info .block-fest-gallery .splide__track,
.section-spectacle-gallery .block-spectacle-gallery .splide__track,
.spectacle-slider .splide__track {
	position: static;
}
.section-employee .block-employee-gallery .splide__slide,
.section-fest-info .block-fest-gallery .splide__slide,
.section-spectacle-gallery .block-spectacle-gallery .splide__slide,
.spectacle-slider .splide__slide {
	display: flex;
	flex-direction: column;
}
.section-employee .block-employee-gallery .splide__arrow,
.section-fest-info .block-fest-gallery .splide__arrow,
.section-spectacle-gallery .block-spectacle-gallery .splide__arrow,
.spectacle-slider .splide__arrow {
	height: 80px;
	left: -40px;
	top: 140px;
	width: 20px;
}
.section-employee .block-employee-gallery .splide__arrow.splide__arrow--next,
.section-fest-info .block-fest-gallery .splide__arrow.splide__arrow--next,
.section-spectacle-gallery
	.block-spectacle-gallery
	.splide__arrow.splide__arrow--next,
.spectacle-slider .splide__arrow.splide__arrow--next {
	left: auto;
	right: -40px;
}
.section-employee .block-employee-gallery .splide__arrow:before,
.section-fest-info .block-fest-gallery .splide__arrow:before,
.section-spectacle-gallery .block-spectacle-gallery .splide__arrow:before,
.spectacle-slider .splide__arrow:before {
	background-image: url(../img/svg/slide-arrow3.svg);
}
.section-employee .block-employee-gallery .splide__arrow:after,
.section-fest-info .block-fest-gallery .splide__arrow:after,
.section-spectacle-gallery .block-spectacle-gallery .splide__arrow:after,
.spectacle-slider .splide__arrow:after {
	background-image: url(../img/svg/slide-arrow3-hover.svg);
}
.section-employee .block-employee-gallery .media,
.section-fest-info .block-fest-gallery .media,
.section-spectacle-gallery .block-spectacle-gallery .media,
.spectacle-slider .media {
	border-radius: 10px;
	height: 280px;
	overflow: hidden;
	width: 100%;
}
.section-employee .block-employee-gallery .media img,
.section-employee .block-employee-gallery .media video,
.section-fest-info .block-fest-gallery .media img,
.section-fest-info .block-fest-gallery .media video,
.section-spectacle-gallery .block-spectacle-gallery .media img,
.section-spectacle-gallery .block-spectacle-gallery .media video,
.spectacle-slider .media img,
.spectacle-slider .media video {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-employee .block-employee-gallery .description,
.section-fest-info .block-fest-gallery .description,
.section-spectacle-gallery .block-spectacle-gallery .description,
.spectacle-slider .description {
	color: rgba(0, 0, 0, 0.7);
	font-size: 14px;
	margin-top: 10px;
}
@media (max-width: 992px) {
	.section-employee .block-employee-gallery .splide__arrow,
	.section-fest-info .block-fest-gallery .splide__arrow,
	.section-spectacle-gallery .block-spectacle-gallery .splide__arrow,
	.spectacle-slider .splide__arrow {
		left: -30px;
		top: 109px;
	}
	.section-employee
		.block-employee-gallery
		.splide__arrow.splide__arrow--next,
	.section-fest-info .block-fest-gallery .splide__arrow.splide__arrow--next,
	.section-spectacle-gallery
		.block-spectacle-gallery
		.splide__arrow.splide__arrow--next,
	.spectacle-slider .splide__arrow.splide__arrow--next {
		right: -30px;
	}
	.section-employee .block-employee-gallery .media,
	.section-fest-info .block-fest-gallery .media,
	.section-spectacle-gallery .block-spectacle-gallery .media,
	.spectacle-slider .media {
		height: 218px;
	}
}
@media (max-width: 743.9px) {
	.section-employee .block-employee-gallery .splide__arrow,
	.section-fest-info .block-fest-gallery .splide__arrow,
	.section-spectacle-gallery .block-spectacle-gallery .splide__arrow,
	.spectacle-slider .splide__arrow {
		height: 40px;
		left: -20px;
		top: 117px;
	}
	.section-employee
		.block-employee-gallery
		.splide__arrow.splide__arrow--next,
	.section-fest-info .block-fest-gallery .splide__arrow.splide__arrow--next,
	.section-spectacle-gallery
		.block-spectacle-gallery
		.splide__arrow.splide__arrow--next,
	.spectacle-slider .splide__arrow.splide__arrow--next {
		right: -20px;
	}
	.section-employee .block-employee-gallery .media,
	.section-fest-info .block-fest-gallery .media,
	.section-spectacle-gallery .block-spectacle-gallery .media,
	.spectacle-slider .media {
		height: 234px;
	}
}
.link-back {
	align-items: center;
	color: rgba(0, 0, 0, 0.5);
	display: flex;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.3s ease;
}
.link-back .icon {
	display: flex;
	flex-shrink: 0;
	margin-right: 10px;
}
.link-back path {
	fill: rgba(0, 0, 0, 0.5);
	transition: fill 0.3s ease;
}
.link-back:hover {
	color: #000;
}
.link-back:hover path {
	fill: #000;
}
.section-documents .block-documents-tabs .tabs-wrapper,
.tabs-simple {
	display: flex;
	margin-right: -40px;
	overflow: auto;
	padding-right: 40px;
}
.section-documents .block-documents-tabs .tabs-wrapper .tab-item,
.tabs-simple .tab-item {
	align-items: center;
	border-bottom: 1px solid #ddd;
	display: flex;
	min-width: fit-content;
	width: 33.3333333333%;
}
.section-documents .block-documents-tabs .tabs-wrapper .tab-link,
.tabs-simple .tab-link {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	opacity: 0.5;
	padding: 10px;
	text-align: center;
	width: 100%;
}
.section-documents .block-documents-tabs .tabs-wrapper .tab-item.active,
.tabs-simple .tab-item.active {
	border-color: #ffc3a1;
}
.section-documents
	.block-documents-tabs
	.tabs-wrapper
	.tab-item.active
	.tab-link,
.tabs-simple .tab-item.active .tab-link {
	opacity: 1;
}
.like-tabs-links {
	display: flex;
	flex-wrap: nowrap;
}
.like-tabs-links .nav-item {
	align-items: center;
	border-bottom: 1px solid #ddd;
	color: rgba(0, 0, 0, 0.5);
	display: flex;
	font-size: 16px;
	font-weight: 600;
	justify-content: center;
	padding: 10px;
	text-align: center;
	width: 100%;
}
.like-tabs-links .nav-item.active {
	border-color: #ffc3a1;
	color: #000;
	opacity: 1;
}
.card-tags-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: -5px;
}
.card-tags-list .tag {
	margin: 5px;
}
.card-tags-list .tag-btn {
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 5px;
	display: block;
	font-size: 12px;
	padding: 4px 9px;
	white-space: nowrap;
	width: fit-content;
}
.card-tags-list .tag-btn.active {
	background-color: #ffc3a1;
	border-color: #ffc3a1;
}
.card-tags-list .tag-btn.bordered {
	border-color: #ffc3a1;
}
.card-tags-list .tag-img {
	align-items: center;
	border-radius: 5px;
	display: flex;
	flex-shrink: 0;
	height: 30px;
	justify-content: center;
	width: 30px;
}
.card-tags-list .tag-img img,
.card-tags-list .tag-img svg {
	display: block;
	max-height: 100%;
	max-width: 100%;
}
.card-tags-list .colored-border {
	border: 2px solid #ffc3a1;
}
.spec-date-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.spec-date-wrap .point {
	background-color: #ffc3a1;
	border-radius: 2px;
	display: block;
	flex-shrink: 0;
	height: 10px;
	margin: 0 5px;
	width: 10px;
}
.spec-date-wrap .time {
	font-size: 24px;
}
.spec-date-wrap .day-wrap {
	align-items: center;
	display: flex;
}
.spec-date-wrap .day-wrap .day {
	font-size: 48px;
	padding-right: 5px;
}
.spec-date-wrap .day-wrap .week-day {
	color: rgba(0, 0, 0, 0.5);
	display: block;
	font-size: 16px;
	margin-bottom: -5px;
}
.spec-date-wrap .day-wrap .mounth {
	display: block;
	font-size: 16px;
}
@media (max-width: 743.9px) {
	.spec-date-wrap .day-wrap .day {
		font-size: 30px;
	}
	.spec-date-wrap .day-wrap .mounth,
	.spec-date-wrap .day-wrap .week-day {
		font-size: 12px;
	}
}
.spec-info-list .info-row {
	font-size: 16px;
}
.spec-info-list .info-row:not(:last-child) {
	margin-bottom: 5px;
}
.spec-info-list .info-row .label {
	color: rgba(0, 0, 0, 0.3);
	font-weight: 600;
}
.spec-info-list .info-row strong.label {
	color: #000;
	font-weight: 600;
}
.back-btn {
	color: rgba(0, 0, 0, 0.5);
	font-weight: 600;
	padding: 2px 5px;
	transition-duration: 0.2s;
	transition-property: color;
	width: fit-content;
}
.back-btn,
.back-btn .ico {
	align-items: center;
	display: flex;
}
.back-btn .ico {
	border-radius: 5px;
	flex-shrink: 0;
	height: 10px;
	justify-content: center;
	margin-right: 10px;
	width: 6px;
}
.back-btn .ico img,
.back-btn .ico svg {
	display: block;
	max-height: 100%;
	max-width: 100%;
}
.back-btn .ico path {
	transition-duration: 0.2s;
	transition-property: fill;
}
.back-btn:hover {
	color: #000;
}
.back-btn:hover .ico path {
	fill: #000;
}
.footer .info-row,
.header .info-row {
	background-color: #ffc3a1;
	padding-bottom: 15px;
	padding-top: 15px;
}
.footer .info-row .container,
.header .info-row .container {
	align-items: center;
	display: flex;
}
.footer .info-row .info-version,
.header .info-row .info-version {
	cursor: pointer;
}
.footer .info-row .label,
.header .info-row .label {
	font-weight: 600;
}
.footer .info-row.tablet,
.header .info-row.tablet {
	display: none;
}
@media (min-width: 1230px) {
	.footer .info-row .info-item:not(:last-child):not(:first-child),
	.header .info-row .info-item:not(:last-child):not(:first-child) {
		border-right: 1px solid #000;
		margin-right: 20px;
		padding-right: 20px;
	}
	.footer .info-row .info-work + .info-phone,
	.header .info-row .info-work + .info-phone {
		margin-left: auto;
	}
}
@media (max-width: 1230px) {
	.footer .info-row.tablet,
	.header .info-row.tablet {
		display: block;
	}
	.footer .info-row.desktop,
	.header .info-row.desktop {
		display: none;
	}
	.footer .info-row .container,
	.header .info-row .container {
		display: block;
	}
	.footer .info-row .bottom-info,
	.footer .info-row .top-info,
	.header .info-row .bottom-info,
	.header .info-row .top-info {
		align-items: center;
		display: flex;
	}
	.footer .info-row .top-info,
	.header .info-row .top-info {
		border-bottom: 1px solid #000;
		padding-bottom: 9px;
	}
	.footer .info-row .bottom-info,
	.header .info-row .bottom-info {
		justify-content: center;
		padding-top: 10px;
	}
	.footer .info-row .info-work,
	.header .info-row .info-work {
		margin-right: auto;
	}
	.footer .info-row .info-phone:first-child,
	.header .info-row .info-phone:first-child {
		border-right: 1px solid #000;
		margin-right: 50px;
		padding-right: 50px;
	}
	.footer .info-row .info-lang,
	.header .info-row .info-lang {
		border-left: 1px solid #000;
		border-right: 1px solid #000;
		margin-right: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 743.9px) {
	.footer .info-row,
	.header .info-row {
		padding-bottom: 20px;
		padding-top: 20px;
	}
	.footer .info-row .bottom-info,
	.footer .info-row .top-info,
	.header .info-row .bottom-info,
	.header .info-row .top-info {
		border: none;
		flex-wrap: wrap;
		padding: 0;
	}
	.footer .info-row .info-work,
	.header .info-row .info-work {
		border-bottom: 1px solid #000;
		margin: 0 0 20px;
		padding-bottom: 20px;
		width: 100%;
	}
	.footer .info-row .info-work .label,
	.header .info-row .info-work .label {
		display: block;
		margin-bottom: 10px;
	}
	.footer .info-row .info-work .value,
	.header .info-row .info-work .value {
		display: block;
	}
	.footer .info-row .bottom-info,
	.header .info-row .bottom-info {
		border-top: 1px solid #000;
		margin-top: 20px;
		padding-top: 20px;
	}
	.footer .info-row .info-lang,
	.header .info-row .info-lang {
		border-left: none;
		margin-right: 40px;
		padding-left: 0;
		padding-right: 40px;
	}
	.footer .info-row .info-phone,
	.header .info-row .info-phone {
		width: 100%;
	}
	.footer .info-row .info-phone:first-child,
	.header .info-row .info-phone:first-child {
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
	.footer .info-row .info-phone:not(:last-child),
	.header .info-row .info-phone:not(:last-child) {
		border-bottom: 1px solid #000;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}
.tags-filter {
	display: flex;
	flex-wrap: nowrap;
	overflow: auto;
	padding-bottom: 10px;
	padding-top: 10px;
}
.tags-filter .tag-item {
	cursor: pointer;
	display: block;
	flex-shrink: 0;
	overflow: hidden;
	padding: 10px 20px;
	position: relative;
	user-select: none;
	white-space: nowrap;
	width: fit-content;
}
.tags-filter .tag-item:not(:last-child) {
	margin-right: 10px;
}
.tags-filter .label {
	color: #000;
	transition-duration: 0.2s;
	transition-property: color;
}
.tags-filter .label:before {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition-duration: 0.2s;
	transition-property: background-color, border-color, box-shadow;
	width: 100%;
	z-index: -1;
}
.tags-filter input:checked + .label {
	color: #fff;
}
.tags-filter input:checked + .label:before {
	background-color: #000 !important;
	border-color: #000 !important;
	box-shadow: none !important;
}
.tags-filter .tag-item.active .label {
	color: #fff;
}
.tags-filter .tag-item.active .label:before {
	background-color: #000 !important;
	border-color: #000 !important;
	box-shadow: none !important;
}
.tags-filter .tag-item:not(.active):hover .label:before {
	border-color: #ffc3a1;
	box-shadow: inset 0 0 0 1px #ffc3a1;
}
.site-wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
}
.site-wrap > * {
	width: 100%;
}
.site-wrap .footer,
.site-wrap .section-partners-logos {
	margin-top: auto;
}
.main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1360px;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
}
@media (max-width: 743.9px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.cards-partners-logos,
.row,
.section-employee .block-employee-upcoming .cards-upcoming,
.section-employees .cards-employees,
.section-repertoire .cards-upcoming,
.section-spectacle-creators .cards-employees,
.section-spectacle-creators .cards-press,
.section-spectacle-info .block-spectacle-schedule .cards-schedule {
	display: flex;
	flex-wrap: wrap;
}
.col {
	width: 100%;
}
.hamburger {
	background-color: rgba(0, 0, 0, 0);
	border: 0;
	color: inherit;
	cursor: pointer;
	display: inline-block;
	font: inherit;
	margin: 0;
	overflow: visible;
	padding: 15px;
	text-transform: none;
	transition-duration: 0.15s;
	transition-property: opacity, filter;
	transition-timing-function: linear;
}
.hamburger.is-active:hover,
.hamburger:hover {
	opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #000;
}
.hamburger-box {
	display: inline-block;
	height: 24px;
	position: relative;
	width: 40px;
}
.hamburger-inner {
	display: block;
	margin-top: -2px;
	top: 50%;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	background-color: #000;
	border-radius: 4px;
	height: 4px;
	position: absolute;
	transition-duration: 0.15s;
	transition-property: transform;
	transition-timing-function: ease;
	width: 40px;
}
.hamburger-inner:after,
.hamburger-inner:before {
	content: "";
	display: block;
}
.hamburger-inner:before {
	top: -10px;
}
.hamburger-inner:after {
	bottom: -10px;
}
.hamburger--3dx .hamburger-box {
	perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
	transition:
		transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx .hamburger-inner:after,
.hamburger--3dx .hamburger-inner:before {
	transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dx-r .hamburger-box {
	perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
	transition:
		transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx-r .hamburger-inner:after,
.hamburger--3dx-r .hamburger-inner:before {
	transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx-r.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dy .hamburger-box {
	perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
	transition:
		transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy .hamburger-inner:after,
.hamburger--3dy .hamburger-inner:before {
	transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dy-r .hamburger-box {
	perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
	transition:
		transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy-r .hamburger-inner:after,
.hamburger--3dy-r .hamburger-inner:before {
	transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy-r.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dxy .hamburger-box {
	perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
	transition:
		transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy .hamburger-inner:after,
.hamburger--3dxy .hamburger-inner:before {
	transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dxy-r .hamburger-box {
	perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
	transition:
		transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy-r .hamburger-inner:after,
.hamburger--3dxy-r .hamburger-inner:before {
	transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy-r.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--arrow.is-active .hamburger-inner:before {
	transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrow.is-active .hamburger-inner:after {
	transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrow-r.is-active .hamburger-inner:before {
	transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrow-r.is-active .hamburger-inner:after {
	transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowalt .hamburger-inner:before {
	transition:
		top 0.1s ease 0.1s,
		transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner:after {
	transition:
		bottom 0.1s ease 0.1s,
		transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner:before {
	top: 0;
	transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
	transition:
		top 0.1s ease,
		transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}
.hamburger--arrowalt.is-active .hamburger-inner:after {
	bottom: 0;
	transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
	transition:
		bottom 0.1s ease,
		transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}
.hamburger--arrowalt-r .hamburger-inner:before {
	transition:
		top 0.1s ease 0.1s,
		transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner:after {
	transition:
		bottom 0.1s ease 0.1s,
		transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner:before {
	top: 0;
	transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
	transition:
		top 0.1s ease,
		transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}
.hamburger--arrowalt-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
	transition:
		bottom 0.1s ease,
		transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}
.hamburger--arrowturn.is-active .hamburger-inner {
	transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner:before {
	transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrowturn.is-active .hamburger-inner:after {
	transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowturn-r.is-active .hamburger-inner {
	transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner:before {
	transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowturn-r.is-active .hamburger-inner:after {
	transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner:after,
.hamburger--boring .hamburger-inner:before {
	transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
	transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner:before {
	opacity: 0;
	top: 0;
}
.hamburger--boring.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
}
.hamburger--collapse .hamburger-inner {
	bottom: 0;
	top: auto;
	transition-delay: 0.13s;
	transition-duration: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner:after {
	top: -20px;
	transition:
		top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner:before {
	transition:
		top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner:after {
	opacity: 0;
	top: 0;
	transition:
		top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
		opacity 0.1s linear 0.22s;
}
.hamburger--collapse.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(-90deg);
	transition:
		top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
		transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.hamburger--collapse-r .hamburger-inner {
	bottom: 0;
	top: auto;
	transition-delay: 0.13s;
	transition-duration: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner:after {
	top: -20px;
	transition:
		top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner:before {
	transition:
		top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner:after {
	opacity: 0;
	top: 0;
	transition:
		top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
		opacity 0.1s linear 0.22s;
}
.hamburger--collapse-r.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(90deg);
	transition:
		top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
		transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.hamburger--elastic .hamburger-inner {
	top: 2px;
	transition-duration: 0.275s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner:before {
	top: 10px;
	transition: opacity 0.125s ease 0.275s;
}
.hamburger--elastic .hamburger-inner:after {
	top: 20px;
	transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(135deg);
	transition-delay: 75ms;
}
.hamburger--elastic.is-active .hamburger-inner:before {
	opacity: 0;
	transition-delay: 0s;
}
.hamburger--elastic.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(-270deg);
	transition-delay: 75ms;
}
.hamburger--elastic-r .hamburger-inner {
	top: 2px;
	transition-duration: 0.275s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner:before {
	top: 10px;
	transition: opacity 0.125s ease 0.275s;
}
.hamburger--elastic-r .hamburger-inner:after {
	top: 20px;
	transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(-135deg);
	transition-delay: 75ms;
}
.hamburger--elastic-r.is-active .hamburger-inner:before {
	opacity: 0;
	transition-delay: 0s;
}
.hamburger--elastic-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(270deg);
	transition-delay: 75ms;
}
.hamburger--emphatic {
	overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
	transition: background-color 0.125s ease-in 0.175s;
}
.hamburger--emphatic .hamburger-inner:before {
	left: 0;
	transition:
		transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
		top 0.05s linear 0.125s,
		left 0.125s ease-in 0.175s;
}
.hamburger--emphatic .hamburger-inner:after {
	right: 0;
	top: 10px;
	transition:
		transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
		top 0.05s linear 0.125s,
		right 0.125s ease-in 0.175s;
}
.hamburger--emphatic.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transition-delay: 0s;
	transition-timing-function: ease-out;
}
.hamburger--emphatic.is-active .hamburger-inner:before {
	left: -80px;
	top: -80px;
	transform: translate3d(80px, 80px, 0) rotate(45deg);
	transition:
		left 0.125s ease-out,
		top 0.05s linear 0.125s,
		transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
}
.hamburger--emphatic.is-active .hamburger-inner:after {
	right: -80px;
	top: -80px;
	transform: translate3d(-80px, 80px, 0) rotate(-45deg);
	transition:
		right 0.125s ease-out,
		top 0.05s linear 0.125s,
		transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
}
.hamburger--emphatic-r {
	overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
	transition: background-color 0.125s ease-in 0.175s;
}
.hamburger--emphatic-r .hamburger-inner:before {
	left: 0;
	transition:
		transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
		top 0.05s linear 0.125s,
		left 0.125s ease-in 0.175s;
}
.hamburger--emphatic-r .hamburger-inner:after {
	right: 0;
	top: 10px;
	transition:
		transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
		top 0.05s linear 0.125s,
		right 0.125s ease-in 0.175s;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transition-delay: 0s;
	transition-timing-function: ease-out;
}
.hamburger--emphatic-r.is-active .hamburger-inner:before {
	left: -80px;
	top: 80px;
	transform: translate3d(80px, -80px, 0) rotate(-45deg);
	transition:
		left 0.125s ease-out,
		top 0.05s linear 0.125s,
		transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
}
.hamburger--emphatic-r.is-active .hamburger-inner:after {
	right: -80px;
	top: 80px;
	transform: translate3d(-80px, -80px, 0) rotate(45deg);
	transition:
		right 0.125s ease-out,
		top 0.05s linear 0.125s,
		transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
}
.hamburger--minus .hamburger-inner:after,
.hamburger--minus .hamburger-inner:before {
	transition:
		bottom 0.08s ease-out 0s,
		top 0.08s ease-out 0s,
		opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner:after,
.hamburger--minus.is-active .hamburger-inner:before {
	opacity: 0;
	transition:
		bottom 0.08s ease-out,
		top 0.08s ease-out,
		opacity 0s linear 0.08s;
}
.hamburger--minus.is-active .hamburger-inner:before {
	top: 0;
}
.hamburger--minus.is-active .hamburger-inner:after {
	bottom: 0;
}
.hamburger--slider .hamburger-inner {
	top: 2px;
}
.hamburger--slider .hamburger-inner:before {
	top: 10px;
	transition-duration: 0.15s;
	transition-property: transform, opacity;
	transition-timing-function: ease;
}
.hamburger--slider .hamburger-inner:after {
	top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner:before {
	opacity: 0;
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
}
.hamburger--slider.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}
.hamburger--slider-r .hamburger-inner {
	top: 2px;
}
.hamburger--slider-r .hamburger-inner:before {
	top: 10px;
	transition-duration: 0.15s;
	transition-property: transform, opacity;
	transition-timing-function: ease;
}
.hamburger--slider-r .hamburger-inner:after {
	top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner:before {
	opacity: 0;
	transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
}
.hamburger--slider-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(90deg);
}
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner:before {
	transition:
		top 0.1s ease-in 0.25s,
		opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner:after {
	transition:
		bottom 0.1s ease-in 0.25s,
		transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner:before {
	opacity: 0;
	top: 0;
	transition:
		top 0.1s ease-out,
		opacity 0.1s ease-out 0.12s;
}
.hamburger--spin.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
	transition:
		bottom 0.1s ease-out,
		transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}
.hamburger--spin-r .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner:before {
	transition:
		top 0.1s ease-in 0.25s,
		opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner:after {
	transition:
		bottom 0.1s ease-in 0.25s,
		transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
	transform: rotate(-225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner:before {
	opacity: 0;
	top: 0;
	transition:
		top 0.1s ease-out,
		opacity 0.1s ease-out 0.12s;
}
.hamburger--spin-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(90deg);
	transition:
		bottom 0.1s ease-out,
		transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}
.hamburger--spring .hamburger-inner {
	top: 2px;
	transition: background-color 0s linear 0.13s;
}
.hamburger--spring .hamburger-inner:before {
	top: 10px;
	transition:
		top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner:after {
	top: 20px;
	transition:
		top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transition-delay: 0.22s;
}
.hamburger--spring.is-active .hamburger-inner:before {
	top: 0;
	transform: translate3d(0, 10px, 0) rotate(45deg);
	transition:
		top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
		transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}
.hamburger--spring.is-active .hamburger-inner:after {
	top: 0;
	transform: translate3d(0, 10px, 0) rotate(-45deg);
	transition:
		top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
		transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}
.hamburger--spring-r .hamburger-inner {
	bottom: 0;
	top: auto;
	transition-delay: 0s;
	transition-duration: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner:after {
	top: -20px;
	transition:
		top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner:before {
	transition:
		top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner:after {
	opacity: 0;
	top: 0;
	transition:
		top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
		opacity 0s linear 0.22s;
}
.hamburger--spring-r.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(90deg);
	transition:
		top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
		transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
}
.hamburger--stand .hamburger-inner {
	transition:
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s,
		background-color 0s linear 75ms;
}
.hamburger--stand .hamburger-inner:before {
	transition:
		top 75ms ease-in 75ms,
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand .hamburger-inner:after {
	transition:
		bottom 75ms ease-in 75ms,
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotate(90deg);
	transition:
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
		background-color 0s linear 0.15s;
}
.hamburger--stand.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(-45deg);
	transition:
		top 75ms ease-out 0.1s,
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}
.hamburger--stand.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(45deg);
	transition:
		bottom 75ms ease-out 0.1s,
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}
.hamburger--stand-r .hamburger-inner {
	transition:
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s,
		background-color 0s linear 75ms;
}
.hamburger--stand-r .hamburger-inner:before {
	transition:
		top 75ms ease-in 75ms,
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand-r .hamburger-inner:after {
	transition:
		bottom 75ms ease-in 75ms,
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand-r.is-active .hamburger-inner {
	background-color: rgba(0, 0, 0, 0) !important;
	transform: rotate(-90deg);
	transition:
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
		background-color 0s linear 0.15s;
}
.hamburger--stand-r.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(-45deg);
	transition:
		top 75ms ease-out 0.1s,
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}
.hamburger--stand-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(45deg);
	transition:
		bottom 75ms ease-out 0.1s,
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}
.hamburger--squeeze .hamburger-inner {
	transition-duration: 75ms;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner:before {
	transition:
		top 75ms ease 0.12s,
		opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
	transition:
		bottom 75ms ease 0.12s,
		transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
	opacity: 0;
	top: 0;
	transition:
		top 75ms ease,
		opacity 75ms ease 0.12s;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
	transition:
		bottom 75ms ease,
		transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}
.hamburger--vortex .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner:after,
.hamburger--vortex .hamburger-inner:before {
	transition-delay: 0.1s;
	transition-duration: 0s;
	transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner:before {
	transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner:after {
	transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
	transform: rotate(765deg);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner:after,
.hamburger--vortex.is-active .hamburger-inner:before {
	transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner:before {
	opacity: 0;
	top: 0;
}
.hamburger--vortex.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(90deg);
}
.hamburger--vortex-r .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner:after,
.hamburger--vortex-r .hamburger-inner:before {
	transition-delay: 0.1s;
	transition-duration: 0s;
	transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner:before {
	transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner:after {
	transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
	transform: rotate(-765deg);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner:after,
.hamburger--vortex-r.is-active .hamburger-inner:before {
	transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner:before {
	opacity: 0;
	top: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
}
.input-wrap {
	position: relative;
	width: 100%;
}
.input-wrap .label {
	font-size: 18px;
	font-weight: 600;
}
.input-wrap .label:after {
	color: #ffc3a1;
}
.input-wrap .label.required:after {
	content: " *";
}
.input {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	color: #000;
	font-size: 16px;
	padding: 11px 16px;
	width: 100%;
}
.input::placeholder {
	color: rgba(0, 0, 0, 0.3);
	font-size: 12px;
}
textarea.input {
	max-height: 350px;
	min-height: 217px;
	resize: vertical;
}
.alert-input-text {
	display: none;
	font-size: 12px;
	left: 0;
	padding-top: 2px;
	pointer-events: none;
	position: absolute;
	top: 100%;
}
.input-wrap.has-error .alert-input-text {
	display: block;
}
.input-wrap.has-error .input {
	border-color: #db3545;
}
.hide-input,
.section-fest-info .block-fest-schedule .day-item input,
.section-fest-info .block-fest-schedule .reset-date input,
.section-schedule .day-item input,
.section-schedule .reset-date input,
.tags-filter input {
	appearance: none;
	background-color: rgba(0, 0, 0, 0);
	background: none;
	border: none;
	display: block;
	font-size: 0;
	height: 0;
	left: 0;
	line-height: 0px;
	position: absolute;
	top: 0;
	width: 0;
}
.form.loading {
	pointer-events: none;
	user-select: none;
}
.form.loading .loading-btn .preloader {
	opacity: 1;
}
.form.loading .loading-btn .text {
	opacity: 0;
}
.server-response {
	display: block;
}
.server-response:not(.success):not(.error) {
	display: none;
}
.server-response.error {
	color: #db3545;
}
.server-response.success {
	padding-left: 29px;
	padding-top: 2px;
	position: relative;
}
.server-response.success:after {
	background: url(../img/svg/success-standard-solid.svg) no-repeat top/cover;
	content: "";
	display: block;
	height: 24px;
	left: 0;
	position: absolute;
	top: 0;
	width: 24px;
}
.grecaptcha-badge {
	display: none !important;
}
.btn,
.cards-upcoming .tags .text,
.section-spectacle-info .block-spectacle-summary .coupon,
.section-spectacle-info .block-spectacle-summary .tag,
a.btn,
button.btn {
	align-items: center;
	background: none;
	border: none;
	border-radius: 10px;
	color: inherit;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	justify-content: center;
	line-height: 1.5;
	padding: 10px 20px;
	position: relative;
	text-align: center;
	transition-duration: 0.2s;
	transition-property:
		opacity, background-color, box-shadow, color, border-color;
	width: fit-content;
}
.btn .ico,
.cards-upcoming .tags .text .ico,
.section-spectacle-info .block-spectacle-summary .coupon .ico,
.section-spectacle-info .block-spectacle-summary .tag .ico,
a.btn .ico,
button.btn .ico {
	align-items: center;
	border-radius: 5px;
	display: flex;
	flex-shrink: 0;
	height: 32px;
	justify-content: center;
	width: 32px;
}
.btn .ico img,
.btn .ico svg,
.cards-upcoming .tags .text .ico img,
.cards-upcoming .tags .text .ico svg,
.section-spectacle-info .block-spectacle-summary .coupon .ico img,
.section-spectacle-info .block-spectacle-summary .coupon .ico svg,
.section-spectacle-info .block-spectacle-summary .tag .ico img,
.section-spectacle-info .block-spectacle-summary .tag .ico svg,
a.btn .ico img,
a.btn .ico svg,
button.btn .ico img,
button.btn .ico svg {
	display: block;
	max-height: 100%;
	max-width: 100%;
}
.btn .preloader,
.cards-upcoming .tags .text .preloader,
.section-spectacle-info .block-spectacle-summary .coupon .preloader,
.section-spectacle-info .block-spectacle-summary .tag .preloader,
a.btn .preloader,
button.btn .preloader {
	left: 50%;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.4);
}
.btn.loading,
.cards-upcoming .tags .loading.text,
.section-spectacle-info .block-spectacle-summary .loading.coupon,
.section-spectacle-info .block-spectacle-summary .loading.tag,
a.btn.loading,
button.btn.loading {
	pointer-events: none;
	user-select: none;
}
.btn.loading .preloader,
.cards-upcoming .tags .loading.text .preloader,
.section-spectacle-info .block-spectacle-summary .loading.coupon .preloader,
.section-spectacle-info .block-spectacle-summary .loading.tag .preloader,
a.btn.loading .preloader,
button.btn.loading .preloader {
	opacity: 1;
}
.btn.loading .text,
.cards-upcoming .tags .loading.text .text,
.section-spectacle-info .block-spectacle-summary .loading.coupon .text,
.section-spectacle-info .block-spectacle-summary .loading.tag .text,
a.btn.loading .text,
button.btn.loading .text {
	opacity: 0;
}
.btn.white-btn,
.cards-upcoming .tags .white-btn.text,
.section-spectacle-info .block-spectacle-summary .white-btn.coupon,
.section-spectacle-info .block-spectacle-summary .white-btn.tag,
a.btn.white-btn,
button.btn.white-btn {
	background-color: #fff;
	color: #000;
}
.btn.white-btn:hover,
.cards-upcoming .tags .white-btn.text:hover,
.section-spectacle-info .block-spectacle-summary .white-btn.coupon:hover,
.section-spectacle-info .block-spectacle-summary .white-btn.tag:hover,
a.btn.white-btn:hover,
button.btn.white-btn:hover {
	background-color: #ffc3a1;
}
.btn.border-btn,
.cards-upcoming .tags .border-btn.text,
.section-spectacle-info .block-spectacle-summary .border-btn.coupon,
.section-spectacle-info .block-spectacle-summary .border-btn.tag,
a.btn.border-btn,
button.btn.border-btn {
	background-color: #fff;
	border: 2px solid #ffc3a1;
	color: #000;
}
.btn.border-btn:hover,
.cards-upcoming .tags .border-btn.text:hover,
.section-spectacle-info .block-spectacle-summary .border-btn.coupon:hover,
.section-spectacle-info .block-spectacle-summary .border-btn.tag:hover,
a.btn.border-btn:hover,
button.btn.border-btn:hover {
	background-color: #ffc3a1;
}
.btn.gray-border-btn,
.cards-upcoming .tags .gray-border-btn.text,
.section-spectacle-info .block-spectacle-summary .gray-border-btn.coupon,
.section-spectacle-info .block-spectacle-summary .gray-border-btn.tag,
a.btn.gray-border-btn,
button.btn.gray-border-btn {
	background-color: #fff;
	border: 2px solid #eee;
	color: #000;
}
.btn.gray-border-btn:hover,
.cards-upcoming .tags .gray-border-btn.text:hover,
.section-spectacle-info .block-spectacle-summary .gray-border-btn.coupon:hover,
.section-spectacle-info .block-spectacle-summary .gray-border-btn.tag:hover,
a.btn.gray-border-btn:hover,
button.btn.gray-border-btn:hover {
	opacity: 0.6;
}
.btn.light-btn,
.cards-upcoming .tags .light-btn.text,
.section-spectacle-info .block-spectacle-summary .light-btn.coupon,
.section-spectacle-info .block-spectacle-summary .light-btn.tag,
a.btn.light-btn,
button.btn.light-btn {
	background-color: #ffc3a1;
	border: 2px solid #ffc3a1;
	color: #000;
}
.btn.light-btn:hover,
.cards-upcoming .tags .light-btn.text:hover,
.section-spectacle-info .block-spectacle-summary .light-btn.coupon:hover,
.section-spectacle-info .block-spectacle-summary .light-btn.tag:hover,
a.btn.light-btn:hover,
button.btn.light-btn:hover {
	background-color: #ffd3bb;
	border-color: #ffd3bb;
}
select.custom-select {
	display: none;
}
.nice-select {
	border: 1px solid #eee;
	border-radius: 10px;
	float: none;
	font-size: 24px;
	font-weight: 600;
	height: auto;
	line-height: inherit;
	padding: 9px 44px 9px 19px;
	position: relative;
	width: 100%;
}
.nice-select:after {
	background-image: url(../img/svg/dropdown.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border: none;
	content: "";
	height: 14px;
	margin: 0;
	position: absolute;
	right: 20px;
	top: calc(50% - 7px);
	transform: none;
	transform-origin: center center;
	width: 10px;
}
.nice-select .option {
	height: auto;
	line-height: inherit;
	padding: 10px 20px;
}
.nice-select.open:after {
	transform: rotate(-180deg);
}
.nice-select-dropdown {
	width: 100%;
}
.nice-select .list {
	font-size: 16px;
}
.nice-select .list li {
	font-weight: 600;
	padding-bottom: 6px;
	padding-top: 6px;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
	background-color: #ffc3a1;
	font-weight: 600;
}
.form-contacts .input-wrap:not(:last-child) {
	margin-bottom: 20px;
}
.form-contacts .server-response.error,
.form-contacts .server-response.success {
	display: block;
	margin: 40px 0;
}
.form-contacts .server-response.error + .form-foot,
.form-contacts .server-response.success + .form-foot {
	margin-top: 0;
}
.form-contacts .form-foot {
	align-items: center;
	display: flex;
	margin-top: 20px;
}
.cards-upcoming .tags .form-contacts .form-foot .text,
.form-contacts .form-foot .btn,
.form-contacts .form-foot .cards-upcoming .tags .text,
.form-contacts
	.form-foot
	.section-spectacle-info
	.block-spectacle-summary
	.coupon,
.form-contacts .form-foot .section-spectacle-info .block-spectacle-summary .tag,
.section-spectacle-info
	.block-spectacle-summary
	.form-contacts
	.form-foot
	.coupon,
.section-spectacle-info
	.block-spectacle-summary
	.form-contacts
	.form-foot
	.tag {
	margin-right: 20px;
	min-width: 190px;
}
.form-contacts .form-foot .text-policy {
	color: #000;
	font-size: 16px;
}
.form-contacts .form-foot .text-policy a {
	color: #939393;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}
.form-contacts .form-foot .text-policy a:hover {
	opacity: 0.6;
}
.form-contacts .form-foot.success {
	display: none;
}
@media (max-width: 575.9px) {
	.form-contacts .input-wrap:not(:last-child) {
		margin-bottom: 15px;
	}
	.form-contacts .server-response.error,
	.form-contacts .server-response.success {
		margin: 20px 0;
	}
	.form-contacts .form-foot {
		align-items: flex-start;
		flex-direction: column-reverse;
		margin-top: 15px;
	}
	.cards-upcoming .tags .form-contacts .form-foot .text,
	.form-contacts .form-foot .btn,
	.form-contacts .form-foot .cards-upcoming .tags .text,
	.form-contacts
		.form-foot
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.form-contacts
		.form-foot
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.form-contacts
		.form-foot
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.form-contacts
		.form-foot
		.tag {
		margin-top: 20px;
		width: 100%;
	}
}
.slider {
	position: relative;
}
.dots-arrow,
.splide__arrow {
	background: none;
	border-radius: 0;
	cursor: pointer;
	display: block;
	margin: 0;
	opacity: 1;
}
.dots-arrow svg,
.splide__arrow svg {
	display: none;
}
.dots-arrow:after,
.dots-arrow:before,
.splide__arrow:after,
.splide__arrow:before {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 8px 15px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition-duration: 0.1s;
	transition-property: opacity;
	width: 100%;
}
.dots-arrow:before,
.splide__arrow:before {
	background-image: url(../img/svg/slide-arrow.svg);
}
.dots-arrow:after,
.splide__arrow:after {
	background-image: url(../img/svg/slide-arrow-hover.svg);
	opacity: 0;
}
.dots-arrow:hover:before,
.splide__arrow:hover:before {
	opacity: 0;
}
.dots-arrow:hover:after,
.splide__arrow:hover:after {
	opacity: 1;
}
.splide__pagination {
	align-items: center;
	display: flex;
	padding: 0;
}
.splide__pagination li {
	display: block;
	flex-shrink: 0;
	line-height: 0;
	margin: 2.5px;
}
.splide__pagination .splide__pagination__page {
	background: none;
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid rgba(255, 195, 161, 0.5);
	border-radius: 5px;
	height: 15px;
	margin: 0;
	opacity: 1;
	transition-duration: 0.2s;
	transition-property: background-color;
	width: 15px;
}
.splide__pagination .splide__pagination__page.is-active {
	background-color: #ffc3a1;
	transform: none;
}
.splide__pagination .dots-arrow {
	height: 25px;
	position: relative;
	width: 28px;
}
.splide__pagination .dots-arrow.next-arrow {
	transform: rotate(180deg);
}
.splide__arrow {
	height: 30px;
	left: 0;
	width: 30px;
}
.splide__arrow:before {
	background-image: url(../img/svg/slide-arrow2.svg);
	background-size: 100% 100%;
}
.splide__arrow:after {
	background-image: url(../img/svg/slide-arrow2-hover.svg);
	background-size: 100% 100%;
}
.splide__arrow[disabled] {
	opacity: 0.6;
	pointer-events: none;
}
.splide__arrow.splide__arrow--next {
	left: auto;
	right: 0;
	transform: rotate(180deg) translateY(50%);
	transform-origin: center;
}
.cards-employees .card {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 22.5px 12px;
	position: relative;
	text-align: center;
}
.cards-employees .card:before {
	background-color: #f9f9f9;
	border-radius: 10px;
	bottom: 0;
	content: "";
	height: calc(100% - 75px);
	position: absolute;
	transition-duration: 0.3s;
	transition-property: box-shadow, height;
	transition-timing-function: ease;
	width: 100%;
	z-index: -1;
}
.cards-employees .img {
	border-radius: 50%;
	display: flex;
	height: 150px;
	margin-bottom: 25px;
	transition: transform 0.3s ease;
	width: 150px;
}
.cards-employees .img:not(.img-empty) img {
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.cards-employees .img.img-empty {
	align-items: center;
	background-color: #fff;
	border: 1px solid #dadada;
	justify-content: center;
}
.cards-employees .img.img-empty img {
	height: 51px;
	width: 56px;
}
.cards-employees .name {
	font-size: 20px;
	font-weight: 600;
}
.cards-employees .date {
	color: rgba(0, 0, 0, 0.5);
	font-size: 12px;
}
.cards-employees .position {
	font-size: 14px;
	margin-top: 12px;
}
.cards-employees .award {
	color: #939393;
	font-size: 12px;
	margin-top: 12px;
}
.cards-employees .card:hover:before {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	height: calc(100% - 80px);
}
.cards-employees .card:hover .img {
	transform: scale(1.066);
}
@media (max-width: 479.9px) {
	.cards-employees .card:before {
		height: calc(100% - 40px);
	}
	.cards-employees .img {
		height: 80px;
		margin-bottom: 10px;
		width: 80px;
	}
	.cards-employees .name {
		font-size: 16px;
	}
	.cards-employees .award,
	.cards-employees .position {
		margin-top: 5px;
	}
	.cards-employees .card:hover:before {
		height: calc(100% - 42px);
	}
	.cards-employees .card:hover .img {
		transform: scale(1.1);
	}
}
.cards-partners-logos {
	gap: 20px 40px;
	justify-content: center;
}
.cards-partners-logos .col {
	max-width: 189px;
}
.cards-partners-logos .card {
	display: flex;
	justify-content: center;
}
.cards-partners-logos .card img {
	max-height: 45px;
	max-width: 189px;
	object-fit: contain;
	width: 100%;
}
@media (max-width: 1200px) {
	.cards-partners-logos .col {
		max-width: 100px;
	}
	.cards-partners-logos .card img {
		max-height: 35px;
		max-width: 100px;
	}
}
@media (max-width: 743.9px) {
	.cards-partners-logos {
		gap: 20px 0;
		justify-content: flex-start;
	}
	.cards-partners-logos .col {
		max-width: 50%;
	}
	.cards-partners-logos .card img {
		max-width: 148px;
	}
}
.cards-upcoming .card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.cards-upcoming .card-head {
	margin: -1px -1px 0;
}
.cards-upcoming .card-head .img {
	display: flex;
}
.cards-upcoming .card-head .img img {
	height: 200px;
	object-fit: cover;
	width: 100%;
}
.cards-upcoming .card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px;
}
.cards-upcoming .card-body > :not(:last-child, .tags) {
	margin-bottom: 20px;
}
.cards-upcoming .tags {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px -10px;
	padding-bottom: 20px;
}
.cards-upcoming .tags .tag-item {
	padding: 0 5px 10px;
}
.cards-upcoming .tags .text {
	border: 1px solid #000;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 400;
	padding: 5px 10px;
}
.cards-upcoming .tags .icon {
	display: flex;
	height: 30px;
	width: 30px;
}
.cards-upcoming .tags .icon img,
.cards-upcoming .tags .icon svg {
	height: 100%;
	width: 100%;
}
.cards-upcoming .duration {
	font-size: 12px;
}
.cards-upcoming .description .title {
	display: inline-block;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 5px;
}
.cards-upcoming .description .text {
	font-size: 14px;
	margin-top: 5px;
}
.cards-upcoming .props {
	margin-top: auto;
}
.cards-upcoming .props .scene {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	margin-bottom: 10px;
}
.cards-upcoming .props .scene .prop {
	font-weight: 600;
	padding-right: 5px;
}
.cards-upcoming .props .list-creators .list-item {
	display: flex;
	font-size: 12px;
}
.cards-upcoming .props .list-creators .list-item:not(:last-child) {
	margin-bottom: 5px;
}
.cards-upcoming .props .list-creators .prop {
	color: rgba(0, 0, 0, 0.3);
	font-weight: 600;
	padding-right: 5px;
}
.cards-upcoming .actions {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.cards-upcoming .actions .btn,
.cards-upcoming
	.actions
	.section-spectacle-info
	.block-spectacle-summary
	.coupon,
.cards-upcoming .actions .section-spectacle-info .block-spectacle-summary .tag,
.cards-upcoming .actions .tags .text,
.cards-upcoming .tags .actions .text,
.section-spectacle-info
	.block-spectacle-summary
	.cards-upcoming
	.actions
	.coupon,
.section-spectacle-info .block-spectacle-summary .cards-upcoming .actions .tag {
	margin-left: 15px;
}
.cards-upcoming .actions .calendar {
	align-items: center;
	display: flex;
}
.cards-upcoming .actions .calendar .day {
	font-size: 30px;
	margin-right: 5px;
}
.cards-upcoming .actions .calendar .date {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	line-height: 1;
}
.cards-upcoming .actions .calendar .week-day {
	color: rgba(0, 0, 0, 0.5);
}
.cards-upcoming .actions .calendar .sep {
	background-color: #ffc3a1;
	border-radius: 2px;
	flex-shrink: 0;
	height: 10px;
	margin: 0 15px;
	width: 10px;
}
.cards-upcoming .actions .calendar .time {
	font-size: 24px;
}
@media (max-width: 1200px) {
	.cards-upcoming .actions {
		align-items: center;
		flex-direction: column;
	}
	.cards-upcoming .actions .btn,
	.cards-upcoming
		.actions
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.cards-upcoming
		.actions
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.cards-upcoming .actions .tags .text,
	.cards-upcoming .tags .actions .text,
	.section-spectacle-info
		.block-spectacle-summary
		.cards-upcoming
		.actions
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.cards-upcoming
		.actions
		.tag {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}
}
.cards-schedule .card {
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}
.cards-schedule .card-inner {
	display: flex;
	flex-direction: column;
	height: 200px;
	justify-content: center;
	padding: 15px;
}
.cards-schedule .calendar {
	align-items: center;
	display: flex;
	margin-bottom: 5px;
}
.cards-schedule .day {
	font-size: 48px;
	margin-right: 5px;
}
.cards-schedule .date {
	display: flex;
	flex-direction: column;
	font-size: 16px;
}
.cards-schedule .week-day {
	color: rgba(0, 0, 0, 0.5);
}
.cards-schedule .week-day.weekend {
	color: #dc3545;
}
.cards-schedule .month {
	color: #000;
}
.cards-schedule .time {
	font-size: 16px;
}
.cards-schedule .btn,
.cards-schedule .cards-upcoming .tags .text,
.cards-schedule .section-spectacle-info .block-spectacle-summary .coupon,
.cards-schedule .section-spectacle-info .block-spectacle-summary .tag,
.cards-upcoming .tags .cards-schedule .text,
.section-spectacle-info .block-spectacle-summary .cards-schedule .coupon,
.section-spectacle-info .block-spectacle-summary .cards-schedule .tag {
	width: 100%;
}
.cards-press .card {
	background-color: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	padding: 20px;
	transition: box-shadow 0.3s ease;
}
.cards-press .card > :not(:last-child) {
	margin-bottom: 10px;
}
.cards-press .head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.cards-press .head .type {
	color: rgba(0, 0, 0, 0.8);
	margin-right: 10px;
}
.cards-press .head .icon {
	display: flex;
	flex-shrink: 0;
}
.cards-press .head .icon svg {
	height: 20px;
	width: 20px;
}
.cards-press .head .icon path {
	stroke: #ddd;
	transition: stroke 0.3s ease;
}
.cards-press .title {
	font-size: 20px;
	font-weight: 600;
}
.cards-press .date {
	color: rgba(0, 0, 0, 0.8);
}
.cards-press a.card:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.cards-press a.card:hover .head .icon path {
	stroke: #ffc3a1;
}
.tooltip-btn {
	background-image: url(../img/svg/info.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	display: block;
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}
.tooltip-content {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	color: #000;
	display: block;
	font-size: 12px;
	font-weight: 400;
	max-width: 280px;
	opacity: 0;
	padding: 20px;
	pointer-events: none;
	text-align: left;
	transition-property: transform, opacity;
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
	width: fit-content;
	will-change: transform, opacity, position;
	z-index: 5;
}
.tooltip-content.sm-tooltip {
	padding: 5px 10px;
}
.tooltip-content.top.right {
	transform: translateX(20px) translateY(calc(100% - 20px));
}
.tooltip-content.bottom.right {
	transform: translateX(-40px) translateY(20px);
}
.tooltip-content.top.left {
	transform: translate(40px, -20px);
}
.tooltip-content.bottom.left {
	transform: translate(40px, 20px);
}
.tooltip-content.active {
	opacity: 1;
	pointer-events: all;
}
.tooltip-content.active.top.right {
	transform: translateX(10px) translateY(calc(100% - 20px));
}
.tooltip-content.active.top.left {
	transform: translate(40px, -10px);
}
.tooltip-content.active.bottom.right {
	transform: translateX(-40px) translateY(10px);
}
.tooltip-content.active.bottom.left {
	transform: translate(40px, 10px);
}
.tooltip-content.top-tooltip.top.right {
	transform: translate(-50px, -20px);
}
.tooltip-content.top-tooltip.bottom.right {
	transform: translate(-50px, 20px);
}
.tooltip-content.top-tooltip.top.left {
	transform: translate(50px, -20px);
}
.tooltip-content.top-tooltip.bottom.left {
	transform: translate(50px, 20px);
}
.tooltip-content.top-tooltip.active {
	opacity: 1;
	pointer-events: all;
}
.tooltip-content.top-tooltip.active.top.right {
	transform: translate(-50px, -10px);
}
.tooltip-content.top-tooltip.active.bottom.right {
	transform: translate(-50px, 10px);
}
.tooltip-content.top-tooltip.active.top.left {
	transform: translate(50px, -10px);
}
.tooltip-content.top-tooltip.active.bottom.left {
	transform: translate(50px, 10px);
}
.header .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.header .logo {
	display: block;
	flex-shrink: 0;
	height: 62px;
	width: 213px;
}
.header .logo img,
.header .logo svg {
	display: block;
	height: 100%;
	width: 100%;
}
.header .menu-row {
	background-color: #000;
	color: #ffc3a1;
	padding-bottom: 20px;
	padding-top: 20px;
	position: relative;
}
.header .logo-col {
	padding-right: 20px;
}
.header .menu-col {
	margin-right: -20px;
}
.header .menu-col > ul {
	color: inherit;
	display: flex;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.375;
}
.header .menu-col > ul li {
	position: relative;
}
.header .menu-col > ul a {
	display: block;
	padding: 10px 20px;
	position: relative;
	transition-duration: 0.2s;
	transition-property: color;
}
.header .menu-col > ul a:hover {
	color: #fff;
}
.header .menu-col > ul > li > a {
	text-align: center;
	text-transform: uppercase;
}
.header .menu-col > ul .parent-link:after,
.header .menu-col > ul .parent-link:before {
	background-image: url(../img/svg/menu-arrow.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: "";
	display: block;
	height: 10px;
	pointer-events: none;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition-duration: 0.2s;
	transition-property: opacity;
	width: 6px;
}
.header .menu-col > ul .parent-link:before {
	background-image: url(../img/svg/menu-arrow-fff.svg);
	opacity: 0;
	z-index: 2;
}
.header .menu-col > ul .parent-link:hover:before {
	opacity: 1;
}
.header .menu-col > ul .parent-link + ul {
	background-color: #000;
	border-radius: 0 0 10px 10px;
	opacity: 0;
	padding-bottom: 10px;
	padding-top: 10px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 100%;
	transform: translateY(10px);
	transition-duration: 0.4s;
	transition-property: transform, opacity;
	z-index: 5;
}
.header .menu-col > ul .parent-link + ul a {
	padding-left: 30px;
	padding-right: 30px;
	white-space: nowrap;
}
.header .menu-col > ul li:hover .parent-link + ul {
	opacity: 1;
	pointer-events: all;
	transform: none;
}
.header .btn-mob-col {
	display: none;
	font-size: 16px;
}
.header .menu-col .info-row {
	display: none;
}
.header .hamburger.is-active .hamburger-inner,
.header .hamburger.is-active .hamburger-inner:after,
.header .hamburger.is-active .hamburger-inner:before {
	background-color: #ffc3a1;
}
.header .hamburger-inner,
.header .hamburger-inner:after,
.header .hamburger-inner:before {
	background-color: #ffc3a1;
	border-radius: 0;
	height: 2px;
	width: 30px;
}
.header .hamburger-box {
	width: 30px;
}
.header .hamburger {
	flex-shrink: 0;
	height: 24px;
	margin-left: 15px;
	padding: 0;
}
.header .hamburger:hover {
	opacity: 1;
}
.header .toggle-menu {
	align-items: center;
	cursor: pointer;
	display: flex;
	margin-right: -20px;
	padding: 10px 20px;
	text-transform: uppercase;
	user-select: none;
}
@media (max-width: 1300px) {
	.header .menu-col > ul > li > a {
		padding-left: 10px;
		padding-right: 10px;
	}
	.header .menu-col {
		margin-right: -10px;
	}
	.header .menu-col .parent-link {
		padding-right: 20px;
	}
}
@media (max-width: 1230px) {
	.header .menu-col > ul {
		display: block;
	}
	.header .menu-col > ul > li > a {
		padding-bottom: 15px;
		padding-top: 15px;
		text-align: left;
		width: fit-content;
	}
	.header .menu-col > ul .parent-link + ul {
		border-radius: 0;
		opacity: 1;
		overflow: hidden;
		padding-bottom: 0;
		padding-top: 0;
		position: static;
		transform: none;
		transform: translateZ(0);
		transition-property: height;
		will-change: height;
	}
	.header .menu-col > ul .parent-link + ul > li > a {
		color: #fff;
		padding: 15px 10px;
		width: fit-content;
	}
	.header .menu-col {
		background-color: #000;
		font-weight: 400;
		margin: 0;
		max-width: 375px;
		padding: 15px 10px;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 100%;
		transform: translateX(100%);
		transition-duration: 0.6s;
		transition-property: transform, opacity;
		transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
		width: 100%;
		z-index: 30;
	}
	.header .btn-mob-col {
		display: block;
	}
	body.menu-is-open .header .menu-col {
		opacity: 1;
		pointer-events: all;
		transform: none;
	}
	.header .menu-col .info-row {
		color: #000;
		display: block;
	}
	.header .info-row {
		margin-bottom: -20px;
		margin-left: -10px;
		padding: 20px;
		width: calc(100% + 20px);
	}
	.header .info-row .container {
		padding: 0;
	}
	.header .info-row .bottom-info,
	.header .info-row .top-info {
		border: none;
		flex-wrap: wrap;
		padding: 0;
	}
	.header .info-row .info-work {
		border-bottom: 1px solid #000;
		margin: 0 0 20px;
		padding-bottom: 20px;
		width: 100%;
	}
	.header .info-row .info-work .label {
		display: block;
		margin-bottom: 10px;
	}
	.header .info-row .info-work .value {
		display: block;
	}
	.header .info-row .bottom-info {
		border-top: 1px solid #000;
		margin-top: 20px;
		padding-top: 20px;
	}
	.header .info-row .info-lang {
		border-left: none;
		margin-right: 40px;
		padding-left: 0;
		padding-right: 40px;
	}
	.header .info-row .info-phone {
		width: 100%;
	}
	.header .info-row .info-phone:first-child {
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
}
@media (max-width: 1230px) {
	.header .info-row .info-phone:not(:last-child) {
		border-bottom: 1px solid #000;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}
@media (max-width: 743.9px) {
	.header .logo {
		height: 49px;
		width: 168px;
	}
	.header .logo-col {
		padding-right: 0;
	}
}
@media (max-width: 575.9px) {
	.header .menu-col {
		max-width: 100%;
	}
}
.menu-is-hidden .menu-col {
	display: none;
}
.footer .logo {
	display: block;
	flex-shrink: 0;
	height: 116px;
	margin-bottom: 20px;
	width: 400px;
}
.footer .logo img,
.footer .logo svg {
	display: block;
	height: 100%;
	width: 100%;
}
.footer .logo-col {
	flex-shrink: 0;
	padding-right: 40px;
}
.footer .container {
	align-items: flex-start;
	display: flex;
}
.footer .menu-row {
	background-color: #000;
	color: #fff;
	padding-bottom: 40px;
	padding-top: 40px;
}
.footer .nav-col {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px -40px;
	width: 100%;
}
.footer .nav-block {
	padding: 0 20px 40px;
	width: 25%;
}
.footer .nav-title {
	color: hsla(0, 0%, 100%, 0.5);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.footer .nav-link {
	display: block;
	transition-duration: 0.2s;
	transition-property: color;
	width: fit-content;
}
.footer .nav-link:hover {
	color: #ffc3a1;
}
.footer .nav-link:not(:last-child) {
	margin-bottom: 20px;
}
.footer .socials-list {
	align-items: center;
	display: flex;
	margin: -10px;
}
.footer .social-link {
	align-items: center;
	border-radius: 5px;
	display: flex;
	flex-shrink: 0;
	height: 40px;
	justify-content: center;
	margin: 10px;
	width: 40px;
}
.footer .social-link img,
.footer .social-link svg {
	display: block;
	max-height: 100%;
	max-width: 100%;
}
.footer .bottom-row {
	background-color: #000;
	color: #fff;
	font-size: 16px;
	padding-bottom: 40px;
	padding-top: 40px;
}
.footer .bottom-row .container {
	justify-content: space-between;
}
.footer .bottom-row a {
	transition-duration: 0.2s;
	transition-property: color;
}
.footer .bottom-row a:hover {
	color: #ffc3a1;
}
@media (max-width: 1200px) {
	.footer .container {
		flex-wrap: wrap;
	}
	.footer .logo-col {
		align-items: flex-start;
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;
		padding-right: 0;
		width: 100%;
	}
	.footer .logo {
		height: 90px;
		margin: 0;
		width: 312px;
	}
}
@media (max-width: 992px) {
	.footer .nav-block {
		padding-top: 0;
		width: 50%;
	}
	.footer .nav-col {
		margin-top: 0;
	}
}
@media (max-width: 743.9px) {
	.footer .nav-block {
		width: 100%;
	}
	.footer .logo-col {
		display: block;
	}
	.footer .logo {
		margin-bottom: 40px;
	}
}
@media (max-width: 575.9px) {
	.footer .bottom-row .container {
		display: block;
	}
	.footer .bottom-row {
		padding-bottom: 20px;
		padding-top: 20px;
	}
	.footer .copy {
		margin-bottom: 20px;
	}
	.footer .logo {
		height: 79px;
		width: 272px;
	}
}
.section-textographic h1 {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 72px;
	text-transform: uppercase;
}
.section-textographic h1:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 575.9px) {
	.section-textographic h1 {
		color: #000;
		font-size: 30px;
		font-weight: 600;
		line-height: 45px;
	}
	.section-textographic h1:not(:last-child) {
		margin-bottom: 20px;
	}
}
.section-textographic h2 {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px;
}
.section-textographic h2:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 575.9px) {
	.section-textographic h2 {
		color: #000;
		font-size: 30px;
		font-weight: 600;
		line-height: 45px;
	}
	.section-textographic h2:not(:last-child) {
		margin-bottom: 20px;
	}
}
.section-textographic h3 {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 54px;
}
.section-textographic h3:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 575.9px) {
	.section-textographic h3 {
		color: #000;
		font-size: 28px;
		font-weight: 600;
		line-height: 42px;
	}
	.section-textographic h3:not(:last-child) {
		margin-bottom: 20px;
	}
}
.section-textographic h4 {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
}
.section-textographic h4:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 575.9px) {
	.section-textographic h4 {
		color: #000;
		font-size: 24px;
		font-weight: 600;
		line-height: 36px;
	}
	.section-textographic h4:not(:last-child) {
		margin-bottom: 20px;
	}
}
.section-textographic h5 {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 42px;
}
.section-textographic h5:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 575.9px) {
	.section-textographic h5 {
		color: #000;
		font-size: 20px;
		font-weight: 600;
		line-height: 30px;
	}
	.section-textographic h5:not(:last-child) {
		margin-bottom: 20px;
	}
}
.section-textographic h6 {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 36px;
}
.section-textographic h6:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 575.9px) {
	.section-textographic h6 {
		color: #000;
		font-size: 18px;
		font-weight: 600;
		line-height: 27px;
	}
	.section-textographic h6:not(:last-child) {
		margin-bottom: 20px;
	}
}
.section-textographic p {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.section-textographic p:not(:last-child) {
	margin-bottom: 20px;
}
.section-textographic a {
	color: #000;
	cursor: pointer;
	font-family: Roboto, serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 17px;
	text-decoration-line: underline;
	transition-duration: 0.2s;
	transition-property: opacity;
}
.section-textographic a:hover {
	opacity: 0.6;
}
.section-textographic .textographic-review {
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 10px;
	display: flex;
	padding: 20px 40px;
}
.section-textographic .textographic-review .img {
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	margin-right: 40px;
}
.section-textographic .textographic-review .img img {
	height: 155px;
	object-fit: cover;
	width: 155px;
}
.section-textographic .textographic-review .quote {
	margin: 33.5px 0;
	position: relative;
}
.section-textographic .textographic-review .quote blockquote {
	color: #000;
	font-family: "Noto Serif", serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 27px;
}
.section-textographic .textographic-review .quote .author {
	color: rgba(0, 0, 0, 0.8);
	display: block;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-top: 10px;
}
@media (max-width: 575.9px) {
	.section-textographic .textographic-review {
		align-items: flex-start;
		display: flex;
		flex-direction: column;
	}
	.section-textographic .textographic-review .img {
		margin-right: 40px;
	}
	.section-textographic .textographic-review .quote {
		margin-bottom: 0;
		padding-left: 0;
		padding-top: 61px;
	}
}
.section-textographic .textographic-accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.section-textographic .textographic-accordion .accord-header {
	align-items: center;
	color: #000;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	font-family: "Noto Serif", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 36px;
	padding-right: 80px;
	position: relative;
	width: 100%;
}
.section-textographic .textographic-accordion .accord-header:after {
	align-items: center;
	background-image: url(../img/svg/arrow-orange.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: "";
	display: flex;
	flex-shrink: 0;
	height: 17px;
	pointer-events: none;
	position: absolute;
	right: 50px;
	transform: rotate(0);
	transition-duration: 0.2s;
	transition-property: transform;
	width: 10px;
	will-change: transform;
}
.section-textographic .textographic-accordion .accord-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	will-change: max-height;
}
.section-textographic .textographic-accordion .accord-body .accord-content {
	padding-top: 40px;
}
.section-textographic
	.textographic-accordion
	.accord-body
	.accord-content
	p
	+ p {
	margin-top: 20px;
}
.section-textographic .textographic-accordion.active .accord-header:after {
	transform: rotate(90deg);
}
.section-textographic .textographic-accordion:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 992px) {
	.section-textographic .textographic-accordion .accord-header {
		padding-right: 37px;
	}
	.section-textographic .textographic-accordion .accord-header:after {
		align-items: center;
		height: 100%;
		right: 5px;
	}
}
.section-textographic .video-wrapper {
	border-radius: 10px;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.section-textographic .video-wrapper video {
	width: 100%;
}
.section-textographic .video-wrapper .overlay {
	align-items: center;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
	bottom: 0;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}
.section-textographic .video-wrapper .overlay .start-btn {
	transition-duration: 0.2s;
	transition-property: opacity;
}
.section-textographic .video-wrapper .overlay .start-btn img,
.section-textographic .video-wrapper .overlay .start-btn svg {
	height: 80px !important;
	width: 80px !important;
}
.section-textographic .video-wrapper .overlay:hover .start-btn {
	opacity: 0.6;
}
.section-textographic .video-wrapper:not(:last-child) {
	margin-bottom: 40px;
}
@media (max-width: 575.9px) {
	.section-textographic .video-wrapper .overlay .start-btn img,
	.section-textographic .video-wrapper .overlay .start-btn svg {
		height: 50px !important;
		width: 50px !important;
	}
}
.section-textographic .textographic-card {
	display: flex;
	flex-direction: row;
	gap: 40px;
}
.section-textographic .textographic-card:not(:last-child) {
	margin-bottom: 40px;
}
.section-textographic .textographic-card .preview {
	width: 50%;
}
.section-textographic .textographic-card .preview img {
	border-radius: 10px;
	display: block;
	height: auto;
	object-fit: cover;
	user-select: none;
	width: 100%;
}
.section-textographic .textographic-card .preview .img-text {
	color: #767676;
	font-family: Roboto, serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	margin-top: 7px;
}
.section-textographic .textographic-card .content {
	width: 50%;
}
.section-textographic .textographic-card.textographic-card-fixed .preview {
	width: 400px;
}
.section-textographic .textographic-card.textographic-card-fixed .preview img {
	height: 400px;
	width: 400px;
}
.section-textographic .textographic-card.textographic-card-fixed .content {
	width: auto;
}
.section-textographic .textographic-card.textographic-card-reverse {
	flex-direction: row-reverse;
}
.section-textographic .textographic-card.textographic-card-column {
	flex-direction: column;
	gap: 20px;
}
.section-textographic .textographic-card.textographic-card-column .preview {
	width: 100%;
}
.section-textographic
	.textographic-card.textographic-card-column
	.preview
	.img-text {
	display: none;
}
.section-textographic
	.textographic-card.textographic-card-column
	.preview
	.img-text
	img {
	height: 100%;
}
.section-textographic .textographic-card.textographic-card-column .content {
	width: 100%;
}
.section-textographic
	.textographic-card.textographic-card-column
	.content
	img-text {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.section-textographic .textographic-card.textographic-card-preview {
	flex-direction: column;
}
.section-textographic .textographic-card.textographic-card-preview .preview {
	width: 100%;
}
.section-textographic .textographic-card.textographic-card-preview .content {
	display: none;
}
@media (max-width: 992px) {
	.section-textographic .textographic-card .preview {
		width: 322px;
	}
	.section-textographic .textographic-card .preview img {
		height: 400px;
		width: 322px;
	}
	.section-textographic .textographic-card.textographic-card-fixed .preview {
		width: 215px;
	}
	.section-textographic
		.textographic-card.textographic-card-fixed
		.preview
		img {
		height: 231px;
		width: 215px;
	}
}
@media (max-width: 575.9px) {
	.section-textographic .textographic-card,
	.section-textographic .textographic-card.textographic-card-column,
	.section-textographic .textographic-card.textographic-card-fixed,
	.section-textographic .textographic-card.textographic-card-reverse {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.section-textographic .textographic-card .preview,
	.section-textographic .textographic-card.textographic-card-column .preview,
	.section-textographic .textographic-card.textographic-card-fixed .preview,
	.section-textographic
		.textographic-card.textographic-card-reverse
		.preview {
		width: 100%;
	}
	.section-textographic .textographic-card .preview img,
	.section-textographic
		.textographic-card.textographic-card-column
		.preview
		img,
	.section-textographic
		.textographic-card.textographic-card-fixed
		.preview
		img,
	.section-textographic
		.textographic-card.textographic-card-reverse
		.preview
		img {
		height: 231px;
		width: 100%;
	}
	.section-textographic .textographic-card .content,
	.section-textographic .textographic-card.textographic-card-column .content,
	.section-textographic .textographic-card.textographic-card-fixed .content,
	.section-textographic
		.textographic-card.textographic-card-reverse
		.content {
		width: 100%;
	}
}
.section-textographic .textographic-card-box {
	--gap: 40px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: var(--gap);
	margin-bottom: 0;
}
.section-textographic .textographic-card-box:not(:last-child) {
	margin-bottom: 40px;
}
.section-textographic .textographic-card-box > .textographic-card .preview,
.section-textographic .textographic-card-box > .textographic-card .preview img {
	width: 100%;
}
.section-textographic .textographic-card-box.double > .textographic-card {
	width: calc((100% - var(--gap)) / 2);
}
.section-textographic
	.textographic-card-box.double
	> .textographic-card
	.preview
	img {
	height: 400px;
}
.section-textographic .textographic-card-box.tripple > .textographic-card {
	width: calc(33.33333% - var(--gap) * 2 / 3);
}
.section-textographic
	.textographic-card-box.tripple
	> .textographic-card
	.preview
	img {
	height: 280px;
}
.section-textographic .textographic-card-box.quadro > .textographic-card {
	width: calc(25% - var(--gap) * 3 / 4);
}
.section-textographic
	.textographic-card-box.quadro
	> .textographic-card
	.preview
	img {
	height: 250px;
}
.section-textographic .textographic-card-box.six > .textographic-card {
	width: calc(16.66667% - var(--gap) * 5 / 6);
}
.section-textographic
	.textographic-card-box.six
	> .textographic-card
	.preview
	img {
	height: 160px;
}
@media (max-width: 992px) {
	.section-textographic .textographic-card-box.double > .textographic-card {
		width: calc(50% - 20px);
	}
	.section-textographic
		.textographic-card-box.double
		> .textographic-card
		.preview
		img {
		height: 250px;
	}
	.section-textographic .textographic-card-box.tripple {
		--gap: 9.5px;
	}
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card
		.preview
		img {
		height: 231px;
	}
	.section-textographic .textographic-card-box.quadro > .textographic-card {
		width: calc(50% - 20px);
	}
	.section-textographic
		.textographic-card-box.quadro
		> .textographic-card
		.preview
		img {
		height: 250px;
	}
	.section-textographic .textographic-card-box.six {
		--gap: 40px 9.5px;
		--vertical-gap: 9.5px;
	}
	.section-textographic .textographic-card-box.six > .textographic-card {
		width: calc(33.33333% - var(--vertical-gap) * 2 / 3);
	}
	.section-textographic
		.textographic-card-box.six
		> .textographic-card
		.preview
		img {
		height: 231px;
	}
}
@media (max-width: 575.9px) {
	.section-textographic .textographic-card-box.double {
		--gap: 20px;
		gap: var(--gap);
	}
	.section-textographic .textographic-card-box.double > .textographic-card {
		width: 100%;
	}
	.section-textographic
		.textographic-card-box.double
		> .textographic-card
		.preview
		img {
		height: 250px;
	}
	.section-textographic .textographic-card-box.quadro {
		--gap: 20px;
		gap: var(--gap);
	}
	.section-textographic .textographic-card-box.quadro > .textographic-card {
		width: calc((100% - var(--gap)) / 2);
	}
	.section-textographic
		.textographic-card-box.quadro
		> .textographic-card
		.preview
		img {
		height: 155px;
	}
	.section-textographic .textographic-card-box.six,
	.section-textographic .textographic-card-box.tripple {
		--gap: 20px;
		gap: var(--gap);
	}
	.section-textographic
		.textographic-card-box.six
		> .textographic-card:nth-child(3n + 1),
	.section-textographic
		.textographic-card-box.six
		> .textographic-card:nth-child(3n + 2),
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card:nth-child(3n + 1),
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card:nth-child(3n + 2) {
		width: calc((100% - var(--gap)) / 2);
	}
	.section-textographic
		.textographic-card-box.six
		> .textographic-card:nth-child(3n + 1)
		.preview
		img,
	.section-textographic
		.textographic-card-box.six
		> .textographic-card:nth-child(3n + 2)
		.preview
		img,
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card:nth-child(3n + 1)
		.preview
		img,
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card:nth-child(3n + 2)
		.preview
		img {
		height: 155px;
	}
	.section-textographic
		.textographic-card-box.six
		> .textographic-card:nth-child(3n + 3),
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card:nth-child(3n + 3) {
		width: 100%;
	}
	.section-textographic
		.textographic-card-box.six
		> .textographic-card:nth-child(3n + 3)
		.preview
		img,
	.section-textographic
		.textographic-card-box.tripple
		> .textographic-card:nth-child(3n + 3)
		.preview
		img {
		height: 250px;
	}
}
.section-textographic .textographic-download-btn {
	align-items: center;
	border: 2px solid #ffc3a1;
	border-radius: 10px;
	display: flex;
	padding: 13px 19px;
	text-decoration: none;
	transition: background 0.3s ease;
	width: fit-content;
}
.section-textographic .textographic-download-btn .text {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 21px;
	margin-right: 10px;
}
.section-textographic .textographic-download-btn .icon {
	flex-shrink: 0;
	height: 18px;
	margin-right: 5px;
	width: 14px;
}
.section-textographic .textographic-download-btn .icon img,
.section-textographic .textographic-download-btn .icon svg {
	display: block;
	height: 100%;
	width: 100%;
}
.section-textographic .textographic-download-btn:hover {
	background-color: rgba(255, 195, 161, 0.2);
	opacity: 1;
}
.section-textographic .textographic-download-btn .file-ext {
	color: #ffc3a1;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}
.section-textographic .textographic-download-btn:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 575.9px) {
	.section-textographic .textographic-download-btn {
		justify-content: center;
		padding: 15.5px 19px;
		width: 100%;
	}
}
@media (max-width: 370px) {
	.section-textographic .textographic-download-btn {
		justify-content: center;
		padding: 5px 10px;
		width: 100%;
	}
	.section-textographic .textographic-download-btn .text {
		color: #000;
		font-size: 12px;
		font-weight: 600;
		line-height: 21px;
	}
	.section-textographic .textographic-download-btn .file-ext {
		color: #ffc3a1;
		font-size: 14px;
		font-weight: 600;
		line-height: 24px;
	}
}
.section-textographic ul li {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding-left: 20px;
	position: relative;
}
.section-textographic ul li:before {
	background-color: #ffc3a1;
	border-radius: 2px;
	content: "";
	display: block;
	height: 10px;
	left: 0;
	position: absolute;
	top: calc(50% - 5px);
	width: 10px;
}
.section-textographic ul li + li {
	margin-top: 10px;
}
.section-textographic ul:not(:last-child) {
	margin-bottom: 40px;
}
.section-textographic ol {
	counter-reset: olConunter;
}
.section-textographic ol li {
	color: #000;
	display: flex;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.section-textographic ol li:before {
	align-items: center;
	color: #ffc3a1;
	content: counter(olConunter) ".";
	counter-increment: olConunter;
	display: inline-flex;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	justify-content: flex-start;
	line-height: 24px;
	margin-right: 10px;
}
.section-textographic ol li + li {
	margin-top: 10px;
}
.section-textographic ol:not(:last-child) {
	margin-bottom: 40px;
}
.section-textographic .table-box {
	overflow-x: auto;
}
.section-textographic .table-box table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}
.section-textographic .table-box table td,
.section-textographic .table-box table th {
	border: 1px solid #ddd;
	text-align: start;
	width: 426px;
}
.section-textographic .table-box table .title {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 27px;
}
.section-textographic .table-box table .job-title {
	color: rgba(0, 0, 0, 0.5);
}
.section-textographic .table-box table .job-title,
.section-textographic .table-box table .tel {
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.section-textographic .table-box table .tel {
	color: #000;
}
.section-textographic .table-box table:not(:last-child) {
	margin-bottom: 40px;
}
.section-textographic .table-box table tr td,
.section-textographic .table-box table tr th {
	padding: 10px 20px;
}
.section-textographic .table-box table tr td {
	vertical-align: top;
}
.section-textographic .table-box table th {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 36px;
}
.section-textographic .table-box table td {
	color: #000;
	font-family:
		Roboto Flex,
		sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 10px 20px;
}
.section-textographic .table-box:not(:last-child) {
	margin-bottom: 40px;
}
.section-employee .block-employee-info .col-info .section-employees .name,
.section-employees .form,
.section-employees .section-employee .block-employee-info .col-info .name,
.section-employees .section-title {
	margin-bottom: 40px;
}
.section-employees .form .tags-filter {
	flex-wrap: wrap;
	gap: 10px;
	overflow: initial;
}
.section-employees .form .tags-filter .tag-item {
	margin: 0;
}
.section-employees .block-employees:not(:last-child) {
	margin-bottom: 40px;
}
.section-employees .block-employees .block-title {
	font-size: 30px;
	margin-bottom: 40px;
}
.section-employees .cards-employees {
	margin: 0 -24px -30px;
}
.section-employees .cards-employees .col {
	max-width: 25%;
	padding: 0 24px 30px;
}
@media (max-width: 1200px) {
	.section-employees .cards-employees {
		margin: 0 -20px -30px;
	}
	.section-employees .cards-employees .col {
		max-width: 33.3333333333%;
		padding: 0 20px 30px;
	}
}
@media (max-width: 992px) {
	.section-employees .cards-employees .col {
		max-width: 50%;
	}
}
@media (max-width: 479.9px) {
	.section-employees .cards-employees {
		margin: 0 -7.5px -30px;
	}
	.section-employees .cards-employees .col {
		padding: 0 7.5px 30px;
	}
}
@media (max-width: 374.9px) {
	.section-employees .cards-employees .col {
		max-width: 100%;
	}
}
.section-employee
	.block-employee-info
	.col-info
	.section-fest-info
	.block-fest-schedule
	.name,
.section-employee .block-employee-info .col-info .section-schedule .name,
.section-fest-info
	.block-fest-schedule
	.section-employee
	.block-employee-info
	.col-info
	.name,
.section-fest-info .block-fest-schedule .section-title,
.section-fest-info
	.section-employee
	.block-employee-info
	.col-info
	.block-fest-schedule
	.name,
.section-schedule .section-employee .block-employee-info .col-info .name,
.section-schedule .section-title {
	margin-bottom: 30px;
	text-align: center;
}
.section-fest-info .block-fest-schedule .section-head,
.section-schedule .section-head {
	align-items: center;
	display: flex;
	margin-bottom: 30px;
}
.section-employee
	.block-employee-info
	.col-info
	.section-fest-info
	.block-fest-schedule
	.section-head
	.name,
.section-employee
	.block-employee-info
	.col-info
	.section-schedule
	.section-head
	.name,
.section-fest-info
	.block-fest-schedule
	.section-head
	.section-employee
	.block-employee-info
	.col-info
	.name,
.section-fest-info .block-fest-schedule .section-head .section-title,
.section-fest-info
	.section-employee
	.block-employee-info
	.col-info
	.block-fest-schedule
	.section-head
	.name,
.section-schedule
	.section-head
	.section-employee
	.block-employee-info
	.col-info
	.name,
.section-schedule .section-head .section-title {
	margin: 0;
	text-align: left;
}
.section-fest-info .block-fest-schedule .download-btn,
.section-schedule .download-btn {
	align-items: center;
	border: 2px solid #ffc3a1;
	border-radius: 10px;
	display: flex;
	flex-shrink: 0;
	font-weight: 600;
	margin-left: 20px;
	padding: 13px 18px;
	transition-duration: 0.2s;
	transition-property: background-color;
}
.section-fest-info .block-fest-schedule .download-btn:hover,
.section-schedule .download-btn:hover {
	background-color: #fff4ee;
}
.section-fest-info .block-fest-schedule .download-btn .ico-wrap,
.section-schedule .download-btn .ico-wrap {
	color: #ffc3a1;
	display: flex;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 600;
	margin-left: 10px;
}
.section-fest-info .block-fest-schedule .download-btn .ico-wrap img,
.section-fest-info .block-fest-schedule .download-btn .ico-wrap svg,
.section-schedule .download-btn .ico-wrap img,
.section-schedule .download-btn .ico-wrap svg {
	display: block;
	flex-shrink: 0;
	height: 18px;
	margin-right: 5px;
	width: 14px;
}
.section-fest-info .block-fest-schedule .dates-filter,
.section-schedule .dates-filter {
	align-items: center;
	display: flex;
}
.section-fest-info .block-fest-schedule .mounth-col,
.section-schedule .mounth-col {
	flex-shrink: 0;
	padding-right: 40px;
	width: 220px;
}
.section-fest-info .block-fest-schedule .days-col,
.section-schedule .days-col {
	padding-top: 20px;
	width: calc(100% - 220px);
}
.section-fest-info .block-fest-schedule .reset-date,
.section-schedule .reset-date {
	color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 2px;
	position: relative;
	width: fit-content;
}
.section-fest-info .block-fest-schedule .reset-date:not(.visible),
.section-schedule .reset-date:not(.visible) {
	opacity: 0;
	pointer-events: none;
}
.section-fest-info .block-fest-schedule .tags-filter,
.section-schedule .tags-filter {
	margin-bottom: 10px;
}
.section-fest-info .block-fest-schedule .slide-item,
.section-schedule .slide-item {
	padding-bottom: 1px;
	padding-top: 1px;
}
.section-fest-info .block-fest-schedule .days-slider .slider,
.section-schedule .days-slider .slider {
	padding-left: 47px;
	padding-right: 47px;
}
.section-fest-info .block-fest-schedule .day-item,
.section-schedule .day-item {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 60px;
	justify-content: center;
	min-width: 51px;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.section-fest-info .block-fest-schedule .day-item .label:before,
.section-schedule .day-item .label:before {
	background-color: #f7f7f7;
	border: 1px solid #eee;
	border-radius: 10px;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition-duration: 0.2s;
	transition-property: background-color, border-color;
	width: 100%;
	z-index: -1;
}
.section-fest-info .block-fest-schedule .day-item .label,
.section-schedule .day-item .label {
	display: block;
}
.section-fest-info .block-fest-schedule .day-item .day,
.section-schedule .day-item .day {
	display: block;
	font-size: 12px;
	margin-bottom: -8px;
}
.section-fest-info .block-fest-schedule .day-item .day-num,
.section-schedule .day-item .day-num {
	display: block;
	font-size: 24px;
}
.section-fest-info .block-fest-schedule .day-item input:checked ~ .label:before,
.section-schedule .day-item input:checked ~ .label:before {
	background-color: #ffc3a1;
	border-color: #ffc3a1;
}
.section-fest-info .block-fest-schedule .month-div,
.section-schedule .month-div {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 5px 10px;
	text-align: center;
}
.section-fest-info .block-fest-schedule .month-div .year,
.section-schedule .month-div .year {
	font-size: 12px;
	margin-bottom: -5px;
}
.section-fest-info .block-fest-schedule .month-div .month,
.section-schedule .month-div .month {
	font-size: 24px;
}
.section-fest-info .block-fest-schedule .day-item:hover .label:before,
.section-schedule .day-item:hover .label:before {
	border-color: #ffc3a1;
	box-shadow: inset 0 0 0 1px #ffc3a1;
}
.section-fest-info .block-fest-schedule .day-item.weekend .day,
.section-schedule .day-item.weekend .day {
	color: #db3545;
}
.section-fest-info .block-fest-schedule .day-item.no-tickets .label:before,
.section-schedule .day-item.no-tickets .label:before {
	background-color: rgba(0, 0, 0, 0);
	border-color: rgba(0, 0, 0, 0);
}
.section-fest-info
	.block-fest-schedule
	.day-item.no-tickets:hover
	.label:before,
.section-schedule .day-item.no-tickets:hover .label:before {
	background-color: #f7f7f7;
}
.section-fest-info .block-fest-schedule .no-posts.no-posts,
.section-schedule .no-posts.no-posts {
	color: rgba(0, 0, 0, 0.2);
	cursor: auto;
}
.section-fest-info .block-fest-schedule .no-posts.no-posts .label:before,
.section-schedule .no-posts.no-posts .label:before,
.section-schedule .no-posts.no-posts:hover .label:before {
	background-color: rgba(0, 0, 0, 0);
	border-color: rgba(0, 0, 0, 0);
	box-shadow: none;
}
.section-fest-info .block-fest-schedule .cards-list,
.section-schedule .cards-list {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	margin-bottom: 40px;
	margin-top: 40px;
	padding-bottom: 40px;
	padding-top: 40px;
}
.section-fest-info .block-fest-schedule .show-card,
.section-schedule .show-card {
	border: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
	overflow: hidden;
}
.section-fest-info .block-fest-schedule .show-card:not(:last-child),
.section-schedule .show-card:not(:last-child) {
	margin-bottom: 40px;
}
.section-fest-info .block-fest-schedule .show-card .date-col,
.section-schedule .show-card .date-col {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	justify-content: center;
	padding: 20px;
	width: 233px;
}
.cards-upcoming
	.tags
	.section-fest-info
	.block-fest-schedule
	.show-card
	.date-col
	.text,
.cards-upcoming .tags .section-schedule .show-card .date-col .text,
.section-fest-info .block-fest-schedule .show-card .date-col .btn,
.section-fest-info
	.block-fest-schedule
	.show-card
	.date-col
	.cards-upcoming
	.tags
	.text,
.section-fest-info
	.block-fest-schedule
	.show-card
	.date-col
	.section-spectacle-info
	.block-spectacle-summary
	.coupon,
.section-fest-info
	.block-fest-schedule
	.show-card
	.date-col
	.section-spectacle-info
	.block-spectacle-summary
	.tag,
.section-fest-info
	.cards-upcoming
	.tags
	.block-fest-schedule
	.show-card
	.date-col
	.text,
.section-fest-info
	.section-spectacle-info
	.block-spectacle-summary
	.block-fest-schedule
	.show-card
	.date-col
	.coupon,
.section-fest-info
	.section-spectacle-info
	.block-spectacle-summary
	.block-fest-schedule
	.show-card
	.date-col
	.tag,
.section-schedule .show-card .date-col .btn,
.section-schedule .show-card .date-col .cards-upcoming .tags .text,
.section-schedule
	.show-card
	.date-col
	.section-spectacle-info
	.block-spectacle-summary
	.coupon,
.section-schedule
	.show-card
	.date-col
	.section-spectacle-info
	.block-spectacle-summary
	.tag,
.section-spectacle-info
	.block-spectacle-summary
	.section-fest-info
	.block-fest-schedule
	.show-card
	.date-col
	.coupon,
.section-spectacle-info
	.block-spectacle-summary
	.section-fest-info
	.block-fest-schedule
	.show-card
	.date-col
	.tag,
.section-spectacle-info
	.block-spectacle-summary
	.section-schedule
	.show-card
	.date-col
	.coupon,
.section-spectacle-info
	.block-spectacle-summary
	.section-schedule
	.show-card
	.date-col
	.tag {
	width: 100%;
}
.section-fest-info .block-fest-schedule .show-card .img-col,
.section-schedule .show-card .img-col {
	flex-shrink: 0;
	position: relative;
	width: 400px;
}
.section-fest-info .block-fest-schedule .show-card .img-col img,
.section-schedule .show-card .img-col img {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-fest-info .block-fest-schedule .show-card .content-col,
.section-schedule .show-card .content-col {
	align-items: stretch;
	border-left: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px 40px 34px;
	width: 100%;
}
.section-fest-info .block-fest-schedule .show-card .content-col .mob-time,
.section-schedule .show-card .content-col .mob-time {
	display: none;
}
.section-fest-info .block-fest-schedule .show-card .content-col .time,
.section-schedule .show-card .content-col .time {
	font-size: 12px;
	width: 100%;
}
.section-fest-info .block-fest-schedule .show-card .content-col .desktop-time,
.section-schedule .show-card .content-col .desktop-time {
	margin-bottom: 20px;
}
.section-fest-info .block-fest-schedule .show-card .content-col .icons-list,
.section-schedule .show-card .content-col .icons-list {
	align-items: center;
	display: flex;
}
.section-fest-info .block-fest-schedule .show-card .card-title,
.section-schedule .show-card .card-title {
	font-size: 30px;
	margin-bottom: 5px;
}
.section-fest-info .block-fest-schedule .show-card .card-title-wrap,
.section-schedule .show-card .card-title-wrap {
	min-height: 132px;
}
.section-fest-info .block-fest-schedule .show-card .canceled-btn,
.section-schedule .show-card .canceled-btn {
	color: #db3545;
}
.section-fest-info .block-fest-schedule .show-card .canceled-btn .tooltip-btn,
.section-schedule .show-card .canceled-btn .tooltip-btn {
	margin-left: 20px;
}
.section-fest-info .block-fest-schedule .spec-info-list,
.section-schedule .spec-info-list {
	padding-top: 20px;
}
.section-fest-info .block-fest-schedule .show-card.disabled .date-col,
.section-schedule .show-card.disabled .date-col {
	background-color: #eee;
}
.section-fest-info .block-fest-schedule .show-card.disabled .content-body,
.section-fest-info .block-fest-schedule .show-card.disabled .img-col img,
.section-fest-info .block-fest-schedule .show-card.disabled .spec-date-wrap,
.section-fest-info .block-fest-schedule .show-card.disabled .spec-info-list,
.section-schedule .show-card.disabled .content-body,
.section-schedule .show-card.disabled .img-col img,
.section-schedule .show-card.disabled .spec-date-wrap,
.section-schedule .show-card.disabled .spec-info-list {
	opacity: 0.6;
}
.section-fest-info .block-fest-schedule .card-tags-list,
.section-schedule .card-tags-list {
	padding-bottom: 20px;
}
.section-fest-info .block-fest-schedule .spec-date-wrap,
.section-schedule .spec-date-wrap {
	margin-bottom: 10px;
}
@media (max-width: 1200px) {
	.section-fest-info .block-fest-schedule .show-card .img-col,
	.section-schedule .show-card .img-col {
		width: 300px;
	}
}
@media (max-width: 992px) {
	.section-fest-info .block-fest-schedule .dates-filter,
	.section-schedule .dates-filter {
		display: block;
	}
	.section-fest-info .block-fest-schedule .mounth-col,
	.section-schedule .mounth-col {
		padding-right: 0;
		width: 100%;
	}
	.section-fest-info .block-fest-schedule .days-col,
	.section-schedule .days-col {
		width: 100%;
	}
	.section-fest-info .block-fest-schedule .show-card,
	.section-schedule .show-card {
		flex-direction: column;
	}
	.section-fest-info .block-fest-schedule .show-card .content-col,
	.section-fest-info .block-fest-schedule .show-card .date-col,
	.section-fest-info .block-fest-schedule .show-card .img-col,
	.section-schedule .show-card .content-col,
	.section-schedule .show-card .date-col,
	.section-schedule .show-card .img-col {
		padding: 0;
		width: 100%;
	}
	.section-fest-info .block-fest-schedule .show-card .content-col,
	.section-schedule .show-card .content-col {
		border-left: none;
		order: 1;
	}
	.section-fest-info .block-fest-schedule .show-card .img-col,
	.section-schedule .show-card .img-col {
		height: 400px;
		order: 2;
	}
	.section-fest-info .block-fest-schedule .show-card .date-col,
	.section-schedule .show-card .date-col {
		order: 3;
	}
	.section-fest-info .block-fest-schedule .show-card .content-col,
	.section-schedule .show-card .content-col {
		padding: 20px;
	}
	.section-fest-info .block-fest-schedule .show-card .card-title-wrap,
	.section-schedule .show-card .card-title-wrap {
		min-height: 140px;
	}
	.section-fest-info .block-fest-schedule .show-card .date-col,
	.section-schedule .show-card .date-col {
		align-items: center;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 10px 20px;
	}
	.cards-upcoming
		.tags
		.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.text,
	.cards-upcoming .tags .section-schedule .show-card .date-col .text,
	.section-fest-info .block-fest-schedule .show-card .date-col .btn,
	.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.cards-upcoming
		.tags
		.text,
	.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-fest-info
		.cards-upcoming
		.tags
		.block-fest-schedule
		.show-card
		.date-col
		.text,
	.section-fest-info
		.section-spectacle-info
		.block-spectacle-summary
		.block-fest-schedule
		.show-card
		.date-col
		.coupon,
	.section-fest-info
		.section-spectacle-info
		.block-spectacle-summary
		.block-fest-schedule
		.show-card
		.date-col
		.tag,
	.section-schedule .show-card .date-col .btn,
	.section-schedule .show-card .date-col .cards-upcoming .tags .text,
	.section-schedule
		.show-card
		.date-col
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.section-schedule
		.show-card
		.date-col
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.section-schedule
		.show-card
		.date-col
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.section-schedule
		.show-card
		.date-col
		.tag {
		min-width: 193px;
		width: auto;
	}
	.section-fest-info .block-fest-schedule .show-card .spec-date-wrap,
	.section-schedule .show-card .spec-date-wrap {
		margin-bottom: 0;
		width: auto;
	}
	.section-fest-info .block-fest-schedule .show-card .spec-date-wrap .point,
	.section-schedule .show-card .spec-date-wrap .point {
		margin-left: 15px;
		margin-right: 15px;
	}
}
@media (max-width: 743.9px) {
	.section-fest-info .block-fest-schedule .show-card .img-col,
	.section-schedule .show-card .img-col {
		height: 312px;
	}
	.section-fest-info
		.block-fest-schedule
		.show-card
		.content-col
		.desktop-time,
	.section-schedule .show-card .content-col .desktop-time {
		display: none;
	}
	.section-fest-info .block-fest-schedule .show-card .content-col .mob-time,
	.section-schedule .show-card .content-col .mob-time {
		display: block;
	}
	.section-fest-info
		.block-fest-schedule
		.show-card
		.card-tags-list
		.icons-list,
	.section-schedule .show-card .card-tags-list .icons-list {
		padding-top: 15px;
		width: 100%;
	}
	.section-fest-info .block-fest-schedule .show-card .date-col,
	.section-schedule .show-card .date-col {
		display: block;
	}
	.section-fest-info
		.block-fest-schedule
		.show-card
		.date-col
		.spec-date-wrap,
	.section-schedule .show-card .date-col .spec-date-wrap {
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
		max-width: 166px;
		width: 100%;
	}
}
@media (max-width: 575.9px) {
	.section-fest-info .block-fest-schedule .section-head,
	.section-schedule .section-head {
		display: block;
	}
	.section-employee
		.block-employee-info
		.col-info
		.section-fest-info
		.block-fest-schedule
		.section-head
		.name,
	.section-employee
		.block-employee-info
		.col-info
		.section-schedule
		.section-head
		.name,
	.section-fest-info
		.block-fest-schedule
		.section-head
		.section-employee
		.block-employee-info
		.col-info
		.name,
	.section-fest-info .block-fest-schedule .section-head .section-title,
	.section-fest-info
		.section-employee
		.block-employee-info
		.col-info
		.block-fest-schedule
		.section-head
		.name,
	.section-schedule
		.section-head
		.section-employee
		.block-employee-info
		.col-info
		.name,
	.section-schedule .section-head .section-title {
		margin-bottom: 10px;
	}
	.section-fest-info .block-fest-schedule .download-btn,
	.section-schedule .download-btn {
		justify-content: space-between;
		margin-left: 0;
	}
}
.section-hero {
	color: #fff;
	overflow: hidden;
	padding-bottom: 0;
	padding-top: 0;
}
.section-hero .slide-item {
	align-items: flex-end;
	display: flex;
	height: 700px;
	position: relative;
}
.section-hero .slide-bg {
	background-color: red;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-hero .slide-bg:after {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 47.07%, #000 86.07%),
		rgba(0, 0, 0, 0);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-hero .slide-bg img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-hero .container {
	display: flex;
	padding-bottom: 40px;
}
.section-hero .title-col {
	flex-shrink: 0;
	padding-right: 40px;
	width: 51.56%;
}
.section-hero .dates-col {
	padding-right: 20px;
	width: 100%;
}
.section-hero .dots-col {
	flex-shrink: 0;
	width: 180px;
}
.section-hero .slide-title {
	color: inherit;
	font-size: 48px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.section-hero .person {
	color: hsla(0, 0%, 100%, 0.5);
	font-size: 16px;
	margin-bottom: 10px;
}
.section-hero .subtitle {
	font-size: 16px;
}
.section-hero .dates-col {
	align-items: flex-end;
	display: flex;
}
.section-hero .calendar-list {
	display: flex;
	margin: 0 -5px -10px;
}
.section-hero .calendar-col {
	padding: 0 5px 10px;
}
.section-hero .btn-wrap {
	padding-left: 20px;
}
.cards-upcoming .tags .section-hero .btn-wrap .text,
.section-hero .btn-wrap .btn,
.section-hero .btn-wrap .cards-upcoming .tags .text,
.section-hero
	.btn-wrap
	.section-spectacle-info
	.block-spectacle-summary
	.coupon,
.section-hero .btn-wrap .section-spectacle-info .block-spectacle-summary .tag,
.section-spectacle-info
	.block-spectacle-summary
	.section-hero
	.btn-wrap
	.coupon,
.section-spectacle-info .block-spectacle-summary .section-hero .btn-wrap .tag {
	min-width: 207px;
}
.section-hero .calendar-item {
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 0 9px 4px;
}
.section-hero .calendar-item .date-wrap {
	align-items: center;
	border-bottom: 1px solid #fff;
	display: flex;
	margin-bottom: -1px;
	padding-left: 2.5px;
	padding-right: 2.5px;
}
.section-hero .calendar-item .date {
	padding-left: 5px;
}
.section-hero .calendar-item .day {
	font-size: 30px;
}
.section-hero .calendar-item .week-day {
	color: hsla(0, 0%, 100%, 0.5);
	display: block;
	font-size: 12px;
	margin-bottom: -5px;
}
.section-hero .calendar-item .mounth {
	display: block;
	font-size: 12px;
}
.section-hero .calendar-item .time {
	font-size: 12px;
	padding-top: 5px;
	text-align: center;
}
.section-hero .splide__pagination {
	bottom: 40px;
	left: auto;
	margin-bottom: -4px;
	padding: 0;
	position: absolute;
	right: calc(50% - 640px);
	width: fit-content;
	z-index: 3;
}
.section-hero .splide__pagination li:not(.dots-arrow) {
	margin-bottom: 0;
}
@media (max-width: 1320px) {
	.section-hero .splide__pagination {
		right: 40px;
	}
}
@media (max-width: 743.9px) {
	.section-hero .splide__pagination {
		right: 20px;
	}
}
@media (max-width: 1320px) {
	.section-hero .splide__pagination {
		right: 29px;
	}
}
@media (max-width: 743.9px) {
	.section-hero .splide__pagination {
		right: 9px;
	}
}
@media (max-width: 1270px) {
	.section-hero .container {
		display: block;
	}
	.section-hero .title-col {
		margin-bottom: 20px;
		padding-right: 0;
		width: 100%;
	}
	.section-hero .dots-col {
		display: none;
	}
	.section-hero .dates-col {
		align-items: center;
		padding-right: 0;
		width: 100%;
	}
	.section-hero .calendar-item {
		align-items: center;
		display: flex;
		padding-bottom: 0;
		padding-top: 0;
	}
	.section-hero .calendar-item .date-wrap {
		border-bottom: none;
		border-right: 1px solid #fff;
		margin-right: 10px;
		padding: 0 10px 0 0;
	}
	.section-hero .calendar-item .time {
		padding-top: 0;
	}
	.section-hero .calendar-item .date {
		padding-left: 10px;
	}
}
@media (max-width: 992px) {
	.section-hero .slide-item {
		height: 744px;
	}
	.section-hero .btn-wrap {
		padding-left: 10px;
	}
	.cards-upcoming .tags .section-hero .btn-wrap .text,
	.section-hero .btn-wrap .btn,
	.section-hero .btn-wrap .cards-upcoming .tags .text,
	.section-hero
		.btn-wrap
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.section-hero
		.btn-wrap
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.section-hero
		.btn-wrap
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.section-hero
		.btn-wrap
		.tag {
		min-width: 180px;
	}
}
@media (max-width: 743.9px) {
	.section-hero .splide__pagination {
		margin-bottom: 0;
	}
	.section-hero .calendar-list {
		display: none;
	}
	.section-hero .btn-wrap {
		padding-left: 0;
	}
	.section-hero .dots-arrow {
		height: 15px;
		width: 15px;
	}
	.cards-upcoming .tags .section-hero .btn-wrap .text,
	.section-hero .btn-wrap .btn,
	.section-hero .btn-wrap .cards-upcoming .tags .text,
	.section-hero
		.btn-wrap
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.section-hero
		.btn-wrap
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.section-hero
		.btn-wrap
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.section-hero
		.btn-wrap
		.tag {
		min-width: 147.5px;
	}
}
@media (max-width: 575.9px) {
	.section-hero .slide-title {
		font-size: 30px;
		margin-bottom: 0;
	}
	.section-hero .person,
	.section-hero .subtitle {
		display: none;
	}
	.section-hero .slide-item {
		height: 548px;
	}
}
.section-employee .block-employee,
.section-employee .block-title:not(:last-child) {
	margin-bottom: 40px;
}
.section-employee a.block-title {
	align-items: center;
	display: flex;
	transition: opacity 0.3s ease;
}
.section-employee a.block-title .icon {
	display: flex;
	flex-shrink: 0;
	margin-left: 10px;
}
.section-employee a.block-title:hover {
	opacity: 0.5;
}
.section-employee .block-employee-info {
	align-items: center;
	display: flex;
}
.section-employee .block-employee-info .col-img {
	align-items: center;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	height: 300px;
	justify-content: center;
	margin-right: 40px;
	width: 300px;
}
.section-employee .block-employee-info .col-img img {
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-employee .block-employee-info .col-img img.img-empty {
	border-radius: 0;
	height: 102px;
	width: 112px;
}
.section-employee .block-employee-info .col-info .name {
	margin-bottom: 20px;
	text-transform: capitalize;
}
@media (max-width: 992px) {
	.section-employee .block-employee-info {
		align-items: flex-start;
		flex-direction: column;
	}
	.section-employee .block-employee-info .col-img {
		margin-bottom: 40px;
		margin-right: 0;
	}
}
.section-employee .block-employee-upcoming .cards-upcoming {
	margin: 0 -20px -40px;
}
.section-employee .block-employee-upcoming .cards-upcoming .col {
	max-width: 33.3333333333%;
	padding: 0 20px 40px;
}
@media (max-width: 1200px) {
	.section-employee .block-employee-upcoming .cards-upcoming .col {
		max-width: 50%;
	}
	.section-employee
		.block-employee-upcoming
		.cards-upcoming
		.col:nth-child(n + 3) {
		display: none;
	}
}
@media (max-width: 743.9px) {
	.section-employee .block-employee-upcoming .cards-upcoming .col {
		max-width: 100%;
	}
}
.section-employee .block-employee-summary .list li:first-child {
	border-top: none;
	font-size: 20px;
	padding-left: 0;
	padding-top: 0;
}
.section-employee .block-employee-summary .list li:first-child:before {
	content: none;
}
.section-employee .block-employee-info .col-info .section-repertoire .name,
.section-repertoire .form,
.section-repertoire .section-employee .block-employee-info .col-info .name,
.section-repertoire .section-title {
	margin-bottom: 40px;
}
.section-repertoire .cards-upcoming {
	margin: 0 -20px -40px;
}
.section-repertoire .cards-upcoming .col {
	max-width: 33.3333333333%;
	padding: 0 20px 40px;
}
.section-repertoire .tags-filter {
	padding-top: 0;
}
@media (max-width: 1200px) {
	.section-repertoire .cards-upcoming .col {
		max-width: 50%;
	}
}
@media (max-width: 743.9px) {
	.section-repertoire .cards-upcoming .col {
		max-width: 100%;
	}
}
.section-spectacle-offer {
	display: flex;
	flex-direction: column;
	min-height: 600px;
	position: relative;
}
.section-spectacle-offer .section-bg img {
	object-position: center;
}
.section-spectacle-offer .section-bg:after {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.7),
		rgba(0, 0, 0, 0) 20.62%,
		rgba(0, 0, 0, 0) 47.07%,
		#000 86.07%
	);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-spectacle-offer .breadcrumbs {
	padding-top: 0;
}
.section-spectacle-offer .breadcrumbs .breadcrumbs-item:after {
	border-color: #fff;
}
.section-spectacle-offer .breadcrumbs .breadcrumbs-link {
	color: #fff;
}
.section-spectacle-offer > .container {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.section-spectacle-offer .summary {
	color: #fff;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	margin-top: auto;
}
.section-spectacle-offer .summary > :not(:last-child) {
	margin-bottom: 10px;
}
.section-spectacle-offer .author {
	opacity: 0.5;
}
.section-spectacle-offer .info {
	align-items: flex-end;
	display: flex;
}
.section-spectacle-offer .duration {
	color: hsla(0, 0%, 100%, 0.7);
	display: flex;
	margin-left: 40px;
	white-space: nowrap;
}
.section-spectacle-offer .duration > :not(:last-child) {
	margin-right: 30px;
}
@media (max-width: 992px) {
	.section-spectacle-offer {
		min-height: 744px;
	}
}
@media (max-width: 575.9px) {
	.section-spectacle-offer {
		min-height: 550px;
	}
	.section-spectacle-offer .info {
		align-items: flex-start;
		flex-direction: column;
	}
	.section-spectacle-offer .duration {
		flex-wrap: wrap;
		margin: 10px -15px -15px;
	}
	.section-spectacle-offer .duration > * {
		padding: 0 15px 15px;
	}
	.section-spectacle-offer .duration > :not(:last-child) {
		margin-right: 0;
	}
}
.section-spectacle-info {
	padding-top: 0;
}
.section-spectacle-info .block-spectacle {
	border-bottom: 1px solid #ddd;
	padding: 40px 0;
}
.section-spectacle-info .block-spectacle:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.section-spectacle-info .block-title {
	font-size: 30px;
	margin-bottom: 40px;
}
.section-employee
	.block-employee-upcoming
	.section-spectacle-info
	.block-spectacle-summary
	.cards-upcoming,
.section-employees
	.section-spectacle-info
	.block-spectacle-summary
	.cards-employees,
.section-repertoire
	.section-spectacle-info
	.block-spectacle-summary
	.cards-upcoming,
.section-spectacle-creators
	.section-spectacle-info
	.block-spectacle-summary
	.cards-employees,
.section-spectacle-creators
	.section-spectacle-info
	.block-spectacle-summary
	.cards-press,
.section-spectacle-info
	.block-spectacle-schedule
	.block-spectacle-summary
	.cards-schedule,
.section-spectacle-info
	.block-spectacle-summary
	.block-spectacle-schedule
	.cards-schedule,
.section-spectacle-info .block-spectacle-summary .cards-partners-logos,
.section-spectacle-info .block-spectacle-summary .row,
.section-spectacle-info
	.block-spectacle-summary
	.section-employee
	.block-employee-upcoming
	.cards-upcoming,
.section-spectacle-info
	.block-spectacle-summary
	.section-employees
	.cards-employees,
.section-spectacle-info
	.block-spectacle-summary
	.section-repertoire
	.cards-upcoming,
.section-spectacle-info
	.block-spectacle-summary
	.section-spectacle-creators
	.cards-employees,
.section-spectacle-info
	.block-spectacle-summary
	.section-spectacle-creators
	.cards-press {
	flex-wrap: nowrap;
}
.section-spectacle-info .block-spectacle-summary .col {
	align-items: center;
	display: flex;
	max-width: fit-content;
}
.section-spectacle-info .block-spectacle-summary .col-coupon {
	margin-right: 40px;
	padding-right: 40px;
	position: relative;
}
.section-spectacle-info .block-spectacle-summary .col-coupon:after {
	background-color: #ddd;
	content: "";
	height: 80%;
	position: absolute;
	right: 0;
	width: 1px;
}
.section-spectacle-info .block-spectacle-summary .coupon {
	border: 1px solid #000;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	transition-duration: 0.3s;
	transition-property: background-color, border-color;
}
.section-spectacle-info .block-spectacle-summary .coupon .icon {
	display: flex;
	flex-shrink: 0;
	margin-right: 20px;
}
.section-spectacle-info .block-spectacle-summary .coupon .icon img {
	height: 44px;
	width: 44px;
}
.section-spectacle-info .block-spectacle-summary .coupon:hover {
	background: #ffc3a1;
	border-color: rgba(0, 0, 0, 0);
}
.section-spectacle-info .block-spectacle-summary .scene {
	display: flex;
	flex-wrap: wrap;
	font-size: 24px;
	margin-right: 40px;
}
.section-spectacle-info .block-spectacle-summary .scene .prop {
	font-weight: 600;
	margin-right: 10px;
}
.section-spectacle-info .block-spectacle-summary .scene .val {
	opacity: 0.7;
}
.section-spectacle-info .block-spectacle-summary .tag {
	border: 1px solid #000;
	border-radius: 10px;
	font-size: 16px;
	padding: 10px;
}
@media (max-width: 992px) {
	.section-employee
		.block-employee-upcoming
		.section-spectacle-info
		.block-spectacle-summary
		.cards-upcoming,
	.section-employees
		.section-spectacle-info
		.block-spectacle-summary
		.cards-employees,
	.section-repertoire
		.section-spectacle-info
		.block-spectacle-summary
		.cards-upcoming,
	.section-spectacle-creators
		.section-spectacle-info
		.block-spectacle-summary
		.cards-employees,
	.section-spectacle-creators
		.section-spectacle-info
		.block-spectacle-summary
		.cards-press,
	.section-spectacle-info
		.block-spectacle-schedule
		.block-spectacle-summary
		.cards-schedule,
	.section-spectacle-info
		.block-spectacle-summary
		.block-spectacle-schedule
		.cards-schedule,
	.section-spectacle-info .block-spectacle-summary .cards-partners-logos,
	.section-spectacle-info .block-spectacle-summary .row,
	.section-spectacle-info
		.block-spectacle-summary
		.section-employee
		.block-employee-upcoming
		.cards-upcoming,
	.section-spectacle-info
		.block-spectacle-summary
		.section-employees
		.cards-employees,
	.section-spectacle-info
		.block-spectacle-summary
		.section-repertoire
		.cards-upcoming,
	.section-spectacle-info
		.block-spectacle-summary
		.section-spectacle-creators
		.cards-employees,
	.section-spectacle-info
		.block-spectacle-summary
		.section-spectacle-creators
		.cards-press {
		flex-direction: column;
	}
	.section-spectacle-info .block-spectacle-summary .col {
		max-width: 100%;
	}
	.section-spectacle-info .block-spectacle-summary .col-coupon {
		margin-bottom: 40px;
		margin-right: 0;
		padding-bottom: 40px;
		padding-right: 0;
	}
	.section-spectacle-info .block-spectacle-summary .col-coupon:after {
		bottom: 0;
		height: 1px;
		width: 100%;
	}
	.section-spectacle-info .block-spectacle-summary .col-chars {
		justify-content: space-between;
	}
}
@media (max-width: 575.9px) {
	.section-spectacle-info .block-spectacle-summary .coupon {
		width: 100%;
	}
	.section-spectacle-info .block-spectacle-summary .col-chars {
		align-items: flex-start;
		flex-direction: column;
	}
	.section-spectacle-info .block-spectacle-summary .scene {
		flex-direction: column;
		margin-bottom: 40px;
		margin-right: 0;
	}
	.section-spectacle-info .block-spectacle-summary .scene .prop {
		margin-bottom: 10px;
		margin-right: 0;
	}
}
@media (max-width: 374.9px) {
	.section-spectacle-info .block-spectacle-summary .coupon {
		font-size: 20px;
	}
	.section-spectacle-info .block-spectacle-summary .scene {
		font-size: 20px;
		margin-bottom: 20px;
	}
}
.section-spectacle-info .block-spectacle-schedule .cards-schedule {
	margin: 0 -20px -40px;
}
.section-spectacle-info .block-spectacle-schedule .cards-schedule .card {
	height: 100%;
}
.section-spectacle-info .block-spectacle-schedule .col {
	max-width: 20%;
	padding: 0 20px 40px;
}
@media (max-width: 992px) {
	.section-spectacle-info .block-spectacle-schedule .col {
		max-width: 50%;
	}
}
@media (max-width: 743.9px) {
	.section-spectacle-info .block-spectacle-schedule .cards-schedule {
		margin: 0 -10px -40px;
	}
	.section-spectacle-info .block-spectacle-schedule .col {
		padding: 0 10px 40px;
	}
}
@media (max-width: 374.9px) {
	.section-spectacle-info .block-spectacle-schedule .cards-schedule {
		margin: 0 0 -20px;
	}
	.section-spectacle-info .block-spectacle-schedule .col {
		max-width: 100%;
		padding: 0 0 20px;
	}
}
.section-spectacle-info .block-spectacle-description .review {
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 10px;
	display: flex;
	margin-top: 40px;
	padding: 20px 40px;
}
.section-spectacle-info .block-spectacle-description .review .img {
	display: flex;
	flex-shrink: 0;
	margin-right: 40px;
}
.section-spectacle-info .block-spectacle-description .review .img img {
	height: 155px;
	object-fit: cover;
	width: 155px;
}
.section-spectacle-info .block-spectacle-description .review .quote {
	position: relative;
}
.section-spectacle-info .block-spectacle-description .review blockquote {
	font-size: 18px;
	font-weight: 600;
}
.section-spectacle-info .block-spectacle-description .review .author {
	color: rgba(0, 0, 0, 0.8);
	display: block;
	font-size: 16px;
	margin-top: 10px;
}
@media (max-width: 992px) {
	.section-spectacle-info .block-spectacle-description .review {
		align-items: flex-start;
	}
	.section-spectacle-info .block-spectacle-description .review .quote {
		padding-left: 0;
		padding-top: 70px;
	}
}
@media (max-width: 743.9px) {
	.section-spectacle-info .block-spectacle-description .review {
		flex-direction: column;
		padding: 20px;
	}
	.section-spectacle-info .block-spectacle-description .review .img {
		margin-bottom: 40px;
		margin-right: 0;
	}
}
@media (max-width: 992px) {
	.section-spectacle-gallery {
		padding: 0;
	}
}
.section-spectacle-creators .block-spectacle {
	border-bottom: 1px solid #eee;
	padding: 40px 0;
}
.section-spectacle-creators .block-spectacle:first-child {
	padding-top: 0;
}
.section-spectacle-creators .block-title {
	font-size: 30px;
	margin-bottom: 40px;
}
.section-spectacle-creators .cards-employees {
	margin: 0 -24px -30px;
}
.section-spectacle-creators .cards-employees .col {
	max-width: 25%;
	padding: 0 24px 30px;
}
.section-spectacle-creators .cards-press {
	margin: 0 -20px -40px;
}
.section-spectacle-creators .cards-press .col {
	max-width: 33.3333333333%;
	padding: 0 20px 40px;
}
.section-spectacle-creators .cards-press .card {
	height: 100%;
}
@media (max-width: 1200px) {
	.section-spectacle-creators .cards-employees {
		margin: 0 -20px -30px;
	}
	.section-spectacle-creators .cards-employees .col {
		max-width: 33.3333333333%;
		padding: 0 20px 30px;
	}
}
@media (max-width: 992px) {
	.section-spectacle-creators .cards-employees .col {
		max-width: 50%;
	}
	.section-spectacle-creators .cards-press .col {
		max-width: 100%;
	}
}
@media (max-width: 479.9px) {
	.section-spectacle-creators .cards-employees {
		margin: 0 -7.5px -30px;
	}
	.section-spectacle-creators .cards-employees .col {
		padding: 0 7.5px 30px;
	}
}
@media (max-width: 374.9px) {
	.section-spectacle-creators .cards-employees .col {
		max-width: 100%;
	}
}
.section-fest-offer {
	display: flex;
	flex-direction: column;
	min-height: 700px;
	position: relative;
}
.section-fest-offer .section-bg:after {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.7),
		rgba(0, 0, 0, 0) 20.62%,
		rgba(0, 0, 0, 0) 47.07%,
		#000 86.07%
	);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-fest-offer > .container {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.section-fest-offer .info {
	color: #fff;
	margin-top: auto;
}
.section-fest-offer .date {
	display: block;
	font-size: 16px;
	margin-top: 20px;
}
.section-fest-info .block-fest:not(:last-child) {
	margin-bottom: 40px;
}
.section-fest-info .block-title {
	font-size: 36px;
}
.section-fest-info .block-title:not(:last-child) {
	margin-bottom: 40px;
}
.section-fest-info .block-fest-schedule .cards-list {
	border-bottom: none;
	border-top: none;
	padding: 0;
}
@media (max-width: 743.9px) {
	.section-fest-info .block-fest-schedule .show-card .date-col {
		padding: 20px;
	}
}
@media (max-width: 575.9px) {
	.section-fest-info .block-title {
		font-size: 30px;
	}
}
.section-employee .block-employee-info .col-info .section-news .name,
.section-news .section-employee .block-employee-info .col-info .name,
.section-news .section-title {
	margin-bottom: 40px;
	text-align: center;
}
.section-news .news-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px -40px;
}
.section-news .news-col {
	padding: 0 20px 40px;
	width: 33.3333333333%;
}
.section-news .date {
	border-left: 2px solid #ffc3a1;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
	padding: 5px 10px;
}
.section-news .title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	width: fit-content;
}
@media (max-width: 992px) {
	.section-news .news-col {
		width: 100%;
	}
}
.section-documents .section-employee .block-employee-info .col-info .name,
.section-documents .section-title,
.section-employee .block-employee-info .col-info .section-documents .name {
	margin-bottom: 40px;
}
.section-documents .block-documents:not(:last-child) {
	margin-bottom: 40px;
}
.section-documents .block-title {
	font-size: 36px;
}
.section-documents .block-title:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 575.9px) {
	.section-documents .block-title {
		font-size: 30px;
	}
}
.section-documents-rules .editor-content strong,
.section-documents-rules
	.section-employee
	.block-employee-info
	.col-info
	.description
	strong,
.section-employee
	.block-employee-info
	.col-info
	.section-documents-rules
	.description
	strong {
	font-size: 18px;
}
.section-documents-rules .form {
	max-width: 505px;
}
.section-documents-docs .link-area .link-pdf:not(:last-child) {
	margin-bottom: 20px;
}
.section-documents-docs .link-pdf {
	align-items: center;
	border: 2px solid #ffc3a1;
	border-radius: 10px;
	color: #000;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	justify-content: space-between;
	padding: 16px 20px;
	transition-duration: 0.3s;
	transition-property: background-color;
	transition-timing-function: ease;
}
.section-documents-docs .link-pdf .text {
	margin-right: 10px;
}
.section-documents-docs .link-pdf .icon {
	align-items: center;
	color: #ffc3a1;
	display: flex;
	flex-shrink: 0;
	font-size: 16px;
}
.section-documents-docs .link-pdf .icon img {
	height: 18px;
	margin-right: 5px;
	width: 14px;
}
.section-documents-docs .link-pdf:hover {
	background-color: rgba(255, 195, 161, 0.2);
}
.section-documents-docs .link-expand {
	align-items: center;
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
}
.section-documents-docs .link-expand:first-child {
	border-top: 1px solid #ddd;
}
.section-documents-docs .link-expand .text {
	margin-right: 40px;
}
.section-documents-docs .link-expand .icon {
	display: flex;
	flex-shrink: 0;
}
.section-documents-docs .link-expand .icon img {
	height: 20px;
	width: 20px;
}
.section-documents-docs .link-expand .icon,
.section-documents-docs .link-expand .text {
	transition-duration: 0.3s;
	transition-property: opacity;
	transition-timing-function: ease;
}
.section-documents-docs .link-expand:hover .icon,
.section-documents-docs .link-expand:hover .text {
	opacity: 0.5;
}
.section-404 .wrap {
	align-items: center;
	display: flex;
}
.section-404 .img-wrap {
	flex-shrink: 0;
	margin-left: 40px;
	position: relative;
	width: calc(50% - 20px);
}
.section-404 .img-wrap:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.section-404 .img-wrap img,
.section-404 .img-wrap svg {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-404 .text-wrap > * {
	margin-bottom: 40px;
}
.section-404 .text-wrap > :last-child {
	margin-bottom: 0;
}
.section-404 .section-employee .block-employee-info .col-info .name,
.section-404 .section-title,
.section-employee .block-employee-info .col-info .section-404 .name {
	margin-bottom: 40px;
	max-width: 400px;
}
.section-404 .text-block > * {
	margin-bottom: 10px;
}
.section-404 .text-block > :last-child {
	margin-bottom: 0;
}
.section-404 .text-block .text {
	font-size: 16px;
}
@media (max-width: 992px) {
	.section-404 .wrap {
		flex-direction: column;
	}
	.section-404 .img-wrap {
		margin-bottom: 40px;
		margin-left: 0;
		width: 100%;
	}
	.section-404 .text-wrap {
		order: 1;
	}
	.section-404 .section-employee .block-employee-info .col-info .name,
	.section-404 .section-title,
	.section-employee .block-employee-info .col-info .section-404 .name {
		max-width: 100%;
	}
}
@media (max-width: 575.9px) {
	.section-404 .section-employee .block-employee-info .col-info .name,
	.section-404 .section-title,
	.section-employee .block-employee-info .col-info .section-404 .name {
		max-width: 300px;
	}
}
.section-about-teatr .section-employee .block-employee-info .col-info .name,
.section-about-teatr .section-title,
.section-employee .block-employee-info .col-info .section-about-teatr .name {
	margin-bottom: 40px;
}
.section-about-teatr .content {
	padding-bottom: 40px;
	padding-top: 40px;
}
.section-about-teatr .location-wrap:not(:last-child) {
	margin-bottom: 40px;
}
.section-about-teatr .location-wrap .loc-title {
	color: inherit;
	font-size: 36px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 20px;
}
.section-about-teatr .location-wrap .loc-desc {
	color: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	margin-bottom: 20px;
}
.section-about-teatr .location-wrap .tech-params {
	margin-bottom: 20px;
}
.section-about-teatr .location-wrap .tech-params .title {
	color: inherit;
	font-size: 24px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 20px;
}
.section-about-teatr .location-wrap .div-point {
	background-color: #ddd;
	border-radius: 1px;
	display: block;
	flex-shrink: 0;
	height: 5px;
	margin-left: 10px;
	margin-right: 10px;
	width: 5px;
}
.section-about-teatr .location-wrap .tech-list {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}
.cards-upcoming
	.tags
	.section-about-teatr
	.location-wrap
	.tech-list
	.text
	.ico-wrap,
.section-about-teatr .location-wrap .tech-list .btn .ico-wrap,
.section-about-teatr
	.location-wrap
	.tech-list
	.cards-upcoming
	.tags
	.text
	.ico-wrap,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.coupon
	.ico-wrap,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.tag
	.ico-wrap,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.coupon
	.ico-wrap,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.tag
	.ico-wrap {
	align-items: center;
	color: #fff;
	display: flex;
	margin-left: 10px;
}
.cards-upcoming
	.tags
	.section-about-teatr
	.location-wrap
	.tech-list
	.text
	.ico-wrap
	img,
.cards-upcoming
	.tags
	.section-about-teatr
	.location-wrap
	.tech-list
	.text
	.ico-wrap
	svg,
.section-about-teatr .location-wrap .tech-list .btn .ico-wrap img,
.section-about-teatr .location-wrap .tech-list .btn .ico-wrap svg,
.section-about-teatr
	.location-wrap
	.tech-list
	.cards-upcoming
	.tags
	.text
	.ico-wrap
	img,
.section-about-teatr
	.location-wrap
	.tech-list
	.cards-upcoming
	.tags
	.text
	.ico-wrap
	svg,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.coupon
	.ico-wrap
	img,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.coupon
	.ico-wrap
	svg,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.tag
	.ico-wrap
	img,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.tag
	.ico-wrap
	svg,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.coupon
	.ico-wrap
	img,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.coupon
	.ico-wrap
	svg,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.tag
	.ico-wrap
	img,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.tag
	.ico-wrap
	svg {
	display: block;
	flex-shrink: 0;
	height: 18px;
	margin-right: 5px;
	width: 14px;
}
.cards-upcoming .tags .section-about-teatr .location-wrap .tech-list .text,
.section-about-teatr .location-wrap .tech-list .btn,
.section-about-teatr .location-wrap .tech-list .cards-upcoming .tags .text,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.coupon,
.section-about-teatr
	.location-wrap
	.tech-list
	.section-spectacle-info
	.block-spectacle-summary
	.tag,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.coupon,
.section-spectacle-info
	.block-spectacle-summary
	.section-about-teatr
	.location-wrap
	.tech-list
	.tag {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	padding-bottom: 16.5px;
	padding-top: 16.5px;
	text-decoration: none;
}
.section-about-teatr .location-wrap .loc-info {
	align-items: center;
	border-left: 2px solid #ffc3a1;
	color: inherit;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 20px;
	padding-left: 10px;
}
.section-about-teatr .location-wrap .loc-images {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px -20px;
}
.section-about-teatr .location-wrap .img-col {
	padding: 0 20px 20px;
	width: 50%;
}
.section-about-teatr .location-wrap .img-wrap {
	display: block;
	height: 345px;
}
.section-about-teatr .location-wrap .img-wrap img,
.section-about-teatr .location-wrap .img-wrap svg {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-about-teatr .about-content strong {
	font-size: 18px;
}
@media (max-width: 992px) {
	.section-about-teatr .location-wrap .img-col {
		width: 100%;
	}
}
@media (max-width: 575.9px) {
	.section-about-teatr .location-wrap .loc-title,
	.section-about-teatr .section-employee .block-employee-info .col-info .name,
	.section-about-teatr .section-title,
	.section-employee
		.block-employee-info
		.col-info
		.section-about-teatr
		.name {
		font-size: 30px;
	}
	.section-about-teatr .location-wrap .tech-list {
		display: block;
	}
	.section-about-teatr .location-wrap .tech-list .div-point {
		display: none;
	}
	.cards-upcoming .tags .section-about-teatr .location-wrap .tech-list .text,
	.section-about-teatr .location-wrap .tech-list .btn,
	.section-about-teatr .location-wrap .tech-list .cards-upcoming .tags .text,
	.section-about-teatr
		.location-wrap
		.tech-list
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.section-about-teatr
		.location-wrap
		.tech-list
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.section-about-teatr
		.location-wrap
		.tech-list
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.section-about-teatr
		.location-wrap
		.tech-list
		.tag {
		width: 100%;
	}
	.cards-upcoming
		.tags
		.section-about-teatr
		.location-wrap
		.tech-list
		.text:not(:last-child),
	.section-about-teatr .location-wrap .tech-list .btn:not(:last-child),
	.section-about-teatr
		.location-wrap
		.tech-list
		.cards-upcoming
		.tags
		.text:not(:last-child),
	.section-about-teatr
		.location-wrap
		.tech-list
		.section-spectacle-info
		.block-spectacle-summary
		.coupon:not(:last-child),
	.section-about-teatr
		.location-wrap
		.tech-list
		.section-spectacle-info
		.block-spectacle-summary
		.tag:not(:last-child),
	.section-spectacle-info
		.block-spectacle-summary
		.section-about-teatr
		.location-wrap
		.tech-list
		.coupon:not(:last-child),
	.section-spectacle-info
		.block-spectacle-summary
		.section-about-teatr
		.location-wrap
		.tech-list
		.tag:not(:last-child) {
		margin-bottom: 10px;
	}
	.section-about-teatr .location-wrap .img-wrap {
		height: 174px;
	}
}
.section-contacts {
	padding-bottom: 0;
}
.section-contacts .section-employee .block-employee-info .col-info .name,
.section-contacts .section-title,
.section-employee .block-employee-info .col-info .section-contacts .name {
	margin-bottom: 40px;
}
.section-contacts .contacts-wrap {
	display: flex;
	margin-bottom: 40px;
}
.section-contacts .contacts-wrap .col {
	align-items: flex-start;
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 40px;
}
.section-contacts .contacts-wrap .col:last-child {
	margin-right: 0;
}
.section-contacts .addr-col > * {
	margin-bottom: 22px;
}
.section-contacts .addr-col > :last-child {
	margin-bottom: 0;
}
.section-contacts .addr {
	font-size: 24px;
	font-weight: 600;
}
.section-contacts .metro {
	align-items: center;
	display: flex;
}
.section-contacts .metro img,
.section-contacts .metro svg {
	flex-shrink: 0;
	height: 32px;
	margin-right: 10px;
	width: 40px;
}
.section-contacts .metro .text {
	color: #204982;
	font-size: 16px;
}
.section-contacts .map-anchor {
	align-items: center;
	background: rgba(255, 195, 161, 0.1);
	border: 2px solid #ffc3a1;
	border-radius: 10px;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	justify-content: space-between;
	padding: 20px;
	width: 100%;
}
.section-contacts .map-anchor img,
.section-contacts .map-anchor svg {
	height: 20px;
	width: 15px;
}
.section-contacts .tel-col > * {
	margin-bottom: 30px;
}
.section-contacts .tel-col > :last-child {
	margin-bottom: 0;
}
.section-contacts .tel-wrap {
	align-items: center;
	display: flex;
}
.section-contacts .tel-wrap .tel {
	font-size: 18px;
	font-weight: 600;
	margin-right: 20px;
}
.section-contacts .tel-wrap .tel-descr {
	color: rgba(0, 0, 0, 0.302);
	font-size: 14px;
	font-weight: 600;
}
.section-contacts .tel-wrap .text {
	color: rgba(0, 0, 0, 0.3);
	font-size: 14px;
	font-weight: 600;
}
.section-contacts .soc-col > * {
	margin-bottom: 20px;
}
.section-contacts .soc-col > :last-child {
	margin-bottom: 0;
}
.section-contacts .soc-col .block-title {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	margin-bottom: 10px;
}
.section-contacts .soc-col .links-wrap {
	display: flex;
	text-decoration-line: underline;
}
.section-contacts .soc-col .links-wrap .link {
	font-size: 17px;
	margin-right: 40px;
}
.section-contacts .soc-col .links-wrap .link:last-child {
	margin-right: 0;
}
.section-contacts .soc-col .soc-wrap {
	align-items: center;
	display: flex;
}
.section-contacts .soc-col .soc-link {
	align-items: center;
	display: flex;
	height: 40px;
	justify-content: center;
	margin-right: 20px;
	width: 40px;
}
.section-contacts .soc-col .soc-link img,
.section-contacts .soc-col .soc-link svg {
	max-height: 100%;
	max-width: 100%;
}
.section-contacts .soc-col .work-hours {
	font-size: 16px;
}
.section-contacts .scene-wrap {
	border-bottom: 1px solid #ddd;
	display: flex;
	padding-bottom: 40px;
}
.section-contacts .scene-wrap .col {
	flex: 1 0 0;
	margin-right: 40px;
}
.section-contacts .scene-wrap .col:last-child {
	margin-right: 0;
}
.section-contacts .scene-wrap .top-wrap {
	background: #f5f5f5;
	border-radius: 10px;
	margin-bottom: 7px;
	position: relative;
}
.section-contacts .scene-wrap .top-wrap:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.section-contacts .scene-wrap .top-wrap img,
.section-contacts .scene-wrap .top-wrap svg {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-contacts .scene-wrap .text {
	color: #767676;
	font-size: 14px;
}
.section-contacts .scene-wrap .text-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
	left: 0;
	padding: 40px;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-contacts .scene-wrap .text-wrap .text {
	color: #212121;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}
.section-contacts .scene-wrap .text-wrap .bold {
	font-weight: 700;
}
.section-contacts .scene-wrap .text-wrap .alert-text {
	color: #db3545;
	font-size: 18px;
	font-weight: 600;
	margin-top: auto;
}
@media (max-width: 1300px) {
	.section-contacts .contacts-wrap {
		flex-direction: column;
	}
	.section-contacts .contacts-wrap .col {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 40px;
		margin-right: 0;
	}
	.section-contacts .contacts-wrap .col:last-child {
		margin-bottom: 0;
	}
	.section-contacts .contacts-wrap .addr-col > * {
		margin-bottom: 0;
	}
	.section-contacts .contacts-wrap .addr-col .addr {
		flex-basis: 100%;
		margin-bottom: 20px;
	}
	.section-contacts .contacts-wrap .addr-col .map-anchor,
	.section-contacts .contacts-wrap .addr-col .metro {
		flex-basis: 50%;
	}
	.section-contacts .contacts-wrap .tel-col > * {
		margin-bottom: 20px;
	}
	.section-contacts .contacts-wrap .tel-col > :last-child {
		margin-bottom: 0;
	}
	.section-contacts .contacts-wrap .tel-col .tel-wrap {
		align-items: flex-start;
		flex-basis: 50%;
		flex-direction: column;
	}
	.section-contacts .contacts-wrap .tel-col .tel {
		margin-right: 0;
	}
	.section-contacts .contacts-wrap .soc-col .contacts-block {
		flex-basis: 50%;
	}
	.section-contacts .contacts-wrap .soc-col .contacts-block:last-child {
		flex-basis: 100%;
	}
	.section-contacts .scene-wrap {
		flex-wrap: wrap;
	}
	.section-contacts .scene-wrap .col {
		margin-bottom: 40px;
		margin-right: 0;
	}
	.section-contacts .scene-wrap .col:nth-child(odd) {
		margin-right: 40px;
	}
	.section-contacts .scene-wrap .col:last-child {
		margin-right: 0;
	}
	.section-contacts .scene-wrap .col:last-child {
		flex-basis: 100%;
		margin-bottom: 0;
	}
	.section-contacts .scene-wrap .col:last-child .top-wrap:before {
		content: none;
	}
	.section-contacts .scene-wrap .col:last-child .text-wrap {
		position: static;
	}
}
@media (max-width: 575.9px) {
	.section-contacts .contacts-wrap .col {
		align-items: flex-start;
		flex: auto;
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.section-contacts .contacts-wrap .addr-col > *,
	.section-contacts .contacts-wrap .soc-col > *,
	.section-contacts .contacts-wrap .tel-col > * {
		margin-bottom: 20px;
	}
	.section-contacts .contacts-wrap .addr-col > :last-child,
	.section-contacts .contacts-wrap .soc-col > :last-child,
	.section-contacts .contacts-wrap .tel-col > :last-child {
		margin-bottom: 0;
	}
	.section-contacts .contacts-wrap .soc-col .links-wrap .link {
		margin-right: 20px;
	}
	.section-contacts .scene-wrap {
		flex-direction: column;
		flex-wrap: nowrap;
	}
}
.section-contacts-info .section-employee .block-employee-info .col-info .name,
.section-contacts-info .section-title,
.section-employee .block-employee-info .col-info .section-contacts-info .name {
	font-size: 36px;
	margin-bottom: 40px;
	text-transform: none;
}
.section-contacts-info .info-wrap {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
}
.section-contacts-info .info-block {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	font-family: Roboto;
}
.section-contacts-info .info-block > * {
	margin-bottom: 5px;
}
.section-contacts-info .info-block > :last-child {
	margin-bottom: 0;
}
.section-contacts-info .block-title {
	font-family: inherit;
	font-size: 18px;
}
.section-contacts-info .descr {
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
}
.section-contacts-info .tel {
	font-size: 16px;
}
@media (max-width: 992px) {
	.section-contacts-info .info-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575.9px) {
	.section-contacts-info
		.section-employee
		.block-employee-info
		.col-info
		.name,
	.section-contacts-info .section-title,
	.section-employee
		.block-employee-info
		.col-info
		.section-contacts-info
		.name {
		font-size: 30px;
	}
	.section-contacts-info .info-wrap {
		grid-template-columns: 1fr;
	}
}
.section-contacts-map {
	padding-bottom: 0;
}
.section-contacts-map .section-employee .block-employee-info .col-info .name,
.section-contacts-map .section-title,
.section-employee .block-employee-info .col-info .section-contacts-map .name {
	font-size: 36px;
	text-transform: none;
}
.section-contacts-map .title-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.section-contacts-map .download-btn {
	padding: 15px 20px;
	transition: background 0.3s ease;
}
.section-contacts-map .download-btn .text {
	font-size: 14px;
	font-weight: 600;
	margin-right: 10px;
}
.section-contacts-map .download-btn .icon {
	flex-shrink: 0;
	height: 18px;
	margin-right: 5px;
	width: 14px;
}
.section-contacts-map .download-btn .icon img,
.section-contacts-map .download-btn .icon svg {
	display: block;
	height: 100%;
	width: 100%;
}
.section-contacts-map .download-btn:hover {
	background-color: rgba(255, 195, 161, 0.2);
}
.section-contacts-map .download-btn .file-ext {
	color: #ffc3a1;
	font-size: 16px;
}
.section-contacts-map .controls-wrap {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	margin-right: 40px;
	width: 400px;
}
.section-contacts-map .controls-wrap .control {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	margin-bottom: 20px;
	min-height: 135px;
	padding: 20px 20px 27px;
	transition-duration: 0.3s;
	transition-property: border-color, background-color;
	width: 100%;
}
.section-contacts-map .controls-wrap .control:last-child {
	margin-bottom: 0;
}
.section-contacts-map .controls-wrap .control.active,
.section-contacts-map .controls-wrap .control:hover {
	background-color: rgba(255, 195, 161, 0.1);
	border-color: #ffc3a1;
}
.section-contacts-map .controls-wrap .control .block-subtitle {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
.section-contacts-map .controls-wrap .control .descr {
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
}
.section-contacts-map .map-wrap {
	border-bottom: 1px solid #ddd;
	display: flex;
	padding-bottom: 40px;
}
.section-contacts-map .map {
	border-radius: 10px;
	height: 500px;
	overflow: hidden;
	width: 100%;
}
.section-contacts-map .map .key {
	color: rgba(0, 0, 0, 0.502);
	display: inline-block;
	font-size: 12px;
	margin-right: 5px;
}
.section-contacts-map .map .value {
	color: #000;
	font-size: 12px;
}
.section-contacts-map .map .list-item-address {
	font-size: 14px;
	margin-bottom: 10px;
}
.section-contacts-map .download-btn {
	align-items: center;
	border: 2px solid #ffc3a1;
	border-radius: 10px;
	display: flex;
	flex-shrink: 0;
	font-weight: 600;
	margin-left: 20px;
	padding: 13px 18px;
	transition-duration: 0.2s;
	transition-property: background-color;
}
.section-contacts-map .download-btn:hover {
	background-color: #fff4ee;
}
.section-contacts-map .download-btn .ico-wrap {
	color: #ffc3a1;
	display: flex;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 600;
	margin-left: 10px;
}
.section-contacts-map .download-btn .ico-wrap img,
.section-contacts-map .download-btn .ico-wrap svg {
	display: block;
	flex-shrink: 0;
	height: 18px;
	margin-right: 5px;
	width: 14px;
}
.section-contacts-map .mob-map-wrap {
	display: none;
}
.section-contacts-map .mob-map-wrap .accord {
	margin-bottom: 20px;
}
.section-contacts-map .mob-map-wrap .accord:last-child {
	margin-bottom: 0;
}
.section-contacts-map .mob-map-wrap .accord.active .control {
	background-color: rgba(255, 195, 161, 0.1);
	border-color: #ffc3a1;
}
.section-contacts-map .mob-map-wrap .accord.active .accord-body {
	height: 335px;
}
.section-contacts-map .mob-map-wrap .accord-body {
	height: 0;
	overflow: hidden;
	transition: height 0.5s ease;
}
.section-contacts-map .mob-map-wrap .map {
	padding-top: 20px;
}
.section-contacts-map .mob-map-wrap .control {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: block;
	padding: 20px 20px 27px;
	transition-duration: 0.3s;
	transition-property: border-color, background-color;
	width: 100%;
}
.section-contacts-map .mob-map-wrap .control:hover {
	background-color: rgba(255, 195, 161, 0.1);
	border-color: #ffc3a1;
}
.section-contacts-map .mob-map-wrap .control .block-subtitle {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
.section-contacts-map .mob-map-wrap .control .descr {
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
}
@media (max-width: 992px) {
	.section-contacts-map .map-wrap {
		flex-direction: column;
	}
	.section-contacts-map .controls-wrap {
		flex-direction: row;
		margin-bottom: 40px;
		margin-right: 0;
		width: 100%;
	}
	.section-contacts-map .controls-wrap .control {
		flex: 1 0 0;
		margin-bottom: 0;
		margin-right: 40px;
		padding: 20px;
	}
	.section-contacts-map .controls-wrap .control:last-child {
		margin-right: 0;
	}
	.section-contacts-map .map {
		height: 395px;
	}
}
@media (max-width: 743.9px) {
	.section-contacts-map .map-wrap {
		display: none;
	}
	.section-contacts-map .mob-map-wrap {
		display: block;
	}
	.section-contacts-map
		.section-employee
		.block-employee-info
		.col-info
		.name,
	.section-contacts-map .section-title,
	.section-employee
		.block-employee-info
		.col-info
		.section-contacts-map
		.name {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.section-contacts-map .title-wrap {
		align-items: stretch;
		flex-direction: column;
	}
	.section-contacts-map .download-btn .icon {
		margin-left: auto;
	}
	.section-contacts-map .map {
		height: 335px;
	}
}
.section-pushkin-map .page-title {
	color: inherit;
	font-size: 48px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.section-pushkin-map .page-ico {
	align-items: center;
	border-radius: 5px;
	display: flex;
	flex-shrink: 0;
	height: 100px;
	justify-content: center;
	margin-bottom: 40px;
	width: 100px;
}
.section-pushkin-map .page-ico img,
.section-pushkin-map .page-ico svg {
	display: block;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	width: 100%;
}
.section-pushkin-map .content {
	padding-bottom: 40px;
	padding-top: 40px;
}
.section-pushkin-map .link-back {
	align-items: center;
	color: rgba(0, 0, 0, 0.5);
	display: flex;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	transition: color 0.3s ease;
}
.section-pushkin-map .link-back .icon {
	display: flex;
	flex-shrink: 0;
	margin-right: 10px;
}
.section-pushkin-map .link-back path {
	fill: rgba(0, 0, 0, 0.5);
	transition: fill 0.3s ease;
}
.section-pushkin-map .link-back:hover {
	color: #000;
}
.section-pushkin-map .link-back:hover path {
	fill: #000;
}
.section-pushkin-map .spec-list {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px -20px;
}
.section-pushkin-map .spec-col {
	padding: 0 20px 20px;
	width: 33.3333333333%;
}
.section-pushkin-map .spec-title {
	color: inherit;
	font-size: 24px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 20px;
}
.section-pushkin-map .spec-card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.section-pushkin-map .spec-card .img-wrap {
	height: 200px;
	margin-bottom: 20px;
	width: 100%;
}
.section-pushkin-map .spec-card .img-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-pushkin-map .spec-card .card-tags-list {
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.section-pushkin-map .spec-card .spec-time {
	font-size: 12px;
	margin-bottom: 8.5px;
	padding-left: 20px;
	padding-right: 20px;
}
.section-pushkin-map .spec-card .spec-time.mob-time {
	display: none;
}
.section-pushkin-map .spec-card .icons-list {
	align-items: center;
	display: flex;
}
.section-pushkin-map .spec-card .title {
	color: inherit;
	display: block;
	font-size: 30px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 5px;
	padding-left: 20px;
	padding-right: 20px;
	width: fit-content;
}
.section-pushkin-map .spec-card .desc {
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.section-pushkin-map .spec-card .spec-info-list {
	padding-left: 20px;
	padding-right: 20px;
}
.section-pushkin-map .spec-card .info-row:not(:first-child) {
	font-size: 12px;
}
.section-pushkin-map .spec-card .card-foot {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding: 55px 20px 20px;
}
.section-pushkin-map .spec-card .spec-date-wrap {
	width: fit-content;
}
.section-pushkin-map .spec-card .spec-date-wrap .point {
	margin: 0 15px;
}
.section-pushkin-map .spec-card .spec-date-wrap .day-wrap .day {
	font-size: 30px;
}
.section-pushkin-map .spec-card .spec-date-wrap .day-wrap .mounth,
.section-pushkin-map .spec-card .spec-date-wrap .day-wrap .week-day {
	font-size: 12px;
}
.section-pushkin-map .spec-card .btn-wrap {
	padding-left: 20px;
}
.section-pushkin-map .spec-card .spec-info-list .info-row:first-child {
	margin-bottom: 10px;
}
.section-pushkin-map .about-content {
	font-size: 16px;
}
.section-pushkin-map .about-content .block-text:not(:last-child) {
	margin-bottom: 40px;
}
.section-pushkin-map .about-content .block-title {
	margin-bottom: 10px;
}
.section-pushkin-map .about-content .red {
	color: #db3545;
	font-size: 18px;
	font-weight: 600;
}
.section-pushkin-map .about-content strong {
	font-weight: 600;
}
.section-pushkin-map .about-content p:not(:last-child) {
	margin-bottom: 10px;
}
.section-pushkin-map .about-content .block-list:not(:last-child) {
	margin-bottom: 10px;
}
.section-pushkin-map .about-content .block-list li {
	padding-left: 20px;
	position: relative;
}
.section-pushkin-map .about-content .block-list li:before {
	background-color: #ffc3a1;
	border-radius: 2px;
	content: "";
	display: block;
	height: 10px;
	left: 0;
	position: absolute;
	top: 6px;
	width: 10px;
}
.section-pushkin-map .about-content .block-list.underline li {
	border-top: 1px solid #ddd;
	padding-bottom: 20px;
	padding-top: 20px;
}
.section-pushkin-map .about-content .block-list.underline li:last-child {
	border-bottom: 1px solid #ddd;
}
.section-pushkin-map .about-content .block-list.underline li:before {
	top: 26px;
}
.section-pushkin-map .about-content .how-item {
	margin-bottom: 0;
	margin-top: 20px;
}
.section-pushkin-map .about-content .how-title {
	font-weight: 600;
}
.section-pushkin-map .about-content .how-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
	padding-bottom: 20px;
	padding-top: 20px;
}
.section-pushkin-map .about-content .how-tag {
	border: 1px solid #000;
	border-radius: 5px;
	display: block;
	margin: 10px;
	padding: 3px 8px;
	text-align: center;
	white-space: nowrap;
	width: fit-content;
}
@media (max-width: 1200px) {
	.section-pushkin-map .spec-col {
		width: 50%;
	}
	.section-pushkin-map .spec-card .img-wrap {
		height: 250px;
	}
}
@media (max-width: 992px) {
	.section-pushkin-map .like-tabs-links .nav-item {
		align-items: center;
		display: flex;
		justify-content: center;
		min-height: 68px;
	}
	.section-pushkin-map .spec-card .img-wrap {
		height: 156px;
	}
	.section-pushkin-map .spec-card .spec-time.mob-time {
		display: block;
	}
	.section-pushkin-map .spec-card .spec-time.desk-time {
		display: none;
	}
	.section-pushkin-map .spec-card .spec-time {
		margin-bottom: 0;
		margin-right: auto;
		padding-left: 5px;
		padding-right: 10px;
	}
	.section-pushkin-map .spec-card .card-foot {
		display: block;
		padding-top: 25px;
	}
	.section-pushkin-map .spec-card .spec-date-wrap {
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
		max-width: 166px;
		width: 100%;
	}
	.section-pushkin-map .spec-card .btn-wrap {
		padding-left: 0;
	}
	.cards-upcoming .tags .section-pushkin-map .spec-card .btn-wrap .text,
	.section-pushkin-map .spec-card .btn-wrap .btn,
	.section-pushkin-map .spec-card .btn-wrap .cards-upcoming .tags .text,
	.section-pushkin-map
		.spec-card
		.btn-wrap
		.section-spectacle-info
		.block-spectacle-summary
		.coupon,
	.section-pushkin-map
		.spec-card
		.btn-wrap
		.section-spectacle-info
		.block-spectacle-summary
		.tag,
	.section-spectacle-info
		.block-spectacle-summary
		.section-pushkin-map
		.spec-card
		.btn-wrap
		.coupon,
	.section-spectacle-info
		.block-spectacle-summary
		.section-pushkin-map
		.spec-card
		.btn-wrap
		.tag {
		width: 100%;
	}
	.section-pushkin-map .card-tags-list .icons-list {
		padding-top: 15px;
		width: 100%;
	}
}
@media (max-width: 743.9px) {
	.section-pushkin-map .page-title {
		font-size: 30px;
	}
	.section-pushkin-map .spec-title {
		font-size: 20px;
	}
	.section-pushkin-map .spec-col {
		width: 100%;
	}
	.section-pushkin-map .spec-card .img-wrap {
		height: 250px;
	}
	.section-pushkin-map .spec-card .card-foot {
		padding-top: 20px;
	}
	.section-pushkin-map .block-title {
		font-size: 20px;
	}
}
@media (max-width: 575.9px) {
	.section-pushkin-map .spec-card .img-wrap {
		height: 167px;
	}
}
.section-news-list .page-title {
	color: inherit;
	font-size: 48px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.section-news-list .section-content {
	padding-bottom: 40px;
	padding-top: 40px;
}
.section-news-list .pagination {
	padding-bottom: 40px;
}
@media (max-width: 992px) {
	.section-news-list .news-col {
		width: 50%;
	}
}
@media (max-width: 743.9px) {
	.section-news-list .news-col {
		width: 100%;
	}
}
.section-single-news .page-title {
	color: inherit;
	font-size: 48px;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 20px;
}
.section-single-news .date {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 20px;
}
.section-single-news .content strong {
	font-size: 18px;
}
.section-single-news .btn-wrap {
	font-size: 16px;
	margin-left: -5px;
	padding-top: 20px;
}
.section-single-news .slider-images {
	margin-top: 20px;
}
.section-single-news .slider-images .slide-item {
	padding: 0 20px;
}
.section-single-news .slider-images .splide__arrow {
	height: 82px;
	left: auto;
	right: calc(100% + 10px);
	width: 20px;
}
.section-single-news .slider-images .splide__arrow:before {
	background-image: url(../img/svg/slide-arrow-3.svg);
}
.section-single-news .slider-images .splide__arrow:after {
	background-image: url(../img/svg/slide-arrow-3-hover.svg);
}
.section-single-news .slider-images .splide__track {
	margin-left: -20px;
	margin-right: -20px;
}
.section-single-news .slider-images .splide__arrow.splide__arrow--next {
	left: calc(100% + 10px);
	right: auto;
}
.section-single-news .slider-images .splide__arrow:disabled {
	display: none;
}
.section-single-news .slider-images .img-wrap {
	border-radius: 10px;
	display: block;
	height: 280px;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.section-single-news .slider-images .img-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
@media (max-width: 743.9px) {
	.section-single-news .page-title {
		font-size: 30px;
	}
	.section-single-news .slider-images .splide__track {
		margin-left: -20px;
		margin-right: -20px;
	}
	.section-single-news .slider-images .splide__arrow {
		height: 82px;
		right: calc(100% + 7px);
		width: 11px;
	}
	.section-single-news .slider-images .splide__arrow.splide__arrow--next {
		left: calc(100% + 7px);
		right: auto;
	}
}
@media (max-width: 575.9px) {
	.section-single-news .img-wrap {
		height: 234px;
	}
}
.single-news-fancy .fancybox__content {
	border-radius: 10px;
	overflow: hidden;
}
.section-history {
	padding-top: 0;
}
.section-history .page-title {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.section-history .history-content {
	opacity: 1;
	padding-bottom: 40px;
	padding-top: 40px;
	transition-duration: 0.3s;
	transition-property: opacity;
}
.section-history .history-content:not(.active) {
	display: none;
	opacity: 0;
}
.section-history .like-tabs-links {
	border-bottom: 1px solid #ddd;
	justify-content: space-between;
	overflow: hidden;
	overflow-x: auto;
}
.section-history .like-tabs-links .nav-item {
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: -1px;
	text-align: left;
	white-space: nowrap;
	width: fit-content;
}
.section-history .block-title {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 40px;
	margin-top: 40px;
}
.section-history .history-block:not(:last-child) {
	margin-bottom: 40px;
}
.section-history .block-content {
	border-left: 1px solid #000;
	margin-left: 80px;
	padding-left: 20px;
}
.section-history .block-content strong {
	font-weight: 600;
}
.section-history .block-content .bold {
	font-size: 18px;
	font-weight: 600;
}
.section-history .images-list {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -20px 0;
}
.section-history .images-list:not(:last-child) {
	margin-bottom: 20px;
}
.section-history .images-list .img-wrap {
	border-radius: 10px;
	height: 278px;
	margin: 20px 20px 0;
	overflow: hidden;
	width: 400px;
}
.section-history .images-list .img-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-history .citation {
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 10px;
	display: flex;
	padding: 20px 40px;
}
.section-history .citation:not(:last-child) {
	margin-bottom: 20px;
}
.section-history .citation blockquote {
	background-position: 0 0;
	padding: 0 0 0 70px;
}
.section-history .citation .img-wrap {
	border-radius: 50%;
	flex-shrink: 0;
	height: 155px;
	margin-right: 40px;
	overflow: hidden;
	width: 155px;
}
.section-history .citation .img-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.section-history .citation .author {
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
}
.section-history .citation-2 {
	align-items: stretch;
	border: 1px solid #ffc3a1;
	border-radius: 10px;
	display: flex;
	overflow: hidden;
}
.section-history .citation-2:not(:last-child) {
	margin-bottom: 20px;
}
.section-history .citation-2 .text {
	font-size: 14px;
	padding: 33px 38px 33px 19px;
	width: 100%;
}
.section-history .citation-2 .img-wrap {
	align-items: flex-end;
	display: flex;
	flex-shrink: 0;
	justify-content: flex-end;
	width: 262px;
}
.section-history .citation-2 .img-wrap img {
	display: block;
	max-height: 100%;
	max-width: 100%;
}
@media (max-width: 1030px) {
	.section-history .images-list .img-wrap {
		height: 183px;
		width: 262px;
	}
}
@media (max-width: 992px) {
	.section-history .block-content {
		margin-left: 40px;
	}
	.section-history .citation {
		display: block;
		padding: 20px;
	}
	.section-history .citation .img-wrap {
		margin-bottom: 40px;
	}
	.section-history .citation blockquote {
		padding-left: 0;
		padding-top: 60px;
	}
	.section-history .citation-2 {
		display: block;
	}
	.section-history .citation-2 .img-wrap {
		margin-left: auto;
	}
	.section-history .citation-2 .text {
		margin-bottom: 20px;
		padding: 20px 20px 0;
	}
	.section-history .block-title {
		font-size: 30px;
	}
}
@media (max-width: 743.9px) {
	.section-history .block-content {
		margin-left: 20px;
	}
}
body .buy-ticket-modal {
	display: none;
}
body.with-byu-ticket-modal {
	overflow: hidden;
}
body.with-byu-ticket-modal .buy-ticket-modal {
	align-items: center;
	background-color: rgba(0, 0, 0, 0.314);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999999;
}
body.with-byu-ticket-modal .buy-ticket-modal .modal-container {
	background-color: #fff;
	border-radius: 10px;
	display: flex;
	margin: 50px 0;
	min-height: 70%;
	padding: 15px;
	position: relative;
	width: 80%;
}
body.with-byu-ticket-modal .buy-ticket-modal .modal-container .modal-content {
	display: flex;
	overflow: hidden;
	width: 100%;
}
body.with-byu-ticket-modal .buy-ticket-modal .modal-container .modal-close {
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
	height: 32px;
	position: absolute;
	right: -16px;
	top: -16px;
	width: 32px;
}
body.with-byu-ticket-modal
	.buy-ticket-modal
	.modal-container
	.modal-close:after,
body.with-byu-ticket-modal
	.buy-ticket-modal
	.modal-container
	.modal-close:before {
	background: gray;
	content: "";
	height: 4px;
	position: absolute;
	right: 4px;
	top: 13px;
	width: 24px;
}
body.with-byu-ticket-modal
	.buy-ticket-modal
	.modal-container
	.modal-close:before {
	transform: rotate(45deg);
}
body.with-byu-ticket-modal
	.buy-ticket-modal
	.modal-container
	.modal-close:after {
	transform: rotate(-45deg);
}
.header .menu-col > ul > li > a.root-item-selected {
	color: #fff;
}

/*----------------------------------------------------------------------*/

.header .menu-col > ul .parent-link + ul .item-selected a,
.parent-link.item-selected {
	color: #fff;
}

/*----------------------------------------------------------------------*/

.section-schedule .tags-filter .tag-item:nth-child(1) {
	order: 1;
} /* все */
.section-schedule .tags-filter .tag-item:nth-child(2) {
	order: 4;
} /* камерная */
.section-schedule .tags-filter .tag-item:nth-child(3) {
	order: 3;
} /* стачка */
.section-schedule .tags-filter .tag-item:nth-child(4) {
	order: 2;
} /* большая */
.section-schedule .tags-filter .tag-item:nth-child(5) {
	order: 7;
} /* дневные  */
.section-schedule .tags-filter .tag-item:nth-child(6) {
	order: 6;
} /* вечерние */
.section-schedule .tags-filter .tag-item:nth-child(7) {
	order: 5;
} /* пушкинская */
.section-schedule .tags-filter .tag-item:nth-child(8) {
	order: 1;
	display: none;
} /* фестиваль */
.section-schedule .tags-filter .tag-item:nth-child(9) {
	order: 8;
} /* регионы */

.header .info-row.desktop .container .info-item.info-phone:nth-child(3) {
	display: none;
}
