html {
    font-size: 14px;
}

header {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 3rem;
    padding: .3em .4em;
    border-bottom: none !important;
    z-index: 2;
}

textarea {
    resize: vertical;
}

.button, button {
    height: 2.4rem;
}

.label {
    font-size: .7em;
}

.card {
    overflow: unset;
}

.required-field-empty {
    box-shadow: -20px 0px 0px 0px #ff6e6e;
}

.logo-wrap img {
    height: auto;
    width: 6rem;
}

.std-margin {
    margin: 0.3rem;
}

.wide {
    width: 100%;
}

.toggled {
    box-shadow: inset 0 0 0 99em rgba(17, 17, 17, 0.1);
}

.small-margin-top-bottom, .input-field-holder>* {
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
}

.display-flex {
    display: flex;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.v-select .vs__search::placeholder, input::placeholder, input[type=date], .finished-task, #freelo-task-list-control {
    color: grey;
}

#freelo-task-list-wrap, #airtable-record-list-wrap {
    resize: vertical;
    overflow: hidden;
    height: 38vh;
}

#freelo-task-list, #airtable-record-list {
    overflow: auto;
    height: inherit;
    border-width: 1px 0;
    border-style: solid;
    border-color: grey;
}

#freelo-task-list div, #airtable-record-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: black;
    height: auto;
}

#freelo-task-list i, #airtable-record-list i, .small-icon {
    font-size: 1.3rem !important;
}

#freelo-task-list .finished-task {
    text-decoration: line-through;
}

#freelo-task-list-control, #airtable-record-list-control {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#freelo-task-list-control>span, #airtable-record-list-control>span, #footer>a {
    margin: 0 0.1rem;
    font-size: 0.9rem;
}

#freelo-footer {
    display: flex;
    justify-content: space-between;
}

header .roll-section {
    text-align: right;
}

.roll-section * {
    cursor: pointer;
}

#std-out {
    height: unset;
    position: fixed;
    top: 0;
    z-index: 3;
}

::-webkit-scrollbar {
    display: none;
}

@keyframes loading {
    0% {
        bottom: 50%;
        right: 30%;
        width: 20%;
        height: 2.5rem;
        left: 40%;
    }
    100% {
        bottom: 50%;
        right: 40%;
        width: 30%;
        height: 3.5rem;
        left: 20%;
    }
}

#loading {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 10;
    top: 0;
}

#loading span, #loading .shadow {
    position: fixed;
    display: flex;
    border-radius: 6px;
    padding: 5px;
    text-align: center;
    justify-content: center;
}

#loading span {
    bottom: 50%;
    color: white;
    right: 40%;
    background-color: #0074d9ad;
}

#loading .shadow {
    background-color: #ff0303ad;
    animation-name: loading;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.lock * {
    pointer-events: none;
}

.lock::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(228 228 228 / 25%);
}

.label.idDevelopment {
    background-color: blue;
}

.label.success {
    background-color: #009a00;
}

.label.fail {
    background-color: red;
}

.label.atCustomer {
    background-color: #ccc614;
    color: black;
}

.label.underDiscussion {
    background-color: grey;
}

.label.stalled {
    background-color: #a53af7;
}