#adList {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#adList .item {
	max-width: calc(33.33% - 13.33px);
	margin-bottom: 40px;
	margin-right:20px;
}
#adList .item:nth-child(3n+3) {  
  margin-right:0;
}
#adList .item img {
	border-radius: 26px;
}
#adList .item h2 {
	font-size: 22px;
    margin-top: 10px
}
#adList .info {
	position:relative
}
#adList .info .category {
	position: absolute;
    top: 5px;
    left: 7px;
    z-index: 99;
    background: #1d8e06;
    color: white;
    font-family: TTFirsNeue,sans-serif;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 26px;
}
#adList .info .category.lost {
	background: #c67906
}
#adList .info .category.hands {
	background: #3898d1
}
.geo, .time {
	padding-left: 20px;
	display: flex;
    align-items: center;
	font-size: 14px;
    font-weight: 300;
	margin-bottom: 5px;
}
.ad_time {
	font-size: 12px;
    font-weight: 300;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
}
.geo:before, .time:before {
	content:'';
	position:absolute;
	width:15px;
	height:15px;
	margin-left: -20px;
}
.geo:before {
	background: url(/assets/images/where.svg) center no-repeat;
	background-size: cover;
}
.time:before {
	background: url(/assets/images/when.svg) center no-repeat;
	background-size: cover;
	width: 13.5px;
}
.breadcrumbs {
	display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 12px;
}
.breadcrumbs li {
	font-family: TTFirsNeue,sans-serif;
    position: relative;
}
.breadcrumbs li a, .breadcrumbs li span {
    font-size: 12px;
    line-height: 15px;
}
.breadcrumbs li:after {
    content: "/";
    margin: 0 4px;
    font-size: 12px;
    line-height: 15px;
}
.breadcrumbs li:last-child:after {
    display: none
}
.breadcrumbs li.active span {
    color: #8a94a4;
    cursor: default;
}
.pagination {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 20px auto;
}
.pagination li {margin-right:10px}
.pagination li:last-of-type {
	margin-right:0
}
.pagination li.active a {
	border: 1px solid #95d5d2;
	color:#95d5d2;
    padding: 1px 8px;
    border-radius: 50%;
}
@media (max-width: 991.97px) {
	#adList .item {
    max-width: calc(50% - 10px);
}
#adList .item:nth-child(2n+2) {  
  margin-right:0;
}
#adList .item:nth-child(3n+3) {  
  margin-right:20px;
}
}
@media (max-width: 767.97px) {
	#adList .item {
    max-width: 100%;
	margin-right: 0;
}
#adList .item:nth-child(2n+2) {  
  margin-right:0;
}
#adList .item:nth-child(3n+3) {  
  margin-right:0;
}
#adList .item:last-child {
  margin-bottom: 0;
}
}
@media (max-width: 420px) {
	
}