﻿.side-barCustom {
    width: 23.2rem;
    height: 100%;
    padding: 2.1rem 1.2rem;
    background-color: #17171e;
    position: fixed;
    transition: all 0.5s ease;
    top: 0;
    margin: 0;
    box-sizing: border-box;
    white-space: nowrap;
}

    .side-barCustom.collapseBar {
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.5s ease;
        opacity: 1;
        width: 6.4rem;
        white-space: nowrap;
    }

.collapseBar a {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0);
    white-space: nowrap;
}


.sidebar-menu {
    margin-top: 10rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #292932;
    list-style: none;
    white-space: nowrap;
    padding-left: 0.3em;
}

    .sidebar-menu a {
        color: #FFFFFF;
        text-decoration: none;
        white-space: nowrap;
    }

    .sidebar-menu li {
        display: flex;
        align-items: center;
        position: relative;
        padding: 0.5rem 0.9rem;
        margin-bottom: 1.1rem;
        color: #ffffff;
        cursor: pointer;
        transition: 0.5s ease;
        white-space: nowrap;
    }

    .sidebar-menu i {
        padding-right: 10px;
    }

.mainContainerC {
    left: 23.2rem;
    position: relative;
    transition: all 0.5s ease;
    width: 84%;
}

    .mainContainerC.collapseMain {
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.5s ease;
        opacity: 1;
        left: 6.4rem;
        padding-top: 4rem;
        width: 95%;
    }

.PageHeadingC {
    font-family: Arial;
    font-weight: 200;
    font-size: 20px;
    text-align: center;
    padding: 15px;
}

.mainButtons {
    padding-top: 10px;
    background-color: #4B94AB;
    padding-bottom: 10px;
    margin-left: -15px;
    margin-right: -15px;
}

.custButton {
    display: table-cell !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.subMenu {
    text-decoration: none !important;
    padding: 10px !important;
    color: #FFFFFF !important;
}

    .subMenu:hover {
        text-decoration: underline !important;
        background-color: #305F6E !important;
        color: #FFFFFF !important;
    }

.sectionHeading {
    font-size: 1.35em !important;
    font-weight: 500 !important;
}

legend {
    font-size: 1.35em !important;
    font-weight: 500 !important;
    background-color: #f2f2f2 !important;
    color: #000000 !important;
}

#bidForm h3 {
    font-size: 1.35em !important;
    font-weight: 500 !important;
    background-color: #f2f2f2 !important;
    color: #000000 !important;
}

.required {
    color: #000000 !important;
}
input[type=text], select, textarea {
    width: 100%;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-size: 1.23em;
}

/* Style the label to display next to the inputs */
label {
    /*padding: 12px 12px 12px 0;*/
    display: inline-block;
    font-size: 1.15em;
}

/* Style the submit button */
input[type=button] {
    background-color: #305F6E;
    color: white;
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

/* Style the container */
.container1 {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
    font-size: 0.8em;
}

/* Floating column for labels: 25% width */
.col-25 {
    float: left;
    width: 25%;
}

.col-22 {
    float: left;
    width: 22%;
}

    .col-22 label {
        padding-top: 10px !important;
    }

/* Floating column for inputs: 75% width */
.col-75 {
    float: left;
    width: 75%;
}


/* Clear floats after the columns */
.row1 {
    padding-bottom: 5px;
}

    .row1:after {
        content: "";
        display: table;
        clear: both;
    }

/* Responsive layout-when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

.gap {
    height: 10px;
    font-size: 0.001em;
}

.mandatory {
    color: red;
    font-weight: bold;
    font-size: 1.5em;
}

.controlError {
    border: 2px solid red !important;
}

.steps a {
    text-decoration: none !important;
}
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}
.w3-container:after, .w3-container:before, .w3-panel:after, .w3-panel:before, .w3-row:after, .w3-row:before, .w3-row-padding:after, .w3-row-padding:before,
.w3-cell-row:before, .w3-cell-row:after, .w3-clear:after, .w3-clear:before, .w3-bar:before, .w3-bar:after {
    content: "";
    display: table;
    clear: both;
}

.w3-container, .w3-panel {
    padding: 0.01em 16px
}

.w3-modal {
    z-index: 3;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4)
}

.w3-modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 0;
    outline: 0;
    width: 30%;
    min-height: 120px;
}

@media (max-width:600px) {
    .w3-modal-content {
        margin: 0 10px;
        width: auto !important
    }

    .w3-modal {
        padding-top: 30px
    }

    .w3-button {
        width: 100%
    }
}

@media (max-width:768px) {
    .w3-modal {
        padding-top: 50px
    }
}

.w3-panel:before {
    content: "";
    display: table;
    clear: both
}

.w3-panel {
    padding: 0.01em 16px;
    margin-top: 16px;
    margin-bottom: 16px
}

.w3-display-topright {
    position: absolute;
    right: 5px;
    top: 0
}
.panel-heading {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQCAYAAABvWArbAAAANUlEQVQ4je3LMQoAIBADwb38/6t5wFXaWAiCtUiaYZvF9hBACOFbuntVVe11B0CSjjeE8BwThQIJ8dhEl0YAAAAASUVORK5CYII=) !important;
    border: 1px solid #d3d3d3 !important;
    border-radius: 4px !important;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.advisoryTypeHeading {
    font-weight: 700;
    background-color: #EFEFEF;
    padding: 3px;
}