/* GLOBAL USE */
:root {
    --bs-orange-rgb: 253, 126, 20;
    --bs-purple-rgb: 111, 66, 193;
    --bs-green-rgb: 12, 188, 135;
}
.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-6 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.bg-orange {
    color: rgb(253, 126, 20);
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-orange-rgb), var(--bs-bg-opacity)) !important;
}
.bg-purple, [dir=ltr] .bg-purple {
    color: rgb(111, 66, 193);
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-purple-rgb), var(--bs-bg-opacity)) !important;
}
.bg-green, [dir=ltr] .bg-green {
    color: rgb(12, 188, 135);
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-green-rgb), var(--bs-bg-opacity)) !important;
}
.text-orange {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-orange-rgb), var(--bs-text-opacity)) !important;
}
.text-purple, [dir=ltr] .text-purple {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-purple-rgb), var(--bs-text-opacity)) !important;
}
.text-green {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-green-rgb), var(--bs-text-opacity)) !important;
}
.bg-opacity-10 {
    --bs-bg-opacity: .10;
}
.bg-opacity-15, [dir=ltr] .bg-opacity-15 {
    --bs-bg-opacity: .15;
}
.btn-circle.btn-sm { 
    width: 30px; 
    height: 30px; 
    padding: 6px 0px; 
    border-radius: 15px; 
    font-size: 8px; 
    text-align: center; 
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.row-gap-2 {
    row-gap: 0.5rem !important;
}
.row-gap-3 {
    row-gap: 1rem !important;
}
.col-gap-3 {
    column-gap: 1rem !important;
}
[dir=ltr] .btn.disabled, [dir=ltr] .btn:disabled {
    cursor: not-allowed;
}

[dir=ltr] .callout {
    border-radius: .25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    background-color: #fff;
    border-left: 5px solid #e9ecef;
    margin-bottom: 1rem;
    padding: 1rem;
}
[dir=ltr] .callout.callout-dark {
    background-color: #ededed;
}
[dir=ltr] .callout.callout-primary {
    border-left-color: #1377c9;
}

/* PLACEHOLDER */
.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: 0.5;
}
.placeholder-glow .placeholder {
    animation: 2s ease-in-out 0s infinite normal none running placeholder-glow;
}
@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

/* RANDOM */
td.mnw-100px { min-width: 100px; }
td.mnw-120px { min-width: 120px; }
td.mnw-150px { min-width: 150px; }
td.mnw-200px { min-width: 200px; }
@media (max-width: 576px) {
    [dir=ltr] .navbar-toggler-dashboard {
        padding: 0 0.5rem;
    }
}
@media (min-width: 576px) {
    [dir=ltr] .navbar.navbar-expand-sm .dropdown-menu {
        overflow-y: auto;
    }
}

/* SEARCH */
.container-search {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    margin: 0;
    width: 100%;
    background-color: black;
}
[dir=ltr] .container-search .search-form {
    max-width: none !important;
}
[dir=ltr] .container-search .search-form input {
    height: 54px;
}
@media (min-width: 576px) {
    .container-search {
        display: none !important;
    }
}

/* GLOBAL SELECT2 */
.select2-container--default .select2-results>.select2-results__options {
    margin-bottom: 0;
}