/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

:root {
    --primary-light: #8abdff;
    --primary: #ed796b;
    --primary-dark: #EB6A5A;
    --white: #E4EBF5;
    --greyLight-1: #E4EBF5;
    --greyLight-2: #c8d0e7;
    --greyLight-3: #bec8e4;
    --greyDark: #9baacf;
    --ion-color-orange: #EB6A5A;
    --ion-color-orange-rgb: 235,106,90;
    --ion-color-orange-contrast: #000000;
    --ion-color-orange-contrast-rgb: 0,0,0;
    --ion-color-orange-shade: #cf5d4f;
    --ion-color-orange-tint: #ed796b;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    /* padding: 15px 10px; */
    background: #fff;
    border: none;
    border-radius: 10px;
    margin: 10px 2px;
    /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); */
    box-shadow: 0.8rem 0.1rem 1.4rem var(--greyLight-2), -0.2rem -0.2rem 1.8rem var(--white);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #374a59;
    color: #fff;
    transition: all 0.3s;
}

    #sidebar.active {
        margin-left: -250px;
    }

    #sidebar .sidebar-header {
        padding: 56px 25px;
        background: #ed796b;
    }

    #sidebar ul.components {
        padding: 39px 0px;
    }

    #sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 20px;
        font-size: 18px;
        display: block;
    }

        #sidebar ul li a:hover {
            color: #ed796b;
            background: #fff;
        }

    #sidebar ul li.active > a,
    a[aria-expanded="true"] {
        color: #fff;
        background: #ed796b;
    }

a[data-toggle="collapse"] {
    position: relative;
}



ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #ed796b;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #ed796b;
}

a.article,
a.article:hover {
    background: #ed796b !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 7px 32px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

    #content.active {
        width: 100%;
    }

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }

        #sidebar.active {
            margin-left: 0;
        }

    #content {
        width: 100%;
    }

        #content.active {
            width: calc(100% - 250px);
        }

    #sidebarCollapse span {
        display: none;
    }
}
.panel-success {
    border-color: #d6e9c6;
    margin-top: 30px;
}
/*.navbar {
    padding: 10px 2px;
}*/

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    flex-grow: 1;
    /* Take up remaining horizontal space */
    justify-content: flex-start;
    /* Align logo to the left */
}

.logo-button {
    display: flex;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
}

.logo-image {
    margin-right: 16px;
    width: 30px;
    /* Adjust the width as needed */
    height: auto;
    margin-right: 25px;
    /* Preserve aspect ratio */
}

.logo-text {
    font-size: 1.2rem;
    line-height: 25px;
    margin-right:15px;
}

.navbar-toggler {
    border: none;
}

.navbar-nav {
    flex-grow: 1;
    /* Take up remaining horizontal space */
    justify-content: flex-end;
    /* Align buttons to the right */
}

.nav-link {
    margin-right: 10px;
}



.sticky-top {
    position: sticky;
    top: 0;
    z-index: 999;
    /* overflow: hidden; */
    overflow: initial;
}

#sidebarCollapse {
    display: flex;
    align-items: center;
    justify-content: center;
}

#toggleIcon {
    transition: transform 0.3s ease;
}

.sidebar-collapsed #toggleIcon {
    transform: rotate(180deg);
}

#sidebarCollapse {
    position: absolute;
    top: 47px;
    margin: 9px;
    border-radius: 40px;
    background: #ed796b;
    color: white;
    left: -23px;
    padding: 11px 15px;
    box-shadow: 0 0 0 0 rgb(71, 71, 71);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.h5, h5 {
    font-size: 1.25rem;
}

#sidebarCollapse:hover {
    background-color: #ed796b;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #ef867a;
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.chip {
    display: flex;
    align-items: center;
    /* background: #f8f9fa; */
    /* box-shadow: 0.8rem 0.1rem 1.4rem var(--greyLight-2), -0.2rem -0.2rem 1.8rem var(--white); */
    border-radius: 1rem;
    /* padding: 1rem 1.5rem; */
    position: relative;
    padding-bottom:5px;
    max-width: 100%;
    word-wrap: anywhere;
}

