html {
    height: 100%;
    margin: 0;
}

body {
    height: 100%;
    word-wrap: break-word;
}

table {
    table-layout: fixed;
}

td ul {
    margin-left: 0;
}

table th {
    color: #5b5b5b;
    font-weight: 400;
    font-size: 1rem;
}

input[type='number'] {
    padding: 10px 15px;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
}

.teaser_item {
    float: none;
    display: inline-block;
    vertical-align: top;
}

.ExternalClass {
    width: 100%;
}


@media only screen and (max-width: 992px) {
    .home .teaser_item {
        display: block;
    }
}


/* Fix: on mobile device the submit button does not work because it disappears when pressed, because the #Button gets the :hover state which adds display: none on smaller screens */
input#Button:hover   {
    display: block;
}