*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ---------------------------------- */
/*          Base Button Styles        */
/* ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

/* ---------------------------------- */
/*         Variant: Orange            */
/* ---------------------------------- */
.btn-orange {
  height: 48px;
  background-color: #FD8559;
  color: white;
  border-radius: 11px;
  padding: 12px 18px;
  justify-content: center;
  white-space: nowrap;
}

.btn-orange.btn-orange-light-ending {
  padding-left: 18px;
  padding-right: 54px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.btn-text {
  position: relative;
  z-index: 2;
}

.btn-decorator {
  background-color: #ff9a75;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  margin-left: 0.5rem;
  position: absolute;
  right: 2px;
  z-index: 1;

  transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-orange.btn-orange-light-ending:hover .btn-decorator {
  width: 100%;
}

.btn-arrow {
  position: absolute;
  right: 14px;
  top: 53%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  pointer-events: none;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
}

/* ---------------------------------- */
/*         Variant: White             */
/* ---------------------------------- */
.btn-white {
  height: 48px;
  background-color: white;
  color: #F97316;
  border-radius: 11px;
  padding: 12px 18px;
  justify-content: center;
  white-space: nowrap;
}

/* ---------------------------------- */
/*        Variant: Rounded            */
/* ---------------------------------- */
.btn-rounded {
  height: 37px;
  background-color: white;
  color: #1f2937;
  border-radius: 9999px;
  padding: 4px 16px 5px 16px;
  font-weight: 400;
  justify-content: center;
}

.z-index-2{
  z-index: 2;
}

@media (min-width: 320px) {
  .btn-orange:not(.btn-orange-light-ending) {
    width: 100%;
  }

  .btn-rounded {
    font-size: 12px;
  }

  .btn-orange.btn-orange-light-ending.btn-full-width {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (min-width: 768px) {
  .btn-orange:not(.btn-orange-light-ending) {
    width: unset;
  }

  .btn-rounded {
    font-size: 16px;
  }
  .btn-orange.btn-orange-light-ending.btn-full-width {
    width: unset;
    padding-left: 18px;
    padding-right: 54px;
  }
}