

.products-container, 
.products-navigation,
.products-pagination{
	padding: 20px 10px;
}

.products-search{
	display: block;
	float: right;
	max-width: 220px;
}

.product-card {
	position: relative;
	display: block;
	background-color: #f4f4f4;
	border-radius: .25rem;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 30px;
	margin-bottom: 4rem;
	width: 100%;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.product-card:hover {
	box-shadow: 0 0 22px rgba(0,0,0,0.1);
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
}

.product-card .card-status-label{
	position: absolute;
	top: 2px;
	right: 2px;
	margin: 4px 4px 0 0;
}

.product-card .card-status-label .label{
	font-size: 0.8em;
	text-transform: uppercase;
	/*border-radius: 0 4px 0 4px;*/
	padding: 4px 8px;
	margin: 0;
}

.product-card .avatar{
	border-radius: 16px;
	margin-right: 6px;
}

.product-card .tags .tag{
	background-color: #405F74;
}

.product-card .date{
	position: absolute;
	top: 0px;
	left: -59px;
	min-width: 60px;
	background-color: #405F74;
	padding: 6px 10px;
	text-align: center;
	color: #fff;
	border-radius: 4px 0 0 4px;
}

.product-card .date .day{
	font-size: 2.4em;
	line-height: 1em;
	font-weight: normal;
}

.product-card .date .month{
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1em;
}

.product-card .date .year{
	letter-spacing: 2px;
	line-height: 1em;
}

.card-block {
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0,0,0,0.05);
    border-radius: 4px;
    border: 1px solid #eee;
}

.product-card .card-block .card-body{
	padding: 10px 20px;
}

.product-card .card-block .card-body.vertical-align{
	display: table;
	height: 140px;
	width: 100%;
}

.product-card .card-block .card-body.vertical-align .vertical-wrap{
	height: 130px;
	display: table-cell;
	vertical-align: middle;
}

.card-title {
	margin-top: 0;
	margin-bottom: .75rem;
	line-height: 1.2em;
	font-size: 16px;
	color: #4F5D73;

    /* Starting transition */    
    left: 0%;
    width: 100%;
    display: block;
    
    /* Tweak 'till your heart's content */
    -webkit-transition: left 3s, width 3s;
    -moz-transition: left 3s, width 3s;
    transition: left 3s, width 3s;
}

/* The magic! */
.card:hover .card-title-container .card-title {
    /* This is not completely accurate. It resizes to 2x the current width. */
    /*left: -50%;*/
    /*width: auto !important;*/
}

.card-subtitle {
	margin-top: -.375rem;
	margin-bottom: 0;
}

.product-card .category{
	text-decoration: none;
	padding: 2px 0;
	margin-right: 5px;
	border-bottom: 1px dotted transparent;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.product-card .category:hover{
	border-bottom: 1px dotted #888;
}

.card-text {
	font-size: 14px;
	line-height: 24px;
	color: #454545;
}

.card-link{
	border: none;
	background-color: #d3d3d3;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	cursor: pointer;
	color: #333;
}

.card-link:hover {
	text-decoration: none;
	background-color: #337ab7;
	border-color: #337ab7;
	color: #fff;
}

.card-link + .card-link {
	margin-left: 1.25rem;
}

.product-card > .list-group:first-child .list-group-item:first-child {
	border-radius: .25rem .25rem 0 0;
}

.product-card > .list-group:last-child .list-group-item:last-child {
	border-radius: 0 0 .25rem .25rem;
}

.card-header {
	padding: .75rem 1.25rem;
	background-color: #f5f5f5;
	border-bottom: 1px solid #e5e5e5;
}

.card-header:first-child {
	border-radius: .25rem .25rem 0 0;
}

.card-footer {
	padding: .75rem 1.25rem;
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
}

.btn-footer:last-child {
	border: none;
	border-top: 1px solid #eee;
	border-radius: 0 0 .25rem .25rem;
	padding: 12px 6px;
}

.card-footer:last-child {
	border-radius: 0 0 .25rem .25rem;
}

.card-primary {
	background-color: #0275d8;
	border-color: #0275d8;
}

.card-success {
	background-color: #5cb85c;
	border-color: #5cb85c;
}

.card-info {
	background-color: #5bc0de;
	border-color: #5bc0de;
}

.card-warning {
	background-color: #f0ad4e;
	border-color: #f0ad4e;
}

.card-danger {
	background-color: #d9534f;
	border-color: #d9534f;
}

.card-primary-outline {
	background-color: transparent;
	border-color: #0275d8;
}

.card-secondary-outline {
	background-color: transparent;
	border-color: #ccc;
}

.card-info-outline {
	background-color: transparent;
	border-color: #5bc0de;
}

.card-success-outline {
	background-color: transparent;
	border-color: #5cb85c;
}

.card-warning-outline {
	background-color: transparent;
	border-color: #f0ad4e;
}

.card-danger-outline {
	background-color: transparent;
	border-color: #d9534f;
}

.card-inverse .card-header,
.card-inverse .card-footer {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
	color: #fff;
}

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-blockquote > footer {
	color: rgba(255, 255, 255, .65);
}

.card-inverse .card-link:focus, .card-inverse .card-link:hover {
	color: #fff;
}

.card-blockquote {
	padding: 0;
	margin-bottom: 0;
	border-left: 0;
}

.card-img {
	border-radius: .25rem;
}

.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem;
}

