@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,800,700&subset=latin,cyrillic-ext);

body {
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: #888;
	line-height: 30px;
	text-align: center;
	overflow-y: scroll;
}

@keyframes BackgroundGradient {
	0%{background-position: 0% 50%;}
	50%{background-position: 100% 50%;}
	100%{background-position: 0% 50%;}
}

/* .sfondo_opacizzato{
  background: linear-gradient(90deg, #ff0000, #ffc700, #ccff00, #00faff, #000cff);
	background-size: 400% 400%;
	animation: BackgroundGradient 10s ease infinite;
} */

/* -------------------
				general
---------------------- */
.grecaptcha-badge {
	z-index: 2;
}
/* header */
.navbar-toggle {
  display: none;
}

nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}

#spinner_container_display {
	display: none;
}
#spinner_container {
  /* background: #000; */
  /* opacity: 0.7; */
	background-color: rgba(0,0,0,0.7);
  position: fixed;
  z-index: 21;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

img#spinner_logo {
	margin-top: 22px;
	margin-left: 28px;
	height: 48px;
}

#spinner_container #spinner {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 90px;
  width: 90px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  border-top: 3px solid coral;
  border-right: 3px solid transparent;
  animation: spinner 0.7s linear infinite;
}
#spinner-message {
	position: absolute;
  margin-top: 180px;
  color: #fff;
  background: green;
  padding: 2px 5px;
  opacity: initial;
	margin-left: 28px;
	border: 2px solid;
}

@-webkit-keyframes spinner {
  to {
  transform: rotate(360deg);}
}
@-o-keyframes spinner {
  to {
  transform: rotate(360deg);}
}
@-moz-keyframes spinner {
  to {
  transform: rotate(360deg);}
}
@keyframes spinner {
  to {
  transform: rotate(360deg);}
}


/* #finder {
	display: none;
} */

/* remove eye windows edge browser*/
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.eye_icon_pass{
	position: absolute;
	z-index: 2;
	margin-right: 4px;
	cursor: pointer;
	font-size: 28px;
	color: #800;
}

.eye_icon_pass:hover{
	color: #800;
}

.error-message{
	color:red;
	background: #fff;
	height: 25px;
	margin-top: 3px;
	opacity: .7;
	font-size:0.9em;
}

