

/* Start:/local/components/eltex-academy/employees-list/templates/new/style.css?17506702039770*/
/* Teachers component */
.teacher-card__info_mobile {
  display: none;
}
.teachers {
  width: 100%;
  position: relative;
}
.teachers__list {
  display: flex;
  gap: 16px;
}
.teacher-card__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}
.teacher-card__wrapper > img {
  height: 100%;
}
.teacher-card__wrapper button,
.teacher-close-btn_mobile {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  transition: box-shadow 0.2s ease;
}
.teacher-card__wrapper button:hover {
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.12),
    0px 0px 4px 0px rgba(34, 34, 34, 0.2);
}
.teacher-card__info {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
  background-color: #fff;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.teacher-card__info button {
  background-color: var(--blue-main);
  transition: background-color 0.2s ease;
}
.teacher-card__info button:hover {
  background-color: var(--blue-dark);
}
.teacher-card__info-photo {
  max-height: 138px;
  max-width: 118px;
  border-radius: 8px;
}
.teacher-card__info ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.teacher-card__info ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.teacher-card__info ul li::before {
  content: "";
  position: relative;
  top: 9px;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: var(--blue-main);
  border-radius: 50%;
}
.teacher-card__info .sub-info {
  font-size: 16px;
}
.teacher-card__info .sub-info a {
  font-size: 16px;
}
.sub-info a:hover ~ .tooltip {
  display: flex;
}
.teacher-card__info .tooltip:hover {
  display: flex;
}
.teacher-card__info .tooltip {
  display: none;
  position: absolute;
  bottom: 118px;
  right: 122px;
  padding: 7px 8px;
  background-color: var(--black-light);
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.teacher-card__info .tooltip p {
  max-width: 292px;
  font-size: 14px;
  color: #fff;
}
.teacher-card__info .tooltip p a {
  font-size: 14px;
  color: var(--blue-extra-light);
}
.teacher-card__info .tooltip-arrow {
  position: absolute;
  bottom: -6px;
  right: 11px;
}
.teacher-card__info .btn-primary {
  width: 100%;
  font-size: 16px;
}
.teacher-card__info a {
  width: fit-content;
  color: var(--blue-main);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.teacher-card__info a:hover {
  color: var(--blue-dark);
}
.teacher-card__name {
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
}
.teacher-card__job-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-light);
}
.teachers-bg {
  position: absolute;
  top: -40%;
  right: 0;
  z-index: -2;
}
@media (min-width: 993px) and (max-width: 1200px) {
	.teacher-card__info-photo {
		max-height: 120px;
		max-width: 93px;
	}
	.teacher-card__info a {
		font-size: 18px;
	}
	.teacher-card__info ul li {
		font-size: 14px;
	}
	.teacher-card__info .sub-info {
		font-size: 14px;
	}
	.teacher-card__info .sub-info a {
		font-size: 14px;
	}
	.teacher-card__info .tooltip {
		bottom: 142px;
		right: 50px;
	}
}
/* END Teachers component */
@media (min-width: 993px) {
	.teacher-card__wrapper:hover > .teacher-card__info {
	  transform: translateY(0);
	}
}
@media screen and (max-width: 992px) {
  .teachers__list {
	flex-wrap: nowrap;
  }

	.teacher-card__wrapper {
		height: 312px;
	}
.teacher-card__info_mobile {
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -10;
    opacity: 0;
  }
  .teacher-card__info_mobile.active {
    display: flex;
    position: fixed;
    z-index: 100;
    opacity: 1;
	justify-content: center;
  }
  .teacher-card__info_mobile .background-info {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: -2;
    transform: translateX(100%);
    transition: 0.01s;
  }
  .teacher-card__info_mobile.active .background-info {
    transform: translateX(0);
  }
  .teacher-card__info_mobile .content {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 20px);
	width: calc(100vw - 80px);
    background-color: #fff;
    position: absolute;
    bottom: 0;
    padding: 32px;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
    transition: transform 0.25s ease;
	overflow-y: auto;
    z-index: -1;
  }
  .teacher-card__info_mobile ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .teacher-card__info_mobile ul li {
    display: flex;
    gap: 12px;
  }
  .teacher-card__info_mobile ul li::before {
    content: "";
    position: relative;
    top: 7px;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background-color: var(--blue-main);
    border-radius: 50%;
  }
  .teacher-card__info_mobile .sub-info {
    font-size: 14px;
    color: var(--black-light);
  }
  .teacher-card__info_mobile .sub-info a {
    font-size: 14px;
    color: var(--blue-main);
  }
  .teacher-card__info_mobile.active .background-info {
    z-index: 99;
  }
  .teacher-card__info_mobile.active .content {
    transform: translateY(0);
    z-index: 100;
  }
  .teacher-close-btn_mobile {
    background-color: var(--blue-main);
  }
  .teacher-card__name {
    font-size: 24px;
  }
  .teacher-card__job-title {
    font-size: 16px;
  }
  .teacher-card__info-mail,
  .teacher-card__info-phone {
    font-weight: 500;
    color: var(--blue-main);
    font-size: 18px;
  }
  .teacher-card__info_mobile .sub-info a:hover ~ .tooltip {
    display: flex;
  }
  .teacher-card__info_mobile .tooltip:hover {
    display: flex;
  }
  .teacher-card__info_mobile .tooltip {
    display: none;
    position: absolute;
    bottom: 118px;
    right: 26px;
    padding: 7px 8px;
    background-color: var(--black-light);
    border-radius: 4px;
    transition: opacity 0.2s ease;
  }
  .teacher-card__info_mobile .tooltip p {
    max-width: calc(100vw - 68px);
    font-size: 14px;
    color: #fff;
  }
  .teacher-card__info_mobile .tooltip p a {
    font-size: 14px;
    color: var(--blue-extra-light);
  }
  .teacher-card__info_mobile .tooltip-arrow {
    position: absolute;
    bottom: -6px;
    right: 50%;
  }


}
@media screen and (max-width: 480px) {
	 /* Teachers */
  .teachers {
    width: 100%;
    overflow: hidden;
  }
  .teachers__list {
    flex-direction: column;
    gap: 32px;
  }
  .teacher-card {
    position: relative;
    z-index: 1;
  }
	.teacher-card__wrapper {
		height: auto;
	}
  .teacher-card__wrapper > img {
    height: auto;
    width: 100%;
  }
  .teacher-card__info_web {
    display: none;
  }
  .teacher-card__info_mobile {
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -10;
    opacity: 0;
  }
  .teacher-card__info_mobile.active {
    display: flex;
    position: fixed;
    z-index: 100;
    opacity: 1;
	overscroll-behavior: none;
  }
  .teacher-card__info_mobile .background-info {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: -2;
    transform: translateX(100%);
    transition: 0.01s;
  }
  .teacher-card__info_mobile.active .background-info {
    transform: translateX(0);
  }
  .teacher-card__info_mobile .content {
    display: flex;
    flex-direction: column;
    height: fit-content;
	width: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    padding: 32px;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    z-index: -1;
  }
  .teacher-card__info_mobile ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .teacher-card__info_mobile ul li {
    display: flex;
    gap: 12px;
  }
  .teacher-card__info_mobile ul li::before {
    content: "";
    position: relative;
    top: 7px;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background-color: var(--blue-main);
    border-radius: 50%;
  }
  .teacher-card__info_mobile .sub-info {
    font-size: 14px;
    color: var(--black-light);
  }
  .teacher-card__info_mobile .sub-info a {
    font-size: 14px;
    color: var(--blue-main);
  }
  .teacher-card__info_mobile.active .background-info {
    z-index: 99;
  }
  .teacher-card__info_mobile.active .content {
    transform: translateY(0);
    z-index: 100;
  }
  .teacher-close-btn_mobile {
    background-color: var(--blue-main);
  }
  .teacher-card__name {
    font-size: 24px;
  }
  .teacher-card__job-title {
    font-size: 16px;
  }
  .teacher-card__info-mail,
  .teacher-card__info-phone {
    font-weight: 500;
    color: var(--blue-main);
    font-size: 18px;
  }
  .teacher-card__info_mobile .sub-info a:hover ~ .tooltip {
    display: flex;
  }
  .teacher-card__info_mobile .tooltip:hover {
    display: flex;
  }
  .teacher-card__info_mobile .tooltip {
    display: none;
    position: absolute;
    bottom: 118px;
    right: 26px;
    padding: 7px 8px;
    background-color: var(--black-light);
    border-radius: 4px;
    transition: opacity 0.2s ease;
  }
  .teacher-card__info_mobile .tooltip p {
    max-width: calc(100vw - 68px);
    font-size: 14px;
    color: #fff;
  }
  .teacher-card__info_mobile .tooltip p a {
    font-size: 14px;
    color: var(--blue-extra-light);
  }
  .teacher-card__info_mobile .tooltip-arrow {
    position: absolute;
    bottom: -6px;
    right: 50%;
  }
}
/* End */
/* /local/components/eltex-academy/employees-list/templates/new/style.css?17506702039770 */
