﻿@import url('first-loading-spinner.css');


:root {
    --box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075), 0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075), 0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
}

/*Font*/
@font-face {
    font-family: 'Pyidaungsu';
    src: url('../fonts/Pyidaungsu.ttf');
}

#blazor-error-ui {
    background: white;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
    height: 100%;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.err-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-170-pixel {
    width: 170px;
}

.full {
    width: 100%;
}

.loading-display {
    display: none;
}

.loading {
    position: absolute;
    top: 30vh;
    width: 100%;
    text-align: center;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999999;
}


/*Progress Bar*/


.ql-editor {
    padding: 0 !important;
}
.w-170-pixel {
    width: 170px;
}

#container {
    width: 50%;
    max-width: 400px;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    z-index: 8000;
    transform: translate(-50%,-50%);
}
.progress {
    height: 20px !important;
    border-radius: 39px;
    border-radius: 30px !important;
    background: #ced4da;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 25%), 0 1px rgb(255 255 255 / 8%);
    display: flex;
    overflow: hidden;
    font-size: .75rem;
}

.progress-bar-striped {
    width: var(--blazor-load-percentage);
    border-radius: 100px;
    height: 12px;
    transition: 0.4s linear;
    transition-property: width, background-color;
    background-color: #72BE44 !important;
    animation: progressAnimation 6s;
    margin-top: 4px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.progress-center {
    position: relative;
    transform: translate(0%, 50%);
    top: 50%;
}


.loading-progress-text {
    /*position: absolute;*/
    text-align: center;
    color: #75BF48;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

/*End Progress Bar*/
