html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
* {
	box-sizing: border-box;
}
body {
	background-color: black;
	background-image: url("/img/back.jpg");
	background-attachment: fixed;
	background-repeat: x-repeat;
	color: white;
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	font-size: 1.2em;
	font-size: 1.1vw;
	display: flex;
	flex-direction: column;
}
a {
	text-decoration: none;
}
header {
	display: flex;
	justify-content: space-between;
	background-color: #000;
	border-bottom: 2px solid white;
	width: 100%;
}
header a {
	color: white;
	text-decoration: underline;
}
header > a {	
	width: 36%;
}
header > a > img {	
	width: 100%;
}
header > div {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
header > div > div {
	display: flex;
	justify-content: space-around;
}
header > div > div > p {
	margin-top: 0;
	margin-bottom: 0;
}
header > div > div > p > a {
	text-decoration: none;
}
header #profile {
	justify-content: flex-end;
}
header #profile p {
	border-bottom: 1px solid white;
	margin-right: 1em;
	margin-top: 0.4em;
	margin-bottom: 0.3em;
	
	padding-bottom: 0.1em;
}
header nav > ul {
	display: flex;
	justify-content: space-around;
}
header nav > ul > li {
	list-style-type: none;
	padding: 0.6em;
	border: 1px solid #333;
	border-radius: 10px;
}
header nav a {
	color: #5fadff;
	text-decoration: none;
	font-weight: bold;
}
header nav a:hover {
	color: red;
}
header #languageSelect {
	background: none;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	border: none;
}
header #languageSelect option {
	background: black;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	border: none;
}
header #logoutButton {
	background: none;
	height: 2em;
	border: none;
	cursor: pointer;
}
header #logoutButton img {
	height: inherit;
}
.currentPage {
	color: red;
}
main {
	flex-grow: 1;
	padding: 3%;
	font-size: 1.2em;
	font-size: 1.6vw;
	line-height: 1.5em;
	text-indent: 2em;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.withSubmenus {
	display: flex;
	justify-content: space-around;
}
h1, h2, h3, h4, h5, h6 {
	text-indent: 0;
}
h3 {
	text-align: center;
}
.bubble {
	background-color: #ccc;
	border-radius: 6px;
	text-indent: 0;
	margin: 1em;
	padding: 0.5em 1.5em;
	color: black;
}
.submenu {
	flex-basis: 30%;
	height: 100%;
	text-align: center;
	cursor: pointer;
	padding: 2em;
}
.submenu h3 {
	font-size: 1em;
	margin: 0;
	margin-bottom: 0.5em;
	padding-bottom: 0.2em;
	border-bottom: 2px solid gray;
	height: 5em;
}
.submenu img {
	height: 70%;
	width: 100%;
}
.newsItem {
	border-top: 2px solid white;
	display: flex;
	width: 80%;
	text-indent: 1.7em;
	margin-left: auto;
	margin-right: auto;
}
.newsText {
	flex-basis: 70%;
}
.newsMedia {
	flex-basis: 50%;
	padding: 2em;
}
.newsMedia * {
	width: 100%;
	min-height: 300px;
	height: auto;
}
mark {
	background: none;
	color: #600;
}
main#home {
	width: 100%;
}
#about div#aboutCompany {
	font-weight: bold;
}
#about div#aboutCompany img {
	float: left;
	margin-right: 2em;
}
#about a {
	color: white;
	text-decoration: underline;
}
#about #arrow {
	font-size: 1.5em;
	display: inline-block;
}
#aboutQuestions > p {
	text-decoration: underline;
	cursor: pointer;
}
#aboutQuestions > div {
	display: none;
	margin-left: 4em;
}
#aboutQuestions > div > img {
	height: 120px;
	width: auto;
}
#aboutCompanyDetails, #aboutCompanyAchievements {
	display: none;
}
#aboutCompanyAchievements img {
	width: 100%;
}
#productsRent > div {
	margin: 2em;
}
#productsRent a.moreDetails {
	color: #006;
	text-decoration: underline;
}
.emailLink {
	color: white;
	font-weight: bold;
	text-decoration: underline;
}
.videoGallery, .imageGallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.videoGallery > *, .imageGallery > * {
	flex-basis: 40%;
	min-height: 300px;
}
.imageGallery > * {
	margin: 1em;
	height: auto;
}
#admin .imageGallery {
	text-align: center;
}
#admin #manageImageGallery > form input {
	width: 30%;
}
h2.section {
	background-color: #404040;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	height: 2em;
	display: flex;
	align-items: center;
    justify-content: center;
}
#toTop {
	position: fixed;
	bottom: 40%;
	right: 1em;
	color: white;
	font-weight: bold;
	font-size: 2em;
}
#prices > div.warning {
	display: flex;
}
#prices > div.warning > div {
	text-align: center;
}
#prices .submenu {
	cursor: default;
}
form button.book {
	background-color: #00ff00;
	border-radius: 6px;
	padding: 12px 24px 12px 24px;
	color: #000;
	font-weight: bold;
	border: none;
	font-size: 1em;
	cursor: pointer;
}
#prices .zoneDescription h3 {
	text-align: left;
}
#prices .zoneDescription ul {
	margin-left: 2em;
	text-indent: 0;
}
#rules {
	text-indent: 0;
}
form.regularForm label {
	width: 40%;
	display: inline-block;
	vertical-align: top;
}
form.regularForm input, form.regularForm select {
	width: 20%;
	font-size: 1em;
	display: inline-block;
	padding: 1px 2px;
	color: black;
	background-color: #fff;
}
form.regularForm textarea {
	width: 40%;
	height: 10em;
	font-size: 1em;
	display: inline-block;
}
form.regularForm input[type="time"] {
	width: 10%;
}
form.regularForm input[type="checkbox"] {
	width: auto;
}
form.regularForm button {
	border-radius: 6px;
	padding: 12px 24px 12px 24px;
	color: #000;
	font-weight: bold;
	border: none;
	font-size: 1em;
	cursor: pointer;
	margin-left: 2em;
}
form.regularForm ::placeholder {
  color: #ccc;
}
#social {
	display: flex;
	justify-content: center;
	text-indent: 0;
}
#social * {
	margin: 0 0.5em;
}
.regularLink {
	color: #fff;
	text-decoration: underline;
}
#progressBar {
	display: flex;
	align-items: center;
	text-indent: 0;
	width: 25%;
	margin: 1em auto 1em auto;
}
#progressBar .bubble {
	margin: 0;
	padding: 0.6em;
	line-height: 0.6em;
	font-size: 1em;
}
#progressBar .line {
	flex-grow: 1;
	background-color: #ccc;
	height: 3px;
}
#progressBar div.active {
	background-color: #0f0;
}
#book form.regularForm label {
	width: 50%;
	text-indent: 0;
}
#book fieldset {
	display: none;
	border-radius: 10px;
}
#book fieldset:first-child {
	display: block;
}
#book mark, #admin mark, #contacts mark {
	background: none;
	color: #faa;
}
#book #noTimeAvailable {
	display: none;
}
form.regularForm #step4 input[type="number"] {
	text-align: center;
}
#priceLabel {
	width: fit-content;
	font-weight: bold;
}
#admin > div {
	display: none;
	margin-left: 4em;
}
#admin #mediaImage, #admin #mediaYoutubeVideo {
	display: none;
}
#admin form.regularForm input, #admin form.regularForm select, #admin form.regularForm textarea {
	width: 60%;
}

