@charset "UTF-8";
.pull-left-xs {
  float: left;
}

.pull-right-xs {
  float: right;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .pull-left-sm {
    float: left;
  }
  .pull-right-sm {
    float: right;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .pull-left-md {
    float: left;
  }
  .pull-right-md {
    float: right;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .pull-left-lg {
    float: left;
  }
  .pull-right-lg {
    float: right;
  }
}
@media (min-width: 1200px) and (max-width: 1919.98px) {
  .pull-left-xl {
    float: left;
  }
  .pull-right-xl {
    float: right;
  }
}
@media (min-width: 1920px) {
  .pull-left-xxl {
    float: left;
  }
  .pull-right-xxl {
    float: right;
  }
}
@media (max-width: 575.98px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (max-width: 1919.98px) {
  .hidden-xl-down {
    display: none !important;
  }
}

.hidden-xxl-down {
  display: none !important;
}

.row.equal-height > [class^=col] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@-webkit-keyframes scaleJump {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleJump {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.header-search-btn {
  background: transparent;
  border: none;
  padding: 0;
}

#search-suggestions-results {
  padding-top: 2.375rem;
}
#search-suggestions-results:not(.has-suggestions) {
  display: none;
}
#search-suggestions-results.has-suggestions ~ #search-placeholder {
  display: none;
}

.header-search input.search-field {
  background: var(--input-search-background-color);
  border-radius: var(--input-search-border-radius);
  border: none;
  padding: 0.375rem 3rem;
  line-height: 1.75rem;
  font-weight: 500;
  -webkit-transition: background-color 0.15s, color 0.35s 0.5s;
  transition: background-color 0.15s, color 0.35s 0.5s;
  width: 100%;
}
.header-search input.search-field:placeholder-shown ~ #header-search-reset {
  display: none;
}
.header-search input.search-field:focus, .header-search input.search-field:hover {
  background: var(--color-grey2);
}
.header-search input.search-field:focus::placeholder, .header-search input.search-field:hover::placeholder {
  color: var(--color-grey4);
}
.header-search input.search-field::-moz-placeholder {
  color: var(--color-grey8);
  -moz-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
}
.header-search input.search-field::-ms-input-placeholder {
  color: var(--color-grey8);
  -ms-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
}
.header-search input.search-field::placeholder {
  color: var(--color-grey8);
  -webkit-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
}

.product-preview {
  display: block;
}
.product-preview .product-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.product-preview img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.product-preview .product-preview-info {
  margin: 0.75rem 0.75rem 2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.product-preview .product-subtitle {
  color: var(--color-grey4);
}
.product-preview .price-wrapper {
  margin-top: 0.75rem;
}
.product-preview .price {
  font-size: inherit;
}

button.button-search {
  position: absolute;
  top: 53%;
  left: 0.3125rem;
  padding: 0;
  height: 2.25rem;
  width: 2.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  button.button-search {
    left: 0;
  }
}

button.close-search-btn {
  position: absolute;
  right: var(--container-space, 0);
  top: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
button.close-search-btn.cancel-search-button {
  background: none;
  font-weight: 500;
  top: 0.5625rem;
}
@media (max-width: 991.98px) {
  button.close-search-btn.cancel-search-button {
    top: 0.4375rem;
    right: 1.875rem;
  }
}

#header-search-form {
  margin: 0.625rem 0;
}

#header-search-reset {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.125rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.375rem;
}

.search-results-wrapper {
  text-align: left;
  max-height: calc(100vh - var(--header-h, 0));
  overflow: auto;
  position: absolute;
  top: var(--header-h, 0);
  left: 0;
  right: 0;
  background: var(--color-white);
}
.search-results-wrapper p,
.search-results-wrapper span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.search-results-wrapper p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.search-results-wrapper h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: inherit;
  margin: 0 0 1rem;
  color: var(--color-grey4);
}

#search-placeholder .content-asset {
  margin: 3rem auto 2rem;
}
#search-placeholder h3,
#search-placeholder p {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-1.25rem);
          transform: translateY(-1.25rem);
}
#search-placeholder h3.search-heading,
#search-placeholder p.search-heading {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--color-grey4);
}
#search-placeholder p:nth-of-type(2) {
  --anim-delay: 0.6s;
}
#search-placeholder p:nth-of-type(3) {
  --anim-delay: 0.65s;
}
#search-placeholder p:nth-of-type(4) {
  --anim-delay: 0.7s;
}
#search-placeholder p:nth-of-type(5) {
  --anim-delay: 0.75s;
}
#search-placeholder p:nth-of-type(6) {
  --anim-delay: 0.8s;
}

