.main {
  padding: 1.5rem;
}
.items {
  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  will-change: transform;
  user-select: none;
  cursor: pointer;
  display: flex;
}

.items.active {
  /* background: rgba(255, 255, 255, 0.3); */
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.item {
  display: flex;
  margin: 0 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border-radius: 10px;
  height: 100%;
}

.similar-ads-item {
  width:150px;
} 
 

.item:first-child {
  margin-left: 0;
}

.simBR {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.submeta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.submeta::-webkit-scrollbar {
  display: none;
}

.submeta .city {
  color: #757575;  
  cursor: pointer;
}

.submeta .showname {
  /* text-transform: uppercase; */ 
  font-size: 12px;
  padding-top: 5px;
  margin: 0;
}

@media screen and (min-width: 992px) {

  
 .similar-ads-item {
  width:200px;
} 

  .submeta .showname {
    /* text-transform: uppercase; */
    font-size:17px;
    cursor: pointer;
  }
}
 

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

