.actions input[type="submit"] {
  display: inline-block;
  padding: 1% 3%;
  border-radius: 1vw;
  background-color: #FFFFFF;
  border: 2px solid #0078CC;
  color: #0078CC;
  font-size: 20px;
  font-weight: bold; }
  .actions input[type="submit"]:hover {
    background-color: #0078CC;
    color: #FFFFFF; }

.actions .cancel {
  display: inline-block;
  padding: 1% 3%;
  border-radius: 1vw;
  background-color: #FFFFFF;
  border: 2px solid #A0A0A0;
  color: #A0A0A0;
  font-size: 20px;
  font-weight: bold;
  margin-right: 2%; }
  .actions .cancel:hover {
    background-color: #A0A0A0;
    color: #FFFFFF; }

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none; }
  .modal.show {
    display: block; }
  .modal .invisible {
    display: none; }

.confirm-card {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
  background-color: #FFFFFF;
  border-radius: 0.5vw;
  padding: 2%;
  box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.3);
  overflow: hidden; }
  .confirm-card .inquiry-form-confirm {
    position: relative;
    height: 100%; }

.confirm-form {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%; }
  .confirm-form h2 {
    display: inline;
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 48px; }
  .confirm-form .scrollable {
    width: 100%;
    flex: 1;
    overflow-y: scroll; }
    .confirm-form .scrollable p {
      position: relative;
      text-align: left; }
    .confirm-form .scrollable table, .confirm-form .scrollable tbody, .confirm-form .scrollable tr {
      width: 100%; }
    .confirm-form .scrollable th {
      width: 30%;
      text-align: right;
      vertical-align: top;
      padding-bottom: 5%; }
    .confirm-form .scrollable td {
      text-align: left;
      padding-left: 2%;
      padding-bottom: 5%; }
  .confirm-form .actions {
    margin-top: 4%;
    text-align: right; }

@media only screen and (max-width: 1280px) {
  .form-input input, .form-input select, .form-input textarea {
    font-size: 1.40625vw; }
  .form-label {
    font-size: 1.5625vw; }
  .form-confirm input[type="submit"] {
    font-size: 1.5625vw; } }

@media only screen and (max-width: 750px) {
  .form-input input, .form-input select, .form-input textarea {
    font-size: 18px;
    width: 95%; }
  .form-input select {
    width: 100%; }
  .form-label {
    text-align: left;
    font-size: 20px; }
  .form-confirm input[type="submit"] {
    font-size: 20px; }
  .form form.inquiry-form {
    width: 82%;
    padding: 4%; }
  .form-group {
    flex-direction: column; }
  .modal {
    z-index: 10000; }
  .confirm-card {
    width: 92%;
    height: 97%;
    border-radius: 0;
    padding: 4%; } }
