@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

html,
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    background: linear-gradient(-45deg, #4ADFFA, #384ADF, #4ADFFA);
    background-size: 200% 200%;
    animation: gradient-anim 10s ease infinite;
    height: 100vh;
    width: 100%;
    position: fixed;
    overflow-y: auto;
}

a {
    color: rgb(189, 189, 189) !important;
    text-decoration: none !important;
}

a:is(.selected) {
    color: white !important;
}

a:hover {
    color: white !important;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title {
    font-size: 20px;
}

.title>i {
    font-size: 10px;
    vertical-align: middle;
}

.content {
    background: white;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 62, 82, 0.1), inset 0px 0px 0px 1px rgba(0, 62, 82, 0.1);
}

.content-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.grid-1 {
    grid-column: span 1;
}

.grid-2 {
    grid-column: span 2;
}

.grid-3 {
    grid-column: span 3;
}

.grid-4 {
    grid-column: span 4;
}

.grid-5 {
    grid-column: span 5;
}

.grid-6 {
    grid-column: span 6;
}

.grid-7 {
    grid-column: span 7;
}

.grid-8 {
    grid-column: span 8;
}

.grid-9 {
    grid-column: span 9;
}

.grid-10 {
    grid-column: span 10;
}

.grid-11 {
    grid-column: span 11;
}

.grid-12 {
    grid-column: span 12;
}

.control-label {
    font-weight: 400;
}

.position-right {
    float: right;
}

.position-left {
    float: left;
}

.d-flex-parent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.d-flex-parent>* {
    flex-grow: 1;
    flex-basis: 25%;
}

.d-flex-parent>.flex-child-span-4 {
    flex-basis: 100% !important;
}

@media (max-width: 641px) {
    .d-flex-parent {}

    .d-flex-parent>* {
        flex-basis: 100%;
    }
}

.container-fluid {
    margin-right: 0px;
    margin-left: 0px;
}

.blazored-modal-header {
    padding: 0 !important;
}

.tabs {
    margin-bottom: 20px;
}

.tabs>.tab {
    cursor: pointer;
    display: inline-block;
    padding: 0 20px;
    margin: 5px 0;
    border-right: 1px solid rgb(195, 195, 195);
}

.tabs>.tab:hover {
    color: #C4241C;
}

.tabs>.tab:last-child {
    border-right: 0;
}

.tabs>.tab-selected {
    color: #C4241C;
}


.c-pointer {
    cursor: pointer;
}

.bee-content {
    margin: auto;
    width: 100%;
    animation: fadeInAnimation ease 700ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    padding: 20px;
}

.box {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    border-radius: 20px;
    color: white;
    max-width: 100%;
}

.form-group {
    margin: 10px 0;
}

.grow-hover {
    transition: all .2s ease-in-out;
}

.grow-hover:hover {
    transform: scale(1.05);
    color: white;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes gradient-anim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}