/* Global Styles */
/* #region STYLES */
@font-face {
  font-family: 'Neutra Text Bold';
  src:
    local('Neutra Text Bold'),
    local('Neutra-Text-Bold'),
    url('../FONTS/Neutra_Text_Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Neutra Text Book Alt';
  src:
    local('Neutra Text Book Alt'),
    local('Neutra-Text-Book-Alt'),
    url('../FONTS/Neutra_Text_Book_Alt.otf') format('opentype');
}

.ff-neutra {
  font-family: 'Neutra Text Book Alt' !important;
  font-weight: normal;
  font-style: normal;
}

.ff-neutra-bold {
  font-family: 'Neutra Text Bold' !important;
  font-weight: normal;
  font-style: normal;
}

#search-input::placeholder {
  font-style: normal;
}

.search-result:hover img.icon {
  filter: invert(1);
}

.search-result:hover {
  color: var(--stc-white) !important;
  background-color: var(--stc-gold) !important;
}

.shadow-inset {
  box-shadow: inset 0 0 1rem rgba(0, 0, 0, 0.15) !important;
}

.outline-red {
  text-shadow: 0 0 2px var(--stc-red), 0 0 2px var(--stc-red), 0 0 2px var(--stc-red), 0 0 2px var(--stc-red), 0 0 2px var(--stc-red);
}

.slick-disabled {
  transform: translate3d(0px, 0px, 0px) !important;
}

#marquee {
  width: fit-content;
  animation: marquee 15s linear infinite;
  transform: translateX(calc(-100% / 5 + 100px));
}

@keyframes marquee {
  0% {
    transform: translateX(calc(-100% / 5 + 100px));
  }

  100% {
    transform: translateX(calc(-100% / 5 * 2 + 100px));
  }
}

/* #region PILLS */
[class*=stock-pill] {
  padding-left: 18px;
}

[class*=stock-pill]::before {
  content: "⬤";
  position: absolute;
  left: 0;
  margin-top: -2px;
}

.stock-pill-red::before {
  color: var(--stc-red);
}

.stock-pill-green::before {
  color: var(--stc-green);
}

.stock-pill-yellow::before {
  color: var(--stc-yellow);
}

/* #endregion PILLS */

/* #region SPINNER */
.spinner-small::before {
  content: "";
  display: inline-block;
  border: 5px solid var(--stc-white);
  border-radius: 50%;
  border-top: 5px solid var(--stc-gold);
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  box-shadow: 0 0 4px -2px black inset, 0 0 4px -2px black;
}

