@charset "UTF-8";
/* Pizzaria Transalpina™ - CSS Main */

body {
	font-family: 'PT';
	font-weight:300;
	font-size:14px;
	color: rgb(33,33,33);
	margin:0;
	background-color: rgb(255,255,255);
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	overflow-x: hidden;
	overflow-y: scroll;
}

h1{padding: 0; margin: 0; font-family: 'PT'; font-weight: 500; font-size: 50px; text-transform: uppercase;}
h2{padding: 0; margin: 0; font-family: 'PT'; font-weight: 500; font-size: 35px; text-transform: uppercase;}
h3{padding: 0; margin: 0; font-family: 'PT'; font-weight: 500; font-size: 22px; text-transform: uppercase;}
h4{padding: 0; margin: 0; font-family: 'PT'; font-weight: 500; font-size: 18px; text-transform: uppercase;}
h5{padding: 0; margin: 0; font-family: 'PT'; font-weight: 500; font-size: 14px; text-transform: uppercase;}
h6{padding: 0; margin: 0; font-family: 'PT'; font-weight: 500; font-size: 12px; text-transform: uppercase;}
p{padding: 0; margin: 0; font-family: 'PT';}

blue{
	color: rgba(50,152,203,1);
}

cream{
	color: rgba(225,177,114,1);
}

red{
	color: rgba(236,28,36,1);
}

.pizzamenu {
	display: none;
}

.back-page {
	display: none;
}

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(8,16,16);
    background-image: url('../images/loader.gif');
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: center;
    z-index:999999;
}

#loading.hide {
    display: none;
}

@media only screen and (max-width : 767px) {
  .same-height {
    height: auto !important;
  } 
}

.push-top{
	position: relative;
	display: block;
	width: 100vw;
	height: 80px;
	background-color: rgba(255,255,255,0);
}

.header {
	position: fixed;
	display: block;
	width: 100vw;
	height: 140px;
	padding: 0;
	margin: 0;
	background-color: rgba(0,255,0,0);
	transition: all .4s ease;
	z-index: 9;
}

.header.scrolled {
	position: fixed;
	display: block;
	width: 100vw;
	height: 80px;
	padding: 0;
	margin: 0;
	background-color: rgba(255,255,255,1);
	z-index: 9;
}

.header.active {
	position: fixed;
	display: block;
	width: 100vw;
	height: 80px;
	padding: 0;
	margin: 0;
	background-color: rgba(255,255,255,1);
	z-index: 9;
}

.header .logo {
	position: absolute;
	display: block;
	width: auto;
	height: 80px;
	top: 30px;
	left: 60px;
	transition: all .4s ease;
}


.header.scrolled .logo {
	position: absolute;
	display: block;
	width: auto;
	height: 60px;
	top: 10px;
	left: 60px;
}

.header.active .logo {
	position: absolute;
	display: block;
	width: auto;
	height: 60px;
	top: 10px;
	left: 60px;
}

.header .logo img {
	position: relative;
	display: block;
	width: auto;
	height: 100%;
}

.header .navigating {
	position: absolute;
	display: block;
	width: auto;
	height: 60px;
	top: 50px;
	right: 60px;
	transition: all .4s ease;
}

.header.scrolled .navigating {
	top: 12px;
}

.header.active .navigating {
	top: 12px;
}

.header .navigating ul {
	position: relative;
	display: block;
	width: auto;
	height: 60px;
	line-height: 60px;
	padding: 0;
	margin: 0;
}

.header .navigating ul li {
	position: relative;
	display: inline-block;
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0 15px;
}

.header .navigating ul li:last-child {
	margin: 0 0 0 15px;
}

.header .navigating ul li a {
	position: relative;
	display: block;
	width: auto;
	height: 100%;
	font-size: 24px;
	font-weight: 500;
	text-transform: lowercase;
	text-decoration: none;
	outline: none;
	color: #3298cb;
	transition: all .2s ease;
}

.header .navigating ul li a:hover {
	color: rgb(50,152,203);
}

