/*
 * Made by Erik Terwan
 * 24th of November 2015
 * All rights reserved
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

body {
	font-family: "Roboto", sans-serif;
}
ham {
	position: relative;
	top: -36px;
	left: -30px;
}
ham a {
	text-decoration: none;
	color: #232323;

	-webkit-transition: color 0.3s ease;

	transition: color 0.3s ease;
}

ham a:hover {
	color: tomato;
}

ham button:hover {
	color: tomato;
}

#menuToggle {
	display: block;
	position: relative;
	top: 50px;
	left: 50px;
    max-width: 40px;
	z-index: 1;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#menuToggle input {
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;

	cursor: pointer;

	opacity: 0;
	/* hide this */
	z-index: 2;
	/* and place it over the hamburger */
	-webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */

#menuToggle span {
	display: block;
	width: 33px;
	height: 3px;
	margin-bottom: 6px;
	position: relative;

	background: white;
	border-radius: 3px;

	z-index: 1;

	-webkit-transform-origin: 4px 0px;

	transform-origin: 4px 0px;

	-webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	opacity 0.55s ease,
	-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);

	transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	opacity 0.55s ease,
	-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	opacity 0.55s ease;

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	opacity 0.55s ease,
	-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menuToggle span:first-child {
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	-webkit-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */

#menuToggle input:checked ~ span {
	opacity: 1;
	-webkit-transform: rotate(45deg) translate(-2px, -1px);
	transform: rotate(45deg) translate(-2px, -1px);
	background: #232323;
}

/*
 * But let's hide the middle one.
 */

#menuToggle input:checked ~ span:nth-last-child(3) {
	opacity: 0;
	-webkit-transform: rotate(0deg) scale(0.2, 0.2);
	transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */

#menuToggle input:checked ~ span:nth-last-child(2) {
	-webkit-transform: rotate(-45deg) translate(0, -1px);
	transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */

#menu {
	position: absolute;
	width: 350px;
	margin: -100px 0 0 -50px;
	padding: 50px;
	padding-top: 125px;

	background: #ededed;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	/* to stop flickering of text in safari */
	-webkit-transform-origin: 0% 0%;

	transform-origin: 0% 0%;
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);

	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);

	transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
	padding: 10px 0;
	font-size: 17px;
    text-transform: uppercase;
}

/*
 * And let's slide it in from the left
 */

#menuToggle input:checked ~ ul {
	-webkit-transform: none;
	transform: none;
}

.mobiledrop {
	display: none;
	width: 100%;
	padding: 10px 10px;
	position: relative;
	top: -7px;
}

.buttons {
	text-align: left;
	width: 280px;
	-webkit-font-smoothing: antialiased;
	font-size: 17px;
	border: none;
	cursor: pointer;
	background-color: #ededed;
	background-repeat: no-repeat;
	background-position: right;
	color: #232323;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
    background-size: 25px;
	background-image: url(https://www.e-aviokarte.hr/down_ikona.png);
    text-transform: uppercase;
    padding: 10px 0px;
}
.mobiledrop a:hover {
	color: #198cc2;
}