/* ------Airtightness--------*/
.airtightness_wrapper {
    display: grid;
    grid-template-rows: auto;
}

.img_RedlineDrwgs {
    width: 100%;
    cursor: pointer;
    color: rgb(201, 0, 140);
}

.assemblies_wrapper {
    display: grid;
    grid-template-rows: auto;
}

.details_wrapper {
    display: grid;
    grid-template-rows: auto;
}

.env_grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
}

.env_grid_item {
    display: grid;
    border-width: 1px;
    border-style: dashed;
    border-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    grid-template-columns: 1fr 2fr;
    grid-template-areas:
        "title title"
        "img_1 notes"
        "img_2 notes";
}

/* For the Airtightness */
.airtightness_override {
    grid-template-columns: 1fr 0.65fr;
}

.env_item_heading {
    grid-area: title;
    margin-block-start: 0.25em;
    margin-block-end: 0.5em;
    overflow: hidden;
    font-size: 1.2em;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.env_item_img_1 {
    grid-area: img_1;
    justify-self: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    background: #f5f5f5;
    z-index: 100;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.env_item_img_2 {
    grid-area: img_2;
    justify-self: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    background: #f5f5f5;
    z-index: 100;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.env_item_notes {
    grid-area: notes;
}