.pagination-wrap {
	display: flex;
	justify-content: space-between;
}

.pagination-block {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.load-product-button {
	cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    /* color: #ff4712; */
    font-size: 14px;
    height: 30px;
    margin-left: 10px;
}

.load-product-button:hover {
	/*background: #3cab2e;
	color: #ffffff;*/
}

.load-product-button.disabled {
	cursor: initial;
}

.load-product-button .icon {
	    width: 20px;
    height: 20px;
    background: url(../image/load-more-icon-black.png) no-repeat;
    margin-right: 15px;
    background-size: 100%;
}

.load-product-button:hover .icon {
	background-image: url('../image/load-more-icon-black.png')  no-repeat;
}

.view-all-link {
	cursor: pointer;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	/*color: #ff4712;*/
	padding: 5px 15px;
	margin-left: 12px;
}

.view-all-link:hover {
	/*background: #3cab2e;
	color: #ffffff;*/
}

.pagination-block .text-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pagination-wrap.full {
	justify-content: center;
}

.pagination-wrap.full .text-right {
	justify-content: center;
}

.pagination li.active span {
	font-weight: initial;
	/*background: #3cab2e !important;*/
}

.rotating {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	100% {
		transform:rotate(360deg);
	}
}

@media (max-width:767px){
	.pagination-wrap {display:inline-block;width:100%;padding: 10px;}
	.load-product-button, .pagination-block {width:100%;margin-bottom: 20px;}
	.load-product-button {margin-left: 0px;}
	/*.category_list {display:none}*/
}



#modal-product-not-found .image {
	padding: 3px;
	border: 1px solid #c0c0c0;
	border-radius: 5px;
	background: #ffffff;
}

#modal-product-not-found .modal-body {
	display: flex;
}

#modal-product-not-found .modal-header {
	font-size: 18px;
	font-weight: bold;
}

#modal-product-not-found .inner-content {
	display: flex;
	flex-direction: column;
}

#modal-product-not-found .content-gap {
	width: 50px;
}

#modal-product-not-found .inner-title {
	font-size: 16px;
	font-weight: bold;
	color: #40c372;
}
	
#modal-product-not-found .inner-text {
	margin-top: 20px;
	font-size: 14px;
	font-weight: bold;
}

#modal-product-not-found .inner-continue {
	cursor: pointer;
	margin-top: auto;
	align-self: flex-end;
	padding: 5px 50px;
	background: #00aa05;
	border-radius: 3px;
	color: #ffffff;
}




.newsletter-block {
	padding: 7px 15px 18px 15px;
	background: #f5f5f5;
	border: 1px solid #f0f0f0;
	border-radius: 5px;
}

.newsletter-text {
	margin-bottom: 15px;
	text-align: justify;
}

.newsletter-text .green {
	color: #64ce82;
}

.newsletter-form {
	display: flex;
	justify-content: space-between;
	
}

.newsletter-form-item {
	width: 31.5%;
}

.newsletter-form-item[type=text] {
	border: 1px solid #e4e4e4;
    box-shadow: inset 0px 0px 5px -3px;
    border-radius: 3px;
    padding: 6px 7px;
	outline: none;
}

#button-subscribe {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 4px;
	background: #00ac14;
	color: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 5px 5px -4px rgba(0, 0, 0, 0);
    transition: all ease-in-out .2s;
}

#button-subscribe:hover {
	background: #ff4712;
}


