/*=============================================
=            Tab Slider section            =
=============================================*/

.tabbed-slider .tabs {
    text-align: center;
    padding: 0 0 30px;
}

.tabbed-slider .tabs li.tab-li {
    display: inline-block;
    margin: 0 30px;
}

[data-tab-content] {
    display: none;
    opacity: 0;
    /* transition: .3s ease all; */
}
  
.active[data-tab-content] {
    display: block;
    opacity: 1;
}

.tab-contents {
    position: relative;
}

.tab-contents > div:not(:first-child) {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
}

.tab {
    flex: 1;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px;
}
  
.tab-li {
    flex: 1;
    margin-bottom: 0;
}
  
.tab-li a {
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
    display: block;
}

a.tab-li__link::after {
    content: '';
    height: 4px;
    width: 100%;
    display: block;
    opacity: 0;
    background: #CFB87C;
    margin-top: 5px;
    transition: .3s ease all;
}

a.tab-li__link.active::after {
    opacity: 1;
}
  
.tab-li a {
    text-decoration: none;
    white-space: nowrap;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    display: block;
    transition: .3s ease all;
}

.tab-li .tab-li__link > h6 {
    margin-bottom: -5px;
    font-size: 14px;
    letter-spacing: 1px;
}

/*=====  End of Tab Slider section  ======*/