/*submit-button*/
.submit-btn-div {
    position: fixed;
    top: 70%;
    text-align: center;
    width: max-content;
    box-sizing: border-box;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    right: calc(50% - 112.5mm);
    z-index: 9;
    box-shadow: 1px 2px 10px #00000078;
}

.submit-btn-div button {
    padding: 8px 18px;
    border-radius: 6px 6px 0 0;
    border: none;
    color: #fff;
    background: linear-gradient(180deg, #f16f91 0%, #ff215b 100%);
    background-origin: border-box;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    border: solid 2px var(--gray1);
    border-bottom: 0;
    box-shadow: inset 0px 0px 0px 2px var(--white1);
}

.submit-btn-div button:focus {
  box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
  outline: 0;
}
/*submit-button*/

/* Error class for highlighting the required fields */
.error {
    border: 2px solid red !important;
  }
  @media print {
    .submit-btn-div {
        display: none;
    }
    label.form_check_label img {
        display: none;
    }
    .error {
      border: solid 2px var(--blue3) !important;
  }
  }
  
