.modal-pedido {
  background: linear-gradient(130deg, rgba(135, 197, 197, 0.8), rgba(64, 116, 113, 0.8));
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}

.modal-pedido.active {
  opacity: 1;
  visibility: visible;
}

.modal-pedido form {
  background-color: white;
  padding: 4rem 6.7rem;
  width: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #407471;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal-pedido form .modal-icon i {
  cursor: pointer;
  font-size: 3rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-pedido form .form-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.modal-pedido form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-pedido form .form-group .email {
  width: 100%;
}

.modal-pedido form .form-group .telefone {
  width: 40%;
}

.modal-pedido form .form-group .form-field:not(:last-child) {
  margin-right: 2rem;
}

.modal-pedido form .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.6rem;
}

.modal-pedido form .form-field label {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.modal-pedido form .form-field input {
  border: none;
  outline: none;
  border-radius: 1rem;
  background-color: #E9E9E9;
  width: 100%;
  height: 4.6rem;
  padding: 1.6rem;
  font-size: 1.6rem;
}

.modal-pedido form .form-field select {
  height: 5rem;
  padding: 1.6rem;
  color: #407471;
  border: 1px solid #407471;
  -webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

.modal-pedido form button {
  display: inline-block;
  border: none;
  background: linear-gradient(130deg, #87C5C5, #407471);
  color: #065143;
  font-weight: bold;
  font-size: 1.3rem;
  height: 5.3rem;
  width: 10.5rem;
  margin-top: 2rem;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.modal-pedido form button:hover {
  background: linear-gradient(-50deg, #87C5C5, #407471);
}

#collapseOne {
  -webkit-transition: .6s ease;
  transition: .6s ease;
}

.btn-collapse {
  margin: 0 !important;
  width: 100% !important;
  padding: 1.5rem !important;
  overflow: none !important;
  border: none !important;
  background: transparent !important;
}

.btn-collapse:hover {
  background: transparent !important;
}

.btn-collapse:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.table {
  font-size: 1.4rem !important;
}

/* MEDIA QUERY */
@media screen and (max-width: 600px) {
  form {
    width: 50rem !important;
  }
  form .form-group {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  form .form-group .telefone {
    width: 100% !important;
  }
}

@media screen and (max-width: 500px) {
  form {
    width: 40rem !important;
    padding: 4rem 5rem !important;
  }
  form .form-title {
    font-size: 2.4rem !important;
  }
}

@media screen and (max-width: 500px) {
  form {
    width: 35rem !important;
  }
}
/*# sourceMappingURL=modal.css.map */