@charset "UTF-8";
/*
  #0A0A0A [Black]
  - Standard color for object, use when in doubt
  - All text aside from Stock messaging
  - Buy path buttons
*/
/*
  #FFFFFF [White]
  - Use when you want a section to stand out from the background
  - Do not use for text unless on a Black or 50% Black background
*/
/* $color-f6f0ed [Beige] - Sitewide background color */
/*
  #EDE3DE [Dark Beige]
  Use when you want to seperate something from the background without being as intense as White, creatign a more "soft" container
  Use for when the component shouldn't compete with the White containers for the user's attention
*/
/*
  $color-848484 [50% Black]
  - Use when Black is too bold
  - Use to differentiate between the different states of a component
*/
/* $color-cecece [25% Black] - Should be used for graphical elements only */
/* #C70000 [Red] - Use for error messaging */
/* $color-117c91 [Blue] - Use for stock messaging */
/* $color-ff4f6a [Hot Pink] - Use for promotional messaging */
/*
  #FFE75F [Yellow]
  - Use sparingly for situations where many colors are needed to differentiate between items, as part of a set.
  - Do not use by itself
*/
/*
  #FF8C3F [Orange]
  - Use sparingly for situations where many colors are needed to differentiate between items, as part of a set
  - Do not use by itself
*/
/*
  #308215 [Green]
  - Under consideration
  - Use for success messaging
*/
/* ================================================= */
.font-weight-semibold {
  font-weight: 600 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

@font-face {
  font-family: "store_norske_tangobold";
  src: url("../fonts/tangosn-bold-webfont.eot");
  src: url("../fonts/tangosn-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/tangosn-bold-webfont.woff2") format("woff2"), url("../fonts/tangosn-bold-webfont.woff") format("woff"), url("../fonts/tangosn-bold-webfont.ttf") format("truetype"), url("../fonts/tangosn-bold-webfont.svg#store_norske_tangobold") format("svg");
  font-weight: 400;
  font-style: normal;
}
html {
  font-family: var(--font-family-sans-serif);
}

h1 {
  font-family: "niveau-grotesk";
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
  color: #0A0A0A;
}

.table-success th,
.table-success td,
.table-success thead th {
  border-color: #308215;
}

.table-info th,
.table-info td,
.table-info thead th {
  border-color: #117c91;
}

.table-warning th,
.table-warning td,
.table-warning thead th {
  border-color: #ffe75f;
}

.table-light th,
.table-light td,
.table-light thead th {
  border-color: #ffffff;
}

.form-control {
  height: calc(1.5em + 0.75rem + 2px);
  font-weight: 400;
}

.form-check-input [disabled] ~ .form-check-label {
  color: #6c757d;
}

.btn {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  background-color: #ffffff;
  text-transform: capitalize;
}
.btn:hover {
  color: #0A0A0A;
}
.btn-primary.disabled {
  color: #ffffff;
  background-color: rgba(10, 10, 10, 0.5);
  border-color: rgba(10, 10, 10, 0.5);
}
.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  box-shadow: 0 0 0 0.2rem rgba(10, 10, 10, 0.7);
}

