.productContent, .guideContent{
    display: grid;
    grid-template-columns: 1fr 30% 100px 30%;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    height: 100px;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.productContent strong{
    font-size: 13px;
}
.productContent p{
    font-size: 12px;
    text-transform: none;
}
.productContent img{
    width: 100%;
}
.valuesContent{
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr;
    align-items: center;
}
.valuesContent strong{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-left: 1px solid #ccc;
    box-sizing: border-box;
}
.noStockContent{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #ccc;
}
.guideContent{
    position: fixed;
    width: 100%;
    background: white;
    z-index: 1;
    box-shadow: 0px 0px 5px #ccc;
    box-sizing: border-box;
}
.valuesContentGuide{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}
.valuesContentGuide strong{
    border-left: 1px solid #ccc;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-left: -1px;
}
.valuesContent:first-child{
    margin-left: 1px;
}

input[type="checkbox"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.imgContent{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.onlyProductContent{
    position: fixed;
    top: 50px;
    height: 60vh;
    left: 0;
    width: 92%;
    height: 81vh;
    color: white;
    display: grid;
    grid-template-rows: 51% 1fr 20% 1fr 1fr;
    background: #333333fa;
    padding: 4%;
    z-index:1;
    gap: 3%;
    backdrop-filter: blur(2px);
}
.onlyProductContent img{
    display: flex;
    width: 250px;
    justify-content: center;
    align-items: center;
}
.onlyProductContent .valuesContent strong{
    border: none;
    justify-content: flex-start;
}
.onlyProductContent button{
    border: none;
    width: 30%;
    cursor: pointer;
}
.onlyProductContent .valuesContent{
    width: 330px;
}
.onlyProductContent .noStockContent{
    border: none;
    justify-content: flex-start;
    font-size: 30px;
}

@media (max-width : 800px){
    .productContent img{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .productContent,.guideContent {
        grid-template-columns: 150px 80px 1fr;
        width: 100%;
        overflow: hidden;
        height: 80px;
    }
    .productContent p{
        display: none;
    }

    .guideContent strong:nth-of-type(2) {
        display: none;
    }
    .valuesContentGuide strong {
        display: flex !important;
        font-size: 9px
    }
    .onlyProductContent{
        height: 90vh;
    }
}