.w-100 {
  width: 100%;
}

.collection-top-btn-container {
  margin-top: 30px;
}

.btn-clear {
  background: transparent !important;
  color: #333 !important;
  outline: none !important;
  border: none !important;
}

.btn-clear:focus {
  background: transparent !important;
  color: #333 !important;
  outline: none !important;
  border: none !important;
}
.btn-clear:active {
  background: transparent !important;
  color: #333 !important;
  outline: none !important;
  border: none !important;
}

.gform_button {
  font-size: 16px !important;
  font-weight: normal !important;
  margin: 3px 0 !important;
  min-width: 80px !important;
  border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  -o-border-radius: 4px !important;
  transition: all 0.4s ease-in-out 0s !important;

  padding: 8px 16px !important;
  outline: none !important;
  border: none !important;

  color: #fff !important;
  background-color: #428bca !important;
  border-color: #357ebd !important;
}

.gform_wrapper .gfield select {
  height: auto;
  padding: 8px !important;
  padding-right: 35px !important;
}

.gform_wrapper .gfield .gfield_time_ampm select {
  padding: 8px 30px 8px 5px !important;
}

.test-results-table {
  width: 100%;
}

.test-results-table thead {
  border: 1px solid #ddd;
}

.test-results-table thead tr {
  width: 100%;
}

.test-results-table thead tr th {
  padding: 8px 10px;
  border-left: 1px solid #ddd;
}

.test-results-table-border-row {
  border: 1px solid #ddd;
}

.test-results-table-entry td {
  padding: 5px;
}

.light-white-bg {
  background: #fafafa;
}

.no-test-results-row {
  border: 1px solid #ddd;
}

.no-test-results-row td {
  text-align: center;
  background: #fafafa;
  padding: 50px;
}

.no-test-results-row td a {
  font-weight: bold;
  color: dodgerblue;
}

.consent-collaspe-btn {
  width: 100% !important;
  background: #fafafa !important;
  text-align: left !important;
  border: 1px solid #ddd !important;
  font-size: 1.5rem !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.consent-collaspe-container {
  border: 1px solid #eee;
  padding: 15px;
}

.half-circle-spinner-container {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
  margin: auto;
}

.half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: dodgerblue;
  animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: dodgerblue;
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mlc_new_order_button,
.mlc_edit_order_button {
  display: inline-block;
  margin-right: 20px !important;
}

.mlc_test_categories label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
  padding: 0;
}

#mlc_tests_search {
  margin-bottom: 10px;
}

.mlc_tests_chosen {
  display: none;
  margin-bottom: 10px;
}

.mlc_tests_chosen label {
  display: inline-block;
}

.mlc_chosen_test {
  position: relative;
  display: inline-block;
  margin: 5px;
  padding: 5px 20px 5px 10px;
  border-radius: 10px;
  background-color: #428bca;
  color: #fff;
}

.mlc_chosen_test:after {
  position: absolute;
  right: 10px;
  content: "x";
  color: #ccc;
  font-weight: bold;
  font-size: 12px;
}

.mlc_chosen_test:hover {
  background-color: #eee;
  color: #000;
}

.mlc_chosen_test:hover:after {
  color: #666;
}

.mlc_clear_tests {
  display: inline-block;
  margin-left: 10px;
}

.mlc_test_categories .mlc_tests_tab {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 40px;
  background-color: #eee;
  font-size: 16px;
  color: #333;
  line-height: 40px;
  text-align: center;
  margin-bottom: 8px;
}

.mlc_test_categories .mlc_tests_content {
  margin-top: -8px;
  margin-bottom: 15px;
}

.mlc_test_categories .mlc_tests_content label {
  font-weight: normal;
}

.mlc_test_categories .mlc_tests_content .mlc_item_type_label {
  font-weight: bold;
  margin-top: 10px;
}

.mlc_test_categories .mlc_tests_content .mlc_item_type_block {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 500px;
}

.mlc_test_categories .mlc_tests_content .gchoice {
  position: relative;
  width: 25%;
}

.mlc_test_categories .mlc_tests_content input[type="checkbox"] {
  margin-right: 3px;
}

.show-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1012;
  background-color: rgba(255, 255, 255, 0.5);
}

.show-spinner::after {
  content: "";
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #f25a41;
  border-radius: 100%;
  will-change: transform;
  animation: spin 1s infinite linear;
    /** added the min and max to fix a know bug with Sarari **/
    max-height: 80px; 
    min-height: 80px;
    max-width: 80px;
    min-width: 80px;
}

.mlc-item-content {
  display: none;
  position: absolute;
  z-index: 9;
  min-width: 250px;
  bottom: 25px;
  left: 50px;
  padding: 5px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.mlc_test_categories .mlc_tests_content .gchoice:hover .mlc-item-content {
  display: block;
}

.mlc_order_fasting .gfield_consent_label {
  font-size: 16px;
  font-weight: bold;
  color: red;
}

.mlc_order_date_filters{
  position: absolute; 
  bottom: 10px; 
  right: 0px; 
  font-size: 1.6rem;
}


.mlc_order_search_btn{
  position: absolute;
  bottom: 0px;
   right: 0px;
}

.mlc_order_excel_export{
  position: absolute; 
  bottom: -10px;
  right: 0px;
  width: 100%; 
  text-align: right; 
  padding-right: 15px;
}


@media (max-width: 992px) {

  .columns-checkbox-container{
    display: flex;
    flex-wrap: wrap;
  }

  .columns-checkbox-container li{
    width: 50%!important;
  }

  .mlc_order_date_filters{
    position: relative; 
    bottom: auto;
    right: auto;
  }

  
  .mlc_order_search_btn{
    position: relative; 
    bottom: auto;
    right: auto;
  }

  .mlc_order_excel_export{
    position: relative; 
    bottom: auto;
    right: auto;
    width: 100%; 
    text-align: left; 
    padding-right: 0;
  }

  #logo_img{
    height:60px;
  }

  .navbar{
    padding:0!important;
  }

  .social-header{
    display:none!important;
  }

  .navbar-header{
    width: 90vw!important;
  }
}