html, body, div, span, applet, object, iframe, h1, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {  

}

.fixedbasket {
  background-color: #FFFFFF;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  z-index:999;  /* this stacks the level of display */
  padding-top: 0px
}



.slides-style{
  padding-top: 20px /* Set the navbar to fixed position */	
}


/* Used for shopping basket  */
.container {
  position: relative;
  width: 100%;
  top: 33px;
}
.middle-right {
   position: relative;
   text-align: center;
   top: -48px;
   right: 0px;
   color: white;
}

h2	{
	font-family: "Castellar";                   
	text-align: center;
	font-size: 50px;
}

h3	{
	font-family: "Courier New";                   
	text-align: center;
	font-size: 40px;
}


.image {
  display: block;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
  background-color: #FFFFFF;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .15s ease;
}

.container:hover .overlay {
  width: 100%;
  left: 0;
}

.text {
  color: grey;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.header_style_1   { 
font-family: "Castellar";                   
text-align: center;
}

.header_style_2   {
 font-family: "Castellar";
 color: #808080;
}

.header_style_3   {
 font-family: "Castellar";                                        
 font-size: xx-small;
}

.header_style_4   {
 font-family: "Castellar";                                                             
 text-decoration: none;
}

.header_style_5   {
 font-family: "Castellar"; color: #808080;                        
 font-size: medium;
}

.body_style_1     { 
					font-family: "Castellar";                   
					text-align: center;
					font-size: large;
}
.body_style_1_mob     { 
					font-family: "Castellar";                   
					text-align: center;
					font-size: 50px;
}

.body_style_2     { font-family: "Castellar";
 color: #808080;
}

.body_style_3     {
 font-family: "Castellar";                                        
 font-size: xx-small;
}

.body_style_4     {
 font-family: "Castellar"; color: #808080;
	
	        font-size: large;
    font-style: italic;
}

.body_style_5     {
 font-family: "Castellar"; color: #808080;
                        font-size: small;
}

.body_style_5_red { 
font-family: "Castellar";
 color: #FF0000;
 font-size: small;
}

.body_style_6     {
 font-family: "Castellar"; 
 color: #808080;
 font-size: large;

}

.body_style_7     {
 font-family: "Castellar"; 
 color: #808080;
 font-size: medium;

}

.footer_style_1   {
 font-family: "Castellar";	                                                     
 text-align: center;
}

.footer_style_2   {
 font-family: "Castellar";
 color: #808080;
}

.footer_style_3   {
 
font-family: "Castellar";                                        
font-size: small;
}

.footer_style_4   {

 font-family: "Castellar";	                                                     
 text-decoration: none;
}
/* These are used for the login screen */
/* Taken from here : https://codeshack.io/secure-login-system-php-mysql/ */

* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
.login {
  	width: 300px;
  	background-color: #D3D3D3;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login lh1 {
  	text-align: center;
  	color: #FFFFFF;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #D3D3D3;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 250px;
  	height: 50px;
  	border: 1px solid #3274d6;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #FFFFFF;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #7e7d79;
  	transition: background-color 0.2s;
}
/* Login end section */