html,
body {
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.1;
  color: var(--color-title);
}


h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 800;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 400;
}

.container {
  max-width: 67vw;
  /* 75rem = 1200px if root font size is 16px */
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  /* Adds spacing relative to font size */
}

a {
  color: var(--color-page-text);
}

.section-title {
  line-height: 1.1;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  margin: .5rem 0;
  font-weight: 800;

  span {
    display: block;
  }
}

.topline {
  border-top: .4rem solid $topline-grey;
  padding-top: 1.5rem;
}

.bottomline {
  border-bottom: .4rem solid $topline-grey;
  padding-bottom: 1.5rem;
}

.bg-secondary {
  background-color: $lighter-grey;
  color: $purple-200;
}

#wrapper {
  background-color: $white;
  padding-top: 0;

  nav.breadcrumb {
    background-color: $white;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0px;
    overflow: hidden;
    text-overflow: ellipsis;

    ol {
      width: 96vw;
      margin-left: auto;
      margin-right: auto;

      li {
        &:after {
          margin: 0;
          color: $black;
          position: relative !important;
          content: ">" !important;
          width: .6rem !important;
          height: .6rem !important;
          transform: unset !important;
          border: 0px !important;
          display: inline;
          font-size: 1rem !important;
        }

        &:last-child {
          color: $black;
        }

        padding: .5rem;
        border-radius: 5px;
        color: $black;
        text-overflow: ellipsis;
        overflow: hidden;
        display: inline-block;
        max-width: 80%;
        margin-right: 0 !important;

        span {
          color: $black;
        }
      }
    }
  }
}

.btn-primary,
.btn_infinitescroll,
#btn_infinitescroll {
  background-color: $primary;
  color: $white;

  &:hover,
  &:focus,
  &:active {
    background-color: $purple-100;
    color: $white;
    text-shadow: 1 0 0 currentColor;
  }

  &:disabled {
    background-color: $grey !important;
  }
}

.btn-premium {
  background-color: $yellow !important;
  color: $purple !important;

  &:hover,
  &:focus,
  &:active {
    background-color: $yellow-hover !important;
    color: $purple-200 !important;
    text-shadow: 1 0 0 currentColor;
  }

  &:disabled {
    background-color: $grey !important;
  }
}

.btn-primary:active {
  background-color: $purple-200 !important;
  color: $white;
  text-shadow: 1 0 0 currentColor;
}

.btn-secondary {
  background-color: $secondary;
  color: $white;
}

.btn-icon {
  height: $icon-size;
  width: $icon-size;
  background: transparent;
  border: none;
}


.hometabs-nav {
  font-family: "DomoFont", Verdana, sans-serif;
  margin: auto;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;

  .nav-item {
    display: flex;
    justify-content: space-evenly;
    padding: .5rem 0;
    margin: .5rem 0;
    background-color: $yellow;

    a {
      display: block;
    }
  }

  .nav-item:after,
  .nav-item:before {
    display: block;
    content: "//";
    font-weight: 800;
    letter-spacing: -5px
  }
}

.am-contact-button {
  background-color: $purple-200;
  padding: 0.5rem 0.4rem;
  display: flex;
  flex-direction: column;
  color: white;
  flex: 1 1 96px;
  width: 96px;
  height: 96px;
  justify-content: center;
  align-items: center;
}

.form-control-label {
  padding: 0.625rem 0;
  padding-top: 2rem;
  top: 0 !important;
}

.custom-radio input[type="radio"]:checked+span {
  background-color: $purple;
}

.form-control-label.has_value,
.form-control-label.has_value_textarea,
label {
  font-size: 18px;
  color: $purple-200;
}

.input-group .input-group-btn>.btn[data-action="show-password"],
.custom-checkbox input[type="checkbox"]+span .checkbox-checked {
  color: $purple-200;
}

.account_guest {
  padding: 1rem 2rem;
  background-color: $purple;
  color: white;
  line-height: 1.5rem;
}

.navigation_account .title {
  color: $purple;
}

nav {
  ul {
    list-style: none;
    padding-left: 1rem;
  }
}

ul.nav {
  list-style: none;
  padding-left: 1rem;
}