/* Fonts */

@font-face {
	font-display: swap;
	font-family: 'Advent Pro';
	font-weight: 400;
	src: local(''),
		url('../fonts/AdventPro-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../fonts/AdventPro-Regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Variables */

:root {

    /*  colors  */

  --primary-color: #c9ab81;
  --black-color: #1a272c;
  --green-color: #0f1d22;

  /* fonts */

  --primary-font: 'Roboto', sans-serif;
  --secondary-font: 'Advent Pro', sans-serif;
  
}

/* General rules */

html *:not(i) {
	font-family: var(--primary-font);
}

* {
    box-sizing: border-box;
}

body {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	margin: 0;
}

img {
	vertical-align: middle;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: var(--primary-color);
}

a:focus, a:hover, input, textarea, select {
	outline: none;
}

p {
	margin: 0 0 10px;
}

.img-responsive {
	height: auto;
	max-width: 100%;
}

.screen {
	background-size: cover;
	height: 100vh;
	position: fixed;
	width: 100vw;
}

.screen.active {
	z-index: 2;
}

.hidden {
	display: none !important;
}

.fadein {
	animation-duration: 1s;
	animation-name: fadein;
}

.fadeout {
	animation-duration: 1s;
	animation-name: fadeout;
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

#loader {
	align-items: center;
	background-color: var(--green-color);
	background-image: url('../images/loader-background.svg');
	display: flex;
	height: 100vh;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	width: 100%;
	z-index: 4;
}

#loader.show {
	animation-duration: 1.5s;
	animation-name: showhide;
	pointer-events: initial;
}

@keyframes showhide {
	from {
		opacity: 1;
	}
	
	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Home page */

#home {
	background-image: url('../images/home-background.jpg');
}

.home-overlayer {
	align-items: center;
	background-color: #0f1d22e6;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: flex-start;
	opacity: 0;
	overflow-y: auto;
	padding: 50px 20px;
	transition: all 1s ease-out 0.3s;
}

.home-overlayer.appear {
	opacity: 1;
}

.home-logo {
	margin-bottom: 100px;
	margin-top: auto;
	text-align: center;
}

.home-top-decoration {
	margin-bottom: 62px;
}

h1.home-title {
	color: var(--primary-color);
	font-family: var(--secondary-font);
	font-size: 30px;
	font-weight: 400;
	line-height: 36px;
	margin: 0 0 37px;
	text-align: center;
}

.home-middle-decoration {
	margin-bottom: 41px;
}

p.home-message {
	font-size: 20px;
	line-height: 35px;
	margin-bottom: 36px;
	max-width: 100%;
	text-align: center;
	width: 470px;
}

button.home-button {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	box-shadow: 0px 3px 6px #000000;
	color: var(--primary-color);
	cursor: pointer;
	font-family: var(--secondary-font);
	font-size: 20px;
	font-weight: 400;
	margin-bottom: auto;
	padding: 10px 15px;
	transition: all 0.5s ease-in;
}

button.home-button:hover {
	background-color: var(--primary-color);
	color: var(--black-color);
}

/* Inner page */

#inner {
	transition: background 0.5s linear;
}

#inner.screen-1 {
	background-image: url('../images/event-background.jpg');
}

#inner.screen-2 {
	background-image: url('../images/guests-background.jpg');
}

#inner.screen-3 {
	background-image: url('../images/location-background.jpg');
}

#inner.screen-4 {
	background-image: url('../images/room-background.jpg');
}

#inner.screen-4.my-location {
	background-image: url('../images/my-location-background.jpg');
}

#inner.screen-5 {
	background-image: url('../images/menus-background.jpg');
}

#inner.screen-6 {
	background-image: url('../images/menu-background.jpg');
}

#inner.screen-7 {
	background-image: url('../images/drinks-background.jpg');
}

#inner.screen-8 {
	background-image: url('../images/equipment-background.jpg');
}

#inner.screen-9 {
	background-image: url('../images/choices-background.jpg');
}

.container {
	display: flex;
	height: 100%;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 50px;
	width: 1171px;
}

.button-navigation {
	align-items: center;
	background-color: #0f1d22e6;
	border: 0;
	color: var(--primary-color);
	cursor: pointer;
	display: flex;
	font-family: var(--secondary-font);
	font-size: 30px;
	font-weight: 400;
	justify-content: center;
	transition: all 0.2s ease-out;
	width: 86px;
	writing-mode: vertical-rl;
}

.button-navigation span {
	color: var(--primary-color);
	font-family: var(--secondary-font);
	font-size: 30px;
	font-weight: 400;
}

.button-navigation:hover {
	background-color: #997d57e6;
	border-radius: 0 117px 117px 0;
	color: var(--black-color);
}

