:root {
	--header: #e3e6f3;
    --green: #19897e;
	--green_dark: #137066;
    --grey: #a5a3a6;
	--grey_dark: #7f7e80;
    --blue: #688691;
	--blue_dark: #4e646d;
  }

* {
	font-family: 'Spartan', sans-serif;
	box-sizing: border-box;
	margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
    color: #222;
}

h2 {
    font-size: 46px;
    color: #222;
}


h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
}


body {
	width:100%;
	color: #555555;
	background-color: #FFFFFF;
}

h1, h2, h3, h4, h5 {
	color: var(--grey_dark);
}

.content-wrapper {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #EEEEEE;
	background-color: var(--header);
	box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
header .content-wrapper {
	display: flex;
	justify-content: space-between;
}

header h1 {
	display: flex;
	align-content: center;
	font-size: 20px;
	padding: 12px 0;
}
header h1 a{
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

header nav a {
	text-decoration: none;
	color: #555555;
	padding: 5px 5px;
	margin: 0 5px;
}
header nav a:hover {
	border-bottom: 1px solid #aaa;
}
header .link-icons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}

header .link-icons a {
	text-decoration: none;
	color: #394352;
	padding: 0 10px;
}

header .link-icons a:hover {
	color: #4e5c70;
}

header .link-icons a i {
	font-size: 18px;
}

header .link-icons a span {
	display: inline-block;
	text-align: center;
	background-color: #63748e;
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 12px;
	line-height: 16px;
	width: 16px;
	height: 16px;
	font-weight: bold;
	position: absolute;
	top: 22px;
	right: 0;
}

main .featured p {
	display: inline-block;
	margin: 0;
	width: 100%;
	font-size: 24px;
	color: #FFFFFF;
}
main .recentlyadded h2 {
	display: block;
	font-weight: normal;
	margin: 0;
	padding: 40px 0;
	font-size: 24px;
	text-align: center;
	width: 100%;
	border-bottom: 1px solid #EEEEEE;
}
main .recentlyadded .products, main .products .products-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0 0 0;
}
main .recentlyadded .products .product, main .products .products-wrapper .product {
	display: block;
	overflow: hidden;
	text-decoration: none;
	width: 25%;
	padding-bottom: 60px;
}
main .recentlyadded .products .product img, main .products .products-wrapper .product img {
	transform: scale(1);
	transition: transform 1s;
}
main .recentlyadded .products .product .name, main .products .products-wrapper .product .name {
	display: block;
	color: #555555;
	padding: 20px 0 2px 0;
}
main .recentlyadded .products .product .price, main .products .products-wrapper .product .price {
	display: block;
	color: #999999;
}
main .recentlyadded .products .product .rrp, main .products .products-wrapper .product .rrp {
	color: #BBBBBB;
	text-decoration: line-through;
}
main .recentlyadded .products .product:hover img, main .products .products-wrapper .product:hover img {
	transform: scale(1.05);
	transition: transform 1s;
}
main .recentlyadded .products .product:hover .name, main .products .products-wrapper .product:hover .name {
	text-decoration: underline;
}
main > .product {
	align-content: center;
	flex-wrap: wrap;
	display: flex;
	padding: 40px 0;
	padding-left: 20px;	
}
main > .product > div {
	padding-left: 15px;
	width: 40%;
	min-width: 300px;
}
main > .product > img {
	object-fit: cover;
	width: 300px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
main > .product h1 {
	font-size: 34px;
	font-weight: normal;
	margin: 0;
	padding: 20px 0 10px 0;
}

main > .product .available {
	font-size: 14px;
	font-weight: normal;
	padding-bottom: 10px;
	
}

main > .product .price {
	display: block;
	font-size: 22px;
	color: #999999;
}
main > .product .rrp {
	color: #BBBBBB;
	text-decoration: line-through;
	font-size: 22px;
	padding-left: 5px;
}
main > .product form {
	display: flex;
	flex-flow: column;
	margin: 30px 0;
	
}

.product.description > p {
	display: inline-block;
	padding: 10px 0px;
	margin: 0px;
}

.description ul{
	margin-left: 20px;
	font-weight: 100;
}


main > .product form input[type="number"] {
	width: 150px;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	color: #555555;
	border-radius: 5px;
}
main > .product form input[type="submit"] {
	background:var(--green);
	border: 0;
	color: #FFFFFF;
	width: 150px;
	padding: 10px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}
main > .product form input[type="submit"]:hover {
	background: var(--green_dark);
}
main > .products h1 {
	background-image: url('imgs/pattern_1.png');
	background-size: cover;
	display: block;
	font-weight: 800;
	margin: 10px;
	padding: 40px 0;
	font-size: 36px;
	text-align: center;
	width: 100%;
}
main > .products .buttons {
	text-align: right;
	padding-bottom: 40px;
}
main > .products .buttons a {
	display: inline-block;
	text-decoration: none;
	margin-left: 5px;
	padding: 12px 20px;
	border: 0;
	background: #4e5c70;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	border-radius: 5px;
}
main > .products .buttons a:hover {
	background: #434f61;
}

.products-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 350px;
	width: 220px;
	margin: 5px;
    padding: 5px;
    border: 1px solid #cce7de;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.products-card img {
	width: 180px;
	border-radius: 10px;
}

