
.hide-page{
    display: none;
}


/*mobile first */

.content-flex {
    display: flex;
    flex-wrap: wrap;
    width: 98%;
    margin: 20px 0;
    gap: 20px;
    padding: 0px;
    box-sizing: border-box;
    align-items: center; 
    justify-content: flex-start;
}
.section-ttl{
    font-size: 16px;
    color: rgb(220,220,220);
    font-weight: 400;
    text-align: left;
    padding: 0;
    margin: 20px 0;
}
.content-flex-sqr, .content-flex-wide {
    background-color: rgb(250,249,245);
    padding: 20px;
    width: 98%;
    height: auto;
    box-sizing: border-box;
    border-radius: 10px;
    border:1px solid rgb(220,220,220);
    box-shadow: 2px 2px 2px rgba(0.95, 0.95, 0.95, 0.01);
    transition: transform 0.1s ease-in-out;
    cursor: pointer;
    position: relative;
}

.content-flex-sqr:hover {
    transform: scale(0.98);
}
.content-flex-sqr-img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    margin: 20px auto;
    display: block;
}
.content-flex-sqr h3{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 2px;
}
.content-flex-sqr p{
    font-size: 14px;
    text-align: center;
    color: gray;
    padding: 2px;
    width: 75%;
    margin: auto;
}
.menu-tags{
  display: flex;
  gap: 4px;
  padding: 4px;    
  justify-content: flex-start; 
}
.menu-tags div{
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  gap: 4px;
  border: 1px solid black;
  border-radius: 4px;
  padding: 3px 6px;
  margin: 0 ;
  font-size: 14px;
  background-color: rgb(245,245,245);

}
.menu-tags img{
    height: 12px;
    object-fit: contain;
    margin: 0 ;
    padding: 0 ;
}
.menu-tags span{
    margin: 0;
    padding: 0;
    font-size: 12px;
}
.lock{
    display: none !important;
}
.green-tag{
    background-color: #95E3B7 !important;
}

/*desktop */
@media screen and (min-width: 768px) {
    .content-flex {
        justify-content: flex-start;
 
    }   
    .content-flex-sqr {
        width: 25%;
        height: 40vh;
        padding: 10px;
    }
    .content-flex-wide{
        width: 70%;
    }  
    .content-flex-sqr-img{
        width: 30%;
        height: 30%;        
    }
}