.button-navigation:hover span {
	color: var(--black-color);
}

.button-previous {
	box-shadow: 3px 0px 6px #00000054;
	transform: rotate(180deg);
}

.button-next {
	box-shadow: 3px 0px 6px #00000054;
}

.screen-9 .button-next {
	display: none;
}

.button-send-offer {
	display: none;
}

.screen-9 .button-next.button-send-offer {
	display: flex;
}

.main-container {
	background-color: #0f1d22e6;
	box-shadow: 3px 0px 6px #00000054;
	display: flex;
	width: calc(100% - 222px)
}

.main-container-left {
	background-image: url('../images/decorative-pattern-left.svg');
	min-width: 48px;
	width: 48px;
}

.main-container-right {
	background-image: url('../images/decorative-pattern-right.svg');
	min-width: 48px;
	width: 48px;
}

.main-container-center {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 49px 50px 28px;
}

.main-scrollable {
	flex-grow: 1;
	overflow-y: auto;
	/*
	scrollbar-color: transparent transparent;
	scrollbar-width: thin;
	*/
	-ms-overflow-style: none;  /* IE and Edge */
	scroll-behavior: smooth;
	scrollbar-width: none;  /* Firefox */
}

 /* Hide scrollbar for Chrome, Safari and Opera */
.main-scrollable::-webkit-scrollbar {
  display: none;
}

/*
.main-scrollable::-webkit-scrollbar {
	width: 8px;
}

.main-scrollable::-webkit-scrollbar-track {
	background: transparent;
}

.main-scrollable::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 0;
	border: 2px solid transparent;
}
*/

.main-center {
	display: none;
}

.screen-1 .main-center-1 {
	display: block;
}

.screen-2 .main-center-2 {
	display: block;
}

.screen-3 .main-center-3 {
	display: block;
}

.screen-4 .main-center-4 {
	display: block;
}

.screen-4.my-location .main-center-4 {
	display: none;
}

.screen-4.my-location .main-center-4-2 {
	display: block;
}

.screen-5 .main-center-5 {
	display: block;
}

.screen-6 .main-center-6 {
	display: block;
}

.screen-6.custom .main-center-6 {
	display: none;
}

.screen-6.custom .main-center-6-2 {
	display: block;
}

.screen-7 .main-center-7 {
	display: block;
}

.screen-8 .main-center-8 {
	display: block;
}

.screen-9 .main-center-9 {
	display: block;
}

.main-logo {
	margin-bottom: 109px;
	text-align: center;
}

.main-title {
	margin-bottom: 100px;
	text-align: center;
}

.main-title-icon {
	display: none;
}

.screen-1 .main-title-icon-1 {
	display: inline-block;
}

.screen-2 .main-title-icon-2 {
	display: inline-block;
}

.screen-3 .main-title-icon-3 {
	display: inline-block;
}

.screen-4 .main-title-icon-4 {
	display: inline-block;
}

.screen-5 .main-title-icon-5 {
	display: inline-block;
}

.screen-6 .main-title-icon-6 {
	display: inline-block;
}

.screen-7 .main-title-icon-7 {
	display: inline-block;
}

.screen-8 .main-title-icon-8 {
	display: inline-block;
}

.screen-9 .main-title-icon-9 {
	display: inline-block;
}

h2.main-title-text {
	display: none;
	font-family: var(--secondary-font);
	font-size: 28px;
	font-weight: 400;
	line-height: 38px;
	margin: 16px 0 17px;
}

.screen-1 .main-title-text-1 {
	display: block;
}

.screen-2 .main-title-text-2 {
	display: block;
}

.screen-3 .main-title-text-3 {
	display: block;
}

.screen-4 .main-title-text-4 {
	display: block;
}

.screen-4.my-location .main-title-text-4 {
	display: none;
}

.screen-4.my-location .main-title-text-4-2 {
	display: block;
}

.screen-5 .main-title-text-5 {
	display: block;
}

.screen-6 .main-title-text-6 {
	display: block;
}

.screen-6.custom .main-title-text-6 {
	display: none;
}

.screen-6.custom .main-title-text-6-2 {
	display: block;
}

.screen-7 .main-title-text-7 {
	display: block;
}

.screen-8 .main-title-text-8 {
	display: block;
}

.screen-9 .main-title-text-9 {
	display: block;
}

.main-menu {
	align-items: center;
	display: flex;
	margin: 50px auto 0;
	max-width: 100%;
	width: 538px;
}

.main-menu-item {
	align-items: center;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	height: 42px;
	justify-content: center;
	opacity: 0.15;
	pointer-events: none;
	position: relative;
	width: 42px;
}

