/*
* 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_assets-dynamicNavigation {
  border-top-style: none;
}
@media (max-width: 768.98px) {
  .experience-commerce_assets-dynamicNavigation {
    display: none;
  }
}

.sidebar__title {
  display: none;
}
.sidebar__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-overflow-style: none;
  overflow-x: auto;
}
.sidebar__items::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.sidebar__items::-webkit-scrollbar-thumb {
  height: 0;
  width: 0;
}
.sidebar__items::-webkit-scrollbar-track {
  height: 0;
  width: 0;
}
.sidebar__item {
  line-height: 32px;
  border: 1px solid #bfbfbf;
  margin-left: 4px;
}
.sidebar__item:first-child() {
  margin-left: 0;
}
@media (max-width: 991.98px) {
  .sidebar__item {
    white-space: nowrap;
  }
}
.sidebar__link {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  padding: 7px 16px;
  display: block;
}
.sidebar__icon {
  float: right;
  margin-right: 20px;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .sidebar {
    padding: 16px 0;
  }
}
@media (min-width: 769px) {
  .sidebar__title {
    display: block;
    color: #111;
    line-height: 20px;
    font-size: 22px;
    margin-bottom: 0;
    padding: 16px 0;
    text-transform: initial;
  }
  .sidebar__items {
    display: block;
  }
  .sidebar__item {
    border-width: 0;
    margin-left: 0;
  }
  .sidebar__link {
    font-size: 14px;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
  }
}
.sidebar--horizontal {
  border: 1px solid #dcdcdc;
  border-width: 1px 0 0;
  padding: 16px 0;
}
.sidebar--horizontal .sidebar__title {
  display: none;
}
.sidebar--horizontal .sidebar__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.sidebar--horizontal .sidebar__item {
  line-height: 20px;
}
.sidebar--horizontal .sidebar__link {
  font-weight: normal;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .sidebar--horizontal {
    margin-top: 8px;
  }
  .sidebar--horizontal .sidebar__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .sidebar--horizontal .sidebar__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    text-align: center;
    margin: 0;
    border: 0;
    display: block;
  }
  .sidebar--horizontal .sidebar__link {
    display: block;
    padding: 4px 0;
  }
}
