.button-underline {
  display: flex;
  align-items: flex-end;
  width: fit-content;
}
.button-underline_white svg path {
  fill: var(--color-white);
}
.button-underline_xl svg {
  width: 16px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .button-underline_xl svg {
    width: 20px;
    height: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .button-underline_xl svg {
    width: 24px;
    height: 36px;
  }
}
.button-underline_m svg {
  width: 16px;
  height: 25px;
}
.button-underline_s svg {
  width: 14px;
  height: 17px;
}
.button-underline__icon {
  vertical-align: text-bottom;
  display: inline;
  position: absolute;
  z-index: 1;
  margin-left: 8px;
  bottom: 0;
}
.button-underline__text {
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  text-decoration-color: var(--color-grey-3);
  letter-spacing: 0.015em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.button-underline__text_thin {
  font-weight: var(--font-weight-light);
}
.button-underline__text_normal {
  font-weight: var(--font-weight-normal);
}
.button-underline__text_white-orange {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.button-underline__text_white-orange-underline-hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.button-underline__text_white {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.button-underline__text_white-underline-hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.button-underline__text_black-orange {
  color: var(--color-black);
  text-decoration-color: var(--color-grey-3);
}
.button-underline__text_black-orange-underline-hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.button-underline__text_xl {
  font-size: 16px;
  line-height: 28px;
  text-underline-offset: 7px;
}
@media screen and (min-width: 768px) {
  .button-underline__text_xl {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .button-underline__text_xl {
    font-size: 24px;
    line-height: 36px;
  }
}
.button-underline__text_m {
  font-size: 16px;
  line-height: 28px;
}
.button-underline__text_s {
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 1024px) {
  .button-underline__text:hover {
    transition: all 0.2s;
    color: var(--color-orange);
    text-decoration-color: var(--color-orange);
  }
}
@media screen and (min-width: 1024px) {
  .button-underline__text_white:hover {
    color: var(--color-white);
    text-decoration-color: var(--color-white);
  }
}
