.module-wrapper {
  width: 100%;
  height: 100%;
}

.lrbt-tab-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tablinks {
  padding: 8px 12px;
  color: #021660;
  border-radius: 5px;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.tablinks:hover {
  background: #E7F5FD;
}
.tablinks:focus {
  outline: 0;
}
.tablinks.active {
  background: #E7F5FD;
  outline: 1px solid #28C2C3;
  font-weight: 600;
}

.tab-content {
  display: none;
}


.tab-image {
  flex: 0 0 50%;
  box-shadow: 
    6px 6px 19px 0px #237A8533,
    26px 23px 34px 0px #237A852B,
    58px 51px 47px 0px #237A851A,
    104px 91px 55px 0px #237A8508,
    162px 142px 60px 0px #237A8500;
}
.text-wrapper {
   flex: 0 0 50%;
   box-sizing: border-box;
   display: flex;
    padding: 0 50px;
    align-items: center;
    justify-content: center;
}
.text-content {
   font-family: "Mulish", sans-serif;
   font-size: 16px;
   line-height: 25px;
   font-weight: 400;
   color: #021660;
   opacity: 80%;
}
.toggle-button {
  display: none;
}

@media (max-width: 948px) {
   .lrbt-tab-wrapper {
      padding: 16px;
      background: white;
      box-shadow: 0px 12px 0px -8px #D3E1E9;
      border-radius: 5px;
      border: 1px solid #CFDEED;
  }
  .tab-content {
    flex-direction: column;
    gap: 24px;
  }
  .tab-content * {
     font-size: 13px;
     line-height: 20px;
    padding: 0px;
    
  }
  .text-content {
/*         overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of lines to show */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; */
  }
  .toggle-button {
    display: flex;
  }
}