.title-underline {
  display: block;
  width: 28px;
  border-bottom: 5px solid;
  margin-top: 20px;
  border-color: #ff0000;
}

.payment_box {
  width: 440px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 30px;
  z-index: 1;
  background-color: #ffffff;
}

.payment_box .title {
  font-size: 1.1rem;
}

.payment_box .__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -30px -30px;
  background-color: #f5f6f7;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.payment_box .__footer .__img {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.payment_box .__footer .__img img {
  width: 100%;
}

.payment_box .__footer button {
  width: 40%;
}

.payment_box form {
  margin-top: 20px;
}

.payment_box label {
  display: block;
  margin-bottom: 5px;
}

.payment_box input {
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 15px;
  padding: 8px;
}

.payment_box input:focus {
  outline: none;
  border: 1px solid #0d2366;
}

.payment_box button {
  outline: #cccccc;
  background-color: red;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.payment_box button:disabled {
  background-color: #e0e0e0;
  color: #757575;
  cursor: not-allowed;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  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;
  opacity: 0;
  visibility: hidden;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal .modal-body {
  padding: 40px;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal .modal-body img {
  width: 50%;
}

.modal .modal-body h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
}

.modal .modal-body .btn {
  outline: none;
  background-color: #ff0000;
  color: #fff;
  font-weight: 600;
  border: 0;
  border-radius: 5px;
  padding: 8px 25px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .payment_box {
    position: inherit;
    top: 0;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=main.css.map */