/* Dialog */

.modal-dialog {
  margin: 100px auto 0;
}

/* .modal.in .modal-dialog {
  transform: scaleY(1);
} */

.modal-dialog .modal-content {
  color: #555;
  background: linear-gradient(45deg,rgba(255,255,255,0.9) ,rgba(239,239,239,0.9) ,rgba(255,255,255,0.9) );
  text-align: center;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* 右上角close */

.modal-dialog .modal-content .closeModal {
  color: rgba(255, 255, 255, 0.7);
  background-color: #d78d40;
  font-size: 16px;
  font-weight: 600;
  text-shadow: none;
  line-height: 15px;
  height: 28px;
  width: 28px;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  position: absolute;
  left: auto;
  right: 5px;
  top: 5px;
  z-index: 1;
  transition: all 0.3s;
}

.modal-dialog .modal-content .closeModal:hover {
  color: #fff;
}

.modal-dialog .modal-content .closeModal:focus {
  outline: none;
}

/* Body */

.modal-dialog .modal-content .modal-body {
  padding: 0 30px !important;
}

/* Big Icon */

.modal-dialog .modal-content .modal-body .modal-icon {
  color: #fff;
  background: linear-gradient(120deg, rgba(236,205,118,0.9) 0%, rgba(215,141,64,0.9) 100%);
  font-size: 40px;
  line-height: 100px;
  width: 100px;
  height: 100px;
  margin: -50px auto 35px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 50%;
}

/* Modal Title */

.modal-dialog .modal-content .modal-body .titleModal {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 30px;
}

.modal-dialog .modal-content .modal-body .titleModal span {
  font-size: 16px;
  font-weight: 400;
}

/* Modal Form */

.modal-dialog .modal-content .modal-body .form-control {
  background-color: #efefef;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  height: 45px;
  border: 2px solid #e7e7e7;
  border-radius: 50px;
  box-shadow: none;
}

.modal-dialog .modal-content .modal-body .form-control:focus {
  background-color: #fff;
  box-shadow: none;
}

/* Modal Btn */

.modal-dialog .modal-content .modal-body .btn {
  color: #fff;
  background: linear-gradient(rgba(236,205,118,0.9), rgba(215,141,64,0.9));
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  padding: 12px 10px 13px;
  margin: 25px 0 35px;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
}

.modal-dialog .modal-content .modal-body .btn:hover {
  text-shadow: 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.modal-dialog .modal-content .modal-body .btn:focus {
  outline: none;
}

.modal-dialog .modal-content .modal-body .btnTrans {
  padding: 0px;
  margin: 0px;
}

/* Modal Footer */

.modal-dialog .modal-content .modal-footer {
  background-color: #f5f5f5;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  .modal-dialog {
    width: 95% !important;
  }
}

