:root {
    --bs-greyblack: #333333;
    --bs-white: #ffffff;
    --bs-blue: #009edb;
    --bs-black: #000;
    --bs-darkblue: #006FB7;
    --bs-lightblue: #55C8FF;
}

body {
    font-family: "Open Sans", sans-serif;
}

h1:focus {
    border: 0px !important
}

h1:focus-visible {
    border: 0px !important;
    outline-width: 0px !important
}

a {
    color: var(--bs-blue);
    text-decoration: none;
}

    a:hover {
        color: var(--bs-greyblack) !important;
        text-decoration: none;
    }

.theme-button {
    background: var(--bs-blue) !important;
    color: var(--bs-white) !important;
}

    .theme-button:hover {
        background: var(--bs-darkblue) !important;
        color: var(--bs-white) !important;
    }

.theme-transparent-button {
    color: var(--bs-blue) !important;
    border-color: var(--bs-blue) !important;
    background: var(--bs-white) !important;
}

    .theme-transparent-button:hover {
        color: var(--bs-white) !important;
        border-color: var(--bs-blue) !important;
        background: var(--bs-blue) !important;
    }

.form-control::placeholder {
    color: var(--bs-black)
}

.main-container {
    min-height: 350px;
    max-height: max-content
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: var(--bs-greyblack);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    #header .logo img {
        max-height: 55px;
        width: 157px;
        margin: 1rem 0rem;
    }

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
    max-height: 56px;
}

    .header-social-links a {
        color: #a0a0a0;
        display: inline-block;
        line-height: 0px;
        transition: 0.3s;
        padding-left: 20px;
    }

        .header-social-links a:hover {
            color: var(--bs-blue);
        }



@media (max-width: 768px) {
    #header .select ul li:first-child {
        display: block !important
    }

    .header-social-links {
        padding: 0 15px 0 0;
        border-left: 0;
    }

    .select ul li.nav-item {
        background-color: var(--bs-white);
        box-shadow: 0px 1px 0 var(--bs-blue), 0px -1px 0 var(--bs-blue);
        -webkit-box-shadow: 0px 1px 0 var(--bs-blue), 0px -1px 0 var(--bs-blue);
        -moz-box-shadow: 0px 1px 0 var(--bs-blue), 0px -1px 0 var(--bs-blue);
    }

        .select ul li.nav-item:hover {
            background-color: var(--bs-white);
        }

    .select ul li.nav-item {
        z-index: 1;
        padding: 5px;
        list-style: none;
    }

    .select ul li:first-child {
        display: block;
    }

    .select ul li {
        cursor: default;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.selectcontainer {
    color: var(--bs-blue) !important;
    border: 1px solid var(--bs-blue) !important;
    background: var(--bs-white) !important;
    padding: 0.1rem 0.2rem;
    font-size: 14px;
    margin: 0.2rem 0rem;
}

.selectlanguage .nav-item {
    border-bottom: 2px solid var(--bs-blue);
    cursor: pointer;
}

    .selectlanguage .nav-item .active {
        color: var(--bs-black) !important;
        cursor: not-allowed;
    }

.languageDropdown {
    min-width: 8rem !important;
}

.navbar {
    padding: 0;
    background: var(--bs-white);
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem;
        font-size: 14px;
        font-weight: 600;
        color: var(--bs-blue);
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: var(--bs-white) !important;
            background: var(--bs-blue);
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 0px;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-top: 2px solid var(--bs-blue);
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
            color: var(--bs-blue);
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: var(--bs-white);
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 2;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
    width: 100%
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #111;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: var(--bs-white);
        }

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #1bbd36;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Select Language
--------------------------------------------------------------*/
.selectlanguage {
    text-align: right;
    padding: 0.27rem 0rem;
}

.nav-link {
    color: var(--bs-blue)
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: var(--bs-greyblack);
}

    #footer .social-links a {
        background: rgba(255, 255, 255, 0.08);
        color: var(--bs-white);
        line-height: 1;
        padding: 0.5rem;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .social-links a:hover {
            background: var(--bs-blue);
            color: var(--bs-white);
            text-decoration: none;
        }

/*--------------------------------------------------------------
# Advance Search page
--------------------------------------------------------------*/
.plus-minus-btn {
    display: flex
}
/* Centering text in single line */
.un-style-nav li.nav-item:first-child a.nav-link,
.un-social-btns-nav li.nav-item a.nav-link,
.footer-bar .col:first-child,
.un-style-footer-nav li.nav-item a.nav-link,
.un-user-btns-nav li.nav-item.dropdown a.nav-link.dropdown-toggle {
    display: flex;
}

    .un-style-nav li.nav-item:first-child a.nav-link div,
    .un-social-btns-nav li.nav-item a.nav-link div,
    .footer-bar .col:first-child .copyright,
    .un-style-footer-nav li.nav-item a.nav-link div,
    .un-user-btns-nav li.nav-item.dropdown a.nav-link.dropdown-toggle {
        margin: auto;
    }

.un-user-btns-nav li.nav-item.dropdown a.nav-link.dropdown-toggle {
    padding-top: 15px;
}

    .un-user-btns-nav li.nav-item.dropdown a.nav-link.dropdown-toggle i.bi {
        font-size: 25px;
        line-height: 30px;
    }

    .un-user-btns-nav li.nav-item.dropdown a.nav-link.dropdown-toggle::after {
        margin-top: 15px;
    }

.un-style-page-title {
    font-weight: 500;
    font-size: 22px;
}

.un-style-secondary-title {
    font-weight: bold;
    color: #006FB7;
}

/* Tooltip BEGIN */

.info:hover .tooltip {
    color: white;
    background-color: #5b92e5;
    visibility: visible;
    opacity: 1;
    transition: opacity .8s;
    transition-delay: 0.5s;
    position: absolute;
    margin-left: 10px;
    display: inline-block;
    border-radius: 4px;
    padding: 8px;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s
}

}

