@media (max-width: 710px) {
    .app-content {
        padding-right: 72px !important;
    }
}


body, html {
    background-color: #f3f6fd;
}

.table > :not(caption) > * > * {
    padding: 0 4px !important;
}

.bg-img {
    background: url(/img/bg-login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    overflow: hidden;
}

.bg-login {
    background: url(/img/landing-login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.app-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.app-content {
    display: flex;
    height: 100%;
    overflow: hidden;
    padding: 16px 24px 24px 0;
}

.content-section {
    flex: 2;
    background-color: white;
    border-radius: 32px;
    padding: 32px 32px 0 32px;
    overflow: hidden;
    height: 100%;
    flex-direction: column;
}

    .content-section .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        color: #1f1c2e;
    }

        .content-section .header .title {
            font-size: 24px;
            line-height: 32px;
            font-weight: 700;
            opacity: .9;
            margin: 0;
            color: #1f1c2e;
        }

        .content-section .header .sub-title {
            font-size: 18px;
            line-height: 32px;
            font-weight: 700;
            opacity: .9;
            margin: 0;
            color: #1f1c2e;
        }

.sidebar-menu {
    padding: 0px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .sidebar-menu .menu-option {
        color: #1f1c2e;
        margin: 5px 0;
        border-radius: 50%;
        flex-shrink: 0;
        transition: .2s;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.menu-option:hover {
    background-color: #c3cff4;
    color: white;
}

.menu-option.active {
    background-color: #1f1c2e;
    color: white;
}

.h-100vh {
    height: 100vh;
}

.map {
    height: 50vh;
}

.mapbutton {
    z-index: 401;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.login-card {
    width: 800px;
}

.bg-body {
    background-color: #f3f6fd !important;
}

/*SPINNER*/

#spinner:not([hidden]) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#spinner::after {
    content: "";
    width: 80px;
    height: 80px;
    border: 2px solid white;
    border-top: 3px solid #0d6efd;
    border-radius: 100%;
    will-change: transform;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 2000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 2000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.w-235px {
    width: 235px;
}

.w-120px {
    width: 120px;
}

.w-50px {
    width: 50px;
}

.w-min-30px {
    min-width: 30px;
}

.w-145px {
    width: 145px;
}

.w-95px {
    width: 95px !important;
}

.w-min-200px {
    min-width: 200px;
}

.small-box {
    border-radius: .375rem;
    box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), .125), 0 1px 3px rgba(var(--bs-body-color-rgb), .2);
    position: relative;
    display: block;
    margin-bottom: 1.25rem;
    --bs-link-color-rgb: none;
    --bs-link-hover-color-rgb: none;
    --bs-heading-color: none;
}

    .small-box > .inner {
        padding: 10px;
    }

    .small-box .small-box-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 0;
        height: 70px;
        font-size: 70px;
        color: rgba(0, 0, 0, .15);
        transition: transform .3s linear;
    }

    .small-box > .small-box-footer {
        position: relative;
        z-index: 10;
        display: block;
        padding: 3px 0;
        text-align: center;
        background-color: rgba(0, 0, 0, .07);
    }
