.popup_contact {
  position: fixed;
  width:50vw;
	top: 5vh;
  left: 25vw;
	z-index: 3;
	color: #fff;
  background: #1e272e;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-align: center;
  border-radius: 10px;
  display: none;
}

.popup_contact input[type=text],
.popup_contact input[type=email] {
  display: block;
	padding: 5px;
	border: 1px solid white;
  width: 70%;
	border-radius: 10px;
  margin: 0px auto 30px auto;
  background-color: #e74c3c;
}

.popup_contact textarea {
  margin-top: 30px;
  border: 1px solid white;
  resize : none;
  width: 70%;
  height: 130px;
  border-radius: 10px;
  background-color: #e74c3c;
}

.popup_contact select {
  background-color: #e74c3c;
  width: 70%;
}

.popup_contact input:first-of-type {
  margin-top: 30px;
}

.popup_contact input[type=submit] {
  display: block;
  margin: 30px auto 55px auto;
  padding: 10px;
  width: 150px;
  background-color: #e74c3c;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
}

.popup_contact input[type=submit]:hover {
  color: #e74c3c;
  cursor: pointer;
  background-color: white;
}

.popup_contact-close {
  font-size: 15px;
  color: #bdc3c7;
  font-family: 'Arial';
  font-weight: bolder;
  padding: 5px;
  margin: -50px 20px 0px 0px;
  text-align: right;
}

.popup_contact-close:hover {
  color: black;
  cursor: pointer;
}

.popup_contact_form-title {
  margin: 20px 0px 0px 0px;
  /* Bordure innactive
  border-bottom: 1px solid #bdc3c7;*/
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 25px;
  text-align: center;
}

.popup_contact-trigger:hover {
  cursor: pointer;
}

.shutdownLight {
		position: fixed;
		top:0;
		left: 0;
		z-index: 2;
		width:100%;
		height:140%;
		background: black;
		opacity: 0.8;
		display: none;
	}

@media (max-width: 1100px) {
  .popup_contact {
    width: 90vw;
    left: 5vw;
    top: 2vh;
    font-size: 12px;
  }

  .popup_contact input[type=text],
  .popup_contact input[type=email] {
    padding: 3px;
    margin: 0px auto 10px auto;
  }

  .popup_contact textarea {
    margin-top: 10px;
  }

  .popup_contact input:first-of-type {
    margin-top: 10px;
  }

  .popup_contact input[type=submit] {
    margin: 10px auto 30px auto;
  }
}