*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-family: Raleway;
    color: #000;
}

/*---------------------------------------------------navigation--------------------------------------------------------------------------------*/

body {
		background-position: 50% 50%;
		margin:0;
	}
	
.product-btn,.about-btn,.contact-btn {
		background-color:black;
		color: white;
		padding: 16px;
		font-size: 21px;
		font-weight: bolder;
		border: none;
		cursor: pointer;
		font-family:brittanic;
	}

.dropdown0,.dropdown,.dropdown1 {
		position: relative;
		display: inline-block;
	}
.product-content, .about-content,.contact-content {
		display: none;
		position: absolute;
		background-color:#161616;
		min-width: 160px;
		z-index: 1;
	}

nav{
		background-color:black;
		text-align:center;
		padding-top:30px;
		position:fixed;
		top:0;
		width:100%;
		z-index:1;
		
	}
	
.link,.link-hidden,.link-hidden1,.link-hidden0{  
		display: inline-block;
		color: rgb(255, 255, 255);
		padding: 12px 16px;
		text-decoration: none;
		font-size: 20px;
		font-weight: bold;
	}
	
.link-hidden,.link-hidden1,.link-hidden0{   
		display: block;
		background-color:#161616;
	}
	
.link{
		display: inline-block;
	}
	
.link-hidden:hover,.link:hover,.link-hidden1:hover ,.link-hidden0:hover {  
		color: #0AEA1A;
		background-color:black;
	}
.dropdown0:hover .product-content {
		display: block;
		background-color:black;
	}	
.dropdown:hover .about-content {
		display: block;
		background-color:black;
	}
	
.dropdown1:hover .contact-content {
		display: block;
		background-color:black;
	}
.dropdown0:hover .product-btn {
		color: #0AEA1A;
		background-color:black;
	}
.dropdown:hover .about-btn {
		color: #0AEA1A;
		background-color:black;
	}
	
.dropdown1:hover .contact-btn {
		color: #0AEA1A;
		background-color:black;
	}
	
.content img {
		position:absolute;
		top:0px;
		left:0px;
	}
	
/*----------------------------------------------------------------common-----------------------------------------------*/
p{
	color: black;	
}
.container{
	max-width:1300px;
	margin:auto;
	padding-left:25px;
	padding-right:25px;
}
.row{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
}


/*--------------------------------------------all products----------------------------------------------------------------*/

.title{                /*all products heading*/
	text-align:center;
	margin:0 30px 40px 20px;
	position: relative;
	line-height:60px;
	color:black;	
	
	
}

.title::after{             /*line under the all products*/
	content: '';
	background:#ff523b;
	width: 80px;
	height: 5px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: 608px;
	transform: translateX(-50%);
	
}

/*--------------------------------Related products part--------------------------------------------*/
.col-3{
	flex-basis:30%;
	min-width:250px;
	margin-bottom:30px;
}
.col-3 img{
	width:100px;
	height:100px;	
}
.row-2{
	justify-content: space-between;
	margin: 100px auto 50px;
}

/*---------------------------------------------------- single product part------------------------------------------*/
.small-container{                    
	max-width:1080px;
	margin:auto;
	padding-left: 25px;
	padding-right: 25px;
}
.col-4{
	flex-basis: 25%;
	padding:10px;
	min-width:200px;
	margin-bottom:50px;
	transition: transform 0.5s;
}
.col-4 img{
	width:100%;
}
.col-4 p{
	font-size:14px;
}
.col-4:hover{                   /*----------upward motion of images*/
	transform: translateY(-5px);
}
h4{                          /*product - topic */
	color:black;
	font-weight: bold;
	font-size:16px;
}
.rating .fa{
	color:#ff523b;
}
.rating{
	font-size: 15px;
}

/*------------------------------------------------------page change at the bottom-----------------------------*/

.page-btn{
	margin: 0  auto 80px 50px;
}
.page-btn span{
	display: inline-block;
	border: 1px solid #ff523b;  
	margin-left: 10px;
	width: 40px;
	height: 40px;
	text-align:center;
	line-height: 40px;
	cursor: pointer;
	
}
.page-btn span:hover{
	background: #ff523b;
	color: #fff;
	
}


/*---------------------------------single-prouct-in-related-section-bottom of each product-page--------*/

.single-product h4{          /*----product-price--------*/
	margin: 20px 0;
	font-size: 22px;
	font-weight: bold;
}

p.stock {                           /*------------in-stock---------*/
    display: inline-block;
    background: #61c70e;
    color: #fff;
    border-radius: 3px;
    padding: 2px 10px;
    margin-bottom: 20px;
}

.small-img-row{                    /*------------small-image ---------*/
	display:flex;
	justify-content: space-between;
}

.small-img-col{
	flex-basis: 24%;
	cursor: pointer;
	
}

/*-------------------------------------------Buttons-----------------------------------*/
.btn {                       
    text-align: center;
    vertical-align: middle;
    padding: .67em .67em;
    cursor: pointer;
	margin: 10px;  
}

.btn:hover{
	background : #563434
}

.btn-primary {             /*--------add-to-cart and more-details--------------*/
    color: white;
    background-color: #8fce00;
    border: none;
    border-radius: .3em;
    font-weight: bold;
	border-radius:5px;
	font-size: 15px;
}

.btn-primary:hover {
    background-color: #638a0b;
}

/*----------------------------------------------SHOP ITEM PART  IN MAIN PAGE-----------------------------------*/
.keepinline{
	display: flex;
	align-items:center;
	flex-direction: row;
}

