.productsContent{
    padding-top: 151px;
}
#defaultProducts{

    border-right: 1px solid #ccc;
}
.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{
    height: 100px;
}
.valuesContent{
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 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 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;
}
#searchedPoducts{
    position: fixed;
    background: white;
    height: 76%;
    width: 100%;
    overflow: scroll;
    display: none;
    top: 200px;
}
#searchedPoducts::-webkit-scrollbar{
    height: 0px;
    width: 2px;
    background-color: #ccc;
}
#searchedPoducts::-webkit-scrollbar-thumb{
    background-color: #333;
}
.searchContent{
    position: fixed;
    z-index: 1;
    top: 149px;
    width: 100%;
}
.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;
}
#startSearch{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding: 15px 0px;
    border-radius: 0px;
    font-size: 16px;
}

@media (max-width : 800px){
    
    .searchContent{
        top: 126px;
    }
    .productContent,.guideContent {
        grid-template-columns: 100px 80px 1fr;
        width: 100%;
        overflow: hidden;
        height: 80px;
    }
    .productContent p{
        display: none;
    }

    .guideContent strong:nth-of-type(2) {
        display: none;
    }
    .valuesContentGuide strong {
        display: block !important;
    }
    .onlyProductContent{
        height: 90vh;
    }
}