html:not(.suggestions-active) .button-search {
  pointer-events: none;
}
html:not(.suggestions-active) .heart,
html:not(.suggestions-active) .minicart,
html:not(.suggestions-active) .main-menu,
html:not(.suggestions-active) .navbar-toggler,
html:not(.suggestions-active) .header-action-bar,
html:not(.suggestions-active) .navbar-header.brand {
  opacity: 1;
  visibility: visible;
  -webkit-transition: var(--right-transition, "") opacity 0.4s, visibility 0s;
  transition: var(--right-transition, "") opacity 0.4s, visibility 0s;
}
html:not(.suggestions-active) .search-results-wrapper {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}

html.suggestions-active {
  --global-overflow: hidden;
  --global-pos: fixed;
}
html.suggestions-active .pre-spacer {
  height: var(--header-h);
}
html.suggestions-active .close-search-btn {
  visibility: visible;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: scaleJump 0.25s ease 0.45s forwards;
          animation: scaleJump 0.25s ease 0.45s forwards;
}
html.suggestions-active .heart,
html.suggestions-active .minicart,
html.suggestions-active .main-menu,
html.suggestions-active .header-action-bar,
html.suggestions-active .navbar-toggler {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.1s, visibility 0s linear 0.25s;
  transition: opacity 0.1s, visibility 0s linear 0.25s;
}
html.suggestions-active .plp-filter-header {
  z-index: 1;
}
html.suggestions-active .header-search {
  max-width: 100vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
html.suggestions-active .header-wrapper {
  z-index: 4;
  position: fixed;
  top: 0;
}
html.suggestions-active .pre-scrim {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  cursor: pointer;
}
html.suggestions-active #search-placeholder h3,
html.suggestions-active #search-placeholder p {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.45s var(--anim-delay, 0.4s), visibility 0.45s var(--anim-delay, 0.4s), -webkit-transform 0.45s ease calc(var(--anim-delay, 0.4s) - 0.1s);
  transition: opacity 0.45s var(--anim-delay, 0.4s), visibility 0.45s var(--anim-delay, 0.4s), -webkit-transform 0.45s ease calc(var(--anim-delay, 0.4s) - 0.1s);
  transition: opacity 0.45s var(--anim-delay, 0.4s), visibility 0.45s var(--anim-delay, 0.4s), transform 0.45s ease calc(var(--anim-delay, 0.4s) - 0.1s);
  transition: opacity 0.45s var(--anim-delay, 0.4s), visibility 0.45s var(--anim-delay, 0.4s), transform 0.45s ease calc(var(--anim-delay, 0.4s) - 0.1s), -webkit-transform 0.45s ease calc(var(--anim-delay, 0.4s) - 0.1s);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
html.suggestions-active #search-placeholder .searchSuggestionHeading {
  font-size: 1rem;
  color: #757575;
  margin-bottom: 1rem;
}

.suggestions-phrases-container {
  margin: 0 var(--container-space, 0) 3rem calc(var(--container-space, 0) + 0.5rem);
}

.list-group-item-action.suggestion-phrase {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--color-grey4);
}
.list-group-item-action.suggestion-phrase span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: var(--color-primary);
}

