.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 250px;
  height: 80px;
  padding: 0px 25px 0.3em;
  border: var(--secondary-color) solid 0.3rem;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0.5rem 0 var(--secondary-color);
  transition: all 0.12s ease 0s;
  transition-property: all;

  @media (any-hover: hover) {
    &:hover {
      transform: translateY(0.5rem);
      box-shadow: 0 0 0 var(--secondary-color);
    }
    & .c-button__circle {
      scale: var(--button-circle-scale);
    }
  }
}

.c-button__text {
  display: inline-block;
  margin-right: 18px;
  flex: 1;
  @media not all and (min-width: 1024px) {
    line-height: 1.4;
  }
}

.c-button__circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  transition: scale var(--button-circle-duration) linear;
  i {
    width: 11px;
    height: 11px;
    display: block;
    background: url('../../../images/common/right-arrow.svg') center no-repeat;
  }
}

.c-button__circle--under {
  i {
    background: url('../../../images/common/under-arrow.svg') center no-repeat;
  }
}
