.input {
    box-sizing: border-box;
    height: 2rem;
    width: 100%;

    padding: 0 8px;
    line-height: 1.75;
    border: 0.5px solid var(--light-gray);
    border-radius: 0.5rem;
}



.input-helptext {
    font-size: 0.8rem;
}

.faulty-input {
    box-shadow: 0 0 1px 1px var(--mojo);
}

#introduction-area {
    width: 100%;
    padding: 8px 8px;
    resize: none;
    border: 0.5px solid var(--light-gray);
    border-radius: 0.5rem;
}

.input:hover, #introduction-area:hover, select:hover {
    border: 0.5px solid var(--oslo-gray) !important;
}

input:focus, button:focus, #introduction-area:focus, select:focus {
    outline: none !important;
    box-shadow: 0 0 1px 1px var(--light-orange);
}

.input-textarea {
    width: 100%;
    padding: 8px 8px;
    resize: none;
    border: 0.5px solid var(--light-gray);
    border-radius: 0.5rem;
}

.input:hover, .input-textarea:hover, select:hover {
    border: 0.5px solid var(--oslo-gray) !important;
}

input:focus, button:focus, .input-textarea:focus, select:focus {
    outline: none !important;
    box-shadow: 0 0 1px 1px var(--light-orange);
}

textarea {
    font-family: 'Open Sans', sans-serif;
}

.input-checkbox {
    width: 24px;
    height: 24px;

    -webkit-appearance: none;
    background-color: white;
    border: 1px solid var(--light-gray);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.input-checkbox:checked {
    background-color: var(--light-orange);
}

select.input-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;       /* remove default arrow */
    background: url(../../icon/chevron-down.svg) 98% / 15% no-repeat;   /* add custom arrow */
    background-color: white;
    background-size: 1rem;
    box-sizing: border-box;
    height: 2rem;
    width: 100%;

    padding: 0 8px;
    border: 0.5px solid var(--light-gray);
    border-radius: 0.5rem;
}

.selection-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    width: 100%;
}

.selection-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    margin: 4px 8px 4px 0;
    padding: 4px;
    background-color: white;
    font-size: 0.7rem;

    font-weight: 500;

    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
}

.selection-item > .icon {
    width: 0.9rem;
    height: 0.9rem;
    cursor: pointer;
}

.selection-item > .text {
    margin-left: 5px;
}

.content-card > .input-component, .content-card > .input-section > .input-component {
    min-width: 275px;
    width: calc(100% - 160px);
}

.input-component > .input-title.no-description {
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    color: var(--dark-gray);
    margin: 0.5rem 0 2px 0;
}

.input-component > .left {
    justify-self: flex-start;
    align-self: flex-start;
}

.input-component.inline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.input-component {
    display: flex;
    flex: auto;
    flex-wrap: wrap;
}

.input-component.inline span {
    flex-basis: 25%;
}

.input-component.inline > .input {
    flex-basis: auto;
    margin-right: 3%;
}

.component-checkbox {
    margin: 0 4px  0 4px;
}

.input-lang {
    margin: 5px 5px 5px 5px;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    color: var(--dark-gray);
}