#admin form.regularForm input[type="time"] {
	width: 20%;
}
#admin form.regularForm input[type="checkbox"] {
	width: auto;
}
#admin table {
	border-collapse: collapse;
	text-align: center;
	width: 100%;
}
#admin th, #admin td {
	border: 2px solid white;
}
#admin li > p {
	margin: 0;
}
#admin ul.spoiler {
	display: none;
}
#admin .tip {
	text-indent: 6em;
	font-style: italic;
}
.fieldDetails {
	margin-left: 1em;
}
.error {
	color: #f55;
	font-weight: bold;
	margin-left: 1em;
}
.errorInactive {
	opacity: 0;
}
footer {
	display: flex;
	justify-content: space-around;
	background-color: black;
	border-top: 2px solid white;
	min-height: 5em;
}
footer a {
	color: white;
}
footer a:hover {
	text-decoration: none;
}
footer > p {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
footer > p:first-child {
	font-style: italic;
	text-align: center;
	justify-content: flex-start;
}
footer > p:first-child > span:first-child {
	font-weight: bold;
}
footer > p:first-child > span:last-child {
	font-size: 0.9em;
}
footer > p:last-child {
	position: relative;
}
footer > p:last-child img {
	height: 33px;
	position: absolute;
	top: -15%;
	margin-left: 5px;
}