/* flex tools */
* {
    box-sizing: border-box;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-justify-content-between {
    justify-content: space-between;
}

.flex-align-items-baseline {
    align-items: baseline;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

.no-decoration {
    text-decoration: none;
    color: unset;
}

.margin-1 {
    margin: 0.25rem;
}

.hide {
    display: none;
}

input {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

.h-100{
    height: 100%;
}

input[type="search"] {
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type=text], input[type=search], input[type=number] {
    border: 1px solid black;
    border-radius: 0.1rem;
    padding: 0.25rem;
}