@charset "UTF-8";
:root {
  --sc-article-width: 800px;
  --sc-border-rounded: 7px;
  --sc-grid-gap: var(--sc-spacing-large);
  --sc-max-width: 1260px;
  --sc-color-golden: #ffab41;
  --sc-font-micro: 12px;
  --sc-max-width: 1260px;
  --sc-grid-gap: 1rem;
  --sc-notice-bar-bg: #e5eff5;
  --sc-notice-bar-color: rgb(0, 98, 154);
  --sc-footer-bg: var(--sc-shade-darkest);
  --sc-footer-color: var(--sc-shade-lightest);
  --sc-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  --sc-shadow-2: 0 4px 8px rgba(0, 0, 0, 0.08);
  --sc-shadow-3: 0 8px 24px rgba(0, 0, 0, 0.12);
  --sc-gap: var(--sc-spacing-small);
  --sc-color-red: #c20000;
  --sc-color-red-dark: #8f0000;
  --sc-shade-lightest: #f5f5f5;
  --sc-shade-lighter: #e6e6e6;
  --sc-shade-light: #b3b3b3;
  --sc-shade-neutral: #808080;
  --sc-shade-dark: #4d4d4d;
  --sc-shade-darkest: #373737;
  --sc-color-success-h: 114;
  --sc-color-success-s: 35%;
  --sc-color-success-h: 51%;
  --sc-color-success: #5FAD56;
  --sc-color-success-h: 29;
  --sc-color-success-s: 96%;
  --sc-color-success-h: 56%;
  --sc-color-warning: #FB8B24;
  --sc-footer-bg: #000000;
}

@media screen and (min-width: 768px) {
  :root {
    --sc-gap: var(--sc-spacing-base);
  }
}
* {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

h1 {
  font-family: var(--sc-font-family-secondary);
}

@media screen and (min-width: 992px) {
  .SC-ArticleCard_image {
    max-height: 450px;
    width: 100%;
  }
}
.SC-Article {
  font-size: var(--sc-font-medium);
  line-height: 1.7;
  max-width: var(--sc-article-width);
}

.SC-Article_data > span:not(:last-child)::after {
  position: absolute;
  content: "";
  background: var(--sc-shade-light);
  top: 7px;
  height: 35%;
  width: 1px;
  margin-left: 10px;
}

.SC-Article_hero_image, .SC-Article_placeholder {
  display: block;
  height: 350px;
}

@media screen and (min-width: 768px) {
  .SC-Article_hero_image, .SC-Article_placeholder {
    height: 450px;
  }
}
@media screen and (min-width: 1440px) {
  .SC-Article_hero_image, .SC-Article_placeholder {
    height: 550px;
  }
}
.SC-Article_hero_image img,
.SC-Article_hero_image svg, .SC-Article_placeholder img,
.SC-Article_placeholder svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.SC-Article_cta {
  display: block;
}

.SC-Article_cta_body {
  max-width: 600px;
}

.SC-Article_image {
  aspect-ratio: 1/1;
}

.SC-Article_image img,
.SC-Article_image svg {
  object-fit: cover;
  height: 100%;
}

.SC-BannerOverlay {
  background: #ffffff;
}

.SC-Breadcrumb_item::after {
  content: "•";
  font-size: 8px;
}

.SC-Breadcrumb_item a {
  font-size: 12px;
  text-transform: uppercase;
}

.sc-button {
  display: inline-block;
  position: relative;
  font-size: var(--sc-font-medium);
}

.sc-button-outline:hover {
  color: var(--sc-menu-link-color-hover);
}

.sc-button-outline:hover span::before,
.sc-button-outline:hover span::after {
  transform: scaleX(0);
  transition-delay: 0s;
}

.sc-button-outline:hover span::after {
  transform-origin: 0 50%;
}

.sc-button-outline span::before,
.sc-button-outline span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -2px;
  left: 0;
  background-color: currentColor;
  transition: 0.35s cubic-bezier(0.04, 0.11, 0.6, 0.97);
}

.sc-button_input {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: var(--sc-font-small);
}

