#shop-area {  
    width: 805px;
    margin-left: auto; 
    margin-right: auto;
    display: grid;
    grid-template-columns: 185px 1fr;
	/* margin-left: auto; -- для grid и flex контейнеров выравнивание по центру задается justify-content: center;
	margin-right: auto; */
    margin-top: 7px;
	margin-bottom: 10px;
	justify-content: center;
}

div.fabrics {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: minmax(114px, auto);
    gap: 5px;
    align-items: center;
    justify-items: center;
    border-top: 1px dotted lightsteelblue;
	border-bottom:  1px dotted lightsteelblue;
	padding-top: 7px;
	margin-left: 4px;
	margin-right: 4px
}

div.prices {    
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    grid-auto-rows: minmax(30px, auto);
    margin-top: 7px;
	margin-bottom: 10px;
    justify-content: center;
    border-top: 1px dotted lightsteelblue;
	border-bottom:  1px dotted lightsteelblue;
}

.flex-container {
    display: flex;  
    background-color: #15264C;  
    padding-left: 13px;  
}
   
.flex-container > div {  
    background-color: #f1f1f1;  
    margin: 2px;  
    padding: 7px;  
    font-size: 14px;  
}