 

.cookiecommander-table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    flex-direction: row;
    margin-bottom: 30px;
}

.cookiecommander-table-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}


.cookiecommander-column {
    padding: 3px;
    display: flex;
    align-items: center;
}

.cookiecommander-column.name-column {
    width: 30%;
}

.cookiecommander-column.category-column {
    width: 10%;
}

.cookiecommander-column.description-column {
    width: 50%;
}

.cookiecommander-column.duration-column {
    width: 10%;
}

.cookiecommander-table-row:nth-child(even) .cookiecommander-column {
    color: #111111;
    background: #f3f5f7;
}
.cookiecommander-table-row:nth-child(odd) .cookiecommander-column {
    color: #111111;
    background: #f3f5f7;
}

.cookiecommander-table-row.header .cookiecommander-column {
    color: #ffffff;
    background: #3a4856;
}

.cookiecommander-tab:focus {
    box-shadow: none;
}

.cookiecommander-tab:not(.cookiecommander-active):hover {
    color:#fff;
}

@media (max-width: 992px) {
    
    .cookiecommander-column.category-column {
        width: 15%;
    }
    .cookiecommander-column.description-column {
        width: 45%;
    }
}

@media (max-width: 768px) {
    
    .cookiecommander-column.category-column {
        width: 20%;
    }
    .cookiecommander-column.description-column {
        width: 35%;
    }
    .cookiecommander-table {
        font-size: 11px;
    }
    
}0