#app input[type="text"],
#app input[type="date"]
{
    border: none;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 0;
    font-size: 16px;
    outline: none;
}

#app input[type="text"][readonly="true"]
{
    cursor: not-allowed;
}

#app .input-field
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 22px;
}

#app .array-text-input .input-field
{
    display: inline-block;
}

#app .half > .input-field
{
    width: 48%;
}

#app .quarter > .input-field
{
    width: 22%;
}

#app .quarter > .input-field.half-field
{
    width: 48%;
    margin-bottom: 0;
}

#app .third > .input-field
{
    width: 30%;
}

#app .fifth > .input-field
{
    width: 18%;
}

#app .special > .input-field
{
    width: 25%;
}

#app .special > .input-field:last-child
{
    width: 10%;
}


.input-error-message
{
    position: absolute;
    display: none;
    bottom: -22px;
}

.input-error-message.invalid
{
    display: block;
    color: var(--red);
}

#app input[type="text"]::placeholder
{
    font-family: var(--italic-font);
    color: #959595;
}

#app .radio
{
    cursor: pointer;
    padding-left: 10px;
    margin-left: 10px;
    position: relative;
}

#app .radio::before,
#app .radio::after
{
    content: '';
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    transition: 0.5s background-color;
}

#app .radio::before
{
    top: 2px;
    left: -10px;
    width: 15px;
    height: 15px;
    background-color: #FFFFFF;
    border: 1px solid #555555;
}

#app .radio::after
{
    top: 6px;
    left: -6px;
    width: 9px;
    height: 9px;
    background-color: #FFFFFF;
}

#app .radio.active::after
{
    background-color: #555555;
}

#app .radio-group .error
{
    color: var(--red);
}

#app .checkbox
{
    cursor: pointer;
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
}

#app .checkbox::before
{
    content: '';
    position: absolute;
    display: inline-block;
    transition: 0.5s background-color;
    left: -10px;
    top: 2px;
    border: 1.5px solid #555555;
    width: 18px;
    height: 18px;
    border-radius: 2px;
}

#app .checkbox.active::before
{
    background-color: #555555;
}

#app .checkbox .fas
{
    font-size: 12px;
    position: absolute;
    left: -6px;
    top: 6px;
    color: transparent;
}

#app .checkbox.active .fas
{
    color: #FFFFFF;
}

#app .header-checkbox
{
    margin-bottom: 15px;
}

#app .header-checkbox:last-child
{
    margin-bottom: 0;
}

#app .dropdown
{
    padding: 13px;
    background-color: white;
    color: lightgray;
    font-family: var(--italic-font);
    cursor: pointer;
    position: relative;
    outline: none;
}

#app .dropdown.has-value
{
    color: var(--text-color);
    font-family: var(--font);
}

#app .dropdown > .fas
{
    /* position: absolute; */
    color: lightgray;
    float: right;
    font-size: 22px;
}

#app .dropdown-content
{
    position: absolute;
    background-color: white;
    width: 100%;
    left: 0;
    top: 53px;
    /* border-top: 1px solid gray; */
    box-sizing: border-box;
    z-index: 2;
    max-height: 250px;
    overflow-y: scroll;
}

#app .dropdown-item
{
    padding: 15px;
    font-family: var(--font);
    color: var(--text-color);
    transition: 0.2s background-color;
}

#app .dropdown-item:hover
{
    background-color: rgba(0, 0, 0, 0.1);
}

.array-text-input > input
{
    margin-bottom: 20px;
}

.array-text-input > input:last-child
{
    margin-bottom: 0;
}

#app input[type="text"].number-text
{
    width: 100px;
    margin: 0 2px;
}

#app .input-field.very-small
{
    width: 120px;
    text-align: right;
}

#app .warning
{
    color: #d14a15;
}

#app .multi-inputs > *
{
    margin-bottom: 10px;
}

#app .entry
{
    flex-grow: 1;
    width: 1px;
    text-align: center;
    margin-left: 5px;
    margin-bottom: 5px;
}

#app table
{
    width: 100%;
}

#app table .dropdown > span
{
    white-space: preserve;
}

#app .entry.text
{
    padding: 13px;
}

#app .entry .dropdown
{
    padding: 13px 0;
}

#app .entry .dropdown-item
{
    padding: 15px 0;
}

#app .entry .dropdown i
{
    float: none;
    font-size: 21px;
}

#app .entry .dropdown span + i
{
    display: none;
}
