/**
 * @file
 * Visual styles for buttons.
 */
/* 
.cta_button {
  display: flex;
  justify-content: center;

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    gap: 8px;
    border-radius: 4px;
    border: 2px solid transparent;
    padding: 18px 30px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;

    a {
      font-family: "Roboto", sans-serif;
      color: inherit;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }

    &.btn-transparent {
      background-color: transparent;
      border-color: #fff;
      color: #fff;

      &:hover {
        background-color: transparent;
        border-color: #fff;
        color: #fff;
        opacity: 0.8;
      }
    }

    &.btn-transparent--modal {
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      align-items: center;
      background-color: transparent;
      border: 2px solid #c12017;
      border-radius: 4px;
      color: #c12017;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-weight: 700;
      gap: 8px;
      justify-content: center;
      letter-spacing: 1px;
      padding: 18px 30px;
      text-align: center;
      text-transform: uppercase;
      width: 100%;
    }

    &.button-intranets {
      background-color: transparent;
      color: #fff;
      padding: 14px 20px;
      border: 2px solid #fff;

      a {
        font-weight: 700;
      }

      &:hover {
        background-color: transparent;
        border-color: #fff;
        color: #fff;
        opacity: 0.8;
      }
    }

    &.btn-red-background {
      background-color: #c21b17;
      color: #fff;
      border-color: #c21b17;

      &:hover {
        background-color: #a61a16;
        border-color: #a61a16;
        color: #fff;
      }
    }

    &.btn-white-background {
      background: #fff;
      color: #c12017;
      padding: 18px 30px;
      border: 2px solid #c12017;
    }
    &.color-black {
      background: unset;
      color: #6f7072;
      padding: unset;

    }
  }
} */
