@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

* {
    box-sizing: border-box;
}

    *::before,
    *::after {
        box-sizing: border-box;
    }

.bodyaccordion {
    margin: 0;
    padding: 0;
    font-family: 'Hind', sans-serif;
    background: #fff;
    color: #4d5974;
    display: flex;
    min-height: 100vh;
}

.containeraccordion {
    margin: 0 auto;
    padding: 4rem;
    width: 48rem;
}



.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

    .accordion button:hover,
    .accordion button:focus {
        cursor: pointer;
        color: #03b5d2;
    }

        .accordion button:hover::after,
        .accordion button:focus::after {
            cursor: pointer;
            color: #03b5d2;
            border: 1px solid #03b5d2;
        }

    .accordion button .accordion-title {
        padding: 1em 1.5em 1em 0;
        margin-left: 20px;
    }

    .accordion button .icon {
        display: inline-block;
        position: absolute;
        top: 18px;
        right: 0;
        width: 22px;
        height: 22px;
        border: 1px solid;
        border-radius: 22px;
        margin-right: 20px;
    }

        .accordion button .icon::before {
            display: block;
            position: absolute;
            content: '';
            top: 9px;
            left: 5px;
            width: 10px;
            height: 2px;
            background: currentColor;
        }

        .accordion button .icon::after {
            display: block;
            position: absolute;
            content: '';
            top: 5px;
            left: 9px;
            width: 2px;
            height: 10px;
            background: currentColor;
        }

    .accordion button[aria-expanded='true'] {
        color: #03b5d2;
    }

        .accordion button[aria-expanded='true'] .icon::after {
            width: 0;
        }

        .accordion button[aria-expanded='true'] + .accordion-content {
            opacity: 1;
            max-height: 9em;
            transition: all 200ms linear;
            will-change: opacity, max-height;
        }

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    margin-left: 20px;
}

    .accordion .accordion-content p {
        font-size: 1rem;
        font-weight: 300;
        margin: 2em 0;
    }

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #E7EEF4;
}

.card {
    border-radius: 15px;
    padding: 20px;
}

.bold-icon {
    font-weight: bold;
}
/* The side navigation menu */
.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
    /*    position: fixed;*/
    height: 100vh;
    overflow: auto;
    float: left;
}

    /* Sidebar links */
    .sidebar a {
        display: block;
        color: black;
        padding: 16px;
        text-decoration: none;
    }

        /* Active/current link */
        .sidebar a.active {
            background-color: #04AA6D;
            color: white;
        }

        /* Links on mouse-over */
        .sidebar a:hover:not(.active) {
            background-color: #555;
            color: white;
        }

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
    margin-left: 200px;
    padding: 1px 16px;
    height: 1000px;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

        .sidebar a {
            float: left;
        }

    div.content {
        margin-left: 0;
    }
}

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
    .sidebar a {
        text-align: center;
        float: none;
    }
}

footer {
    position: absolute;
    bottom: 0;
}

.loader {
    display: none; /* Hide loader by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    text-align: center;
    padding-top: 30%;
    color: white;
    font-size: 24px;
}

.tile-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 170px;
}

.tile {
    background-color: #003C72;
    border: 1px solid #FFF;
    text-align: center;
}

.email-logo {
    margin: 25px;
}

.mt-minus7 {
    margin: -7px
}

.ta-scroll {
    overflow-y: scroll;
    height: 60px;
    resize: none;
}

.form-control-login{
    width:60%!important;
}

.pr-20{
    padding-right:20%;
}

.org-title {
    background-color: var(--primary-color);
    color: white!important;
    padding: 1%;
    margin-bottom: 1px;
}

.navbar {
    border-radius: 20px; /* Adjust as needed */
    padding: 10px; /* Add padding to create space between the navbar content and the border */
    margin-top: 20px;
    position: relative;
}

.navbar-toggler {
    margin-right: 10px; /* Add margin to create space between the button and navbar content */
}

.btn-save,
.btn-submit {
    background-color: white !important; /* Override default background color */
    color: #004080 !important; /* Override default text color */
    border: none !important; /* Remove default border */
    border-radius: 20px !important; /* Apply rounded corners */
}

.navbar-nav .nav-item {
    margin-right: 30px; /* Add more margin between navigation items */
}

.logo-img {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Let the height adjust automatically to maintain aspect ratio */
    margin-right: 100px; /* Add margin between the logo and the navigation items */
}

:root {
    --primary-color: #004080;
    --text-color: #ffffff; /* White text color */
}

.custom-list {
    list-style: disc;
    padding-left: 0;
    text-align: center;
}

    .custom-list li {
        display: inline-block;
        text-align: left;
    }

.custom-container {
    background-color: #073B66; /* #dddddd Gray background color */
    padding: 20px; /* Adjust padding as needed */
    border-radius: 10px; /* Rounded corners */
    margin-top: 20px;
}

.custom-container-bottom {
    background-color: #073B66; /* #dddddd Gray background color */
    padding: 20px; /* Adjust padding as needed */
    border-radius: 10px; /* Rounded corners */
    margin-top: 20px;
    width: 1300px
}

.navbar .navbar-brand img {
    border-radius: 10px; /* Rounded corners for logo */
    padding: 3px; /* Adjust logo padding */
    margin-right: 15px; /* Adjust logo margin */
}

.navbar-nav .nav-link {
    color: white; /* Nav link color */
}

.pdf-icons {
    margin-top: 10px; /* Adjust as needed */
}

.pdf-icon {
    width: 20px; /* Adjust size as needed */
    height: auto;
    margin-right: 5px; /* Adjust spacing between icon and text */
}

.pdf-text {
    font-size: 16px; /* Adjust font size as needed */
}



.dialog-title {
    color: var(--primary-color);
}

.txt-color-report {
    color: white;
}