﻿@charset "UTF-8";

.current-page {
}

#menu {
	z-index: 50;
	position: fixed;
}

#button-home {
	display: none !important;
}

@media only screen and (min-width: 1260px) {
	.menu-small {
		display: none !important;
	}

	#menu {
		top: 140px;
		left: 50vw;
		transform: translate(-600px, 0);
	}

	#menu a {
		display: block;
		width: 180px;
		height: 48px;
		box-sizing: border-box;
		padding: 12px 0 0 20px;
		margin: 3px 0 0 0;
		border: 1px solid #782f40;
		border-radius: 12px;
		background: linear-gradient(#f1e6b2, #fdd26e);
		opacity: .7;
		transition: opacity .3s, width .3s;
	}

	#menu a:hover, #menu a:active {
		color: #782f40;
		width: 200px;
		opacity: 1;
	}
}

@media only screen and (min-width: 800px) and (max-width: 1259px) {
	.current-page {
		display: none !important;
	}
	.menu-small {
		display: none !important;
	}

	#menu {
		top: 150px;
		left: 50%;
		transform: translateX(-50%);
		height: 40px;
		width: 90%;
		max-width: 800px;
		display: table;
		table-layout: fixed;
		box-sizing: border-box;
	}

	#menu a {
		display: table-cell;
		text-align: center;
		font-size: 15px;
		background: linear-gradient(#f1e6b2, #fdd26e);
		box-sizing: border-box;
		border-right: 1px solid #782f40;
		border-bottom: 1px solid #782f40;
		padding: 9px;
		border-radius: 0 0 12px 12px;
	}

	#menu a:active, #menu a:hover {
		background: #782f40;
		color: #e5e1e6;
	}
}

@media only screen and (max-width: 799px) {
	#menu {
		width: 99%;
		top: 102%;
		left: 50%;
		transform: translateX(-50%);
		background-color: rgba(12, 35, 64, .8);
		padding: 20px 0 30px 0;
		box-sizing: border-box;
		border: 1px solid #782f40;
		border-radius: 0 0 12px 12px;
		transition: top .3s;
	}

	#menu a {
		width: 80%;
		height: 45px;
		padding: 8px 0 0 0;
		margin: 0 auto 6px auto;
		color: #782f40;
		background: linear-gradient(#f1e6b2, #fdd26e);
		text-align: center;
		font-size: 19px;
		box-sizing: border-box;
		border: 1px solid #782d40;
		border-radius: 12px;
		display: block;
	}

	#menu a:active, #menu a:hover {
		background: linear-gradient(#fdd26e, #f1e6b2);
		color: #0c2340;
	}

	.menu-small {
		position: fixed;
		top: 120px;
		height: 50px;
		width: 99%;
		left: 50%;
		transform: translateX(-50%);
		box-sizing: border-box;
	}

	#menu-checkbox {
		cursor: pointer;
		z-index: 52;
		transition: top .3s;
		opacity: 0;
	}

	#menu-label {
		text-align: center;
		font-size: 24px;
		box-sizing: border-box;
		padding: 6px 0 0 0;
		margin: 0;
		background: linear-gradient(#f1e6b2, #fdd26e);
		border-right: 1px solid #782f40;
		border-bottom: 1px solid #782f40;
		border-left: 1px solid #782f40;
		border-radius: 0 0 12px 12px;
		transition: border-radius .3s, top .3s;
		z-index: 51;
	}

	#menu-label span {
		display: none;
	}

	#menu-checkbox:checked {
		top: 120px;
	}

	#menu-checkbox:checked ~ #menu-label {
		border: none;
		background: none;
		background-color: rgba(12, 35, 64, .8);
		color: #e5e1e6;
		border-radius: 12px 12px 0 0;
		top: 120px;
	}

	#menu-checkbox:checked ~ #menu-label span {
		display: inline-block;
	}

	#menu-checkbox:checked ~ #menu {
		top: 170px;
	}
}