
html, body {
	font-family: Arial, Verdana, sans-serif;
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
	width:100%;
	}

/*SCROLL BAR SETTING FOR ONLY CHROME OR SOMETHING*/

body::-webkit-scrollbar {
    width: 4px;
	height: 6px;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
/*--------------------------------------------------*/

.center {
    margin: auto;
    width: 100%;
	text-align:center;
	padding-top:10px;

}

.top{
	width:100%;
	height:300px;
	
	background: #0db1e6; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #015476 , #18d0ef); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #015476, #18d0ef); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #015476, #18d0ef); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #015476 , #18d0ef); /* Standard syntax (must be last) */
}

.menubtn{
	display:none;
}

.nav{
	margin:auto;
	width:70%;
	height:60px;
	/*border-bottom : 1px solid pink;*/
}

.nav ul{
	list-style-type:none;
	margin:0;
	padding:0;
	overflow:hidden;
	/*background-color:#a0d7ec;*/
}

.nav li{
	float:left;
	text-align:center;
	width:20%;
}

.nav li a{
	display:block;
	color:black;
	text-align:center;
	padding:14px 16px;
	text-decoration:none;
}

.nav li a:hover:not(.active){
	/*background-color:red;*/
	border-bottom : 2px solid #f8eb14;
}

.active{
	/*background-color:blue;*/
	border-bottom : 2px solid #31caf6;
}

.mid{
	text-align:center;
}

.midCheck{
	text-align:center;
	font-family: 'Century Gothic', Arial, Verdana, sans-serif;
}

.msg{
	width:50%;
	margin: auto;
	text-align:justify;
	font-size:16px;
}

h1{
	font-family: 'Poiret One', cursive, Arial, Verdana, sans-serif;
	font-size:24px;
	font-weight:bold;
}


h3{
	font-family: 'Poiret One','Century Gothic', Arial, Verdana, sans-serif;
	font-size:18px;
	font-weight:bold;
}

.social{
	float: left;
	width : 100%;
	text-align:center;	
}


/* FORM CSS COMES HERE*/

.input-wrapper{
  position:relative;
  line-height:14px;
  margin:0 10px;
  display:inline-block;
}

label{
  color:#bbb;
  font-size:11px;
  text-transform:uppercase;
  background:none;
}

input {
  font-size:16px;
  color:#555;
  border:none;
  border-bottom: 1px solid #bbb;
  padding:5px 20px;
  position:relative;
  outline: none;
}
    
  input:focus{
	border-bottom: 2px solid red;
	font-size: 16px
  }


textarea{
	font-size:16px;
	color:#555;
	border:1px solid #bbb;
	padding:10px 20px;
	position:relative;
	outline: blue;
}

 textarea:focus{
	border-bottom: 2px solid red;
	font-size: 16px
  }
  
 /*----------- CheckOut Form Css ------------------------*/
 
 .checkRow{
	text-align:center;
	width:80%;
	margin-left:10%;
	margin-right:10%;
	margin-bottom:2%;
	border:  3px solid #0db1e6;
	border-radius:10px;
}

.comp{
	display: inline-block;
	width: 30%;
	margin-top: 0px;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-left:5px;
	padding-right:5px;
	margin-top: 10px;
	margin-bottom: 10px;
	/*border:  1px solid red;*/
}

.compDiv{
	display: inline-block;
	width:45%;
	/*border:  1px solid black;*/
}

.grand{
	text-align:center;
	font-size: 30px;
	font-weight: bold;
	padding: 30px;
	margin: 20px;
	color: #0db1e6;
}

button {
	background-color: #43cbfb;
	border:none;
	padding:12px 30px;
	text-align:center;
	text-decoration:none;
	font-size:18px;
	cursor:pointer;
	border-radius:5px;
	color:white;
}

button:hover{
	background-color:#fdfa03;
	color: #21f3fb;
	box-shadow: 2px 0px 10px #888888;
}

button:active {
	box-shadow: 5px 0px 10px #888888;
	padding:15px 32px;
}

.compDiv input[type=number]{
	/*background-color:#4f94d5;
	color:white;*/
	width:30px;
	padding:2px;
	margin-bottom:5px;
	border-radius:2px;
	border:none;
	text-align:center;
	box-shadow: 0px 0px 1px #888888;
}

.prodTot{
	font-weight:bold;
}

/*------------------------------------------------*/
 
/*FOR SMALLER SCREENS*/ 

 
 @media only screen and (max-width: 810px) {
	 
	 
	.top{
		height: 250px;
	}
	
	.nav{
		margin:auto;
		width:100%;
		font-size:14px;
		display: block;
	}
	
	.msg{
		width:70%;
		margin: auto;
		text-align:justify;
		font-size:16px;
	}
	.dropdown{
		display:none;
		z-index:4;
		height:270px;
	}
	
	.nav li{
		text-align:center;
		width:100%;
	}
	
	.menubtn{
		display:block;
		color: #11aafa; /*#26c4e1;*/
		border-bottom : 2px solid #b2e4e9;
		text-align:center;
		padding:20px 16px;
		font-size:18px;
		box-shadow: 1px 1px 10px #b2e4e9;
	}
	
	
	.nav:hover {
		display:block;
		height:270px;
	}
	
	
	.nav:hover .dropdown{
		display:block;
	}
	
	.comp{
		display: block;
		width: 96%;
		padding-top: 2px;
		padding-bottom: 2px;
		margin-top: 4px;
		margin-bottom: 4px;
	}
}

 @media only screen and (max-width: 430px) {
	 
	 
	.top{
		height: 220px;
	}
	
}


  




