input:focus {
    outline: none;
}

.JellapRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
}

.JellapRow__col {
    width: 100%;
}

.JellapRow__col-1-2 {
    width: 50%;
}

.JellapRow__col-1-3 {
    width: calc(100% / 3);
    margin: 5px;
}

.JellapRow input[type="text"] {
    padding: 5px;
    width: 100%;
}

.JellapRow input[type="number"] {
    padding: 5px;
    width: 100%;
}

.JellapRow select {
    padding: 5px;
    width: 100%;
}

.JellapRow textarea {
    padding: 5px;
    width: 100%;
}

.MoreCols {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 640px) {
    .JellapRow {
        flex-direction: column;
    }
    .JellapRow__col-1-2 {
        width: 100%;
    }
}