.delete-btn {
	display: block;
	margin-top: 40px;
	width: 140px;
	border-radius: 0;
	height: 36px;
	border: none;
	line-height: 24px;
	padding: 6px 20px;
	margin-left: 15px;
	float: left;
	font-weight: 400;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #c51b1b;
	border-radius: 3px;
	transition: all 0.3s ease-in-out;
}

.delete-btn:hover {
	background: #fed700;
}

.edit-btn {
	display: block;
	margin-top: 40px;
	width: 140px;
	border-radius: 0;
	height: 36px;
	border: none;
	line-height: 24px;
	padding: 6px 20px;
	float: left;
	font-weight: 400;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #363f4d;
	border-radius: 3px;
	transition: all 0.3s ease-in-out;
}

.edit-btn:hover {
	background: #fed700;
}

.left-align-content {
  text-align: left; /* This is typically the default behavior */
}

/*Contact Supplier*/
button.contact-btn {
	border: none;
	background: #333333;
	color: #ffffff;
	font-weight: 400;
	/* font-size: 18px; */
	width: 140px;
	border-radius: 5px;
	height: 36px;
	line-height: 24px;
	position: relative;
	right: -1px;
	top: -1px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

button.contact-btn:hover {
	background: #fed700;
	color: #242424;
}

button.contact-wa-btn {
	border: none;
	background: #c51b1b;
	color: #ffffff;
	font-weight: 400;
	/* font-size: 18px; */
	width: 140px;
	border-radius: 5px;
	margin-left: 15px;
	height: 36px;
	line-height: 24px;
	position: relative;
	right: -1px;
	top: -1px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

button.contact-wa-btn:hover {
	background: #333333;
	color: #ffffff;
}

.product-card {
	background: #ffffff none repeat scroll 0 0;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 300ms ease-in 0s;
}

.product-card:hover {
	margin: 0 0 -75px;
	padding: 0 0 75px;
	z-index: 9;
}

.product-card.mt-40:hover {
  	margin: 40px 0 -85px;
}

.product-card::before {
	background: #ffffff none repeat scroll 0 0;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
	border-radius: 4px;
	bottom: -15px;
	content: "";
	left: -10px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	position: absolute;
	right: -10px;
	top: -15px;
	-webkit-transition: all 300ms ease-in 0s;
	transition: all 300ms ease-in 0s;
	visibility: hidden;
	z-index: 0;
}

.product-card:hover:before{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.static-banner-service-image-1 {
	background-image: url(../../images/service/network.jpg);
	background-size: cover;
	height: 280px;
	width: 100%;
	background-repeat: no-repeat;
  	position:relative;
}

.static-banner-service-image-2 {
	background-image: url(../../images/service/cable.jpg);
	background-size: cover;
	height: 280px;
	width: 100%;
	background-repeat: no-repeat;
  	position:relative;
}

.static-banner-service-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background:rgba(0,0,0,0.5);
}

.static-banner-service-desc {
	position: absolute;
	width: auto;
	height:100%;
	top:0;
	left:0;
	color:#fff;
}

.static-banner-service-content > h2 {
	margin: 10px;
	font-weight: 400;
	font-size: 36px;
	line-height: 30px;
	letter-spacing: -.025em;
	color: #fff;
}

.static-banner-service-content > p {
	margin: 10px;
	color: #fff;
	font-size: 14px;
	margin-bottom: 20px;
	font-weight: 400;
	z-index: 99;
}

.search-input {
	border-radius: 5px;
}

.categories-card {
	border: 1px solid #e1e1e1;
	border-radius: 5px;
	/* margin-left: 15px; */
	padding: 10px;
	/* background: #293a6c none repeat scroll 0 0; */
	color: #293a6c;
	height: 230px;
}

.categories-card:hover {
	margin: 0 0 -75px;
	padding: 0 0 75px;
	z-index: 9;
}

.categories-card::before {
	background: #ffffff none repeat scroll 0 0;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
	border-radius: 4px;
	bottom: -15px;
	content: "";
	left: -10px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	position: absolute;
	right: -10px;
	top: -15px;
	-webkit-transition: all 300ms ease-in 0s;
	transition: all 300ms ease-in 0s;
	visibility: hidden;
	z-index: 0;
}
.categories-card:hover:before{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

/*Login*/
button.login-btn {
	border: none;
	background: #fed700;
	color: #242424;
	font-size: 18px;
	width: 105px;
	border-radius: 5px;
	height: 45px;
	line-height: 45px;
	margin-left: 15px;
	position: relative;
	right: -1px;
	top: -1px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
button.login-btn:hover {
	background: #333333;
	color: #ffffff;
}