/*!****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./components/tabs/tabs.scss ***!
  \****************************************************************************************************************************************************************************/
/******************************************
Section | Tabs
******************************************/
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
.tabs {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .tabs {
    padding: 100px 0 90px;
  }
}
.tabs .tabs-inner {
  max-width: 1124px;
  padding: 0 20px;
  margin: 0 auto;
}
.tabs-title {
  margin-top: 0;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}
.tabs-text {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 242px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .tabs-text {
    margin-bottom: 40px;
    max-width: 100%;
  }
}
.tabs .tabs-nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
  gap: 7px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0;
  background-color: transparent;
  border-radius: 8px;
}
@media screen and (min-width: 640px) {
  .tabs .tabs-nav {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .tabs .tabs-nav {
    padding: 26px 0;
    margin-bottom: 30px;
    gap: 20px;
    justify-content: center;
    background-color: #dddddd;
  }
}
@media screen and (min-width: 1024px) {
  .tabs .tabs-nav {
    gap: 50px;
    margin-bottom: 51px;
  }
}
.tabs .tabs-nav::-webkit-scrollbar {
  display: none;
}
.tabs .tab-button {
  flex: 0 0 auto;
  padding: 5px 10px;
  scroll-snap-align: start;
  background: none;
  border: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.34;
  border-bottom: none;
  border-radius: 4px;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .tabs .tab-button {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    background-color: unset;
    line-height: 1.5;
  }
}
.tabs .tab-button.active {
  color: #ffffff;
  background-color: #5f6166;
}
@media screen and (min-width: 768px) {
  .tabs .tab-button.active {
    border-bottom: 2px solid #222222;
    color: #222222;
    background-color: unset;
  }
}
.tabs .tabs-content .tab-content {
  display: none;
}
.tabs .tabs-content .tab-content.active {
  display: flex;
  flex-direction: column-reverse;
  animation: fadeIn 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .tabs .tabs-content .tab-content.active {
    flex-direction: row;
  }
}
.tabs .tabs-content .tab-content-text {
  max-width: 100%;
  width: 100%;
  margin-right: 4.7vw;
}
@media screen and (min-width: 768px) {
  .tabs .tabs-content .tab-content-text {
    max-width: 363px;
  }
}
@media screen and (min-width: 1728px) {
  .tabs .tabs-content .tab-content-text {
    margin-right: 82px;
  }
}
.tabs .tabs-content .tab-content-text ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 25px;
  list-style: none;
  padding: 0;
}
.tabs .tabs-content .tab-content-text ul li {
  width: 100%;
  padding-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid #797979;
}
@media screen and (min-width: 640px) {
  .tabs .tabs-content .tab-content-text ul li {
    font-size: 18px;
  }
}
.tabs .tabs-content .tab-content-text ul li ul {
  padding-left: 30px;
  gap: 0;
  list-style-type: disc;
}
.tabs .tabs-content .tab-content-text ul li ul li {
  border-bottom: none;
  padding-bottom: 0;
}
.tabs .tabs-content .tab-content-text ul li:last-child {
  border-bottom: none;
}
.tabs .tabs-content .tab-content-image {
  max-width: 100%;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .tabs .tabs-content .tab-content-image {
    max-width: 639px;
    margin-bottom: 0;
  }
}
.tabs .tabs-content .tab-content-image img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=tabs.css.map*/