html {
    font-size: 11px;
}

@media (min-width: 768px) {
    html {
        font-size: 11px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    background-color: #586689;
    border-color: #586689;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 25px;
    background-color: white; /*#f2f2f2;*/
}

.m-0 {
    margin: 0px;
}

.p-10 {
    padding: 0px 10px;
}

input[type=text],
input[type=password],
input[type=date],
input[type=number],
select,
textarea {
    width: 100%;
}

select {
    padding: 2px 0px;
}

.form-group {
    margin-bottom: 5px;
    font-size: 11px;
}

.form-control {
    font-size: 11px;
}

.form-group .control-label {
}


.table {
    font-size: 11px;
}

.title-estimate-cost-tbl tbody,
.title-estimate-cost-tbl td,
.title-estimate-cost-tbl th,
.title-estimate-cost-tbl thead,
.title-estimate-cost-tbl tr {
    border: none;
}
.tbl-no-data-row td {
    font-size: 14px;
    color: darkgray;
    font-weight: bold;
}
.title-estimate-cost-tbl > thead {
    background-color: #586689;
    color: white;
}

    .title-estimate-cost-tbl > thead th {
        padding: 4px 5px;
    }

.title-estimate-cost-tbl > tbody td {
    padding: 5px;
}

.title-estimate-cost-tbl > tbody tr {
    padding: 5px;
    border-bottom: 1px solid gainsboro;
}
/* TABLE HEADING COLUMN WIDTH*/
.title-estimate-cost-tbl th:nth-child(1) {
    width: 40px;
}

.title-estimate-cost-tbl th:nth-child(2) {
    width: 75px;
}

.title-estimate-cost-tbl th:nth-child(4) {
    width: 125px;
}

.title-estimate-cost-tbl th:nth-child(5) {
    width: 125px;
}

.title-estimate-cost-tbl th:nth-child(6) {
    width: 90px;
}
/* TABLE BODY COLUMN DESIGN*/
.title-estimate-cost-tbl td:nth-child(1) {
    text-align: center;
}

.title-estimate-cost-tbl td:nth-child(4) {
    text-align: right;
    padding-right: 40px;
}

.title-estimate-cost-tbl td:nth-child(5) {
    text-align: right;
    padding-right: 45px;
}

.title-estimate-cost-tbl td:nth-child(6) {
    text-align: center;
}

/*.title-estimate-cost-tbl-content {
    margin-top: 15px;
}*/
/*FIELDSET {
    margin: 2px;
    border: 1px solid silver;
    padding: 5px 15px;
}

LEGEND {
    padding: 2px;
    float: none;
    width: auto;
    font-size: 16px;
}
*/
fieldset {
    margin-bottom: 15px;
}

legend {
    background-color: silver;
    color: white;
    padding: 3px 10px;
    font-weight: bold;
    font-size: 11px;
    color: navy;
}


/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #586689;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        font-size: 11px;
        color: white;
        font-weight: bold;
        padding: 3px 10px;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            opacity: 0.7;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #434d67;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-top: none;
    min-height: 150px;
}

.navbar {
    padding: 0px;
    box-shadow: none !important;
    background-color: #586689 !important;
}

.body-container {
    padding: 5px 20px;
    /*max-width: 1100px;
    margin: 0 auto;*/
}

.footer {
    position: fixed !important;
    width: 100%;
    bottom: 0px;
    height: 20px;
    border-top: 1px solid #888888 !important;
    background-color: #dddddd;
    font-size: 12px;
    font-family: Arial, Helvetica;
    color: #555555;
    overflow: hidden;
    z-index: 100;
    padding: 0px 10px;
    line-height: unset !important;
}

.btn {
    padding: 2px 8px;
    border-radius: 0;
}

.btn-primary {
    color: #fff;
    background-color: #586689;
    border-color: #586689;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: #6a748d;
        border-color: #6a748d;
    }

.btn-plan-white {
    color: #586689;
    background-color: #ffffff;
    border-color: #586689;
}
    .btn-plan-white:hover,
    .btn-plan-white:focus,
    .btn-plan-white:active {
        background-color: #f1f1f1;
    }

.button--loading {
    position: relative;
    cursor: not-allowed;
    pointer-events: none;
}

    .button--loading .button__text {
        visibility: hidden;
        opacity: 0;
    }

    .button--loading::after {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border: 4px solid transparent;
        border-top-color: #ffffff;
        border-radius: 50%;
        animation: button-loading-spinner 1s ease infinite;
    }

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}


/*
    Loader
*/
.loader-overlay {
    position: fixed;
    z-index: 10;
    height: 100%;
    width: 100%;
    background-color: #00000073;
}

.lds-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    top: calc(50% - 30px);
}

    .lds-spinner div {
        transform-origin: 40px 40px;
        animation: lds-spinner 1.2s linear infinite;
    }

        .lds-spinner div:after {
            content: "";
            display: block;
            position: absolute;
            top: 3px;
            left: 37px;
            width: 6px;
            height: 18px;
            border-radius: 20%;
            background: white;
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}


/*
   End  Loader
*/
