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

html, body {
    font-family: Poppins, Helvetica, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

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

.content {
    padding-top: 1.1rem;
}

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

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#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;
}

@keyframes bounce {
    0% {
        opacity: 0.8;
        transform: scale(0.2);
    }

    80% {
        opacity: 0;
        transform: scale(1.2);
    }

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

.loading-logo {
    animation: bounce 12000ms ease 0s 1 normal forwards;
    display: inline-block;
    height: auto;
    left: 42vw;
    max-height: 30vw;
    max-width: 30vh;
    position: relative;
    top: 37vh;
    width: auto;
}

@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.page {
    animation: appear 0.3s
}

.callout {
    border-left: 5px solid #0d6efd; /* цвет границы Bootstrap Primary */
    background-color: rgba(0, 123, 255, 0.1); /* фоновый цвет Bootstrap Primary с низкой непрозрачностью */
    padding: 20px;
    margin: 20px 0;
    border-radius: .25rem; /* скругление углов, как в Bootstrap */
}