@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.col-md-container {
    width: 91.66666667%;
    flex: 0 0 auto
}

@media (max-width: 1440px) {
    .col-md-container {
        width: 83.33333333%
    }
}

@media (max-width: 960px) {
    .col-md-container {
        width: 75%
    }
}

.container-vertical-margin {
    margin: 1.75rem 0 0 auto
}

.profile-img-container {
    border-radius: 50%;
    overflow: hidden;
    max-width: 72px;
    max-height: 72px;
    border: 1px solid rgba(128, 128, 128, 0.5)
}

    .profile-img-container img {
        width: -webkit-fill-available;
        height: -webkit-fill-available;
        object-fit: cover;
        object-position: center
    }

    .profile-img-container:hover {
        cursor: pointer
    }

.name-style-container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
    font-weight: bolder;
    font-size: larger
}

.mark-time-ago-style {
    text-align: end;
    text-overflow: ellipsis;
    white-space: nowrap;
    align-content: end;
    padding: 0 .25rem
}

.marker-profile-container {
    display: flex;
    align-items: center;
    justify-content: center
}

.marker-profile-disconnect {
}

    .marker-profile-disconnect::before {
        content: '';
        position: absolute;
        width: 32px;
        height: 32px;
        overflow: hidden;
        background-color: rgba(204, 204, 204, .725);
        border-radius: 50%;
        transform: translate(-1px, -1px);
        border: 1px solid #A9A9A9
    }

.marker-profile-animation {
}

    .marker-profile-animation::before {
        content: '';
        position: absolute;
        width: 32px;
        height: 32px;
        overflow: hidden;
        background-color: #DC143C;
        border-radius: 50%;
        animation: wave 2.75s infinite linear
    }

    .marker-profile-animation::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 8px;
        width: 16px;
        height: 16px;
        background-color: #800000;
        border-radius: 50%;
        animation: wave 1.25s infinite linear
    }

@keyframes wave {
    0% {
        opacity: .725;
        transform: scale(0.1)
    }

    100% {
        opacity: 0;
        transform: scale(3.5)
    }
}

.marker-profile-picture {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #430F0F
}

    .marker-profile-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

@keyframes drop {
    0% {
        transform: translateY(-200px) scaleY(0.9);
        opacity: 0
    }

    5% {
        opacity: 0.7
    }

    50% {
        transform: translateY(0px) scaleY(1);
        opacity: 1
    }

    65% {
        transform: translateY(-17px) scaleY(0.9);
        opacity: 1
    }

    75% {
        transform: translateY(-22px) scaleY(0.9);
        opacity: 1
    }

    100% {
        transform: translateY(0px) scaleY(1);
        opacity: 1
    }
}

.drop {
    animation: drop 0.3s linear forwards var(--delay-time)
}

.intro-name-stock {
    position: absolute;
    width: max-content;
    font-weight: bolder;
    font-size: larger;
    font-family: inherit;
    top: 12px;
    right: calc(100%)
}

@keyframes start {
    20% {
        transform: scale(2) rotate(3deg)
    }

    40% {
        transform: scale(1.2) rotate(-3deg)
    }

    60% {
        transform: scale(2) rotate(3deg)
    }

    80% {
        transform: scale(1.2) rotate(-3deg)
    }
}

@keyframes middle {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        transform: translateY(-25px) scale(1.7) rotate(-3deg)
    }

    70% {
        filter: blur(1px);
        transform: translateY(-25px) scale(1.7) rotate(3deg)
    }

    100% {
        transform: translateY(-13.5px) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes end {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        transform: translateY(-50px) scale(1.7) rotate(3deg)
    }

    70% {
        filter: blur(1px);
        transform: translateY(-50px) scale(1.7) rotate(-3deg)
    }

    100% {
        transform: translateY(-27.5px) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.content {
    padding-top: 1.1rem;
}

.content-auto-margin {
    margin: 0 auto
}

.frame {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100vh
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.vital-sign-unit-symbol {
    text-align: start;
    font-weight: lighter;
    font-size: smaller;
    margin: 0 -0.25rem;
}

.dashboard-title {
    font-size: larger;
    font-weight: bolder;
    padding: 0 0 0 0.25rem;
}

.dashboard-chart {
    padding: 0 0.5rem;
}

.dashboard-sign {
    text-align: end;
    padding: 0 0.5rem 0 0;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
    animation: spin 2s linear infinite;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            transition: stroke-dasharray 0.05s ease-in-out;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
        }

#blazor-error-ui {
    background: lightyellow;
    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: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }
