﻿.thumbs {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    align-content:flex-start;
}

.thumbs .thumb {
    display:inline-block;
    width:22.5%;
    height:auto;
    cursor:pointer;
    margin-bottom:3.33%;
    margin-bottom:50px;
}

.thumbs .thumb.no_link {
	cursor:default;
}

.thumbs .thumb.no_link:hover .box_prop:before,
.thumbs .thumb.no_link:hover .box_prop .tag {
	display:none;
}

.thumbs .thumb.no_link .arrow_title:hover span,
.arrow_back_title:hover span,
.thumbs .thumb.no_link:hover a span {
	border-bottom-color:transparent;
}

.thumbs .thumb h2 {
	display:none;
}

.thumbs .thumb .title {
	display:inline-block;
	margin-top:24px;
	margin-bottom:27px;
}

.thumbs .thumb:hover a span {
	border-bottom-color:#000;
}


@media all and (max-width:1152px) {
	.thumbs .thumb {
		width:48.38%;
	}
}

@media (max-width:767px){
	.thumbs .thumb {
		width:100%;
	}
}

/* VIEW MORE */
.view-more {
    cursor: pointer;
    text-align: right;
    color: #000;
    font-family: 'jm';
    font-size: 1.25em;
    padding-bottom: 5px;
	border-bottom:solid 1px #000;
	margin-bottom:80px;
}

.view-more:after {
    content: "";
    width: 26px;
    height: 26px;
    display: inline-block;
    margin-left: 16px;
    background-image: url(../img/plus.svg);
    vertical-align: text-top;
    background-repeat: no-repeat;
    background-position: center center;
}

.view-more.hidden {
	display:none;
}

.thumbs.more.hidden {
    display:none;
}