.suggestions-phrase-items {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991.98px) {
  #header-search-form {
    position: absolute;
    right: var(--container-space, 0);
  }
  #suggestions-tabs .tab-pane {
    min-height: 50vw;
  }
  html:not(.suggestions-active) #header-search-form {
    width: 2.5rem;
    margin-right: 2rem;
  }
  html:not(.suggestions-active) .search-field-wrapper {
    max-width: 2.5rem;
  }
  html:not(.suggestions-active) input.search-field {
    padding: 0;
    cursor: pointer;
    background: transparent;
  }
  html:not(.suggestions-active) input.search-field::placeholder {
    opacity: 0;
  }
  html.suggestions-active #header-search-form {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    right: 0;
  }
  html.suggestions-active .navbar-header.brand {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.1s, visibility 0s linear 0.25s;
    transition: opacity 0.1s, visibility 0s linear 0.25s;
  }
  html.suggestions-active .search-field-wrapper {
    margin: 0 calc(var(--container-space, 0) + 3.25rem) 0 var(--container-space, 0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  html.suggestions-active .header-wrapper:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: -1;
  }
}
@media (min-width: 992px) {
  .product-preview .product-preview-info {
    margin: 0.75rem 0 0;
  }
  .suggestions-phrase-items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  #search-suggestions-results {
    min-height: calc(20vw + 70px);
  }
  .suggestions-phrases-container {
    margin: 0;
    padding-right: 1.25rem;
    width: 16.666667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .search-results-wrapper {
    padding: 0 var(--container-space, 0);
  }
  #header-search-form {
    position: relative;
  }
  html:not(.suggestions-active) .search-field-wrapper {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    max-width: 11.25rem;
    left: 0;
    -webkit-transition: width 0.25s, left 0.35s, -webkit-transform 0.35s;
    transition: width 0.25s, left 0.35s, -webkit-transform 0.35s;
    transition: width 0.25s, transform 0.35s, left 0.35s;
    transition: width 0.25s, transform 0.35s, left 0.35s, -webkit-transform 0.35s;
  }
  html.suggestions-active {
    --visible-header-h: var(--header-h, 0);
  }
  html.suggestions-active .header-search {
    position: absolute;
    right: 0;
  }
  html.suggestions-active #header-search-form {
    padding: 0 9rem;
  }
  html.suggestions-active .search-field-wrapper {
    max-width: 41rem;
    -webkit-transition: max-width 0.25s ease, left 0.25s ease, -webkit-transform 0.25s ease;
    transition: max-width 0.25s ease, left 0.25s ease, -webkit-transform 0.25s ease;
    transition: max-width 0.25s ease, transform 0.25s ease, left 0.25s ease;
    transition: max-width 0.25s ease, transform 0.25s ease, left 0.25s ease, -webkit-transform 0.25s ease;
    left: -50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  html.suggestions-active body:not(.isStickyHeaderShown) .header-wrapper {
    -webkit-transition: -webkit-transform 0.25s 0.15s ease;
    transition: -webkit-transform 0.25s 0.15s ease;
    transition: transform 0.25s 0.15s ease;
    transition: transform 0.25s 0.15s ease, -webkit-transform 0.25s 0.15s ease;
    -webkit-transform: translateY(-2.25rem);
            transform: translateY(-2.25rem);
    top: 2.25rem;
  }
  #search-placeholder .content-asset {
    width: 41rem;
  }
}
@media (min-width: 1920px) {
  #search-suggestions-results {
    min-height: 31.25rem;
  }
}
#remainderModal {
  --btn-color: var(--color-orange-nike);
  --btn-bg-color: var(--color-white);
  --btn-brd-color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.125rem;
}
#remainderModal .btn-outline {
  --btn-color: var(--color-white);
  --btn-bg-color: transparent;
  --btn-brd-color: var(--color-white);
}
#remainderModal .modal-body {
  padding: 2.375rem 0 1rem;
}
#remainderModal .modal-content {
  background: var(--color-orange-nike);
  color: var(--color-white);
}
#remainderModal h2,
#remainderModal h3,
#remainderModal h4 {
  font-family: var(--header-bold-font-family);
  font-size: 2.25rem;
  line-height: 2.25rem;
  color: inherit;
  text-transform: uppercase;
}
#remainderModal p {
  font-size: 0.75rem;
  line-height: 0.9375rem;
}
#remainderModal img {
  max-width: 100%;
}
#remainderModal .tile-image {
  width: 11.25rem;
}
#remainderModal .close {
  position: absolute;
  top: 0;
  right: 0;
  color: inherit;
  opacity: 1;
  z-index: 1;
}
#remainderModal .price {
  font-weight: 500;
}
#remainderModal .price .range,
#remainderModal .price .sales,
#remainderModal .price .starting {
  font-weight: inherit;
}
#remainderModal .price .strike-through {
  color: inherit;
  margin: 0 0 0 0.625rem;
}
#remainderModal .product-block {
  max-width: 11.25rem;
}
@media (min-width: 768px) {
  #remainderModal {
    --modal-w: 34.875rem;
  }
  #remainderModal.with-product {
    --modal-w: 42.6875rem;
  }
  #remainderModal.with-product .modal-body {
    padding: 3rem 1.625rem 0rem;
  }
}

.error-message-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.error-message-wrapper .addToCart-modal-close button {
  border: 0;
  background: none;
}

