.employees-slider-wrapper {
  position: relative;
}

.employees-slider {
  margin-top: var(--section-margin);
  height: 450px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.employees-slider::-webkit-scrollbar {
  display: none;
  width: 0px;
  height: 0px;
  background: transparent;
}

.employee-container {
  scroll-snap-align: start;
  height: 450px;
  width: 100%;
  padding: var(--section-margin);
  overflow: hidden;

  position: relative;

  flex: 0 0 auto;
}

.employee-video {
  pointer-events: none !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.employee-video.for-gift {
  position: relative;
}

.employee-actions-container {
  display: flex;
  width: 100%;
  margin-top: var(--one-section-margin);
  padding: var(--padding-xs);
  /* background-color: var(--white); */
  gap: 10px;
}

.employee-action-button {
  flex: 1;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
}

.employee-action-button img {
  max-width: 80%;
  object-fit: contain;
  transform: rotateZ(15deg);
}

.employee-actions-container .container-buttons .action-button {
  flex: 1;
  max-height: 80px;
  padding: var(--padding-sm) 0;
}
.employee-actions-container .container-buttons .action-button img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.employee-role {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: var(--padding-base) var(--padding-xl);
  color: var(--white);
  font-size: 16px;
}

.employee-role span {
  position: relative;
  z-index: 2;
  letter-spacing: 5px;
  font-family: "Diodrum Medium", sans-serif;
}

.employee-name {
  position: relative;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-size: 48px;
}

.employee-empty {
  height: 100px;
}

.employee-footer-fixed {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

.employee-footer-fixed * {
  pointer-events: auto;
}

.employee-footer {
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.employee-number-local {
  margin-left: var(--one-section-margin);
  font-size: 42px;
  color: var(--white);
}

.employee-number {
  font-size: 42px;
  color: var(--white);
}

.employee-select-buttons {
  display: flex;
  gap: 5px;
  flex-direction: row;
}

.employee-button {
  width: 75px;
  height: 75px;
  position: relative;

  -webkit-mask-image: var(--mask-url), linear-gradient(black, black);
  mask-image: var(--mask-url), linear-gradient(black, black);

  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;

  -webkit-mask-position: center, center;
  mask-position: center, center;

  -webkit-mask-size: 25%, 100%;
  mask-size: 25%, 100%;

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}