﻿
.FormPageHeader {
    background-color: #D13D56 !important;
    color: #ffffff;
    font-weight: bold;
}

.FormPageHeader1 {
    background-color: #12B5CC !important;
    color: #ffffff;
    font-weight: bold;
}

.SearchTextBox {
    width: 60%;
}

/* Start:- Accordion */
.accordion-button {
    background-color: #E7F1FF;
    font-weight: normal;
}

    .accordion-button:focus,
    .accordion-button:not(.collapsed) {
        box-shadow: none;
        border: 1px solid #12B5CC;
        outline: none;
        color: #12B5CC;
    }
/* End:- Accordion */



/* Start:- Main Menu Styles */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

    .menu > li {
        position: relative;
        padding: 8px 12px; /*15px 20px;*/
        color: white;
        cursor: pointer;
    }

        /*.menu > li:hover {
        }*/

/* Dropdown Styles */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00a5c3; /*#12B5CC*/
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
    z-index: 1000;
}

    .submenu li {
        padding: 6px 15px;/*15px*/
        color: white;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .submenu li:hover {
            background-color: #0088a5;
        }

    .submenu li a {
        color:#ffffff;
        text-decoration:none;
    }

/* Show submenu on hover */
.menu li:hover .submenu {
    display: block;
}

/* End:- Main Menu Styles */
