
.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;
}


/*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;
}

ul.nav-children li a span.link-text::before{
    content: "";
    width: 10px;
    height: 10px;
    border: 2px dotted red;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

@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;
    }
}