:host {
  display: block;
}

.hy-cta-link-button-container {
  display: flex;
}

.hy-cta-link-button {
  cursor: pointer;
  font-family: var(--main-font-family);
  font-weight: 600;
  position: relative;
  text-decoration: none;

  &.default {
    align-items: right;
    background-color: transparent;
    color: var(--brand-main);
    display: flex;
    font-size: 20px;
    height: 100%;
    letter-spacing: -0.67px;
    line-height: 20px;

    .text {
      padding: 14px 0;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .link-icon {
      margin-left: 16px;

      svg {
        background-color: var(--brand-main-light);
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
        fill: var(--grayscale-white);
        padding: 10.29px;
      }
    }
  }

  &.blue-background,
  &.white-background {
    align-items: center;
    background-color: var(--brand-main-light);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    color: var(--grayscale-white);
    display: flex;
    justify-content: center;
    height: 100%;
    max-width: 278px;
    width: 278px;

    .text {
      color: var(--grayscale-white);
      font-size: 18px;
      letter-spacing: -0.6px;
      line-height: 20px;
      margin: 18px 0 18px 14px;
    }
    .link-icon {
      margin-left: 12px;

      svg {
        background-color: var(--brand-main-light);
        fill: var(--grayscale-white);
        padding: 15.91px 16px 16.09px 0;
      }
    }
  }

  &.blue-background {
    border: 4px solid var(--grayscale-white);
  }

  &.white-background {
    border: none;
  }
}