
.car {
    width: 164px;
    height: 276px;
    background: #E7DAC9;
    border: 3px solid #685A2B;
    border-radius: 15px;
    position: relative;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: all 1s ease;
    color: antiquewhite;
    margin-right: 20px;
    margin-top: -25px;
    transform: translateY(150px);
    box-sizing: border-box;
    overflow-y: scroll;
    padding-bottom: 150px;
  }

.car::-webkit-scrollbar{
  display: none;
}
  
  .popu {
    background-color: #575c5a;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    font-size: .8em;
    cursor: pointer;
    padding: 3px;
  }

  
  .card__date , .popu {
    opacity: 0;
    transition: all .5s ease;
  }
  
  .car:hover {
    transform: translateY(30px);
  }
  
  .car:hover .card__date , .car:hover .popu {
    opacity: 1;
  }

.category{
    margin-top: 100px !important;
    width: 164px;
    min-width: 164px;
    margin: 50px;
    border-radius: 5%;
    display: flex;
    align-items: center;
    flex-direction: column !important;
    height: 250px;
}

.separator{
    overflow: hidden;
    box-sizing: border-box;
    height: 170px;
    width: 100%;
}

.cat-name{
    border: solid #141414;
    width: 120%;
    text-align: center;
    background-color: #616161;
    color: #F3F3F3;
    font-size: 1em;
    padding: 1px;
}

.mobile{
  transform: translateY(-50px) !important;
}