

/* Start:/local/components/eltex-academy/employees-list/templates/new-401534/style.css?175937385611430*/
/* Teachers component */
.teacher-card__info_mobile {
  display: none;
}
.teachers {
  width: 100%;
  position: relative;
}
.teachers__list {

}
.teachers__list-wrapper {
	display: grid;
	position: relative;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
    padding: 24px;
	background-color: #FFF;
	border-radius: 8px;
	box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}
.teacher-card__bg-1, .teacher-card__bg-2 {
	position: absolute;
	display: none;
}
.teacher-card__wrapper {
	position: relative;
    overflow: hidden;
	border-radius: 8px;
	transition: all .2s ease;
}
.teacher-card {
  display: flex;
  justify-content: center;
}
.teacher-card > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 64 / 75;
}
.teacher-card 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 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(110%);
  transition: transform 0.2s ease;
	border-radius: 8px;
}

.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: 14px;
}
.teacher-card__info .sub-info a {
  font-size: 14px;
}
.sub-info a:hover ~ .tooltip {
  display: flex;
}
.teacher-card__info .tooltip:hover {
  display: flex;
}
.teacher-card__info .tooltip {
  display: none;
  position: absolute;
  bottom: 117px;
  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__info-mail {
	height: 44px;
}
.teacher-card__info-divider {
	width: 100%;
	margin-top: 6px;
	border-top: 1px var(--blue-main) solid;
}
.teacher-card__info-phone {
	margin-top: 6px;
}
.teacher-card__name {
  height: 77px;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
}
.teacher-card__job-title {
  height: 53px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-light);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #76767680;
}
.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);
	}
	.teacher-card__wrapper:hover {
	  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),0px 0px 4px 0px rgba(34, 34, 34, 0.08);
	}

}
@media screen and (max-width: 992px) {
  .teachers__list {
	flex-wrap: nowrap;
  }
.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%;
  }

	.teacher-card__info_mobile .teacher-card__job-title {
		height: auto;
		font-weight: 600;
		border: none;
		margin-top: 0;
		padding-top: 0;
	}
}
@media screen and (max-width: 480px) {
	 /* Teachers */
  .teachers {
    width: 100%;
    overflow: hidden;
  }
  .teachers__list {
    flex-direction: column;
    gap: 32px;
  }
	.teachers__list-wrapper {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 24px 16px;
		width: calc(100% + 32px);
		transform: translateX(-16px);
		border-radius: 24px;
	}
	.teacher-card__wrapper {
		height: 312px;
	}
	.teacher-card__name {
		height: auto;
	}
	.teacher-card button, .teacher-close-btn_mobile {
		width: 32px;
		height: 32px;
		padding: 6px;
	}
	.teacher-card button img {
		width: 100%;
	}
  .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: 28px;
  }
  .teacher-card__job-title {
    font-size: 16px;
	font-weight: 400;
  }
  .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%;
  }
	.teacher-card__bg-1, .teacher-card__bg-2 {
		position: absolute;
		display: block;
	}
	.teacher-card__bg-1 {
		transform: rotate(-30deg);
		top: 10px;
		right: -30%;
	}
	.teacher-card__bg-2 {
		transform: rotate(30deg);
		top: 43%;
		left: -20%;
	}
}
/* End */
/* /local/components/eltex-academy/employees-list/templates/new-401534/style.css?175937385611430 */
