#productLoader section.simple-text {
    padding: 1rem;
    max-width: 77rem;
    margin: auto;
}

div.product {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    justify-content: center;
}

div.product div.image {
    min-width: 15rem;
    max-width: 40rem;
    width: 100%;
    flex: 1 1 0;
}

div.product div.image img {
    width: 100%;
    margin: 2rem 0;
    border: 1px solid grey;
    border-radius: 0.2rem;
    box-shadow: 1px 1px 5px grey;
}

div.product button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #999999;
}

div.product button:disabled {
    border: 1px solid #999999;
    cursor: not-allowed;
}

div.product div.description {
    min-width: 15rem;
    max-width: 35rem;
    width: 100%;
    flex: 1 1 0;
}

div.description .subtitle {
    font-size: 1.4rem;
    color: #999999;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

div.product-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

div.product-types a {
    display: inline-block;
}

div.product-characteristics {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

div.characteristic {
    max-width: 10rem;
    min-width: 5rem;
    width: calc(((100% - 6rem) / 4) - 1rem);
    margin-right: 1rem;
}

div.characteristic img {
    width: 100%;
}

div.characteristic p {
    margin: 0.2em 0;
    display: block;
    font-weight: bold;
    color: #999999;
    font-size: 0.8rem;
}

div.norms {
    color: #999999;
}