/*!***************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/tabs-product/style.scss ***!
  \***************************************************************************************************************************************************************************************************/
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.tabs-product__nav {
  position: relative;
}
.tabs-product__nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.tabs-product__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (max-width: 767px) {
  .tabs-product__list {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.tabs-product__list::-webkit-scrollbar, .tabs-product__list::-webkit-scrollbar-track, .tabs-product__list::-webkit-scrollbar-thumb {
  display: none;
}
.tabs-product__item {
  margin-right: 32px;
  padding-bottom: 32px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tabs-product__item {
    margin-right: 16px;
    padding-bottom: 16px;
  }
}
.tabs-product__item:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFCD75;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.tabs-product__item:last-child {
  margin-right: 0;
}
.tabs-product__item-text {
  white-space: nowrap;
  color: #FFFFFF;
}
.tabs-product__item-text {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  .tabs-product__item-text {
    font-size: calc(16px + 4 * ((100vw - 375px) / 393));
  }
}
@media screen and (min-width: 768px) {
  .tabs-product__item-text {
    font-size: 20px;
  }
}
.tabs-product__item-text {
  line-height: 22px;
}
@media screen and (min-width: 375px) {
  .tabs-product__item-text {
    line-height: calc(22px + 4 * ((100vw - 375px) / 393));
  }
}
@media screen and (min-width: 768px) {
  .tabs-product__item-text {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .tabs-product__item-text {
    font-size: 14px;
    line-height: 1.4;
  }
}
.tabs-product .active.tabs-product__item:after {
  opacity: 1;
}
.tabs-product .active .tabs-product__item-text {
  color: #FFCD75;
}