.btn-secondary {
  background-color: #0A0A0A;
  border-color: #0A0A0A;
}
.btn-secondary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary:focus, .btn-secondary:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-secondary.disabled {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-secondary:not(:disabled):not(.disabled):active {
  color: #ffffff;
  background-color: rgba(10, 10, 10, 0.7);
  border-color: rgba(10, 10, 10, 0.7);
}

.dropdown-toggle {
  white-space: nowrap;
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

/*--------------------
  Colors
--------------------*/
.light-bg {
  background-color: #f6f0ed !important;
}

.gray-bg {
  background-color: #ede3de !important;
}

.black-bg {
  background-color: #0a0a0a !important;
}

.white-bg {
  background-color: #ffffff !important;
}

.red-bg {
  background-color: #ff4f6a !important;
}

.urgency-bg {
  background-color: #ff2835 !important;
}

.metallic-bg {
  background-color: #4d5459 !important;
}

.blue-bg {
  background-color: #117c91 !important;
}

.green-bg {
  background-color: #3c5a32 !important;
}

.yellow-bg {
  background-color: #ffe75f !important;
}

.y-orange-bg {
  background-color: #ffd288 !important;
}

.orange-bg {
  background-color: #ff8c3f !important;
}

.drk-blue-bg {
  background-color: #051C2B !important;
}

.drk-green-bg {
  background-color: #0a0a0a !important;
}

.maroon-bg {
  background-color: #35120e !important;
}

.light-txt {
  color: #f6f0ed !important;
}

.gray-txt {
  color: #ede3de !important;
}

.black-txt {
  color: #0a0a0a !important;
}

.white-txt {
  color: #ffffff !important;
}

.red-txt {
  color: #ff4f6a !important;
}

.urgency-txt {
  color: #ff2835 !important;
}

.metallic-txt {
  color: #4d5459 !important;
}

.blue-txt {
  color: #117c91 !important;
}

.green-txt {
  color: #3c5a32 !important;
}

.yellow-txt {
  color: #ffe75f !important;
}

.y-orange-txt {
  color: #ffd288 !important;
}

.orange-txt {
  color: #ff8c3f !important;
}

.watermelon-txt {
  color: #ff585d !important;
}

.drk-blue-txt {
  color: #051C2B !important;
}

.drk-green-txt {
  color: #0a0a0a !important;
}

.maroon-txt {
  color: #35120e !important;
}

.dark-blush-txt {
  color: #ede3de !important;
}

.light-blush-txt {
  color: #f9f4f2 !important;
}

.white-txt {
  color: #ffffff !important;
}

.beige-txt {
  color: #f6f0ed !important;
}

.metallic-grey-txt {
  color: #425563 !important;
}

.yellow-orange-txt {
  color: #FDD086 !important;
}

.dark-blue-txt {
  color: #051C2B !important;
}

.dark-green-txt {
  color: #282B21 !important;
}

.dark-maroon-txt {
  color: #35120E !important;
}

.neutral-txt {
  color: #EDE3DE !important;
}

.dark-beige-txt {
  color: #f6f0ed !important;
}

.light-beige-txt {
  color: #f9f4f2 !important;
}

.black-grad {
  background-image: linear-gradient(132deg, rgba(10, 10, 10, 0) 0%, #0a0a0a 100%);
}

.white-gradient {
  background-image: linear-gradient(132deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.85) 100%);
}

.blue-gradient {
  background-image: linear-gradient(132deg, rgba(29, 130, 150, 0.35) 0%, rgba(29, 130, 150, 0) 5%, rgba(29, 130, 150, 0) 80%, rgba(29, 130, 150, 0.85) 100%);
}

.dark-blue-gradient {
  background-image: linear-gradient(132deg, rgba(66, 85, 99, 0.5) 0%, rgba(66, 85, 99, 0) 5%, rgba(66, 85, 99, 0) 80%, rgb(66, 85, 99) 100%);
}

.swt-metallic-gray-bg {
  background-color: #051C2B !important;
}

.swt-gray-bg {
  background-color: #ede3de !important;
}

.swt-blue-bg {
  background-color: #1D8296 !important;
}

.swt-green-bg {
  background-color: #36573B !important;
}

.swt-yellow-bg {
  background-color: #F6EB61 !important;
}

.swt-yellow-orange-bg {
  background-color: #FDD086 !important;
}

.swt-red-bg {
  background-color: #ff585d !important;
}

.swt-dark-blue-bg {
  background-color: #051C2B !important;
}

.swt-dark-green-bg {
  background-color: #282b21 !important;
}

.swt-dark-maroon-bg {
  background-color: #35120e !important;
}

.swt-dark-blush-bg {
  background-color: #ede3de !important;
}

.swt-light-blush-bg {
  background-color: #f9f4f2 !important;
}

.swt-white-bg {
  background-color: #ffffff !important;
}

.swt-beige-bg {
  background-color: #f6f0ed !important;
}

.swt-orange-bg {
  background: #FF8A3D !important;
}

.swt-black-bg {
  background: #101820 !important;
}

.swt-metallic-grey-bg {
  background: #425563 !important;
}

.swt-neutral-bg {
  background: #ede3de !important;
}

.swt-dark-beige-bg {
  background: #f6f0ed !important;
}

.swt-light-beige-bg {
  background: #f9f4f2 !important;
}

.super-wide {
  font-size: 16px;
  line-height: normal;
  background: #f9f4f2;
}
.super-wide img {
  vertical-align: baseline;
}
.super-wide h1,
.super-wide h2,
.super-wide h3,
.super-wide h4,
.super-wide h5 {
  font-weight: 500;
}
.super-wide h1.large,
.super-wide h2.large,
.super-wide h3.large,
.super-wide h4.large,
.super-wide h5.large {
  font-size: 200%;
}
.super-wide h1 {
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}
.super-wide h2 {
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  font-size: calc(32px + 0.390625vw);
  text-align: center;
}
.super-wide h3 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.super-wide h4 {
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
.super-wide h5 {
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
.super-wide h3 {
  font-size: 20px;
  margin: 0 0 7px;
}
.super-wide p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 1em;
  margin-bottom: 1em;
}

.super-wide h1,
.super-wide h2,
.super-wide h3,
.lu-rebrand h1,
.lu-rebrand h2,
.lu-rebrand h3 {
  font-family: "store_norske_tangobold", "niveau-grotesk", Arial, sans-serif;
  line-height: 1.1 !important;
}
.super-wide a,
.lu-rebrand a {
  text-decoration: none;
  font-weight: 500;
}
.super-wide a,
.super-wide a:hover,
.lu-rebrand a,
.lu-rebrand a:hover {
  color: #0a0a0a;
}
.super-wide a:hover span,
.super-wide a:hover div,
.super-wide a:hover p,
.lu-rebrand a:hover span,
.lu-rebrand a:hover div,
.lu-rebrand a:hover p {
  text-decoration: underline;
}
.super-wide a:hover h1,
.super-wide a:hover h2,
.super-wide a:hover h3,
.super-wide a:hover h4,
.super-wide a:hover h5,
.lu-rebrand a:hover h1,
.lu-rebrand a:hover h2,
.lu-rebrand a:hover h3,
.lu-rebrand a:hover h4,
.lu-rebrand a:hover h5 {
  text-decoration: none;
}

.rule-bottom {
  border-bottom: 1px solid #0A0A0A;
  padding: 7px 0 12px;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.txt-double {
  font-size: 200% !important;
}

.txt-1_5 {
  font-size: 150% !important;
}

.txt-42 {
  font-size: 42px !important;
}

.txt-38 {
  font-size: 38px !important;
}

.txt-36 {
  font-size: 36px !important;
}

.txt-30 {
  font-size: 30px !important;
}

.txt-24 {
  font-size: 24px !important;
}

.txt-20 {
  font-size: 20px !important;
}

.txt-18 {
  font-size: 18px !important;
}

.txt-16 {
  font-size: 16px !important;
}

.super-wide {
  width: 100%;
  position: relative;
}
.super-wide .cta {
  overflow-wrap: break-word;
}

.width-10 {
  width: calc(10% - 7.5px) !important;
}

.width-25 {
  width: calc(25% - 7.5px) !important;
}

.width-20 {
  width: calc(20% - 7.5px) !important;
}

.width-30 {
  width: calc(30% - 7.5px) !important;
}

.width-33 {
  width: calc(33.3% - 7.5px) !important;
}

.width-40 {
  width: calc(40% - 7.5px) !important;
}

.width-50 {
  width: calc(50% - 7.5px) !important;
}

.width-60 {
  width: calc(60% - 7.5px) !important;
}

.width-66 {
  width: calc(66% - 7.5px) !important;
}

.width-70 {
  width: calc(70% - 7.5px) !important;
}

.width-75 {
  width: calc(75% - 7.5px) !important;
}

.width-80 {
  width: calc(80% - 7.5px) !important;
}

.width-90 {
  width: calc(90% - 7.5px) !important;
}

.width-100 {
  width: 100% !important;
}

@media (min-width: 768px) {
  .mobileOnly {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobileNo {
    display: none;
  }
}
.padv-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padh-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.padv-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padh-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.border-black {
  border: 1px solid #0a0a0a;
}

.m-top-20 {
  margin-top: 20px;
}

.fill {
  width: 100%;
  height: 100%;
  display: block;
}

.gbl-promo-bar {
  background-color: #ede3de;
  width: 100%;
  min-height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
@media (max-width: 1215.98px) {
  .gbl-promo-bar {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .gbl-promo-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.gbl-promo-bar span {
  margin: 0 5px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .gbl-promo-bar span {
    margin: 0 1.5px;
  }
}
.gbl-promo-bar .gbl-promo-bar__headline {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1023.75px) {
  .gbl-promo-bar .gbl-promo-bar__headline {
    display: inline;
  }
}
@media (max-width: 767px) {
  .gbl-promo-bar .gbl-promo-bar__headline {
    font-size: 15px;
  }
}
.gbl-promo-bar .gbl-promo-bar__savings {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 1023.75px) {
  .gbl-promo-bar .gbl-promo-bar__savings {
    display: inline;
  }
}
@media (max-width: 767px) {
  .gbl-promo-bar .gbl-promo-bar__savings {
    font-size: 15px;
  }
}
.gbl-promo-bar .gbl-promo-bar__time {
  font-weight: 300;
  font-size: 16px;
}
@media (max-width: 767px) {
  .gbl-promo-bar .gbl-promo-bar__time {
    display: none;
  }
}
.gbl-promo-bar .gbl-promo-bar__button {
  color: #ff8c3f;
  font-weight: 500;
  border-width: 0;
  font-size: 18px;
}
@media (max-width: 1023.75px) {
  .gbl-promo-bar .gbl-promo-bar__button {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .gbl-promo-bar .gbl-promo-bar__button {
    display: none;
  }
}
.gbl-promo-bar > a {
  display: block;
  text-align: center;
}
.gbl-promo-bar > a:hover {
  text-decoration: none;
}
.gbl-promo-bar > a:hover span {
  text-decoration: none;
}
.gbl-promo-bar > a:hover .gbl-promo-bar__button {
  text-decoration: underline;
}
@media (max-width: 1600px) {
  .gbl-promo-bar.pb-tall {
    min-height: 50px;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar.pb-tall {
    min-height: 50px;
  }
}
@media (max-width: 1600px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__headline {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__headline {
    font-size: 26px;
  }
}
@media (max-width: 1600px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__savings {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__savings {
    font-size: 22px;
  }
}
@media (max-width: 1600px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__time {
    font-weight: 400;
  }
}
@media (max-width: 1600px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__button {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar.pb-tall .gbl-promo-bar__button {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .gbl-promo-bar a:after {
    content: "»";
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #ff8c3f;
    margin-top: -6px;
  }
  .gbl-promo-bar a br.mobileOnly {
    display: none !important;
  }
}

.pt_storefront .gbl-promo-bar.pb-tall {
  min-height: 90px;
}
.pt_storefront .gbl-promo-bar.pb-tall .gbl-promo-bar__headline {
  font-size: 32px;
  font-weight: 400;
}
.pt_storefront .gbl-promo-bar.pb-tall .gbl-promo-bar__savings {
  font-weight: 600;
  font-size: 32px;
}
.pt_storefront .gbl-promo-bar.pb-tall .gbl-promo-bar__time {
  font-weight: 300;
  font-size: 23px;
}
.pt_storefront .gbl-promo-bar.pb-tall .gbl-promo-bar__button {
  font-size: 24px;
  font-weight: 500;
}

.gbl-promotion {
  background-color: #ede3de;
}
.gbl-promotion[promo-bar-color=green], .gbl-promotion[promo-bar-color=blue], .gbl-promotion[promo-bar-color=red], .gbl-promotion[promo-bar-color=black], .gbl-promotion[promo-bar-color=dark-green], .gbl-promotion[promo-bar-color=dark-blue], .gbl-promotion[promo-bar-color=maroon], .gbl-promotion[promo-bar-color=metallic-gray] {
  color: #ffffff;
}
.gbl-promotion[promo-bar-color=green] a,
.gbl-promotion[promo-bar-color=green] a:hover, .gbl-promotion[promo-bar-color=blue] a,
.gbl-promotion[promo-bar-color=blue] a:hover, .gbl-promotion[promo-bar-color=red] a,
.gbl-promotion[promo-bar-color=red] a:hover, .gbl-promotion[promo-bar-color=black] a,
.gbl-promotion[promo-bar-color=black] a:hover, .gbl-promotion[promo-bar-color=dark-green] a,
.gbl-promotion[promo-bar-color=dark-green] a:hover, .gbl-promotion[promo-bar-color=dark-blue] a,
.gbl-promotion[promo-bar-color=dark-blue] a:hover, .gbl-promotion[promo-bar-color=maroon] a,
.gbl-promotion[promo-bar-color=maroon] a:hover, .gbl-promotion[promo-bar-color=metallic-gray] a,
.gbl-promotion[promo-bar-color=metallic-gray] a:hover {
  color: #ffffff;
}
.gbl-promotion[promo-bar-color=default], .gbl-promotion[promo-bar-color=white], .gbl-promotion[promo-bar-color=yellow], .gbl-promotion[promo-bar-color=yellow-orange] {
  color: #0a0a0a;
}
.gbl-promotion[promo-bar-color=default] a,
.gbl-promotion[promo-bar-color=default] a:hover, .gbl-promotion[promo-bar-color=white] a,
.gbl-promotion[promo-bar-color=white] a:hover, .gbl-promotion[promo-bar-color=yellow] a,
.gbl-promotion[promo-bar-color=yellow] a:hover, .gbl-promotion[promo-bar-color=yellow-orange] a,
.gbl-promotion[promo-bar-color=yellow-orange] a:hover {
  color: #0a0a0a;
}
.gbl-promotion[promo-bar-color=default] .gbl-promo-bar--2-wide:first-child:after, .gbl-promotion[promo-bar-color=white] .gbl-promo-bar--2-wide:first-child:after, .gbl-promotion[promo-bar-color=yellow] .gbl-promo-bar--2-wide:first-child:after, .gbl-promotion[promo-bar-color=yellow-orange] .gbl-promo-bar--2-wide:first-child:after {
  background-color: #0a0a0a;
}
.gbl-promotion[promo-bar-color=green] {
  background-color: #3c5a32;
}
.gbl-promotion[promo-bar-color=dark-green] {
  background-color: #282b21;
}
.gbl-promotion[promo-bar-color=blue] {
  background-color: #117c91;
}
.gbl-promotion[promo-bar-color=dark-blue] {
  background-color: #051C2B;
}
.gbl-promotion[promo-bar-color=black] {
  background: #0a0a0a;
}
.gbl-promotion[promo-bar-color=white] {
  background-color: #f6f0ed;
}
.gbl-promotion[promo-bar-color=metallic-gray] {
  background-color: #4d5459;
}
.gbl-promotion[promo-bar-color=maroon] {
  background-color: #35120e;
}
.gbl-promotion[promo-bar-color=red] {
  background-color: #ff4f6a;
}
.gbl-promotion[promo-bar-color=yellow] {
  background-color: #ffe75f;
}
.gbl-promotion[promo-bar-color=yellow-orange] {
  background: #ffd288;
}

.gbl-promo-bar-wrap {
  margin: 0 auto;
  min-height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ede3de;
}
.gbl-promo-bar-wrap .user_is_trade {
  display: none;
}
@media (max-width: 1252px) {
  .gbl-promo-bar-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar-wrap {
    height: auto;
  }
}
.gbl-promo-bar-wrap .gbl-promo-bar--2-wide {
  box-sizing: border-box;
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .gbl-promo-bar-wrap .gbl-promo-bar--2-wide {
    width: 100%;
  }
}
.gbl-promo-bar-wrap .gbl-promo-bar--2-wide:first-child:after {
  width: 1px;
  height: 75%;
  content: "";
  position: absolute;
  display: block;
  top: 12.5%;
  right: 0;
  display: block;
  background: #ffffff;
}
@media (max-width: 768px) {
  .gbl-promo-bar-wrap .gbl-promo-bar--2-wide:first-child:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar-wrap .gbl-promo-bar--2-wide:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .gbl-promo-bar-wrap .gbl-promo-bar--2-wide:last-child.show {
    display: block;
  }
}
.gbl-promo-bar-wrap .gbl-promo-bar {
  background: transparent;
  color: inherit;
}
.gbl-promo-bar-wrap .gbl-promo-bar a {
  min-height: 22px;
}
@media (max-width: 767.98px) {
  .gbl-promo-bar-wrap .gbl-promo-bar a {
    display: none;
  }
}
.gbl-promo-bar-wrap .gbl-promo-bar a .gbl-promo-bar__headline,
.gbl-promo-bar-wrap .gbl-promo-bar a .gbl-promo-bar__savings {
  min-height: 22px;
  display: inline-block;
}
.gbl-promo-bar-wrap .gbl-promo-bar a .gbl-promo-bar__button {
  min-height: 22px;
}
@media (max-width: 767.98px) {
  .gbl-promo-bar-wrap .gbl-promo-bar a .gbl-promo-bar__button {
    display: none;
  }
}
.gbl-promo-bar-wrap .gbl-promo-bar a,
.gbl-promo-bar-wrap .gbl-promo-bar a:hover {
  color: inherit;
}

.gbl-promo-bar-wrap .gbl-promo-bar--2-wide {
  max-width: 628px;
}/*# sourceMappingURL=global-promotion-banner-support.css.map */