/* fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');
.montserrat {
    font-family: 'Montserrat', sans-serif;
    font-size: small;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    color: #8BC34A !important;
    text-decoration: none !important;
}

.btn-nolink:hover {
    text-decoration: none !important;
}

a:hover {
    text-decoration: underline !important;
    color: #D84315;
}

#custom-loader {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    /* display: none; */
    /* visibility: hidden; */
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999999;
}

#app-loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #8BC34A;
    border-right: 8px solid #8BC34A;
    border-bottom: 8px solid #8BC34A;
    border-left: 8px solid transparent;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 0.4s linear infinite;
    animation: spin 0.4s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.full-page-containter {
    min-height: 85vh;
}

.custom-nav-bg {
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(100, 100, 100, 0.03);
}

.nav-img {
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

#app-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

#app-sidebar {
    min-width: 45%;
    max-width: 65%;
    min-height: 100vh;
    background-color: #212121;
    display: none;
}

@media (min-width: 768px) {
    #app-sidebar {
        min-width: 20%;
        max-width: 20%;
        display: block !important;
    }
}

@media (min-width: 992px) {
    #app-sidebar {
        min-width: 15%;
        max-width: 15%;
        display: block !important;
    }
}

#app-sidebar.active {
    display: block;
    position: fixed;
    height: 100vh;
    padding-bottom: 100px;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: scroll;
}

#app-sidebar-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 1.5s ease-in-out;
}

#app-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

#app-content {
    width: 100%;
    background-color: #F9F9F9;
}

#app-header-nav {
    background-color: #fff;
    padding: 15px;
}

.app-sidebar-logo {
    font-family: 'Oleo Script Swash Caps', cursive;
    color: lightgray;
    padding: 15px;
    box-sizing: border-box;
}

.app-sidebar-logo a {
    font-size: large;
    color: lightgray;
}

.app-sidebar-logo,
.app-sidebar-logo a:hover {
    color: lightgray;
    text-decoration: none;
}

.app-sidebar-user {
    color: lightgray;
    text-transform: capitalize;
    padding: 15px;
    border-bottom: solid #424242 1px;
}

.sidebar-header {
    padding: 15px;
    color: #BDBDBD !important;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    font-weight: 500;
}

.sidebar-link {
    display: block;
    padding: 15px;
    margin: 3px 0;
    color: #EEEEEE !important;
    background-color: rgba(255, 255, 255, 0.04);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.sidebar-active {
    background: #424242;
    color: #8BC34A !important;
    border-left: solid #8BC34A 4px;
}

.sidebar-link:hover {
    text-decoration: none !important;
    color: #8BC34A !important;
    background: #424242;
}

.dash-card-one {
    background: linear-gradient(90deg, #9ebd13 0%, #008552 100%);
    border-radius: 5px;
    padding: 15px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.dash-card-two {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    border-radius: 5px;
    padding: 15px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.dash-card-three {
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
    border-radius: 5px;
    padding: 15px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.dash-card-four {
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
    border-radius: 5px;
    padding: 15px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.app-custom-card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.currency {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}