.tabbed-container-module .tabs .tab-text{text-align:center;  padding: 0px;    margin-bottom: 0;flex: 1;}
.tabbed-container-module {
    position: relative;
}
.tabbed-container-module .tabs .tab-text > a{
padding: 18px 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(100, 141, 158, 0.4);
    justify-content: center;
    font-size: 2.2rem;
    line-height: 28px;
    font-family: var(--font-black);
    position: relative;
    color: var(--light-teal-2);
}
.tabbed-container-module .tabs .tab-text > a.active:after,  
.tabbed-container-module .tabs .tab-text > a:hover:after{
	content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -1px;
    background: var(--yellow);
}

.tabbed-container-module .tabs .tab-text > a.active,
.tabbed-container-module .tabs .tab-text > a:hover {
    color: var(--white);
}
.tabbed-container-module .tabs .add-space-tab li {
margin-right: 75px;
    flex: unset;
}

.tabbed-container-module .tabs .add-space-tab li:last-child {
    margin-right: 0;
}

.tabbed-container-module .tabbed-content .item {
  display: none;
}
.tabbed-container-module .tabbed-content .item.active {
  display: block;
}
@media screen and (max-width: 991.98px){
.tabbed-container-module .tabbed-content .tabs {
 display: none;
}
.tabbed-container-module .tabbed-content .item {display: block;}
.tabbed-content .item.active .item-content {padding-top: 20px;}
.tabbed-container-module .tabbed-content .item .item-content {height: 0;  visibility: hidden;opacity: 0;  overflow: hidden;  transition: opacity 0.3s ease-in-out;}
.tabbed-content .item.active .item-content {height: auto;visibility: visible;opacity: 1;}

.tabbed-container-module .tabbed-content .item::before {content: attr(data-title);}

.tabbed-content .item {
    border-bottom: 1px solid #648D9E;
    padding: 19px 15px;
    position:relative;
}
.tabbed-content #item---tabs-1 {
    border-top: 1px solid #648D9E;
}
.tabbed-content .item::after {
    position: absolute;
    content: "+";
    transform: translateY(-50%);
    right: 16px;
    top: 50%;
    font-size: 27px;
    color: #fff;
}
.tabbed-content .item.active::after {
    content: '';
    width: 15px;
    font-weight: bold;
    padding-top: 2px;
    background-color: #fff;
    top: 29px;
    right:17px;
}
.tabbed-container-module .tabbed-content .item::before{
font-size:18px;display: block;
    padding-right: 30px;
        position: relative;
    z-index: 100;
    }
    
}