.SC-CardGrid.is-offset-by-sidebar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 768px) {
  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1440px) {
  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.sc-cart {
  color: initial;
  z-index: 6;
  height: 100%;
  position: fixed;
  right: -380px;
  width: 380px;
  top: 0;
  transition: all 0.3s ease;
  max-width: calc(100% - 20px);
}

.sc-cart.is-active {
  right: 0;
  transition: all 0.3s ease;
}

.sc-cart.is-active + .sc-cart_overlay {
  position: fixed;
}

.sc-cart_header {
  display: flex;
  justify-content: space-between;
}

.sc-cart_header h3 {
  font-weight: 300;
}

.sc-cart_header_section {
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-cart_item img {
  max-width: 70px;
}

.sc-cart_total {
  position: relative;
  width: 100%;
  background-color: white;
}

.sc-cart_actions {
  display: flex;
  gap: 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto;
}

.sc-cart_button {
  display: inline-flex;
  justify-content: center;
  color: currentColor;
  font-size: 12px;
  height: 60px;
  letter-spacing: 0.2em;
  line-height: 60px;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.sc-cart_overlay {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.SC-Colour {
  background-color: var(--sc-shade-neutral);
  border-radius: 50%;
  display: block;
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 992px) {
  .SC-Count {
    top: unset;
  }
}
@media screen and (min-width: 992px) {
  .SC-Count {
    position: absolute;
    right: -15px;
    top: -5px;
  }
}
.SC-Field-special:not(.SC-Field-global) input {
  font-size: var(--sc-font-small);
}

.SC-Field-special:not(.SC-Field-global) svg {
  height: 13px;
}

.SC-Field_input-expanded {
  min-height: 60px;
}

@media screen and (min-width: 768px) {
  .SC-Field_input-expanded {
    font-size: 17px;
  }
}
#SC-GlobalSearch.SC-Field-icon input {
  padding-left: var(--sc-spacing-base);
}

#SC-GlobalSearch.SC-Field-icon svg {
  height: 18px;
  width: 18px;
  left: unset;
  right: var(--sc-spacing-base);
}

.SC-FeaturedCategories_header, .SC-FeaturedCategories_wrapper, .SC-FeaturedCategories_footer {
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  .SC-FeaturedCategories_header, .SC-FeaturedCategories_wrapper, .SC-FeaturedCategories_footer {
    max-width: calc(100% - 60px);
  }
}
.SC-FeaturedProducts_header, .SC-FeaturedProducts_wrapper, .SC-FeaturedProducts_footer {
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  .SC-FeaturedProducts_header, .SC-FeaturedProducts_wrapper, .SC-FeaturedProducts_footer {
    max-width: calc(100% - 60px);
  }
}
.sc-header {
  background-color: var(--sc-header-bg);
  color: var(--sc-header-color);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.sc-header .tier2.mega {
  padding-top: var(--sc-spacing-base);
}

.sc-header_inner {
  position: relative;
  top: 0;
  padding-left: var(--sc-spacing-small);
  padding-right: var(--sc-spacing-small);
}

@media screen and (min-width: 992px) {
  .sc-header_inner {
    padding-left: var(--sc-spacing-large);
    padding-right: var(--sc-spacing-large);
  }
}
@media screen and (min-width: 992px) {
  .sc-header_inner {
    border-bottom: 1px solid var(--sc-shade-lightest);
  }
}
.sc-header_inner.sticky {
  position: fixed !important;
  max-width: 100%;
  transition-duration: 1s;
  background: var(--sc-header-bg);
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}

.sc-header_inner.sticky .sc-cart {
  height: 100vh;
}

@media screen and (min-width: 992px) {
  .sc-header .tier2.mega {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}
.sc-image {
  width: 100%;
  height: 200px;
  background: rgb(247, 247, 247);
}

@media screen and (min-width: 992px) {
  .sc-image {
    height: 300px;
  }
}
.sc-image img,
.sc-image svg {
  object-fit: contain;
  width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 992px) {
  .SC-Menu.dropdown:not(.SC-Cart) {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    overflow-y: auto;
    padding: var(--sc-spacing-large);
    opacity: 0;
    pointer-events: none;
    background-color: white;
    z-index: var(--sc-depth-overlay);
    transform: scale(0.9);
    transition: 100ms transform ease, 100ms opacity ease;
  }
}
@media screen and (max-width: 992px) {
  .SC-Menu.dropdown.is-active {
    opacity: 1;
    pointer-events: inherit;
    transform: scale(1);
  }
}
@media screen and (max-width: 992px) {
  .SC-Menu.center {
    justify-content: start;
  }
}
.SC-PageBanner {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.SC-ProductCard_image {
  aspect-ratio: 1/1;
}

.SC-ProductCard_image img {
  object-fit: cover;
}

.SC-ProductCard_image_points {
  background-color: rgba(242, 242, 242, 0.7);
  margin-bottom: 0;
}

.SC-ProductCard_image_actions .SC-Button {
  font-size: var(--sc-font-base);
}

.SC-ProductCard_tag {
  font-size: var(--sc-font-small);
}

.SC-ProductCard_compare input {
  height: 20px;
  width: 20px;
  border-width: 2px;
  border-color: var(--sc-shade-dark);
}

.sc-review {
  display: grid;
}

.sc-review_wrapper {
  gap: var(--sc-spacing-base);
  padding: 50px;
  height: -webkit-fill-available;
  text-align: center;
}

.sc-review_rating svg {
  fill: var(--sc-color-golden);
}

.sc-review_message {
  font-style: italic;
}

.sc-search {
  background-color: var(--sc-header-bg);
  color: var(--sc-header-color);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
}

.sc-search:not(.is-active) {
  -webkit-animation: fadeOut 0.2s ease-out both;
  -moz-animation: fadeOut 0.2s ease-out both;
  animation: fadeOut 0.2s ease-out both;
}

.sc-search.is-active {
  background-color: var(--sc-header-bg);
  color: var(--sc-header-color);
  height: 100%;
  width: 100%;
  visibility: visible;
  z-index: var(--sc-depth-overlay);
  position: fixed;
  inset: 0;
  -webkit-animation: fadeIn 0.3s ease both;
  -moz-animation: fadeIn 0.3s ease both;
  animation: fadeIn 0.3s ease both;
}

@media screen and (min-width: 768px) {
  .sc-search_button svg {
    width: 30px;
    height: 30px;
  }
}
.sc-search_input {
  background: var(--sc-header-bg);
  color: var(--sc-header-color);
  border-bottom: 1px solid var(--sc-shade-light);
  height: 100%;
  width: 100%;
  padding: var(--sc-spacing-medium) var(--sc-spacing-base);
  z-index: var(--sc-depth-neutral);
}

.sc-search_input::placeholder {
  color: var(--sc-header-color);
  opacity: 0.9;
}

.sc-search_input + svg {
  fill: var(--sc-shade-light);
}

.SC-CategorySubcategories {
  font-size: var(--sc-font-small);
}

.SC-Tab_button {
  flex-grow: 2;
  padding: var(--sc-spacing-medium);
  text-align: center;
  box-shadow: 0 -1px 0 #eee inset;
  background-color: #f2f2f2;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
}

.SC-Tab_button.is-active {
  box-shadow: -1px 0 #fff inset;
  background-color: #ffffff;
}

.SC-TabPanel_body:not(.sc-hide) {
  border-top-width: 2px;
}

.SC-Traits_title h5 {
  color: var(--sc-shade-darkest);
  font-weight: var(--sc-font-bold);
  text-transform: initial;
  margin-bottom: var(--sc-spacing-tiny);
}

.sc-bg-primary {
  background-color: var(--sc-color-primary);
}

.sc-border-bottom-none {
  border-bottom: none;
}

.sc-color-white {
  color: white;
}

.sc-container-wrap {
  max-width: var(--sc-max-width);
  margin-left: auto;
  margin-right: auto;
}

.sc-h-100,
.sc-height-100 {
  height: 100%;
}

.sc-display-inline-flex {
  display: inline-flex;
}

@media screen and (min-width: 768px) {
  .sc-align-items-end-md {
    align-items: flex-end;
  }
}
.sc-font-400 {
  font-weight: 400;
}

.sc-font-500 {
  font-weight: 500;
}

.sc-font-micro {
  font-size: 12px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.sc-fit-cover {
  object-fit: cover;
  object-position: center;
}

.sc-fit-contain {
  object-fit: contain;
  object-position: center;
}

.sc-field-outline {
  border-radius: var(--sc-border-radius);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 0.25s ease-in-out;
}

.sc-field-outline:focus-within {
  outline-color: var(--sc-color-primary);
}

.sc-right-0 {
  right: 0;
}

@media screen and (max-width: 992px) {
  .sc-ps-small-sm {
    padding-left: var(--sc-spacing-small);
    padding-right: var(--sc-spacing-small);
  }
}
.sc-ml-auto {
  margin-left: auto;
}

.tns-controls button {
  background-color: transparent;
  transition: all 0.25s ease-in-out;
  width: 25px;
  height: 25px;
}

.tns-controls button:hover {
  background-color: transparent;
}

.tns-nav button {
  background: hsla(var(--sc-color-primary-h), var(--sc-color-primary-s), 92%, 1);
}

.tns-nav button.tns-nav-active {
  background: var(--sc-color-primary);
}

@media screen and (min-width: 768px) {
  .sc-text-right-md {
    text-align: right;
  }
}
.SC-Banner {
  background-position: center center;
}

@media only screen and (min-width: 768px) {
  .SC-Banner_container {
    min-height: 75vh;
  }
}
.sc-header_inner {
  border-bottom: none;
}

.tns-nav button.tns-nav-active {
  background: var(--sc-color-primary);
}

.sc-inline-flex {
  display: inline-flex;
}

.sc-grid {
  display: grid;
}

.sc-two-to-three-column {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sc-spacing-small);
}

@media screen and (min-width: 768px) {
  .sc-two-to-three-column {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-spacing-base);
  }
}
.sc-search.is-active {
  background-color: var(--sc-shade-lightest);
  color: var(--sc-shade-darkest);
}

.sc-search #SC-GlobalSearch {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

@media screen and (min-width: 768px) {
  .sc-search #SC-GlobalSearch input {
    font-size: var(--sc-font-large);
  }
}
.sc-card_image {
  width: 100%;
  height: 100%;
}

.sc-card_image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.sc-icon-no-fill svg {
  fill: none;
}

@media screen and (min-width: 992px) {
  .sc-width-auto-large-and-up {
    width: auto;
  }
}
.SC-CategoryCard_image {
  height: 100%;
  width: 100%;
}

.SC-CategoryCard_image img {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.SC-Button {
  transition-duration: 0.2s;
  transition-property: box-shadow, border-color, background-color, color, fill;
  transition-timing-function: ease-in;
}

.SC-Button:disabled {
  background-color: var(--sc-shade-lighter);
}

.SC-Button-primary,
.SC-Button-add {
  background-color: var(--sc-color-red);
}

.SC-Button-red {
  background-color: var(--sc-color-red);
  border: 1px solid var(--sc-color-red);
  color: #ffffff;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  text-decoration: none;
}

.SC-Button-red:hover,
.SC-Button-red:hover:not(:disabled),
.SC-Button-red:focus {
  transition-timing-function: ease-in;
  box-shadow: 0 0 0 3px rgba(143, 0, 0, 0.65);
  outline: 1px solid transparent;
  background-color: var(--sc-color-red-dark);
  border: 2px solid var(--sc-color-red-dark);
  color: #fff;
  text-decoration: none;
}

.SC-Button-red:disabled {
  border-color: transparent;
  outline: 2px solid var(--sc-shade-lighter);
}

.SC-Link {
  color: var(--sc-color-red);
}

@media screen and (min-width: 992px) {
  .SC-Menu.tier1.dropdown > .SC-Menu_item > .SC-Menu_link {
    min-height: 89px;
    align-items: center;
  }
}
.SC-ExpressCheckoutForProduct {
  margin-top: 0;
}

.sc-grid-table {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 2.5fr 0.5fr;
  border-top: 1px solid var(--sc-shade-lightest);
  border-right: 1px solid var(--sc-shade-lightest);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background: linear-gradient(to bottom, #fff, #fcfcfc);
}

.sc-grid-table_item {
  font-size: 12px;
  padding: var(--sc-spacing-tiny) var(--sc-spacing-small);
  border-left: 1px solid var(--sc-shade-lightest);
  border-bottom: 1px solid var(--sc-shade-lightest);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .sc-grid-table_item {
    font-size: var(--sc-font-tiny);
  }
}
.sc-grid-table_item .SC-Field_select {
  background-position-x: calc(100% - var(--sc-spacing-small));
  background-size: 9px;
  height: 34px;
  padding-right: var(--sc-spacing-medium);
}

.sc-grid-table_item .SC-Field_select:disabled {
  background: var(--sc-shade-lightest);
}

.sc-grid-updates {
  position: absolute;
  top: -70px;
  right: 0;
}

.SC-AddToCart_notice {
  position: absolute;
  top: -70px;
  right: 0;
}

.sc-grid-updates .SC-Notice,
.SC-AddToCart_notice .SC-Notice {
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: var(--sc-spacing-medium) var(--sc-spacing-base);
}

.SC-Notice-alert {
  color: hsla(var(--sc-color-error-h), var(--sc-color-error-s), var(--sc-color-error-l), 1);
  border-left: 4px solid var(--sc-color-error);
}

.SC-Notice-success {
  color: hsla(var(--sc-color-success-h), var(--sc-color-success-s), var(--sc-color-success-l), 1);
  border-left: 4px solid var(--sc-color-success);
}

.SC-Notice-warning {
  color: hsla(var(--sc-color-warning-h), var(--sc-color-warning-s), var(--sc-color-warning-l), 1);
  border-left: 4px solid var(--sc-color-warning);
}

.SC-Notice.slide-in {
  animation: slideInRight 0.4s ease-out forwards;
}

.SC-Notice.slide-out {
  animation: slideOutRight 0.4s ease-in forwards;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  60% {
    transform: translateX(20px);
    opacity: 1;
  }
  80% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.SC-Button svg {
  fill: transparent;
}

.SC-Field p {
  margin-bottom: var(--sc-spacing-small);
}
.SC-Field-border {
  border-width: 2px;
}
.SC-Field-compact {
  align-self: flex-start;
}
.SC-Field_label {
  font-weight: var(--sc-font-bold);
  position: relative;
}
.SC-Field_code {
  font-weight: var(--sc-font-bold);
  text-transform: uppercase;
  padding: 10px 20px;
  border-right: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  min-width: 150px;
  border-top-left-radius: var(--sc-border-radius);
  border-bottom-left-radius: var(--sc-border-radius);
  transition: all 0.25s ease-in-out;
}

#SC-FilterByKeyword.SC-Field-special input {
  width: 100%;
}

#SC-FilterByKeyword.SC-Field-special input:not(:focus) {
  background-color: var(--sc-shade-lighter);
}

[data-filters-trigger] svg {
  fill: currentColor;
}

.SC-Loader {
  background-color: transparent;
}

@media screen and (max-width: 992px) {
  .SC-Menu.dropdown:not(.SC-Cart) {
    background-color: #000000;
  }
}
@media screen and (max-width: 992px) {
  .SC-Menu_item.subtle, .SC-Menu_item.tier2:not(.parent) > a, .SC-Menu_item.tier3:not(.parent) > a {
    --sc-menu-link-color-resting: #ffffff;
    opacity: 1;
  }
}

.SC-ProductCategoryIntroduction {
  background-color: white;
  padding: var(--sc-spacing-medium);
  margin-bottom: var(--sc-spacing-medium);
  box-shadow: var(--sc-shadow);
}

.SC-ProductImages_main {
  flex-grow: initial;
}

.SC-ProductCard_image {
  aspect-ratio: auto;
}

.SC-QuantityPicker_trigger {
  border: none;
}
.SC-QuantityPicker_trigger:disabled {
  background: var(--sc-shade-lighter);
  border: none;
  box-shadow: none;
  color: var(--sc-shade-neutral);
  cursor: not-allowed;
}
.SC-QuantityPicker ul {
  border: none;
}

.SC-Slideshow {
  margin-bottom: 0;
}

.SC-ToolTip {
  position: absolute;
  top: -10px;
  background: white;
  padding: 5px 10px;
  box-shadow: var(--sc-shadow);
  color: red;
  font-size: 13px;
  border-radius: 4px;
  transition: opacity 0.15s ease-in-out;
  opacity: 1;
}
.SC-ToolTip::after {
  content: "";
  position: absolute;
  top: 100%;
  border-width: 4px;
  border-style: solid;
  border-color: white transparent transparent transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.SC-ToolTip:not(.right):not(.center)::after {
  left: 10px;
}
.SC-ToolTip.right {
  right: 0;
}
.SC-ToolTip.right::after {
  right: 10px;
}
.SC-ToolTip.left {
  left: 0;
}
.SC-ToolTip.left::after {
  left: 10px;
}
.SC-ToolTip.center {
  left: 50%;
  transform: translateX(-50%);
}
.SC-ToolTip.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.SC-ToolTip.hidden {
  z-index: var(--sc-depth-background);
  opacity: 0;
}

/*# sourceMappingURL=theme-supplement.css.map */