.products-card img:hover {
	transform: scale(1.05);
	transition: transform 1s;
}

main .cart h1 {
	background-image: url('imgs/pattern_1.png');
	background-size: cover;
	font-weight: 800;
	margin: 10px 0;
	padding: 20px 0;
	font-size: 36px;
	text-align: center;
}

main .cart table {
	width: 100%;
}
main .cart table thead td {
	padding: 30px 0;
	border-bottom: 1px solid #EEEEEE;
}
main .cart table thead td:last-child {
	text-align: right;
}
main .cart table tbody td {
	padding: 20px 0;
	border-bottom: 1px solid #EEEEEE;
}
main .cart table tbody td:last-child {
	text-align: right;
}
main .cart table .img {
	object-fit: cover;
}
main .cart table .remove {
	color: #777777;
	font-size: 12px;
	padding-top: 3px;
}
main .cart table .remove:hover {
	text-decoration: underline;
}
main .cart table .price {
	color: #999999;
}
main .cart table a {
	text-decoration: none;
	color: #555555;
}
main .cart table input[type="number"] {
	width: 68px;
	padding: 10px;
	border: 1px solid #ccc;
	color: #555555;
	border-radius: 5px;
}
main .cart .subtotal {
	width:40%;
	text-align: right;
	padding: 10px 0;
	margin-right: 0px;
	margin-left: auto;
}

main .cart .subtotal .text {
	padding-right: 40px;
	font-size: 18px;
}
main .cart .subtotal .price {
	font-size: 18px;
	color: #999999;
}
main .cart .buttons {
	text-align: right;
	padding-bottom: 40px;
}
main .cart .buttons input[type="submit"] {
	margin-left: 5px;
	padding: 12px 20px;
	border: 0;
	background: var(--green);
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
}
main .cart .buttons input[type="submit"]:hover {
	background: var(--green_dark);
}


main > .checkout h1 {
	background-image: url('imgs/pattern_1.png');
	background-size: cover;
	display: block;
	font-weight: 800;
	padding: 10px 20px;
	margin: 0 auto;
	font-size: 36px;
	text-align: center;
	width: 100%;
}

main .placeorder h1 {
	display: block;
	font-weight: normal;
	margin: 0;
	padding: 40px 0;
	font-size: 24px;
	text-align: center;
	width: 100%;
}
main .placeorder p {
	text-align: center;
}

footer .footer-logo {
    padding-top: 40px;
    padding-left: 20px;
 }

