nav>.nav.nav-tabs {
    border: none;
    /* color: #fff; */
    /* background: #272e38; */
    border-radius: 0;
    margin: 0px 15px;
    padding: 0;
    background: var(--black2);
    border-radius: 15px 15px 0px 0px;
}

.table-nav a.nav-item.nav-link {
    border: none;
    padding: 10px 25px;
    color: var(--white);
    /* background: var(--white); */
    border-radius: 15px 15px 0px 0px;
    font-size: 16px;
    font-family: var(--font-family-title);
    border-bottom: 0;
    margin-bottom: 0;
}

.table-nav a.nav-item.nav-link:hover,
.table-nav a.nav-item.nav-link:focus {
    border: none;
    color: var(--white);
    background: #707070;
    transition: 0.3s all ease-in-out;
    border-bottom: 0;
}

.table-nav a.nav-item.nav-link.active {
    border: none;
    background: linear-gradient(135deg, #7d3026 0, #ca3e27 100%);
    color: var(--white);
    transition: 0.3s all ease-in-out;
    border-bottom: 0;
    position: relative;
    /* border: 15px solid transparent;
    border-top-color: #0462d4; */
    font-weight: 500;
}

.table-nav a.nav-item.nav-link.active:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ca3e27;
    position: absolute;
    content: '';
    bottom: -12px;
    left: 50%;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    /* arrow */
}

.tab-content {
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #e1e1e1;
    border-top: 5px solid #ca3e27;
    padding: 30px 25px;
    border-radius: 15px;
    /* 
    border-image: linear-gradient(to right, #631be1 0, #0462d4 100%) 1;
    border-radius: 5px;
    border-top-width: 5px;
    border: 1px solid #e1e1e1;
    border-style: solid; */
}

.tab-content table th {
    font-family: var(--font-family-title);
}

.curly-brace {
    position: relative;
}

.curly-brace::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    border-radius: 0 10px 10px 0;
    transform: rotate(0deg);
}

.curly-brace::before {
    content: "&rcub;";
    top: 0;
    font-size: 140px;
    line-height: 100%;
    height: 100%
}

tr td {
    vertical-align: middle;
}

.table_in_td {
    vertical-align: top;
}

.inner_table tr td {
    border: none;
    padding: .2rem .2rem;
    vertical-align: middle;
}

.inner_table td:first-child {
    width: 200px;
}

.table-lh {
    line-height: 17px;
}


/* scrolling tabs */

@media screen and (max-width: 991px) {
    .wrapperScroll {
        position: relative;
        margin: 0 15px;
        overflow: hidden;
        height: 60px;
        overflow-x: auto;
        padding: 0;
        border-radius: 15px 15px 0px 0px;
        background: var(--black2);
    }
    .wrapperScroll .scrollable {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        word-break: unset;
        margin: 0 !important;
    }
    .table-nav a.nav-item.nav-link {
        border-radius: 15px;
    }
    .table-nav a.nav-item.nav-link.active:after {
        display: none;
    }
}