/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

/* stylelint-disable no-descending-specificity */
 :root {
  /* colors */
  --link-color: #035fe6;
  --link-hover-color: #136ff6;
  --color-white: #fff;
  --background-color: white;
  --light-color: #eee;
  --dark-color: #ccc;
  --text-color: black;
  --white: #fff;
  --dark-orange: #B54425;
  --height: x;
  --original-height: y;
  --tab-height: z;
  --default-button: #0094C3;
  --no-button-link: #007bff;
  --special-red: #e03e2d;
  --special-orange: #e67e23;
  --special-blue: #3598db;
  --special-green: #0ac2bf;
  --special-purple: #936;
  --special-parks-purple: #523379;
  --special-chocolate: #814924;
  --special-solid-pink: #81524e;
  --special-mid-blue: #236fa1;
  --overlay-background-color: #f5f5f5;
  --table-background-color1: #ecf0f1;
  --table-head-background-color1: #ecf0f1;
  --table-head-background-color2: #3598db;
  --table-head-background-color3: #eee;
  --table-head-background-color4: #c54b2a;
  --table-head-background-color5: #B09270;
  --table-head-background-color6: #c2e0f4;
  --table-head-background-color7: #ced4d9;
  --table-head-background-color8: #34495e;
  --table-head-background-color-green: #bfedd2;
  --primary-orange-900: #722922;
  --primary-orange-900-rgb: 114, 41, 34;
  --primary-orange-600: #963821;
  --primary-orange-300: #C54B2A;
  --primary-orange-300-rgb: 197, 75, 42;
  --primary-blue-900: #0093B2;
  --primary-blue-600: #76C5D6;
  --primary-blue-300: #BFDCE0;
  --secondary-blue-800: #243772;
  --secondary-blue-600: #365EA5;
  --secondary-orange-800: #B86125;
  --secondary-orange-800-rgb: 184, 97, 37;
  --secondary-orange-600: #FFB434;
  --secondary-orange-400: #FECA7A;
  --neutral-black: #232222;
  --neutral-black-900: #1E1E1E;
  --neutral-black-800: #545454;
  --neutral-black-600: #828282;
  --neutral-black-400: #CBCCCB;
  --neutral-black-200: #eee;
  --neutral-white: #fff;
  --orange: var(--primary-orange-600);
  --link-focus-bg: #EADFDE;

  /* Opacity */
  --opacity-80: 0.8;
  --opacity-60: 0.6;
  --opacity-40: 0.4;
  --opacity-25: 0.25;
  --opacity-15: 0.15;

  /* fonts */
  --body-font-family: 'Neue Montreal', sans-serif;
  --heading-font-family: 'Neue Montreal', sans-serif;
  --icon-font-family: 'FontAwesome', sans-serif;
  --icon-fa-brands-font-family: 'FontAwesomeBrands', sans-serif;
  --font-weight-bold: 700;
  --font-weight-semi-bold: 600;
  --font-weight-book: 400;

  /* body sizes */
  --body-font-size-xl: 36px;
  --body-font-size-l: 24px;
  --body-font-size-m: 18px;
  --body-font-size-s: 16px;
  --body-font-size-xs: 14px;

  /* heading sizes */
  --heading-font-size-xxxl: 48px;
  --heading-font-size-xxl: 36px;
  --heading-font-size-xl: 24px;
  --heading-font-size-l: 18px;
  --heading-font-size-m: 16px;
  --heading-font-size-s: 14px;
  --heading-font-size-xs: 14px;

  /* nav height */
  --nav-height: 125px;
  --nav-height-mobile: 119px;

  /* spacing */
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 32px;
  --spacing-xl: 48px;
}

@media (width >= 900px) {
  :root {
    --heading-font-size-xxxl: 64px;
    --heading-font-size-xxl: 48px;
    --heading-font-size-xl: 36px;
    --heading-font-size-l: 24px;
    --heading-font-size-m: 18px;
    --heading-font-size-s: 16px;
    --heading-font-size-xs: 14px;
  }
}

body {
  font-size: var(--body-font-size-m);
  font-weight: var(--font-weight-book);
  margin: 0;
  font-family: var(--body-font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
}

.desktop {
  display: none;
}

.mobile {
  display: block;
}

.center {
  text-align: center;
}

body.appear {
  display: block;
  top: 0 !important;
}

h1, h2, h3,
h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  margin-top: 1em;
  margin-bottom: .5em;
  scroll-margin: calc(var(--nav-height) + 1em);

  .title-color-primary & {
    color: var(--primary-orange-600);

    a {
      color: var(--primary-orange-600);
    }
  }
}

h1 { font-size: var(--heading-font-size-xxl) }
h2 { font-size: var(--heading-font-size-xl) }
h3 { font-size: var(--heading-font-size-l) }
h4 { font-size: var(--heading-font-size-m) }
h5 { font-size: var(--heading-font-size-s) }
h6 { font-size: var(--heading-font-size-xs) }