.main-menu-item.completed {
	cursor: pointer;
	opacity: 1;
	pointer-events: initial;
}

.main-menu-item.active {
	background-color: var(--primary-color);
	cursor: pointer;
	opacity: 1;
	pointer-events: initial;
}

.main-menu-item svg {
	fill: var(--primary-color);
}

.main-menu-item.active svg {
	fill: var(--black-color);
}

.menu-title {
	background-color: var(--green-color);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	display: none;
	font-size: 12px;
	left: 50%;
	padding: 3px 10px;
	position: absolute;
	top: -18px;
	z-index: 2;
}

.main-menu-item:hover .menu-title {
	display: block;
}

.main-menu-separator {
	background-color: var(--primary-color);
	flex-grow: 1;
	height: 1px;
	margin: 0 4px;
	opacity: 0.15;
}

#menu-8 {
	display: none;
}

#inner.my-location #menu-8 {
	display: flex;
}

.main-menu-separator-8 {
	display: none;
}

#inner.my-location .main-menu-separator-8 {
	display: block;
}

.choice-row {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 65px;
}

.choice-row-text {
	font-size: 22px;
	margin-right: 58px;
	max-width: calc(50% - 71px);
	text-align: right;
}

input[type="radio"].choice-row-box, input[type="checkbox"].choice-row-box {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	margin: 0 calc(50% - 12px) 0 0;
	width: 25px;
}

input[type="radio"].choice-row-box::before, input[type="checkbox"].choice-row-box::before {
	border: 1px solid #fff;
	box-shadow: inset 1em 1em var(--form-control-color);
	content: " ";
	display: block;
	height: 25px;
	margin-right: calc(50% - 12px);
	transition: 0.3s background-color ease-out;
	width: 25px;
}

input[type="radio"].choice-row-box:checked::before, input[type="checkbox"].choice-row-box:checked::before {
	background-color: #fff;
}

.main-center-bottom-decor {
    margin: 100px 0 50px;
	text-align: center;
}

/* Popup */

.popup {
	align-items: center;
	display: none;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 4;
}

.popup-inner {
	background-color: var(--green-color);
	display: flex;
	max-height: 90vh;
	max-width: 1071px;
	min-width: 849px;
	text-align: center;
	z-index: 6;
}

.popup-left {
	background-image: url('../images/decorative-pattern-left-short.svg');
	width: 48px;
}

.popup-right {
	background-image: url('../images/decorative-pattern-left-short.svg');
	width: 48px;
}

.popup-middle {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 34px 44px 50px;
	width: calc(100% - 96px);
}

.popup-close {
	margin-bottom: 56px;
}

.popup .main-title-decor {
	display: block;
	margin: 0 auto 76px;
}

#event-popup .popup-close, #guests-popup .popup-close, #location-popup .popup-close, #room-popup .popup-close, #menu-type-popup .popup-close {
	margin-bottom: 40px;
}

.popup-close svg {
	cursor: pointer;
}

#event-popup .popup-close svg, #guests-popup .popup-close svg, #location-popup .popup-close svg, #room-popup .popup-close svg, #menu-type-popup .popup-close svg {
	max-width: 25px;
}

.popup-close svg:hover {
	fill: #fff;
}

.popup-content {
	flex-grow: 1;
	overflow-y: auto;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	scrollbar-width: none;
	width: 100%;
}

.popup-content::-webkit-scrollbar {
  display: none;
}

.popup p {
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto 10px;
	max-width: 100%;
	width: 580px;
}

.popup-slideshow {
	margin-top: 82px;
	position: relative;
}

.popup-overlay {
	background-color: #000;
	left: 0;
	height: 100vh;
	opacity: 0.8;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 5;
}

#inner.screen-1 .button-navigation.button-previous {
	cursor: initial;
}

#inner.screen-1 .button-navigation.button-previous:hover {
	background-color: #0f1d22e6;
	border-radius: 0;
	color: var(--primary-color);
}

#inner.screen-1 .button-navigation.button-previous span {
	display: none;
}

/* Guests page */

.golden-p {
	color: var(--primary-color);
	font-size: 16px;
	text-align: center;
}

.main-center-2 .golden-p {
	margin: 0 0 73px;
}

.guests-texts {
	padding-right: 50px;
}

.text-row {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 45px;
}

.text-row-label {
	font-size: 22px;
	text-align: right;
}

.text-row-box {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 22px;
	height: 42px;
	margin: 0 0 0 41px;
	padding: 0 15px;
	text-align: center;
	width: 114px;
}

/* Room page */

.choice-row-with-info {
	justify-content: flex-start;
}

.choice-row-with-info .choice-row-text {
	text-align: right;
	width: calc(50% - 70px);
}

