h1 {
    color: var(--primary) !important;
}

h2,
h3,
h4,
h5,
h6,
p,
span,
li,
ul {
    color: var(--gray);
}

::selection {
    background: #E9ECEF;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #E9ECEF;
    /* Gecko Browsers */
}


.custom-app-loader {
    width: 20%;
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 768px) {

    .custom-app-loader {
        width: 80%;
        position: fixed !important;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}



.breadcrumb {
    background-color: #808992 !important;
    color: #433E3B !important;
    /* margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--border-radius-30);*/
}

.breadcrumb-item {
    color: #433E3B !important;
}

.breadcrumb-item.active {
    color: white !important;
}

.list-group-item.active {
    z-index: 2;
    color: #fff !important;
    background-color: #808992 !important;
    border-color: #808992 !important;
}

.card-operabit {

    border-color: transparent;
    border-bottom: 1px solid var(--primary) !important;
    background-color: transparent !important;
}

.card-operabit:active {
    border-bottom: 0px solid transparent !important;
    background-color: transparent !important;
}

.card-header-operabit {
    border-color: transparent;
    background-color: transparent;
    border-bottom: 0px solid var(--primary) !important;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    /* background-color: rgba(0,0,0,.03); */
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}


/* Style for cards used in the object detail page */

.col-padding0-dx {}

.col-padding0-sx {}

@media (min-width: 768px) {

    .col-padding0-dx {
        padding-right: 0px;
    }

    .col-padding0-sx {
        padding-left: 0px;
    }
}


/* Style for notificaion in the header */
.notification {}

.notification:hover {}

.notification .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 5px 10px;
    font-size: 0.8em;
    border-radius: 20%;
    background: #fbc02d;
    font-weight: bold;
    color: var(--primary-very-dark);
    z-index: 100;
}

.notification .badge:hover {
    background: #c49000;
}


.br-30 {
    border-radius: var(--border-radius-30);
}

.br-10 {
    border-radius: 10px;
}

.br-l-30 {
    border-top-left-radius: var(--border-radius-30);
    border-bottom-left-radius: var(--border-radius-30);
}

.br-r-30 {
    border-top-right-radius: var(--border-radius-30);
    border-bottom-right-radius: var(--border-radius-30);
}

.br-t-30 {
    border-top-left-radius: var(--border-radius-30);
    border-top-right-radius: var(--border-radius-30);
}

.br-b-30 {
    border-bottom-left-radius: var(--border-radius-30);
    border-bottom-right-radius: var(--border-radius-30);
}

.br-15 {
    border-radius: var(--border-radius-15);
}

.br-l-15 {
    border-top-left-radius: var(--border-radius-15);
    border-bottom-left-radius: var(--border-radius-15);
}

.br-r-15 {
    border-top-right-radius: var(--border-radius-15);
    border-bottom-right-radius: var(--border-radius-15);
}

.br-t-15 {
    border-top-left-radius: var(--border-radius-15);
    border-top-right-radius: var(--border-radius-15);
}

.br-b-15 {
    border-bottom-left-radius: var(--border-radius-15);
    border-bottom-right-radius: var(--border-radius-15);
}

.content-opacity-on-hover:hover {
    opacity: 0.7;
}

.position-absolute-center {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


hr {
    border-top: 1px solid var(--accexi-gray-1)
}