nav .header.container .navbar-header.brand {
  padding-top: 10px;
  left: 0;
  position: relative;
  margin: 0;
  width: 4.375rem;
  height: 3.75rem;
  z-index: 1;
}
nav .header.container .navbar-header.brand a:hover svg {
  -webkit-filter: invert(44%) sepia(2%) saturate(20%) hue-rotate(326deg) brightness(101%) contrast(86%);
          filter: invert(44%) sepia(2%) saturate(20%) hue-rotate(326deg) brightness(101%) contrast(86%);
}
nav .header.container .main-menu {
  width: 100%;
}
@media (min-width: 992px) {
  nav .header.container .main-menu {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    height: 3.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
nav .header.container .navbar-toggler {
  padding: 0;
  height: 2.25rem;
  margin-right: -0.75rem;
}

.header-icon {
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
}
.header-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header-icon:hover {
  background: var(--icon-background-color-hover);
}

@media (max-width: 991.98px) {
  .header-action-bar {
    position: absolute;
    right: calc(var(--container-space, 0) + 5rem);
  }
}
@media (min-width: 992px) {
  .minicart {
    margin-right: -0.75rem;
  }
  .heart {
    margin: 0 0.75rem;
  }
}
.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-grey1);
  height: 2.25rem;
}
.header-top .jordan a:hover img {
  -webkit-filter: invert(44%) sepia(2%) saturate(20%) hue-rotate(326deg) brightness(101%) contrast(86%);
          filter: invert(44%) sepia(2%) saturate(20%) hue-rotate(326deg) brightness(101%) contrast(86%);
}
.header-top .header-top-links a,
.header-top .header-top-links span {
  font-size: var(--small-font-size);
  height: 0.875rem;
  font-weight: 500;
  color: #111111;
}
.header-top .header-top-links .content-asset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top .help-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  top: -0.0625rem;
}
.header-top .help-menu-dropdown {
  position: absolute;
  visibility: hidden;
  top: 1.75rem;
  right: 0;
  z-index: 20;
  opacity: 0;
  min-width: 15rem;
  -webkit-transform: translateY(-1.25rem);
          transform: translateY(-1.25rem);
  -webkit-transition: opacity 0.2s, visibility 0s linear 0.2s, -webkit-transform 0.25s ease;
  transition: opacity 0.2s, visibility 0s linear 0.2s, -webkit-transform 0.25s ease;
  transition: opacity 0.2s, visibility 0s linear 0.2s, transform 0.25s ease;
  transition: opacity 0.2s, visibility 0s linear 0.2s, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.header-top .help-menu-content {
  background: var(--color-white);
  border-radius: 0 0 0.5rem 0.5rem;
  text-align: left;
  padding: 1.5rem;
}
.header-top .help-menu:hover .help-menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s, visibility 0s, -webkit-transform 0.25s ease;
  transition: opacity 0.2s, visibility 0s, -webkit-transform 0.25s ease;
  transition: opacity 0.2s, visibility 0s, transform 0.25s ease;
  transition: opacity 0.2s, visibility 0s, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.header-top .help-menu nav a {
  font-size: var(--base-font-size);
  font-weight: 500;
}
.header-top .help-menu nav a:hover {
  color: var(--color-black);
}
.header-top .help-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 1.5rem;
}
.header-top .help-menu nav ul li {
  padding-bottom: 0.5rem;
}
.header-top .help-menu nav ul a {
  font-size: var(--normal-font-size);
  color: var(--color-grey3);
}
@media (min-width: 992px) {
  .header-top .nav-item.user {
    position: relative;
  }
  .header-top .nav-item.user:hover .popover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.2s, visibility 0s, -webkit-transform 0.25s ease;
    transition: opacity 0.2s, visibility 0s, -webkit-transform 0.25s ease;
    transition: opacity 0.2s, visibility 0s, transform 0.25s ease;
    transition: opacity 0.2s, visibility 0s, transform 0.25s ease, -webkit-transform 0.25s ease;
  }
  .header-top .nav-item.user .popover {
    right: 0;
    left: auto;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-1.25rem);
            transform: translateY(-1.25rem);
    -webkit-transition: opacity 0.2s, visibility 0s linear 0.2s, -webkit-transform 0.25s ease;
    transition: opacity 0.2s, visibility 0s linear 0.2s, -webkit-transform 0.25s ease;
    transition: opacity 0.2s, visibility 0s linear 0.2s, transform 0.25s ease;
    transition: opacity 0.2s, visibility 0s linear 0.2s, transform 0.25s ease, -webkit-transform 0.25s ease;
    background: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    border: 0;
    min-width: 15rem;
  }
  .header-top .nav-item.user .popover .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-top .nav-item.user .popover .nav-item a {
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.25rem 0.5rem;
    color: #757575;
    display: inline-block;
    width: 100%;
  }
  .header-top .nav-item.user .popover .nav-item a:hover {
    color: #111111;
  }
  .header-top .nav-item .user-message {
    padding: 0;
    margin-bottom: -0.1875rem;
  }
}

