﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@font-face {
    font-family: 'Bungee';
    src: url('../fonts/Bungee-Regular.ttf');
}

@font-face {
    font-family:'Rajdhani';
    src: url('../fonts/Rajdhani/Rajdhani-Regular.ttf')
}

html, body {
    font-family: 'Rajdhani', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-image: linear-gradient(rgb(255 255 255), rgba(162,215,254));
    background-repeat: repeat-x;
}

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

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

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

.roundedContainer {
    text-align: center;
    border-radius: 20px;
}


.dropArea {
    border: 2px dashed steelblue;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgoldenrodyellow ;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    min-height: 200px;
    border-radius: 20px;
    margin: auto;
}

.dropArea:hover {
    background-color:lightcyan ;
    color: #333;
}

.dropArea input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropAreaDrug {
    background-color: lightseagreen;
    border-color: orangered;
}

.height-fit-content {
    height: fit-content;
}

.side-orientation {
    writing-mode: vertical-rl;
}

table th:first-child {
    border-radius: 20px 0 0 20px;
}

table th:last-child {
    border-radius: 0 20px 20px 0;
}

table th:only-child {
    border-radius: 20px 20px 20px 20px;
}

.icon {
    margin-left: -12px;
    margin-top: -41px;
    width: 25px;
    height: 41px;
}

.input-wrapper {
    display: inline-block;
    position: relative
}

@-webkit-keyframes icon-warning {
    0% {
        filter: hue-rotate( 150deg ) saturate(5);
    }

    50% {
        filter: hue-rotate( 150deg ) saturate(0.2);
    }

    100% {
        filter: hue-rotate( 150deg ) saturate(5);
    }
}

@-moz-keyframes icon-warning {
    0% {
        filter: hue-rotate( 150deg ) saturate(4);
    }

    50% {
        filter: hue-rotate( 150deg ) saturate(0.2);
    }

    100% {
        filter: hue-rotate( 150deg ) saturate(4);
    }
}

@-o-keyframes icon-warning {
    0% {
        filter: hue-rotate( 150deg ) saturate(4);
    }

    50% {
        filter: hue-rotate( 150deg ) saturate(0.2);
    }

    100% {
        filter: hue-rotate( 150deg ) saturate(4);
    }
}

@keyframes icon-warning {
    0% {
        filter: hue-rotate( 150deg ) saturate(4);
    }

    50% {
        filter: hue-rotate( 150deg ) saturate(0.2);
    }

    100% {
        filter: hue-rotate( 150deg ) saturate(4);
    }
}

.icon-warning {
    -webkit-animation: icon-warning 1s infinite; /* Safari 4+ */
    -moz-animation: icon-warning 1s infinite; /* Fx 5+ */
    -o-animation: icon-warning 1s infinite; /* Opera 12+ */
    animation: icon-warning 1s infinite; /* IE 10+ */
}