

/* Start:/css/order.css?16599424198733*/
/* payment */
.timer__items {
  display: flex;
}

.timer__item {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}
.timer__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -15px;
}
.seats-map {
	position: relative;
}
.seats-types {
	position: absolute;
	top: 15px;
	left: 15px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
.seat-type {
	margin-right: 10px;
	margin-bottom: 15px;
	padding: 5px 10px 5px 10px;
	display: flex;
	align-items: center;
	background: #fff;
	color: #000;
	font-size: 12px;
	line-height: 16px;
	border-radius: 30px;
	box-shadow: rgba(0,0,0,.1) 0px 5px 20px;
	cursor: default;
}
.seat-type:last-child {
	margin-right: 0;
}
.seat-type .single-seat {
	margin-right: 10px;
}
.map-stage {
	width: 100%;
	padding: 84px 0 50px;
}
.all-seats {
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.seats-row {
	height: 20px;
	margin-bottom: 1rem;
	padding: 0 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.single-seat {
	position: relative;
	width: 18px;
	height: 18px;
	background: #CCCCCC;
	border-radius: 50%;
}
.single-seat span {
	white-space: nowrap;
}
.single-seat .seat-available, .single-seat .seat-table {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
}
.single-seat .seat-table {color: #fff;}
/*.single-seat .seat-available:hover,
.single-seat .seat-available.selected {
	width: 20px;
	height: 20px;
	color: #fff;
}*/
.single-seat .seat-available.selected {
	background: #000 !important;
}
.seat-info {
	position: absolute;
	top: calc(100% + 25px);
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	background: #fff;
	white-space: nowrap;
	text-align: center;
	border: 1px solid #ccc;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 3;
}
.seat-info::before {
	content: "";
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 20px;
	height: 20px;
	background: #fff;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	pointer-events: none;
}
.single-seat:hover .seat-info {
	opacity: 1;
	visibility: visible;
}
.single-seat:nth-child(10) {
	margin-right: 1.5vw;
}
.single-seat:nth-child(11) {
	margin-left: 1.5vw;
}
.seats-row:nth-child(12) {
	/*margin-bottom: 3vw;*/
}
.seat-info .info-price {
	margin-bottom: 5px;
	color: #000;
	font-size: 14px;
	font-weight: 500;
}
.seat-info .info-other {
	color: #000;
	font-size: 12px;
}
.bg-green {
	background: #ADC95A;
}
.bg-blue {
	background: #76BFDF;
}
.bg-teal {
	background: #90D9D4;
}
.bg-orange {
	background: #F3AC3D;
}
.bg-yellow {
	background: #E9D209;
}
.bg-red {
	background: #ED655F;
}
.bg-purple {
	background: #A95EAC;
}
.payment-basket {
	position: sticky;
	top: 90px;
	max-width: 400px;
	margin: 2.5rem auto 0;
	color: #fff;
}
.basket-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.basket-item:not(:last-child) {
	margin-bottom: 1.3rem;
}
.basket-item .item-left {
	position: relative;
	padding-left: 40px;
	font-size: 1.3rem;
	font-weight: 500;
}
.basket-item .item-left span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	border: 1px solid #fff;
	border-radius: 50%;
}
.basket-item .item-right {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.basket-item .item-right .delete-item {
  margin-left: 15px;
  width: 1.3rem;
  height: 1.3rem;
  background: url("/img/icons/delete.svg") center/cover no-repeat;
  cursor: pointer;
}
.basket-total {
	margin: 1.5rem 0;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: right;
}
.basket-total span {
	font-size: 1.3rem;
	font-weight: 500;
}
.basket-input {
  max-width: 280px;
  margin: 0 auto 1.875rem;
}
.basket-input input {
  width: 100%;
  padding: 0.8rem;
  background: #fff;
  color: #000;
  font-size: 1.3rem;
  line-height: 1;
  border: none;
  border-radius: 8px;
  outline: none;
}
.basket-button {
	width: 280px;
	background: #65cff6;
	border-radius: 15px;
	padding: .9375rem;
	margin: 1.875rem auto;
	cursor: pointer;
	color: #fff;
	text-align: center;
}
.basket-terms {
	color: #ccc;
	font-size: 0.7rem;
	text-align: center;
}
.basket-terms a {
	color: #ccc;
	font-weight: 500;
	text-decoration: underline;
}
.tables .seats-row {
	height: 85px;
}
.tables .seats-row:nth-child(even) {
	justify-content: space-evenly;
}
.tables .seats-row:first-child .single-seat:nth-child(2) {
	margin-right: 5vw;
}
.tables .seats-row:first-child .single-seat:nth-child(3) {
	margin-left: 5vw;
}
.tables .single-seat {
	width: 65px;
	height: 65px;
}
.tables-map .seat-available, .tables .seat-available {
	width: 100%;
	height: 100%;
	color: #fff;
}
.tables-map .single-seat .seat-available:hover,
.tables-map .single-seat .seat-available.selected
.tables .single-seat .seat-available:hover,
.tables .single-seat .seat-available.selected {
	width: 100%;
	height: 100%;
}
.tables .single-seat span {
	position: absolute;
	width: 10px;
	height: 10px;
	background: #CCCCCC;
	border-radius: 50%;
	transform: translateX(-50%);
}
.tables .single-seat span:nth-of-type(1) {
	bottom: -11px;
	left: 65%;
}
.tables .single-seat span:nth-of-type(2) {
	bottom: -11px;
	left: 35%;
}
.tables .single-seat span:nth-of-type(3) {
	bottom: -2px;
	left: 10%;
}
.tables .single-seat span:nth-of-type(4) {
	bottom: -2px;
	left: 90%;
}
.tables .single-seat span:nth-of-type(5) {
	bottom: 12px;
	left: -5%;
}
.tables .single-seat span:nth-of-type(6) {
	bottom: 12px;
	left: 105%;
}
.tables .single-seat span:nth-of-type(7) {
    bottom: 30px;
    left: -10%;
}
.tables .single-seat span:nth-of-type(8) {
    bottom: 30px;
    left: 110%;
}
.all-seats.tables .seats-row {padding: 0 2% 0 10%;}
.my-flex-cont {
 display: flex;
 flex-flow: column nowrap;						 
 align-items: center;						 
}
.my-flex-cont .single-seat {margin-bottom: 1rem;}
.my-flex-cont.tables .seats-row {margin-bottom: 0;}
.all-seats.tables .single-seat:nth-child(6)
{
	margin-right:-2vw;
}
.all-seats.tables {width: 100%;}	
.ui-btn {margin-bottom: 20px;}

@media (max-width: 575px){
	.tables .single-seat span {
		width: 5px;
		height: 5px;
	}
	.tables .seats-row:nth-child(even) {
		justify-content: space-around;
	}
	.tables .seats-row {
		height: 60px;
	}
	.tables .single-seat {
		width: 40px;
		height: 40px;
	}
	.tables .single-seat {
		width: 32px;
		height: 32px;
	}
	.all-seats.tables .seats-row {
		padding: 0 2% 0 2%;
	}
	.tables .seat-available {
		width: 32px;
		height: 32px;
		color: #fff;
	}
	.tables .single-seat .seat-available:hover,
	.tables .single-seat .seat-available.selected {
		width: 33px; height: 33px;
	}
	.tables .single-seat span:nth-of-type(1) {
		bottom: -6px;
		left: 70%;
	}
	.tables .single-seat span:nth-of-type(2) {
		bottom: -6px;
		left: 30%;
	}
	.tables .single-seat span:nth-of-type(3) {
		bottom: -1px;
		left: 6%;
	}
	.tables .single-seat span:nth-of-type(4) {
		bottom: -1px;
		left: 95%;
	}
	.tables .single-seat span:nth-of-type(5) {
		bottom: 6px;
		left: -10%;
	}
	.tables .single-seat span:nth-of-type(6) {
		bottom: 6px;
		left: 110%;
	}
	.tables .single-seat span:nth-of-type(7) {
		bottom: 15px;
		left: -13%;
	}
	.tables .single-seat span:nth-of-type(8) {
		bottom: 16px;
		left: 113%;
	}
}

/* gifts */
.basket-item {
	flex-flow: row wrap;
}
.basket-gift {
	margin-top: 25px;
	padding-right: 36px;
	flex: 1 0 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row wrap;
}
.item-left > div {
	font-size: 0.9rem;
	line-height: 2;
}
.gift-toggler {
	flex: 1 0 100%;
	display: flex;
	align-items: center;
}
.basket-item .item-left.gift-toggler {
	font-size: 0.9rem;
}
.gift-operation {
	padding: 0 10px 0;
	margin-left: 5px;
	height: 100%;
	cursor: pointer;
}
.op-result {
	padding: 0;
	cursor: default;
}
.gift-description {
	padding-left: 40px;
	margin-top: 25px;
	color: #ff5a00;
	font-size: 0.9rem;
	line-height: 1.5;
}
.seats-row {
	position: relative;
}
.row-number {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 12px;
	line-height: 1;
}
.map-info {
	margin: 20px auto 0;
	color: #ccc;
	font-size: 12px;
	line-height: 1.3;
	text-align: center;
	max-width: 400px;
}
.map-info + div {
	margin-top: 20px;
}
/* End */


/* Start:/css/tables_map.css?16384345873024*/
:root {
	--tableBase2: 55px;
	--tableBase3: 55px;
	--tableBase4: 80px;
	--tableBase5: 80px;
	--tableBase6: 90px;
	--tableBase7: 90px;
	--tableBase8: 90px;
}
.tables-map-container {
	width: 100%;
	max-width: 750px;
	height: 1510px;
	margin: 0 auto;
	overflow: visible;
}
.tables-map-container .map-stage {
	width: 750px;
}
.all-seats.tables-map {
	position: relative;
	width: 750px;
}
.all-seats.tables-map .single-seat {
	position: absolute;
	width: 0;
	height: 0;
}
.tables-map .single-seat:nth-child(6) {
	margin-right: 0;
}
.tables-map .single-seat:nth-child(7) {
	margin-left: 0;
}
.tables-map .single-seat span {
	position: absolute;
	width: 8px;
	height: 8px;
	background: #CCCCCC;
	border-radius: 50%;
	transform: translateX(-50%);
}
.tables-map .single-seat span:nth-of-type(1) {
	bottom: -10px;
	left: 65%;
}
.tables-map .single-seat span:nth-of-type(2) {
	bottom: -10px;
	left: 35%;
}
.tables-map .single-seat span:nth-of-type(3) {
	bottom: -1px;
	left: 10%;
}
.tables-map .single-seat span:nth-of-type(4) {
	bottom: -1px;
	left: 90%;
}
.tables-map .single-seat span:nth-of-type(5) {
	bottom: 16px;
	left: -5%;
}
.tables-map .single-seat span:nth-of-type(6) {
	bottom: 16px;
	left: 105%;
}
.tables-map .single-seat span:nth-of-type(7) {
    bottom: 36px;
    left: -10%;
}
.tables-map .single-seat span:nth-of-type(8) {
    bottom: 36px;
    left: 110%;
}
.tables-map .single-seat span:nth-of-type(9) {
    bottom: 57px;
    left: -8%;
}
.tables-map .single-seat span:nth-of-type(10) {
	bottom: 57px;
    left: 108%;
}
.tables-map .kolonna {
	position: absolute;
	width: 55px;
	height: 40px;
	border: 1px solid #ccc;
}
.tables-map .kolonna.pos-1,
.tables-map .kolonna.pos-2,
.tables-map .kolonna.pos-3 {
	left: -60px;
}
.tables-map .kolonna.pos-4,
.tables-map .kolonna.pos-5,
.tables-map .kolonna.pos-6 {
	right: -10px;
}
.tables-map .kolonna.pos-1,
.tables-map .kolonna.pos-4 {
	top: -60px;
}
.tables-map .kolonna.pos-2,
.tables-map .kolonna.pos-5 {
	top: 370px;
}
.tables-map .kolonna.pos-3,
.tables-map .kolonna.pos-6 {
	top: 890px;
}
@media screen and (max-width: 1700px) {
	.tables-map-container {
		zoom: 0.70;
	}
	.tables-map-container .seats-types {
		zoom: 1.3;
	}
	.tables-map-container .map-stage {
		padding: 90px 0 50px;
	}
}
@media screen and (max-width: 1330px) {
	.tables-map-container {
		zoom: 0.50;
	}
	.tables-map-container .seats-types {
		zoom: 1.5;
	}
	.tables-map-container .map-stage {
		padding: 100px 0 50px;
	}
}
@media screen and (max-width: 999px) {
	.tables-map-container {
		zoom: 0.70;
	}
	.tables-map-container .seats-types {
		zoom: 1.8;
	}
	.tables-map-container .map-stage {
		padding: 150px 0 50px;
	}
}
@media screen and (max-width: 500px) {
	.tables-map-container {
		height: 1560px;
		zoom: 0.40;
	}
	.tables-map-container .seats-types {
		zoom: 2.5;
	}
	.tables-map-container .map-stage {
		padding: 250px 0 50px;
	}
}
/* End */


/* Start:/bitrix/templates/theater/components/bitrix/sender.subscribe/theater/style.css?1582613890221*/
.bx_subscribe_response_container {
	padding: 40px;
	color: #35414E;
}

.bx_subscribe_checkbox_container {
  line-height: 16px;
  font-size: 13px;
  margin-bottom: 3px;
  vertical-align: middle;
  color: #aaa;
}
/* End */
/* /css/order.css?16599424198733 */
/* /css/tables_map.css?16384345873024 */
/* /bitrix/templates/theater/components/bitrix/sender.subscribe/theater/style.css?1582613890221 */