.header .navigating ul li a.active {
	color: rgb(50,152,203);
}

.header .navigating ul li ul{
	position: absolute;
	display: block;
	overflow: hidden;
	width: auto;
	height: auto;
	max-height: 0;
	padding: 0;
	margin: 60px 0 0 0;
	top: 0;
	left: -15px;
	background-color: rgb(255,255,255);
	transition: all .4s ease;
}

.header .navigating ul li:hover ul{
	max-height: 100vh;
	padding: 0 0 15px 0;
}

.header .navigating ul li ul li{
	position: relative;
	display: block;
	white-space: nowrap;
	width: 100%;
	height: 40px;
	padding: 0;
	margin: 0;
}

.header .navigating ul li ul li:last-child {
	margin: 0;
}

.header .navigating ul li ul li a {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	font-size: 24px;
	font-weight: 500;
	text-transform: lowercase;
	text-decoration: none;
	outline: none;
	color: rgb(50,152,203);
	transition: all .2s ease;
	padding: 0 15px;
	margin: 0;
}

.header .navigating ul li ul li a:hover {
	color: rgb(225,177,114);
}

.header .navigating ul li ul li a.active {
	color: rgb(225,177,114);
}

.footer {
	position: relative;
	display: block;
	width: 100vw;
	height: auto;
	padding-top: 30px;
	background-color: rgb(50,152,203);
}

.footer .links {
	position: relative;
	display: block;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
}

.footer .links ul{
	position: relative;
	display: block;
	width: auto;
	height: auto;
	padding: 30px 0;
	margin: 0;
}

.footer .links ul li{
	position: relative;
	display: block;
	width: auto;
	height: auto;
}

.footer .links ul li a{
	position: relative;
	display: inline-block;
	width: auto;
	height: auto;
	font-size: 26px;
	color: rgb(255,255,255);
	text-decoration: none;
	text-transform: uppercase;
}

.footer .copyright {
	position: absolute;
	display: block;
	width: auto;
	height: auto;
	bottom: 30px;
	left: 60px;
	font-size: 26px;
	color: rgb(255,255,255);
	text-decoration: none;
	text-transform: uppercase;
}

.footer .social-links {
	position: absolute;
	display: block;
	width: auto;
	height: 30px;
	bottom: 30px;
	right: 60px;
}

.footer .social-links a {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 0 0 15px;
}

.footer .social-links a svg{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.footer .social-links a svg path{
	fill: rgb(255,255,255);
}

.footer shdl {
	position: relative;
	display: block;
	font-family: 'PT';
	font-weight: 500;
	color: rgb(255,255,255);
	font-size: 22px;
	padding: 0 30px;
}

#cookie-law {
	position: fixed;
	display: block;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 999999;
	opacity: 1;
	transition: all 0.4s ease;
}

#cookie-law .cookie-info-box {
	position: absolute;
	display: block;
	width: 20vw;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgb(255,255,255);
	padding: 30px 30px 0 30px;
	text-align: center;
	z-index: 999999;
}

#cookie-law .cookie-info-box p {
	text-align: center;
	color: rgb(0,0,0);
}

#cookie-law .cookie-info-box a.cookie-info-button {
	position: relative;
	display: inline-block;
	width: auto;
	height: auto;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: rgb(0,0,0);
	color: rgb(255,255,255);
	padding: 10px 30px;
	cursor: pointer;
	margin: 30px 15px;
}

.warning-scess {
	position: fixed;
	display: block;
	overflow: hidden;
	width: 100vw;
	height: auto;
	font-size: 32px;
	text-align: center;
	color: rgb(255,255,255);
	padding: 10px 15px 15px 15px;
	z-index: 999999;
}

.warning-scess.yes {
	background-color: rgb(0,153,73);
}
.warning-scess.no {
	background-color: rgba(236,28,36,1);
}
.warning-scess.att {
	color: rgb(33,33,33);
	background-color: rgba(237,177,18,1);
}