
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body{
    background-color: #f5f8fe;
}



.card{
    border-radius: 0px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px #ccc;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #293253;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration:none;
    transition: all 0.3s;
}

.navbar {
    width: calc(100vw - 180px);
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 180px;
    transition: all 0.3s;
    color: #001632;
}
.navactive{
    width: calc(100vw - 80px);
    left: 80px;
}



.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

i, span {
    display: inline-block;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebarCollapse{
    cursor: pointer;
}

#sidebar {
    min-width: 180px;
    max-width: 180px;
    background: #293253;
    color: #fff;
    transition: all 0.3s;
    position: fixed;
    height: 100vh;
    /* overflow-y: scroll; */
    box-shadow: 4px 0px  8px #888888;
    z-index: 10;
}

#sidebar.active {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
}

#sidebar.active .sidebar-header h3, #sidebar.active .CTAs {
    display: none;
}

#sidebar.active .sidebar-header strong {
    display: block;
}

#sidebar ul li a {
    text-align: left;
}
#sidebar ul li {
    border-bottom: 1px solid #001632;
}

#sidebar.active ul li a {
    padding: 6px 10px;
    text-align: center;
    font-size: 0.59em;
}

#sidebar.active ul li a i {
    margin-right:  0;
    display: block;
    font-size: 1.8em;
    margin-bottom: 5px;
}

#sidebar.active ul ul a {
    padding: 10px !important;
}



#sidebar .sidebar-header {
    padding: 10px;
    background: #001632;
}

#sidebar .sidebar-header strong {
    display: none;
    font-size: 1.8em;
}
.sidebar-active{
    color: #293253;
    background: #fff;
    /* border-left: 2px solid #3b2a55; */
}

.pagination-button{
    background-color: #293253;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1px 20px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
}
.pagination-pageno{
    background-color: #293253;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1px 10px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    height: 50%;

    margin-top: 10px;
}

#sidebar ul.components {
    padding: 20px 0;

}

#sidebar ul li a {
    padding: 10px;
    font-size: 0.9em;
    display: block;
}
#sidebar ul li a:hover {
    color: #293253;
    background: #fff;
}
#sidebar ul li a i {
    margin-right: 10px;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    /*color: #fff;*/

}


a[data-toggle="collapse"] {
    position: relative;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #293253;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}


a.article, a.article:hover {
    background: #293253 !important;
    color: #fff !important;
}




.usericon{

    position: absolute;
    right: 30px;
}






/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    padding: 0px;
    min-height: 100vh;
    transition: all 0.3s;
    width: 100%;
}

.pagecontent{
    color:black;
    transition: all 0.3s;
    padding: 30px;
}
.pagecontentactive{


}





/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    .navbar{
        width: 100%;
        left: 0px;
    }
    .navactive{
        width: calc(100vw - 80px);
        left: 80px;
    }

    .pagecontent{
        margin-left: 0px;
        padding: 10px;
    }
    .pagecontentactive{
        margin-left:82px;
    }

    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important ;
    }
    a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
        top: auto;
        bottom: 5px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
    #sidebar.active {
        margin-left: 0 !important;
    }

    #sidebar .sidebar-header h3, #sidebar .CTAs {
        display: none;
    }

    #sidebar .sidebar-header strong {
        display: block;
    }

    #sidebar ul li a {
        padding: 20px 10px;
    }

    #sidebar ul li a span {
        font-size: 0.85em;
    }
    #sidebar ul li a i {
        margin-right:  0;
        display: block;
    }

    #sidebar ul ul a {
        padding: 10px !important;
    }

    #sidebar ul li a i {
        font-size: 1.3em;
    }
    #sidebar {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
        z-index: 1000;
    }



}


.dropdown {
    background:#fff;

    border-radius:4px;
    width:249px;
}
.dropdown-menu>li>a {
    color:#428bca;
}



.dropdown ul.dropdown-menu {
    border-radius:4px;
    box-shadow:none;
    margin-top:40px;
    width:260px;
}
.dropdown ul.dropdown-menu:before {
    content: "";
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: -10px;
    right: 16px;
    z-index: 10;
}
.dropdown ul.dropdown-menu:after {
    content: "";
    border-bottom: 12px solid #ccc;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    top: -12px;
    right: 14px;
    z-index: 9;
}



@media(max-width:500px){

    .dropdown {
        background:#fff;

        border-radius:4px;
        width: 162px;
    }

    .dropdown, .dropup {
        position: relative;
    }


    .dropdown ul.dropdown-menu {
        border-radius: 4px;
        box-shadow: none;
        margin-top: 43px;
        width: 173px;
    }
}

footer{
    /* color: #001733; */
    color: white;
}

footer a{
    color: #bfffff;
}

/*.log_reg_mainfooter{*/
/*    position: fixed !important;*/
/*    width: 100% !important;*/
/*    bottom: 0px !important;*/
/*}*/


footer a:hover{
    color: white;
}

.footer-pad hr{
    display: none;
}

.footer-pad ul li{
    padding-top: 6px;
}

.footer-pad ul li a{
    font-size: 0.9em;
    color: white;
    font-family: 'Quicksand', sans-serif;
}

.footer-middle{
    background: #002A5C;
    padding-top: 2em;
    color: white;
}


#smalldevicevulogo {
    display: none;
}

.social-media{
    background: #001733;
    height: 8%;
    padding: 1em;
    display: block;
    text-align: center;
}

.social-media .social-icons ul#horizontal-list{
    list-style: none;
    align-items: center;
    padding-top: 5px;
    padding-left: 0px;
}
.social-media .social-icons ul#horizontal-list li{
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 0px;
    /*width: 3%;*/
    /*height: 40%;*/
}

.social-media .social-icons ul#horizontal-list li i{
    font-size: 35px;
}

.copyright{
    background: #385FC4;
    text-align: center;
    color: white;
    padding: 10px;
    /*padding-bottom: 5px;*/
}

.developright{
    background: #001733;
    text-align: center;
    color: white;
    padding: 10px;
    /*padding-bottom: 5px;*/
}

@media screen and (min-width: 992px) {
    #smalldevicevulogo {
        display: none;
    }

    .footer-pad hr{
        display: none;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #smalldevicevulogo {
        display: block;
    }

    #largedevicevulogo {
        display: none;
    }

    .footer-pad hr{
        display: block;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        margin-left: auto;
        margin-right: auto;
        border-style: inset;
        border-width: 1px;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #smalldevicevulogo {
        display: block;
    }

    #largedevicevulogo {
        display: none;
    }

    .footer-pad hr{
        display: block;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        border-style: inset;
        border-width: 1px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #smalldevicevulogo {
        display: none;
    }

    #largedevicevulogo {
        display: block;
    }

    .footer-pad hr{
        display: none;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    #smalldevicevulogo {
        display: none;
    }

    #largedevicevulogo {
        display: block;
    }

    .footer-pad hr{
        display: none;
    }

}

/* @media only screen and (min-width: 1367px) {



} */
.card{
    box-shadow: 0 0 5px #ccc;
    background-color:#fff;
    color: #293253;
    padding:10px 10px;
}

#content {
    padding: 0px;
    min-height: 89.7vh;
    height: auto;
    transition: all 0.0s;
    width: 100%;
}