body {
    font-family: Arial, sans-serif;
}

h2 {
    text-align: center;
}

.formWrapper {
    margin: 0 auto;
    width: 500px;
}

.hint {
    font-size: 0.75em;
    color: #999;
    margin-left: 20px;
}

.invalidField {
    border: 2px solid red;
}

.form {
    width: 500px;
}

form label {
    font-weight: bold;
}

.errorMessageDialog {
    display: none;
}

.fieldName {
    color: red;
    font-weight: bold;
}

.showcaseWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px groove navy;
}

.shoppingCart {
    width: 159px;
    height: 159px;
}

.shoppingCartOver {
    outline: 2px solid blue;
}

.cartHint {
    margin: 0;
    padding: 5px;
    width: 159px;
    text-align: center;
    font-weight: bold;
    font-size: 1.25em;
    color: gold;
    text-shadow: 1px 1px 2px #333;
    line-height: 32px;
}

.cartInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 159px;
    margin: 0;
}

.totalCostImage {
    margin: 5px;
}

.totalCostValue {
    color: gold;
    text-shadow: 1px 1px 2px #333;
    font-weight: bold;
    font-size: 1.5em;
    display: inline-block;
    margin: 5px;
    width: 80px;
}

.itemsAmount {
    background-color: forestgreen;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    color: yellow;
    text-shadow: 1px 1px 1px orange;
}

.emptyCart {
    width: 200px;
    color: #333;
    text-shadow: 1px 1px 2px black;
    font-variant: small-caps;
    text-align: center;
    visibility: hidden;
    border: 2px dashed blue;
    height: 100px;
    font-size: 1.25em;
    line-height: 100px;
    margin-right: 10px;
}

.emptyCartOver {
    border: 2px dashed red;
}

.items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1125px;
}

.itemWrapper {
    padding: 10px;
    border: 1px solid blue;
    width: 160px;
}

.itemImage {
    width: 159px;
    height: 159px;
}

.itemPrice {
    margin: 0;
    text-align: center;
    color: forestgreen;
    text-shadow: 1px 1px 2px #333;
    font-weight: bold;
    font-size: 1.25em;
}

/*# sourceMappingURL=main.css.map */
