html {
  position: relative;
  min-height: 100%;
}
body {
  margin: 0 0 100px; /* bottom = footer height */
}
* {
  padding:0;
  margin:0;
  font-family: 'Montserrat', sans-serif;
}
#nav {
  text-align: center;
}
#nav ul {
  background-color:#4F81BD;
  list-style-type: none;
  padding:10px;
}
#nav ul li {
  display: inline;
  margin:20px;
}
#nav ul li a {
  color:#ffffff;
  text-decoration: none;
}
#nav ul li span {
  background-color: #ffffff;
  padding-left:5px;
  padding-right: 5px;
  color: #4F81BD;
  margin-left:10px;
}
#nav img {
  max-width:30%;
  margin:20px;
}
.nav-right {
  display: inline-block;
  position: absolute;
  right:0;
}

.main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.slider {
  max-width:100%;
  border:2px solid #4F81BD;
  margin:30px;
  height:350px;
}

.sliderImage {
  height: 500px;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

#intro-text {
  max-width:100%;
  vertical-align: top;
  text-align: center;
  background-color: #4F81BD;
  color: #ffffff;
  padding:20px;
  margin: 30px 90px 30px 90px;
}
.product-grid {
  max-width:100%;
  margin:30px;
  vertical-align: top;
  text-align: center;
}
.product-grid a {
  text-decoration: none;
  color: #000000;
}
.product-grid div {
  display: inline-block;
  min-height:200px;
  height: auto;
  width:200px;
  margin:40px;
  vertical-align: top;
  position: relative;
  text-align: center;
  box-shadow: 0 3px 9px rgba(0,0,0,0.20), 0 3px 6px rgba(0,0,0,0.40);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.product-grid div:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.product-grid div img {
  width:90%;
  max-height: 150px;
  margin-top: 3px;
}
.product-grid div p {
  position: absolute;
  bottom: 0;
  width:90%;
  text-align: center;
  margin:10px;
}

.footer {
  background-color: #4F81BD;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 120px;
  width: 100%;
}
.footer div {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin-left: 30px;
  margin-right:30px;
  padding:10px;
}

.footer div a {
  color:#ffffff;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
}
.footer div i {
  font-size: 1.6em;
  margin:5px;
}
.footer span {
  font-weight: bold;
}




.button {
  background-color: #4F81BD;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.20), 0 1px 3px rgba(0,0,0,0.40);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.button:hover {
  box-shadow: 0 6px 10px rgba(0,0,0,0.19), 0 4px 4px rgba(0,0,0,0.23);
}
.button span {
  background-color: #ffffff;
  color: #4F81BD;
  padding-left:5px;
  padding-right:5px;
  margin-left:10px;
}
.button#basket {
  float: right;
  margin:0;
  padding:0;
  box-shadow: none;
}
.button.top-left {
  position: absolute;
  top: 15px;
  left: 15px;
}
.button.top-right {
  position: absolute;
  top: 15px;
  right: 15px;
}
.button i {
  margin-right:10px;
}
.button#quantity:hover {
  box-shadow: 0 1px 6px rgba(0,0,0,0.20), 0 1px 3px rgba(0,0,0,0.40);
}
.button#quantity p,
.button#quantity input {
  display: inline;
}
.button#quantity input {
  border:none;
  width:30px;
  text-align: center;
  margin-left:10px;
  background-color: transparent;
  color: #ffffff;
  font-size: 1em;
  background-color: rgba(0,0,0,0.10);
}
.button#quantity input:focus {
  outline:none;
}
.button#delete:hover,
.button#cancel:hover {
  background-color: #D50000;
}

h2, h3 {
  font-weight: normal;
}

