﻿
.table_dropdown {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table_dropdown_content {
    position: absolute;
    background-color: #bfbfbf;
    border: 1px solid black;
    min-width: 160px;
    max-width: 600px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 5px;
    margin-bottom: 10px;
}


.table_groupHeader {
    background-color: #999999;
}

.tab {
    height: 40px;
    width: 250px;
    border-radius: 10px 10px 0px 0px;
    background-color: red;
    position: relative;
}

.arrow {
    border-color: transparent transparent #FFF #FFF;
    border-style: solid;
    border-width: 23px 23px 23px 23px;
    height: 0;
    width: 0;
    position: absolute;
    bottom: 0px;
    right: -43px;
}

.NestedTable_tabLabel {
    text-align: center; 
    height: 30px; 
    padding: 5px; 
    font-weight: bold; 
    width: 300px; 
    border-radius: 5px 10px 0px 0px; 
    position: relative; 
    display: inline-block; 
    margin-right: 28px; 
    transition: all 0.3s;
}

.NestedTable_tabLabel_arrow {
    border-color: #FFF #FFF transparent transparent; 
    border-style: solid; 
    border-width: 14px 14px 14px 14px;
    height: 0; 
    width: 0; 
    position: absolute; 
    bottom: 0px; 
    right: -24px; 
    transition: all 0.3s;
}

.NestedTable_tabLabel_selected {
    opacity: 1;
}
.NestedTable_tabLabel_not_selected {
    opacity: 0.4;
}


@media screen and (max-width: 900px) {
    .responsiveTable table {
        table-layout: auto;
    }

    .responsiveTable table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: 0px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .responsiveTable table tr {
        border-bottom: 1px solid #bdbdc2;
        border-top: 2px solid #bdbdc2;
        display: block;
        margin-bottom: 6px;
    }

    .responsiveTable table td {
        border-bottom: 1px solid #bdbdc2;
        display: block;
        text-align: right;
        width: 100% !important;
    }

    .responsiveTable table td::before {
        content: attr(data-label);
        float: left;
        color: #bdbdc2;
        font-size-adjust: 0.4;
    }
}   
    
