﻿.hd5 {
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #090329;
}

.nimg {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border: solid;
    border-radius: 50%;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    display: -webkit-box;
}

th, td {
    border: 1px solid black;
    padding: 2px 5px !important;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle !important;
    font-size: small;
}

    td.bold {
        font-weight: 700;
    }

.section {
    border: solid 1px #0903294d;
    padding: 100px 20px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px gray;
    margin: 50px 0;
    position:relative;
}

.proceed {
    padding: 20px;
    background-color: darkslategray;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.input-group-text{
    min-width:260px
}

.section h5 {
    height: 70px;
    background-color: lightgray;
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 20px;
}


header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 94px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 10;
    -webkit-transition: background-color 500ms ease-out;
    transition: background-color 500ms ease-out;
    padding-right: 50px;
}

body.fixed_nav header {
    background-color: #48b10a;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 36, 38, 0.15);
    box-shadow: 0px 0px 8px 0px rgba(34, 36, 38, 0.15);
}

    body.fixed_nav header a {
        color: rgba(0, 0, 0, 0.5);
    }

        body.fixed_nav header a:hover {
            color: rgba(0, 0, 0, 0.7);
        }

        body.fixed_nav header a.logo {
            background-image: url(../img/prologo-color.svg);
        }

        body.fixed_nav header a.button {
            color: #fff;
        }

header a.logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 350px;
    height: 94px;
    background-image: url(../img/prologo-color.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

header nav {
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

    header nav a {
        padding: 15px;
        margin: 0;
        color: rgba(243, 247, 249, 0.85);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
    }

        header nav a:hover {
            color: #f3f7f9;
        }

        header nav a#sidebar_toggle {
            display: none;
            font-size: 19px;
            font-weight: 600;
            margin-right: -15px;
        }

        header nav a.button {
            background-image: -webkit-gradient(linear, left top, right top, color-stop(20%, #fc9206), color-stop(80%, #ffb527));
            background-image: linear-gradient(to right, #46b008 20%, #7bdf04 80%);
            color: #f8f8f8;
            margin-left: 45px;
            -webkit-box-shadow: none;
            box-shadow: none;
            padding-top: 9px;
            padding-bottom: 9px;
            margin-right: 0;
        }

            header nav a.button:hover {
                -webkit-box-shadow: 0px 0px 14px 2px #7c8e9b54;
                box-shadow: 0px 0px 14px 2px #7c8e9b54;
            }

    header nav .dropdown {
        position: relative;
        padding: 15px;
        margin: 0;
        color: rgba(243, 247, 249, 0.85);
        font-weight: 600;
        font-size: 14px;
    }

        header nav .dropdown a {
            padding: 0;
            margin: 0;
        }

        header nav .dropdown .dropdown-menu {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-flow: column;
            flex-flow: column;
            padding: 0;
            left: -15px;
            top: 45px;
            margin: 0px;
            width: -webkit-max-content;
            width: -moz-max-content;
            width: max-content;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: absolute;
            background-color: #f8fcff;
        }

            header nav .dropdown .dropdown-menu > a {
                padding: 6px 0 0 0;
                padding: 7px 25px 9px;
                font-size: 13px;
                color: #8899a4;
            }

                header nav .dropdown .dropdown-menu > a:first-of-type {
                    padding-top: 13px;
                }

                header nav .dropdown .dropdown-menu > a:last-of-type {
                    padding-bottom: 13px;
                }

                header nav .dropdown .dropdown-menu > a:hover {
                    background-color: #f3f7f9;
                }