.input-pass-container{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.dynamic-gradient-color{
  background: linear-gradient(90deg, #ff0000, #ffc700, #ccff00, #00faff, #000cff);
	background-size: 400% 400%;
	animation: BackgroundGradient 10s ease infinite;
  background-color: black;
  opacity: 0.2;
  position: absolute;
  /* height: 140%; */
  height: calc(100vh - 100px);
  width: 100%;
  z-index: -1;
}

.dynamic-gradient-color--sign-up{
  height: 148%;
}

.dynamic-gradient-color--recovery-pass{
  height: 115%;
}

.dynamic-gradient-color--recovery-pass2{
  height: 100%;
}


.login-bar{
  background-color: #333;
    width: 100%;
    height: 30px;
		height: 0;
    position: fixed;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}
.login-bar a {
  color: #fff;
}
.login-bar a i {
  color: red;
}

.header-login{
  position:fixed;
  width:100%;
  /* top:30px; */
	top:0;
  height:100px;
  background-color: #028fcc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.logo-home{
  height: 100%;
}
.header-login img {
  /* padding: 7px; */
  /* width: 180px; */
	width: 135px;
  padding: 2px 0px;
  margin-left: 10px;
}
.navbar_menu {
	display: flex;
	list-style-type: none;
	align-items: center;
	margin: 0;
}
.navbar_menu li a
{
  font-size: 14px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
	/* padding: 20px 10px; */
	padding: 40px 10px;
}
.navbar_menu li a:hover {
  background-color: rgba(0,0,0,.2);
	text-decoration: none;
}




.nav>li>a:focus, .nav>li>a:hover{
  background-color: transparent;
}

#cookie-banner-background{
	background: #000;
  opacity: 0.7;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-banner{
  background-color: #111;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  padding: 0 10px;
  display: flex;
	text-align: left;
}
.cookie-banner p{
  color: #fff;
  max-width: 67vw;
}
.accept_cokies_btn {
	color: #fff;
  border: 1px solid;
  padding: 5px 15px;
  background-color: #19b9e7;
  font-weight: 900;
  margin-left: 10px;
	cursor: pointer;
  /* font-size: 1.2em; */
}

.accept_cokies_btn:hover{
  color: #19b9e7;
  border: 1px solid;
  background-color: #fff;
}

.modal.modal__cookie{
	display: block;
	background: #fff;
	border-radius: 13px;
	height: 600px;
	padding-top: 0px;
	border: 3px solid #19b9e7;
	width: 650px;
  top: 15%;
  margin: 0 auto;
}

.modal__cookie p{
	color: #666;
}

.modal__cookie label{
	color: #333;
}

#tuodiv {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center top;
	position: fixed;
	background-image:url(../../img/login.jpg);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -2;
	height: calc(100vh - 100px);
	margin-top: 100px;
}
.login-container {
	padding: 100px 20px;
	height: calc(100vh - 100px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.sign-up-container{
  position: relative;
  display: flex;
  justify-content: center;
	padding-top: 230px;
  padding-bottom: 75px;
}
.sign-up-container--recovery{
	height: calc(100vh - 100px);
}

.login-form-container{
	width: 550px;
}

.form-top {
	overflow: hidden;
	padding: 0 25px 15px 25px;
	background: #444;
	background: rgba(0, 0, 0, 0.35);
	-moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
	text-align: left;
}

.form-top-left {
	float: left;
	width: 75%;
	padding-top: 25px;
}

.form-top-left h3 { margin-top: 0; color: #fff; }
.form-top-left p { opacity: 0.8; color: #fff; }

.form-top-right {
	float: left;
	width: 25%;
	padding-top: 5px;
	font-size: 66px;
	color: #fff;
	line-height: 100px;
	text-align: right;
	opacity: 0.3;
}

.form-bottom {
	padding: 25px 25px 30px 25px;
	background: #444;
	background: rgba(0, 0, 0, 0.3);
	-moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
	text-align: left;
}

.form-group {
  margin-bottom: 30px;
}
.message-input-container {
  height:1em;
  margin-bottom: 14px;
}
.message-label{
  color:red;
  background: #fff;
  height: 25px;
  margin-top: 3px;
  opacity: .7;
	display: none;
}

.message-submit-container {
  height:1em;
  padding-top: 5px;
}
.error__container{
	height:1em;
}
.sign-up-link{
  height:1em;
  padding-top: 22px;
  display: flex;
  justify-content: flex-end;
}
.sign-up-link a {
  color: #fff;
}
/* ---------------
      form
------------------*/
input[type="text"],
input[type="password"],
textarea,
textarea.form-control {
	height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #fff;
    border: 3px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #888;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

textarea,
textarea.form-control {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 30px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
textarea.form-control:focus {
	outline: 0;
	background: #fff;
    border: 3px solid #fff;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}

input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder, textarea.form-control:-moz-placeholder { color: #888; }

input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder, textarea.form-control:-ms-input-placeholder { color: #888; }

input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder, textarea.form-control::-webkit-input-placeholder { color: #888; }



button.btn {
	height: 50px;
  margin: 0;
  padding: 0 20px;
  vertical-align: middle;
  background: #19b9e7;
  border: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  color: #fff;
  -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
  text-shadow: none;
  -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
  -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

button.btn:hover { opacity: 0.6; color: #fff; }

button.btn:active { outline: 0; opacity: 0.6; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }

button.btn:focus { outline: 0; opacity: 0.6; background: #19b9e7; color: #fff; }

button.btn:active:focus, button.btn.active:focus { outline: 0; opacity: 0.6; background: #19b9e7; color: #fff; }


.form-bottom form textarea {
	height: 100px;
}

.form-bottom form button.btn {
	width: 100%;
}

.form-bottom form .input-error {
	border-color: #19b9e7;
}

/* .error-match, .error-cookies, .error-validation, .error-repeat-process, .error-pass1-empty, .error-short-pass, .error-pass2-empty, .error-repeat-process-again, .error-user, .error-repeat-process-once-again {
  display: none;
  font-size: 15px;
  font-family: sans-serif;
  font-style: oblique;
} */
/* .success, .error-match, .error-cookies, .error-validation, .error-repeat-process, .error-pass1-empty, .error-short-pass, .error-pass2-empty, .error-repeat-process-again, .error-user, .error-repeat-process-once-again {
	display: none;
	font-size: 15px;
  background-color: rgb(255, 255, 255);
  border: 1px solid;
  padding: 1px 10px;
  border-radius: 6px;
}
.error-match, .error-cookies, .error-validation, .error-repeat-process, .error-pass1-empty, .error-short-pass, .error-pass2-empty, .error-repeat-process-again, .error-user, .error-repeat-process-once-again {
  color: red;
} */
.message-label-submit{
	display: none;
	font-size: 15px;
  background-color: rgb(255, 255, 255);
	color: red;
  border: 1px solid;
  padding: 1px 10px;
  border-radius: 6px;
}
.message-label-submit a{
  color: red;
	text-decoration: underline;;
}
.success{
	color: green;
	border: 1px solid green;
}

.policy-checkbox {
	color:#f3f3f3;
	padding:5px;
	background-color:rgba(71, 75, 84, 0.33);
}
.policy-checkbox input {
	height: auto;
}
.policy-checkbox a {
	color: #fff;
	text-decoration: underline;
}
/*----------------------
        Footer
------------------------*/
footer {
	padding-bottom: 70px;
	color: #fff;
}

footer p { opacity: 0.8; }

footer a {
	color: #fff;
  text-decoration: none;
}
footer a:hover,footer a:focus { color: #fff;  }
footer a:focus{border-bottom: 1px dotted #fff;}

/*----------------
    MEDIA QUERY
------------------*/
/* lg */
@media (min-width: 1210px) {

}

/* md */
@media (min-width: 992px) and (max-width: 1210px) {



}
@media (max-width: 992px){

  .nav.navbar-nav.navbar-right a {
    font-size: 12px;
    color: #FFFFFF;
    padding: 40px 11px;
  }
}


/* sm */
@media (min-width: 768px) and (max-width: 991px) {

	.nav.navbar-nav.navbar-right a {
		padding: 40px 12px;
    font-size: 11px;
  }

}

/* xs */
@media (max-width: 767px) {
body {
	font-size: 14px;
	overflow-x: hidden;
}
.cookie-banner{
	height: 30vh;
}
.header-login{
	display: flex;
}
nav {
	flex-direction: row-reverse;
}
.nav {
	padding-top: 60px;
  width: 100%;
}
.navbar a {
  padding: 7px 0;
  line-height: 23px;
}
.navbar-toggle {
  border:1px solid #fff;
	margin: 20px;
	display: block;
}
.navbar-toggle .icon-bar {
  background-color: #fff;
}
.nav-hidden {
	width: 100vw;
  height: 0px;
  overflow: hidden;
	position: absolute;
  margin-top: 374px;
  background-color: #028fcc;
  text-align: left;
  padding: 0 40px;
	transition: .3s ease-in-out;
}
.show-nav {
	width: 100%;
  position: absolute;
  top: 100px;
  background-color: #028fcc;
	flex-direction: column;
	align-items: baseline;
  padding: 0;
	max-height: 0;
	transition: .3s ease-in-out;
	overflow: hidden;
}

.show-nav li {
	/* padding: 20px; */
	width: 100%;
  display: flex;
  padding: 0 20px;
}

.show-nav li a {
	width: 100%;
  text-align: left;
}
.navbar_menu li a
{
	padding: 20px 10px;
}

.show-nav.active {
	max-height: 350px;
	transition: .3s ease-in-out;
	/* overflow-y: auto; */
}


}


/* XS Portrait */
@media (max-width: 479px) {

.cookie-banner{
	height: 42vh;
  }

}


/* HEIGHT */
@media (max-height: 850px) {
	.login-container{
		padding-top: 230px;
	  padding-bottom: 75px;
		height: inherit;

	}



	.dynamic-gradient-color{
		height: 107%;
	}
}

@media (max-height: 776px) {

			.sign-up-container--recovery {
		    height: inherit;
		}
	}

@media (max-height: 730px) {

	.dynamic-gradient-color{
		height: 125%;
	}



	/* .form-top {
    padding: 0 25px;
	}

	.form-top-left h3 {
    font-size: 20px;
		margin: 0;
	}

	.form-top-left p {
    font-size: 15px;
	}

	.form-top-right {
		font-size: 55px;
		padding: 0;
	}

	input[type="text"], input[type="password"], textarea, textarea.form-control{
		height: 35px;
	} */

}

@media (max-height: 650px) {
	.dynamic-gradient-color{
		height: 140%;
	}
}

@media (max-height: 579px) {
	.dynamic-gradient-color{
	height: 157%;%;
	}
}
