/*@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito/Nunito-Regular.ttf") format("truetype"), url(../fonts/Nunito/Nunito-Regular.woff2) format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype"), url(../fonts/Roboto/Roboto-Regular.woff2) format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}*/


body {
    padding: 0;
    font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

#wrapper {
    display: flex;
    min-height: calc(100vh - 55px);
}

#wrapper #content-wrapper {
    background-color: #f8f9fc;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 20px 10px 95px 10px;
}

#wrapper #content-wrapper #content {
    flex: 1 0 auto;
}


a {
    color: #6E0F3A;
    transition: color .2s;
}

a:hover {
    color: #4999A2;
}

.btn-link {
    color: #6E0F3A;
}

.btn-link:hover {
    color: #4999A2;
}


/* Sidebar */
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.bg-gradient-primary {
    background-color: white;
    background-size: cover;
}

.sidebar {
    width: 14rem;
    min-height: 100vh;
    transition: all .1s;
    padding-bottom: 40px;
}


.sidebar.toggled {
    width: 0 !important;
    overflow: hidden;
}

.sidebar .sidebar-brand {
    height: 54px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    padding: 1.5rem 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05rem;
    z-index: 1;
    background-color: #fff;
    border-right: 1px solid #e3e6f0;
}

.sidebar .sidebar-brand img {
    max-width: 100%;
}

.sidebar-dark .sidebar-brand {
    color: #fff;
}

.sidebar-dark hr.sidebar-divider {
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.sidebar hr.sidebar-divider {
    margin: 0 1rem 1rem;
}

.sidebar .nav-item {
    position: relative;
}

.sidebar-dark .nav-item.active .nav-link {
    color: #fff;
}

.sidebar .nav-item.active .nav-link {
    font-weight: 700;
}


.sidebar .nav-item .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem;
    width: 14rem;
}


.sidebar-dark .nav-item .nav-link {
    color: #6E0F3A;
    transition: all .2s;
}

.sidebar-dark .nav-item .nav-link:hover {
    color: #6E0F3A;
}

.sidebar .nav-item .nav-link, .topbar .nav-item .nav-link {
    position: relative;
}

.navbar-dark .navbar-toggler {
    color: #6E0F3A;
}

.navbar-dark .navbar-toggler-icon {
    color: #6E0F3A;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
}

.sidebar .nav-item .fas {
    display: inline-block;
    margin-right: 10px;
}

.sidebar .nav-item .nav-link {
    display: flex;
    align-items: center;
}

.sidebar .nav-item .nav-link span {
    font-size: 14px;
    display: inline;
}

.sidebar .nav-item .nav-link i {
    font-size: 18px;
    margin-right: 10px;
}


.sidebar .nav-item .nav-link[data-toggle=collapse]::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f078';
    font-family: 'Font Awesome 5 Free', serif;
    right: 20px;
    position: absolute;
}

.sidebar .nav-item .nav-link[data-toggle=collapse].collapsed::after {
    content: '\f054';
}


.animated--grow-in, .sidebar .nav-item .collapse {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-timing-function: transform cubic-bezier(.18, 1.25, .4, 1), opacity cubic-bezier(0, 1, .4, 1);
    animation-timing-function: transform cubic-bezier(.18, 1.25, .4, 1), opacity cubic-bezier(0, 1, .4, 1);
}

.collapse:not(.show) {
    display: none;
}

.sidebar .nav-item .collapse {
    position: relative;
    left: 0;
    z-index: 1;
    top: 0;
    -webkit-animation: none;
    animation: none;
}


.sidebar .nav-item .collapse .collapse-inner, .sidebar .nav-item .collapsing .collapse-inner {
    padding: .5rem 0;
    min-width: 10rem;
    font-size: .85rem;
    margin: 0 0 1rem 0;
}


.sidebar .nav-item .collapse .collapse-inner {
    border-radius: 0;
    box-shadow: none;
    background-color: #600029;
}

.sidebar .nav-item .collapse .collapse-inner-third {
    background-color: #4e0021;
}


.sidebar .nav-item .collapse .collapse-inner .collapse-item, .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
    padding: .5rem 1rem;
    margin: 0 .5rem;
    display: block;
    color: #6E0F3A;
    text-decoration: none;
    border-radius: .35rem;
    white-space: nowrap;
    transition: all .2s;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover, .sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
    color: #6E0F3A;
}

