#discount-container {
    display: flex;
    justify-content: center;
}

.customer-type {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.customer-label {
    margin-top: 30px;
    text-align: left;
}
.customer-type-checkbox {
    display: flex;
    flex-direction: row;
}

.customer-type-checkbox:not(:first-child) {
    margin-left: 40px;
}

.customer-type-label {
    margin-left: 5px;
}

.discount {
    padding: 20px 20px;
    margin-bottom: 20px;
    width: 900px;
    border-radius: 30px;
    border-color: #ff4f4f;
    border-style: solid;
    font-family: "Open Sans Bold", Arial, Helvetica, sans-serif;
    font-size: 1.3em;
}

.discount-asterisk {
    font-size: 14px;
    color: #8e8e8e;
}

.configurator-container {
    display: flex;
    justify-content: center;
}
.calculator-grid {
    /*outline: red solid 1px;*/
    max-width: 1000px;
    padding: 20px 20px;
    background-color: #fff;
    border-radius: 30px;
    border-color: #005a6d;
    border-style: solid;
}

.calculator-grid {
    display: grid;
    grid-template-columns: [name] 60ch repeat(3, [checkbox] 3em) [price] 10ch [note] 10ch;
    grid-row-gap: 8px;
    /*grid-column-gap: 2px;*/
    justify-content: center;
    justify-items: stretch;
    align-content: stretch;
    align-items: stretch;
}

.calculator-grid div {
    /*outline: auto;*/
    display: flex;
    align-items: center;
}

.amount-column {
    grid-column: 2 / -1;
}

.add-to-cart-element {
    display: flex;
    justify-content: flex-end;
}

.subtotal-element {
    margin: 1em 0;
    grid-column: 2 / -1;
}

.full-width-element {
    grid-column: 1 / -1;
}

.grid-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox-element {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-name {
    font-size: 18px;
    font-family: "Open Sans Bold", sans-serif;
    padding-right: 2ch;
    justify-content: flex-end;
}

/** -------------------------------------------------------------------
                    Disabled Checkbox Handling
-------------------------------------------------------------------- */

.radio {
    width: 0.7em;
    height: 0.7em;
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
    padding-top: 4px;
}

.radio input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #818181;
    width: 0.7em;
    height: 0.7em;
    border: 1px solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

.radio input[type="radio"]::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    opacity: 0;
    transition: 120ms opacity ease-in-out;
    box-shadow: inset 1em 1em #005a6d;
    border-radius: 50%;
}

.radio input[type="radio"]:checked::before {
    opacity: 1;
}

.checkbox {
    margin-top: 4px;
    width: 0.7em;
    height: 0.7em;
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    width: 0.7em;
    height: 0.7em;
    border: 1px solid #818181;
    transform: translateY(-0.075em);

    cursor: pointer;
    display: grid;
    place-content: center;
}

.checkbox input[type="checkbox"]::before {
    content: "";
    opacity: 0;
    transition: 20ms opacity ease-in-out;
    margin-bottom: 3px;
    height: 0.53em;
    width: 0.18em;
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(45deg);
}

.checkbox input[type="checkbox"]:checked::before {
    opacity: 1;
}

.checkbox input[type="checkbox"]:hover {
    background-color: #f5f5f5;
}

.radio input[type="radio"]:hover {
    background-color: #f5f5f5;
}

.radio input[type="radio"]:active {
    background-color: #e3e3e3;
}

.checkbox input[type="checkbox"]:active {
    background-color: #e3e3e3;
}

.checkbox input[type="checkbox"]:checked {
    background-color: #005a6d;
}

.checkbox input[type="checkbox"]:checked:active {
    background-color: #004a59;
}

.checkbox + .checkbox {
    margin-top: 1em;
}

.item-price-text {
    width: 8ch;
    display: flex;
    justify-content: flex-end;
}



/** -------------------------------------------------------------------
                    Disabled Checkbox Handling
-------------------------------------------------------------------- */

.checkbox input[type="checkbox"]:disabled:active {
    background-color: #ececec;
}
.checkbox input[type="checkbox"]:disabled {
    background-color: #ececec;
}

.checkbox input[type="checkbox"]:disabled::before {
    border-color: #8c8c8c;
}

.radio input[type="radio"]:disabled {
    background-color: #ececec;
}
.radio input[type="radio"]:disabled::before {
    box-shadow: inset 1em 1em #8c8c8c;
}


/** -------------------------------------------------------------------
                    Other Stuff
-------------------------------------------------------------------- */

.add-to-cart-button {
    width: 200px;
    height: 30px;
}

.centered-container {
    display: flex;
    justify-content: center;
}

/** -------------------------------------------------------------------
                    Shopping Cart
-------------------------------------------------------------------- */

.shopping-cart {
    width: 900px;
    margin-top: 4em;

    border-radius: 30px;
    border-color: #005a6d;
    border-style: solid;
}

.cart-item {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    border-bottom: #005a6d solid 3px    ;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.cart-item:last-child {
    margin-bottom: 20px;
    /*border-bottom: none;*/
}

.cart-item-image {
    width: 130px;
    height: 90px;
}

.item-description-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
}

.cart-item-image-container {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.cart-item * {
    /*outline: red solid 1px;*/
}

.cart-item-title {
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: #005a6d solid 1px ;
}

.item-interaction-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.cart-item-feature-list li {
    color: #787878;
    font-size: 0.9em;
    font-weight: bolder;
    text-align: left;
}

.cart-item-feature-list {
    list-style: inside disc;
    padding-left: 0;
}

.cart-item-right-side {
    display: flex;
    height: 100%;
    min-width: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 20px;
}

.cart-item-price {
    align-self: center;
    min-width: 10ch;
    padding-left: 20px;
    padding-right: 40px;
    text-align: right;
}

.cart-item-delete {
    min-width: 10ch;
}

.total-price-container {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.subtotal-container{
    padding-right: 60px;
    margin-bottom: 15px;
}

.subtotal-container:last-child {
    margin-bottom: 0;
}

.price-text-container {
    text-align: right;
}

.price-text {
    font-weight: bolder;
    font-family: "Open Sans Bold";
}

.price-value-container {
    margin-left: 10px;
    width: 100px;
    text-align: left;
}

.container-right {
    display: flex;
    justify-content: flex-end;
}


/** -------------------------------------------------------------------
                    Shipping Form
-------------------------------------------------------------------- */

.shipping-container-border {
    margin-top: 40px;
    width: 900px;
    border-radius: 30px;
    border-color: #005a6d;
    border-style: solid;
    padding-bottom: 20px;
}

.shipping-container {
    max-width: 600px;
    padding: 0 2em 0;
    margin: 0 auto;
}

.shipping-container .form {

}

.field {
    text-align: left;
}

.text-input {
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 2px);
}

.address-input-label {
    display: block;
}

.address-submit-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.submit-button:disabled {

    cursor: not-allowed;
    background-color: #4b514d;
}

.submit-button:disabled:hover {
    font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
    cursor: not-allowed !important;
}



.discount-hidden {
    display: none !important;
}