.form-text-input {
    padding: .3rem .4rem .2rem;
    height: 34px;
}

.normal-form-check {
    margin-left: -1.4rem !important;
    margin-top: 2px !important;
}

.form-check {
    margin: .08rem;
}

hr {
    margin-top: .25rem;
    margin-bottom: .2rem;
}

.form-group {
    margin-bottom: .5rem;
}

legend, label {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.form-checkbox-spacing {
    margin-top: .15rem !important;
    margin-left: -1.35rem !important;
} 

.check-box {
    background-color: #70bfd1;
    padding: .9rem;
}

/* CHECKBOXES */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  .form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -.6rem;
    margin-top: -.6rem;
  }

  .width-60px {
    width: 60px;
    max-width: 60px;
  }

@media print {
    .form-text-input {
    height: 18px;
    }

    .form-check-input {
        width: 18px;
        height: 18px;
    }

    .check-box {
        padding: .7rem;
    }

    .checkmark {
    height: 18px;
    width: 18px;
    }

    .form-check {
        margin: 0;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    legend, label {
        font-size: .85rem;
        line-height: 1.2;
    }

    
    .justify-content-md-between {
        justify-content:space-between;
    }
}