@import url("https://fonts.googleapis.com/css?family=Lobster");
@import url("https://fonts.googleapis.com/css?family=Roboto");
/*
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "RobotoLight", sans-serif;
  border-bottom: 1px solid #fffff0;
  background: #00c6ff;
  background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
  background: linear-gradient(to right, #0072ff, #00c6ff);
  overflow: hidden;
}
*/
button {
  text-decoration: none;
  border: none;
}
/*
h1 {
  position: absolute;
  display: inline-table;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fffff0;
}
h2 {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  text-align: center;
  color: #fffff0;
}
*/
.popup-btn {
  /* position: absolute !important;
  top: 55%;
  left: 50%; 
  transform: translate(-50%, -50%);*/
}
.main-btn-rect,
.main-btn-circle {
  position: relative;
  margin: 0 auto 0 30px;
  font-family: "Roboto", sans-serif;
  color: #fffff0;
  background-color: rgb(252, 79, 79);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
  cursor: pointer;
  z-index: 100;
	border-radius: 10px;

}
.main-btn-rect {
  padding: 10px 80px;
  line-height: 30px;
}
.main-btn-rect:before,
.main-btn-rect:after {
  position: absolute;
  content: "";
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.main-btn-rect:before {
  left: 0;
}
.main-btn-rect:after {
  right: 0;
}
.main-btn-rect:hover:before,
.main-btn-rect:hover:after {
  width: 50%;
}
.main-btn-circle {
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.main-btn-circle:hover {
  -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}
.popup {
  position: fixed;
  top: 100%;
  width: 100%;
  height: 100%;
  z-index: 10001;
	
}
.popup.active {
  top: 0;
  background-color: rgba(3, 3, 3, 0.98);
  transition: background-color 0.6s, opacity 0.6s;
}
.popup .main-btn-rect {
  padding: 10px 100px;
}
.popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 568px;
  min-width: 320px;
  margin-top: 150px;
  padding: 25px;
  background-color: #333; /* #fffff0; */
  color: #EBEBEB; /*#070000;*/
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transition: margin 0.6s;
  -webkit-transition: margin 0.6s;
  -moz-transition: margin 0.6s;
  -o-transition: margin 0.6s;
	
	border-radius: 20px;
}
.popup.active .popup-content {
  margin-top: 0px;
}
.popup-content h6 {
  display: table;
  font-size: 16px;
  text-align: center;
  margin: 10px auto;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 100;
}
.form-group {
  position: relative;
  width: 90%;
  margin: 0px auto;
}
form#send input,
form#send textarea {
  position: relative;
  margin-bottom: 32px;
  width: 100%;
  height: 29px;
  font-family: "RobotoLight", sans-serif;
  text-indent: 20px;
  background-color: transparent;
  outline: 0;
  border: none;
  border-bottom: 1px solid #070000;
  -webkit-transition: border 0.6s;
  -o-transition: border 0.6s;
  transition: border 0.6s;
}
form#send input:focus,
form#send textarea:focus {
  border-bottom: 1px solid rgb(63, 173, 168);
}
form#send label {
  position: absolute;
  top: 0;
  line-height: 28px;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
form#send input:focus + label,
form#send textarea:focus + label {
  color: rgb(63, 173, 168);
}
form#send .txt {
  line-height: 22px;
  left: 2px;
}
form#send .main-btn-rect {
  position: relative;
  display: block;
  padding: 12px 80px;
  margin: 0px auto;
  font-size: 14px;
}
form#send .main-btn-rect i {
  margin-right: 5px;
}
.popup .fade-out {
  position: absolute;
  top: -20px;
  right: -20px;
  text-align: center;
  font-size: 15px;
}
.share-wrap {
  position: absolute;
  display: inline-table;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  text-align: center;
}
.share-btn {
  color: #fffff0;
  padding: 7px 25px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 100;
  font-size: 14px;
  font-family: "Lobster", sans-serif;
  background-color: rgba(63, 173, 168, 0.8);
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
}
.share-btn:hover {
  color: #fffff0;
  text-decoration: none;
  background-color: rgba(63, 173, 168, 1);
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block;
}
.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 2px;
}
.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 6px 9px;
  transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
}
.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top;
}
.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle;
}
.resp-sharing-button__icon,
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none;
}
.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}
.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}
.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}
.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}
.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}
.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 14px;
  }
  form#send .main-btn-rect {
    padding: 7px 60px;
    font-size: 14px;
	  
  }
  .popup-btn {
    padding: 7px 60px;
    font-size: 14px;
  }
}



/* mio */
#popup-reg {
	background-color:rgba(0,0,0,0.85);
}
#comm_testo {
	width: 100%;
	height: 100px;
	border:1px solid #666;
	border-radius: 20px;
	margin: 0 auto 20px 0;
	padding: 5px;
	color:#F56A6D;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	background-color: #222;
}
        #postbutton {
            background-color:#CC4143;
            height: 40px;
            color: #FFF;
            border-radius: 5px;
            padding:20px 20px 20px 20px;
            vertical-align: middle;
        }
        #postbutton:hover {
            background-color: #59DB5C;
            cursor: pointer;
        }
	.icons2 {
		font-size: 14px; 
		/*display: inline;
		margin-right: 50px;*/
	}	


/* block commenti */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	z-index: 999;
	text-align: center;
}

/* Modal Content */
.modal-content {
	position: relative;
	margin:200px auto 0 auto;
	width: 800px;
	max-width: 90%;  
	height: auto;
	min-height: 200px;
  	background-color:rgba(12,19,34,1.00);
  	color:rgba(188,188,188,1.00);
	font-size: 12px;
  	padding: 20px;
  	border: 1px solid #888;
	border-radius: 20px;	
 	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}
@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
	.modal-content img {
		float: left;
		margin-right: 5px;
		margin-bottom: 5px;
		vertical-align: top;
		height: 80px;
	}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
position: absolute;
  top: -20px;
  right: -20px;
  text-align: center;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}	
/* block commenti */



/* puls inst */
.buttonnow {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
	border-radius: 5px;
}
.buttonnow:hover {
  background-color: #04AA6D;
  color: white;
}
/* puls inst fine */