.choice-row-with-info input[type="radio"].choice-row-box {
	margin: 0 61px 0 0;
}

button.choice-info {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	cursor: pointer;
	font-size: 12px;
	font-weight: 400;
	padding: 5px 13px;
	transition: all 0.2s ease-out;
}

button.choice-info:hover {
	background-color: var(--primary-color);
	color: var(--black-color);
}

.slick-slider {
    visibility: hidden;
}

.slick-slider.slick-initialized {
    visibility: visible;
}

.slick-arrow {
	background-color: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	height: 100%;
	padding: 0 27px;
	position: absolute;
	top: 0;
	z-index: 2;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
	transform: rotate(180deg);
}

.time-select-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 33px 0 40px;
}

.time-select {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	padding: 6px 10px;
	transition: all 0.3s ease-in;
	width: 184px;
}

.time-select:hover {
	background-color: var(--primary-color);
	color: var(--black-color);
}

.time-select.time-noon {
	margin-right: 47px;
}

.time-select.active {
	background-color: var(--primary-color);
	color: var(--black-color);
}

.time-input {
	text-align: center;
}

.time-input label {
	color: var(--primary-color);
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 15px;
}

.time-input input {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 300;
	height: 32px;
	margin: 0 auto;
	text-align: center;
	width: 120px;
}

/* My location page */

.form-box {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	height: 42px;
	margin: 0 0 18px;
	padding: 0 14px;
	width: 100%;
}

.form-box::placeholder, .form-box::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}

.form-box.form-box-half {
	width: calc(50% - 7px);
}

#street-number.form-box.form-box-half {
	margin-right: 10px;
}

.form-area {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	height: 170px;
	padding: 14px;
	width: 100%;
}

.form-area::placeholder, .form-area::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}

/* Calendar */

.calendar {
	margin-top: 45px;
}

.calendar h2 {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	margin: 20px 0;
}

.calendar table {
	margin: 0 auto;
	max-width: 100%;
	text-align: center;
	width: 470px;
}

.calendar th {
	font-size: 16px;
	font-weight: 400;
	padding: 5px;
}

.calendar td {
	width: calc(100% / 7);
}

.calendar td h4{
	font-size: 16px;
	font-weight: 300;
	margin: 0;
	padding: 5px;
}

h4.calendar-day {
	cursor: pointer;
}

.calendar-day.picked {
	background-color: var(--primary-color);
	color: var(--black-color);
}

/*
.today{
	background-color: var(--primary-color);
}
*/

.calendar-month-year {
	display: inline-block;
	text-align: center;
	width: 187px;
}

.calendar-month-change {
	cursor: pointer;
	padding: 10px;
}

.calendar-month-change:hover {
	color: var(--primary-color);
}

.calendar-month-change-prev {
	margin-right: 20px;
}

.calendar-month-change-next {
	margin-left: 20px;
}

/* Menu page */

.menu-top-title {
	font-size: 18px;
	line-height: 30px;
	margin-top: 41px;
	text-align: center;
}

.menu-bottom-title {
	font-size: 22px;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
}

.decor-two-lines-menu {
    margin: 0 0 46px;
    text-align: center;
}

.main-center-bottom-decor.main-center-bottom-decor-bottom-margin {
	margin: 100px 0;
}

.main-center-bottom-decor.main-center-bottom-decor-dishes {
	margin: 100px 0 54px;
}

.menu-picks {
	display: flex;
	flex-wrap: wrap;
}

.menu-pick {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 5% 57px 0;
	width: 30%;
}

.menu-pick:nth-of-type(3n) {
	margin-right: 0;
}

.menu-pick-delete {
	align-items: center;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 25px;
	justify-content: center;
	margin-bottom: 11px;
	position: relative;
	transition: all 0.2s ease-out;
	width: 25px;
}

.menu-pick-delete:hover {
	background-color: var(--primary-color);
}

.menu-pick-delete svg {
	transition: all 0.2s ease-out;
}

.menu-pick-delete:hover svg  {
	fill: var(--black-color);
}

.delete-title {
	background-color: var(--green-color);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	display: none;
	font-size: 12px;
	left: 50%;
	padding: 3px 10px;
	position: absolute;
	top: -18px;
	z-index: 2;
}

.menu-pick-delete:hover .delete-title {
	display: block;
}

h4.menu-pick-title {
	font-size: 16px;
	font-weight: 300;
	margin: 11px 0 23px;
	text-align: center;
}

button.menu-pick-info {
	background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 12px;
    transition: all 0.2s ease-out;
}

button.menu-pick-info:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
}

.menu-pick.menu-pick-add {
	order: 1;
}

