﻿@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Roboto+Condensed:wght@400;700&display=swap');

.loading-progress {
    display: block;
    height: 8rem;
    margin: 20vh auto 1rem auto;
    position: relative;
    width: 8rem;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.3rem;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 0.3));
    }

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

.loading-progress-text {
    font-weight: 600;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    position: absolute;
    text-align: center;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }


#visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bar {
    min-width: 2px;
    min-height: 2px;
    height: 5px;
    margin: 0 0.5px;
    background-color: red;
    display: inline-block;
    border-radius: 10px;
    background-color: orange;
    transition: height 0.3s ease;
}

[type="search"].darksearch::-webkit-search-cancel-button {
    -webkit-appearance: none;
    background-color: white;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
}