/* CSS for the Application Form */

#applicationForm {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    line-height: 150%;
    letter-spacing: 1px;
}

#applicationForm p {
    margin-top: 1.2%;
}

#applicationForm button {
    background-image: linear-gradient(90deg, #30475e, #52779b);
    color: #FFC000;
    margin: 1px 5px;
}

.programOption {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #1AB7F1;
    margin: 1%;
    padding: 2% 3%;
    border-radius: 50px;
    border-style: solid;
    border-color: #FFC000;
}

.optionHead {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.optionCost {
    font-size: 0.8rem;
    text-align: center;
    margin: 15px 0;
}

.optionBtn {
    text-align: center;
    margin-top: 20px;
}

.programOption ol li {
    font-size: 0.9rem;
    margin-top: 5px;
}

.required {
    font-size: 0.7em;
    font-style: italic;
    color: red;
    /* vertical-align: text-top; */
}

.disclaimer {
    font-style: italic;
    font-size: 0.8em;
}

.halfWidth {
    width: 40%;
    height: 100%;
}

.form-element {
    width: 100%;
    font-size: 0.9em;
}

.form-question {
    float: left;
    width: 90%;
}

.form-question-num {
    float: left;
    margin-top: 1.2%;
    width: 5%;
}

.form-checkboxes {
    padding: 0.1% 0.2%;
    width: 30%;
}

.form-radio {
    padding: 0 0.2%;
    width: 23%;
}

.form-radio.duel {
    padding: 0 0.2%;
    width: 45%;
}

.inputBox {
    margin: 0.3% 0.2%;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #1AB7F1;
    border-radius: 10px;
    border-style: solid;
    border-color: #FFC000;
    border-width: 2px;
}

.textInputBox {
    padding: 0.4%;
    text-decoration: none;
    border-radius: 5px;
    border-style: solid;
    border-color: #1AB7F1;
    border-width: 2px;
}

.form-checkboxes label,
.form-radio label {
    font-size: 0.9em;
    cursor: pointer;
}

.form-element input[type='text'],
.form-element input[type='number'],
.form-element input[type='tel'],
.form-element input[type='email'] {
    width: 50%;
}

.form-element input[type='radio'] {
    width: 10%;
}

.form-element input[type='checkbox'] {
    width: 5%;
}

.form-element textarea {
    width: 100%;
    height: 80px;
}


/* Breadcrumbs */

#breadcrumbs {
    margin: 10px auto;
    text-align: center;
    font-size: 0.7em;
    color: #c9c8c8;
}

#breadcrumbs a {
    color: #c9c8c8;
}

#breadcrumbs .done {
    color: #04a104;
}

#breadcrumbs .done a {
    color: #04a104;
    cursor: pointer;
}

/* *** Batch List *** */

#batchList .programOption {
    border-radius: 25px;
}

#batchList tr:first-child {
    font-weight: bold;
    background-color: #7daedb;
    color: white;
}

#batchList table {
    width: 95%;
    /* border: 2px solid #FFC000; */
    border-radius: 8px;
    font-size: 0.7em;
    margin: auto;
}

#batchList td {
    padding: 0 0.7%;
    width: min-content;
}

#batchList tr:nth-child(even) {
    background-color: aliceblue;
}

/* *** Modal Dialog *** */
.modal-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000004d;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal {
    background: #FFFFFF;
    box-shadow: 2px 2px 20px 1px;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    top: 100px;
    position: inherit;
    max-height: 80%;
  }

  .modal-header {
    border-bottom: 1px solid #eeeeee;
    color: #0FD3FA;
    justify-content: space-between;
    padding: 10px;
    display: flex;
  }

  .modal-footer {
    background-color: #1AB7F1;
    padding: 10px;
    display: flex;
    border-top: 1px solid #eeeeee;
    justify-content: flex-end;
  }

  .modal-body {
    position: relative;
    padding: 20px 10px;
  }