/**
$max: fontsize for desktop in px
$lineHeight: lineheight for desktop in px
$min: fontsize for mobile in px
$marginTop: factor of the topmargin to the base of 40px on desktop
*/
.mono_flyout {
  display: none;
  position: fixed;
  height: 50px;
  rotate: 90deg;
  bottom: 0;
  min-width: 40px;
  z-index: 1001;
  width: 100%;
  max-width: 350px;
  transition: all 500ms;
}
@media (min-width: 1024px) {
  .mono_flyout {
    top: 175px;
    right: 0;
    rotate: 0deg;
    bottom: auto;
    display: flex;
    justify-content: end;
  }
}
.mono_flyout__wrapper-image:hover .mono_flyout__wrapper-text {
  opacity: 1 !important;
}
.mono_flyout__wrapper-mail {
  position: absolute;
  cursor: pointer;
  right: 0;
  display: flex;
  align-items: center;
  height: 100%;
  width: fit-content;
  max-width: 275px;
  transition: opacity 250ms;
}
.mono_flyout__wrapper-mail.active {
  transition: width 500ms;
  justify-content: space-between;
  width: 100%;
  height: 50px;
}
.mono_flyout__wrapper-mail.active img {
  rotate: -10deg;
}
@media (min-width: 1024px) {
  .mono_flyout__wrapper-mail.active img {
    transform: scale(1);
  }
  .mono_flyout__wrapper-mail.active img:hover {
    transform: scale(1.05);
  }
}
.mono_flyout__wrapper-mail img {
  width: 87px;
  height: 100px;
  position: absolute;
  right: 0;
}
.mono_flyout__wrapper-mail img:hover .mono_flyout__wrapper-text {
  opacity: 1 !important;
}
.mono_flyout__wrapper-mail-text {
  display: flex;
  align-items: start;
  flex-direction: column;
  color: var(--white);
  font-size: 15px;
  max-width: 275px;
  width: 100%;
  padding: 0 10px;
}
.mono_flyout__wrapper-mail-text a {
  color: var(--white);
  font-size: 12px;
}
.mono_flyout__wrapper-mail-text .mono_text p {
  font-size: 15px;
  margin: 0;
}
.mono_flyout__wrapper-text {
  opacity: 0;
  height: 100px;
  width: fit-content;
  align-items: start;
  flex-direction: column;
  color: var(--white);
  font-size: 15px;
  max-width: 275px;
  overflow: hidden;
  background-color: var(--skin-secondary);
  padding: 0 10px;
  position: relative;
  right: 89px;
  display: flex;
  justify-content: center;
}
.mono_flyout__wrapper-text a {
  color: var(--white);
  font-size: 15px;
}
.mono_flyout__wrapper-text .mono_text p {
  font-size: 15px;
  margin: 0;
}
.mono_flyout img {
  transition: transform 250ms;
}

.mono_flyout__wrapper-text {
  transition: opacity 250ms;
}
.mono_flyout__wrapper-text:hover {
  opacity: 1;
}

.mono_flyout__wrapper-image:hover ~ .mono_flyout__wrapper-text {
  opacity: 1;
}