@-webkit-keyframes setHeaderAnimation {
  from {
    -webkit-transform: translateY(calc(-1 * var(--header-h)));
            transform: translateY(calc(-1 * var(--header-h)));
  }
  to {
    -webkit-transition: -webkit-transform 0.15s ease;
    transition: -webkit-transform 0.15s ease;
    transition: transform 0.15s ease;
    transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  }
}

@keyframes setHeaderAnimation {
  from {
    -webkit-transform: translateY(calc(-1 * var(--header-h)));
            transform: translateY(calc(-1 * var(--header-h)));
  }
  to {
    -webkit-transition: -webkit-transform 0.15s ease;
    transition: -webkit-transform 0.15s ease;
    transition: transform 0.15s ease;
    transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  }
}
.header-wrapper {
  z-index: 2;
  background-color: var(--color-secondary);
  width: 100%;
}
.header-wrapper.is-fixed {
  top: 0;
  position: fixed;
}
.header-wrapper.is-fixed:not(.header-position-change) {
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.header-wrapper.is-fixed.is-hidden {
  -webkit-transform: translateY(calc(-1 * var(--header-h)));
          transform: translateY(calc(-1 * var(--header-h)));
}
.header-wrapper.is-fixed .header-banner {
  display: none;
}

body.isStickyHeaderShown {
  --visible-header-h: var(--header-h, 0);
}
body.isStickyHeaderHidden {
  --visible-header-h: 0;
}

.header-wrapper.is-fixed + .pre-spacer {
  display: block;
  height: 3.75rem;
}

.minicart .minicart-quantity {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  border-radius: 0;
  color: var(--color-black);
  font-family: var(--body-bold-font-family);
  font-size: 0.75rem;
  line-height: 0.9375rem;
  font-weight: 500;
  width: 1rem;
  height: 0.8125rem;
}
@media (max-width: 575.8) {
  #main-cart-product-images {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #main-cart-product-images {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #main-cart-product-images {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  #main-cart-product-images {
    width: 100% !important;
  }
}
#search-placeholder p:first-of-type {
  --anim-delay: 0.55s;
}

#remainderModal .modal-dialog {
  margin: 0 auto !important;
}

#remainderModal .modal-body, #remainderModal.with-product .modal-body {
  padding: 35px 19px 20px 19px !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

#remainderModal .modal-dialog {
  width: 100%;
  max-width: var(--modal-w, 500px);
}

#remainderModal .modal-content {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 20px;
}

#remainderModal #main-cart-product-images, #remainderModal .modal-inner-content {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

#remainderModal .modal-inner-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mini-product-list-image {
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.image-container-carousel {
  padding: 1px;
  border: 1px solid transparent;
  width: 40px;
  height: 40px;
}

.remaining-images-container {
  width: 40px;
  height: 40px;
  padding: 1px;
  font-size: 24px;
  color: #959595;
  pointer-events: none;
}

#remaining-images-count {
  font-size: 16px !important;
}

.image-container-carousel:hover {
  border-color: var(--color-grey3);
}

#remainderModal .product-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 11.25rem;
  display: inline-block;
  font-family: "HelveticaNeue";
  font-weight: 500;
  font-size: 14px;
}

#remainderModal .modal-price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#remainderModal .modal-price-wrapper .list-price {
  padding-left: 10px;
}

#remainderModal .modal-price-wrapper .modal-price-sales, #remainderModal .modal-price-wrapper .sales-price {
  font-family: "HelveticaNeue";
  font-weight: 500;
  font-size: 14px;
}

#remainderModal .modal-cta-wrapper .continue-shopping-link, #remainderModal .modal-cta-wrapper .btn-outline-primary {
  font-family: "HelveticaNeue";
  font-weight: 500;
  font-size: 14px;
}

#remainderModal .modal-price-wrapper .list-price {
  color: #959595 !important;
}

#remainderModal .discount-modal {
  font-family: "HelveticaNeue";
  font-weight: 500;
  font-size: 14px;
  color: #007D48;
}

