ul, ol {
    list-style: none;
}
li::marker {
    content: none; 
}
/* Tabs Container */
.tap-tabs {
  font-family: Arial, sans-serif;
  margin: 20px 0;
}

/* Tab Navigation */
.tap-tab-nav {
  list-style: none;
  display: flex;
  color: rgba(0, 161, 156, 1);
  padding: 0px !important;
}
.tap-tab-nav li {
    flex: 1;            
    font-size: 16px;   
    text-align: center;     
    cursor: pointer;
    padding: 10px;        
    border: 1px solid rgba(0, 161, 156, 1);
    font-weight: 700;
    white-space: nowrap;       
    overflow: hidden;          
    text-overflow: ellipsis; 
}
.tap-tab-nav li:hover {
  background: #eee;
}
.tap-tab-nav li.active {
  background: rgba(0, 161, 156, 1);
  font-weight: bold;
  color: #fff;
}

/* Tab Content */
.tap-tab-content {
  display: none;
  padding: 15px;
  background: #fff;
}
.tap-tab-content.active {
  display: block;
}

/* Accordion */
.tap-accordion-header {
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 161, 156, 1);
}

.tap-accordion{
  display: grid;
  gap: 20px;
}

.tap-accordion-body {
  display: none;
  padding: 16px 24px;
  font-size: 16px;
}
.tap-accordion-item.active .tap-accordion-body {
  display: block;
}

.tap-accordion-item,
.tap-accordion-item.active{
  box-shadow: 2px 2px 10px 2px rgba(209, 209, 209, 1);
  border-radius: 10px;
}

#tam-builder .tam-tab-block.postbox.odd {
  background-color: #ffffff;
}

#tam-builder .tam-tab-block.postbox.even {
  background-color: #92afff;
}
