/* Tabs container */
.hs-tabs,
.hs-tabs__scroll {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 26px auto;
}
.hs-tabs__content ul li {
    margin-bottom: 16px;
}
  .hs-tabs__content ul li:last-child {  margin-bottom: 0px;}
.hs-tabs-wrapper {line-height:30px; font-size:16px;}
.hs-tabs__scroll {
  overflow-x: scroll;
}
.mobile-tab-label {
  background: #fff;
  border-radius: 75px;
  display: inline-flex;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.08));
  font-weight: 700;
  padding: 12px 25px; left: 20px;
  position: absolute;
  top: -30px;
  gap: 5px; align-items: center;
}
.hs-tabs__nudge {
  position: absolute;
  top: 0;
  bottom: 0;
  display: none;
  box-sizing: border-box;
  height: 80%;
  width: 16px;
  align-items: center;
}

.hs-tabs__nudge,
.hs-tabs__nudge:hover,
.hs-tabs__nudge:focus,
.hs-tabs__nudge:active {
  /* No button */
  /* stylelint-disable */
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background: none;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: none;
  transition: none;

  margin: auto 0;
  padding: 0;
  background: #fff;
  /* stylelint-enable */
}

.hs-tabs__nudge--show {
  display: flex;
}

.hs-tabs__nudge--right,
.hs-tabs__nudge--right:active,
.hs-tabs__nudge--right:hover,
.hs-tabs__nudge--right:focus {
  right: 0;
  border: 1px solid #ccc;
  border-right: none;
  justify-content: flex-end;
}

.hs-tabs__nudge--left,
.hs-tabs__nudge--left:active,
.hs-tabs__nudge--left:hover,
.hs-tabs__nudge--left:focus {
  z-index: 1;
  left: 0;
  border: 1px solid #ccc;
  border-left: none;
  justify-content: flex-start;
}

.hs-tabs-nudge-icon {
  display: flex;
  height: 100%;
  width: 8px;
  align-items: center;
  fill: currentColor;
}

.hs-tabs-nudge-icon svg {
  width: 8px;
}

.hs-tabs__tab-wrapper {display: flex;
    gap: 15px;
    justify-content: space-between;
    max-width: 100%;
    background: #fff;
    border-radius: 75px;
    width: 100%;
    padding: 15px;
}

/* Tabs */
.hs-tabs__tab {
  position: relative;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}

.hs-tabs__tab,
.hs-tabs__tab:hover,
.hs-tabs__tab:focus,
.hs-tabs__tab:active {
 background-color: #fff;
    border: none;
    border-bottom: none;
    border-radius: 75px;
    color: initial;
    font-weight: 500;
    margin-bottom: 0;
    padding:8.5px 18px;
    text-align: center;
    text-decoration: none;
    transition:all 0.2s ease-in-out ;
    display: inline-flex;
    font-size: 14px;
    gap: 10px;
    align-items: center;
  /* stylelint-enable */
}

.hs-tabs__tab:hover,
.hs-tabs__tab:focus,
.hs-tabs__tab:active {
  background: #fff;
}

.hs-tabs__tab[aria-selected='true'] {
  background: rgba(24, 160, 251, 0.10);   
  font-weight: bold; font-size:16px;
}

.hs-tabs__tab-wrapper--has-nudges > .hs-tabs__tab:first-child {
  padding-left: 18px;

  /* Add this as a helper for checking bounding box */
  margin-left: 1px;
}

.hs-tabs__tab-wrapper--has-nudges > .hs-tabs__tab:last-child {
  padding-right: 18px;

  /* Add this as a helper for checking bounding box */
  margin-right: 1px;
}

/* Applies border to pseudo element to prevent jitter when hovering over tabs */


/* Tab content */

.hs-tabs__content {
  display: flex;
}

.hs-tabs__content__panel {
  box-sizing: border-box;
  width: 100%;
  padding: 40px 54px;
}
.hs-tabs__content__panel.hs-tabs__content__panel--visible {
    display: block;
}
.hs-tabs__content__panel {
    display: none;
}
.hs-tabs__content  ul {
    padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .hs-tabs__scroll {
    width: calc(100% - 112px);
    margin-left: 56px;
  }

  .hs-tabs__nudge {
    display: flex;
    width: 48px;
    justify-content: center;
  }

  .hs-tabs__nudge--mobile-disabled {
    opacity: 30%;
  }

  .hs-tabs__nudge--right,
  .hs-tabs__nudge--right:active,
  .hs-tabs__nudge--right:hover,
  .hs-tabs__nudge--right:focus {
    justify-content: center;
  }

  .hs-tabs__nudge--left,
  .hs-tabs__nudge--left:active,
  .hs-tabs__nudge--left:hover,
  .hs-tabs__nudge--left:focus {
    justify-content: center;
  }
}


@media only screen and (min-width: 100px) and (max-width: 991px) {
  .hs-tabs__tab-wrapper { display: inline-flex;  justify-content: space-evenly;  flex-wrap: wrap;}
  .hs-tabs__content__panel {display: block; margin-top:70px; position: relative;}
  .hs-tabs__content { display: block;}
  .hs-tabs { display: none;}
  .hs-tabs__content__panel{padding:40px;}
  @media only screen and (max-width: 767px) { 
    .hs-tabs__content ul li {  margin-bottom: 24px;}
  
    
  }
  
}