.menu-pick-add-inner {
	border: 1px solid #fff;
	cursor: pointer;
	margin-top: 36px;
	padding-bottom: calc(106.63% - 2px);
	position: relative;
	transition: all 0.3s ease-out;
	width: 100%;
}

.menu-pick-add-inner:hover {
	border: 1px solid var(--primary-color);
}

.menu-pick-add-horizontal {
	background-color: #fff;
	height: 2px;
	left: calc(50% - 24px);
	position: absolute;
	top: calc(50% - 1px);
	transition: all 0.3s ease-out;
	width: 48px;
}

.menu-pick-add-inner:hover .menu-pick-add-horizontal {
	background-color: var(--primary-color);
}

.menu-pick-add-vertical {
	background-color: #fff;
	height: 48px;
	left: calc(50% - 1px);
	position: absolute;
	top: calc(50% - 24px);
	transition: all 0.3s ease-out;
	width: 2px;
}

.menu-pick-add-inner:hover .menu-pick-add-vertical {
	background-color: var(--primary-color);
}

.main-center-bottom-decor.main-center-bottom-decor-dishes-separator {
	margin: 0;
}

.popup.popup-food .popup-middle {
	max-width: 100%;
	width: 1071px;
}

.popup.popup-food .popup-p {
	margin-bottom: 70px;
}

.popup-food-images {
	display: inline-block;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	width: 640px;
}

.popup-food-image-background {
	left: 0;
	max-width: 68%;
	position: absolute;
	top: 0;
}

.popup-food-image {
	display: block;
	margin-left: auto;
	max-width: 78.13%;
	padding-top: 10.31%;
	position: relative;
}

.popup h2.main-title-text {
	display: block;
}

.popup.popup-picks .popup-inner {
	max-width: 90%;
	width: 1071px;
}

.menu-picks.popup-menu-picks {
	margin: 70px auto;
	max-width: 100%;
	width: 632px;
}

.menu-pick.popup-menu-pick {
	cursor: pointer;
	margin: 0 5% 46px 0;
}

.menu-pick.popup-menu-pick:nth-of-type(3n) {
  margin-right: 0;
}

.menu-pick.popup-menu-pick .menu-pick-photo {
	overflow: hidden;
}

.menu-pick.popup-menu-pick .menu-pick-photo img {
	transition: transform 0.3s ease-out;
}

.menu-pick.popup-menu-pick:hover .menu-pick-photo img {
	transform: scale(1.2);
}

.menu-pick.popup-menu-pick h4.menu-pick-title {
	font-size: 15px;
	line-height: 20px;
	margin: 16px auto 0;
	max-width: 72%;
}

.served-choice-row {
	display: none;
}

#inner.event-1 .served-choice-row {
	display: flex;
}

.choices.menu-specific-choices .choice-row {
	display: none;
}

#inner.menu-type-1 .choices.menu-specific-choices .choice-row.event-all.menu-type-1, #inner.menu-type-2 .choices.menu-specific-choices .choice-row.event-all.menu-type-2 {
	display: flex;
}

#inner.event-1 .choices.menu-specific-choices .choice-row.event-1.menu-type-all, #inner.event-2 .choices.menu-specific-choices .choice-row.event-2.menu-type-all, #inner.event-3 .choices.menu-specific-choices .choice-row.event-3.menu-type-all {
	display: flex;
}

#inner.event-1.menu-type-1 .choices.menu-specific-choices .choice-row.event-1.menu-type-1 {
	display: flex;
}

#inner.event-2.menu-type-1 .choices.menu-specific-choices .choice-row.event-2.menu-type-1 {
	display: flex;
}

#inner.event-3.menu-type-1 .choices.menu-specific-choices .choice-row.event-3.menu-type-1 {
	display: flex;
}

#inner.event-1.menu-type-2 .choices.menu-specific-choices .choice-row.event-1.menu-type-2 {
	display: flex;
}

#inner.event-2.menu-type-2 .choices.menu-specific-choices .choice-row.event-2.menu-type-2 {
	display: flex;
}

#inner.event-3.menu-type-2 .choices.menu-specific-choices .choice-row.event-3.menu-type-2 {
	display: flex;
}

#inner.menu-type-2 .specific-menu .menu-top-title {
	display: none;
}

/* Drinks page */

.golden-p-big {
	color: var(--primary-color);
	font-size: 22px;
	margin-bottom: 98px;
	text-align: center;
}

h3.secondary-title {
	font-size: 22px;
	font-weight: 300;
	margin: 83px 0 7px;
	text-align: center;
}

.decor-two-lines {
	margin: 0 0 100px;
	text-align: center;
}

/* Equipment page */

.golden-p-medium {
	color: var(--primary-color);
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 95px;
	text-align: center;
}

/* Choices page */