/*@media screen and (min-width: 30em) {
    .chip {
        padding: 15px 10px;
    }
}*/

.navbar-collapse {
    max-height: 340px;
    overflow-x: visible;
     padding-right: 0px; 
     padding-left: 0px; 
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    -webkit-overflow-scrolling: touch;
}

.chip__close {
    padding: 0;
    background: transparent;
    border: none;
    color: inherit;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 120%;
    cursor: pointer;
    transition: all 260ms ease;
}

    .chip__close:hover, .chip__close:focus {
        color: #ef867a;
    }
/* ******************************** */

/* === BUTTONS === */
.button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    border-radius: 1rem;
    padding: 1rem 1rem;
    margin: -5px 12px;
    transition: all 260ms ease;
    text-decoration: none;
    font-family: inherit;
    max-width: 100%;
    color: #9baacf;
    background: #e0e5ec;
    box-shadow: 0.3rem 0.3rem 0.5rem rgba(195, 193, 198, 0.9), -0.2rem -0.2rem 0.4rem #fff;
}

    .button:hover, .button:focus {
        color: #ff7025;
        outline: none;
    }

    .button:active {
        box-shadow: inset 0.2rem 0.2rem 0.5rem rgba(195, 193, 198, 0.9), inset -0.2rem -0.2rem 0.5rem #fff;
    }

.button--raised {
    box-shadow: inset 0.2rem 0.2rem 0.5rem #fff, inset -0.2rem -0.2rem 0.5rem rgba(195, 193, 198, 0.9), 0.3rem 0.3rem 0.5rem rgba(195, 193, 198, 0.9), -0.2rem -0.2rem 0.4rem #fff;
}

.button--pill {
    border-radius: 2.4rem;
}

.button--primary {
    color: #e0e5ec;
    background: #ff7025;
    box-shadow: inset 0.2rem 0.2rem 0.5rem #f8b639, inset -0.2rem -0.2rem 0.5rem #ff4c00, 0.3rem 0.3rem 0.5rem rgba(195, 193, 198, 0.9), -0.2rem -0.2rem 0.4rem #fff;
}

    .button--primary:hover, .button--primary:focus {
        color: #fff;
    }

    .button--primary:active {
        box-shadow: inset 0.2rem 0.2rem 0.5rem #ff4c00, inset -0.2rem -0.2rem 0.5rem #f8b639;
    }

.button--round, .button--square {
    border-radius: 40px;
    /* min-height: 5rem; */
    /* min-width: 6rem; */
    width: 90px;
    HEIGHT: 50PX;
    /* max-height: 5rem; */
    /* max-width: 7rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    COLOR: #000;
    BACKGROUND: #fff;
    padding: 0;
    box-shadow: 0.3rem 0.3rem 0.5rem rgba(195, 193, 198, 0.9), -0.2rem -0.2rem 0.4rem #fff;
}

    .button--round .button__icon, .button--square .button__icon {
        height: 2rem;
        width: 2rem;
    }

.button--square {
    border-radius: 1.2rem;
}

.button--pin {
    border-radius: 50%;
    min-height: 2rem;
    min-width: 2rem;
    max-height: 2rem;
    max-width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .button--pin .button__icon {
        height: 1.8rem;
        width: 1.8rem;
    }
/* ********************************   */
.custom-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin: 3px;
}

.custom-container-right {
    display: flex;
    -ms-flex-wrap: wrap;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;

}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f7f7f7;
}

tr.selectable {
    background: #f7f7f7;
}
.btn1 {
    width: 140px;
    height: auto;
    border: none;
    padding: 6px;
    border-radius: 15px;
    margin: 5px;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    border: none;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    outline: none;
}

