
/*vertical Tabs DCE (Creative)*/
.dce-vertical-tabs,
.dce-vertical-tabs *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.tabs-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    float: left;
    width: 20%;
}
.tab-content {
    width: 80%;
    float: left;
}
.tabs-nav li {
    background-color: #F2F5F8;
}
.tabs-nav li > a {
    display: block;
    padding-left: 20px;
    height: 60px;
    line-height: 60px;
    width: 100%;
    cursor: pointer;
    position: relative;
}
.tabs-nav li > a,
.tabs-nav li > a:hover {
    color: #000;
}
.tabs-nav li + li > a {
    border-top: 1px solid #DCDFE2;
}
.tabs-nav li.selected {
    background-color: #24AA98;
}
.tabs-nav li.selected > a,
.tabs-nav li.selected > a:hover {
    color: #FFF;
}
.tabs-nav li.selected > a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 100%;
    z-index: 2;
    border-width: 30px 30px 30px 21px;
    border-style: solid;
    border-color: transparent transparent transparent #24AA98;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    transition: all 0.3s ease 0s;
}
.tab-content {
    background-color: #F2F5F8;
}
.tab-content .inner {
    display: table;
    padding: 60px;
    position: relative;
}
.tab-content .text {
    color: #FFF;
    position: relative;
    z-index: 5;
}
.tab-content .text h1,
.tab-content .text h2,
.tab-content .text h3,
.tab-content .text h4,
.tab-content .text h5 {
    margin-top: 0;
    color: #FFF;
}
.tab-bg {
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    width: 100%;
}

.tab-content .overlay {
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dce-vertical-tabs::after,
.dce-vertical-tabs::before {
    content: "";
    display: table;
    clear: both;
}

@media only screen and (max-width: 991px) {
    .tabs-nav,
    .tab-content {
        width: 100%;
    }
    .tabs-nav li {
        float: left;
        border: none;
        width: 100%;
    }
    .tabs-nav li > a {
        padding: 0 20px;
    }
    .tabs-nav li.selected > a::before {
        display: none;
    }
    .tab-content .inner {
        padding: 15px;
    }
}
/*vertiacl Tabs DCE END*/