
/*Catalog*/
#blockproduct {
	display: table;
	background: #d3d1d2;
    padding: 5px;
    margin: 10px auto;
    width: 970px;
    height: auto;
    border: 1px solid #e1e1e1;
    -moz-box-shadow: 0 0 15px #ddddd3 inset;
    -webkit-box-shadow: 0 0 15px #ddddd3 inset;
    box-shadow: 0 0 15px #ddddd3 inset;
    border-radius: 5px;
}
.block-item {
	width: 220px;
	height: auto;
	border: 1px solid #000;
	float: left;
	margin: 10px;
}
.title_cat {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	text-transform: uppercase;
	overflow: hidden;
	background-color: #ebebeb;
}
.title_cat a {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.img_cat{
	width: 100%;
	text-align: center;
	background-color: #ffffff;
}
.img_cat img{
	height: 120px;
}
.block-item .delivery-buy {
    height: 39px;
    line-height: 39px;
    text-transform: uppercase;
    overflow: hidden;
    text-align: right;
    padding: 0 8px;
}
.price {
    float: left;
	text-transform: none;
	font-size: 12px;
}
.price span{
    font-size: 16px;
    font-weight: bold;
	color: red;
}
.addproduct {
	font-size: 14px;
    font-weight: bold;
	cursor: pointer;
	height: 22px;
	line-height: 22px;
	vertical-align: middle;
	display: inline-block;
	color: #fff;
	background-color: green;
	margin: 0 auto;
	padding: 1px 20px 1px 15px;
	border: none;
	text-transform: uppercase;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.button_green_left {
	margin: 20px;
	float: left;
	height: 22px;
	line-height: 14px;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-transform: uppercase;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.button_green_left a {
	font-size: 14px;
    font-weight: bold;
	cursor: pointer;
	color: #fff;
	padding: 10px;
	background-color: green;
	text-transform: none;
}
.button_green_right {
	position: relative;
	float: right;
	margin: 20px;
	height: 22px;
	line-height: 14px;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-transform: uppercase;

}
.button_green_right a {
	font-size: 14px;
    font-weight: bold;
	cursor: pointer;
	color: #fff;
	padding: 10px;
	background-color: green;
	text-transform: none;
}
/*End catalog*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
    padding: 20px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
	font-size: 14px;
	font-weight: bold;
	padding: 50px 16px;
	text-align: center;
}

.modal-footer {
    padding: 20px 16px;
	text-align: center;
	background-color: #5cb85c;
}
.modal-footer span{
    color: white;
	font-weight: bold;
}
.modal-footer a {
	font-size: 18px;
	font-weight: bold;
    color: white;
}
