.button {
    font-family: var(--font-CeraProRegular);
    display: inline-block;
    padding: 9px 20px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 3px;
    border: 0;
    background: var(--color-blue);
    color: var(--color-white);
    text-align: center;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    vertical-align: middle;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.button:hover,
.button:active {
    background: var(--color-oceanembrace);
    color: var(--color-white)
}

.button-white {
    background: var(--color-white);
    color: var(--color-black);
}

.button-white:hover,
.button-white:active {
    background: var(--color-oceanembrace);
    color: var(--color-white);
}

.button-bordered {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.button-bordered:hover,
.button-bordered:active {
    background: var(--color-white);
    color: var(--color-blue);
}

.button-arrow::after {
    content: "\e904";
    font-family: "1basis" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: var(--color-white);
    margin-left: 10px;
    margin-top: -2px;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  }
  
.button-arrow:hover::after {
    color: var(--color-blue);
}