/** Shopify CDN: Minification failed

Line 69:0 Unexpected "$"
Line 82:13 Expected identifier but found whitespace

**/
.tabbox {
    background: #F3F3F3;
    padding: 50px 0px 80px;
}
.tabbox .tab__container {
    width: 100%;
    max-width: 1150px;
    margin: auto;
    padding: 0;
}
.tab-inside-text h3 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.tab-inside-text p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
}
.tab__title {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    align-items: start;
}
.tab__title .tab__button {
    width: unset !important;
    border: 0 !important;
    background: transparent;
    border-right: 1px solid #000 !important;
    margin: 0 !important;
    position: relative;
}

.tab__button.tab_button-active::after {
    background-image: url('https://cdn.shopify.com/s/files/1/0648/3945/0798/files/up-arrow-svgrepo-com.svg?v=1715063948');
    content: '';
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    background-size: contain;
    position: absolute;
    z-index: 99999;
    bottom: -30px;
    transform: translateX(-50%);
    left: 50%;
}


.tab__title .tab__button:last-child {
    border-right: 0px !important;
}
.tab__title .tab__button p {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

$main-color:  rgba(0, 146, 227, 1);
$second-color: #99d3ec;
$body-color:  rgba(0, 146, 227, 0.1);
$dark-color: #333a4d;
$blue: #003a79;


.main-tab-box h1 {
  text-align: center;
  color: #545454;
  padding: 0;
  margin: 0;
}
main-tab-box. h3 {
  padding: 0;
  margin: 0;
  color: $blue;
}



.main-tab-box .tab__title {
  margin: 50px 0 0;
  
    .tab__button:first-of-type {
      margin:0;
  }
  
  .tab__button {
    padding: 15px;
    color: #545454;
    outline: none;
    margin: 0 -5px;
    cursor: pointer;
    width: 25%;

    img {
      height: 25px;
      display: block;
      margin: 0px auto 5px;
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }
  }
  
  .tab_button-active {
    border-bottom: none;
    
    img {
      filter: none;
    }
  }
}

.tab__inside {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  visibility: hidden; 
  opacity: 0;
  height: 0;
  transform: translateY(10px);
  transition: transform .3s ease-in;
  align-items: center;
  column-gap: 50px;
  row-gap: 50px;
  background:#fff;
  
  .tab__inside-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    
  img {
    height: 100%;
    display: block;
    margin: 0 auto;
  }
  }
  
  .tab__inside-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    
    .main-tab-box  p {
      color: #545454;
      font-size: 14px;
      font-weight: 100;
    }
    
   .main-tab-box  button {
      border-radius: 30px;
      text-transform: uppercase;
      padding: 10px;
      box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
      border: none;
      cursor: pointer;
      background: $blue;
      color: #fff;
      transition: all 0.3s ease;
      width: 100px;
      
      &:hover {
        background: #fff;
        color: $blue;
        
      }
    }
  }
}

.tab__inside-active {
  visibility: visible; 
  opacity: 1;
  height: 100%;
	transform: translateY(0);
	transition: transform .3s ease-out 0.1s, opacity .3s ease-out 0.1s;
}

img.tab-icon-img {
    width: 35px;
    height: 40px !important;
    object-fit:contain;
}

.tab__inside-img img.tab-main-image {
    height: 100%;
    margin:unset;
    width:100%;
}
.tab__container.main-tab-box.mobile-view {
    display: none;
}
.tab-inside-text {
    padding: 30px 30px 30px 0;
}
@media only screen and (max-width: 767px) {
.tab__inside {
    grid-template-columns: repeat(1, 1fr);
}
.tab__title {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}
.tab__title .tab__button {
    border-right: 0px solid #000 !important;
}
.tabbox .tab__container {
  display:none;
}
  .tab__container.main-tab-box.mobile-view {
    display: block;
}
.tabbox {
    padding: 50px 20px;
}
  .tab__container.main-tab-box.mobile-view .tab-section-slider .slick-list .slick-slide img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}
  .tab__container.main-tab-box.mobile-view .slick-slide .tab-icon-img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
    margin: auto;
}
  .tab__container.main-tab-box.mobile-view .slick-slide h3 {
    font-weight: 700;
    text-align: center;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 26px;
}
  .tab__container.main-tab-box.mobile-view .slick-slide p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000;
}
  .tab__container.main-tab-box.mobile-view .tab-section-slider .slick-dots li button::before {
    font-size: 10px;
}
  .tab__container.main-tab-box.mobile-view .tab-section-slider .slick-dots li {
    margin: 0;
}
}