.btn__primary {
    grid-column: 1/2;
    grid-row: 4/5;
    outline: none;
    background: var(--primary);
    /* box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem var(--primary-dark), 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white); */
    color: var(--greyLight-1);
}

    .btn__primary:hover {
        color: var(--white);
        border: none;
        outline: none;
    }

    .btn__primary:active {
        box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
        border: none;
        outline: none;
    }

.btn__secondary {
    grid-column: 1/2;
    grid-row: 5/6;
    outline: none;
    color: var(--greyDark);
}

    .btn__secondary:hover {
        color: var(--primary);
        outline: none;
    }

    .btn__secondary:active {
        outline: none;
        box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 0.5rem var(--white);
    }

.btn1 p {
    font-size: 1.6rem;
}



/* **************************************************************** */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* border: 2px solid #333; */
    padding: 10px;

}

    .logo a:hover {
        transform: scale(1.1);
    }

.logo-title {
    font-weight: bold;
    font-size: 24px;
}


.text {
    margin-left: 10px;
    background-color: #eee;
}

    .text p {
        font-family: Arial, sans-serif;
        font-size: 16px;
        color: #333;
    }

        .text p:hover {
            color: #f00;
        }

.logo-text span.logo-title {
 
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.logo-text span.logo-subtitle {
  
    /* font-family: Arial, sans-serif; */
    font-size: 18px;
    color: gray;
    /* font-style: italic; */
    font-weight: 600;
}





/* CSS for the dropdown button */




.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: none;
    min-width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 15px;
    border: none;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

    .dropdown-menu.show {
        display: block;
    }

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333; /* Dropdown item text color */
    background-color: #fff;
    border: none;
    border-radius: 5px;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #f0f0f0;
        border-radius: 5px;
    }


.componentsbox {
    width: auto;
    height: auto;
    border-radius: 5px;
    box-shadow: 0.8rem 0.8rem 1.4rem var(--greyLight-2), -0.2rem -0.2rem 1.8rem var(--white);

    display: flow-root;
    margin: 10px 2px;
    grid-template-columns: 17.6rem 19rem 20.4rem;
    grid-template-rows: repeat(autofit, min-content);
    grid-column-gap: 5rem;
    grid-row-gap: 2.5rem;
    align-items: center;
}

.whitetext {
    font-weight:600px;
    font-size: 17px;
    text-align: center;
    margin-top: 5px;


}
/* CSS for MVC View Page */

/*.panel-heading {
    background-color: #d9534f;
    color: white;
}*/

.panel-body {
    padding: 15px;
}

.form-horizontal .control-label {
    text-align: right;
}

.form-group {
    margin-bottom: 15px;
}

.btn {
    margin-right: 5px;
}

.text-danger {
    color: #d9534f;
}

/* DataTable Styling */
#TenderList {
    width: 100%;
}

/* Other Custom Styles */
.eprocClassDDL,
.eprocClass {
    width: 80px;
    margin-right: 5px;
}

.numbersOnly {
    text-align: right;
}

.chkclass {
    margin-top: 10px;
    margin-bottom: 10px;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(1.25rem + 21px);
}

.col-md-9.flex-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.eprocClassDDL,
.eprocClass {
    flex: 0 0 auto;
    width: 80px;
    margin-right: 5px;
}

.numbersOnly {
    flex: 0 0 auto;
    text-align: right;
    width: 80px;
    margin-right: 5px;
}

#eProcurementTenderID {
    flex: 0 0 auto;
    margin-left: 10px;
}

.panel-default {
    border-color: none;
}
/* Additional Custom Styles as needed */


.panel-heading {
    padding: 10px 15px; /* Adjust the padding as needed */
   
    border-bottom: 1px solid #ddd; /* Add a border at the bottom of the panel-heading */
    font-size: 18px; /* Adjust the font size as needed */
    color: #333; /* Set the text color */
}

    /* Additional styles for the "Tender Documents" section */
    .panel-heading h4 {
        margin: 0; /* Remove any margin to ensure the heading sits flush with the panel-heading */
        font-weight: bold; /* Make the heading text bold */
    }


