h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.col-form-label {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.hidden {
    display:none;
}

.de-table
,.meet-table
,.imp-info {
    font-size:80%;
}

.acc-table thead {
  font-weight:bold;
  font-size: 80%;
}


@media print {
  * {
    margin: 0!important;
    padding: 0!important;
    float: none !important;
  }

  td, th {
    width: auto !important;
    max-width: 100% !important;
    min-width: auto !important;
}

  table, tr, div {
    border:0px !important;
  }

  .accordion, .accordion-item, .accordion-body, .container {
      width: 100% !important;
      max-width: 100% !important;
      display: block !important;
  }

  tbody .crseTR td table {
      font-size: 80%!important;
      width: 100% !important;
      table-layout: fixed !important;
  }
  
  .acc-table tbody .crseTR td table td:nth-child(1),
  .acc-table tbody .crseTR td table td:nth-child(2),
  .acc-table tbody .crseTR td table td:nth-child(3),
  .acc-table tbody .crseTR td table td:nth-child(4),
  .acc-table tbody .crseTR td table td:nth-child(5),
  .acc-table tbody .crseTR td table td:nth-child(6),
  .acc-table tbody .crseTR td table td:nth-child(7) {
    width: 5%!important;
  }

  .acc-table tbody .crseTR td:nth-child(1) {
    width: 1in !important;
  }
  
  .acc-table tbody .crseTR td:nth-child(6) {
    width: 2in !important;
  }

  .acc-table tbody .crseTR td:nth-child(10) {
    width: 1in !important;
  }

  .hide-print {
    display: none!important;
  }

  .container {
    width: 100% !important;
    min-width: 992px;
  }

  .tdhide {
    display:table-cell!important;
  }
}

@media (orientation: portrait) {
  .tdhide {
    display: none;
  }
}

.accordion-header {
  font-weight: bold;
}

.res-container {
  /* Set the container to flex */
  display: flex;
  /* Center items horizontally */
  justify-content: center;
  /* Center items vertically */
  align-items: center;
  /* Set height if needed */
  height: 100vh; /* Adjust as needed */
}

.spinner-container {
  /* Optional: Add some spacing */
  margin: auto;
}


/* ACCESSIBILITY Styles */
.select-btn {
  margin: 3px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
  padding: 5px;
  position: relative;
}
.select-btn:focus {
  border-color: #0067b8 !important;
  /* box-shadow: 0 0 4px 2px #0067b8 !important; */
  outline: 5px solid transparent !important;
}
.select-btn .vcccd-btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}
.select-btn .arrow-dwn {
  height: 21px;
  width: 21px;
  color: #000;
  font-size: 14px;
  border-radius: 50%;
  background: #ffffff00;
  transition: 0.3s;
  right: 0;
  margin-right: 12px;
  position: absolute;
  top: 20px;
  border: none;
}
.select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}
.list-items {
  position: relative;
  margin-top: 2px;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
}
.select-btn.open ~ .list-items {
  display: block;
}
.list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 50px;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}
.list-items .item:hover {
  background-color: #007a9c63;
}
.item .item-text {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}
.item.checked .checkbox {
  background-color: #4070f4;
  border-color: #4070f4;
}
.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
.item.checked .check-icon {
  transform: scale(1);
}
:focus{
  border-color: #0067b8;
  /* outline: 2px solid #333; */
}
.select-btn:focus-within {
  border-color: #0067b8;
  box-shadow: 0 0 4px 2px #0067b8;
  outline: 5px solid transparent;
}
.vcccd-btn {
  border: 1px solid #999;
  /* background-color: #6200ee;
  border: 1px solid #6200ee;
  border-radius: 3px;
  color: #fff;
  font-size: 0.75em;
  font-weight: bold;*/
  margin-bottom: 6px;
  margin-right: 6px;
  padding: 0.25em 1.75em 0.25em 0.25em;
  position: relative;
}
.vcccd-btn::before, .vcccd-btn::after {
  border-right: 2px solid #999;
  content: "";
  height: 1em;
  right: 0.75em;
  position: absolute;
  top: 50%;
  width: 0;
}
.vcccd-btn::after {
  transform: translate(0, -50%) rotate(-45deg);
}
.vcccd-btn::before {
  transform: translate(0, -50%) rotate(45deg);
}
.divinput {
  /* height: 46px; */
  width: 100%;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 6px;
  font-size: 16px;
  position: relative;
}
input.divinput:focus {
  outline: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important
}
.item.option-selected {
  padding-right: 30px;
  position: relative;
}
.item.option-selected.option-current::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.item.option-selected::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: '';
  height: 16px;
  position: absolute;
  right: 15px;
  top: 45%;
  transform: translate(0, -50%) rotate(45deg);
  width: 8px;
}
.option-current {
  background-color: #007a9c !important;
  color: #fff;
}
.selected-option {
  list-style: none;
}
ul#subj-selected-options, 
ul#site-selected-options, 
ul#ins-selected-options, 
ul#pot-selected-options {
  display: flex;
  flex-wrap: wrap;
}
.fa-chevron-down:before {
  position: absolute;
  top: 5px;
  right: 4px;
}
#subj-arr-button,
#site-arr-button,
#pot-arr-button,
#ins-arr-button {
  z-index: 10000!important;
}
.vcccd-btn:focus {
  outline: 2px solid #000;
  outline-offset: 1px;
}


summary,
.summ_head {
  display: inline;
}