/*!
 * Theme Name: Default
 * Package : DashLite
 * Author: Softnio
 * Author URI: http://themeforest.net/user/softnio
 * Version	 :	1.0.0
 * Updated	 :	07.23.2020
**/


.add-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
    background: #cfe2ff;
    color: #084298;
}
.add-btn:hover {
    background: #cfe2ff;
    color: #084298;
}

.fab-container {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1000;
}

#pageLoader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 246, 250, 0.92);
    transition: opacity .25s ease, visibility .25s ease;
}

#pageLoader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.user-sticky-menu {
        display: none;
    }

@media (max-width: 1199.98px) {
    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    .user-sticky-menu {
        position: fixed;
        right: 8px;
        bottom: 10px;
        left: 8px;
        z-index: 999;
        display: block;
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, .96);
        border: 1px solid #e5e9f2;
        border-bottom: 0;
        border-radius: 18px;
        box-shadow: 0 -10px 30px rgba(31, 43, 58, .14);
        backdrop-filter: blur(12px);
    }

    .user-sticky-menu__item {
        min-width: 0;
        height: 58px;
        padding: 7px 4px 6px;
        color: #526484;
        border-radius: 14px;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.15;
        text-decoration: none;
        border: 0;
        background: transparent;
        appearance: none;
        -webkit-appearance: none;
        transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .user-sticky-menu__item em {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        margin-bottom: 3px;
        font-size: 20px;
        line-height: 1;
        border-radius: 50%;
        color: #364a63;
        background: #f5f7fb;
        transition: color .2s ease, background-color .2s ease;
    }

    .user-sticky-menu__item span {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .user-sticky-menu__item:active {
        transform: translateY(1px);
    }

    .fab-container {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .user-sticky-menu {
        right: 4px;
        left: 4px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .user-sticky-menu__item {
        font-size: 10px;
    }

    .user-sticky-menu__item em {
        width: 26px;
        height: 26px;
        font-size: 18px;
    }
}