/**
 * Visitors Tabs Block Styles
 *
 * Keeps layout consistent with theme tabs/faq sections.
 *
 * @package osk
 */

.visitors-tabs-section {
  background: #fff;
  /* padding: 40px 0; */
}

.visitors-tabs-section .content-box {
  padding: 0;
}


.visitors-tabs-box {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgb(15 14 14 / 15%);
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

/* Left vertical tab list */
.visitors-tabs-box .tab-btn-box {
  flex: 0 0 28%;
  max-width: 28%;
  border-right: 1px solid #e5e5e5;
  background: #f8fafc;
}

.visitors-tabs-box .tab-btns {
  display: block;
  padding:0;
}

.visitors-tabs-box .tab-btns .tab-btn {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 12px 18px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #253579;              /* theme blue text */
  border-bottom: 1px solid #eceff4;
  background: #ffffff;         /* white like screenshot */
  text-align: center;
  transition: all 0.25s ease;
}

.visitors-tabs-box .tab-btns .tab-btn:last-child {
  border-bottom: none;
}

.visitors-tabs-box .tab-btns .tab-btn.active-btn,
.visitors-tabs-box .tab-btns .tab-btn:hover {
  background: #253579;   /* theme blue background */
  color: #ffffff;        /* white text */
}

/* Right content panel */
.visitors-tabs-box .tabs-content {
  flex: 1;
  max-width: 72%;
  padding: 22px 28px;
}

.visitors-tabs-box .tabs-content .tab {
  background: #ffffff;
}

.visitors-tabs-box .tabs-content .tab .text p {
  margin-bottom: 16px;
  line-height: 26px;
  font-size: 16px;
  color: #0d1126;
  opacity: 0.85;
}

.visitors-tabs-box .tabs-content .tab .text ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.visitors-tabs-box .tabs-content .tab .text ul li {
  margin-bottom: 6px;
}
.tab-btn-box ul li{
  list-style-type: none !important; 
    line-height: 26px !important;
    /* margin-bottom: 20px  !important; */
    font-size: 17px  !important;
    opacity: 100% !important;
    font-weight: 400  !important;
    overflow:visible !important;
  
}

@media (max-width: 767px) {
  .visitors-tabs-section .content-box {
    padding: 0px 20px 10px 20px;
  }

  .visitors-tabs-box {
    flex-direction: column;
  }

  .visitors-tabs-box .tab-btn-box {
    flex: 0 0 auto;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .visitors-tabs-box .tabs-content {
    max-width: 100%;
    padding: 16px 18px;
  }

  .visitors-tabs-box .tab-btns .tab-btn {
    display: block;
    width: 100%;
  }
}

