@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

.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;
}

:root {
    /*--animate-duration: 800ms;*/
    --animate-delay: 1.5s;
}


@keyframes fade-in {
    from {
        opacity:0%;
        top: -60px;
    }

    to {
        top: 0px;
        opacity: 100%;
    }
}

@keyframes fade-out {
    from {
        top: 0px;
        opacity: 100%;
    }

    to {
        top: -60px;
        opacity: 0%;
        display:none;
    }
}


div.template {
}

div.background-parent {
    /*position: relative;*/
    width: 100%;
    height: 600px;
    position:relative;
    display: flex;
}


.spinner {
    border:16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.img-home {
    width:100%;
    height:100%;
    object-fit: cover;
}

.div-home {
    width: 100%;
    height: calc(100vh - 115px);
}

.div-home-mod {
    width: 100%;
    height: calc(100vh - 185px);
}

