/*  note:: Specifictiy:
    The Order to include style sheets (<link> tags) in the html/php doc headers is as follows (for example see root level index.html):
1). Bootstrap - Main file 'bootstrap.css'
2). Bootstrap - Polyfill <script> tag that includes the 'bootstrap-ie11.css' file (for IE11 compatability)
3). General styles - 'general.css' ( containing the base element/component styles )
4). Page Template - 'page-template.css' ( containing the header and footer styles )
5). Specific Page Styles - Modifications to the general styles relevant to just that page */
/*  */
/*  */
/*  */
/* START:: Fonts */
@font-face {
  font-family: "coinageCapsKrugerGray";
  src: url("../fonts/CoinageCapsKrugerGray.otf") format("opentype");
  src: url("../fonts/CoinageCapsKrugerGray.ttf") format("opentype");
}
@font-face {
  font-family: "gillSansBook";
  src: url("../fonts/GillSansNovaBook.woff2") format("woff2");
  src: url("../fonts/GillSansNovaBook.woff") format("woff");
}
@font-face {
  font-family: "gillSansMedium";
  src: url("../fonts/GillSansNovaMedium.woff2") format("woff2");
  src: url("../fonts/GillSansNovaMedium.woff") format("woff");
}
@font-face {
  font-family: "gillSansBook";
  font-weight: bold;
  src: url("../fonts/GillSansNovaBold.woff2") format("woff2");
  src: url("../fonts/GillSansNovaBold.woff") format("woff");
}
/* END:: Fonts */
/*  */
/*  */
/*  */
/* START:: Custom Properties */
:root {
  --primary: rgb(92, 184, 178);
  --secondary: rgb(29, 31, 42);
  --tertiary: rgb(142, 143, 149);
  --light-grey: rgb(230, 230, 230);
  --gold: rgb(230, 177, 14);
  --brown: rgb(139, 99, 75);
  --red: rgb(200, 16, 46);
  --font-coinage-caps-kruger-gray: "coinageCapsKrugerGray", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-gill-sans-book: "gillSansBook", Gill Sans, Gill Sans MT, Avenir, Corbel, Helvetica, Arial, sans-serif;
  --font-gill-sans-medium: "gillSansMedium", Gill Sans, Gill Sans MT, Avenir, Corbel, Helvetica, Arial, sans-serif;
}
/* note:: colours */
.noon-primary {
  color: var(--primary);
}
.noon-secondary {
  color: var(--secondary);
}
.noon-tertiary {
  color: var(--tertiary);
}
/* END:: Custom Properties */
/*  */
/*  */
/*  */
/* START:: Base Element Styles */
/* note:: Bootstrap includes it's own custom CSS resets ('bootstrap reboot') */

/* note:: for full width mobile view */
@media (max-width: 950px) {
  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
}
/* html,
body {
  overflow-x: hidden;
  width: 100%;
} */

@media (min-width: 975px) {
  body {
    overflow-y: scroll;
    /* overflow-y: scroll !important; */
  }
}