p, dl, ol, ul, pre, blockquote {
  margin-top: 1em;
  margin-bottom: 1em;
}

code, pre {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-s);
}

code {
  padding: .125em;
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--light-color);
  padding: 1em;
  border-radius: .25em;
  overflow-x: auto;
  white-space: pre;
}

/* links */
a:any-link {
  color: var(--primary-orange-600);
  text-decoration: underline;
  text-decoration-thickness: 6%;
  text-underline-offset: 12%;
}

a:hover {
  color: var(--primary-orange-900);
}

a:focus {
  color: var(--primary-orange-900);
  background-color: transparent;
  border: 1px solid var(--primary-blue-900);
  outline: 0;
}

a:visited {
  color: var(--neutral-black);
}

a.disabled {
  color: var(--neutral-black-600);
  text-decoration-color: var(--neutral-black-600);
}

div.top-arrow picture {
  position: fixed;
  right: 30px;
  bottom: -10px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  padding: 12px;
  padding-left: 14px;
  z-index: 10000000;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

div.top-arrow picture img {
  width: auto;
  height: auto;
  max-width: 300%;
}

div.top-arrow picture.visible {
  transform: translateY(-20px);
  opacity: 1;
}

/* buttons */
a.button:any-link, button {
  font-family: var(--body-font-family);
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 5px 24px;
  text-align: center;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  color: var(--background-color);
  background-color: var(--primary-orange-600);
  margin: 16px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.button:hover, button:hover {
  background-color: var(--primary-orange-300);
  cursor: pointer;
}

a.button:focus, button:focus  {
  background-color: var(--primary-orange-300);
  border-color: var(--primary-orange-600);
  cursor: pointer;
  outline: 0;
}

a.button:active, button:active {
  background-color: var(--primary-orange-900);
  border-color: var(--primary-orange-900);
}

a.button.disabled,
a.button.disabled:hover,
button:disabled,
button:disabled:hover {
  background-color: var(--neutral-black-400);
  border-color: var(--neutral-black-400);
  cursor: unset;
  pointer-events: none;
}

a.button > .icon, button > .icon {
  max-width: 18px;
  max-height: 18px;
  margin-right: 8px;
  padding: 0;
  vertical-align: text-top;
}

a.button > .icon img, button > .icon {
  margin: 0;
}

a.button.icon-only > .icon, button.icon-only > .icon {
  margin-right: 0;
}

a.button.secondary, button.secondary {
  background-color: var(--neutral-white);
  border: 2px solid var(--primary-orange-600);
  color: var(--primary-orange-600)
}

a.button.secondary:hover, button.secondary:hover {
  background-color: rgba(var(--secondary-orange-800-rgb), var(--opacity-15));
}

a.button.secondary:focus, button.secondary:focus {
  box-shadow: 0 0 0 4px rgba(var(--primary-orange-300-rgb), var(--opacity-25));
}

a.button.secondary:active, button.secondary:active {
  background-color: rgba(var(--primary-orange-900-rgb), var(--opacity-15));
  color: var(--primary-orange-900);
  box-shadow: none;
}

a.button.secondary.disabled,
a.button.secondary.disabled:hover,
button.secondary:disabled,
button.secondary:disabled:hover {
  background-color: var(--neutral-white);
  border-color: var(--neutral-black-400);
  color: var(--neutral-black-400);
}

a:any-link.button.default {
  margin: 5px 0 !important;
  padding: .375rem .75rem !important;
  background: var(--default-button);
  color: #fff;
  border: 0;
  border-radius: 0;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.5;
  vertical-align: top;
  transition: all .3s;
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-font-smoothing: antialiased;
}

.icon {
  display: inline-block;
  height: 30px;
  width: 30px;
  padding: 2px 2px 0 0;
}

.icon img {
  height: 100%;
  width: 100%;
}

main .section-top {
  color: var(--white);
}

.section-top-wrapper > div {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

main .section-top > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.section-top-wrapper > div > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

body:not(:has('sidekick-library')) main > div:nth-child(1) > div, body:not(.event) > main > div:nth-child(1) > div {
  background-color: var(--text-color);
  overflow: hidden;
}

body > main > div.section.section-top-container.top-topics-container > div.section-top-wrapper > div {
  padding: 29px 0 41px;
  background: url('../images/section-top-bg.png') left bottom/cover no-repeat;
}

main > div.section > .default-content-wrapper > p {
  margin: 0;
}

main div.section.desktop picture.background-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

main div.section.desktop.short {
    position: relative;
    
    img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-title {
        position: relative;
        right: 0;
        bottom: 180px;
        text-shadow: 0 2px 0.99px rgb(0 0 0 / 90%);
        padding: 0 45px;
        color: var(--neutral-white);
    }
}

.section.homepage.with-background-image.no-gradient::before {
  display: none;
}

.section.homepage.with-background-image::before {
  content: '';
  background: linear-gradient(to right, rgba(0 0 0 / 35%) 0%, rgba(0 0 0 / 35%) 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section.homepage.with-background-image .page-title {
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

main div.section.mobile {
    object-fit: cover;
    height: 148px;

    img {
      position: relative;
      width: 100%;
      height: 148px;
      object-fit: cover;
      top: 0;
    }

    .page-title {
        position: absolute;
        left: 0;
        bottom: 0;
        text-shadow: 0 2px 0.99px rgb(0 0 0 / 90%);
        padding: 0 24px;
        color: var(--neutral-white);
    }

    &::before {
        background: unset;
    }

    &.with-background-image.short {
        height: 350px;
        position: relative;

        img {
            height: 350px;
        }
    }
}

body:not(:has('sidekick-library')) main > div:first-child:not(.short)::before, body:not(.event) main > div:first-child:not(.short)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 567px;
    z-index: 0;
    background: #000;
    opacity: 0.1;
}

.section-top-wrapper {
  background: url('../images/section-top-bg.png') left bottom/cover no-repeat;
  padding: 29px 0 35px;
}

.section-top-wrapper > div > div > div:nth-child(1) > p {
  font: 380 48px oswald, sans-serif;
  margin: 20px 100px 20px 0;
  padding: 0;
}

.section-top-wrapper > div > div > div.button-container > p {
  padding: 0;
  margin: 0 0 5px;
}

body > main > div.section.updates.section-top-container.column-container.cards-container > div.section-top-wrapper > div > div {
  max-width: 1630px;
  margin: 0 auto;
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
}



main .section.details-404 > .default-content-wrapper {
  height: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vh;
  font-family: var(--heading-font-family);
  font-size: var(--heading-font-size-xs);
  padding: 3vw;
}

@media only screen and (width <= 991px) {
  body > main > div.section.updates.section-top-container.column-container.cards-container > div.section-top-wrapper > div > div > div:nth-child(1) > p {
    margin: 0;
  }

  body > main > div.section.updates.section-top-container.column-container.cards-container.updates-decorated > div.section-top-wrapper > div {
    padding: 0 34px;
  }

  body > main > div.section.updates.section-top-container.column-container.cards-container.updates-decorated > div.section-top-wrapper > div > div > div.button-container {
    display: none;
  }

  body > main > div.section.updates.section-top-container.column-container.cards-container.updates-decorated > div.cards-wrapper > div {
    padding: 0 34px;
  }

  body > main > div.section.updates.section-top-container.column-container.cards-container.updates-decorated > div.column-wrapper > div {
    font-size: 17px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: none;
  }
}

*, ::after, ::before {
  box-sizing: border-box;
}

.rightsection > .columns-wrapper {
  margin-bottom: 40px;
}

.columns-container {
  margin-bottom: 40px;
}

.iframe-modal .section:not(.rightsection) > .default-content-wrapper {
  padding: 0;
}

.section:not(.rightsection) > .default-content-wrapper.left-nav-default-content-wrapper {
  padding: 0;
}

.leftsection > .default-content-wrapper > .section-menu-btn {
  -webkit-tap-highlight-color: transparent;
}

.leftsection > .default-content-wrapper > .section-menu-btn:focus {
  background-color: var(--primary-orange-600);
  border-color: var(--primary-orange-600);
}

@media (width >= 900px) {
  .section:not(.rightsection) > .default-content-wrapper {
    padding: 0 50px;
  }

  body.full-template main > .section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }

  .max-width-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 6px;
  color: var(--neutral-white);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.2s ease;
  opacity: 0;
}

.skip-link:focus {
  top: 6px;
  left: 0;
  right: 0;
  width: max-content;
  margin: 0 auto;
  opacity: 1;
}

.section .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 100;

  ul {
    margin: 0;
    list-style: none;
    font: normal 17px 'Neue Montreal', sans-serif;
    color: #fff;
    line-height: 1;

    li {
      display: inline-block;
      margin: 0;
      line-height: 1.3;
      position: relative;
      margin-right: 23px;
    }

    li:first-of-type a {
      color: var(--secondary-orange-400);
    }

    li:not(:last-of-type)::after {
      content: '';
      width: 4px;
      height: 8px;
      background: url('../../icons/breadcrumbs-arrow.png') center/4px 8px no-repeat;
      position: absolute;
      top: 8px;
      right: -15px;
    }
  }

  a:any-link {
    color: currentcolor;
    font-weight: normal;
  }

  a {
    display: inline-block;
    color: var(--neutral-white);
    position: relative;
    text-decoration: none;
  }
}

@media (width >= 900px) {
  .section .breadcrumbs {
    top: 40px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .section > div {
    margin: auto;
  }

  main > div img {
    height: auto;
  }

  main > div::before {
      height: 567px;
  }

  main .section.details-404 > .default-content-wrapper {
    height: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size-xm);
  }

  main > div.section.desktop.with-background-image {
    height: 330px;
  }

  main > div.section.desktop.with-background-image.short {
    height: 330px;
  }

  /* BEGIN BUSINESS PAGES STYLES */
  main > div.section.desktop.with-background-image.business-detail {
    height: 400px;
    width: 100%;
    background-size: auto; /* or "contain" depending on what you want */
    background-position: center center;
  }

  .business-map {
    width: 30%;
    margin: 0 0 80px 25px;
    translate: 0 -40%;
  }

  .business-map-bottom {
    width: 30%;
    margin: 25px 0 80px 25px;
  }

  .business-section-bottom {
    background: #fff;
    padding: 26px 34px 24px;
    display: inline-block;
    width: 100%;
    position: relative;
  }

  .columns-wrapper {
    background-color: #fff;
    margin-top: 20%;
    top: auto;
    display: inline-block;
    position: relative;
    width: 100%;
  }

  .coulum1 {
    width: 50%;
  }

  .coulums-2-cols strong {
    font: 500 45px 'Neue Montreal', sans-serif;
  }

  .columns > div > div.column1 {
    display: inline-block;
    width: 50%;
    text-wrap: wrap;

    a {
      text-decoration: underline;
      white-space: nowrap;
      overflow: hidden;
      line-height: 1;
      display: inline-block;
      font-size: 16px;
      color: #000;
      padding: 0;
      background-color: none !important;
      box-sizing: none;

    }

    p {
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      line-height: 1.1;
      display: block;
      font-size: 16px;
      color: #000;
    }

    .button-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0;
      padding: 0%;
      color: #000;
    }
    
  }

  .drivers > div > div.column1 {
    display: inline-block;
    max-width: 30%;
    text-wrap: wrap;

    a {
      text-decoration: underline;
      white-space: nowrap;
      overflow: hidden;
      line-height: 1;
      display: inline-block;
      font-size: 16px;
      color: #000;
      padding: 0;
      background-color: none !important;
      box-sizing: none;

    }

    p {
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      line-height: 1.1;
      display: block;
      font-size: 16px;
      color: #000;
    }

    .button-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0;
      padding: 0%;
      color: #000;
      width: auto;
    }
    
    picture {
      display: inline-block;
      height: 100%;
      object-fit: cover;
    }

  }

  .drivers {
    border-bottom: solid #ccc 1px;
  }

  div:has(.row1cols) {
    padding:  26px 0 0;
  }

  .columns:not(.alert) > div > div.column2 strong:last-of-type {
    font-size: 16px;

  }

  .column1-paragraph{
    margin:0;

  }

  .column1-paragraph > .button:any-link {
    text-align: left;
    margin: 1px;

  }

  .row1cols {
    padding: 0 24px;
  }

  .row2cols > div > div.column2 {
    padding-left: 0%;
  }

  div:has(.row2cols) {
    padding:  0 0 24px;
  }

  .columns > div > div.column2 p {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .business-single-col {
    background-color: #fff;
    margin-top: 20%;
    top: auto;
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 26px 34px 24px;
    color: #000;

    .button-container button{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0;
      padding: 0%;
      background-color: #fff;
      color: #000;

    }

    a {
      text-decoration: underline;
      white-space: nowrap;
      overflow: hidden;
      line-height: 1;
      display: block;
      font-size: 16px;
      color: #000;
      padding: 0;
      background-color: none !important;

      --link-color: #000;
      --border-box: 0;
      --link-hover-color: #000;
      --background-color: #fff;

      box-sizing: none;

    }

  }
}

.newsdetail {
    padding: 50px 15px 60px;
}

main > div.section.newsdetail > .default-content-wrapper > p {
    margin-bottom: 30px;
}

.line-break.block {
  border: solid var(--primary-orange-600);
  border-width: 2px 0 0;
}

.biddetail {
    padding: 50px 15px;
}

.no-button a:any-link:not(.block a, .block * a) {
    color: var(--primary-orange-600);
    background-color: transparent;
    text-decoration: underline;
    border: 0;
    padding: 0;
    margin: 0;
}

.image-full-width img {
    width: 100% !important;
}

.image-half-width img {
    width: 50% !important;
}

.image-20p-width img:not(.block img, .block * img) {
    width: 20% !important;
}

.image-right img {
    float: right;
}

.team-list {
    h2 {
        padding-top: 30px;
        padding-bottom: 0;
        margin: unset;
    }

    p {
        margin-top: 0;
    }
}

.icons-small {
    img {
        height: 80%;
    }

    span {
        vertical-align: bottom;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
