html, body{
	height: 100%;
	margin: 0;
	font-family: "Lato", Arial, sans-serif;
	overflow: hidden;
}
button, input {
    overflow: visible;
}
#content{
	height: 100%; 
	overflow: hidden;
}
.videoheader{
	height: 110vh;
    width: 100%;
    object-fit: cover;
    position: absolute;
}	
.mask{
	/*background-color: #000;*/
    transform: scale(1, 1);
    overflow: hidden;
    width: 100%;
    opacity: 0.10;
    height: 100%;
    top: 0%;
    left: 0%;
    position: absolute;
    z-index: 1;
}

/*HEADER*/
.divheader{
	position: absolute;
    z-index: 2;
    padding: 40px;
    height: 50px;
    width: 100%;
	top: 0;
}
.logo{
	float: left;
	width: 200px;
	height: 50px;
}
.logo img{
	width: 350px;
}
.sfoglia{
	float: right;
	width: 200px;
	height: 50px;
}
/*HEADER*/

/*LOGIN*/
.login-box{
	width: 500px;
	height: 410px;
	z-index: 1;
	display: flex;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.form-group{
    position: relative;
	height: 70px;
	display: block;
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
}
.areaclienti{
	width: 350px;
	height: 100px;
	color: #FFFFFF;
	text-align: center;
	font-weight: 300;
    color: #fff;
	line-height: 1.5;
	font-size: 22px;
}
.form-group a{
	color: #FFF;
}	
.inputlogin{
    height: 50px;
    color: #FFF !important;
    border: 1px solid #FFF;
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
	width: 350px;
	opacity: 0.6;
	background: rgba(255, 255, 255, 0.08);
	background-color: rgba(255, 255, 255, 0.08) !important;
}
.inputlogin:-webkit-autofill,
.inputlogin:-webkit-autofill:hover, 
.inputlogin:-webkit-autofill:focus, 
.inputlogin:-webkit-autofill:active{
	opacity: 0.6;
	background-color: rgba(255, 255, 255, 0.08) !important;
}
.buttonlogin{
    background: #fbceb5 !important;
    border: 1px solid #fbceb5 !important;
    color: #000 !important;
	border-radius: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    text-transform: uppercase;
	width: 100%;
	height: 50px;
	cursor: pointer;
}	
/*LOGIN*/

/*HAMBURGER MENU'*/
.button_container {
	position: fixed;
	top: 5%;
	right: 2%;
	height: 50px;
	width: 50px;
	cursor: pointer;
	z-index: 100;
	transition: opacity .25s ease;  
  
	&:hover {
		opacity: .7;
	}
  
	&.active {
		.top {
			transform: translateY(10px) translateX(0) rotate(45deg);
			background: #FFF;
		}
		.middle {
			opacity: 0;
			background: #FFF;
		}
		
		.bottom {
			transform: translateY(-10px) translateX(0) rotate(-45deg);
			background: #FFF;
		}
	}
  
span{
	background: #FFF;
	border: none;
	height: 5px;
	width: 90%;
	position: absolute;
	top: 0px;
	left: 0;
	transition:  all .35s ease;
	cursor: pointer;
    
    &:nth-of-type(2) {
      top: 11px;
	  width: 100%;
    }
    
    &:nth-of-type(3) {
      top: 22px;
    }
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, width .35s;
  z-index: 50;
  
  &:before {
    content: '';
    background: #FFF;
    left: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    transition: left .35s ease;
  }
  
  &:after {
    content: '';
    background: #FFF;
    right: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    transition: all .35s ease;
  }
  
  &.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
    
    &:before {
      left: 0;
    }
    
    &:after {
      right: 0;
    }
    
    li {
      animation: fadeInRight .5s ease forwards;
      animation-delay: .35s;
      
      &:nth-of-type(2) {
        animation-delay: .45s;
      }
      &:nth-of-type(3) {
        animation-delay: .55s;
      }
      &:nth-of-type(4) {
        animation-delay: .65s;
      }
    }
  }
  nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-family: 'Vollkorn', serif;
    font-weight: 400;
    text-align: center;
    z-index: 100;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%; 
    
    li {
      display: block;
      height: 25%;
      height: calc(100% / 4);
      min-height: 50px;
      position: relative;
      opacity: 0;
      
      a {
        display: block;
        position: relative;
        color: $color-link;
        text-decoration: none;
        overflow: hidden;
        
        &:hover:after,
         &:focus:after,
         &:active:after {
           width: 100%;
         }
        
        &:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0%;
          transform: translateX(-50%);
          height: 3px;
          background: $color-link;
          transition: .35s;
        }
      }
    }
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/*HAMBURGER MENU'*/

.msgsuccesslogin {
  background-color: #9dff9d;
  height: auto;
  width: 90% !important;
  font-size: 18px;
  text-align: center;
  padding-top: 5px;
  font-weight: normal;
  border-radius: 6px;
  padding: 10px !important;
}
.buttonlogin {
  width: 90% !important;
}

.msgerrorlogin {
  background-color: #ffa6a6;
  height: auto;
  width: 90% !important;
  font-size: 18px;
  text-align: center;
  padding-top: 5px;
  font-weight: normal;
  border-radius: 6px;
  padding: 10px !important;
}