.screen-9 .decor-two-lines {
    margin: 0 0 56px;
}

.my-choices {
	margin: 0 auto;
	max-width: 100%;
	width: 465px;
}

.my-choices-row {
	border-bottom: 1px solid #3d3e35;
	display: flex;
	justify-content: space-between;
	margin-bottom: 19px;
	padding-bottom: 15px;
}

.my-choices-row:last-of-type {
	border-bottom: 0;
}

.my-choices-row-title {
	color: var(--primary-color);
	font-size: 22px;
	text-align: right;
	width: calc(50% - 42px);
}

.my-choices-row-choice {
	font-size: 22px;
	width: calc(50% - 42px);
}

.my-choices-row-choice-title {
	color: var(--primary-color);
	font-size: 18px;
	margin: 23px 0 7px;
	text-transform: uppercase;
}

.my-choices-row-choice-small {
	font-size: 20px;
	line-height: 35px;
}

.my-choices-row-choice-small.my-choices-row-choice-small-dish {
	margin-bottom: 15px;
}

#equipment-choice-seats {
	margin-bottom: 15px;
}

#inner.my-location .my-choices-row-venue {
	display: none;
}

.my-choices-row-my-location {
	display: none;
}

#inner.my-location .my-choices-row-my-location {
	display: flex;
}

#my-location-choice .my-choices-row-choice-title:first-of-type {
	margin-top: 0;
}

.no-cocktails .my-choices-row-choice-title {
	margin-top: 0;
}

.my-choices-row-equipment {
	display: none;
}

#inner.my-location .my-choices-row-equipment {
	display: flex;
}

/* Responsive configuration */

@media (max-width: 1699px) and (min-width: 1200px) {
	
}

@media (max-width: 1199px) and (min-width: 992px) {
	.container {
		padding: 0 30px;
	}
	
	.main-menu {
		width: 534px;
	}
	
	.main-container {
		width: calc(100% - 202px);
	}
	
	.button-navigation {
		width: 80px;
	}
	
	.popup-inner {
		max-width: 90%;
	}
}

@media (max-width: 991px) {
	.container {
		padding: 0 20px;
	}
	
	.main-menu {
		width: 429px;
	}
	
	.main-container {
		width: calc(100% - 160px);
	}
	
	.button-navigation {
		font-size: 26px;
		width: 60px;
	}
	
	.button-navigation span {
		font-size: 26px;
	}
	
	.popup-inner {
		max-width: 90%;
		min-width: 90%;
	}
	
	.main-container-center {
		padding: 49px 30px 28px;
	}
	
	.main-container-left, .main-container-right {
		background-size: cover;
		min-width: 40px;
		width: 40px;
	}
	
	.choice-row-text {
		font-size: 20px;
		margin-right: 40px;
	}
	
	.choice-row-with-info input[type="radio"].choice-row-box {
		margin: 0 40px 0 0;
	}
	
	.choice-row-with-info .choice-row-text {
		max-width: calc(50% - 53px);
		width: calc(50% - 53px);
	}
	
	.text-row-label {
		font-size: 20px;
	}
	
	.text-row-box {
		font-size: 20px;
	}
	
	h4.menu-pick-title {
		font-size: 15px;
	}
	
	h2.main-title-text {
		font-size: 24px;
		line-height: 34px;
	}
	
	.my-choices {
		width: 429px;
	}
	
	.my-choices-row-title {
		font-size: 20px;
		width: calc(50% - 32px);
	}
	
	.my-choices-row-choice {
		font-size: 20px;
		width: calc(50% - 32px);
	}
	
	.calendar table {
		width: min(100%, 470px);
	}
}

