﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');


body {
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.container-fluid {
    padding: 0;
    overflow: hidden;
}

.dropdown-menu[data-bs-popper] {
    top: auto;
    left: auto;
}

.mandatoryField {
    color: red;
    font-weight: bold;
    font-size: 16px;
}

.field-validation-error {
    color: red;
    font-weight: bold;
    font-size: 10px;
}
.color-selector {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    margin-top: 10px;
}
.color-selector option{
    border:1px solid red;
}
.page-title {
    --f: 12px; /* control the folded part*/
    --r: 20px; /* control the ribbon shape */
    --t: 10px; /* the top offset */
    text-align: center;
    align-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    width: 60%;
    margin: 0 auto;
    min-height: 70px;
    color: white;
    inset: var(--t) calc(-1*var(--f)) auto auto;
    padding: var(--f) calc(10px + var(--r));
    clip-path: polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%, calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)), var(--r) calc(50% - var(--f)/2));
    background: linear-gradient(45deg,#2B4568, #AE0000,#2B4568);
    box-shadow: 0 calc(-1*var(--f)) 0 inset #AE0000;
    text-transform: uppercase;
}

.btnClick {
    background: linear-gradient(60deg,#2B4568,blue,#2B4568);
    color: #d1d3e1;
    padding: 8px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

    .btnClick:hover {
        background: linear-gradient(60deg,maroon,red,maroon);
    }

a {
    text-decoration: none;
}

.bg-colored {
    padding: 0px 20px;
    box-shadow: 0px 2px 5px white;
}

    .bg-colored a {
        display: block;
        width: 100%;
        height: 40px;
        background: linear-gradient(120deg,darkred,#2B4568,maroon);
        margin: 5px auto;
        padding: 0px 5px;
        text-align: center;
        border-radius: 5px;
        color: white;
        font-weight: bold;
        line-height: 35px;
    }
/*=================================================================TopBar============================================================================================================*/
.topbar {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(45deg,#2B4568,#00123c,#800000,#00123c,#800000);
    padding: 5px;
}

    .topbar div span {
        flex-grow: 3;
    }

.topsection1 {
    color: red;
}

.topsection2 {
    color: white;
}
/*=================================================================BrandNavBar============================================================================================================*/
.brandNavbar {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    box-shadow: 5px 5px 5px grey;
    padding: 0.5rem;
}

.brand {
    display: flex;
    text-align: center;
    padding: 2px;
}

    .brand div {
        flex-grow: 1;
    }

#imgLogo {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
}

.appName {
    color: maroon;
    font-size: 30px;
    font-weight: 700;
}

.appDesc {
    color: #000000;
    font-size: 20px;
    display: block;
    font-weight: 700;
}

.memberStates {
    display: flex;
    justify-content: end;
}

    .memberStates a {
        display: inline-block;
        text-align: center;
        height: 80px;
        width: 60px;
        text-decoration: none;
        padding: 2px;
    }

        .memberStates a img {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            border: 2px solid darkred;
            /* margin: 1% 0 1% 0;*/
        }

    .memberStates p {
        font-size: 10px;
        font-weight: bold;
        color: maroon;
    }
/*=================================================================Collapsible Sidebar============================================================================================================*/
.wrapper {
    display: flex;
    align-items: stretch;
    padding: 0px;
    height: 100%;
}

.sidebar {
    flex: 0 0 5em;
    height: auto !important;
    padding: 10px;
    /* background-color: #2B4568;*/
    transition: all 0.5s ease;
    z-index: 100;
}

    .sidebar.close {
        width: 80px;
        transition: all 0.5s ease;
    }

        .sidebar.close .text {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
        }

@media (max-width: 576px) {
    .sidebar {
        width: 80px;
        transition: all 0.5s ease;
    }

        .sidebar .text {
            display: none;
            opacity: 0;
            pointer-events: none;
        }
}

.toggle {
    /* position: absolute;*/
    /* top: 95px;
    left: -2px;*/
    /*z-index: 1;*/
    /* transform: translateY(-50%) rotate(180deg);*/
    height: 30px;
    width: 30px;
    color: white;
    /* display: flex;*/
    /* align-items: center;
    justify-content: center;*/
    text-align: center;
    /* font-size: 30px;*/
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid white;
    background-color: #2B4568;
    color: white;
    padding: 4px;
    /* border-radius: 50%;*/
}

.sidebar.close .toggle {
    /* transform: translateY(-50%) rotate(0deg);*/
    /* top: 110px;
    left: -2px;*/
}




.sidebar .menu-bar {
    margin-top: 1%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar.close .menu-bar {
    margin-top: 1%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar .nav-pills li {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    border-left: 4px solid maroon;
    box-shadow: 2px 2px 15px 1px #2B4568;
    width: 100%;
    margin-bottom: 5px;
}
.sidebar.close .nav-pills {
    width:60px;
}

    .sidebar .icon {
        min-width: 40px;
        border-radius: 6px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

.sidebar .text,
.sidebar .icon {
    color: var(--text-color);
    transition: all 0.2s ease;
    font-weight: 600;
}

.sidebar .nav-link {
    display: flex;
    padding: 10px 0px;
    color: #2B4568;
    font-size: 26px;
    position: relative;
    width: auto;
}
.sidebar.close .nav-link {
    width:60px;
}
    .sidebar .nav-link:hover,
    .sidebar .nav-link.active {
        /* background-color: maroon;*/
        color: maroon;
    }


    .sidebar .nav-link img {
        height: 20px;
        width: 20px;
    }

.sidebar.close .nav-link img {
    height: 30px;
    width: 30px;
}

.sidebar .nav-pills .nav-link {
    border-radius: unset;
}



.sidebar .nav-pills li:hover,
.sidebar .nav-pills li.active {
    color: #0c7db1;
    background: white;
}



.sidebar .text {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}






.section {
    flex: 1;
    color: #000;
    padding: 10px;
}


/*=================================================================Collapsible Sidebar============================================================================================================*/
.heading {
    font-weight: 600;
    /*text-transform: uppercase;*/
    /*font-family: "Montserrat",sans-serif;*/
    color: #00123c;
    font-size: 18px;
}

.link-br a, .link-br span a {
    border: 1px solid;
    padding: 8px 8px;
    display: inline-block;
    line-height: 22px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #FFF;
    border-color: #FFF;
}

    .link-br a i {
        font-weight: 700;
    }

/*==================FORM CONTROLS=========================================================================================*/
.accordion-button:not(.collapsed) {
    background-color: #2B4568;
    color: white;
    box-shadow: none;
    height: 20px;
}

    .accordion-button:not(.collapsed)::after {
        color: white;
    }

.accordion-button {
    margin-bottom: 0;
    color: white;
}

.accordion-body {
    border: 1px solid lightgrey;
    /* box-shadow: inset 1px 1px 1px 2px lightgrey;*/
}

.form-select:disabled {
    background-color: #dde3e9;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2B4568;
}

.form-select, .form-control {
    border: 0.2px solid black;
    border-radius: 1px 1px;
    width: 85%;
    height: 35px;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 10%);
    font-family: 'Roboto', sans-serif;
    border: 1px solid #ccc;
}

form div.row {
    margin: 1rem !important;
}

.searchform {
    width: 80%;
    justify-content: space-between;
    padding: 2rem;
    margin: auto;
    box-shadow: 0 0 15px grey;
    /* box-shadow: 3px 1px 10px grey;*/
}

.btnModal {
    min-width: 100px;
    height: 40px;
    display: inline-block;
    margin: 0.5em;
    padding: 0.5em 1em;
    border: none;
    background: maroon; /* linear-gradient(45deg,#2B4568, #f69d3c);*/
    color: #ffff;
    font-weight: bold;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

    .btnModal:hover {
        outline: none;
        border: 3px solid maroon;
        background: white;
        color: black;
    }
    .btnModal:disabled {
        background: #a94c4c;
    }
    /*================================================LOgin Form=================================================================*/
    .formBox {
        height: 60%;
        width: 40%;
        margin: 4% auto;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.1);
        box-shadow: 0 0 40px grey;
        padding: 1% 2%;
    }

    .formBox .form-control, #CaptchaInputText {
        border: 0.3px solid black;
        border-radius: 3px;
        width: 100%;
        height: 35px;
        border: 1px solid #2B4568;
        padding: 0 10px;
        font-size: 14px;
        font-weight: 300;
    }

#CaptchaImage {
    /*  width: 100%;*/
    border: 1px solid #2B4568;
    /* height: 70px;*/
}

.form-row div label {
    font-weight: bold;
    color: #00123c;
    font-size: 16px;
    display: inline-block;
}

.formBox button {
    margin-top: 5%;
    width: 100%;
    background: linear-gradient(60deg,#2B4568,maroon);
    color: #d1d3e1;
    padding: 4% 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}


    .formBox button:hover {
        /* color: #000000;*/
        background: linear-gradient(60deg,#243b55,maroon,#243b55);
    }

/*=====================================================Messaging Grid======================================================================*/
#messagingGrid {
    background: transparent;
    border-collapse: collapse;
}

    #messagingGrid thead {
        background: #2B4568;
        height: 50px;
        text-align: center;
    }

    #messagingGrid tbody tr {
        box-shadow: 2px 2px 5px #2B4568;
    }

    #messagingGrid th, td {
        background: transparent;
        color: white;
    }
/*===========================================================================================================================================*/










/*=====================================================Modal Popups=======================================================*/
.modal-header {
    background: linear-gradient(45deg,#2B4568,maroon,#2B4568);
    color: white;
}

    .modal-header .btn-close {
        color: white;
    }

.modal-footer {
    border-top: 5px solid maroon;
}

    .modal-footer button {
        background: linear-gradient(45deg,#2B4568,maroon);
        color: white;
        padding: 0.3em 1em;
        font-size: 18px;
        font-weight:700;
    }

        .modal-footer button.btn-reset {
            background: #fff;
            color: #0a2346; /* dark navy */
            border: 4px solid #bcc0ce; /* light gray-blue */
            border-radius: 5px;
            font-size: 18px;
            font-family: inherit;
            padding: 0.1em 0.4em;
            font-weight: 400;
            box-shadow: none;
            transition: box-shadow 0.2s, border-color 0.2s;
            outline: none;
        }

            .modal-footer button.btn-reset:hover,
            .modal-footer button.btn-reset:focus {
                border-color: #8d93a4;
                box-shadow: 0 0 0 2px #bcc0ce44;
                color: #0a2346;
                background: #f8f9fa;
            }
/*=====================================================Modal Popups=======================================================*/
/*==================FOOTER SECTION=========================================================================================*/
#footer {
    /* background-color: #212121;*/
    background: linear-gradient(45deg,#00123c,#2B4568,#00123c);
    padding: 0 0 10px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        padding: 20px 0 0;
        text-align: left;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 5px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Montserrat", sans-serif;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #157ea3;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #428bca;
                color: #fff;
                text-decoration: none;
                transform: scale(1.3);
                color: #f1f1f1;
            }


        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 5px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #FFF;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                    text-decoration: none;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #9eccf4;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #428bca;
                color: #fff;
                transition: 0.3s;
                border-radius: 4;
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #5295ce;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 10px;
    }

        #footer .copyright a {
            color: #8edaff;
            text-decoration: none;
        }

    #footer .credits {
        font-size: 13px;
    }

        #footer .credits a {
            font-size: 13px;
            color: #ec1425;
            margin-right: 5px;
            margin-left: 5px;
            text-decoration: none;
        }