.spinner::before {
  content: "";
  display: block;
  border: 20px solid var(--stc-white);
  border-radius: 50%;
  border-top: 20px solid var(--stc-gold);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  box-shadow: 0 0 6px -2px black inset, 0 0 6px -2px black;
  margin-bottom: 1rem;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* #endregion SPINNER */

/* #endregion STYLES */

/* #region COLORS */
:root {
  --stc-silver-hs: 204, 8%;
  --stc-silver: hsl(var(--stc-silver-hs), 70%);
  --stc-gold-hs: 41, 55%;
  --stc-gold: hsl(var(--stc-gold-hs), 65%);
  --stc-white-hs: 0, 0%;
  --stc-white: hsl(var(--stc-white-hs), 100%);
  --stc-black-hs: 0, 0%;
  --stc-black: hsl(var(--stc-black-hs), 0%);
  --stc-blue-hs: 219, 95%;
  --stc-blue: hsl(var(--stc-blue-hs), 45%);
  --stc-cyan-hs: 178, 84%;
  --stc-cyan: hsl(var(--stc-cyan-hs), 43%);
  --stc-lime-hs: 76, 59%;
  --stc-lime: hsl(var(--stc-lime-hs), 51%);
  --stc-green-hs: 140, 100%;
  --stc-green: hsl(var(--stc-green-hs), 29%);
  --stc-red-hs: 6, 78%;
  --stc-red: hsl(var(--stc-red-hs), 57%);
  --stc-yellow-hs: 44, 75%;
  --stc-yellow: hsl(var(--stc-yellow-hs), 53%);
  --stc-orange-hs: 28, 80%;
  --stc-orange: hsl(var(--stc-orange-hs), 52%);
  --stc-purple-hs: 282, 44%;
  --stc-purple: hsl(var(--stc-purple-hs), 47%);
  --stc-pink-hs: 321, 96%;
  --stc-pink: hsl(var(--stc-pink-hs), 82%);
  --stc-charcoal-hs: 0, 0%;
  --stc-charcoal: hsl(var(--stc-charcoal-hs), 39%);
}

/* #region BACKGROUND */

.bg-darker-03 {
  background-color: rgba(0, 0, 0, 0.03);
}

.bg-darker-05 {
  background-color: rgba(0, 0, 0, 0.05);
}

.bg-darker-08 {
  background-color: rgba(0, 0, 0, 0.08);
}

.bg-darker-1 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-darker-2 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-darker-3 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-darker-4 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-darker-5 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-darker-6 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-darker-7 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-darker-8 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-darker-9 {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-darker-10 {
  background-color: rgba(0, 0, 0, 1);
}

.bg-gold {
  background-color: var(--stc-gold) !important;
}

.bg-white {
  background-color: var(--stc-white) !important;
  color: var(--stc-black);
}

.bg-black {
  background-color: var(--stc-black) !important;
}

.bg-silver {
  background-color: var(--stc-silver) !important;
}

.bg-blue {
  background-color: var(--stc-blue) !important;
}

.bg-cyan {
  background-color: var(--stc-cyan) !important;
}

.bg-lime {
  background-color: var(--stc-lime) !important;
}

.bg-green {
  background-color: var(--stc-green) !important;
}

.bg-red {
  background-color: var(--stc-red) !important;
}

.bg-yellow {
  background-color: var(--stc-yellow) !important;
}

.bg-orange {
  background-color: var(--stc-orange) !important;
}

.bg-purple {
  background-color: var(--stc-purple) !important;
}

.bg-pink {
  background-color: var(--stc-pink) !important;
}

.bg-silver {
  background-color: var(--stc-silver) !important;
}

.bg-charcoal {
  background-color: var(--stc-charcoal) !important;
}

/* #endregion BACKGROUND */

/* #region BUTTON */
[class*=btn] {
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s ease-in-out;
  text-align: center;
}

[role=button].disabled,
[class*=btn].disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-plus:hover,
.btn-minus:hover {
  background-color: white;
}

.btn-plus,
.btn-minus {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.btn-plus::after {
  content: "+";
  font-size: 25px;
  margin-top: -2px;
  pointer-events: none;
}

.btn-minus::after {
  content: "-";
  font-size: 30px;
  margin-top: -7px;
  pointer-events: none;
}

.btn-black {
  color: var(--stc-white);
  background-color: var(--stc-black);
}

.btn-white {
  color: var(--stc-black);
  background-color: var(--stc-white);
}

.btn-gold {
  color: var(--stc-white);
  background-color: var(--stc-gold);
}

.btn-silver {
  color: var(--stc-white);
  background-color: var(--stc-silver);
}

.btn-red {
  color: var(--stc-white);
  background-color: var(--stc-red);
}

.btn-green {
  color: var(--stc-white);
  background-color: var(--stc-green);
}


/* #endregion BUTTON */

/* #region HOVER */
[class*=btn]:not([class*=bg-]):not([class*=btn-]):hover,
[role=button]:not([class*=bg-]):not([class*=btn-]):hover {
  opacity: 0.6;
}

[role=button].text-gold:hover {
  color: var(--stc-gold);
}

.btn-silver:hover,
.btn.bg-silver:hover,
[role=button].bg-silver:hover {
  color: var(--stc-silver) !important;
  background-color: var(--stc-white) !important;
}

.btn-gold:hover,
.btn.bg-gold:hover,
[role=button].bg-gold:hover {
  color: var(--stc-gold) !important;
  background-color: var(--stc-white) !important;
}

.btn-black:hover,
.btn.bg-black:hover,
[role=button].bg-black:hover {
  color: var(--stc-black) !important;
  background-color: var(--stc-white) !important;
}

.btn-white:hover,
.btn.bg-white:hover,
[role=button].bg-white:hover {
  color: var(--stc-white) !important;
  background-color: var(--stc-black) !important;
}

.btn-green:hover,
.btn.bg-green:hover,
[role=button].bg-green:hover {
  color: var(--stc-green) !important;
  background-color: var(--stc-white) !important;
}

.btn-red:hover,
.btn.bg-red:hover,
[role=button].bg-red:hover {
  color: var(--stc-red) !important;
  background-color: var(--stc-white) !important;
}

.btn.bg-yellow:hover,
[role=button].bg-yellow:hover {
  color: var(--stc-yellow) !important;
  background-color: var(--stc-white) !important;
}

.dropdown-item:hover {
  background-color: hsl(var(--stc-white-hs), 80%);
}

.heading * {
  transition: all .2s;
}

.heading:hover .heading-title,
.heading:hover .heading-subtitle {
  opacity: 0;
}

.heading:hover img {
  filter: blur(0px) !important;
}

.hovered {
  animation: hint 1s steps(2, end) infinite;
}


@keyframes hint {
  100% {
    border: 5px solid var(--stc-gold);
  }

  0% {
    border: 1px solid var(--stc-gold);

  }
}

/* #endregion HOVER */

/* #region TEXT */

.text-darker-1 {
  color: rgba(0, 0, 0, 0.2);
}

.text-darker-2 {
  color: rgba(0, 0, 0, 0.4);
}

.text-darker-3 {
  color: rgba(0, 0, 0, 0.6);
}

.text-darker-4 {
  color: rgba(0, 0, 0, 0.8);
}

.text-darker-5 {
  color: rgba(0, 0, 0, 1);
}

.text-lighter-1 {
  color: rgba(255, 255, 255, 0.2);
}

.text-lighter-2 {
  color: rgba(255, 255, 255, 0.4);
}

.text-lighter-3 {
  color: rgba(255, 255, 255, 0.6);
}

.text-lighter-4 {
  color: rgba(255, 255, 255, 0.8);
}

.text-lighter-5 {
  color: rgba(255, 255, 255, 1);
}

.text-gold {
  color: var(--stc-gold) !important;
}

.text-white {
  color: var(--stc-white) !important;
}

.text-black {
  color: var(--stc-black) !important;
}

.text-silver {
  color: var(--stc-silver) !important;
}

.text-blue {
  color: var(--stc-blue) !important;
}

.text-cyan {
  color: var(--stc-cyan) !important;
}

.text-lime {
  color: var(--stc-lime) !important;
}

.text-green {
  color: var(--stc-green) !important;
}

.text-red {
  color: var(--stc-red) !important;
}

.text-yellow {
  color: var(--stc-yellow) !important;
}

.text-orange {
  color: var(--stc-orange) !important;
}

.text-purple {
  color: var(--stc-purple) !important;
}

.text-pink {
  color: var(--stc-pink) !important;
}

.text-silver {
  color: var(--stc-silver) !important;
}

.text-charcoal {
  color: var(--stc-charcoal) !important;
}

.text-transparent {
  color: transparent !important;
}

/* #endregion TEXT */

/* #region BORDER */

.border-gold {
  border-color: var(--stc-gold);
}

.border-white {
  border-color: var(--stc-white);
}

.border-black {
  border-color: var(--stc-black);
}

.border-silver {
  border-color: var(--stc-silver);
}

.border-blue {
  border-color: var(--stc-blue);
}

.border-cyan {
  border-color: var(--stc-cyan);
}

.border-lime {
  border-color: var(--stc-lime);
}

.border-green {
  border-color: var(--stc-green);
}

.border-red {
  border-color: var(--stc-red);
}

.border-yellow {
  border-color: var(--stc-yellow) !;
}

.border-orange {
  border-color: var(--stc-orange);
}

.border-purple {
  border-color: var(--stc-purple);
}

.border-pink {
  border-color: var(--stc-pink);
}

.border-silver {
  border-color: var(--stc-silver);
}

.border-charcoal {
  border-color: var(--stc-charcoal);
}

/* #endregion BORDER */

/* #endregion COLORS */

/* #region OVERRIDES */

/* #region ACCORDION */
.accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: var(--stc-white);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button.text-white::after,
.accordion-button.bg-black::after,
.accordion-button.bg-gold::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button.bg-gold:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d7b875'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button.text-black::after,
.accordion-button.bg-white::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* #endregion ACCORDION */

/* #region CAROUSEL */
.article-card .carousel-control-prev-icon {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.article-card .carousel-control-next-icon {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.article-card .carousel-indicators {
  opacity: 0;
}

.article-card .carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.article-card .carousel:hover .carousel-control-prev-icon,
.article-card .carousel:hover .carousel-control-next-icon,
.article-card .carousel:hover .carousel-indicators {
  opacity: 0.5;
}


@media (max-width: 767px) {
  .article-card .carousel-indicators {
    opacity: .5 !important;
  }

  .article-card [class*=carousel-control-]:not([class*=-icon]) {
    opacity: .5;
  }

  .article-card [class*=carousel-control-][class*=-icon] {
    opacity: .5;
  }
}

@media (min-width: 768px) {
  .article-card .carousel:hover .carousel-pills {
    opacity: 0;
  }

  .article-card [class*="carousel-control-"]:not([class*="-icon"]):hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

/* #endregion CAROUSEL */

/* #region SLICK */
.slick-next {
  right: -30px;
}

.slick-prev {
  left: -30px;
}

.slick-next,
.slick-prev {
  width: 30px;
  height: 30px;
}

.slick-next::before {
  content: "\f285";
}

.slick-prev::before {
  content: "\f284";
}

.slick-next::before,
.slick-prev::before {
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  transition: all .15s;
  color: var(--stc-black);
  font-size: 30px;
}

/* #endregion SLICK */

/* #region MODAL */
.modal-header {
  padding: .25rem 1rem .25rem 1rem;
}

.modal-body,
.modal-footer {
  padding: .5rem 1rem .5rem 1rem;
}

.modal-body p {
  overflow-wrap: break-word;
}

/* #endregion MODAL */

body {
  line-height: normal !important;
}

a {
  color: inherit;
  display: block;
}

p,
ul,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0 0;
  font-size: unset;
  font-weight: normal;
  line-height: 1;
}

*:not(u):not(.text-underline):not(del):not(.disabled) {
  text-decoration: none !important;
}

del {
  font-weight: normal;
}

*:focus-visible {
  outline: none;
}

dialog {
  border: 0 !important;
}

.form-check-input[type="checkbox"] {
  border: 1px solid rgba(0, 0, 0, .25);
}

.form-check-input[type="checkbox"]:checked,
.form-check-input[type="radio"]:checked {
  background-color: var(--stc-gold);
  border: 1px solid rgba(0, 0, 0, .1);
}

#search-button .fa-search::before {
  margin-left: 3px;
}



.page-link:focus,
.selectize-input.focus,
.form-select:focus,
.form-check-input:focus,
.form-control:focus,
.form-control:focus-visible {
  box-shadow: 0 0 0 .25rem hsla(var(--stc-gold-hs), 53%, 0.25) !important;
  border-color: var(--stc-gold) !important;
}

.page-item.active>.page-link,
.page-link.active {
  color: var(--stc-white) !important;
  background-color: var(--stc-gold);
  border-color: hsl(var(--stc-gold-hs), 55%);
}

.carousel-pills,
.carousel,
.carousel-inner,
.carousel-indicators,
.carousel-subtitle,
.carousel-title,
[class*="carousel-control-"],
.search-result,
.search-result img.icon,
.dropdown-item,
[role=button] {
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.typed-cursor {
  font-size: 40px;
  vertical-align: text-bottom;
}

#user-dropdown>.dropdown-toggle::after {
  margin-left: -5px;
  vertical-align: 8px;
}

header .nav-item:first-of-type>.nav-link {
  padding-left: 0;
}

header .nav-item:last-of-type>.nav-link {
  padding-right: 0;
}

#page table:not(.table),
#page table:not(.table)>tbody,
#page table:not(.table)>tbody>tr,
#page table:not(.table)>tbody>tr>td {
  display: block;
}

.table tr {
  vertical-align: middle;
}

::selection {
  color: var(--stc-white);
  background: var(--stc-gold);
}

colgroup col.bg-green {
  background-color: hsl(var(--stc-green-hs), 91%);
}

colgroup col.bg-yellow {
  background-color: hsl(var(--stc-yellow-hs), 91%);
}

.h-0 {
  height: 0;
}

/* #endregion OVERRIDES */