/*
    DEMO STYLE
*/

@import "font.css";
body {
    font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size: 14px;
    color: #333;
}
p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

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

.navbar {
    padding: 0px;
    background: #ffffff;
    border: none;
    border-radius: 0;
    margin-bottom: 5rem;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    width: 100%;
}
.logo {
    transition: width .3s ease-in-out;
    display: block;
    float: left;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    width: 200px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0 15px;
    font-weight: 300;
    overflow: hidden;
    background-color: #fff;
    color: #333;
    border-bottom: 0 solid transparent;
    border-right: 1px solid #eee;
}
.navbar-header {
    border-right: 1px solid #eee;
    padding: 15px;
}
.nav-right-custom {
    padding: 15px;
    border-left: 1px solid #eee;
}
.logo img {
    max-width: 200px;
    max-height: 50px;
    padding: 4px;
    object-fit: contain;
    margin: 0 auto;
}
ul.dropdown-menu {
    padding: 10px;
}
.checkbox label {
    font-size: 12px;
    line-height: 1.9;
}
/* .navbar-header {
    border-right: 1px solid #eee;
} */
#sidebar {
    font-weight:bold;
    width: 200px;
    position: fixed;
    transition: all 0.3s;
    bottom:0;
    top:0;
    z-index:999;
}


#sidebar .sidebar-header {
    padding: 20px;
    background: #343436;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 13px;
    display: block;
    font-weight: 500;
    color: #444;
}
#sidebar ul li a svg{
    margin-right: 15px;
}

#sidebar ul li a:hover {
    color: #343436;
    background: #f5f5f5;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #343436;
    background: #f5f5f5;
}
ul ul.list-unstyled{
    background: #f4f4f5;
}

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

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);

}

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

ul.CTAs {
    padding: 20px;
}

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

a.download {
    background: #fff;
    color: #343436;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}
span.align-right {
    text-align:right;
    }
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    background: #ECF0F5;
    padding-top: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    margin-left: 200px;

}
/* Shrinking the sidebar from 250px to 80px and center aligining its content*/
#sidebar.active {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
}

/* Toggling the sidebar header content, hide the big heading [h3] and showing the small heading [strong] and vice versa*/
#sidebar .sidebar-header strong {
    display: none;
}
#sidebar.active .sidebar-header h3 {
    display: none;
}
#sidebar.active .sidebar-header strong {
    display: block;
}

#sidebar ul li a {
    text-align: left;
}

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

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

/* Same dropdown links padding*/
#sidebar.active ul ul a {
    padding: 10px !important;
}

/* Changing the arrow position to bottom center position,
   translateX(50%) works with right: 50%
   to accurately  center the arrow */
#sidebar.active .dropdown-toggle::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}
.backColoredNav {
    background-color: #f9fafc;
    border-right: 1px solid #d2d6de;
}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
    border: 1px solid #f4f4f4;
}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th {
    padding: 8px !important;
}
td {
    padding: 8px !important;
    line-height: 1.42;
    font-size: 12px;
}
#content h1, #content h2, #content h3 { 
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    .navbar-nav { 
        margin: 0px;
        flex-direction: row;
    }
    .logo {
        width: auto;
        padding: 0px;
    }
    /* 80px and its content aligned to centre. Pushing it off the screen with the
       negative left margin
    */
    #sidebar.active {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }
    /* Reappearing the sidebar on toggle button click */
    #sidebar {
        margin-left: 0;
        width: 150px;
    }


    /* Toggling the sidebar header content,
       hide the big heading [h3] and showing the small heading [strong] and vice versa
    */
    #sidebar .sidebar-header strong {
        display: none;
    }
    #sidebar.active .sidebar-header h3 {
        display: none;
    }
    #sidebar.active .sidebar-header strong {
        display: block;
    }

    /* Downsize the navigation links font size */
    #sidebar.active ul li a {
        padding: 20px 10px;
        font-size: 0.85em;
    }

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

    /* Adjust the dropdown links padding*/
    #sidebar.active ul ul a {
        padding: 10px !important;
    }
    #content {
        padding: 20px 15px;
    }
}

.avatar-pic {
width: 150px;
}

.navbar a{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.border-3 {
    border-width:3px !important;
}
/*added*/
.btn-xs {
    padding: .25rem .4rem;
    font-size: 13px;
    line-height: .5;
    border-radius: .2rem;
}

.fade{
	opacity: 1!important;
}

.modal-backdrop
{
    opacity:0.5 !important;
}


.loader {
    display: block;
}
.loader_ajax_small {
  border: 2px solid #f3f3f3 !important;
  border-radius: 50%;
  border-top: 2px solid #2D2D2D !important;
  width: 29px;
  height: 29px;
  -webkit-animation: spin_loader_ajax_small 2s linear infinite;
  animation: spin_loader_ajax_small 2s linear infinite; 
}

@-webkit-keyframes spin_loader_ajax_small {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin_loader_ajax_small {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal_90 {
    max-width: 1350px;
}