.box {
  position: relative;
  border:2px solid #cccccc;
  margin-top:30px;
  margin-bottom: 130px;
  padding:30px;
  text-align: center;
}
.basket-item {
  border:2px solid #cccccc;
  margin:15px;
  padding:30px;
  height: auto;
  text-align: left;
  display: inline-block;
  position: relative;
}
.basket-item div {
  display: inline-block;
  vertical-align: top;
}
.basket-item img {
  width:150px;
  display: inline-block;
  margin-right:15px;
}
.product-info {
  border:2px solid #cccccc;
  margin-top:30px;
  margin-bottom: 30px;
  padding:30px;
  text-align: left;
}
.product-info .images {
  width:350px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  margin-bottom: 20px;
}
.product-info .images a {
  text-decoration: none;
}
.product-info img {
  width:100%;
  box-shadow: 0 3px 9px rgba(0,0,0,0.20), 0 3px 6px rgba(0,0,0,0.40);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.img-menu {
  margin-top:20px;
}
.img-menu img {
  width:75px;
  margin:4px;
}
.product-info .description {
  max-width: 760px;
  display: inline-block;
  vertical-align: top;
}
.product-info ul {
  list-style-position: inside;
  list-style-type: square;
  margin-left:5px;
}
.product-info img:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.price {
  color: #4F81BD;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.20), 0 1px 3px rgba(0,0,0,0.40);
}
button {
  outline: none;
  border: none;
  font-size: 1em;
}
button:hover {
  cursor: pointer;
}
#login {
}
input,
textarea,
select {
  font-size: 1em;
  border:2px solid #cccccc;
  margin-bottom: 20px;
  padding:10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  width:300px;
  max-width:100%;
}
textarea {
  min-height: 200px;
}
textarea#contact-form {
  width:500px;
  max-width:100%;
}
input:focus,
textarea:focus {
  outline: none;
  border: 2px solid #4F81BD;
}
#quantity input {
  margin: 0;
  padding:0;
}
p#register {
  margin-top: 30px;
}
#register a{
  text-decoration: none;
  color: #000000;
  border-bottom: 2px solid #000000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
#register a:hover {
  color: #4F81BD;
  border-bottom: 2px solid #4F81BD;
}

p.expiry {
  display: inline;
}
select.expiry {
  width:100px;
}
p#security-code {
  display: inline;
}
input#security-code {
  width:50px;
}


.select:focus {
  outline:none;
  border: 2px solid #4F81BD;
}

.form-container {
  padding: 10px 0px 0px 0px;
  height: 520px;
  overflow: hidden;
  position: relative;
}
.form-container input {
  margin-top: 5px;
  margin-bottom:5px;
}
.box {
  overflow: hidden;
}

.contact-submit i{
  margin: 0;
  margin-left: 10px;
}

.contact-item {
  display: inline-block;
  vertical-align: top;
  text-align: centre;
  margin:30px;
  width:250px;
  max-width: 100%;
  font-size: 1.1em;
}
.contact-item i {
  color: #4F81BD;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.contactContainer {
  width: 100%;
  border: 0px solid #000;
  height: 80%;
  position: relative;
}

.contactLeft {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.contactRight {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.orders-container a {
  text-decoration: none;
  color:#000000;
}
.order {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 6px rgba(0,0,0,0.20), 0 1px 3px rgba(0,0,0,0.40);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  margin-bottom: :15px;
  margin-top: 15px;
  text-align: left;
}
.order p {
  display: inline-block;
  margin: 5px;
  padding:5px;
}

#order-i {
  float: right;
  font-size: 1.2em;
}
.order-status {
  color:#ffffff;
  background-color: #4F81BD;
  float:right;
}
.cancelled {
  background-color: #D50000;
}
.order:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.order .inside {
  position: relative;
  padding:5px;
  margin: 5px;
  display: none;
}
.orderInside {
  position: relative;
  padding:5px;
  margin: 5px;
  display: none;
}
.order table {
  margin:0 auto;
  max-width: 100%;
  border-collapse: collapse;
}
.order td {
  padding:5px;
  text-overflow: ellipsis;
  border-bottom:2px solid #cccccc;
}
.col-l {
  width:450px;
  text-overflow: ellipsis;
}
.row-top,
.row-bottom {
  font-weight: bold;
}

.order .address p {
  display: block;
  font-size: 0.9em;
  margin: 0;
  margin-left: 20px;
}
.order .address p a {
  color: #4F81BD;
}
.order .button {
  font-size: 0.9em;
}
.order .button-container {
  text-align: center;
  margin-bottom:10px;
}

.order-top {

}
.order-top:hover {
  cursor: pointer;
}

.page1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 15;
  width: auto;
  max-width: 100%;
  border: 0px solid #ff0000;
  float: center;
}

.page2 {
  position: absolute;
  right: -1000px;
  top: 15;
  left: 1000px;
  max-width: 100%;
  border: 0px solid #00ff00;
  float: center;
}

.page3 {
  position: absolute;
  right: -1000px;
  top: 15;
  left: 1000px;
  max-width: 100%;
  border: 0px solid #0000ff;
  float: center;
}

