.navigation {
	display: flex;
	width: 95%;
	margin-top: 4px;
	margin-bottom: 4px;
}
.navigation-items {
	text-decoration: none;
	font-size: 18px;
	color: #bfbfbf;
	margin: 0;
	cursor: pointer;
}
.category-title {
	display : flex;
	/*align-items: flex-start;*/
	margin: 16px auto;
}
.category-title img {
	width: 165px;
	height: 165px;
}
.category-title span {
	align-self: center;
}
.product-container {
	display: flex;
	flex-wrap: wrap;
}
.product-items-link {
	text-decoration: none;
}
.product-items, .cat-items {
	margin: 2px;
	height: 555px;
	border: 1px dotted gray;
	border-radius: 12px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
	text-align: center;
	cursor: pointer;
	background: white;
	max-width: 155px;
}
.cat-items {
    height: 380px;
}
.items-top-box {
    display: flex;
    user-select: none;
    padding: 5px;
}
.icon {
    width: 26px;
    height: 26px;
}
.share {
    cursor: pointer;
    fill: #979CA5;
}
.share-div {
    width: 100%;
    height: 30%;
    position: fixed;
    z-index: 5;
    bottom: -100%;
    right: 0;
    background: #F5F5F5;
    transition: 0.2s;
    padding-top: 10px;
    border-radius: 8px 8px 0 0;
}
.close-share {
    cursor: pointer;
}
.product-items-added-text {
	display:flex;
	align-items: center;
	height: 50px;
	padding: 5px;
	color: red;
	font-weight: 900;
	text-align: right;
}
.copy-link, .sms-button {
    display: flex;
    max-width: 155px;
    align-items: center;
    background: white;
    color: #FFAC53;
    border-radius: 8px;
    border: 1px solid #FFAC53;
    outline: none;
    margin-left: 5px;
    cursor: pointer;
    padding: 8px 15px 8px 15px;
    fill: #FFAC53;
}
.product-items-image {
	width: 148px;
	height: 148px;
}
.product-items-image img {
	width: 104%;
	height: 100%;
}
.product-items-name-fa, .product-items-name-en {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	width: 155px;
	height: 160px;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 4px;
	font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.17;
	color: #2E8B69;
}
.product-items-name-en {
    font-size: 14px;
    height: 105px;
    color: #8B2E69;
}
.product-items-price {
    color: #F67197;
}
.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 2;
    border: none;
    outline: none;
    background: rgb(39, 201, 197, 0.7);
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 30px;
    font-size: 18px;
}
.filter-div {
    /*position: relative;*/
}
.filter-row {
    background: #F0F0F0;
    cursor: pointer;
    padding: 15px 10px 15px 10px;
    border-bottom: 1px solid #E0E0E0;
}
.filter-done {
    display: flex;
    align-items: center;
    background: white;
    color: #53ACFF;
    border-radius: 8px;
    border: 1px solid #53ACFF;
    outline: none;
    margin-left: 5px;
    cursor: pointer;
    padding: 8px 15px 8px 15px;
    fill: #53ACFF;
}
.filter-pad {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    background: #FCFCFC;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    padding: 5px;
}
.inner-filter {
    display: none;
    background: #FFFFFF;
    padding-right: 20px;
}
.check-row {
    cursor: pointer;
}
.filter-check {
    stroke: black;
}
.close-modal {
    display: flex;
    width: 100%;
}
.close-icon {
	width :26px;
	height: 26px;
	fill: #424750;
	cursor: pointer;
}
.back-to-top:hover {
    background-color: #555;
}
.expand-icon, .filter-icon {
	width :26px;
	height: 26px;
	fill: white;
}
.filter-icon {
	fill: #3f4064;
}
.flex-container {
	display: flex;
	align-items: center;
}
.flex-spacer {
	flex-grow: 1;
}
@media only screen and (max-width: 600px) {
    .product-items, .cat-items {
        /*max-width: 45%;*/
    }
    .navigation-items {
    	font-size: 4vw;
    }
}