/*
@include breakpoint(tablet) {
}
*/
/*
@include transition(timing) {
}
*/
.sidebar-loader,
.sidebar-loader:before,
.sidebar-loader:after {
  background: #88ac9c;
  -webkit-animation: sidebar_load 1s infinite ease-in-out;
  animation: sidebar_load 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.sidebar-loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 0 auto;
  position: relative;
  font-size: 11px;
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.sidebar-loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.sidebar-loader:after {
  left: 1.5em;
}

.sidebar-loader:before,
.sidebar-loader:after {
  position: absolute;
  top: 0;
  content: "";
}

@-webkit-keyframes sidebar_load {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
    margin-bottom: 1em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
    margin-bottom: 0;
  }
}
@keyframes sidebar_load {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
    margin-bottom: 1em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
    margin-bottom: 0;
  }
}
.team-outer-wrapper .team-inner-wrapper {
  margin: 0 auto;
  width: var(--content-width);
  max-width: var(--content-max-width);
}

.persons__item {
  background: #f5f5f5;
  padding: 2rem;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .persons__item {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.persons__item__portrait {
  position: relative;
  z-index: 1;
  display: block;
}
.persons__item__signature {
  display: block;
  margin: 0.5rem auto 0 auto;
  height: 4rem;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-backdrop-filter: blur(4px) brightness(1.5);
          backdrop-filter: blur(4px) brightness(1.5);
}
.persons__item__name {
  font-family: F37-Ginger-Light, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;
  line-height: 1.125;
  margin-bottom: 0.75rem;
}
@media (min-width: 769px) {
  .persons__item__name {
    font-family: F37-Ginger-Thin, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 24px;
  }
}
@media (min-width: 1025px) {
  .persons__item__name {
    font-size: 30px;
    margin-bottom: 1rem;
  }
}
.persons__item__text {
  font-family: F37-Ginger-Light, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 14px;
  line-height: 1.375;
}
@media (min-width: 1025px) {
  .persons__item__text {
    font-size: 16px;
  }
}
.persons__item__text__link {
  margin-top: 1rem;
}
.persons__item__text__link a {
  color: #88ac9c;
  text-decoration: underline;
}
.persons__item__data {
  width: 65%;
}
@media (max-width: 580px) {
  .persons__item__data {
    width: 100%;
  }
}
.persons__item__image {
  position: relative;
  width: 30%;
  margin: 0;
}
@media (max-width: 580px) {
  .persons__item__image {
    width: 50%;
  }
  .persons__item__image:empty {
    display: none;
  }
}