/*
* 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();
*/
.experience-commerce_layouts-tabHeader .experience-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-clip-path: inset(0 0 16px 0);
          clip-path: inset(0 0 16px 0);
  margin-bottom: -16px;
}
@media (min-width: 992px) {
  .experience-commerce_layouts-tabHeader .experience-items {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    overflow-y: hidden;
  }
}
@media (min-width: 992px) {
  .experience-commerce_layouts-tabHeader .tab-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.experience-commerce_layouts-tabHeader .tab-header {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #767676;
  margin-bottom: 8px;
  text-transform: none;
}
.experience-commerce_layouts-tabHeader .tab-count {
  margin-right: 4px;
}
.experience-commerce_layouts-tabHeader .tab-category {
  margin-left: 4px;
  text-transform: uppercase;
}
.experience-commerce_layouts-tabHeader .tab-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .experience-commerce_layouts-tabHeader .tab-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
  }
}
.experience-commerce_layouts-tabHeader .tab-title--hover:hover {
  -webkit-box-shadow: inset 0 -1px 0 #111;
          box-shadow: inset 0 -1px 0 #111;
}
.experience-commerce_layouts-tabHeader .tab-subtitle {
  font-size: 16px;
  line-height: 24px;
}
.experience-commerce_layouts-tabHeader .tab-items {
  margin: 16px -20px 0;
  /* stylelint-disable */
}
@media (min-width: 768px) and (max-width: 992px) {
  .experience-commerce_layouts-tabHeader .tab-items {
    /* stylelint-enable */
    margin: 16px 0 0 -20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .experience-commerce_layouts-tabHeader .tab-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .experience-commerce_layouts-tabHeader .tab-items {
    margin: 0 0 0 16px;
  }
}

.experience-commerce_assets-tabItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.experience-commerce_assets-tabItem:first-child {
  padding-left: 20px;
}
.experience-commerce_assets-tabItem:not(:last-child) {
  margin-right: 34px;
}
.experience-commerce_assets-tabItem:last-child {
  padding-right: 20px;
}
@media (min-width: 992px) {
  .experience-commerce_assets-tabItem:last-child {
    padding-right: 0;
  }
}
.experience-commerce_assets-tabItem .tab-item {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #767676;
  cursor: pointer;
  padding-bottom: 5px;
  position: relative;
}
.experience-commerce_assets-tabItem .tab-item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
}
.experience-commerce_assets-tabItem .tab-item.m-active {
  color: #111;
  pointer-events: none;
}
.experience-commerce_assets-tabItem .tab-item.m-active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #111;
}

.experience-commerce_layouts-tabContent {
  margin: 16px 0;
}
@media (min-width: 769px) {
  .experience-commerce_layouts-tabContent {
    margin: 24px 0;
  }
}
.experience-commerce_layouts-tabContent .experience-einstein-einsteinCarouselCategory .spinner {
  margin-top: -64px;
}
