.mainBackground {
    background: linear-gradient(to bottom, var(--bs-primary-bg-subtle) -10%, #ffffff 30% 85%, var(--bs-secondary-bg-subtle) 110%);
}

.timerBackground {
    background: linear-gradient(to right, #ffffff00 20%, #6610f220, #ffffff00 80%);
}

.icon-trash {
    display:inline-block;
    background-color: currentColor;
    -webkit-mask-image: url('/icons/trash.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url('/icons/trash.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.icon-save {
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-image: url('/icons/save.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url('/icons/save.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1b6ec2;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}

.bottomSpace {
    height:2rem;
}

@media(max-width: 520px) {
    .bottomSpace {
        height: 4rem;
    }
}

.close-icon {
    display: inline-block;
    background-color: var(--bs-danger);
    -webkit-mask-image: url('/icons/close.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url('/icons/close.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.loaded-timerlist {
    background: linear-gradient(to right, transparent, #19875440, transparent);
}