body {
	background-color: #eceef4;
    color: rgba(0, 0, 0, 0.54);
}

.collections-breadcrumbs {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 16px;
    padding-left: 8px;
}

.collections {
	width: 85%;
	max-width: 1400px;
	margin: 0 auto;
    margin-top: 16px;
    margin-bottom: 16px;
}

@media (max-width: 800px){
    .collections {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0px;
    }
}

/*-------Collections Container---------*/

.collections .collections-container {
	width: 60%;
	display: inline-block;
    vertical-align: top;      
}

@media (max-width: 800px){
    .collections .collections-container {
        width: 100%;
        display: block;       
    }
}

/*-------Collections Header---------*/

.collections-container .collections-header-holder {
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
}

.collections-header-holder .collections-header {
	width: 100%;
	background-color: white;
	border-radius: 8px;
  	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
  	padding: 16px;
}

.collections-header h1 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
	color: rgba(0, 0, 0, 0.87);
}

.collections-header h2 {
	font-size: 16px;
	line-height: 1.25;
	text-align: left;
}

@media (max-width: 800px){
    .collections-container .collections-header-holder {
        padding: 0;
    }

    .collections-header-holder .collections-header {
        border-radius: 0;
    }

    .collections-header h1 {
		text-align: center;
	}

	.collections-header h2 {
		text-align: center;
	}

}

/*-------Collection Card---------*/

.collections-list-holder .collection-card-holder {
	width: 33%;
	display: inline-block;
	float: left;
	padding: 8px;
	margin-top: 8px;
}

.collection-card-holder .collection-card {
	width: 100%;
	background-color: white;
    border-radius: 8px;
    height: auto;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
}

.collection-card .collection-details {
	overflow: hidden;
	position: relative;
	height: 105px;
}

.collection-details img {
	width: 100%;
	height: 100%;
	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    object-fit: cover;
}

.collection-details h4 {
	position: absolute;
	right: 0;
	bottom: 0;
	border-top-left-radius: 4px;
	padding: 2px 6px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 12px;
	line-height: 1.33;
	text-align: center;
}

.collection-card h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	text-align: left;
	color: rgba(0, 0, 0, 0.87);
	padding: 0 8px;
	padding-top: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.collection-card  h5 {
	font-size: 14px;
	line-height: 1.43;
	color: rgba(0, 0, 0, 0.54);
	text-align: left;
	padding: 0 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 44px;
}

@media (max-width: 800px) {
	.collections-list-holder .collection-card-holder {
		width: 50%;
	}

	.collection-card-holder .collection-card {
        border-radius: 4px;
    }

    .collection-details img {
		border-top-left-radius: 4px;
	    border-top-right-radius: 4px;
	}
}


/*-------Gap---------*/

.collections .gap {
	width: 4%;
    display: inline-block;
}

@media (max-width: 800px) {
	.collection .gap {
        display: none;
    }
}

/*-------Sidebar---------*/

.collections .sidebar {
	width: 34%;
	display: inline-block;
}

@media (max-width: 800px) {
	.collections .sidebar {
		width: 100%;
		display: block;
	}
}