﻿
/* Basic Styling for the Tabs */
.tabs {
    display: flex;
    flex-direction: row;
}

.tabs .tab-buttons {
    width: 20%;
    display: flex;
    flex-direction: column;
}

    .tabs .tab-buttons .tab-button {
        padding: 12px 10px;
        cursor: pointer;
        background-color: #efefef;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
    }


        .tabs .tab-buttons .tab-button.active {
            color: #682d7d;
            font-weight: bold;
        }

.tabs .tab-content {
    flex-grow: 1;
    padding: 2px 20px;
    width:80%;
}

    .tabs .tab-content .tab-pane {
        display: none;
    }

        .tabs .tab-content .tab-pane.active {
            display: block;
        }

/* Show All Button */
.show-all-btn {
    padding: 10px;
    cursor: pointer;
    background-color: #28a745;
    font-weight: bold;
    border: none;
}

h3.policy_details_title {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #682d7d;
    color: #fff;
    padding: 10px;
    font-weight: bold;
}

.tbl-policydetails {
    font-size: 12px;
}

    .tbl-policydetails tr th {
        background-color: #efefef;
        padding: 8px !important;
    }

    .tbl-policydetails tbody {
        width: 100%;
        display: table;
    }

    .tbl-policydetails tr td:first-child {
        width: 24%;
        border-right: 1px solid #c3cbd3;
    }
.border-right-none {
    border-right: none !important;
}

    .tbl-policydetails tr td {
        padding: 8px !important;
    }

.grey-backgrnd {
    background-color: #efefef;
}

.table td, .table th {
    border-top: 1px solid #c3cbd3 !important;
}

.caps {
    text-transform: uppercase;
}

.tbl-policydetails tr:last-child td {
    border-bottom: 1px solid #c3cbd3;
}


