.btnRC:active {
  transform: scale(0.95);
}

.btnRC {
  margin: 0;
  padding: 7px 15px;
  text-align: center;
  font-size: 1rem;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 7px;
  display: block;
  border: 0px;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #fc6749 0%, #FFD857  51%, #fc6749  100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: max-content;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
  
.btnRC:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
  
@media screen and (min-width:768px) {
  .btnRC {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 7px;
    box-shadow: unset;
    font-size: 1rem;

    &.md {
      width: 14rem;
    }
  
    &.lg {
      width: 17rem;
    }
  
    &.xl {
      width: 21rem;
    }

    &.xxl {
      width: 25rem;
    }

    &.btn-move {
      height: auto;

      .circle {
        transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        border-radius: 1.625rem;

        &.secondary {
          background: var(--color-secondary);
        }

        &.tertiary {
          background: var(--color-tertiary);
        }

        .icon {
          transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
          position: absolute;
          top: 0;
          bottom: 0;
          margin: auto;
          background: #fff;

          &.arrow {
            transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
            left: 0.625rem;
            width: 1.125rem;
            height: 0.125rem;
            background: none;

            &::before {
              position: absolute;
              content: '';
              top: -0.25rem;
              right: 0.0625rem;
              width: 0.625rem;
              height: 0.625rem;
              border-top: 0.125rem solid #000;
              border-right: 0.125rem solid #000;
              transform: rotate(45deg);
            }
          }
        }
      }

      .button-text {
        transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1.3rem 0;
        margin: 0 0 0 3rem;
        color: #282936;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-transform: uppercase;
      }
    }

    &:hover {
      .circle {
        width: 100%;

        .icon {
          &.arrow {
            background: #000;
            transform: translate(1rem, 0);
          }
        }
      }

      .button-text {
        color: #000;
      }
    }
  }
}

.btnRC-secondary{
  margin: 0;
  padding: 10px 15px;
  text-align: center;
  font-size: 1rem;
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  border-radius: 15px;
  display: block;
  border: 1px solid #FFD857;
  box-shadow: 0px 0px 14px -7px #FFD857;
  background-color: white;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  &.sm {
    width: 9rem;
  }

  &.md {
    width: 10rem;
  }

  &.lg {
    width: 11rem;
  }

  &.xl {
    width: 12rem;
  }

}