

.details-container{
    width: 100%;
}

.details-container .col-1{
    width: 10%;
    float: left;
}

.details-container .col-2{
    width: 20%;
    float: left;
}

.details-container .col-3{
    width: 30%;
    float: left;
}

.details-container .col-4{
    width: 40%;
    float: left;
}

.details-container .col-5{
    width: 50%;
    float: left;
}

.details-container .col-55{
    width: 55%;
    float: left;
}

.details-container .col-6{
    width: 60%;
    float: left;
}

.details-container .col-7{
    width: 70%;
    float: left;
}

.details-container .col-8{
    width: 80%;
    float: left;
}

.details-container .col-9{
    width: 90%;
    float: left;
}

.details-container .col-10{
    width: 100%;
    float: left;
}


.details-container .col-mg-1{
    margin: 2px;
}


#single-map{
    height: 300px;
    margin-left: 20px;
}

.details-container .title{
    font-size: 25px;
    color: #333;
    text-transform: uppercase;
}

.details-container .title-2{
    color: #424242;
    text-decoration: overline;
}

.details-container table{
    border-spacing: 1px;
    border-collapse: collapse;
    background:white;
    border-radius:6px;
    overflow:hidden;
    width:100%;
    margin:0 auto;
    position:relative;
}

.details-container table * {
    position: relative;
}
.details-container table td, table th {
    /*padding-left: 8px;*/
    padding: 0px 0px 0px 0px;
}
.details-container table thead tr {
    height: 40px;
    background: #e8e8e8;
    font-size: 12px;
}

.details-container table thead tr th {
    height: 24px;
    color: #323232;
    text-align: left;
    padding-left: 0px;
    font-size: 13px;
}


.details-container table thead tr th:nth-child(1) {
    padding-left: 5px;
}

.details-container table tbody tr {
    height: 40px;
    border-bottom: 1px solid #E3F1D5;
}
.details-container table tbody tr:last-child {
    border: 0;
}
.details-container table td, table th {
    text-align: left;
}
.details-container table td.l, table th.l {
    text-align: right;
}
.details-container table td.c, table th.c {
    text-align: center;
}
.details-container table td.r, table th.r {
    text-align: center;
}

.details-container table tbody tr td:nth-child(1) {
    font-weight: bold;
    padding-left: 5px;
}

.disbursement-tabcontent,.expenditure-tabcontent,
.funds_budgeted-tabcontent {
    width: 100%;
    padding-top: 30px;
}

.support_fund-tabcontent,
.income_source-tabcontent {
    width: 100%;
    /*padding-top: 10px;*/
}


.separator-mg-1{
    margin: 10px 0px;
    width: 100%;
    position: relative;
    display: inline-block;
}


.separator-mg-2{
    margin: 20px 0px;
    width: 100%;
    position: relative;
    display: inline-block;
}

.stat-box{
    text-align: center;
    float: left;
    display: inline-block;
    margin: 20px 55px 20px 0px;
}

.stat-box .stat-no{
    font-weight: normal;
    color: #d61620;
    font-size: 20px;
}

.stat-box .stat-desc{
    font-weight: bold;
    font-size: 12px;
    color: #333;
}


/* Style the tab */
.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    /*background-color: #f1f1f1;*/
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: #888888 !important;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
     padding: 8px 20px;
    transition: 0.3s;
    border-radius: unset;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #cccccc !important;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #d61620 !important;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}