/* ||||||||||||||||||||||||||||||||||||||||||||||||*/
/* ESB Section Tabs Module */
/* ||||||||||||||||||||||||||||||||||||||||||||||||*/

.esb-tabs-module__inner {
  display: grid;
  grid-template-columns: 37% 1fr;
  grid-gap: 60px;
}

.esb-tabs-module__tabs-item-number {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* border: 0.54px solid #00000066; */
  /* border-radius: 100%; */
  /* width: 32px; */
  /* height: 32px; */
  /* flex-shrink: 0; */
  /* text-align: center; */
  /* color: rgba(19, 25, 36, 0.5); */
  /* background-color: var(--white); */
  /* z-index: 1; */
  /* position: relative; */
}

.esb-tabs-module__tabs-item-number:before {
  /* content: ""; */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* height: 100%; */
  /* width: 100%; */
  /* border-radius: 100%; */
  /* opacity: 0; */
  /* pointer-events: none; */
  /* background: var(--primaryGradient); */
  /* transition: opacity 0.3s ease; */
}

.esb-tabs-module__tabs-item-number span {
  /* position: relative; */
  /* z-index: 1; */
  /* font-weight: 700; */
  /* color: var(--dark); */
  /* opacity: 0.4; */
}

.esb-tabs-module__tab {
  position: relative;
  border-top: 1px solid rgba(19, 25, 36, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 18px 0;
  width: 100%;
  color: rgba(19, 25, 36, 0.5);
  cursor: pointer;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.esb-tabs-module__tab svg {
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.esb-tabs-module__tab:hover {
  /* color: var(--dark); */
  color: var(--BlueDark);
}

.esb-tabs-module__tab:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.esb-tabs-module__tabs li {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.esb-tabs-module__tabs li::before {
  /* content: ""; */
  /* position: absolute; */
  /* top: 0; */
  /* left: 16px; */
  /* height: 100%; */
  /* width: 0.5px; */
  /* background-color: #13192433; */
}

.esb-tabs-module__tabs li:first-child:before {
  height: 50%;
  top: initial;
  bottom: 0;
}

.esb-tabs-module__tabs li:last-child:before {
  height: 50%;
}

.esb-tabs-module__tabs li.is-active .esb-tabs-module__tab {
  color: var(--new-purple-200);
}


.esb-tabs-module__tabs li.is-active .esb-tabs-module__tab svg path {
    stroke: var(--new-purple-200);
}

.esb-tabs-module__tabs li.is-active .esb-tabs-module__tab svg {
  opacity: 1;
  transform: translateX(4px);
}

.esb-tabs-module__tabs li.is-active .esb-tabs-module__tabs-item-number span {
  /* opacity: 1; */
}

.esb-tabs-module__tabs li.is-active .esb-tabs-module__tabs-item-number::before {
  /* opacity: 1; */
}

.esb-tabs-module__right {
  box-shadow: 0px 4px 25px 0px #0000000a;
  border: 1px solid #1319240f;
  padding: 50px 20px 50px 50px;
  border-radius: 18px;
  position: relative;
  background-color: var(--white);
  z-index: 0;
  height: fit-content;
}
.esb-tabs-module__right .esb-tabs-module__tabs-content {
  max-height: calc(100dvh - 300px);
  overflow: hidden;
  padding-right: 30px;
  scrollbar-gutter: stable;
}
.esb-tabs-module__right .esb-tabs-module__tabs-content:hover {
  overflow: auto;
}
.esb-tabs-module__right .esb-tabs-module__tabs-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
.esb-tabs-module__right
  .esb-tabs-module__tabs-content::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.esb-tabs-module__right
  .esb-tabs-module__tabs-content::-webkit-scrollbar-thumb {
  background: #b9b9b9;
  border-radius: 100px;
}

.esb-tabs-module__right::before {
  position: absolute;
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  z-index: -1;
  --color-scheme: #0060b4;
  /* background: repeating-radial-gradient(
      circle at 30vw 150px,
      rgb(from var(--color-scheme) r g b / 0),
      rgb(from var(--color-scheme) r g b / 0) 10px,
      rgb(from var(--color-scheme) r g b / 0.04) 10px,
      rgb(from var(--color-scheme) r g b / 0.04) 20px
    ),
    linear-gradient(
      180deg,
      rgb(from var(--color-scheme) r g b / 0.03),
      rgb(from var(--color-scheme) r g b / 0.01)
    ); */
  background: var(--new-theme-gray-50);
  mix-blend-mode: color;
}

.esb-tabs-module__right h3,
.esb-tabs-module__right h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 24px;
  font-family: var(--poppins);
}

.esb-tabs-module__right p {
  margin: 30px 0;
}

.esb-tabs-module__right p:first-child {
  margin-top: 0;
}

.esb-tabs-module__right p:last-child {
  margin-bottom: 0;
}

.esb-tabs-module__tabs-content-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 20px;
}

.esb-tabs-module__tabs-content {
  display: none;
}

.esb-tabs-module__tabs-content.is-active {
  display: block;
}

.esb-tabs-module__toggle {
  background-color: var(--PrimaryGreen);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-radius 0.3s ease;
}

.esb-tabs-module__toggle svg {
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.is-open-tab-menu .esb-tabs-module__toggle {
  border-radius: 8px 8px 0 0;
}

.is-open-tab-menu .esb-tabs-module__toggle svg {
  transform: scaleY(-1);
}

.esb-tabs-module__toggle-placeholder {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.esb-tabs-module__tabs-content .esb-text-16 {
  line-height: 1.8;
}

/* .esb-tabs-module__right ul {
  font-size: 16px;
  line-height: 1.8;
} */
.esb-tabs-module__right ul {
}

.esb-tabs-module__tabs-content.esb-point-list ul li::before {
  top: 11px;
}
.esb-tabs-module__tab span {
  font-weight: 600;
}
.esb-tabs-module__tabs {
  max-height: 600px;
  overflow: hidden;
  scrollbar-gutter: stable;
  padding-right: 10px;
}
.esb-tabs-module__tabs:hover {
  overflow: auto;
}

/* ------------------------------------------------ */
/* Desktop Large and Down */
/* ------------------------------------------------ */

@media (max-width: 1919px) {
  .esb-tabs-module__right {
    padding: 30px;
  }

  .esb-tabs-module__inner {
    grid-template-columns: 43% 1fr;
  }

  .esb-tabs-module__right h3,
  .esb-tabs-module__right h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.5;
  }

  .esb-tabs-module__right p {
    margin: 20px 0;
  }
}

/* ------------------------------------------------ */
/* Desktop Smaller and Down */
/* ------------------------------------------------ */

@media (max-width: 1439px) {
  .esb-tabs-module__tab {
    font-size: 18px;
    line-height: normal;
    padding: 18px 10px 18px 0;
  }

  .esb-tabs-module__inner {
    grid-gap: 40px;
  }

  .esb-tabs-module__tabs-content-two-col {
    grid-template-columns: 1fr;
  }

  .esb-tabs-module__tabs-content {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ------------------------------------------------ */
/* Tablet P and Down */
/* ------------------------------------------------ */

@media (max-width: 1023px) {
  .esb-tabs-module__inner {
    display: block;
  }

  .esb-tabs-module__toggle {
    display: flex;
  }

  .esb-tabs-module__left {
    margin-bottom: 15px;
    position: sticky;
    position: -webkit-sticky;
    top: 142px;
    padding-top: 10px;
    z-index: 8;
    background-color: var(--white);
  }

  .esb-tabs-module__tabs {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0px 4px 25px 0px #0000000a;
    border: 1px solid #1319240f;
    z-index: 8;
    padding: 12px 10px;
    display: none;
  }

  .esb-tabs-module__tabs ul {
    max-height: 160px;
    overflow: auto;
  }

  .esb-tabs-module__tab {
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .esb-tabs-module__tabs li {
    gap: 0;
  }

  .esb-tabs-module__tabs-item-number {
    /* display: none; */
  }

  .esb-tabs-module__tabs li::before {
    /* display: none; */
  }

  .esb-sidebar-nav__title-default,
  .esb-sidebar-nav__title-toggle {
    border-radius: 8px;
    padding: 8px 20px;
  }

  .is-open-sidebar-menu .esb-sidebar-nav__title-toggle {
    border-radius: 8px 8px 0 0;
  }

  .on-top .esb-sidebar-nav__menu {
    border-radius: 0 0 8px 8px;
  }

  .esb-tabs-module__right {
    padding: 25px;
  }
}

/* ------------------------------------------------ */
/* Mobile */
/* ------------------------------------------------ */

@media (max-width: 767px) {
  .esb-tabs-module__right h3,
  .esb-tabs-module__right h2 {
    font-size: 22px;
  }

  .esb-tabs-module__right {
    border-radius: 12px;
  }

  .esb-tabs-module__left {
    top: 138px;
  }
}