.continue,
.continue i,
.back,
.back i {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.continue,
.back {

}
.continue:hover,
.back:hover {
  cursor:pointer;
}

.continue i {
  margin:0;
  margin-left: 10px;
}
.back i {
  margin:0;
  margin-right: 10px;
}

.button_container {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 50px;
  width: 500px;
  max-width: 100%;
}

.continue,.back {
  display: inline-block;
}
.continue {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}

.back {
  position: absolute;
  left: 10px;
}

.dotsContainer {
  position: absolute;
  bottom: 100px;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  border: 0px solid #000;
  width: 144px;
  height: 16px;
}

.dotstyle ul {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	cursor: default;
}

.dotstyle li {
	position: relative;
	display: block;
	float: left;
	margin: 0 16px;
	width: 16px;
	height: 16px;
  cursor: default;
}

.dotstyle li a {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	border-radius: 50%;
	background-color: #fff;
	background-color: rgba(255,255,255,0.3);
	text-indent: -999em;
	position: absolute;
  cursor: default;
}

.dotstyle-circlegrow li a {
	overflow: hidden;
	background-color: transparent;
  border-radius: 50%;
	box-shadow: inset 0 0 0 2px #cccccc;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
  cursor: default;
}

.dotstyle-circlegrow li a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	border-radius: 50%;
	background-color: #cccccc;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dotstyle-circlegrow li.current a::after {
	-webkit-transform: scale(1);
	transform: scale(1);
}


.line {
  position: absolute;
  top: 7px;
  left: 16px;
  height: 2px;
  background-color: #cccccc;
  width: 16px;
}

.circle {
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 64px;
  height: 16px;
  width: 16px;
  box-shadow: 0 0 0px 0px rgba(187,187,187,0.5);
  /*transition: all .4s ease-in-out;*/
}

.circle2 {
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 112px;
  height: 16px;
  width: 16px;
  box-shadow: 0 0 0px 0px rgba(187,187,187,0.5);
  /*transition: all .4s ease-in-out;*/
}

.circle_after {
  box-shadow: 0 0 0 1em transparent;
  transition: all .4s ease-in-out;
}

.firstP {
  position: absolute;
  length: 400px;
  font-size: 12px;
  top: 0px;
  left: 16px;
}

.tooltip {
  position: absolute;
  font-size: 15px;
  line-height: 30px;
  bottom: 130px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border: 0px solid #000;
  height: 30px;
  width: auto;
  max-width: 144px;
  min-width: 50px;
  background-color: #cccccc;
}

.tooltip p {
  margin: 0;
  padding: 0;
  line-height: 30px;
  transition: all .4s ease-in-out;
}

.arrow {
  position: absolute;
  bottom: -10px;
  left: 13px;
  margin-left: auto;
  margin-right: auto;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #cccccc;
}

.submit {
  position: absolute;
  opacity: 0;
  right:0;
}
.submit i {
  margin: 0;
  margin-left: 10px;
}

.input-container {
  position: relative;
}
.input-container input {
  width:320px;
}

.checkboxContainer {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.checkboxContainer p {
  display: inline-block;
  line-height: 20px;
  margin-top: -20px;
}

.checkbox {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border:2px solid #4F81BD;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.checked {
  background-color: #4F81BD;
  border: 2px solid #4F81BD;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.billingAddressContainer {
  height: 0px;
  overflow: hidden;
  margin-top: 10px;
}
.required {
  position: absolute;
  top: 7px;
  left: -12px;
  margin: 0;
  padding: 0;
  display: none;
}

#bullet-caption {
  font-size: 0.8em;
  font-style: italic;
}

.AdminButtons {
  position: absolute;
  right: 10px;
  bottom: 20px
}

.table {
  height: auto;
  width: 800px;
  min-height: 100px;
  border: 2px solid #828282;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.top_row {
  height: 25px;
  width: 100%;
  background-color: #fff;
  position: relative;
  font-weight: bold;
  line-height: 25px;
  border-bottom: 1px solid #828282;
}

.row {
  height: 75px;
  width: 100%;
  border-top: 1px solid #828282;
  background-color: #fff;
  position: relative;
}

.row2 {
  height: 75px;
  width: 100%;
  border-top: 1px solid #828282;
  background-color: #eaeaea;
  position: relative;
}

.Row_ID {
  height: 75px;
  width: 60px;
  border-right: 1px solid #828282;
  position: absolute;
  text-align: center;
}

.Row_Image {
  height: 75px;
  width: 120px;
  border-right: 1px solid #828282;
  position: absolute;
  left: 60px;
  text-align: center;
  padding: 2px 0px 0px 0px;
}

