﻿body {
    --bg-color: #C0B9B0;
    --border-color: #AAAAAA;
    --red: #de0207;
}

* {
    box-sizing: border-box;
}


.img-border {
    border: 1px solid darkgray;
    box-shadow: 1px 1px 2px #8e8e8e;
    max-width: 200px;
}

.header {
    padding: 16px 32px;
    background-color: var(--bg-color);
    border-radius: 5px;
}

.divider {
    margin: 32px 0;
    border-bottom: 1px solid var(--border-color);
    /*    width: 100%;*/
}

.product-container {
    display: flex;
    margin: 30px 0;
}

.product-column {
    flex-grow: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.product-column-header {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-column-header-standalone {
    margin-bottom: 0;
}

.product {
    display: flex;
    width: 100%;
    padding: 0 50px 30px 0;
}

.product-image {
    max-width: 200px;
    margin-right: 20px;
    display: flex;
}

.product-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 1000px) {
    .product-right {
        flex-direction: column;
    }
}

.product-info {
    flex-grow: 1;
    /*        max-width: 50%;*/
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}

    .product-info h4, h5 {
        margin: 0;
    }

    .product-info h4 {
        margin-bottom: 4px;
    }

    .product-info .not-available {
        color: var(--red);
    }

.product-info-spacer {
    height: 20px;
}

.product-digital {
    color: #333333;
    display: flex;
    align-content: center;
    vertical-align: bottom;
    margin-top: 8px;
}

    .product-digital:hover {
        color: #333333;
    }

.product-digital-text {
    margin-top: 2px;
    text-decoration: underline;
}

.product-digital .material-icons {
    margin-right: 8px;
    margin-bottom: 4px;
}

.product-digital:hover {
    text-decoration: none;
}

    .product-digital:hover .product-digital-text,
    .product-digital-text:hover {
        text-decoration: underline;
    }





.product-input {
    min-width: 130px;
    width: 130px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.product-input-field {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #FFFFFF;
    text-align: center;
    padding: 6px 0;
    width: 60px;
}

.product-input-button {
    border: none;
    color: var(--red);
    background-color: #FFFFFF;
    font-size: 16px;
    width: 30px;
    height: 30px;
    text-align: center;
    vertical-align: middle;
}

    .product-input-button:hover {
        background-color: var(--bg-color);
        border-radius: 100%;
    }


.personal {
}

.form-group label {
    height: 34px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.personal-header {
    margin-bottom: 20px;
}

.col-sm-2 {
    padding-left: 0;
}

.required {
/*    font-size: 18px;*/
    color: var(--red);
}

small .required {
    font-size: inherit;
}


.form-datenschutz {
    display: flex;
}

.datenschutz {
    width: 280px;
    display: flex;
    align-items: flex-start;
}

    .datenschutz input {
    }

    .datenschutz span {
        margin-left: 8px;
    }


.modal-image-container {
    /*    max-height: 80vh;
    width: 60vw;*/
/*    width: 40vw;*/
}

    .modal-image-container img {
        /*    height: 100%;*/
        /*        width: 50vw;*/
        width: 40vw;
        max-height 80vh:
    }


@media (max-width: 1000px) {
    .product-container {
        flex-direction: column;
        margin: 0 0 30px 0;
    }

    .product-column {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .img-border {
        max-width: 95px;
    }

    .product {
        flex-grow: 1;
        width: 100%;
        padding: 0 0 20px 0;
    }

    .product-right {
        flex-grow: 1;
        width: 100%;
    }

    .product-info-spacer {
        height: 0;
    }
}
