  .csu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .csu-program-wrapper .csu-dropdown, .csu-program-finder .csu-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .csu-btn {
    font-family: "Roboto", sans-serif;
    background-color: #097054;
    color: #FEFEFE;
    padding: 0.75rem 1rem;
    margin: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    border: none;
    border-radius: 0;
    min-height: 3.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    width: fit-content;
  }
  .csu-btn:hover {
    color: #ffffff;
    background-color: #075842;
  }
  @media (max-width: 992px) {
    .csu-btn {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 1rem;
    }
  }
  @media (max-width: 768px) {
    .csu-btn {
      font-size: 1.12rem;
    }
  }
  .csu-program-wrapper .csu-dropdown, .csu-program-finder .csu-input {
    font-family: "Roboto", sans-serif;
    color: #707070;
    font-size: 1.25rem;
    padding: 0.65rem;
    border: 1px solid #707070;
    border-radius: 0;
    width: 100%;
    min-height: 3.25rem;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .csu-program-wrapper .csu-dropdown[aria-expanded=true]::after {
    transform: rotate(223deg);
  }
  
  .csu-height-100 {
    height: 100%;
  }
  
  .csu-m-remover {
    margin: 0;
  }
  
  input[type=search]:not(:focus, :active)::-webkit-search-cancel-button {
    display: none;
  }
  
  .csu-arrow {
    position: relative;
  }
  .csu-arrow::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: calc((100% - 1.8rem) / 2);
    width: 0.6rem;
    height: 0.6rem;
    border-color: #097054;
    border-style: solid;
    border-width: 0 2px 2px 0;
    margin: 0.5rem;
    cursor: pointer;
    transform: rotate(45deg);
    pointer-events: none;
  }
  
  .csu-dropdown-list {
    display: none;
    list-style: none;
    color: #707070;
    font-size: 1.12rem;
    padding: 0.2em 0;
    background-color: #FEFEFE;
    border: 1px solid #707070;
    box-shadow: 0 0 0.5em 0.5em rgba(0, 0, 0, 0.07);
    position: absolute;
    top: 2.1rem;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    transition: 0.2s;
    z-index: 1;
  }
  .csu-dropdown-list__option {
    padding: 0.5rem 0.9rem;
    margin: 0.3rem 0;
    border-radius: 0;
    cursor: pointer;
  }
  .csu-dropdown-list__option:hover {
    color: #FEFEFE;
    background-color: #707070;
  }
  .csu-dropdown-list.show {
    display: block;
  }
  
  .csu-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  .csu-btn {
    grid-column: 2/3;
  }
  @media (max-width: 768px) {
    .csu-btn {
      grid-column: auto;
    }
  }
  .csu-btn__icon {
    margin: 0 0.3rem;
  }
  .csu-btn--request-info {
    background-color: #89C53A;
    margin-top: 1rem;
  }
  @media (max-width: 992px) {
    .csu-btn--request-info {
      margin-top: 0;
    }
  }
  .csu-btn--request-info:hover {
    background-color: #7bb134;
  }
  
  .csu-custom-btn {
    position: relative;
  }
  
  .csu-reset-link {
    grid-column: 2/3;
    color: #707070;
    width: 100%;
    font-size: 1rem;
    text-align: center;
    text-decoration: underline;
    line-height: 1.5;
    cursor: pointer;
  }
  .csu-reset-link:hover {
    color: #4a4a4a;
  }
  @media (max-width: 992px) {
    .csu-reset-link {
      position: relative;
      display: block;
      font-size: 1rem;
      bottom: auto;
      left: auto;
      transform: none;
    }
  }
  @media (max-width: 768px) {
    .csu-reset-link {
      grid-column: auto;
    }
  }

  .csu-all-programs {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1.25rem;
  }
  
  .csu-all-programs__btn {
      background-color: transparent;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      text-align: center;
      padding: 1rem 0.5rem;
      border: 0;
      cursor: pointer;
  }
  
  .csu-all-programs__txt {
    color: #097054;
    font-size: 1rem;
    font-weight: 400;
    padding-right: 8px;
  }
  
  .csu-all-programs {
    padding: 0.6rem 1.25rem;
  }
  @keyframes arrow-fx {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(180deg);
    }
  }

  @keyframes reverse-arrow-fx {
    0% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(0);
    }
  }
  
  body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    align-content: center;
    height: 100svh;
    background-color: #f9f9f9;
  }
  
  /* Program Finder Style --------------------------------------- */
  .csu-program-header__title {
    color: #097054;
    font-size: 3.25rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    padding: 1.25rem 0;
  }
  @media (max-width: 768px) {
    .csu-program-header__title {
      font-size: 2.25rem;
    }
  }
  .csu-program-header__description {
    font-family: "Open Sans", sans-serif;
    color: #707070;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    line-height: 34px;
    margin: 0 auto;
    padding: 0;
    max-width: 55.6rem;
  }
  @media (max-width: 768px) {
    .csu-program-header__description {
      font-size: 1.12rem;
      line-height: 28px;
    }
  }
  
  .csu-flex-cotainer,
  .block-views-blockprogram-catalog-block-1 {
    background-color: #F1F8E8;
    align-content: center;
    padding: 5rem 2rem;
    margin: 0 auto;
  }
  @media (max-width: 992px) {
    .csu-flex-cotainer,
    .block-views-blockprogram-catalog-block-1  {
      padding: 1rem;
      max-width: 100%;
    }
  }

  .csu-flex-cotainer__content {
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .csu-program-finder {
    padding-top: 1rem;
  }
  .csu-program-finder .csu-input {
    background-color: #FEFEFE;
  }
  
  .csu-program-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, min-content);
    gap: 1.25rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
  }
  @media (max-width: 992px) {
    .csu-program-filter {
      padding: 0.6rem 0;
    }
  }
  @media (max-width: 768px) {
    .csu-program-filter {
      grid-template-columns: 1fr;
      row-gap: 1rem;
      -moz-column-gap: 0;
           column-gap: 0;
    }
  }
  
  .csu-program-search {
    grid-column: span 3;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
  }
  @media (max-width: 768px) {
    .csu-program-search {
      grid-column: auto;
    }
  }
  
  .csu-program-wrapper {
    position: relative;
    box-sizing: border-box;
  }

  .csu-program-wrapper label {
    font-size: 0;
    position: absolute;
  }

  .csu-program-wrapper .csu-dropdown {
    background-color: #FEFEFE;
    border: 2px solid #097054;
    cursor: pointer;
    color: #097054;
    font-weight: bold;
  }

  .csu-program-wrapper .csu-dropdown option {
    color: #707070;
  }
  .csu-program-wrapper .csu-dropdown option:first-child {
    font-weight: bolder;
}


  .csu-program-wrapper .csu-dropdown[aria-expanded=true] {
    box-shadow: 0 0 0.3rem #097054;
  }
  /* End Program Finder Style --------------------------------------- */
  /* Results style ---------------------------------------------- */
  .views-infinite-scroll-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.6rem 1.25rem 0;
  }
  @media (max-width: 992px) {
    .views-infinite-scroll-content-wrapper {
      padding: 0.6rem 0;
    }
  }
  .csu-results__item {
    font-size: 1rem;
    margin: 0 auto;
    width: 100%;
    background: #FEFEFE;
    border-radius: 0;
    position: relative;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
  }

  .csu-results__item[open] .csu-results__item__summary {
    padding: 0;
  }
  .csu-results__item[open] .csu-results__item__summary span {
    opacity: 0;
  }
  .csu-results__item[open] .csu-results__item__summary .expand-icon {
    animation: arrow-fx 0.2s ease;
  }

  .csu-results__item[open] .csu-results__item__summary .expand-icon::after {
    width: 16px;
    height: 2px;
  }

  /* .csu-results__item[open] .csu-results__item__summary .expand-icon__icon {
    animation: arrow-fx 0.2s ease;
  } */

  .expand-icon::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #097054;
  }

  .expand-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: #097054;
  }
  .csu-results__item__summary:hover .expand-icon::before {
    background-color:  #ffffff;
  } 
  .csu-results__item__summary:hover .expand-icon::after {
    background-color:  #ffffff;
  } 
  .csu-results__item[open] .csu-results__item__summary .expand-icon::before,
  .csu-results__item[open] .csu-results__item__summary .expand-icon::after{
    background-color: #097054 !important;
  }

  .reverse-animation-icon {
    animation: reverse-arrow-fx 0.2s ease;
  }

  .csu-results__item__summary {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
    display: flex;
    list-style: none;
    padding: 1rem;
    min-height: 1rem;
    align-items: center;
    transition: all 0.2s ease-in-out;
    position: relative;
  }
   .csu-results__item__summary:hover {
    background: #097054;
   }
  .csu-results__item__summary:hover .csu-results__item__summary__title {
    color: #ffffff;
  }
  .csu-results__item[open] .csu-results__item__summary {
    background-color: #ffffff !important;
  }
   .csu-results__item[open] .csu-results__item__summary .csu-results__item__summary__title {
    color: #097054 !important;
  }
  .csu-results__item__summary::-webkit-details-marker {
    display: none;
  }
  .csu-results__item__summary:focus {
    outline: none;
  }
  .csu-results__item__summary__title {
    font-family: "Open Sans", sans-serif;
    color: #707070;
    font-size: 1.25rem;
    font-weight: 400;
    padding-right: 1.25rem;
    transition: all 0.2s ease-in-out;
  }
  .csu-results__item__summary .expand-icon {
    position: absolute;
    right: 1rem;
    top: calc((100% - 1rem) / 2);
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .csu-results__item__summary .expand-icon__icon {
    width: auto;
    height: auto;
  }
 
  .csu-results__item__content {
    color: #303651;
    padding: 0.2rem 1rem 1rem 1rem;
    font-weight: 300;
    line-height: 1.5;
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 1.5rem;
    transition: height 0.3s ease-in-out;
  }
  @media (max-width: 992px) {
    .csu-results__item__content {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }
  .csu-results__item__content__columns__head {
    border-bottom: 1px solid #707070;
    margin: 1rem 0;
  }
  
  .csu-program-titles {
    font-family: "Open Sans", sans-serif;
    color: #707070;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
  }
  
  .csu-program-modality {
    font-family: "Open Sans", sans-serif;
    color: #707070;
    font-size: 1.12rem;
    font-weight: 400;
    margin: 0.62rem 0;
  }
  @media (max-width: 992px) {
    .csu-program-modality {
      font-size: 1rem;
    }
  }
  .csu-program-modality b {
    color: #097054;
    font-weight: bold;
  }
  
  .csu-program-description__text {
    font-family: "Open Sans", sans-serif;
    color: #707070;
    font-size: 1rem;
    font-weight: 400;
    line-height: 28px;
    margin: 1rem 0;
  }

  .csu-search-btns {
    grid-column: 2 / 3;
    text-align: center;
  }

  .csu-search-btns .csu-btn {
    width: 100%;
  }

  .csu-search-btns .csu-search-btns__first {
    background-color: #097054;
    margin: 0 0 20px;
  }

  .csu-search-btns .csu-search-btns__first:hover {
    background-color: #075842;
  }

  .csu-search-btns .csu-search-btns__second {
    background-color: transparent;
    color: #707070;
    font-weight: 300;
    text-decoration: underline;
    border: 0;
    padding: 5px 16px;
    display: inline;
  }

  .csu-search-btns .csu-search-btns__second:hover,
  .csu-search-btns .csu-search-btns__second:focus,
  .csu-search-btns .csu-search-btns__second:active {
    background-color: transparent;
    color: #4a4a4a;
  }

  @media (max-width: 768px) {

    .csu-search-btns {
      grid-column: auto;
    }
  }

#block-csuohio-theme-views-block-program-catalog-block-1 > div{
  
}
.view-program-catalog {
  max-width: 1400px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.view-program-catalog .view-content .csu-results__container .view-empty {
  text-align: center;
}




/**Pager**/

.csu-all-programs {

}
.csu-all-programs nav {

}
.csu-all-programs nav ul,
.view-program-catalog ul.js-pager__items {
  list-style: none;
  margin-top: 1rem;
}
.csu-all-programs nav ul li,
.view-program-catalog ul.js-pager__items li {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  align-items: flex-start;
}
.csu-all-programs nav ul li a,
.view-program-catalog ul.js-pager__items li a {
  text-decoration: none;
  color: #097054;
  font-size: 1rem;
  font-weight: 400;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.view-program-catalog ul.js-pager__items li a span.next {
  text-decoration: underline;
  font-size: 1.125rem;
}
.view-program-catalog ul.js-pager__items li a span.more {
  text-decoration: none;
  font-size: 1rem;
  margin-top: 1rem;
}
.csu-all-programs__btn__arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #097054;
    cursor: pointer;
    margin-top: .6rem;
  }