.card-img-top {
	border-radius: 4px 4px 0 0;
	border-bottom: 1px solid #eee;
}

.card-img-bottom {
	border-radius: 0 0 .25rem .25rem;
}

.product-card .btn-group.btn-block {
    display: table;
    width: 100%;
}
.product-card .btn-group.btn-block > .btn {
    display: table-cell;
}

@media (max-width: 620px) {
	.products-container .container{
		padding-left: 0px;
		padding-right: 0px;
	}

	.products-container .container > .row{
		margin-left: -6px;
		margin-right: -6px;
	}

	.products-container .container > .row > .col, 
	.products-container .container > .row > [class^="col-"]{
		padding-left: 3px;
		padding-right: 3px;
	}

	.products-container .product-card{
		font-size: 12px;
	}

	.products-container .product-card .card-actions .btn{
		font-size: 1em;
	}
}

@media (min-width: 544px) {

	.card-deck {
		display: table;
		table-layout: fixed;
		border-spacing: 1.25rem 0;
	}
	.card-deck .product-card {
		display: table-cell;
		width: 1%;
		vertical-align: top;
	}
	.card-deck-wrapper {
		margin-right: -1.25rem;
		margin-left: -1.25rem;
	}

	.card-group {
		display: table;
		width: 100%;
		table-layout: fixed;
	}
	.card-group .product-card {
		display: table-cell;
		vertical-align: top;
	}
	.card-group .product-card + .product-card {
		margin-left: 0;
		border-left: 0;
	}
	.card-group .card:first-child {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	.card-group .card:first-child .card-img-top {
		border-top-right-radius: 0;
	}
	.card-group .card:first-child .card-img-bottom {
		border-bottom-right-radius: 0;
	}
	.card-group .card:last-child {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	.card-group .card:last-child .card-img-top {
		border-top-left-radius: 0;
	}
	.card-group .card:last-child .card-img-bottom {
		border-bottom-left-radius: 0;
	}
	.card-group .card:not(:first-child):not(:last-child) {
		border-radius: 0;
	}
	.card-group .card:not(:first-child):not(:last-child) .card-img-top,
	.card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
		border-radius: 0;
	}

	.card-columns {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
	}
	.card-columns .product-card {
		display: inline-block;
		width: 100%;
	}
}

.shop__product-title{
	font-size: 1em;
	margin-top: 5px;
	margin-bottom: 5px;
}

.shop__product-price{
	font-size: 1.5em;
	margin-top: 5px;
	margin-bottom: 5px; 
}

.shop__product-old-price{
	font-size: 0.8em;
}

.shop__product-short-description{
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px solid #eee;
}

.shop__favorite-button{
	background-color: transparent;
	border: none;
	border-radius: 3px;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	font-size: 1.2em;
	padding: 2px 0;
	color: #FFA63B;
	position: absolute;
	top: 5px;
	left: 5px;
	opacity: 0.5;
	outline: none;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.card:hover .shop__favorite-button{
	opacity: 1;
}

.pagination {
    display: inline-block;
}

.pagination li{
	display: inline;
}

.pagination li a, .pagination li span{
    color: black;
    float: left;
    padding: 8px 16px;
    border: none !important;
    margin-right: 4px;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.pagination li.active a, .pagination li.active span{
    background-color: #337ab7;
    color: white;
    border-radius: 5px;
}

.pagination li a:hover:not(.active), .pagination li span:hover:not(.active) { background-color: #dddddd }

.fas-disabled{
	color: #333;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.fas-disabled:hover{
	color: #FFA63B;
}

.dropdown-menu .sub-category{
	list-style: none;
	padding-left: 0px;
}

.dropdown-menu .sub-category > li > a{
	display: block;
    padding: 3px 20px 3px 32px;
    clear: both;
    font-weight: normal;
    line-height: 1.6;
    color: #333333;
    white-space: nowrap;
}

.dropdown-menu .sub-category > li.active > a{
	color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #3097d1;
}


}

.dropdown-menu .sub-category > li > a:hover{
	text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}