/*.topbar {
    height: 58px;
}*/

.shadow {
    box-shadow: 0 .15rem 1.75rem 0 rgba(58, 59, 69, .15) !important;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
}

.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start;
}


.topbar #sidebarToggleTop {
    height: 40px;
    width: 40px;
    transition: all .2s;
}

.topbar #sidebarToggleTop:hover, .topbar #sidebarToggleTop:focus {
    background-color: #eaecf4;
    text-decoration: none;
}

#sidebarToggleTop .fa-chevron-circle-left {
    transition: all .5s;
}

#sidebarToggleTop.toggled .fa-chevron-circle-left {
    transform: rotate(180deg);
    transition: all .5s;
}

.topbar .topbar-divider {
    width: 0;
    border-right: 1px solid #e3e6f0;
    height: calc(4.375rem - 2rem);
    margin: auto 1rem;
}

.topbar .dropdown {
    position: static;
}

.dropdown, .dropleft, .dropright, .dropup {
    position: relative;
}

@media (min-width: 576px) {
    .topbar .dropdown {
        position: relative;
    }
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
    color: rgba(0, 0, 0, .6);
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #6E0F3A;
}

.dropdown-item.active, .dropdown-item:active {
    color: #6E0F3A;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item {
    padding: .5rem 1.5rem;
}

@media screen and (max-width: 992px) {
    .dropdown-item {
        padding: .5rem 1.5rem;
        white-space: normal;
    }

    .dropdown-menu {
        border: 0;
    }
}

.navbar-nav .dropdown-menu {
    padding: 0;
}

.topbar .nav-item .nav-link {
    display: flex;
    align-items: center;
}

.navbar-expand .navbar-nav {
    flex-direction: row;
}

.utilizator {
    display: flex;
    align-items: center;
    align-self: center;
}

.utilizator h4 {
    margin-right: 15px;
    margin-bottom: 0;
    font-weight: 700;
    color: #6E0F3A;
}


.aui-badge {
    border-radius: 50%;
    background-color: #6E0F3A;
    color: #FFFFFF;
    padding: 5px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    transition: all .2s;
    margin-left: 5px;
}

.aui-badge:hover {
    background-color: #4999A2;
}

.utilizator a:hover {
    text-decoration: none;
}

.topbar .title h1 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
}

/*cards*/
.title-round {
    width: unset;
    height: unset;
    padding: 12px;
    line-height: 40px;
    font-size: 40px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    background: #6E0F3A;
}

.content-card {
    border-radius: 6px;
    border: 1px solid #e3e6f0;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    padding: 20px;
    background: #FFFFFF;
}

.content-card .form-control, .custom-select, .custom-checkbox {
    background-color: #fdfdfd;
}

.content-card .form-control:disabled, .custom-select:disabled, .custom-checkbox:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.card {
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #e3e6f0;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    transition: all .2s;
}


.card:hover {
    border-color: #6E0F3A;
}

.card .panel-footer > a {
    color: #6E0F3A;
    opacity: 0.8;
    font-weight: bold;
    text-decoration: none;
}


.card-bg-alert {
    background: #FFFFFF;
    border: 1px solid #e39991;
}

.card-bg-alert:hover {
    border-color: #c4342b;
}

.card-bg-alert .title-round {
    background-color: #c4342b;
}

.card-bg-alert .panel-footer > a {
    color: #c4342b;
}

.card-bg-alert .panel {
    border: none;
    box-shadow: none;
    background-color: inherit;
    margin-bottom: 0px;
}

.card-bg-alert .panel-footer {
    background-color: inherit;
    color: #FFF;
}

.card .panel-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}

.card .form-inline input {
    width: 100%;
    max-width: unset;
}

.card-header i {
    font-size: 18px;
    margin-right: 8px;
}

.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    color: #fff;
    background: rgba(90, 92, 105, .5);
    line-height: 46px;
    z-index: 1;
}

footer {
    position: fixed;
    padding: 10px 0px 0px 0px;
    width: 100%;
    bottom: 0;
    background: #6E0F3A;
    margin-top: 40px;
    flex-shrink: 0;
}

.sidebar-toggled .footer {
    width: 100%
}

.th-actions-col--lg {
    width: 240px;
}