.Row_Name {
  height: 75px;
  width: 219px;
  border-right: 1px solid #828282;
  position: absolute;
  left: 180px;
  text-align: center;
  padding: 0px 5px 0px 5px;
}

.Row_Category {
  height: 75px;
  width: 219px;
  position: absolute;
  left: 399px;
  border-right: 1px solid #828282;
  text-align: center;
}

.Row_Options {
  height: 75px;
  width: 182px;
  position: absolute;
  left: 618px;
  text-align: center;
}

.imageSelector {
  width: 200px;
  display: inline-block;
}

.imageSelector img {
  width: 200px;
  height: 200px;
}

.alert {
  padding: 5px 5px 5px 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-top: 20px;
  text-align: center;
  border-radius: 7px;
  background-color: rgba(152,242,140,0.5);
}

.cart {
  max-width: 50%;
}

.basketprice {
  background-color: #ffffff;
  color: #4F81BD;
  padding: 10px 15px 10px 15px;
  display: block;
  position: absolute;
  right: 30px;
  top: 15px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.20), 0 1px 3px rgba(0,0,0,0.40);
}

.checkoutPrice {
  color: #4F81BD;
  padding: 10px 15px 10px 15px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 50px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.20), 0 1px 3px rgba(0,0,0,0.40);
}

.ordertable {
  margin:0 auto;
  max-width: 100%;
  border-collapse: collapse;
}
.ordertd {
  padding:5px;
  text-overflow: ellipsis;
  border-bottom:2px solid #cccccc;
}



@media screen and (max-width: 930px) {
    .nav-right {
        position: relative;
    }
    .nav-left {
      display: none;
    }
}
@media screen and (max-width: 700px) {
    .box {
      padding-left: 0;
      padding-right: 0;
    }
    .product-grid {
      margin: 0;
    }
}
@media screen and (max-width: 250px) {
  .product-grid a div {
      margin-left: 5px;
      margin-right: 5px;
      max-width:100%;
  }
}
@media screen and (max-width: 500px) {
  .top-left {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .product-info {
    padding: 10px;
  }
  .product-info .images {
    max-width: 90%;
  }
  .product-info .button,
  .product-info .price {
    margin: 10px;
  }
}
@media screen and (max-width: 600px) {
  #intro-text {
    margin: 0;
  }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav {
    width:100%;
  }
  .nav-item {
    width:100%;
    float:none;
  }
}

.nav-mobile {
  display:none; /* Hide from browsers that don't support media queries */
  cursor:pointer;
  position:fixed;
  top:0;
  left:0;
  background-color:#4F81BD;
  height:28px;
  width:40px;
  -webkit-border-radius:0px;
  -moz-border-radius:0px;
  color: #fff;
  font-size: 20px;
  padding: 12px 0px 0px 0px;
  text-align: center;
  z-index: 100000;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav-mobile {
    display:block;
  }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav-list {
    display:none;
  }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.nav-mobile {
		display:block;
	}
	.nav {
		width:100%;
		padding:40px 0 0;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
	}
}

.MobileNav {
  height: 100%;
  width: 200px;
  background-color: #4F81BD;
  position: fixed;
  left: -200px;
  top: 0px;
  z-index: 10000;
}

.MobileNav ul {
  background-color:#4F81BD;
  list-style-type: none;
  padding:10px;
}
.MobileNav ul li {
  margin:0px 20px 10px 20px;
}
.MobileNav ul li a {
  color:#ffffff;
  text-decoration: none;
}
.MobileNav ul li span {
  background-color: #ffffff;
  padding-left:5px;
  padding-right: 5px;
  color: #4F81BD;
  margin-left:10px;
}

.nav-bottom {
    position: absolute;
    bottom: 0;
    left: 20px;
    color: #4F81BD;
  }

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 20px;
  height: 40px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .6s ease-in-out;
  -moz-transition: .6s ease-in-out;
  -o-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .45s ease-in-out;
  -moz-transition: .45s ease-in-out;
  -o-transition: .45s ease-in-out;
  transition: .45s ease-in-out;
}



/* Icon 3 */

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 6px;
}

#nav-icon3 span:nth-child(4) {
  top: 12px;
}

#nav-icon3.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}

.payment-errors {
  margin-top: -10px;
}

.addressContainer {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.shipping {
  width: 50%;
  margin-left: 0;
  margin-right: auto;
  display: inline-block;
}

.billing {
  margin-right: 0;
  margin-left: auto;
  width: 50%;
  display: inline-block;
}