.tooltip:hover {
    visibility: visible
}

.info {
    cursor: help
}


/* Tooltip END */


/* Public Pages Home Page */
.un-style-brown-title {
    color: #6C3928;
}

.un-style-twitter-box,
.un-style-latest-news-box {
    height: 100%;
}

.un-style-latest-news-box {
    box-shadow: 0px 0px 4px rgba(77, 77, 77, 0.24);
}

    .un-style-latest-news-box a {
        text-decoration: none;
        text-decoration-line: none;
        color: black;
        font-weight: 500;
    }

    .un-style-latest-news-box ul,
    .un-style-twitter-box ul {
        list-style: none;
    }

        .un-style-recent-decisions-box,
        .un-style-latest-news-box ul li {
            background-color: var(--bs-white);
        }

        .un-style-latest-news-box ul li {
            border-bottom: 1px solid #ccc;
            text-align: justify;
            padding: 5px;
        }

.latestnews {
    border-bottom: 1px solid;
    padding: 0.5rem;
    background: var(--bs-blue);
    color: var(--bs-white)
}

.un-style-twitter-box {
    background-color: #f8f8f8;
    box-shadow: 0px 0px 4px rgba(77, 77, 77, 0.24);
}

    .un-style-twitter-box ul li {
        border-bottom: 1px solid #ffffff;
    }

        .un-style-twitter-box ul li:last-child {
            border-bottom: none;
        }

/* Public Pages Search Form */


.un-style-search-form button.un-style-btn-form-search {
    background: var(--bs-white) !important;
    color: var(--bs-blue) !important;
    border: 1px solid var(--bs-blue) !important;
}

    .un-style-search-form button.un-style-btn-form-search:hover {
        color: var(--bs-white) !important;
        border-color: var(--bs-blue) !important;
        background: var(--bs-blue) !important;
    }

.un-style-add-remove-btn {
    vertical-align: middle;
    line-height: 38px;
    font-size: 20px;
    text-decoration: none;
}


.un-style-search-form .btn-check + label.btn {
    height: 35px;
}

