@import url('https://fonts.googleapis.com/css?family=Poppins:100,300,600,700');

* {
	font-family: 'Poppins', sans-serif;
}

/* Components */
input[type="text"], input[type="password"], select {
	margin-top: 20px;
	width: 70%;
	padding: 8px 10px;
	background-color: #ecf0f1;
	border: none;
	outline: none;
	color: #333;
}

input[type="submit"] {
	margin-top: 20px;
	width: 70%;
	padding: 8px 10px;
	background-color: #7f1a1a;
	border: none;
	outline: none;
	transition-duration: 0.4s;
}

input[type="submit"]:hover {
	background-color: #6c1c1c;
}

button {
	margin-top: 20px;
	width: 100%;
	padding: 14px 16px;
	background-color: #7f1a1a;
	border: none;
	outline: none;
	transition-duration: 0.4s;
}

button:hover {
	background-color: #6c1c1c;
}

.alert-success {
	width: 70%;
	height: 100%;
	padding: 8px 9px;
	background-color: #2ecc71;
	border-left: 20px solid #27ae60;
	color: #FFF;
}

.alert-error {
	width: 70%;
	height: 100%;
	padding: 1px 1px;
	background-color: #7f1a1a;
	border-left: 20px solid #6c1c1c;
	color: #FFF;
}

.alert-deleted {
	width: 70%;
	height: 100%;
	padding: 1px 1px;
	background-color: #3498db;
	border-left: 20px solid #2980b9;
	color: #FFF;
}

.alert-error p {
	float: left;
}

.form {
	margin-bottom: 5px
}

.form input[type="text"], input[type="submit"] {
	padding: 24px 26px;
}

span {
	font-weight: 300;
}

.navbar-fixed {
    top: 0;
    z-index: 100;
  position: fixed;
    width: 100%;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #7f1a1a;
}

#navbar li {
    float: left;
}

#navbar li a, .dropbtn {
    display: block;
    color: white;
    text-align: center;
    padding: 24px 26px;
    text-decoration: none;
    font-weight: 700;
    transition-duration: 0.4s;
}

#navbar li a:hover, .dropdown:hover .dropbtn {
	letter-spacing: 4px;
	background-color: #c0392b;
}

#navbar li.mobile {
	display: none;
}

#navbar li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #c0392b;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

footer {
	width: 100%;
	height: 100%;
	background-color: #7f1a1a;
	color: #FFF;
	font-weight: 500;
	padding: 24px 26px;
}

footer h3 {
	text-align: left;
	color: #FFF;
	letter-spacing: 4px;
}

footer i {
	color: #FFF;
}

footer p {
	margin-bottom: 0px;
	margin-top: 0px;
}

/* Home Page */
header {
	margin-top: 40px;
	margin-bottom: 40px;
}

header img {
	width: 70%;
	float: left;
	
}

header input {
	float: right;
}

#what-we-offer {
	padding: 14px 16px;
}

#what-we-offer h4 {
	margin-top: 8px;
	font-size: 1.2em;
	margin-bottom: 8px;
}

#what-we-offer .box {
	padding: 2px 2px;
	border: 2px solid #ecf0f1;
}

.search input[type="submit"] {
	width: 100%;
	padding: 8px 10px;
}

#banner {
	width: 100%;
	height: 450px;
	background-image: url('../img/banner_1.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

section#about-us {
	width: 100%;
	height: 100%;
	background-color: #ecf0f1;
}

section#about-us h2 {
	text-align: center;
	font-size: 3em;
	margin-bottom: 0px
}

section#about-us p {
	text-align: center;
	margin-top: 0px;
	font-size: 1.4em;
	margin-bottom: 40px;
}

section#recent-products, section#sale-products {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	margin-bottom: 100px;
}

section#recent-products img , section#sale-products img {
	height: auto; 
    width: auto; 
    max-width: 300px; 
    max-height: 300px;
}

section#recent-products .strike, section#sale-products .strike {
		margin-top: 50px;
        display: block;
        text-align: center;
        overflow: hidden;
        white-space: nowrap; 
}

section#recent-products .strike > span, section#sale-products .srike > span {
        position: relative;
        display: inline-block;
}

section#recent-products .strike > span:before,
    section#recent-products .strike > span:after {
        content: "";
        position: absolute;
        top: 50%;
        width: 9999px;
        height: 1px;
        background: #ecf0f1;
    }

    section#recent-products .strike > span:before {
        right: 100%;
        margin-right: 15px;
    }

    section#recent-products .strike > span:after {
        left: 100%;
        margin-left: 15px;
    }
}

