/*! Staffroller v0.5.0 MIT by Qrac */

.staffroller-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  z-index: 1000;
  transition: 0.32s;
}

.staffroller-modal[aria-hidden="true"] {
  visibility: hidden;
}

.staffroller-modal[aria-hidden="true"] .is-fade {
  opacity: 0;
}

.staffroller-modal .is-fade {
  transition: 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.staffroller-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.staffroller-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 3.75em;
  height: 3.75em;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  opacity: 0.5;
  z-index: 1003;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.staffroller-close:before,
.staffroller-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.875em;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.staffroller-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.staffroller-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.staffroller-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.staffroller-container {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  padding: 48px 16px 160px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.staffroller-container:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.staffroller-title {
  padding: 1.25em;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
}

.staffroller-row {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}

.staffroller-row > dt {
  flex: 0 0 50%;
  padding: 0.75em 0.5em;
}

.staffroller-row > dd {
  flex: 0 0 50%;
  padding: 0.75em 0.5em;
}

.staffroller-role {
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  text-align: right;
  opacity: 1;
}

.staffroller-members > .staffroller-member:not(:last-child) {
  margin-bottom: 0.5em;
}

.staffroller-member {
  -js-display: flex;
  display: flex;
  align-items: center;
}

.staffroller-image {
  flex: none;
  display: block;
  width: 1.5em;
  margin-right: 0.25em;
  border-radius: 999em;
}

.staffroller-name {
  flex: 1 0;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  text-align: left;
}

.staffroller-link {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.staffroller-link:hover {
  color: inherit;
  text-decoration: underline;
}

.staffroller-link:visited {
  color: inherit;
}

@media screen and (min-width: 576px) {
  .staffroller-modal {
    font-size: 100%;
  }
}

@media screen and (min-width: 768px) {
  .staffroller-modal {
    font-size: 110%;
  }
}

@media screen and (min-width: 992px) {
  .staffroller-modal {
    font-size: 110%;
  }
}

@media screen and (min-width: 1200px) {
  .staffroller-modal {
    font-size: 110%;
  }
}