.un-region-world-picker {
    background-image: url("../img/world-map-picker-bkg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    min-height: 300px;
    position: relative;
    border: 1px solid #006fb7;
}

.un-world-map-pin {
    position: absolute;
}

    .un-world-map-pin input.form-check-input {
        display: none;
    }

        .un-world-map-pin input.form-check-input + label.form-check-label,
        .un-world-map-pin input.form-check-input:checked + label.form-check-label {
            background-size: contain;
            background-repeat: no-repeat;
            width: 30px;
            height: 42px;
        }

        .un-world-map-pin input.form-check-input + label.form-check-label {
            background-image: url("../img/red-pin-world-map-picker.png");
        }

        .un-world-map-pin input.form-check-input:checked + label.form-check-label {
            background-image: url("../img/blue-pin-world-map-picker.png");
        }

/* Results Page */
.un-style-btn-secondary {
    width: 100%;
}

.un-style-btn-secondary,
.un-style-search-details-box {
    border: 1px solid #C6BD99;
}

.un-style-search-details-box {
    border-radius: 10px;
}

.un-style-search-results-tooltip {
    opacity: 1 !important;
}

    .un-style-search-results-tooltip .tooltip-arrow {
        display: none;
    }

    .un-style-search-results-tooltip .tooltip-inner {
        background-color: #F5F5F1;
        border: 2px solid #C6BD99;
        color: #000000;
    }

/* Result detail */
.un-style-detail-symbol {
    text-decoration: underline #006FB7;
}

.un-style-detail-label {
    color: #006FB7;
    font-weight: 600;
    font-size: 14px;
}

.un-style-detail-box {
    border: 1px solid #C6BD99;
    border-radius: 10px;
    min-width: 115px;
}

    .un-style-detail-box .un-style-detail-label {
        border-bottom: 1px solid #C6BD99;
    }

.un-style-detail-list {
    list-style: none;
    /*padding: 5px;*/
}

    .un-style-detail-list li {
        /*line-height: 12px;*/
    }

        /*.un-style-detail-list li::before {
            content: "\2022";*/ /*bullet point*/
            /*color: #006FB7;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            font-size: 1.7em;
            margin-left: -1em;
        }*/

/* Internal Pages Main Form Style */
h1.un-style-symbol-number-title,
.un-style-page-title {
    font-size: 22px;
    font-weight: 500;
}

h1.un-style-symbol-number-title,
.un-style-form label.form-label {
    font-weight: bold;
}


.un-style-ods-document-viewer {
    /* height: 90vh;*/
    height: 70rem;
    background-color: #f8f8f8;
    padding: 10px 25px 10px 20px;
    border-radius: 10px 0 0 10px;
    top: 120px;
    right: 0px;
    overflow-y: scroll;
}

    .un-style-ods-document-viewer .content {
        text-align: justify
    }

    .un-style-ods-document-viewer::-webkit-scrollbar {
        width: 16px;
    }

    .un-style-ods-document-viewer::-webkit-scrollbar-track {
        margin-right: 10px;
    }

    .un-style-ods-document-viewer::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: var(--bs-blue);
        min-height: 65px;
    }

    .un-style-ods-document-viewer .un-style-ods-document-higlighted-text {
        border: 3px dashed var(--bs-blue);
        background-color: var(--bs-white);
        padding: 5px;
    }

.notification {
    z-index: 10000;
}

.k-grid-toolbar {
    padding: 0;
}

    .k-grid-toolbar .k-pager-wrap {
        border: 0;
        flex-grow: 1;
    }

.k-dialog-titlebar {
    background-color: #006FB7;
}

.k-treeview-lines.k-treeview-group {
    overflow: auto;
}

.k-treeview.k-treeview-md {
    height: 100%;
}

.k-picker {
    border-color: #006fb7 !important;
    background-color: white !important;
}

.login-container {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 15px;
    background: #156099;
}



.logo-wrap {
    max-width: 220px;
    margin-bottom: 20px;
}



.login-wrap {
    width: 410px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 47px 55px 33px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
}

@media (max-width: 1024px) {
    body {
        font-family: "Open Sans", sans-serif;
        padding-top: 9rem !important
    }

    #footer .social-links a {
        width: auto !important;
        height: auto !important;
        display: block;
        margin-right: 0px !important;
        border-radius: 0px !important;
    }

    .nav-link {
        padding: 0 !important;
        text-align: center
    }

    .selectlanguage {
        /* text-align: right; */
        padding-top: 0.8rem;
        padding-right: 0.8rem;
        position: absolute;
        right: 0;
        width: 42%;
    }
}

.login-container {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 15px;
    background: #156099;
}



.logo-wrap {
    max-width: 220px;
    margin-bottom: 20px;
}



.login-wrap {
    width: 410px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 47px 55px 33px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
}
/*height css for accordian

*/
.accordian-header-height{
    padding:0.5rem;
}
.accordion-button:not(.collapsed) {
    background-color: #ffffff;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../img/collapse.svg) !important;
     
}

.accordion-button::after {
    background-image:url(../img/expand.svg) !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-7 {
    flex: 0 0 auto;
    width: 100%;
}

.col-5 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-7 {
        width: 60%;
        flex-basis: 60%;
    }

    .col-5 {
        width: 40%;
        flex-basis: 40%;
    }
}