#remainderModal .price-wrapper .strike-through span {
  font-family: "HelveticaNeue";
  font-weight: 500;
  font-size: 14px;
  color: #959595;
}

#remainderModal #remaining-stock-product {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #B0B0B0;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#remainderModal .btn-arrow {
  position: absolute;
  top: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
}

.btn-arrow .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.previous-product {
  left: 35px;
}

.next-product {
  right: 35px;
}

.btn-arrow:hover {
  background-color: #E5E5E5;
  opacity: 1;
}

#remainderModal p,
#remainderModal span {
  font-size: inherit;
  line-height: inherit;
}

#remainderModal p {
  font-size: 0.75rem;
  line-height: 0.9375rem;
  margin-bottom: 0;
}

#remainderModal .modal-cta-wrapper {
  margin-top: 36px;
}

#remainderModal .modal-inner-content {
  padding: 0.625rem;
}

#remainderModal .product-block {
  max-width: 11.25rem;
  height: 302px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#remainderModal .btn-arrow.rounded-circle {
  background-color: var(--color-grey2) !important;
}

#remainderModal .btn-arrow.rounded-circle:hover {
  background-color: var(--color-grey8) !important;
}

.carousel-simple.optimized .arrows-enabled .btn-circle.disabled {
  color: var(--color-grey1);
  pointer-events: none;
}

#remainderModal .hidden-thumbnail {
  display: none !important;
}

#remainderModal .mini-product-list-image.active {
  outline: 2px solid #007aff;
  border-radius: 4px;
}

#remainderModal .modal-body.d-md-flex {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.remainderModalText {
  margin-top: 3px;
}

#remainderModal .sustainable-material {
  color: var(--color-orange-nike, #fa5400);
}

@media (min-width: 768px) {
  #remainderModal .modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    width: 100%;
  }
  #remainderModal .modal-inner-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: 60%;
    padding: 0;
    padding-top: 20px;
  }
  #remainderModal #main-cart-product-images {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: 40%;
  }
  #remainderModal #main-cart-product-images > .d-flex {
    position: relative;
  }
  #remainderModal .product-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    max-width: 11.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #remainderModal .product-block .thumbnails-container {
    margin-top: auto;
  }
  #remainderModal .product-block {
    min-height: 0;
  }
  #remainderModal.with-product .modal-body {
    padding: 2.5rem 1.625rem 0;
  }
  #remainderModal .modal-body {
    padding: 3rem 2.5rem 2.875rem;
  }
  #remainderModal .modal-body.single-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 35px 19px 20px 19px !important;
  }
  #remainderModal .modal-body.single-product .modal-inner-content,
#remainderModal .modal-body.single-product #main-cart-product-images {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto !important;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #remainderModal .modal-body.single-product #main-cart-product-images {
    width: 30% !important;
    max-width: 30% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 30% !important;
            flex: 0 0 30% !important;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  #remainderModal .modal-body.single-product .modal-inner-content {
    width: 70% !important;
    max-width: 70% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 70% !important;
            flex: 0 0 70% !important;
  }
  #remainderModal .modal-body.single-product .product-block {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    height: auto;
  }
  #remainderModal .btn-arrow {
    position: absolute;
    top: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
  }
  .previous-product {
    left: 0px;
  }
  .next-product {
    right: 0px;
  }
}
nav .header.container .navbar-header.brand {
  padding-top: 0;
  left: 0;
  position: relative;
  margin: 0;
  width: 4.375rem;
  height: 3.75rem;
  z-index: 1;
}

@media (max-width: 991.98px) {
  #remainderModal .modal-dialog {
    margin: 0 !important;
  }
  #remainderModal .modal-content {
    margin: 0 20px;
  }
  #remainderModal .modal-cta-wrapper .continue-shopping-link {
    margin-bottom: 16px !important;
  }
  #remainderModal .modal-cta-wrapper .btn-outline-primary {
    -webkit-box-shadow: none;
            box-shadow: none;
    text-decoration: underline;
    color: #707072;
  }
  #remainderModal .modal-cta-wrapper {
    margin-top: 20px;
  }
  #main-cart-product-images {
    margin: 0 auto;
  }
  #remainderModal .product-block {
    height: 255px;
  }
}
#remainderModal .modal-price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-top img.jordan {
  width: 2.25rem;
  height: 2.0625rem;
}

@media (max-width: 991.98px) {
  #remainderModal .product-block {
    height: auto;
  }
}