/* CSS Document */
.grid-layout-page {
  position: relative;
  background-color: #21d4fd;
  background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%);

  height: auto;
  display: grid;
  grid-gap: 35px;

  grid-template-areas: "form map" "form map";
}
.map-container {
  padding-top: 100px;
  padding-left: 50px;
  height: auto;
  margin: 0 auto;
  grid-area: map;
}
.container-terms {
  padding-top: 100px;
  padding-left: 50px;
  grid-area: terms;
  display: none;
}

.terms-style {
  color: white;
  padding: 25px;
  margin: 50px 0;
}

.container {
  margin-top: 200px;
  grid-area: form;

  height: auto;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

  position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
}

#contact {
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  background: #f9f9f9;
  padding: 25px;
  margin: 50px 10%;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

#contact h3 {
  color: #f96;
  display: block;
  font-size: 30px;
  font-weight: 400;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  /* background: #FFF; */
  margin: 0 0 5px;
  padding: 10px;
}
input[type="text"]:disabled {
  background: #414141;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  width: 200px;
  height: 50px;
  border-radius: 100px;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: #fbb03b;
  color: #fff;
  font-weight: 700;
  font-size: 0.9em;
  transition: width 400ms ease-in-out, border-radius 400ms ease-in-out;
}

#contact button[type="submit"]:hover {
  background: #09c;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  background-color: #e3a136;
  color: #fff;
  transform: scale(0.98);
}

#contact button[type="submit"].loading {
  width: 50px;
  border-radius: 50%;
  background-color: #e3a136;
  background-image: url(http://www.metsenergy.com/uploads/loading1.gif);
  background-size: 110px;
  background-position: center;
  background-repeat: no-repeat;
}

#contact button[type="submit"].loading.finish {
  pointer-events: none;
  background-color: #8dcb87;
}

#contact button[type="submit"].loading.finish:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 6px;
  border-bottom: 3px #fff solid;
  border-left: 3px #fff solid;
  z-index: 9999;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: -7px 86px;
  -webkit-animation: fade 900ms ease forwards;
  -moz-animation: fade 900ms ease forwards;
  -o-animation: fade 900ms ease forwards;
  -ms-animation: fade 900ms ease forwards;
  animation: fade 900ms ease forwards;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #999;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

.map {
  align-content: left;
}

.success {
  color: aqua;
  font-size: 17px;
}

#outcome {
  color: black;
  font-size: 17px;
}

.GRID {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "field" "street" "city" "state" "country";
}

.locationField {
  grid-area: field;
}

.street {
  grid-area: street;
  display: grid;
  grid-template-columns: 2fr 2fr 6fr;
}

.city {
  grid-area: city;
  grid-template-columns: 1fr 4fr;
  display: grid;
}

.state {
  grid-area: state;
  display: grid;
  grid-template-columns: 2fr 5fr 2fr 1fr;
}

.country {
  grid-area: country;
  grid-template-columns: 1fr 4fr;
  display: grid;
}

.street input {
  width: 100%;
}

.city input {
  width: 100%;
}

.state input {
  width: 100%;
}

.country input {
  width: 100%;
}

.zipCode {
  justify-self: center;
}
.bangsa {
  display: none;
}
