/*
* Usage:
* 1. Same values for all properties:
*   .f-button {
*       @include transition(
*           (background-color, border-color, color, box-shadow, transform),
*           $transition-duration: $transition-duration-long
*       );
*   }
*
* 2. Different values for specific properties:
*   .f-button {
*       @include transition((
*           background-color: $transition-duration-short null null,
*           border-color: null,
*           box-shadow: 0.315s ease-in null,
*           transform: null ease null
*       ));
*   }
* (!) All values for each property is required.
* (!) 'null' is used for setting default value.
*/
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Mixin to cut off the rest of one-line text with dots */
/* Firefox+ CSS styles go here */
.f-checkbox__label .f-field,
.f-radio__label .f-field {
  cursor: default;
}

/*
   1.0 Utility functions for RTLCSS
*/
/* Replace. Replaces the declaration value with {value}.
** Usage:
** letter-spacing: 1px rtl(normal);
*/
/* Append. Appends {value} to the end of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-append(scaleX(-1));
*/
/* Prepend. Prepend {value} to the begining of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-prepend(scaleX(-1));
*/
/* Prepend. Prepend {value} to the begining of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-prepend(scaleX(-1));
*/
/* Ignore. Ignores processing of this declaration
** Usage:
** text-align: left rtl-ignore();
*/
.l-page.p-fixed .b-header {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}

.experience-commerce_layouts-tabNavigation .tab-navigation__nav-items {
  z-index: 2;
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-items.tab-navigation__nav-items--sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 56px;
}
@media (min-width: 769px) {
  .experience-commerce_layouts-tabNavigation .tab-navigation__nav-items.tab-navigation__nav-items--sticky {
    top: 120px;
  }
}
@media (max-width: 768.98px) {
  .experience-commerce_layouts-tabNavigation .tab-navigation__nav-items {
    top: 52px;
  }
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-navItems {
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 52px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  -webkit-box-shadow: inset 0 -1px 0 #e8e8e8;
          box-shadow: inset 0 -1px 0 #e8e8e8;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 768.98px) {
  .experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-navItems {
    gap: 24px;
    height: 60px;
    padding: 20px 10px;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-commerce_assets-tabNavigationItem {
  cursor: pointer;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-commerce_assets-tabNavigationItem.m-active .tab-navigation__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #111;
}
@media (min-width: 544px) {
  .experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-commerce_assets-tabNavigationItem:hover .tab-navigation__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #111;
  }
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-commerce_assets-tabNavigationItem .tab-navigation__item {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  position: relative;
}
@media (min-width: 769px) {
  .experience-commerce_layouts-tabNavigation .tab-navigation__nav-items .experience-commerce_assets-tabNavigationItem .tab-navigation__item {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
  }
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.experience-commerce_layouts-tabNavigation .tab-navigation__nav-contents.tab-navigation__nav-contents--limited {
  max-width: 954px;
}
@media (max-width: 768.98px) {
  .experience-commerce_layouts-tabNavigation .tab-navigation__container {
    padding-left: 0;
    padding-right: 0;
  }
}
