﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

.modal-dialog {
    outline: none;
}

.dropdown-toggle::after {
    content: none;
}

.modal .modal {
    overflow: hidden;
}

#expense-table div.DTE_Field_Type_select div.DTE_Field_Input {
    padding: 0;
}

#expense-table select {
    padding: 0;
    width: 100%;
}

#expense-table .edited {
    background-color: lightgreen;
}

.dataTable .edited {
    background-color: lightgreen;
}

.user-notification-modal-item {
    cursor: pointer;
}

    .user-notification-modal-item:hover {
        background-color: #f9fbfd;
    }


.axmodal-content .blazored-typeahead {
    z-index: 99999;
}

.axmodal-content .blazored-typeahead__results {
    display: contents;
}

.ss-dropdown[data-portal="1"] {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
}

.app-update-progress-container {
    box-sizing: border-box;
    width: 80%;
    /*background-color: #ddd;*/
    border-radius: .375rem;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    height: 30px;
}

.app-update-progress-bar {
    width: 0%;
    height: 100%;
    /*background-color: #4caf50;*/
    border-radius: .375rem;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    position: absolute;
    right: 0;
    animation: fill-unfill 10s linear infinite;
}

.app-update-progress-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: black;
    opacity: 1;
    transition: opacity 1s ease;
}

.app-update-progress-label-old {
    right: 10px;
    animation: fade-out 10s ease-in-out infinite;
}

.app-update-progress-label-new {
    left: 10px;
}

.app-update-progress-label-updating {
    animation: fade-in-out 10s ease-in-out infinite;
}


@keyframes fill-unfill {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}

@keyframes fade-out {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
    }

    50%, 70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}