/*==================FOOTER SECTION  END =========================================================================================*/

/**************************************************  MEDIA QUERIES(for App Responsive)*****************************************************************************/

/*extra small*/
@media (min-width: 200px) and (max-width: 319px) {
    .appName {
       font-size:20px;
    }

    .appDesc {
        font-size: 10px;
    }

    #toggleMembers {
        display:flex;
        flex-flow:wrap;
    }
    .memberStates{
        justify-content:normal;
        margin-top:30px;
    }
    .memberStates a{
        width:50px;
    }

    .page-title {
        font-size: 10px;
        font-weight: 300;
        width: 100%;
    }
}

/*small*/
@media (min-width:319px) and (max-width: 480px) {
    .page-title {
        font-size: 20px;
        font-weight: 400;
        width: 100%;
    }

    #toggleMembers {
        display: flex;
        flex-flow: wrap;
    }

    .memberStates {
        justify-content: center;
        margin-top: 20px;
    }

        .memberStates a {
            width: 60px;
        }



}





/*medium*/
@media (min-width:480px) and (max-width: 575px) {
    .page-title {
        font-size: 25px;
        font-weight: 600;
        width: 100%;
    }
    #toggleMembers {
        display: flex;
        flex-flow: wrap;
    }
    .memberStates {
        justify-content: center;
        margin-top: 20px;
    }

}

@media (min-width:575px) and (max-width: 769px) {
    .page-title {
        font-size: 25px;
        font-weight: 600;
        width: 100%;
    }
    #toggleMembers {
        display: flex;
        flex-flow: wrap;
    }
   
    

}





/*large*/
@media (min-width:769px) and (max-width: 1024px) {
    
}





/*xl*/
@media (min-width:1025px) and (max-width: 1200px) {
}

/*xxl*/
@media only screen (min-width:1201px) {
    .page-title {
        font-size: 40px;
        font-weight: 900;
        width: 100%;
    }
}
