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

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    width: 100vw;
}

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

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

.btn-action-green {
    color: #fff;
    background-color: #49C9A4;
    border-color: #49C9A4;
}

.btn-action-orange {
    color: #fff;
    background-color: orange;
    border-color: orange;
}

.btn-action-red {
    color: #fff;
    background-color: red;
    border-color: red;
}

.btn-action-white {
    color: black;
    background-color: #fff;
    border-color: #fff;
}

.btn-inactive {
    opacity: 50%;
}

.btn-action-blue {
    color: #fff;
    background-color: #384465;
    border: 1px solid white;
}

.btn-action-no-background {
    color: black;
    background-color: none;
    border-color: none;
    padding-left: 5px;
    padding-right: 5px;
}

    .btn-action-no-background:hover {
        color: #49C9A4;
    }

.btn-action-no-background-active {
    color: #49C9A4;
}

.round {
    border-radius: 50px;
}

.input-group-append .btn-light {
    border-top: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
}

/*.valid.modified:not([type=checkbox]) {

    border-color: green;
}

.invalid {

    border-color: red;
}*/



/*.invalidField {
    outline: 2px dotted red;
}

.validField {
    outline: 1px dashed blue;
}*/



.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 !important;
        cursor: hand !important;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


body::-webkit-scrollbar-thumb {
    background-color: blue; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid orange; /* creates padding around scroll thumb */
}


.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .spinner > div {
        background-color: #333;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.form-control:focus {
    border-color: #80bdff !important;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%) !important;
}
