﻿/* http://smacss.com/ */

.inline-table {
}

/* Layout */
.liink-layout {
    margin-bottom: 20px;
    margin-top: 1.2em
}

/* Header */
.navbar {
    font-weight: 300;
    height: var(--navbar-height);
}

.navbar-padding {
    padding-top: var(--navbar-height);
}

.navbar-margin {
    margin-top: var(--navbar-height);
}

#navContainer {
    padding-left: 0;
    max-height: var(--navbar-height);
}

/* Snackbar */
@keyframes snackbar-show {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.snackbar {
    width: 100%;
    height: auto;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: snackbar-show 0.2s ease-out 0s 1;
    position: fixed;
}

.snackbar-container {
    position: relative;
    z-index: 99999;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.snackbar-dismiss {
    width: 50px;
    position: relative;
}

.snackbar-modal-border {
    border: 2px solid #337ab7;
}

/* Body */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    height: auto;
}

/* NavPanel*/
@media (max-width: 767px) {
    .ad-banner-spacer {
        margin-bottom: 50px;
    }
}

.side-nav2 {
    top: 52px;
    width: 280px;
}

    .side-nav2 .collapsible a {
        font-size: 1em;
        font-weight: bold;
        color: var(--liink-dark-info) ;
    }

/* Footer */
.footer {
    z-index: 10;
    height:52px;
    flex: 0 1 52px;
    background-color: white !important;
}
@media (max-width: 425px) {
    .footer {
        height: 80px;
    }
}

@media (max-width: 991px) {
    .footer {
        z-index: 13;
        flex: 0 1 52px;
    }
    .footer-icon {
        align-content:end;
       text-align:right
    }
}
@media (min-width: 991px) {

    .footer-icon {
        transform: translateX(-80px);
    }
}

.footer-border {
    border-top: solid;
    border-top-width: 2px;
    border-top-color: var(--liink-primary-purple);
}

.footer-content {
    /*float: right;
    display: inline-table;*/
}

    .footer-content ul {
        margin-bottom: 0px;
        padding-left: 0px;
    }

        .footer-content ul li {
            color: #4f90b2;
            display: inline-block;
            font-size: 16px;
            margin: 13px 0px 13px 10px;
        }

            .footer-content ul li a {
                color: #4f90b2;
            }

                .footer-content ul li a:hover {
                    color: #125a7e;
                }

.footer-spacer {
    height: 51px;
    width: 1px;
    position: absolute;
}

.layout-content {
    overflow-y: scroll;
    height: calc(100vh - 103px);
    padding-top: 0em !important;
    background-color: var(--liink-content-background);
}

/* Ordered Lists */
.levelled-ordered-list-numeric {
    counter-reset: section;
}

    .levelled-ordered-list-numeric ol:not(.show-list-type) {
        list-style-type: none;
    }

    .levelled-ordered-list-numeric > ol {
        padding: 0px;
    }

        .levelled-ordered-list-numeric > ol > li::before {
            counter-increment: section;
            counter-reset: sub-section;
            content: counter(section) ". ";
        }

        .levelled-ordered-list-numeric > ol > li > ol > li::before {
            counter-increment: sub-section;
            content: counter(section) "." counter(sub-section) ". ";
        }

/* Requried Asterix */
@media (max-width: 767px) {
    .asterix-required-container {
        display: inline;
        margin-top: 0.75em;
        margin-left: 0.75em
    }
}

@media (min-width: 768px) {
    .asterix-required-container {
        display: inline;
        position: absolute;
        right: 0px;
        margin-top: 0.75em
    }
}

/* Blazor Defaults */
.my-reconnect-modal > div {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
}

.components-reconnect-hide > div {
    display: none;
}

.components-reconnect-show > div {
    display: none;
}

.components-reconnect-show > .show {
    display: none;
}

.components-reconnect-failed > div {
    display: none;
}

.components-reconnect-failed > .failed {
    display: none;
}

.components-reconnect-rejected > div {
    display: none;
}

.components-reconnect-rejected > .rejected {
    display: none;
}

/* Height */
.h-10 {
    height: 10em;
}

.mh-180px {
    max-height: 180px;
}
.vh-50 {
    height: 50vh !important;
}

.vh-75 {
    height: 75vh !important;
}

/* Width */

.w-95 {
    width: 95%;
}

.max-w-25 {
    max-width: 25% !important;
}

.max-w-50 {
    max-width: 50% !important;
}

.max-w-80 {
    max-width: 80% !important;
}

.max-w-100 {
    max-width: 100% !important;
}

.min-w-25 {
    min-width: 25% !important;
}

.min-w-50 {
    min-width: 50% !important;
}

.min-w-80 {
    min-width: 80% !important;
}

.loading-placeholder-min {
    min-height: 193px;
}

.multiselect {
    max-height: 55em;
}

/* Shift Position */
@media (min-width: 768px) {
    .shift-down-1 {
        margin-bottom: -1em;
    }

    .shift-down-2 {
        margin-bottom: -2em;
    }

    .shift-down-3 {
        margin-bottom: -3em;
    }

    .shift-left-1 {
        margin-left: -1em;
    }

    .shift-left-2 {
        margin-left: -2em;
    }

    .shift-left-3 {
        margin-left: -3em;
    }

    .shift-right-1 {
        margin-right: -1em;
    }

    .shift-right-2 {
        margin-right: -2em;
    }

    .shift-right-3 {
        margin-right: -3em;
    }

    .shift-up-1 {
        margin-top: -1em;
    }

    .shift-up-2 {
        margin-top: -2em;
    }

    .shift-up-3 {
        margin-top: -3em;
    }
}

/* Nav Layout */
.navPanel {
    width: 280px;
    min-width: 280px;
    z-index: 10;
    box-shadow: 0 15px 5px 0 rgba(0, 0, 0, 0.16), 0 15px 10px 0 rgba(0, 0, 0, 0.4);
    color: var(--liink-dark-info) !important;
    height: calc(100vh - 103px) !important;
}

@media (max-width: 991px) {
    .navPanel {
        position: fixed;
        left: 0;
        z-index: 12;
        top: var(--navbar-height);
        height: 100%;
    }
}

@media (max-width: 991px) {
    .navPanel-none {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navPanelFade {
        position: absolute;
        left: 0;
        top: var(--navbar-height);
        height: 100%;
        width: 100%;
        min-width: 280px;
        z-index: 9;
        background-color: rgba(0,0,0,0.3)
    }
}

.navPanelFade {
    height: 100%;
    position: fixed;
}

@media (max-width: 991px) {
    .navPanelFade-none {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .navPanelFade {
        display: none;
    }
}

@media print {
    .layout-content {
        height: 100% !important;
    }
}
