
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-inline-flex {
    display: inline-flex !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}


.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}


.circle-link {
    display: flex;
    height: 35px;
    width: 35px;
    background-color: white;
    border: 1px solid #dadada;
    align-items: center;
    justify-content: center;
    color: red;
    box-shadow: 0 0 5px #dadada;
    font-size: 12pt;
    border-radius: 15px;
    margin: 3px;
}

.circle-link.active {
    background-color: red;
    color: white;
}

.circle-link.active:hover {
    background-color: red;
    color: white;
}

.circle-link:hover {
    text-decoration: none;
    box-shadow: 0 0 10px grey;
    color: red;
}

/*select2 height*/
.select2-container--default .select2-selection--single {
    height: 40px;
}

/*spinners*/
.spinner-border {
    width: 48px;
    height: 48px;
    border: 5px dotted red;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

.spinner-border-sm{
    border-width: 2px;
}

/*table actions*/
a.dropdown-item {
    text-decoration: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}


.transfstatus::before {
    content: '';
    display: block;
    background: #15d637;
    width: 12px;
    height: 12px;
    position: absolute;
    margin-left: -14px;
    margin-top: 5px;
    border-radius: 100%;
}

.round-bubble {
    background: #eee;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    font-size: 30pt;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bg-teal{
    background: #138496!important;
    color:#ffffff !important;
}

.ui-menu {
    max-height: 200px;
    width: 300px;
    overflow-y: auto;   /* prevent horizontal scrollbar */
    overflow-x: hidden; /* add padding to account for vertical scrollbar */
    z-index:1000 !important;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (min-width: 768px)
{
    html.sidebar-left-collapsed .sidebar-left .nano:hover .nav-main .nav-expanded > ul.nav-children {
        display: block;
        max-height: 85vh;
        overflow-y: auto;
        min-width: 200px;
        width: max-content !important;
    }
}

@media (min-width: 768px) {
    .modal-lg {
        width: 90% !important;
    }

    .modal-md {
        width: 60% !important;
    }
}