.plaster-container{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    max-width: 1902px;
    background: linear-gradient(0deg,#333 50%,#555 100%);
}
.plaster-poster{
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 400px;
    padding: 10px;
}
.plaster-caption{
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    border-radius: 5px;
}
.plaster-caption span{
    align-self: center;
    padding: 2px 15px;
    font-weight: bold;
    color: #fff;
    background-color: #e9242e;
    border-radius: 25px;
}
.plaster-caption > h4{
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
}
.plaster-caption > h4 > b{
    color: #fecc00;
    font-size: 34px;
}
.plaster-img{
    height: 300px;
    padding: 10px;
    overflow: hidden;
}
.plaster-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.plaster-content{
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    padding: 10px;
    margin-bottom: 5px;
    color: #FFFFFF;
}
.plaster-consumption{
    text-align: center;
}
.plaster-cost{
    display: flex;
    gap: 5px;
    width: 100%;
    text-align: center;
}
.plaster-consumption,
.plaster-cost div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    line-height: 1.2;
    background-color: #444444;
    border-radius: 5px;
    padding: 5px;
}
.plaster-consumption > span,
.plaster-cost div span:first-child {
    font-size: 14px;
    flex-grow: 1;
    flex-basis: 0;
    font-weight: 500;
    color: #ddd;
}
.plaster-consumption b,
.plaster-cost div > span:last-child {
    font-size: 18px;
    color: #fecc00;
    font-weight: bold;
}
.plaster-cost div > span i{
    color: #FFFFFF;
}
.plaster-textures{
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
}
.plaster-textures .item{
    border-right: 2px solid #333333;
    overflow: hidden;
}
.plaster-textures .item .name{
    background-color: #fecc00;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.plaster-textures .item-img{
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.plaster-textures .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.plaster-textures .item-img:hover img {
    transform: scale(1.1);
}
@media (max-width: 1200px) {
    .plaster-poster,
    .plaster-content{
        width: 300px;
        margin-bottom: 0;
    }
    .plaster-caption{
        margin-top: 10px;
    }
    .plaster-caption > h4{
        font-size: 24px;
    }
    .plaster-caption > h4 > b{
        font-size: 28px;
    }
    .plaster-img {
        height: 250px;
    }
}
@media (max-width: 992px) {
    .plaster-textures{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .plaster-poster,
    .plaster-content{
        width: 250px;
        padding: 5px;
    }
    .plaster-caption{
        margin: 0;
    }
    .plaster-caption > h4{
        font-size: 22px;
    }
    .plaster-img{
        padding: 0 15px;
    }
}
@media (max-width: 576px) {
    .plaster-poster{
        width: 100%;
        padding: 15px 10px;
    }
    .plaster-caption{
        display: none;
    }
    .plaster-content{
        grid-column: 1;
        grid-row: 3;
        width: 100%;
    }
    .plaster-textures {
        grid-column: 1;
        grid-row: 2;
    }
    .plaster-img{
        height: 300px;
        padding: 15px;
    }
}