/* Custom Tabs on /admissions/contact/ */


.tabs {
  --color-uvu-primary: #3f6f4e;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  -moz-column-gap: 2px;
       column-gap: 2px;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  margin-bottom: 0;
  margin-inline: 2rem;
  font-weight: bold;
  font-size: 1.0125em;
  align-items: center;
}
.tabs > details {
  display: contents;
  order: 0;
}
.tabs > details[open]::details-content {
  display: contents;
}
.tabs > details[open] > summary {
  color: #000;
  background-color: rgb(187.0603448276, 216.4396551724, 196.2413793103);
}
.tabs > details[open] > summary:hover {
  background-color: inherit;
}
.tabs > details > summary {
  margin-block: 20px 0;
  list-style: none;
  padding: 10px 20px;
  background-color: #3f6f4e;
  color: #fff;
  border: 1px solid #3f6f4e;
  border-bottom: none;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .tabs > details > summary {
    border-radius: 10px 10px 0 0;
  }
}
.tabs > details > summary:hover {
  text-decoration: none;
  background-color: rgb(53.7672413793, 94.7327586207, 66.5689655172);
}
.tabs > details > summary::marker, .tabs > details > summary::-webkit-details-marker {
  display: none;
}
.tabs > details > summary:after {
  display: none;
}
.tabs > details > .tab-content {
  order: 1;
  box-sizing: border-box;
  display: block;
  padding: 1rem;
  margin-top: 0px;
  width: 100%;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3647058824);
  background-color: #fafafa;
  color: #000;
  border-radius: 5px;
  overflow-x: hidden;
}

.tab-content .tabs {
  justify-content: flex-start;
  flex-direction: row;
  align-items: flex-start;
  min-height: 570px;
}
@media screen and (min-width: 992px) {
  .tab-content .tabs {
    flex-direction: column;
  }
}
.tab-content .tabs > details {
  --button-width: 250px;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  margin-block: 10px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .tab-content .tabs > details {
    display: grid;
    grid-template-columns: var(--button-width) auto;
    align-items: start;
    width: var(--button-width);
    margin-block: 2px;
  }
}
.tab-content .tabs > details > summary {
  border-radius: 5px;
  margin-block: 0px;
  border-bottom: 1px solid #3f6f4e;
}
.tab-content .tabs > details > summary:after {
  display: inherit;
  font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
  font-size: 1.35rem;
  content: "\f077";
  transition: transform 0.3s ease;
  width: 48px;
  background-color: transparent;
}
@media screen and (min-width: 992px) {
  .tab-content .tabs > details > summary:after {
    display: none;
  }
}
.tab-content .tabs > details[open] {
  width: 100%;
}
.tab-content .tabs > details[open] > summary:after {
  color: var(--color-uvu-primary);
  transform: rotate(180deg);
}
.tab-content .tabs > details > .tab-content {
  margin-inline: 10px;
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .tab-content .tabs > details > .tab-content {
    width: calc(100% - var(--button-width) - 1rem);
    border: none;
    position: absolute;
    left: var(--button-width);
    top: 0;
    padding-block: 1rem;
  }
}

.grid.advisors {
  width: 100%;
  position: relative;
  min-height: 570px;
}
.grid.advisors .item .list ul > li {
  list-style: none;
  font-weight: normal;
}
.grid.advisors .item .list ul > li::marker {
  display: none;
}
.grid.advisors .item .transform-grid-cell > .directory {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}