section#sale-products .strike > span:before,
    section#sale-products .strike > span:after {
        content: "";
        position: absolute;
        top: 50%;
        width: 9999px;
        height: 1px;
        background: #ecf0f1;
    }

    section#sale-products .strike > span:before {
        right: 100%;
        margin-right: 15px;
    }

    section#sale-products .strike > span:after {
        left: 100%;
        margin-left: 15px;
    }
}

section#recent-products .recent-box, section#sale-products .sale-box {
	padding: 5px;

}
section#recent-products .recent-box img, section#sale-products .sale-box img {
	width: 100%;
	height: 300px;
	transition-duration: 0.4s;
}

section#recent-products .recent-box h3, section#sale-products .sale-box h3 {
	margin-top: 0px;
	margin-bottom: 0px;
}

section#recent-products .recent-box h3.price, section#sale-products .sale-box h3.price {
	color: #e74c3c;
	font-size: 2em;
}

section#recent-products .recent-box img:hover, section#sale-products .sale-box img:hover {
	transform: scale(1.01);
}

section#newsletter {
	width: 100%;
	height: 100%;
	background-color: #a3291c;
	padding: 14px 16px;
}

section#newsletter h2 {
	color: #FFF;
	font-size: 2em;
}

section#newsletter hr {
	background-color: #FFF;
	color: #FFF;
	height: 4px;
}

section#newsletter form {
	margin-bottom: 150px;
}

section#newsletter input[type="email"] {
	padding: 24px 26px;
	width: 100%;
	outline: none;
	border:none;
	color: #333;
	margin-top: 0px;
	height: 100%;
}

section#newsletter input[type="submit"] {
	margin-top: 0px;
	border: 2px solid #FFF;
	background-color: transparent;
	width: 100%;
	padding: 24px 26px;
	font-weight: 700;
}

section#newsletter input[type="submit"]:hover {
	background-color: #FFF;
	border: 2px solid #FFF;
	color: #e74c3c; 
	letter-spacing: 4px;
}

/* Home Page */
section#product-category {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top;
	padding: 14px 16px;
}	

section#product-category h2 {
	font-size: 7em;
	text-align: center;
	color: #FFF;
	text-shadow: 1px 1px 5px rgba(150, 150, 150, 1);
}
/* End Home Page */

/* Login Form */
.login-form {
	margin-top: 200px;
}

.login-form input[type="text"], .login-form input[type="password"] {
	padding: 24px 26px;
	width: 100%;
	background-color: transparent;
	border: 2px solid #ecf0f1;
}

.login-form input[type="submit"] {
	padding: 24px 26px;
	width: 100%;
}

/* Our Products */
.our-products {
	margin-top: 100px;
}

/* Category */
.category-box {
	width: 100%;
	height: 300px;
	background-color: #7f1a1a;
	padding: 14px 16px;
	border-radius: 20px;
	margin-bottom: 30px;
	transition-duration: 0.4s;
}

.category-box span {
	font-weight: 100;
}

.category-box h2 {
	color: #FFF;
	text-align: center;
	padding-top: 90px;
}

.category-box:hover {
	transform: scale(1.1)
}

/* Products */
.product .product-img {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: top;
	transition-duration: 0.4s;
}

.product .product-img:hover {
	opacity: 0.75;
	filter: alpha(opacity=75);
}

.product .product-title h2 {
	font-weight: 300;
}

.product .product-price h2 {
	float: right;
	font-weight: 700;
}

.product hr {
	height: 1px;
	background-color: #ff8a00;;
	color: #ff8a00;
}

.view-products {
	margin-top: 20px;
	margin-bottom: 100px;
}

.view-products h1 {
	text-align: left;
	margin-bottom: 0px;
	font-weight: 100;
}

.view-products h2 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 2em;
	color: #000;
}

.view-products p {
	margin-top: 0px;
	float: left;
	letter-spacing: 1px;
}

.view-products img {
	width: 100% !important;
}

.view-products .product-points h4 {
	margin-bottom: 5px;
}
.view-products .product-points li {
	margin-top: 0px;
	margin-bottom: 5px;
}

.related-products {
	margin-top: 0px;
}

.related-products h2 {

}

.breadcrumb {
	color: #000;
	background-color: #ecf0f1;
	padding: 14px 16px;
}

.breadcrumb a:hover {
	text-decoration: none;
}

.product-images {
	width: 100%;
	height: 150px;
	border: 2px solid #000;
	background-size: cover;
	padding: 14px 16px;
}

.create-products input[type="text"], select, textarea {
	padding: 24px 26px;
	width: 100%;
	background-color: transparent;
	border: 2px solid #ecf0f1;
	color: #000;
	outline: none;
}

.create-products textarea {
	margin-top: 30px;
	color: #000;
}

.create-products button.delete {
	margin-top: 50px;
	background-color: #c0392b;
}

.create-products input[type="submit"] {
	width: 100%;
} 

.create-products input[type="file"] {
	color: #000;
}