/* START:: Typography */
body {
  font-family: var(--font-gill-sans-book);
  color: var(--secondary);
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-coinage-caps-kruger-gray);
  color: var(--secondary);
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  text-align: center;
}
p,
a {
  font-family: var(--font-gill-sans-book);
  font-size: 1rem;
  color: var(--secondary);
}
a {
  text-decoration: none;
  color: var(--secondary);
  text-align: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
a:hover,
a:focus {
  color: var(--primary);
}
/* note:: Override Safari Bootstrap Reboot Button */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
}
/* note:: Display Helper Classes */
.display-none {
  display: none !important;
}
.display-block {
  display: block !important;
}
.display-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (max-width: 991px) {
  .display-none--mobile {
    display: none !important;
  }
  .display-block--mobile {
    display: block !important;
  }
  .display-flex--mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .display-none--desktop {
    display: none !important;
  }
  .display-block--desktop {
    display: block !important;
  }
  .display-flex--desktop {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/* note:: font specific */
.noon-text-coinage {
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  line-height: 1.6rem;
  text-transform: uppercase;
}
/* note:: colour specific */
.noon-text-primary {
  color: var(--primary);
}
.noon-text-secondary {
  color: var(--secondary);
}
.noon-text-tertiary {
  color: var(--tertiary);
}
.noon-text-white {
  color: white;
}
/* note:: case & colour specific */
.noon-text-primary--upper {
  font-family: var(--font-gill-sans-medium);
  color: var(--primary);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.noon-text-secondary--upper {
  color: var(--secondary);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.noon-text-tertiary--upper {
  color: var(--tertiary);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.noon-text-white--upper {
  color: white;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.card-component__title--two-line {
  height: 3rem;
  overflow: hidden;
}
.card-component__title--three-line {
  height: 4.5rem;
  overflow: hidden;
}
.card-component__title--four-line {
  height: 6rem;
  overflow: hidden;
}
.card-component__title--five-line {
  height: 7.5rem;
  overflow: hidden;
}
.card-component-text--two-line {
  height: 2.4rem;
  overflow: hidden;
}
.card-component-text--three-line {
  height: 3.6rem;
  overflow: hidden;
}
.card-component-text--four-line {
  height: 4.8rem;
  overflow: hidden;
}
.card-component-text--five-line {
  height: 6rem;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: normal;
}
.highlight-red {
  color: var(--red);
}

/* .noon-text-black {
  color: black;
} */

/* END:: Typographpy */
/*  */
/*  */
/*  */
/* END:: Base Element Styles */
/*  */
/*  */
/*  */
/* START:: Base Component Styles */

/* START:: Page Layout */
@media screen and (min-width: 975px) {
  .page-tramlines {
    margin: 0 87px;
  }
}
.row-top-buffer {
  margin-top: 48px;
}
.row--top-buffer {
  margin-top: 48px;
}
.row--tramlines {
  padding-left: 75px;
  padding-right: 75px;
}
@media screen and (max-width: 767px) {
  .row--tramlines {
    padding-left: 0;
    padding-right: 0;
  }
}
.row--no-padding,
.col--no-padding {
  padding-left: 0;
  padding-right: 0;
}
.single-column-margins {
  margin-right: 75px;
  margin-left: 75px;
}
@media screen and (max-width: 991px) {
  .single-column-margins {
    margin-left: 0;
    margin-right: 0;
  }
}
.double-column-margin-right {
  margin-right: 12px;
  margin-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.double-column-margin-left {
  margin-left: 12px;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .double-column-margin-right {
    margin-right: 75px;
    margin-left: 0;
  }
  .double-column-margin-left {
    margin-left: 75px;
    margin-right: 0;
  }
}
/* END:: Page Layout */
/*  */
/*  */
/*  */

/* START:: Helper styles */
/* note:: Colours */
.make-primary-colour {
  color: var(--primary);
}
/* END:: Helper styles */
/*  */
/*  */
/*  */

/* START:: Breadcrumb */
.breadcrumb__container {
  border-top: 2px solid var(--light-grey);
  padding-left: 12px;
  padding-right: 12px;
}
.breadcrumb__link-box {
  display: table; /* IE11: to make width fit content */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px auto;
  padding-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
.breadcrumb__link {
  text-transform: uppercase;
  color: var(--tertiary);
  opacity: 0.6;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}
.breadcrumb__separator {
  opacity: 0.4;
}
.breadcrumb__link:hover {
  opacity: 1;
}
.breadcrumb__current-page {
  font-family: var(--font-gill-sans-book);
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--primary);
  text-decoration-color: var(--primary);
  text-underline-offset: 3px;
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}
/* END:: Breadcrumb */
/*  */
/*  */
/*  */

/* START:: Page Section Header */
.page-section {
  background-color: var(--primary);
  min-height: 32px;
  position: relative;
  margin-bottom: 24px;
}
.page-section--margin-top {
  margin-top: 36px;
}
.page-section--margin-bottom {
  margin-bottom: 24px;
}
.page-section__title {
  font-family: var(--font-gill-sans-book);
  color: var(--secondary);
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.page-section__title--align-left {
  text-align: left;
  padding-left: 16px;
}
/* END:: Page Section Header */
/*  */
/*  */
/*  */
/* START:: Page Top Banner */
/* note:: original - HTML code in base styles for original also commented out */
.page-top-banner {
  background-color: var(--primary);
  padding: 30px;
}
.page-top-banner a.card-component__link {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.1rem;
}
.page-top-banner a.card-component__link:hover,
.page-top-banner a.card-component__link:focus {
  color: white;
  opacity: 0.8;
}
.page-top-banner--dynamic-black {
  background-color: var(--secondary);
  padding: 3px 30px 0;
  min-height: 36px;
}
.page-top-banner--dynamic-black a.card-component__link {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid var(--primary);
  color: white;
  margin-bottom: 3px;
}
.page-top-banner--dynamic-black a.card-component__link:hover {
  color: var(--primary);
  opacity: 0.8;
  border-bottom: 1px solid white;
}
/* note:: Dymanic only */
.top-banner-content--hide {
  display: none;
}
.page-top-banner__content-dynamic {
  height: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.page-top-banner__content-box {
  opacity: 0;
  padding: 10px 100px;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.page-top-banner__content-box p {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media (max-width: 950px) {
  .page-top-banner__content-box {
    padding: 5px;
  }
  .page-top-banner__content-box p {
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  .page-top-banner__content-dynamic .page-top-banner__content-box p {
    font-size: 0.8rem;
  }
}
/* END:: Page Top Banner */
/*  */
/*  */
/*  */

/* START:: Page Title Banner */
.page-title-banner {
  padding: 24px;
  border-bottom: 2px solid var(--light-grey);
}
.page-title-banner .card-component__title {
  margin-bottom: 20px;
}
.page-title-banner__button-container {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          gap: 1rem;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.page-title-banner__button-container .butn {
  width: 100%;
}
        
/* END:: Page Title Banner */
/*  */
/*  */
/*  */

/* START:: Page Introduction */
.page-introduction__container {
  padding: 30px 100px;
  width: 100%;
}
.page-introduction__text-main {
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  line-height: 1.6rem;
  text-align: center;
  text-transform: uppercase;
}
.page-introduction__text-secondary {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: var(--secondary);
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
}
.page-introduction__button {
  width: 300px;
  margin: 48px auto 30px;
}
@media (max-width: 991px) {
  .page-introduction__container {
    padding: 10px 15px;
  }
}
/* END:: Page Introduction */
/*  */
/*  */
/*  */

/* START:: Search Bar */
.search-bar {
  font-family: var(--font-gill-sans-book);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  max-width: 500px;
  height: 24px;
  border: none;
  border-radius: 20px;
  background-color: var(--light-grey);
  padding-right: 55px;
  letter-spacing: 0.1rem;
}
.search-bar:focus {
  background-color: var(--light-grey);
}
.search-bar__button {
  width: 15px;
  height: 15px;
  -webkit-transform: translate(-40px, 4px);
  -ms-transform: translate(-40px, 4px);
  transform: translate(-40px, 4px);
}
/* END:: Search Bar */
/*  */
/*  */
/*  */
/* START:: Buttons - <a> */
/* note:: built as a flex item - adjust width as required */

/* note:: Disable button */
.butn--disabled {
  opacity: 0.2;
}
.butn:hover.butn--disabled:hover,
.butn:focus.butn--disabled:focus {
  cursor: default;
  color: white;
  opacity: 0.2;
}

a.butn {
  display: block;
}
.butn {
  font-family: var(--font-gill-sans-book);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 70%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 70%;
  flex: 0 1 70%;
  border-radius: 20px;
  text-align: center;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.9rem;
  height: 28px;
  padding: 3px 6px 2px;
  text-transform: uppercase;
  line-height: 1.3rem;
}
@media (min-width: 992px) {
  .butn {
    max-width: 500px;
  }
}
.butn:hover,
.butn:focus {
  color: white;
  opacity: 0.8;
}
.butn--primary {
  background-color: var(--primary);
  color: var(--secondary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.butn--primary:not(.butn--big) {
  letter-spacing: 0.1rem;
}
.butn.butn--primary:hover,
.butn.butn--primary:focus {
  color: var(--secondary);
}
.butn--secondary {
  background-color: var(--secondary);
}
.butn--secondary:not(.butn--big) {
  letter-spacing: 0.1rem;
}
.butn--tertiary {
  background-color: var(--tertiary);
}
.butn--light {
  color: var(--secondary);
  background-color: var(--light-grey);
}
.butn--light:not(.butn--big) {
  letter-spacing: 0.1rem;
}
.butn--light:hover,
.butn--light:focus {
  color: var(--secondary);
}
.butn--tertiary {
  color: white;
  background-color: var(--tertiary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.butn--tertiary:not(.butn--big) {
  letter-spacing: 0.1rem;
}
.butn--white {
  background: white;
  color: black;
}
.butn--white:not(.butn--big) {
  letter-spacing: 0.1rem;
}
.butn--white:hover,
.butn--white:focus {
  color: black;
  opacity: 0.8;
}
.butn--small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 15px;
  padding-right: 15px;
}
.butn--big {
  padding: 0;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 30px;
}
/* END:: Buttons - <a> */
/*  */
/*  */
/*  */
/* START:: Buuttons - <input> */
.butn--input {
  /* color: red; */
  border: none;
  line-height: 1rem;
  padding: 6px 5px;
}
/* END:: Buuttons - <input> */

/* START:: Link Container */
.option-butn__link-container {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */

  /* width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; */
  text-align: center;
  margin: 0 auto 10px auto;
  margin-bottom: 10px;
}
.option-butn__link-box {
  display: inline-block;
}
.option-butn__link {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--tertiary);
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.option-butn__link:hover {
  text-decoration: none;
  color: var(--secondary);
  border-bottom: 1px solid var(--primary);
}
.option-butn__link.always-active {
  color: var(--secondary);
  border-bottom: 1px solid var(--primary);
}
@media (max-width: 767px) {
  .option-butn__link-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .option-butn__link-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .option-butn__link-box:nth-child(odd) {
    text-align: right;
  }
}
@media (max-width: 650px) {
  .option-butn__link {
    font-size: 0.7rem;
    margin: 0 5px;
  }
  .option-butn__link-box .card-component__dot--inline {
    display: none;
  }
}
/* END:: Link Container */
/*  */
/*  */
/*  */

/* START:: Pagination Top */
.pagination-top__filter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.pagination-top__filter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 32px;
  /* min-width: 185px; */
}
.pagination-top__filter-box:hover {
  cursor: pointer;
}
.pagination-top__filter-box--dropdown {
  margin-right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
}
.pagination-top__filter-box--view-toggle {
  margin-right: 0;
  margin-left: 45px;
}
.pagination-top__dropdown-list-text {
  margin: 0;
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--secondary);
  font-size: 0.8rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 0.1rem;
  width: 100%;
}
.pagination-top__custom-dropdown
  .pagination-top__custom-dropdown-list
  .custom-dropdown__content-box {
  padding: 6px 0;
}

.pagination-top__dropdown-list-text:hover,
.pagination-top__dropdown-list-text:focus {
  color: var(--primary);
  cursor: pointer;
}
.custom-dropdown__content-box.custom-dropdown__content-box--pagination-final {
  border-bottom: 2px solid var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination-top__custom-dropdown
  .pagination-top__custom-dropdown-list
  .custom-dropdown__content-box.custom-dropdown__content-box--pagination-final {
  padding: 0;
}
.pagination-top__filter-box-image {
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.pagination-top__filter-box-image:hover,
.pagination-top__filter-box-image:focus {
  opacity: 0.8;
}
.pagination-top__filter-text-box {
  margin-left: 10px;
  padding-top: 2px;
  width: 100%;
}
.pagination-top__filter-text {
  margin: 0;
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
  line-height: 0.9rem;
  text-transform: uppercase;
  text-align: left;
}
.pagination-top__filter-text--lower {
  color: var(--tertiary);
}
.btn.dropdown-toggle.custom-dropdown__butn.pagination-top__dropdown {
  background-color: white;
  padding: 0;
  height: 33px;
  letter-spacing: 0;
}
.pagination-top__filter-container .custom-dropdown ul.custom-dropdown__list {
  -webkit-transform: translate(0px, 26px);
  -ms-transform: translate(0px, 26px);
  transform: translate(0px, 26px);
}
.icons-container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.icons-container.icons-container--lots-view {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.icons-container__image {
  width: 32px;
  height: 32px;
  margin-left: 8px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.icons-container__image:hover,
.icons-container__image:focus {
  opacity: 0.8;
}
@media (max-width: 750px) {
  .pagination-top__filter-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pagination-top__icons-container {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    /* padding-left: 2px; */
    margin-bottom: 15px;
  }
  .pagination-top__icons-container .icons-container__image {
    /* margin-right: 34px; */
    margin-left: 0;
    margin-right: 77px;
  }

  /* .pagination-top__filter-box--auction-cat {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  } */
  .pagination-top__filter-box {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .pagination-top__custom-dropdown {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
}
/* Gold Notifications Bubble */
.notifications__container {
  position: relative;
}
.notifications__bubble {
  z-index: 1;
  height: 20px;
  min-width: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background-color: var(--gold);
  position: absolute;
  left: 30px;
  top: -10px;
  padding: 4px 4px 4px 5px;
}
.notifications__text {
  color: var(--secondary);
  font-size: 0.7rem;
  margin: 0;
  line-height: 0.7rem;
}
/* END:: Pagination Top */
/*  */
/*  */
/*  */

/* START:: Pagination Bottom */
.pagination-bottom__container {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -o-linear-gradient(top, #fff, #f2f2f2);
}
.pagination-bottom__previous,
.pagination-bottom__next {
  width: 32px;
  height: 32px;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.pagination-bottom__results-pages ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}
.pagination-bottom__results-pages ul li {
  display: inline;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  margin: 0 2px;
  padding: 0 10px 2px;
}
.pagination-bottom__results-pages ul li.active a {
  color: var(--primary);
}
.pagination-bottom__link {
  font-size: 1.5rem;
  color: var(--secondary);
}
.pagination-bottom__elipsis {
  display: block;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  letter-spacing: 5px;
}
/* END:: Pagination Bottom */
/*  */
/*  */
/*  */

/* START:: Item navigation */
.item-navigation__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .item-navigation__container {
    margin-top: 15px;
  }
}
.item-navigation__next,
.item-navigation__previous {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-navigation__next {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.item-navigation__next img,
.item-navigation__previous img {
  width: 2rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.item-navigation__next:hover img,
.item-navigation__previous:hover img {
  opacity: 0.7;
}
.item-navigation__next p,
.item-navigation__previous p {
  height: 1rem;
  text-transform: uppercase;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.item-navigation__previous p {
  letter-spacing: 0.1rem;
  margin-left: 10px;
  margin-top: 3px;
}
.item-navigation__next p {
  letter-spacing: 0.1rem;
  margin-right: 10px;
  margin-top: 3px;
}
.item-navigation__previous:hover p,
.item-navigation__next:hover p {
  color: var(--primary);
}
/* note:: Sidebar speciific styles */
.item-navigation__container--sidebar {
  margin-top: 36px;
}
.item-navigation__next--sidebar img {
  width: 1.5rem;
}
.item-navigation__previous--sidebar img {
  width: 1.5rem;
}
.item-navigation__previous--sidebar p {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}
.item-navigation__next--sidebar p {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}
/* END:: Item navigation */
/*  */
/*  */
/*  */

/* START:: Partial length borders */
.partial-left-border {
  position: absolute;
  top: 16px;
  bottom: 16px;
  border-left: 2px solid var(--primary);
  left: 0;
  /* min-height: 260px; */
}
.partial-border--nav-bar {
  min-height: 345px;
}
.partial-right-border {
  position: absolute;
  top: 16px;
  bottom: 16px;
  border-right: 2px solid var(--primary);
  right: 0;
  /* min-height: 260px; */
}
.partial-bottom-border {
  position: absolute;
  left: 16px;
  right: 16px;
  border-bottom: 2px solid var(--primary);
  bottom: 0;
}
.butn--form {
  border-radius: 12px;
  width: 100%;
}
/* END:: Partial length borders */
/*  */
/*  */
/*  */
/* START:: Accordion */
/* note:: remove the default box shadow on the underline when open */
.accordion-button:not(.collapsed) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
/* note:: Accordion top open heading */
p.accordion__top-open-heading {
  line-height: 1.6rem; /* helps with spacing between lines when words wrap to second line */
  color: var(--primary);
  width: 100%;
  font-family: var(--font-coinage-caps-kruger-gray);
  text-transform: uppercase;
  /* font-size: 1.5rem; */
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  padding: 0.3rem 0;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid var(--primary);
  border-left: 1px solid transparent;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.accordion {
  /* width: 400px; */
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.accordion--primary-colour {
  font-family: var(--font-coinage-caps-kruger-gray);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion--primary-colour .accordion-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .accordion--primary-colour .accordion-body {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .accordion--primary-colour .accordion-button {
    padding: 0 2px;
  }
}
.accordion--primary-colour .accordion-button {
  background-color: var(--primary);
  color: white;
  min-height: 32px;
  padding: 0 24px;
  border: transparent;
}
.accordion-button.accordion-button--grey {
  background-color: grey;
}
.accordion-button.accordion-button--grey::after {
  background-image: url(../icons/plus-grey-in-white-circle.svg);
}
.accordion-button.accordion-button--grey:not(.collapsed)::after {
  background-image: url(../icons/minus-grey-in-white-circle.svg);
}
.accordion--primary-colour .accordion-button::after {
  width: 1.5rem;
  height: 1.5rem;
}
.accordion--primary-colour .accordion-button:not(.collapsed) {
  color: white;
  background-color: var(--primary);
  -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  border: none;
}
.accordion--primary-colour
  .accordion-button.accordion-button--grey:not(.collapsed) {
  background-color: grey;
  border: none;
}
.accordion--primary-colour .accordion-button:hover {
  background: var(--tertiary);
}
.accordion--primary-colour .accordion-item h2.accordion-header:hover {
  background: var(--tertiary);
}
.accordion--wide {
  width: 100%;
  margin: 0 auto;
}
/* @media (min-width: 975px) {
  .accordion--wide {
    width: calc(100% - 172px);
    margin: 0 auto;
  }
} */
.accordion--wide .accordion-item:not(:first-of-type) {
  border-top: 2px solid transparent;
}
.accordion-item {
  border: 1px solid transparent;
}
button.accordion-button {
  color: var(--primary);
  font-family: var(--font-coinage-caps-kruger-gray);
  text-transform: uppercase;
  /* font-size: 1.5rem; */
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  padding: 0.3rem 0;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid var(--primary);
  border-left: 1px solid transparent;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.accordion-button:focus {
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid var(--primary);
  border-left: 1px solid transparent;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../icons/minus-verdigris-in-white-circle.svg");
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.accordion-button::after {
  background-size: cover;
  width: 2rem;
  height: 2rem;
  background-image: url("../icons/plus-verdigris-in-white-circle.svg");
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: white;
  -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-body {
  font-family: var(--font-gill-sans-book);
  padding-left: 0;
  padding-right: 0;
  line-height: 1.2rem;
}
.accordion-body__data-box {
  margin-bottom: 24px;
}
/* .accordion__page-section > h2 {
  font-family: var(--font-gill-sans-medium);
  text-transform: uppercase;
} */
.accordion-body__item {
  font-family: var(--font-gill-sans-medium);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: var(--primary);
  margin-bottom: 0;
}
.accordion-body__note {
  font-family: var(--font-gill-sans-book);
  margin: 0;
}
.accordion-body__link {
  text-align: left;
  border-bottom: 1px solid black;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.accordion-body__link:hover,
.accordion-body__link:focus {
  border-bottom: 1px solid var(--primary);
}
.accordion-body__link--underline-primary {
  border-bottom: 1px solid var(--primary);
}
@media (max-width: 1090px) {
  .accordion--primary-colour .accordion-button {
    padding: 0 5px;
    font-family: var(--font-gill-sans-medium);
    font-size: 0.9rem;
  }
}
/* END:: Accordion */
/*  */
/*  */
/*  */
/* START:: Range Slider */
.rs-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rs-container {
  font-family: Arial, Helvetica, sans-serif;
  height: 45px;
  position: relative;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
  /* background-color: #eee; */
  /* border: 1px solid #ededed; */
  /* height: 10px; */
  background-color: rgb(29, 31, 42);
  height: 2px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
  border-radius: 3px;
}
.rs-container .rs-selected {
  /* background-color: #00b3bc; */
  /* border: 1px solid #00969b; */
  background-color: rgb(92, 184, 178);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 0;
}
.rs-container.disabled .rs-selected {
  background-color: #ccc;
  border-color: #bbb;
}
.rs-container .rs-pointer {
  background-color: var(--primary);
  background: var(--primary); /* for internet explorer */
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  height: 32px;
  left: -10px;
  position: absolute;
  /* top: 0; */
  top: -11px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  /* width: 30px; */
  width: 32px;
  /* -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 6px #ebebeb,
  1px 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px #fff, inset 0 1px 6px #ebebeb,
  1px 1px 4px rgba(0, 0, 0, 0.1); */
}
@media (min-width: 992px) {
  .rs-container .rs-pointer {
    height: 24px;
    width: 24px;
    top: -8px;
  }
}
.rs-container.disabled .rs-pointer {
  border-color: #ccc;
}
/* .rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 9px;
  background-color: #ddd;
  left: 12px;
  top: 5px;
} */
.rs-container .rs-pointer::after {
  left: auto;
  right: 12px;
}
.rs-container.disabled .rs-pointer {
  cursor: default;
}
.rs-container.sliding .rs-selected,
.rs-container.sliding .rs-pointer {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.rs-container .rs-scale {
  display: none; /* removes the beginning and ending number from under the slider */
  left: 0;
  position: absolute;
  top: 5px;
  white-space: nowrap;
}
.rs-container .rs-scale span {
  float: left;
  position: relative;
}
.rs-container .rs-scale span::before {
  background-color: #ededed;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 1px;
}
.rs-container.rs-noscale span::before {
  display: none;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
  display: block;
}
.rs-container .rs-scale span:last-child {
  margin-left: -1px;
  width: 0px;
}
.rs-container .rs-scale span ins {
  color: #333;
  display: inline-block;
  font-size: 12px;
  margin-top: 20px;
  text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
  color: #999;
}
.rs-tooltip {
  display: none;
  color: #333;
  width: auto;
  /* min-width: 60px; */
  /* height: 30px; */
  height: 30px;
  width: 30px;
  position: relative;
  /* background: #fff; */
  background: white;
  /* border: 1px solid #00969b; */
  border: 1px solid rgb(29, 31, 42);
  /* border-radius: 3px; */
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -35px);
  -ms-transform: translate(-50%, -35px);
  transform: translate(-50%, -35px);
  /* left: 13px; */
  left: 14px;
  top: 34px;
  text-align: center;
  font-size: 13px;
  /* padding: 6px 10px 0; */
  padding: 5px 2px 0;
  pointer-events: none; /*make click through*/
  letter-spacing: 0;
}
.rs-container.disabled .rs-tooltip {
  border-color: #ccc;
  color: #999;
}
/* END:: Range Slider */
/*  */
/*  */
/*  */

/* START:: Sidebars */
.page-sidebar {
  /* display: none; */
  font-family: var(--font-coinage-caps-kruger-gray);
  height: 100%;
  width: 0;
  /* position: absolute; */
  /* left: 0; */
  position: fixed;
  /* z-index: 5; */
  z-index: 870;
  top: 0;
  /* background-color: rgb(250, 250, 250); */
  background-color: white;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.page-sidebar--right-side {
  left: auto;
  right: 0;
  position: absolute;
}
.page-sidebar .page-sidebar__close-button {
  position: absolute;
  top: 32px;
  left: 250px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.page-sidebar__content-container {
  min-width: 298px;
  margin-top: 136px;
  padding-left: 12px;
  padding-right: 26px;
  padding-bottom: 48px;
}

/* NOTE:: Animated search page overlay coming in from the side */
/* .search-page-overlay {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    z-index: 2;
    max-width: calc(100% - 298px);
  } */

/* NOTE:: Un-animated page overlay instantly covering/uncovering full page */
.page-sidebar__overlay {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 860;
}
/* note:: Sidebar section headers */
.page-section--sidebar {
  width: 100%;
  height: 24px;
  min-height: 24px;
}
.page-section__title--sidebar {
  font-family: var(--font-gill-sans-medium);
  font-size: 1rem;
  letter-spacing: 0.1rem;
  padding: 2px 0 2px 6px;
  text-align: left;
  line-height: 1.2rem;
}
/* subsection:: create new list & edit list sidebar */
.page-section__title--sidebar-create-list,
.create-list-form .user-text-input--regular {
  text-align: left;
}

.create-list-form {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.create-list-form .user-text-input--regular {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-bottom: 24px;
}
.create-list-form .butn--primary,
.create-list-form .butn--light {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}
/* section:: Bid sidebar */
/* subnote:: place bid sidebar */
.bid-sidebar__lot-no {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 48px;
}
.bid-sidebar__form {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bid-sidebar__bid-input {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-bottom: 8px;
}
.bid-sidebar__submit-butn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.bid-sidebar__accordion {
  margin-top: 38px;
}
button.accordion-button.bid-sidebar__accordion-button {
  font-size: 1rem;
}
.bid-sidebar__checkbox-container {
  margin-top: 18px;
}
.bid-sidebar__checkbox {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
label.form-check-label.bid-sidebar__checkbox-label {
  font-size: 0.8rem;
}
.bid-sidebar__bid-submit-butn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-top: 48px;
}
/* note:: Square image e.g. for staff */
.sidebar-image--square {
  max-width: 260px;
}
/* END:: Sidebars */
/*  */
/*  */
/*  */

/* START:: Modal */
.modal {
  /* note:: the overlay */
  background-color: rgba(29, 31, 42, 0.7);
}
.modal-header {
  border-bottom: none;
}
.modal-title {
  background-color: var(--primary);
  width: 100%;
  color: white;
  font-family: var(--font-gill-sans-book);
  text-transform: uppercase;
  padding-left: 12px;
  letter-spacing: 1px;
}
.noon-modal__close-button {
  width: 32px;
  height: 32px;
  margin-left: 16px;
  cursor: pointer;
}
.noon-modal__body-text--primary {
  color: var(--primary);
  font-family: var(--font-gill-sans-book);
  font-size: 1rem;
  text-transform: uppercase;
}
.noon-modal__butn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

/* note:: modal informational */
@media (min-width: 992px) {
  .modal-informational .modal-dialog {
    max-width: 700px;
  }
}
.modal-informational .modal-content {
  position: relative;
}
.modal-informational .noon-modal__close-button {
  position: absolute;
  top: -15px;
  right: -15px;
}
@media (max-width: 991px) {
  .modal-informational .noon-modal__close-button {
    top: 2px;
    right: 2px;
  }
}
.modal-informational .modal-body {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.modal-informational .modal-header {
  padding-bottom: 0;
}
.modal-informational .modal-title {
  text-align: center;
}

.modal-informational .modal__heading.card-component__title {
  margin: 0;
  line-height: 1.8rem;
}
.modal-informational .modal__sub-heading {
  font-family: var(--font-gill-sans-medium);
  letter-spacing: 0.1rem;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
  margin: 20px 0 0;
}
.modal-informational .modal__text {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.modal-informational .modal__link {
  margin: 20px 0;
}
.modal-informational .modal-footer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* END:: Modal */
/*  */
/*  */
/*  */

/* START:: Forum */
.forum__post-container {
  padding: 0 5px 3px 5px;
  margin-top: 24px;
}
/*  */
/*  */
/* note:: keep the BELOW post styles in this order for the Javascript styles conditional */
.forum__post-container--user-forum-post {
  background-color: var(--light-grey);
  margin-top: 0;
}
.forum__post-container--thread-start {
  background-color: white;
  border-top: 2px solid var(--light-grey);
}
.forum__post-container--noonans-forum-post {
  background-color: var(--primary);
  margin-top: 0;
}
.forum__post-container--noonans-forum-post p,
.forum__post-container--noonans-forum-post a {
  color: white;
}
.forum__post-container--noonans-forum-post a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.forum__post-container--noonans-forum-post a:hover {
  color: var(--tertiary);
}
/* note:: keep the ABOVE post styles in this order for the Javascript styles conditional */
/*  */
/*  */
.forum__post-title {
  font-family: var(--font-gill-sans-medium);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}
.forum__post-content {
  font-family: var(--font-gill-sans-book);
}
.forum__time-reply-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.forum__post-time {
  color: var(--tertiary);
  margin-bottom: 0;
  font-size: 1rem;
  margin-right: 12px;
}
.forum__butn-post-reply {
  color: var(--tertiary);
  font-size: 1rem;
}
.forum__butn-post-delete {
  color: var(--tertiary);
  font-size: 1rem;
  margin-left: 10px;
}
.forum__comment-form {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 48px;
}
.forum__comment-form-text-area {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  border-radius: 12px;
  font-family: var(--font-gill-sans-book);
  font-size: 0.8rem;
  padding: 0 4px 2px 8px;
}
.forum__comment-form-text-area::-webkit-input-placeholder {
  color: var(--tertiary);
}
.forum__comment-form-text-area::-moz-placeholder {
  color: var(--tertiary);
}
.forum__comment-form-text-area:-ms-input-placeholder {
  color: var(--tertiary);
}
.forum__comment-form-text-area::-ms-input-placeholder {
  color: var(--tertiary);
}
.forum__comment-form-text-area::placeholder {
  color: var(--tertiary);
}
.forum__comment-form-post-butn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
  margin-top: 12px;
}
/* NOTE:: Forum reply text input - these over-ride some of the usual forum text input styles so needs to be here in the css cascade */
.forum__comment-form--reply {
  margin-top: 5px;
  margin-bottom: 5px;
}
/* END:: Forum */
/*  */
/*  */
/*  */

/* START:: Private Notes */
.private-notes__note-form {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
}
.private-notes__entry {
  margin-bottom: 12px;
  background-color: var(--light-grey);
  padding: 4px 4px 4px 12px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.private-notes__entry-text {
  font-family: var(--font-gill-sans-book);
  font-size: 0.8rem;
}
.private-notes__entry-time {
  margin-top: 24px;
  margin-bottom: 0;
  font-family: var(--font-gill-sans-book);
  font-size: 1rem;
  color: var(--tertiary);
}
.private-notes__note-form .butn {
  letter-spacing: 0.1rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 35%;
  flex: 0 1 35%;
}
.butn--private-notes-edit {
  background-color: var(--tertiary);
}
/* END:: Private Notes */
/*  */
/*  */
/*  */

/* START:: Card Components - see also 'Carousel Specific Styles' */
/* note:: Card component container */
.card-component-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.card-component-container--centre-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}@media screen and (max-width: 1095px) {
  .card-component-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.card-component-container .card-component {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  min-width: 230px;
  margin-bottom: 48px;
}
.card-component-container .card-component-list {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .card-component-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 257px;
  }
}
.card-component-container .card-component .card-component__image-container {
  margin-left: auto;
  margin-right: auto;
}
.card-component__image-container {
  position: relative;
}
.card-component__image-container__banner {
  font-family: var(--font-gill-sans-book);
  letter-spacing: 0.1rem;
  width: 100%;
  color: white;
  margin: 0;
  position: absolute;
  bottom: 0;
  background: black;
  font-size: 1rem;
  text-transform: uppercase;
}

/* note:: Card components */
.card-component {
  position: relative;
  border-right: 1px solid var(--primary);
  width: 226px;
  padding: 0 12px 0 12px;
  /* display: inline-block; */
}
@media (max-width: 991px) {
  .card-component {
    border-right: none;
  }
}
.card-component--lot {
  height: 560px;
}
.card-component--lot-past {
  height: 478px;
}
.card-component--no-image__extended-description {
  height: 322px;
}

.card-component.card-component--border-none {
  border: none;
}
/* noteBlockStart:: anchor to bottom of card component */
.card-component__full-card-link .card-component__anchor-container {
  position: relative;
  height: 100%;
}
.card-component--anchor-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 12px;
}
.card-component--anchor-bottom > * {
  margin-top: 6px;
}
/* noteBlockEnd:: anchor to bottom of card component */
.card-component__full-card-link .card-component__hover-effect-element {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 12px;
  padding-bottom: 1px;
}
.card-component__hover-effect-element--specialists {
  height: 353px;
}
.card-component__full-card-link:hover .card-component--hover-effect {
  color: var(--primary);
}
.card-component__full-card-link:hover .card-component__title {
  color: var(--primary);
}
.card-component__full-card-link:hover .card-component__hover-effect-element {
  background-color: var(--light-grey);
}

[data-carousel-model="noon-carousel-static-content"] .card-component {
  min-height: 305px;
}
.card-component--hero {
  width: 100%;
  min-height: 536px;
  padding: 0;
  border-right: none;
}
.card-component--department {
  height: 305px;
}
.card-component--event-card {
  height: 429px;
}
.card-component--featured-collection {
  height: 395px;
}
.card-component--lot {
  height: 530px;
}
.card-component--lot-highlight {
  height: 356px;
}
.card-component--lot-past {
  height: 478px;
}
.card-component--past-catalogues {
  height: 612px;
  position: relative;
  margin-bottom: 48px;
}
.card-component--past-catalogues .card-component--anchor-bottom a:last-of-type {
  margin-top: 12px;
}
.card-component--past-catalogues
  .card-component__full-card-link
  .card-component__dot {
  margin-top: 12px;
  margin-bottom: 24px;
}
.card-component--past-catalogues__butn-upper,
.card-component--past-catalogues__butn-lower {
  position: absolute;
  width: 90%;
  left: 50%;
}
.card-component--past-catalogues__butn-upper {
  bottom: 33px;
}
.card-component--past-catalogues__butn-lower {
  bottom: 0;
}
.card-component--past-catalogues__butn-upper,
.card-component--past-catalogues__butn-lower {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.card-component__image-container.card-component--past-catalogues__image-container {
  background: none;
  width: 100%;
  height: 300px;
}
.card-component--past-catalogues .card-component__image {
  height: 300px;
  max-height: 300px;
}
.card-component--staff-member {
  height: 358px;
}
.card-component-container .card-component--press-coverage {
  height: auto;
  min-width: 250px;
  position: relative;
  border-right: none;
  margin-bottom: 20px;
}
.card-component--full-slide-link a h3 {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-component--full-slide-link a:hover h3 {
  color: var(--primary);
}
.card-component__event-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 5px;
}
.card-component--text-white {
  color: white;
}
.card-component--text-secondary {
  color: var(--secondary);
}
.card-component--text-primary {
  color: var(--primary);
}
.card-component__event-title {
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 3rem;
  letter-spacing: 0.15rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  text-transform: uppercase;
  flex: 0 1 100%;
  text-align: center;
  line-height: 3rem;
}
.card-component__event-title--upper {
  letter-spacing: 0.15rem;
  margin-top: 60px;
  margin-bottom: 0;
}
.card-component__event-title--single-line {
  margin-top: 80px;
}

.card-component__event-sub-heading {
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  text-align: center;
  margin: 0 0 5px;
}
/* .card-component__dot.card-component__dot--hero-event {
  width: 0.7rem;
  margin: 25px 0 20px;
} */
.card-component__dot {
  display: block;
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 1rem;
  color: var(--primary);
  text-align: center;
  line-height: 1.2rem;
  margin-bottom: 10px;
}
.card-component__dot--event {
  display: block;
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 4.5rem;
  line-height: 1rem;
  margin: 7px 0 27px 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  text-align: center;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.card-component__dot--inline {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.3rem;
  margin: 0 10px;
  color: var(--primary);
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
.card-component__dot--inline-link-container {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
@media (max-width: 767px) {
  .card-component__dot.hero-porthole-card__dot,
  .card-component__hero-info-box .card-component__dot--inline {
    display: none;
  }
}
.card-component__dot--event-primary {
  color: var(--primary);
}
.card-component__dot--event-white {
  color: white;
}
.card-component__event-date-time {
  letter-spacing: 0.1rem;
  font-size: 3rem;
  line-height: 3.3rem;
  text-transform: uppercase;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  text-align: center;
  margin-bottom: 0;
}
.card-component__event-address {
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  text-align: center;
  margin: 20px 0 25px;
}
.card-component__event-address--upper {
  margin-bottom: 0;
  line-height: 1.5rem;
  font-family: var(--font-gill-sans-book);
}
.card-component__event-address--lower {
  margin: 0 0 25px 0;
  line-height: 1.5rem;
  font-family: var(--font-gill-sans-book);
}
.card-component__event-button {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 280px;
  flex: 0 1 280px;
}
@media (max-width: 1000px) {
  .card-component__event-title,
  .card-component__event-date-time {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .card-component__event-address {
    font-size: 1rem;
  }
  .card-component__event-title--single-line {
    margin-top: 60px;
  }
}
.card-component--bg-black {
  background-color: black;
}
.card-component--bg-gold {
  background-color: var(--gold);
}
.card-component--bg-brown {
  background-color: var(--brown);
}
.card-component__image-overlay-container {
  position: relative;
  background-color: black;
}
.card-component__image-overlay-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  background-color: rgba(92, 184, 178, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-component__image-overlay-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-gill-sans-medium);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: white;
}
.card-component__image-overlay-bottom--gold {
  background-color: var(--gold);
}
.card-component__image-overlay-text {
  text-transform: uppercase;
  color: white;
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.card-component__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  height: 202px;
  margin-bottom: 24px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; /* needed for centering in ie11 */
  background-color: black;
}

.card-component__image-container--porthole-bg-secondary {
  background-color: var(--secondary);
}
.card-component__image-container--hero {
  width: 100%;
  height: 432px;
  margin-bottom: 0;
}
.card-component__image-container.card-component__image-container--porthole {
  border-radius: 50%;
  width: 201px;
}
.card-component__image {
  max-width: 100%;
  max-height: 100%;
}
.card-component__image--featured-lot {
  /* max-height: 400px; */
  max-width: 90vw;
}
/* note:: Card component catalogue cover */
.card-component__image-container--auction {
  height: auto;
  min-height: 284px;
}
.card-component__image-container--auction-catalogue {
  background-color: #ffffff;
}
.card-component__image-container--auction-cataloguing {
  height: 236px;
  min-height: 236px;
  margin-bottom: 0;
  padding: 10px;
}
.card-component__image-container--large.card-component__image-container--auction-cataloguing {
  height: 413px;
  padding: 20px;
}
.card-component__image-container--auction-cataloguing-white {
  border: none;
  border-top: 1px solid var(--light-grey);
  border-right: 1px solid var(--light-grey);
  border-left: 1px solid var(--light-grey);
  background-color: #ffffff;
}
.card-component__image-container--auction--other-scheduled {
  background-color: #000000;
  padding: 25px;
}
.card-component__image-container--large.card-component__image-container--auction--other-scheduled {
  padding: 40px;
}

.card-component__image-container--large {
  height: 461px;
}

/* note:: other scheduled auctions card */
.other-scheduled__card-component {
  position: relative;
  height: 540px;
}
.card-component__image-container--other-scheduled {
  height: 236px;
  min-height: 236px;
  background-color: var(--secondary);
  margin-bottom: 0;
}
.card-component__image-container--other-scheduled img {
  width: 70%;
  height: 200px;
}
.other-scheduled__banner {
  display: block;
  height: 48px;
  background: grey;
  padding-top: 8px;
  margin-bottom: 24px;
}
.other-scheduled__banner p {
  text-transform: uppercase;
  color: white;
  font-family: var(--font-gill-sans-book);
  letter-spacing: 0.1rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1rem;
}
.other-scheduled__link-container {
  position: absolute;
  bottom: 0;
  width: 90%;
}
.other-scheduled__butn {
  background-color: var(--secondary);
  letter-spacing: 0.1rem;
}
/* note:: Dynamic Catalogue cover cards */
.card-component--auction-forthcoming {
  height: 550px;
}
.forthcoming__image-container {
  background: white;
}
.forthcoming__image-banner {
  height: 48px;
  padding-top: 8px;
  margin-bottom: 24px;
  background-color: var(--tertiary);
}
.forthcoming__image-banner p {
  font-family: var(--font-gill-sans-medium);
  text-transform: uppercase;
  margin: 0;
  color: white;
  font-size: 0.8rem;
  line-height: 1rem;
  letter-spacing: 0.1rem;
}
.card-component__hero-text-container {
  height: 104px;
  background-color: black;
}
.hero-featured-lot__lot-number,
.hero-featured-lot__title {
  text-align: center;
}
.hero-featured-lot__lot-number {
  margin: 0;
}
.card-component__hero-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 80%;
  flex: 0 1 80%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}
.card-component__hero-info-box p {
  color: white;
}
.card-component__text--secondary.card-component__text--hero {
  width: auto;
}
.card-component__text--hero-full-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.card-component__title.card-component__title--hero-bottom {
  font-size: 1.9rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .card-component__title.card-component__title--hero-bottom {
    font-size: 1rem;
  }
}
.card-component__text--secondary,
.card-component__text--tertiary,
.card-component__text--primary,
.card-component__estimate,
.card-component__sold {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin: 0;
  line-height: 1.2rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.card-component__text--tertiary {
  color: var(--tertiary);
}
.card-component__text--primary {
  color: var(--primary);
}
.card-component__dot.card-component__dot--hero-lot-text {
  margin: 0 15px;
}
.card-component__title {
  font-family: var(--font-coinage-caps-kruger-gray);
  text-transform: uppercase;
  text-align: center;
  margin: 10px 0;
  line-height: 1.5rem;
  word-wrap: break-word;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.card-component__title--smaller {
  font-size: 1.1rem;
  line-height: 1.25rem;
}
/* .card-component__title.card-component__text--hero-full-width,
.card-component__hero-text-top-line {
  margin: 0;
  color: var(--primary);
} */

.card-component__title--lot-number {
  font-size: 1.9rem;
  margin-bottom: 0;
}
.card-component__link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card-component__link-container--hero {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.card-component__link-container--hero .card-component__link {
  color: white;
}
.card-component__link-container--hero .card-component__link:hover {
  color: var(--primary);
}
.card-component__link {
  font-family: var(--font-gill-sans-book);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.card-component__link:hover {
  border-bottom: 1px solid var(--light-grey);
}
.card-component__lot-number {
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 1.5rem;
  /* text-transform: uppercase; */
  text-align: center;
  margin: 10px 0;
  line-height: 1.5rem;
}
.card-component__butn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-top: 10px;
}
.card-component .butn,
.card-component .btn-group {
  width: 100%;
}
.card-component__estimate {
  margin-top: 8px;
}
.card-component__sold {
  margin-bottom: 8px;
  color: var(--primary);
  padding: 0 10px;
}
/* note:: Full image hero card */
.card-component--full-image {
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-component__image-container--full-image {
  position: relative;
  height: 536px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.card-component__image-container--full-image img {
  max-height: 100%;
}
@media (max-width: 770px) {
  .card-component__image-container--full-image img {
    margin-bottom: 15%;
  }
}
@media (max-width: 530px) {
  .card-component__image-container--full-image img {
    margin-bottom: 50%;
  }
}

.card-component__hero-text-container--full-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(29, 31, 42, 0.5);
  padding: 10px 0 5px;
  height: 125px;
}
.hero-full-image-text--primary,
.hero-full-image-text--white {
  font-family: var(--font-gill-sans-book);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: 1rem;
  line-height: 1.1rem;
}
.hero-full-image-text--primary {
  color: var(--primary);
  font-family: var(--font-gill-sans-medium);
  letter-spacing: 0.1rem;
}
.hero-full-image-text--white {
  color: white;
}
.hero-full-image__link-container {
  margin-top: 5px;
}
.hero-full-image__link-container a {
  color: white;
}
.hero-full-image__link-container a:hover {
  color: var(--primary);
}
@media (max-width: 991px) {
  .card-component__hero-text-container--full-image {
    padding: 5px 0 0;
  }
  .hero-full-image-text--primary,
  .hero-full-image-text--white {
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-size: 0.7rem;
    line-height: 0.8rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-full-image__link-container {
    margin-top: 0;
  }
}
/* subSection:: Hero Porthole Card */
.hero-porthole-card {
  height: 536px;
  background-color: rgb(40, 42, 53);
}
.hero-porthole-card__top-section {
  height: 402px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--secondary);
  background-image: url("/assets/images/trefoil.svg");
  background-size: 20px 20px;
}
.hero-porthole-card__image-container {
  height: 370px;
  width: 370px;
  overflow: hidden;
  border-radius: 50%;
}
.hero-porthole-card__image-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          width: 100%;
          height: 100%;
}
.hero-porthole-card__image {
  max-height: 100%;
  max-width: 100%;
}

.hero-porthole__text-container {
  height: 134px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding-top: 6px;
  max-width: 680px;
  margin: 0 auto;
}
.hero-porthole__text-container--gold {
  background-color: var(--gold);
}
.hero-porthole__text-container--gold .hero-porthole-card__dot {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .hero-porthole__text-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-porthole__text-container p {
    line-height: 1.2rem;
  }
}
.hero-porthole-card__dot {
  color: white;
  line-height: 0.8rem;
  margin-bottom: 5px;
}
.hero-porthole-card__dot--secondary {
  color: var(--secondary);
}
.hero-porthole-card__text--secondary {
  color: var(--secondary);
}
.hero-porthole-card__text--primary,
.hero-porthole-card__text--white,
.hero-porthole-card__text--secondary {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}
.hero-porthole-card__text--title {
  margin: 0;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.hero-porthole-card__text--title--gold-background {
  line-height: 1.1rem;
}
.hero-porthole-card__link-container a {
  font-size: 0.9rem;
  color: white;
}
.hero-porthole-card__link-container a:hover {
  color: var(--primary);
}
.hero-porthole-card__link-container--gold-background a {
  color: var(--secondary);
  border-bottom: 1px solid white;
}
.hero-porthole-card__link-container--gold-background a:hover {
  color: white;
  border-bottom: 1px solid var(--secondary);
}
@media (max-width: 991px) {
  .hero-porthole-card__image-container {
    width: 350px;
    height: 350px;
  }
  .hero-porthole-card__text--title {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}
/* note:: Event Calendar Style Card */
.card-component.event-card {
  height: 310px;
  min-width: 250px;
  position: relative;
  border-right: none;
  margin-bottom: 20px;
}
.card-component__full-card-link .card-component__hover-effect-element {
  background-color: var(--light-grey);
  height: 310px;
  border-radius: 0;
}

.card-component__full-card-link .card-component__hover-effect-element {
  background-color: var(--light-grey);
  height: 310px;
  border-radius: 0;
}
.card-component__full-card-link
  .card-component__hover-effect-element
  .card-component__content {
  padding: 20px 10px;
}
.card-component__full-card-link .banner {
  height: 30px;
  background-color: var(--primary);
}
.card-component__full-card-link .banner p {
  font-family: var(--font-gill-sans-medium);
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.9rem;
  letter-spacing: 0.1rem;
}

.event-card__event-type-banner {
  height: 30px;
}
.event-card__event-type-banner p {
  font-family: var(--font-gill-sans-medium);
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.9rem;
  letter-spacing: 0.1rem;
}
.event-card__date {
  margin-top: 20px;
}
.event-card__event-type-banner--valuation {
  background-color: var(--primary);
}
.event-card__event-type-banner--visit {
  background-color: var(--tertiary);
}
.event-card__event-type-banner--fair {
  background-color: var(--secondary);
}

/* subSection:: Large Versions of the Auction Calendar Cards */

.card-component-list {
  /* position: relative; */
  border-bottom: 1px solid var(--primary);
  /* min-height: 300px; */
  /* padding: 0 12px 0 12px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.card-component-list__full-card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.card-component-list__full-card-link:hover .card-component__title--lot-number {
  color: var(--primary);
}
@media (max-width: 991px) {
  .card-component-list__full-card-link {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .card-component-list__butn-spacer {
    display: none;
  }
}
.card-component-list__image-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  padding: 16px;
  min-width: 243px;
}
.card-component-list__info-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 75%;
  flex: 0 1 75%;
  padding: 16px 16px 0;
  min-width: 300px;
}
.card-component-list__info-text {
  line-height: 1.4rem;
}
.card-component-list__butn-spacer {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  min-width: 243px;
}
.card-component-list__butn-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  /* margin-left: 25%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-component-list__butn-box {
  min-height: 48px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 75%;
  flex: 0 1 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card-component-list__butn-box > div {
  margin-right: 12px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
}
.card-component-list__butn-box > .butn__bid {
  min-width: 232px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
}
@media (max-width: 750px) {
  .card-component-list__image-container,
  .card-component-list__info-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding: 0;
  }
  .card-component-list__butn-box > div,
  .card-component-list__butn-box > .butn__bid {
    width: 100%;
    margin-top: 12px;
    margin-right: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .card-component-list__butn-box > .butn__bid {
    margin-bottom: 12px;
  }
}
/* END:: Card Components */
/*  */
/*  */
/*  */

/* START:: Custom Scrollbars */
.scrollbar-custom::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}
.scrollbar-custom::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 100vw;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.scrollbar-custom::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 100vw;
}

/* END:: Custom Scrollbars */
/*  */
/*  */
/*  */

/* START:: Forms */

/* START:: Label */
form input[type="text"] {
  font-family: var(--font-gill-sans-book);
}
.noon-form__label {
  font-family: var(--font-gill-sans-medium);
  letter-spacing: 0.1rem;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
.form-label {
  font-family: var(--font-gill-sans-medium);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}
/* END:: Label */
/*  */
/*  */
/*  */

/* START:: Text input */
.user-text-input {
  padding: 0;
}
.user-text-input--regular,
.user-text-input--large {
  font-family: var(--font-gill-sans-book);
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
}
.user-text-input--regular {
  height: 28px;
  font-size: 0.9rem;
}
.user-text-input--large {
  height: 48px;
  font-size: 1.5rem;
}
/* .user-text-input--small {
  height: 28px;
  font-size: 1rem;
} */
/* .user-text-input::-webkit-input-placeholder {
  text-align: center;
}
.user-text-input::-moz-placeholder {
  text-align: center;
}
.user-text-input:-ms-input-placeholder {
  text-align: center;
}
.user-text-input::-ms-input-placeholder {
  text-align: center;
}
.user-text-input::placeholder {
  text-align: center;
} */

/* END:: Text input */
/*  */
/*  */
/*  */
/* START:: Checkbox / Radio */
.radio {
  border-color: var(--primary);
}
.checkbox {
  /* border: 1px solid rgb(92, 184, 178);
  -webkit-box-shadow: 0 0 0 0.07rem rgb(92, 184, 178);
  box-shadow: 0 0 0 0.07rem rgb(92, 184, 178); needed for the border to display on IE11 */

  /* border: 1px solid white; */

  width: 0.7rem;
  height: 0.7rem;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
label.form-check-label {
  font-family: var(--font-gill-sans-book);
  font-size: 1rem;
}
.form-check-input:checked {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  -webkit-box-shadow: 0 0 0 0.07rem rgb(92, 184, 178);
  box-shadow: 0 0 0 0.07rem rgb(92, 184, 178); /* needed for the border to display on IE11 */
}
.form-check-input:checked[type="checkbox"] {
  background-image: none;
}
.form-check-input.checkbox[type="checkbox"] {
  border-top-left-radius: 0em;
  border-top-right-radius: 0em;
  border-bottom-right-radius: 0em;
  border-bottom-left-radius: 0em;
}

.sidebar__checkbox {
  line-height: 1.8;
}
.sidebar__checkbox-label {
  font-size: 0.8rem;
}
/* END:: Checkbox */
/*  */
/*  */
/*  */
/* START:: Form button */
.butn--form {
  border-radius: 12px;
  width: 100%;
}
/* END:: Form button */
/*  */
/*  */
/*  */

/* START:: Text area */
.noon-text-area {
  border-radius: 12px;
}
/* END:: Text area */
/*  */
/*  */
/*  */

/* note:: Form Error */
.form-error__container {
  padding: 25px 20px 10px;
  background-color: var(--gold);
}
.form-error__error-message {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.form-error__label-highlight {
  color: var(--gold);
}

/* note:: Grey Style Form */
.grey-style-form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.grey-style-form__top-text {
  margin-bottom: 12px;
}
.grey-style-form__top-text a {
  text-decoration: underline;
}
.grey-style-form
  .btn.dropdown-toggle.custom-dropdown__butn.pagination-top__dropdown {
  background-color: var(--light-grey);
  border-radius: 0;
  padding-right: 5px;
  /* padding-left: 12px; */
}
.grey-style-form .pagination-top__filter-text {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.grey-style-form .pagination-top__filter-box-image {
  width: 20px;
}
.grey-style-form .dropdown-label {
  width: 100%;
}
.grey-style-form .input-group-text {
  border: 0;
  background-color: var(--light-grey);
}
.grey-style-form select {
  background-color: var(--light-grey);
  font-family: var(--font-gill-sans-medium);
  text-transform: uppercase;
  height: 36px;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  background-image: url("../icons/arrow-down-verdigris-keyline.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.grey-style-form__select.form-control:focus {
  background-color: var(--light-grey);
}
/* .grey-style-form label {
  font-family: var(--font-gill-sans-medium);
  letter-spacing: 0.1rem;
  color: var(--primary);
  text-transform: uppercase;
} */
.grey-style-form__text-input {
  border-radius: 0;
  background-color: var(--light-grey);
  border: none;
}
.grey-style-form__text-input:focus {
  background-color: var(--light-grey);
}
.grey-style-form__submit {
  width: 50%;
}
/* END:: Forms */
/*  */
/*  */
/*  */
/* START:: Tables */
/* note:: Table needs to be inside a <div class="table-wrapper">. The parent of this table-wrapper div MAY need to have the .table-container class applied to it. */
table {
  width: 100%;
}
.table-container {
  overflow: hidden;
}
.table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}
thead {
  background-color: var(--light-grey);
  padding-left: 1rem;
}
thead tr th {
  color: var(--secondary);
}
th {
  color: white;
  font-family: var(--font-gill-sans-medium);
  font-size: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  padding: 5px 0;
  letter-spacing: 0.1rem;
}
tr:not(:last-child) {
  border-bottom: 1px solid var(--light-grey);
}
td {
  vertical-align: top;
  padding: 8px 0;
  letter-spacing: 0.1rem;
}
td .card-component__link-container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
td p {
  margin: 0;
}
th:first-child,
td:first-child {
  padding-left: 1rem;
  font-family: var(--font-gill-sans-book);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
td:first-child {
  color: var(--primary);
  font-family: var(--font-gill-sans-medium);
}
td:first-child p:first-child {
  color: var(--primary);
}
td:not(:first-child) {
  font-family: var(--font-gill-sans-book);
  text-transform: uppercase;
  /* padding: 5px 0 0 8px; */
  padding-left: 8px;
}
th:not(:first-child) {
  padding-left: 8px;
}
@media (max-width: 991px) {
  table {
    min-width: 800px;
  }
}
/* END:: Tables */
/*  */
/*  */
/*  */
/* START:::: Static image container */
/* note:: If a fixed height is required, it needs to be set individually */
/* note:: if the image is very large and is wider than the column it's in, a max-width:100% needs to be applied to the img e.g.: ."static-image-container img {max-width: 100%}" - or a smaller image should be supplied */
.static-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  width: 100%;
  height: 500px;
  background-color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.static-image-container--black {
  background-color: #000000;
}
.static-image-container--full-bleed {
  padding: 0;
}
.static-image-container--map {
  padding: 0;
  height: 500px;
}
.static-image-container img {
  max-width: 100%;
  max-height: 100%;
}
aside .static-image-container {
  height: auto;
}
/* END:::: Static image container */
/*  */
/* START:: Overflow Image Helper Classes */
.image-overlow--horizontal {
  width: auto;
  height: 100%;
  overflow-x: hidden;
}
.image-overlow--vertical {
  width: 100%;
  height: auto;
  overflow-y: hidden;
}
/* END:: Overflow Image Helper Classes */
/*  */
/*  */
/*  */
/* START:: Custom dropdown */
.custom-dropdown__butn {
  font-family: var(--font-gill-sans-medium);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 70%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 70%;
  flex: 0 1 70%;
  max-width: 500px;
  border-radius: 20px;
  text-align: center;
  color: var(--secondary);
  background: var(--light-grey);
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  height: 1.5rem;
  text-transform: uppercase;
  padding: 0 24px;
}
.custom-dropdown__butn,
.custom-dropdown__item {
  min-width: 200px;
}
.custom-dropdown__butn:hover,
.custom-dropdown__butn:focus {
  color: var(--secondary);
  opacity: 0.8;
}
.custom-dropdown__butn.dropdown-toggle::after {
  display: none;
}
/* .custom-dropdown__list {
  -webkit-transform: translate(0px, 15px) !important;
  -ms-transform: translate(0px, 15px) !important;
  transform: translate(0px, 15px) !important;
} */
.lists__butn-edit {
  float: right;
}
.create-list-form > input {
  text-transform: uppercase;
}
.dropdown-menu.custom-dropdown__list {
  /* z-index: 1; */
  z-index: 3;
  -webkit-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  width: 100%;
}
@media (max-width: 1000px) {
  .custom-dropdown__list {
    /* -webkit-transform: translate(0px, 32px) !important;
    -ms-transform: translate(0px, 32px) !important;
    transform: translate(0px, 32px) !important; */
    -webkit-transform: translate(0px, 32px);
    -ms-transform: translate(0px, 32px);
    transform: translate(0px, 32px);
  }
}
.custom-dropdown__item {
  background: var(--light-grey);
  padding: 0 5px;
}
.custom-dropdown__content-box {
  border-bottom: 2px solid white;
}
.custom-dropdown__content-box--final {
  border-bottom: 2px solid var(--light-grey);
  padding: 24px 0;
}
.custom-dropdown .form-check-input.checkbox {
  border: 1px solid white;
  -webkit-box-shadow: 0 0 0 0.07rem white;
  box-shadow: 0 0 0 0.07rem white; /* needed for the border to display on IE11 */
  cursor: pointer;
}
.custom-dropdown .form-check-input.checkbox:checked {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  -webkit-box-shadow: 0 0 0 0.07rem rgb(92, 184, 178);
  box-shadow: 0 0 0 0.07rem rgb(92, 184, 178); /* needed for the border to display on IE11 */
}
label.form-check-label.custom-dropdown__label {
  text-transform: uppercase;
  font-family: var(--font-gill-sans-book);
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 0;
  /* -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; */
  /* cursor: pointer; */
}
/* .custom-dropdown__label:hover,
.custom-dropdown__label:focus {
  color: var(--primary);
} */
.custom-dropdown__create-list {
  color: var(--primary);
  letter-spacing: 0.1rem;
}
.custom-dropdown__create-list-image {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
/* END:: Custom dropdown */
/*  */
/*  */
/*  */
/* START:: Custom list */
.custom-standalone-list {
  list-style: none;
  padding: 0;
}
.custom-standalone-list li:last-of-type div.custom-dropdown__content-box {
  border-bottom: 2px solid transparent;
}
/* END:: Custom list */
/*  */
/*  */
/*  */
/* START:: Transact Section - box format */
.transact-section--box-format {
  max-width: 500px;
}
.footer-buy.footer-buy--box-format,
.footer-sell.footer-sell--box-format {
  height: auto;
  min-height: 250px;
}
.footer-sell.footer-sell--box-format {
  margin-left: 0;
}
.footer-buy.footer-buy--box-format {
  margin-right: 0;
}
@media (max-width: 991px) {
  .footer-buy.footer-buy--box-format,
  .footer-sell.footer-sell--box-format {
    padding: 25px;
  }
}
/* END:: Transact Section - box format */
/*  */
/*  */
/*  */
/* START:: Print Mode Images Display */
.print-mode-images__container {
  display: none;
}
/* END:: Print Mode Images Display */
/*  */
/*  */
/*  */
/* START:: Carousels */

/* START:: nooncarousel */
.nooncarousel {
  /* margin-top: 10px; */
}
.splide__list .card-component {
  height: 100%;
}
/* note:: individual carousel heights and button placement */
.nooncarousel--auction-calendar {
  height: 651px;
}
.nooncarousel--auction-calendar div div button.splide__arrow--prev {
  top: 593px;
}
.nooncarousel--auction-calendar div div button.splide__arrow--next {
  top: 593px;
}
@media (max-width: 750px) {
  .nooncarousel--auction-calendar {
    height: 603px;
  }
}
.nooncarousel--trending-lots {
  height: 521px;
}
.nooncarousel--trending-lots div div button.splide__arrow--prev {
  top: 512px;
}
.nooncarousel--trending-lots div div button.splide__arrow--next {
  top: 512px;
}
@media (max-width: 750px) {
  .nooncarousel--trending-lots {
    height: 473px;
  }
}
.nooncarousel--auction-achievements {
  height: 439px;
}
.nooncarousel--auction-achievements div div button.splide__arrow--prev {
  top: 442px;
}
.nooncarousel--auction-achievements div div button.splide__arrow--next {
  top: 442px;
}
.nooncarousel--auction-achievements--gallery-type {
  height: 468px;
  margin-top: 28px;
  margin-bottom: 28px;
}
@media (max-width: 750px) {
  .nooncarousel--auction-achievements {
    height: 391px;
  }
  .nooncarousel--auction-achievements--gallery-type {
    height: 420px;
    margin-top: 28px;
    margin-bottom: 28px;
  }
}
.nooncarousel--news-and-events {
  margin-top: 32px;
  height: 441px;
}
.nooncarousel--news-and-events div div button.splide__arrow--prev {
  top: 448px;
}
.nooncarousel--news-and-events div div button.splide__arrow--next {
  top: 448px;
}
@media (max-width: 750px) {
  .nooncarousel--news-and-events {
    height: 393px;
  }
}
.nooncarousel--collective-expertise {
  height: 421px;
}
.nooncarousel--collective-expertise div div button.splide__arrow--prev {
  top: 404px;
}
.nooncarousel--collective-expertise div div button.splide__arrow--next {
  top: 404px;
}
@media (max-width: 750px) {
  .nooncarousel--collective-expertise {
    height: 373px;
  }
}
.nooncarousel--forthcoming-valuations {
  height: 465px;
}
.nooncarousel--forthcoming-valuations div div button.splide__arrow--prev {
  top: 450px;
}
.nooncarousel--forthcoming-valuations div div button.splide__arrow--next {
  top: 450px;
}
@media (max-width: 750px) {
  .nooncarousel--forthcoming-valuations {
    height: 417px;
  }
}
.nooncarousel--contact-experts {
  height: 457px;
}
.nooncarousel--contact-experts div div button.splide__arrow--prev {
  top: 404px;
}
.nooncarousel--contact-experts div div button.splide__arrow--next {
  top: 404px;
}
@media (max-width: 750px) {
  .nooncarousel--contact-experts {
    height: 362px;
  }
}
.nooncarousel--static-auction-achievements {
  height: 480px;
}
.nooncarousel--static-auction-achievements div div button.splide__arrow--prev {
  top: 455px;
}
.nooncarousel--static-auction-achievements div div button.splide__arrow--next {
  top: 455px;
}
@media (max-width: 750px) {
  .nooncarousel--static-auction-achievements {
    height: 432px;
  }
}
.nooncarousel--auction-highlights {
  height: 481px;
}
.nooncarousel--auction-highlights div div button.splide__arrow--prev {
  top: 480px;
}
.nooncarousel--auction-highlights div div button.splide__arrow--next {
  top: 480px;
}
/* @media (max-width: 750px) {
  .nooncarousel--auction-highlights {
    height: 392px;
  }
} */
.nooncarousel--special-collections {
  height: 440px;
}
.nooncarousel--special-collections div div button.splide__arrow--prev {
  top: 438px;
}
.nooncarousel--special-collections div div button.splide__arrow--next {
  top: 438px;
}
@media (max-width: 750px) {
  .nooncarousel--special-collections {
    height: 392px;
  }
}
.nooncarousel--departments {
  height: 360px;
}
.nooncarousel--departments div div button.splide__arrow--prev {
  top: 354px;
}
.nooncarousel--departments div div button.splide__arrow--next {
  top: 354px;
}
@media (max-width: 750px) {
  .nooncarousel--departments {
    height: 312px;
  }
}
.nooncarousel--directors div div button.splide__arrow--prev {
  top: 399px;
}
.nooncarousel--directors div div button.splide__arrow--next {
  top: 399px;
}
/* note:: moves all buttons towards the edge a little on mobiles to make room for the pagination bar */
@media (max-width: 991px) {
  .nooncarousel div div button.splide__arrow--prev {
    left: 5px;
  }
  .nooncarousel div div button.splide__arrow--next {
    right: 5px;
  }
}

.nooncarousel--hero {
  height: 535px;
}
.nooncarousel__link-container {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */

  /* max-width: 700px; */
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* margin: 0 auto 10px auto; */
  margin: 8px auto 18px auto;

  /* margin-bottom: 10px; */
}
.nooncarousel.nooncarousel--collective-expertise
  .nooncarousel__link-container
  .nooncarousel__link-box {
  margin-bottom: 0;
}
@media (max-width: 703px) {
  .nooncarousel.nooncarousel--auction-calendar .nooncarousel__link-container {
    max-width: 247px;
  }
  .nooncarousel.nooncarousel--auction-calendar
    .nooncarousel__link-container
    .nooncarousel__link-box
    .nooncarousel__link {
    font-size: 0.7rem;
  }
  .nooncarousel.nooncarousel--auction-calendar
    .nooncarousel__link-container
    .nooncarousel__link-box
    .card-component__dot--inline.card-component__dot--inline-link-container {
    display: none;
  }
}
.nooncarousel__link-box {
  display: inline-block;
}
/* @media (min-width: 992px) {
  .nooncarousel__link-box {
    margin-top: 12px;
    margin-bottom: 12px;
  }
} */

.nooncarousel__link {
  font-family: var(--font-gill-sans-book);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--tertiary);
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.nooncarousel__link:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--primary);
}
.nooncarousel__link.always-active {
  color: var(--secondary);
  border-bottom: 1px solid var(--primary);
}
@media (max-width: 767px) {
  .nooncarousel__link-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nooncarousel__link-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .nooncarousel__link-box:nth-child(odd) {
    text-align: right;
  }
}
@media (max-width: 650px) {
  .nooncarousel__link {
    font-size: 0.7rem;
    margin: 0 5px;
  }
  .nooncarousel__link-box .card-component__dot--inline {
    display: none;
  }
}
.nooncarousel__top-info-container {
  max-width: 700px;
  margin: 30px auto 48px;
}
@media (max-width: 991px) {
  .nooncarousel__top-info-container {
    display: none;
  }
}
.nooncarousel__top-info-text {
  font-family: var(--font-coinage-caps-kruger-gray);
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  margin: 10px 0;
  line-height: 1.5rem;
  word-wrap: break-word;
}
/* .nooncarousel__dot {
  width: 2px;
  margin: 0 10px;
} */
.nooncarousel__arrow-left,
.nooncarousel__arrow-right {
  width: 40px;
  height: 40px;
  display: none;
}
/* note:: Carousel Specific Styles */
/* note:: Auction Calendar */
.card-component--auction-calendar {
  min-height: 475px;
}
.card-component--auction-calendar .card-component__text--secondary {
  font-size: 0.9rem;
}
.card-component__text--secondary--auction-calendar {
  position: absolute;
  bottom: 34px;
  right: 0px;
}
.card-component__butn--auction-calendar {
  position: absolute;
  bottom: 0;
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.card-component .butn.card-component__butn--auction-calendar {
  width: 90%;
}
.card-component__link--auction-calendar {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.nooncarousel.nooncarousel--collective-expertise .card-component {
  height: 350px;
}
.collective-epertise__text-box {
  height: 125px;
  position: relative;
}
.collective-epertise__text-box .associate-align-bottom {
  position: absolute;
  bottom: 2px;
  left: 0;
}
/* Section:: carousel pagination bar */
.carousel__pagination-bar {
  background-color: var(--tertiary);
  width: 85%;
  height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .carousel__pagination-bar {
    width: 100%;
  }
  .splide__arrow.splide__arrow--prev {
    left: -62px;
  }
  .splide__arrow.splide__arrow--next {
    right: -62px;
  }
}
.carousel__pagination-bar li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.splide__pagination__page.carousel__pagination-indicator {
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background: var(--primary);
  margin: 0;
  -webkit-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  transform: translateY(-12px);
}
.splide__pagination__page.carousel__pagination-indicator.carousel__pagination-indicator:hover {
  background: var(--primary);
}
.splide__pagination__page.carousel__pagination-indicator.carousel__pagination-indicator:not(.is-active) {
  opacity: 0;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.splide__pagination__page.carousel__pagination-indicator.carousel__pagination-indicator.is-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .carousel__pagination-bar {
    width: 80%;
  }
}
@media (max-width: 750px) {
  .carousel__pagination-bar {
    width: 70%;
  }
}
/* subSection:: Carousel Pagination - type specific */

.nooncarousel--directors
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 415px;
  min-height: 415px;
}
.nooncarousel--news-and-events
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 465px;
  min-height: 465px;
}
.nooncarousel--news-and-events .card-component {
  height: 410px;
}
.nooncarousel--forthcoming-valuations
  .nooncarousel--news-and-events__card-address,
.nooncarousel--news-and-events .nooncarousel--news-and-events__card-address {
  font-size: 0.9rem;
}
.nooncarousel--auction-calendar
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 609px;
  min-height: 609px;
}
.nooncarousel--trending-lots
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 530px;
  min-height: 530px;
}
.nooncarousel--trending-lots .card-component {
  height: 470px;
}
.nooncarousel--auction-achievements
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 460px;
  min-height: 460px;
}
.nooncarousel--auction-achievements .card-component {
  height: 400px;
}
.nooncarousel--collective-expertise
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 420px;
  min-height: 420px;
}
.nooncarousel--collective-expertise .card-component {
  height: 470px;
}
.nooncarousel--departments
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 371px;
  min-height: 371px;
}
.nooncarousel.nooncarousel--auction-highlights
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 498px;
  min-height: 498px;
}
.nooncarousel.nooncarousel--special-collections
  .splide.splide--slide.splide--ltr.splide--draggable.is-active {
  height: 456px;
  min-height: 456px;
}
.nooncarousel--departments .card-component {
  /* height: 470px; */
}
/* END:: nooncarousel */
/*  */
/*  */
/*  */
/* DELETE:: */
/* body {
  background: rgba(165, 165, 165, 0.5);
  overflow-x: hidden;
  margin: 0;
} */

/* note:: Upload Valuation Sidebar */
.valuation-upload__text,
label.form-check-label.valuation-upload__text {
  font-family: var(--font-gill-sans-book);
  font-size: 0.8rem;
  letter-spacing: 0;
  margin: 0;
  line-height: 1rem;
}
.grey-style-form .form-label {
  margin-bottom: 0;
}
.valuation-upload__form {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.valuation-upload__form div {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.card-component-container--valuation-upload {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
input[type="file"] {
  display: none;
}
.valuation-upload__form div.valuation-upload__upload-file-input {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100px;
  flex: 0 1 100px;
}
.valuation-upload__upload-file-input label {
  background-color: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 120px;
  cursor: pointer;
}
.valuation-upload__upload-file-input img {
  width: 48px;
}
.valuation-upload__mailing-list-check input.form-check-input[type="checkbox"] {
  background-color: var(--light-grey);
  border: none;
  border-radius: 0;
}
.valuation-upload__mailing-list-check
  input.form-check-input[type="checkbox"]:checked {
  background-color: var(--primary);
}
label.form-check-label.valuation-upload__text {
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px);
}
.valuation-upload__submit-butn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 120px;
  flex: 0 1 120px;
  margin-top: 8px;
}

/* START:: Splide carousel */
/* note:: added this margin to compensate for the margin being removed from the body element which upset this element for some reason */
.splide {
  padding-top: 0;
  /* padding-bottom: 16px; */
  padding-bottom: 40px;
}
.splide:not(.splide--nav) {
  min-height: 350px;
  padding-left: 0;
  padding-right: 0;
}
.splide#fullSlideLinkDepartmentsPrimarySlider {
  min-height: 250px;
}
.splide#primary-slider {
  padding: 0;
}
.splide#secondary-slider {
  padding-top: 34px;
}
#primary-slider.splide__track {
  margin: 8px;
}

/* #splide01 > div.splide__arrows > button.splide__arrow.splide__arrow--next {
  -webkit-transform: translate(-20px, 160px);
  -ms-transform: translate(-20px, 160px);
  transform: translate(-20px, 160px);
}

#splide01 > div.splide__arrows > button.splide__arrow.splide__arrow--prev {
  -webkit-transform: translate(20px, 160px);
  -ms-transform: translate(20px, 160px);
  transform: translate(20px, 160px);
} */

/* .default-slide-text-box {
  border-top: 1px solid grey;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 0 100px;
} */

img.splide-thumb {
  /* max-width: 100%; */
  max-height: 100%;
}
/* .splide__arrow--prev {
  top: 505px;
  left: 5px;
} */
/* .splide__arrow--next {
  top: 505px;
  right: 5px;
} */
#frontPageHeroCarousel .splide__arrow--prev {
  top: 466px;
  left: 22px;
}

#frontPageHeroCarousel .splide__arrow--next {
  top: 466px;
  right: 22px;
}
@media (min-width: 992px) {
  #frontPageHeroCarousel .splide__arrow--prev {
    left: 25px;
  }
  #frontPageHeroCarousel .splide__arrow--next {
    right: 25px;
  }
}
@media (max-width: 991px) {
  #frontPageHeroCarousel .splide__arrow--prev {
    top: 438px;
  }
  #frontPageHeroCarousel .splide__arrow--next {
    top: 438px;
  }
}
@media (max-width: 750px) {
  #frontPageHeroCarousel .splide__arrow--prev {
    top: 370px;
    left: 10px;
    opacity: 0.2;
  }
  #frontPageHeroCarousel .splide__arrow--next {
    top: 370px;
    right: 10px;
    opacity: 0.2;
  }
}
/* .splide.splide-noonan-default {
  padding: 0;
} */

/* .splide__slide.NoonanDefaultCarousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  min-height: 500px;
} */

/* .splide__slide#primary-carousel {
  opacity: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  background-color: white;
  min-height: 300px;
} */

#primary-slider {
  padding-bottom: 0;
}
/* END:: Splide carousel */
/*  */
/*  */
/*  */

/* START:: Carousel Content Change */
/* .new-content-slide:nth-child(even) {
  background-color: darkseagreen;
}
.new-content-slide:nth-child(odd) {
  background-color: firebrick;
} */
/* END:: Carousel Content Change */
/*  */
/*  */
/*  */
/* END:: Carousels */
/*  */
/*  */
/*  */
/* END:: Base Component Styles */
/*  */
/*  */
/*  */
/* } */
/*  */
/* ie11: */
/* @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {   */
/* IE10+ specific styles go here */
/* } */

.vat-scheme {
  text-transform: none;
}

/* START:: Orbitvu / Orbittour */
.orbittour-wrapper {
  position: relative;
}
.orbittour__download-icon {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 531;
  cursor: pointer;
}
.orbitvu__modal-thumbnailWrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.orbitvu__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100px;
          flex: 0 1 100px;
  height: 100px;
  margin: 5px;
  border: 1px solid var(--tertiary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.orbitvu__thumb:hover {
  border: 1px solid var(--primary);
}
.orbitvu__thumb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  width: 100%;
  height: 100%;
}
a.orbittour-views_start_scroll,
a.orbittour-views_end_scroll {
  top: 25px !important;
  width: 30px !important;
  height: 30px !important;
}
@media screen and (max-width: 767px) {
  a.orbittour-views_start_scroll,
  a.orbittour-views_end_scroll {
    display: none !important;
  }
}
/* END:: Orbitvu / Orbittour */
/*  */
/*  */
/*  */
/* START:: Hidden Auto Click */
.hidden-autoclick {
  display: none;
}
/* END:: Hidden Auto Click */