.form-section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.image-selector {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
}

@media only screen and (max-width: 768px) {
    .colwrap {
        grid-auto-flow: row;
        grid-auto-rows: 1fr;
    }
}

.image-selector input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.drinkcard-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 0 1rem;
    transition: all 100ms ease-in;
    filter: brightness(1.8) grayscale(1) opacity(.7);
}

.drinkcard-label-text {
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

@media (hover: hover) {
    .drinkcard-label:hover {
        filter: brightness(1.2) grayscale(.5) opacity(.9);
    }
}

.image-selector input:active+.drinkcard-label {
    opacity: .9;
}

.image-selector input:checked+.drinkcard-label {
    filter: none;
}

.drinkcard-label-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.price-form {
    display: grid;
    font-size: 1.3rem;
    width: 85vw;
    max-width: 35em;
    justify-items: center;
    gap: 3rem;
    grid-template-columns: 1fr;
    border: #E5E5E5 solid 0.1em;
    padding: 0.8em;
}

.report-card {
    display: flex;
    flex-direction: column;
    width: 85vw;
    max-width: 35em;
    align-items: center;
    border: #E5E5E5 solid 0.1em;
    padding: 0.8em;
}

.report-card p {
    font-size: 1.2rem;
    margin: 0 0 1.4rem 0;
}


.guide {
    /* font-size: 1.5rem; */
    margin-bottom: 0.7rem;
    text-align: center;
}


.price {
    display: grid;
    grid-template-columns: 1fr 5fr;
    background: white;
    column-gap: 0.5rem;
    align-items: center;
    /* justify-self: left; */
}

.euro {
    color: black;
    /* border: 1px black solid; */
    /* align-self: center; */
    text-align: right;
    font-size: 2em;
}

.continue {
    align-self: center;
}

.price-input {
    width: 80%;
    text-align: center;
    /* border: 0; */
    font-size: 2em;
    font-family: monospace;
}

.text-input-container {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    column-gap: 1rem;
    align-items: center;
    max-width: 15rem;
}

.text-input-label {
    text-align: right;
    font-size: 1em;
}

.text-input {
    justify-self: right;
}

input[type=text], input[type=email], input[type=password] {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
}

.text-input-error {
    color: red;
    grid-column: 1/3;
    justify-self: right;
    font-size: 0.8em;
}

.text-input-error p {
    word-break: break-word;
    min-width: 0;
    min-height: 0;
    max-width: 20rem;
}

select {
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
    background-color: white;
}

.qmark {
    height: 1.3em;
}

.xmark {
    height: 1em;
}

.input-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.input {
    grid-column: 2/3;
}

.qmark-container {
    position: relative;
    width: min-content;
}

.tooltip-text {
    position: absolute;
    left: -15em;
    top: 2em;
    background-color: #6b6b6be8;
    color: white;
    font-size: smaller;
    padding: 0.5em;
    max-width: 15em;
    z-index: 1;
    visibility: hidden;
}

input[type=file] {
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
}

.file-input {
    display: block;
    background-color: #36c28a;
    border: 1px solid #36c28a;
    color: white;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Monterrat", sans-serif;
    font-size: 1.3rem;
    outline: none;
    outline: 0;
    padding: 0.3rem 2rem;
    text-align: center;
    transition: box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.file-input:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
}

.form-shortcut {
    display: block;
}

.filename-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    font-size: smaller;
    font-style: italic;
    gap: 0.5em;
}

.displaywithfile {
    display: none;
}

.topmargin {
    margin-top: 1em;
}

.green {
    color: #36c28a;
}

.small {
    font-size: 1rem;
}