.th-actions {
    display: flex;
    justify-content: space-evenly;
}

.table-actions {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.table-actions .btn:not(:first-child) {
    margin-left: 10px;
}

.list-group-item {
    padding-left: 0;
    padding-right: 0;
}

.list-group-item__title {
    font-weight: 700;
}

.list-group-item__content {
    margin-bottom: 0;
}

.btn:hover, .btn:active, .btn:focus {
    outline: none;
}

.btn.btn-primary {
    background: #6E0F3A;
    border: 1px solid #6E0F3A;
    color: #fff;
}

.btn.btn-primary span {
    transition: color 0.15s ease-in-out;
    color: #fff;
}

.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    border: 1px solid #6E0F3A;
    background: transparent;
    color: #6E0F3A;
}

.btn.btn-light:hover, .btn.btn-light:focus, .btn.btn-light:active,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    background-color: #f8f9fa;
    color: #6E0F3A;
}


.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus, .btn.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
    border: 1px solid transparent;
    background: #6E0F3A;
    color: #fff;
}

.btn.btn-primary:hover span, .btn.btn-primary:focus span, .btn.btn-primary:active span {
    color: #6E0F3A;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus, .custom-select:focus, .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(2, 125, 141, 0.2);
    border-color: #6E0F3A;
}

.btn.btn-outline-primary {
    border: 1px solid #6E0F3A;
    background: transparent;
    color: #6E0F3A;
}

.btn.btn-outline-primary:hover {
    border: 1px solid transparent;
    background: #6E0F3A;
    color: #fff;
}

.files-table thead th {
    vertical-align: middle;
    padding: 10px;
}

.files-table-container {
    border-radius: 4px;
}

.files-table td {
    padding: 2px 10px;
}

.files-table__upload-container {
    display: flex;
    align-items: center;
}

.files-table__upload-container a {
    margin-right: 10px;
}

.files-table__data td {
    padding: 0 5px;
    background-color: #FFFFFF;
    border-width: 0;
}

.files-table__data tr:not(:last-child) td {
    padding-bottom: 2px;
    border-bottom-width: 1px;
}

.files-table__data tr:not(:nth-child(2n)) td {
    padding-top: 10px;
}

.files-table__data__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.files-table__data__item__left {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.files-table__data__item__left span {
    margin-left: 8px;
}

.files-table tr td {
    transition: all .2s;
    background-color: #FFFFFF;
}

.bg-gradient-primary a:not(:hover) {
    color: #6E0F3A;
    transition: all .2s;
}

.navbar.topbar {
    padding-left: 0
}

.topbar .title h1 {
    margin-left: 20px;
}

.navbar-nav .nav-link i {
    margin-right: 7px;
    font-size: 14px;
    font-weight: 600;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar .navbar__brand {
    height: 58px;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e3e6f0;
}

.navbar__brand img {
    max-width: 100%;
    min-width: 200px;
    max-height: 100%;
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
    color: #6E0F3A;
}

.dropdown--w-icons .dropdown-item {
    display: flex;
    align-items: center;
}

.dropdown--w-icons .dropdown-item i {
    margin-right: 9px;
    font-size: 20px;
}

.modal-dialog {
    max-width: 1024px;
}

.datepicker-orient-top {
    z-index: 999999 !important;
}


/*submeniu*/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    /*position: absolute;*/
    right: 4px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}
/*submeniu*/

.form-to-pdf table {
    border-right:1px solid black;
}

.form-to-pdf td {
    border: 1px solid black;
    padding:0px 5px;
}

.form-to-pdf th {
    background-color: #6E0F3A;
    min-width:250px;
    color: #fff;
}

.form-field-title {
    text-align:right;
}
.rotate180 
{
   transform: rotate(-60deg);
}


.multiselect-dropdown-body 
{
     padding: 0.3rem;
     display:none;
     width:98%;
     margin:0px;
     left:auto;
}

.multiselect-dropdown-body > .dropdown-item > label
{
     padding-left: 5px !important;
}

.multiselect-dropdown-item:hover {
    background-color: #6E0F3A;
    color:#fff;
 }

.hide {
    display:none;
}

.show {
    display: block;
}

.loader {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba( 255, 255, 255, .8 ) url('../images/ajax-loader.gif') 50% 50% no-repeat;
}