footer .footer-wrapper{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
 }

 footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
 }

footer .copyright {
    display: flex;
    justify-content: center;
}


 #footer h4{
    padding-top: 10px;
    padding-bottom: 10px;
 }

 footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10;
 }

 footer .paygate {
	margin-top: 2px;
	border: 1px solid #222;
    border-radius: 10px;
	padding:2px 5px;

 }footer p strong {
	font-size: 16px;
	font-weight: 500;
 }

/* collapsible bars */

.collapsible {
	display: flex;
	background-color: var(--grey);
	border-radius: 4px;
	color: white;
	cursor: pointer;
	margin: 2px 0px;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
  }
.collapsible i {
	margin-right:5px;
	text-align: center;
}

.active, .collapsible:hover {
	background-color: #555;
  }

.content {
	display: flex;
	flex-direction: column;
	padding: 10px 30px;
	display: none;
	overflow: hidden;
	background-color: #f1f1f1;
  }

  #checkout_form {
	max-width: 800px;
	margin: 0 auto;
  }

  #checkout_form p {
	margin: 0;
	padding: 10px 0;
	font-weight: 600;
  }


/* form styling */

input[type=text], select{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	padding-right: 40px;
  }

input[type=submit] {
	width: 30%;
	background-color:var(--green);
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
  }
  
input[type=submit]:hover {
	background-color: var(--green_dark);
  }

.double_box .input_box {
	width: 50%;
	min-width: 200px;
	padding-right: 20px;
}

.text_area {
	height: 200px;
	width: 100%;
	max-width: 500px;
}

.input_box {
	width: 100%;
	min-width: 200px;
	padding-right: 0px ;
}

.double_box {
	display: flex;
	flex-wrap: wrap;
	justify-items:space-between;
  }

  .double_box :nth-child(2) {
	padding-right: 0px;
  }

.right-container {
	display: flex;
	justify-content: right;
	align-items: center;
  }

.right-container a{
	padding-right: 10px;
	padding-left: 10px;
  }

.col_container {
	width: 100%;
	flex-direction: column;
}

#hero{
	display: flex;
	flex-direction: column;
    background-image: url("imgs/freshseat_on_seats.jpeg");
    background-size: cover;
    background-position: top 25% right 0;
    height: 60vh;
    padding-left: 30px 40px;
	justify-content: flex-end;
	align-content: center;
 }

 #hero_heading h1{
	padding: 10px 20px;
	font-size: 20px;
    color: var(--grey);

 }

 #hero_heading h2{
	padding: 10px 20px;
	font-size: 24px;
    color: var(--blue);

 }

 #hero h4{
	font-size: 16px;
    color: #222;
    padding-bottom: 15px;
 }

 
 #hero_heading p{
    padding-top: 10px;
    color: var(--blue);
    padding-bottom: 20px;
 }

 #hero button{
    background-color: var(--green);
	opacity: 0.8;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 20px 20px;
    cursor: pointer;
 }

 #hero button:hover {
	background-color: var(--green);
	opacity: 1;
 }

 #feature {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
 }

 #feature .fe-box{
    padding: 5px 5px;
    width: 180;
    text-align: center;
    border-radius: 4px;
    margin: 5px;
 }

 #gallery {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
 }

