/**
 * Foundation for Sites
 * Version 6.7.4
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.kite-btn {
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
  display: block;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.5rem;
  max-width: 100%;
  padding: 8px 20px;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-transition: background-color 195ms cubic-bezier(0.4, 0, 0.2, 1), border-color 195ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 195ms cubic-bezier(0.4, 0, 0.2, 1), border-color 195ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  width: 100%;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .kite-btn::before {
    border: 2px solid transparent;
    border-radius: 0.25rem;
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    -webkit-transition: background-color 195ms cubic-bezier(0.4, 0, 0.2, 1), border-color 195ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: background-color 195ms cubic-bezier(0.4, 0, 0.2, 1), border-color 195ms cubic-bezier(0.4, 0, 0.2, 1); }
  .kite-btn:focus, .kite-btn:hover {
    text-decoration: none; }
  .kite-btn:focus {
    outline: 0; }
    .kite-btn:focus::before {
      border-color: #0062b2; }
  .kite-btn-disabled, .kite-btn:disabled {
    cursor: not-allowed; }
  @media (min-width: 480px) {
    .kite-btn {
      display: inline-block;
      margin-right: 0.5rem;
      margin-left: 0.5rem;
      width: auto; } }

.kite-btn-primary {
  background-color: #0073d1;
  color: #fff; }
  .kite-btn-primary:focus, .kite-btn-primary:hover {
    background-color: #0062b2;
    color: #fff; }

.kite-btn-secondary {
  background-color: #d8dde6;
  color: #004366; }
  .kite-btn-secondary:focus, .kite-btn-secondary:hover {
    background-color: #63738a;
    color: #fff; }
  .kite-btn-secondary:focus::before {
    border-color: #63738a; }

.kite-btn-outline-primary {
  background-color: transparent;
  border-color: #0073d1;
  color: #0073d1; }
  .kite-btn-outline-primary:focus, .kite-btn-outline-primary:hover {
    background-color: #0062b2;
    color: #fff; }

a.kite-btn.kite-btn-disabled,
fieldset[disabled] a.kite-btn {
  pointer-events: none; }

.kite-btn-primary.kite-btn-disabled, .kite-btn-primary:disabled,
.kite-btn-secondary.kite-btn-disabled,
.kite-btn-secondary:disabled,
.kite-btn-outline-primary.kite-btn-disabled,
.kite-btn-outline-primary:disabled {
  background-color: #e8ebf0;
  border-color: transparent;
  color: #96afc1; }

.kite-btn-link {
  background-color: transparent;
  border-radius: 0;
  color: #0062b2;
  font-weight: normal;
  text-decoration: underline; }
  .kite-btn-link:focus, .kite-btn-link:hover {
    color: #0062b2;
    text-decoration: underline; }

.kite-btn-standalone-link,
.kite-btn-quick-link,
.kite-btn-control-link {
  text-decoration: none; }
  .kite-btn-standalone-link:hover,
  .kite-btn-quick-link:hover,
  .kite-btn-control-link:hover {
    text-decoration: underline; }

.kite-btn-quick-link {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%230062b2' d='M8 28l12-12L8 4l2-2 14 14-14 14'/%3E%3C/svg%3E");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 1em 1em;
  padding-right: 40px; }

.kite-btn-control-link {
  padding-right: 40px;
  position: relative; }
  .kite-btn-control-link::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%230062b2' d='M16 2C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2zm-6 10l6 6 6-6 2 2-8 8-8-8 2-2z'/%3E%3C/svg%3E") center/cover no-repeat;
    content: '';
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 1em;
    -webkit-transform: translateY(50%) rotate(0deg);
            transform: translateY(50%) rotate(0deg);
    -webkit-transition: -webkit-transform 195ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 195ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 195ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 195ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 195ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 1.2em;
    height: 1.2em; }
  .kite-btn-control-link.kite-expanded::after {
    -webkit-transform: translateY(50%) rotate(180deg);
            transform: translateY(50%) rotate(180deg); }

.kite-btn-sm {
  min-width: 90px; }

.kite-btn-md {
  min-width: 130px; }

.kite-btn-lg {
  min-width: 210px; }

.kite-btn-xl {
  min-width: 288px; }

.kite-btn-block {
  display: block;
  margin-right: 0;
  margin-left: 0;
  width: 100%; }

.kite-btn-block + .kite-btn-block {
  margin-top: 1.5rem; }

input[type="submit"].kite-btn-block,
input[type="reset"].kite-btn-block,
input[type="button"].kite-btn-block {
  width: 100%; }

.kite-theme-dark .kite-btn:focus::before,
.kite-btn.kite-theme-dark:focus::before {
  border-color: #fff; }

.kite-theme-dark a.kite-btn-primary.kite-btn-disabled,
a.kite-btn-primary.kite-theme-dark.kite-btn-disabled {
  color: #96afc1; }

.kite-theme-dark a.kite-btn-secondary,
a.kite-btn-secondary.kite-theme-dark {
  color: #004366; }
  .kite-theme-dark a.kite-btn-secondary:focus, .kite-theme-dark a.kite-btn-secondary:hover,
  a.kite-btn-secondary.kite-theme-dark:focus,
  a.kite-btn-secondary.kite-theme-dark:hover {
    color: #fff; }
  .kite-theme-dark a.kite-btn-secondary.kite-btn-disabled,
  a.kite-btn-secondary.kite-theme-dark.kite-btn-disabled {
    color: #96afc1; }

.kite-theme-dark .kite-btn-outline-primary,
.kite-btn-outline-primary.kite-theme-dark {
  border-color: #fff;
  color: #fff; }
  .kite-theme-dark .kite-btn-outline-primary:focus, .kite-theme-dark .kite-btn-outline-primary:hover,
  .kite-btn-outline-primary.kite-theme-dark:focus,
  .kite-btn-outline-primary.kite-theme-dark:hover {
    background-color: #fff;
    color: #002133; }
  .kite-theme-dark .kite-btn-outline-primary.kite-btn-disabled, .kite-theme-dark .kite-btn-outline-primary:disabled,
  .kite-btn-outline-primary.kite-theme-dark.kite-btn-disabled,
  .kite-btn-outline-primary.kite-theme-dark:disabled {
    background-color: #e8ebf0;
    border-color: transparent;
    color: #96afc1; }

.kite-theme-dark .kite-btn-link,
.kite-btn-link.kite-theme-dark {
  color: #fff; }

.kite-theme-dark .kite-btn-control-link::after,
.kite-btn-control-link.kite-theme-dark::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16 2C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2zm-6 10l6 6 6-6 2 2-8 8-8-8 2-2z'/%3E%3C/svg%3E"); }

.kite-theme-dark .kite-btn-quick-link,
.kite-btn-quick-link.kite-theme-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M8 28l12-12L8 4l2-2 14 14-14 14'/%3E%3C/svg%3E"); }

.kite-hide-focus .kite-btn::before {
  visibility: hidden; }

.kite-hide-focus .kite-btn-primary:focus {
  background-color: #0073d1; }
  .kite-hide-focus .kite-btn-primary:focus:hover {
    background-color: #0062b2; }

.kite-hide-focus .kite-btn-secondary:focus {
  background-color: #d8dde6;
  color: #004366; }
  .kite-hide-focus .kite-btn-secondary:focus:hover {
    background-color: #63738a;
    color: #fff; }

.kite-hide-focus .kite-theme-dark a.kite-btn-secondary:focus,
.kite-hide-focus a.kite-btn-secondary.kite-theme-dark:focus {
  color: #004366; }
  .kite-hide-focus .kite-theme-dark a.kite-btn-secondary:focus:hover,
  .kite-hide-focus a.kite-btn-secondary.kite-theme-dark:focus:hover {
    color: #fff; }

.kite-hide-focus .kite-btn-outline-primary:focus {
  background-color: transparent;
  color: #0073d1; }
  .kite-hide-focus .kite-btn-outline-primary:focus:hover {
    background-color: #0062b2;
    color: #fff; }

.kite-hide-focus .kite-theme-dark .kite-btn-outline-primary:focus,
.kite-hide-focus .kite-btn-outline-primary.kite-theme-dark:focus {
  color: #fff; }
  .kite-hide-focus .kite-theme-dark .kite-btn-outline-primary:focus:hover,
  .kite-hide-focus .kite-btn-outline-primary.kite-theme-dark:focus:hover {
    background-color: #fff;
    color: #002133; }