.shop-item-title {
    display:block;
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.shop-item-image {
    height: 200px;      /*this affected the image size*/
}

.shop-item-details {
    display: flex;
    align-items:center;
    padding: 5px;
}

.shop-item-price {
    flex-grow: 1;
    color: #333;
}*/

/*-------------------------------------------------cart------------------------------------------------------------------------*/
.cart-header {
    font-weight: bold;
    font-size: 1.25em;
    color: #333;
}
.cart-column {
    display: flex;
    align-items: center;
    border-bottom: 2px solid black;
    margin-right: 1.5em;
    padding-bottom: 10px;
    margin-top: 10px;
}

.cart-row {
    display: flex;
	padding: 20px;
}

.cart-item {
    width: 45%;
}

.cart-price {
    width: 20%;
    font-size: 1.2em;
    color: #333;
}

.cart-quantity {
    width: 35%;
}

.cart-item-title {
    color: #333;
    margin-left: .5em;
    font-size: 1.2em;
}

.cart-item-image {
    width: 75px;
    height: auto;
    border-radius: 10px;
	margin-left: 10px;
}

.cart-quantity-input {
    height: 34px;
    width: 50px;
    border-radius: 5px;
    border: 1px solid #56CCF2;
    background-color: #eee;
    color: #333;
    padding: 0;
    text-align: center;
    font-size: 1.2em;
    margin-right: 25px;
}

.cart-row:last-child {
    border-bottom: 2px solid black;
}

.cart-row:last-child .cart-column {
    border: none;
}

.cart-total {
    text-align: end;
    margin-top: 10px;
    margin-right: 10px;
}

.cart-total-title {
    font-weight: bold;
    font-size: 1.5em;
    color: black;
    margin-right: 20px;
}

.cart-total-price {
    color: #333;
    font-size: 1.1em;
}

.btn-remove{
    color: white;
    background-color: #EB5757;
    border: none;
    border-radius: .3em;
    font-weight: bold;
}

.btn-remove:hover {
    background-color: #CC4C4C;
}

.btn-purchase {
    display: block;
    margin: 40px auto 80px auto;
    font-size: 1.75em;
}


/*----------------------------------------------------form , invoice,checkout------------------------------*/
fieldset{
	margin:20px;
	padding-left:50px;
	padding-top:50px;
	padding-bottom:50px;
	font-size:20px;
	margin-left:30px;
	color:Blue;
}
fieldset img{
	margin-right:20px;
}

	
/*----------------checkout form--------------------*/	
input[type=text], input[type=email]{
  width: 30%;
  padding: 12px 20px;
  margin: 8px 0;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size:20px;
}

.invoice-attributes{
	font-family:Helvetica;
	color: blue;
}
.section-header{
	text-align:center;
	margin-top: 10px;
	position: relative;
	line-height:70px;
}
.form-details{
	padding:10px;
	margin:30px;
	font-size:20px;
	
	
}
.invoice{
	background-color:#ECF0F1 
}
.invoice img{
	float:right;
}

.editorpage a:hover{
	color:green;
	font-size:120%;
}














/*----------------footer---------------------------------------------------------*/
.footer{
		position:absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top:2020px;
		background: black;
		height:250px;
		width: 100%;
		color: #fff;
		margin-bottom:0;
		border-top-style:solid;
		border-top-color:yellow;
		z-index:1;
		
	
	}
	
	
	.footer-img{
		height:80px;  
		width:230px;
		margin-left:50px;
	}
	
	/*.copyright-text{
		padding-right:100px;
		background-size:cover;
		
		margin-bottom:50px;
		
	}*/
	
	.footer-social{
		padding-left:780px;
		
	}

	.footer-social a{
		text-decoration:none;
		color:white;
		font-size:20px;
		
		
	}
	
	.footer-social li{
		display:inline;
		top:0px;
	
		
		
	}
	
	.footer-social-link,.footer-social-link-1,.footer-social-link-2,.footer-social-link-3{
		padding-right:50px;
		transition: all 0.5s;
		
		
	}
	
	
	.footer-social-link:hover{
		color:#0E32BB ;
	}
	
	.footer-social-link-1:hover{
		color:#C41F97;
	}
	
	.footer-social-link-2:hover{
		color:#D71B32;
	}
	
	.footer-social-link-3:hover{
		color:#3A92F7 ;
	}
	
	.sitemap-r{
		background-color:black;
		color:white;
		border-radius:15px;
		border: 3px dotted yellow;
		text-align: center;
		font-size: 28px;
		padding: 15px;
		width: 200px;
		transition: all 0.5s;
		cursor: pointer;
		margin-left:500px;
		margin-right:50px;
		margin-top:30px;
	}
	
	.sitemap-r:hover{
		color:yellow;
		
	}
	
	.editor{
		background-color:black;
		color:white;
		border-radius:15px;
		border: 3px dotted yellow;
		text-align: center;
		font-size:18px;
		padding: 15px;
		transition: all 0.5s;
		cursor: pointer;
		margin-bottom:50px;
	}
	
	.editor:hover{
		color:yellow;
	}
	
	.contact-footer{
		background-color:black;
		color:white;
		border-radius:15px;
		border: 3px dotted yellow;
		text-align: center;
		font-size:20px;
		padding-top: 10px;
		padding-bottom:10px;
		transition: all 0.5s;
		cursor: pointer;
		margin-left:660px;
		
		
	}
	.contact-footer:hover{
		color:yellow;
	}