.image-container {
    display: flex;
    width: 100%;
    height: 300px;
    align-items:center;
    justify-content: space-between;
    overflow: auto;
    scroll-behavior: smooth;
 }

 .image-thumb {
    height: 240px;
    width: 180px;
    padding-left: 5px;
    padding-right: 5px;
    object-fit: cover;
 }

 /*Contact Page*/

 .contact_us {
	display: flex;
	flex-direction: column;
	justify-content: center;
 }

 .contact_us h2{
	background-image: url('imgs/pattern_1.png');
	background-size: cover;
	color: var(--blue_dark);
	font-size: 34px;
	text-align: center;
	padding: 20px;
	margin: 5px;
 }

 .contact_us p {
	text-align: center;
	padding: 0px 80px;
 }

 #contact_form {
	display: flex;
	justify-content: center;
	padding: 10px 10px;

 }

 #contact_form form{
	border: 1px solid var(--green);
    border-radius: 10px;
	padding: 10px 10px;
	max-width: 80%;
 }

 #contact_message {
	margin-top:20px;
	width:100%;
	height:200px;
	padding: 10px 20px;
	border-radius: 10px;
 }

 #email_response h1{
	font-size: 34px;
	color: var(--green);
	text-align: center;
	padding: 20px;
	margin: 5px;
 }

 #email_response h2{
	font-size: 28px;
	color: var(--grey_dark);
	text-align: center;
	padding: 20px;
	margin: 5px;
 }

 #email_response p{
	text-align: center;
 }

 #collection_options {
	width: 100%;
}

 #collection_options p {
	padding: 10px 0px;
	margin: 0px;
	font-weight: 600;
}

#collection_options textarea {
	margin-top: 10px;
	padding: 10px 10px;
	border-radius: 4px;
	max-width: 80%;
}
 #same {
	margin-left: 10 px;
	margin-bottom: 10px;
 }

 #shipping_box {
	display:flex;
	flex-direction: column;
	display: none;
 }

 #final_box {
	display:flex;
	flex-direction: column;
 }

.subtotal {
	width:40%;
	text-align: right;
	padding: 15px 0;
	margin-right: 0px;
	margin-left: auto;
}

.subtotal .text {
	padding-right: 40px;
	font-size: 18px;
}
.subtotal .price {
	font-size: 18px;
	color: #999999;
}

.pop-up {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin-left: auto;
	margin-right: auto;
	display: table;
	border-radius: 10px;
	width: 80%;
	max-width: 400px;
	height: 30em;
	border: 1px solid #222;
	background-color: var(--header);
  }
  
  #terms {
	display: none;
	height: fit-content;
  }

  #privacy {
	display: none;
	height: fit-content;
  }

  #terms h3 {
	padding: 10px 10px;
	text-align: center;
  }

  #privacy h3 {
	padding: 10px 10px;
	text-align: center;
  }


 .buttons {
	display: flex;
	justify-content: space-evenly;
  }
  .buttons button{
    background-color: var(--green);
	opacity: 0.8;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin: 15x 15px;
    cursor: pointer;
  }

.pop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pop-header button{
	width: fit-content;
	height: fit-content;
	border: none;
	margin: 5px 10px;
}

.pop-header i{
	font-size: 20px;
	color: #555555;
}

.pop-header i:hover{
	color: #222;
	cursor: pointer;
}

#terms {
	padding-bottom:20px
}

#privacy {
	padding-bottom:20px
}

#terms_content {
	background-color: #f1f1f1;
	border-style: solid;
	height: 20em;
	border-radius: 10px;
	overflow: scroll;
	padding: 20px 10px;
	margin: 10px 10px;
}

#privacy_content {
	background-color: #f1f1f1;
	border-style: solid;
	height: 20em;
	border-radius: 10px;
	overflow: scroll;
	padding: 20px 10px;
	margin: 10px 10px;
}

.placeorder {
	display: flex;
	flex-direction: column;
	align-content: center;
}

.placeorder.content-wrapper h1{
	padding: 10px 10px;
	margin: 0 auto;
}

.content-wrapper p{
	padding: 20px 20px;
}

#pay_now {
	font-size: 20px;
	max-width: 200px;
	min-width: 100px;
	margin:auto;
	justify-content: center;
}

#delivery_message h6 {
	text-align: center;
	font-size: 20px;
	padding: 10px 0px;
	color: #893f3f;
}

#final_box > div > div.right-container > input[type=button]:nth-child(3) {
	width: 30%;
	background-color:var(--green);
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
}