@media (max-width: 768px) {
	.main-container {
		width: 100%;
	}
	
	.button-navigation {
		background-color: #101e23;
		bottom: 0;
		font-size: 24px;
		height: 40px;
		position: fixed;
		writing-mode: unset;
		width: 50%;
	}
	
	.button-navigation:hover {
		background-color: #101e23;
		border-radius: 0;
		color: var(--primary-color);
	}
	
	.button-navigation span {
		font-size: 24px;
	}
	
	.button-navigation:hover span {
		color: var(--primary-color);
	}
	
	.button-previous {
		left: 0;
		transform: none;
	}
	
	.button-next {
		border-left: 1px solid var(--primary-color);
		right: 0;
	}
	
	.main-menu {
		background-color: #101e23;
		border-bottom: 1px solid var(--primary-color);
		border-top: 1px solid var(--primary-color);
		bottom: 40px;
		left: 0;
		margin: 0;
		padding: 10px 20px;
		position: fixed;
		width: 100%;
	}
	
	#inner.screen-1 .button-navigation.button-previous {
		color: #101e23;
	}
	
	#inner.screen-1 .button-navigation.button-previous:hover {
		background-color: #101e23;
		color: #101e23;
	}
	
	#inner.screen-1 .button-navigation.button-previous span {
		color: #101e23;
		display: inline;
	}
	
	#inner.screen-1 .button-navigation.button-previous span:hover {
		background-color: #101e23;
		color: #101e23;
	}
	
	.main-container-center {
		padding: 49px 20px 135px;
	}
	
	.main-logo {
		margin-bottom: 100px;
	}
	
	.main-title {
		margin-bottom: 80px;
	}
	
	.home-logo {
		margin-bottom: 60px;
		max-width: 80%;
	}
	
	.home-top-decoration {
		margin-bottom: 40px;
	}
	
	h1.home-title {
		font-size: 26px;
		margin: 0 0 26px;
	}
	
	p.home-message {
		font-size: 18px;
		line-height: 32px;
		margin-bottom: 30px;
	}
	
	.popup-left, .popup-right {
		background-size: cover;
		width: 30px;
	}
	
	.popup-middle {
		padding: 34px 30px 50px;
		width: calc(100% - 60px);
	}
	
	.main-container-left, .main-container-right {
		min-width: 30px;
		width: 30px;
	}
	
	.choice-row-text {
		font-size: 16px;
		margin-right: 25px;
		max-width: calc(50% - 38px);
	}
	
	.text-row-label {
		font-size: 16px;
	}
	
	.text-row-box {
		font-size: 16px;
		margin: 0 0 0 25px;
		width: 100px;
	}
	
	.guests-texts {
		padding-right: 15px;
	}
	
	.choice-row-with-info input[type="radio"].choice-row-box {
		margin: 0 25px 0 0;
	}
	
	.choice-row-with-info .choice-row-text {
		max-width: calc(50% - 38px);
		width: calc(50% - 38px);
	}
	
	.time-select {
		width: 150px;
	}
	
	.time-select.time-noon {
		margin-right: 30px;
	}
	
	h4.menu-pick-title {
		font-size: 14px;
	}
	
	button.menu-pick-info {
		padding: 5px 8px;
	}
	
	.popup-close {
		margin-bottom: 46px;
	}
	
	.menu-pick {
		margin: 0 5% 40px 0;
	}
	
	.golden-p-big {
		font-size: 20px;
		margin-bottom: 80px;
	}
	
	.slick-arrow {
		padding: 0 20px;
	}
	
	.slick-arrow img {
		max-width: 20px;
	}
	
	.my-choices {
		width: 341px;
	}
	
	.my-choices-row-title {
		font-size: 16px;
		width: calc(50% - 20px);
	}
	
	.my-choices-row-choice {
		font-size: 16px;
		width: calc(50% - 20px);
	}
	
	.my-choices-row-choice-title {
		font-size: 16px;
	}
	
	.my-choices-row-choice-small {
		font-size: 16px;
		line-height: 30px;
	}
	
	h3.secondary-title {
		font-size: 20px;
		margin: 73px 0 7px;
	}
	
	.screen-9 .decor-two-lines {
		margin: 0 0 50px;
	}
	
	.golden-p-medium {
		margin-bottom: 80px;
	}
	
	#loader img {
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
	
	.main-container-left, .main-container-right {
		min-width: 25px;
		width: 25px;
	}
	
	.home-logo {
		margin-bottom: 50px;
		margin-top: 0;
		max-width: 70%;
	}
	
	.home-top-decoration {
		margin-bottom: 25px;
		max-width: 70px;
	}
	
	h1.home-title {
		font-size: 24px;
		margin: 0 0 24px;
	}
	
	.home-middle-decoration {
		margin-bottom: 30px;
	}
	
	.home-overlayer {
		padding: 40px 15px;
	}
	
	.main-logo {
		margin-bottom: 60px;
	}
	
	.main-container-center {
		padding: 30px 15px 50px;
	}
	
	button.home-button {
		margin-bottom: 50px;
	}
	
	.main-menu {
		padding: 10px 15px;
	}
	
	.main-menu-item {
		height: 25px;
		width: 25px;
	}
	
	.main-menu-item svg {
		max-height: 75%;
		max-width: 75%;
	}
	
	.button-navigation {
		font-size: 20px;
	}
	
	.button-navigation span {
		font-size: 20px;
	}
	
	input[type="radio"].choice-row-box, input[type="checkbox"].choice-row-box {
		margin: 0 0 10px;
		width: 15px;
	}
	
	input[type="radio"].choice-row-box::before, input[type="checkbox"].choice-row-box::before {
		height: 15px;
		margin-right: calc(50% - 7px);
		width: 15px;
	}
	
	.choice-row-text {
		margin-right: 0;
		max-width: 100%;
		order: 1;
	}
	
	.choice-row {
		flex-direction: column;
		margin-bottom: 50px;
	}
	
	.main-center-bottom-decor {
		margin: 70px 0 50px;
	}
	
	#loader img {
		max-width: 200px;
	}
	
	.main-title {
		margin-bottom: 70px;
	}
	
	.main-center-2 .golden-p {
		margin: 0 0 50px;
	}
	
	p.home-message {
		font-size: 17px;
		line-height: 28px;
	}
	
	.calendar h2 {
		font-size: 18px;
		margin: 10px 0;
	}
	
	.calendar-month-year {
		font-size: 16px;
		width: 160px;
	}
	
	.calendar-month-change {
		padding: 5px;
	}
	
	.calendar-month-change-prev {
		margin-right: 5px;
	}
	
	.calendar-month-change-next {
		margin-left: 5px;
	}
	
	.calendar {
		margin-bottom: 30px;
	}
	
	.calendar th {
		font-size: 12px;
		padding: 4px 0;
	}
	
	.calendar td h4 {
		font-size: 14px;
		padding: 4px 0;
	}
	
	.popup-left, .popup-right {
		width: 25px;
	}
	
	.popup-middle {
		padding: 34px 15px 50px;
		width: calc(100% - 50px);
	}
	
	.popup-close {
		margin-bottom: 30px;
	}
	
	.popup .main-title-decor {
		margin: 0 auto 50px;
	}
	
	.popup-slideshow {
		margin-top: 60px;
	}
	
	.guests-texts {
		padding-right: 0;
	}
	
	.text-row {
		display: block;
		text-align: center;
	}
	
	.text-row-label {
		display: block;
		margin: 0 0 20px;
		text-align: center;
	}
	
	.text-row-box {
		margin: 0;
	}
	
	.time-select {
		font-size: 12px;
		padding: 5px 10px;
		width: 95px;
	}
	
	.time-select.time-noon {
		margin-right: 15px;
	}
	
	.time-select-buttons {
		margin: 23px 0 35px;
	}
	
	.screen-4 .main-center-4 {
		padding-bottom: 50px;
	}
	
	.choice-row-with-info input[type="radio"].choice-row-box {
		margin: 0 0 10px;
	}
	
	button.choice-info {
		margin: 10px 0 0;
		order: 2;
	}
	
	.choice-row-with-info {
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	
	.choice-row-with-info .choice-row-text {
		max-width: 100%;
		text-align: center;
		width: 100%;
	}
	
	.form-box {
		height: 38px;
	}
	
	.form-area {
		padding: 10px 14px;
	}
	
	.menu-pick {
		margin: 0 0 40px 0;
		width: 100%;
	}
	
	.menu-pick.popup-menu-pick {
		margin: 0 0 40px 0;
	}
	
	h2.main-title-text {
		font-size: 20px;
		line-height: 30px;
	}
	
	.golden-p-big {
		font-size: 18px;
		margin-bottom: 70px;
	}
	
	.decor-two-lines {
		margin: 0 0 60px;
	}
	
	.my-choices-row {
		flex-direction: column;
	}
	
	.my-choices-row-title {
		margin: 0 0 15px;
		text-align: center;
		width: 100%;
	}
	
	.my-choices-row-choice {
		text-align: center;
		width: 100%;
	}
	
	.my-choices {
		width: 100%;
	}
	
	.my-choices-row-choice-title {
		font-size: 15px;
		margin: 20px 0 12px;
	}
	
	.my-choices-row-choice-small {
		line-height: 22px;
	}
	
	.my-choices-row-choice-small.my-choices-row-choice-small-dish {
		margin-bottom: 10px;
	}
	
	.screen-9 .main-center-9 {
		padding-bottom: 50px;
	}
	
	.screen-9 .decor-two-lines {
		margin: 0 0 40px;
	}
	
	h3.secondary-title {
		font-size: 18px;
		margin: 60px 0 7px;
	}
	
	.decor-two-lines-menu {
		margin: 0 0 40px;
	}
	
	.menu-top-title {
		font-size: 16px;
		line-height: 28px;
		margin-top: 36px;
	}
	
	.menu-bottom-title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.main-center-bottom-decor.main-center-bottom-decor-dishes {
		margin: 80px 0 50px;
	}
	
	.main-scrollable {
		padding-bottom: 30px;
	}
	
	.menu-pick-add-inner {
		max-width: 196px;
		padding-bottom: min(calc(106.63% - 2px), 208px);
	}
	
	.main-center-bottom-decor.main-center-bottom-decor-bottom-margin {
		margin: 80px 0;
	}
}