html, body {
  margin: 0;
  padding: 0;
  overflow: auto;
}

body {
  position: relative;
  background: #efefef;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

body.navigation {
  overflow-x: hidden;
  height: 100%;
}

main {
  position: relative;
  background: #f8f7f5;
  width: 100%;
  transition: margin-left 0.3s ease-in, transform 0.3s ease-in;
}

.navigation main {
  transform: scale(0.75);
  margin-left: 260px;
}

main.noScroll {
  height: 90vh;
  overflow: hidden;
}

section {
  background-color: #ffffff;
}

section.border {
  border-top: 1px solid #efefef;
}

hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 2px solid #efefef;
  color: #efefef;
}

/****************************************
* Typography
****************************************/

h1 {
  margin: 0;
  font: normal normal bold 60px/1.2em 'Alegreya Sans';
}

h2 {
  margin: 0;
  font: normal normal bold 38px/1em 'Alegreya Sans';
}

h3 {
  margin: 0;
  font: normal normal bold 28px/1em 'Alegreya Sans';
}

h4 {
  margin: 0;
  font: normal normal bold 24px/1em 'Alegreya Sans';
}

p, 
a,
li,
label,
input,
select,
option,
textarea {
  font: normal normal 16px/1.5em 'Alegreya Sans';
}

a {
  color: #0072ce;
  text-decoration: none;
}

a:hover {
  color: #da9903;
}

p {
  margin-bottom: 1rem;
}

p.small {
  font-size: 14px;
  font-weight: 400;
  color: #515151;
}

h2 + p {
  margin-top: 1rem;
}

/****************************************
* Accents
****************************************/

.accent1 {
  background-color: #00c1d5;
}

.accent2 {
  background-color: #f2a900;
}

.accent3 {
  background-color: #00c1d5;
}

.accent4 {
  background-color: #b5bd00;
}

.accent5 {
  background-color: #f7f8f9;
}

.accent6 {
  background-color: #f6f6f6;
}

.accent7 {
  background-color: #eff6fc;
}

.noBackground {
  background-color: transparent;
  box-shadow: none;
}

/****************************************
* Button
****************************************/

.button,
.button1 {
  margin-top: 1rem;
  background-color: #f2a900;
  border: none;
  border-radius: 5px;
  padding: .5rem 1rem;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
}

button.button {
  border: 1px solid #f2a900;
}

.button:hover {
  background-color: #da9903;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

button.button:hover {
  border: 1px solid #da9903;
}

.button1 {
  background-color: #0d62a9;
  padding: 1rem;
  font-size: 16px;
}

.button1:hover {
  background-color: #0072ce;
}

button.addToCartSuccess,
button.addToCartSuccess:hover {
  background-color: #b5bd00;
  border: 1px solid #b5bd00;
}

.buttonRound {
  display: inline-block;
  margin: 0 auto;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 56px;
}

.link {
  background-color: transparent;
  border: none;
  color: #0072ce;
  font-weight: 700;
}

.link:hover {
  cursor: pointer;
}

/****************************************
* Squiggle Line
****************************************/

.squiggleLine {
  position: relative;
  width: 100%;
  height: 25px;
  overflow: hidden;
}

.ellipse {
  position: absolute;
  background: radial-gradient(ellipse, transparent, transparent);
  background-size: 36px 40px;
  width: 400px;
  height: 20px;
}

.ellipse:last-of-type {
  top: 20px;
  left: 18px;
  background-position: 0px -20px;
}

.wave {
  --c:#00c1d5;   /* Color */
  --t:5px;   /* Thickness */
  --h:20px;  /* Height  */
  --w:150px; /* Width  */
  --p:5px;  /* adjust this to correct the position when changing the other values*/
  
  margin:5px auto;
  width:calc(var(--w)*4);
  height:calc(var(--h) + 10px);
  overflow:hidden;
  position:relative;
}
.wave:before {
  content:"";
  position:absolute;
  padding:5px 0;
  top:0;
  left:0;
  width:200%;
  bottom:0;
  
  background:
    radial-gradient(farthest-side at 50% calc(100% + var(--p)), transparent 47%, var(--c) 50% calc(50% + var(--t)),transparent calc(52% + var(--t))),
    radial-gradient(farthest-side at 50% calc(0%   - var(--p)), transparent 47%, var(--c) 50% calc(50% + var(--t)),transparent calc(52% + var(--t)));
    
  background-size:var(--w) var(--h);
  background-position:calc(var(--w)/2) calc(-1*(var(--h)/2)),0px calc(var(--h)/2);
  background-repeat:repeat-x;
  background-origin:content-box;
}

/****************************************
* Shopping cart
****************************************/

.shopping-cart {
  display: none;
}

.shopping-cart.open {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.shopping-cart.open .wrapper {
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom, #0070ce, #0d62a9);
  width: 100%;
  max-width: 300px;
  height: 100%;
  padding: 1rem;
}

.shopping-cart .close-cart,
.shopping-cart-btn {
  display: flex;
  background-color: transparent;
  border: none;
  padding: 0;
}

.shopping-cart .close-cart:hover,
.shopping-cart-btn:hover {
  cursor: pointer;
}

.shopping-cart .close-cart svg,
.shopping-cart-btn svg {
  width: 30px;
  height: 30px;
}

.shopping-cart .close-cart {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.shopping-cart .close-cart svg {
  fill: #ffffff;
}

.shopping-cart .emptyCartMessage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shopping-cart .emptyCartMessage p {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.shopping-cart .footer .flexRow {
  justify-content: space-between;
  padding: 1rem;
}

.shopping-cart .footer > div p {
  margin-bottom: 0;
  font-size: 25px;
}

.shopping-cart .cartQty {
  margin-bottom: 0;
  padding-left: 43px;
  color: #ffffff;
}

.shopping-cart h2 {
  display: flex;
  flex-direction: row;
  align-content: center;
  margin: 0 0 2rem;
  color: #ffffff;
  font-size: 30px;
}

.shopping-cart h2 svg {
  width: 30px;
  height: 30px;
}

.shopping-cart .cart-items {
  max-height: calc(100vh - 262px);
  overflow-y: scroll;
}

.product {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
  color: #ffffff;
}

.product .background {
  position: relative;
  margin-right: 1rem;
  padding: 3px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.product .background > div {
  display: none;
}

.product img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopping-cart .product img {
  width: 44px;
  height: 44px;
}

.product h3 {
  font-size: 20px;
}

.shopping-cart .product h3 {
  font-size: 16px;
}

.product p {
  margin: 0;
}

.product .removeProduct {
  margin-right: .5rem;
  background-color: transparent;
  border: none;
  padding: 0;
}

.product .removeProduct svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.product .removeProduct:hover svg {
  fill: #ff8d8d;
}

.shopping-cart .footer {
  position: absolute;
  margin-left: -1rem;
  bottom: 0;
  background-color: #0a64af;
  width: 100%;
}

.shopping-cart .footer p {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

.shopping-cart .footer a {
  display: block;
  background-color: #b5bd00;
  width: 100%;
  padding: 1rem;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.shopping-cart .footer a:hover {
  background-color: #9ea703;
  color: #ffffff;
  text-decoration: none;
}

/****************************************
* Top bar
****************************************/

.topBar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  width: 100%;
  background-color: #0070ce;
  padding: .5rem;
}

.topBar p {
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}

.topBar svg {
  margin-right: .5rem;
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/****************************************
* Header
****************************************/

header {
  position: relative;
  background-color: #ffffff;
  padding: 1rem 0;
}

header .logo {
  display: block;
  margin: 0 auto;
  max-width: 550px;
}

@media(max-width: 768px) {
  header .shopping-cart-btn {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
  }
}

/****************************************
* Navigation
****************************************/

@media(max-width: 768px) {
  nav {
    position: absolute;
    margin: 100px 0 0 20px;
  }

  .navigation nav {
    padding: 0;
    z-index: 10;
    overflow: hidden;
  }

  nav ul {
    list-style-type: none;
  }
  
  nav li {
    width: 0;
    margin: 30px 0;
    background: #eae8e5;
    transition: all 0.6s ease-in;
  }

  nav a {
    display: block;
    background-color: #0072ce;
    border-radius: 3px;
    width: 100%;
    padding: 5px 10px;
    color: #ffffff;
    text-decoration: none;
  }
  
  .navigation nav li + li {
    margin-right: -40px;
  }
  
  .navigation nav li + li + li {
    margin-right: -80px;
  }
  
  .navigation nav li + li + li + li {
    margin-right: -120px;
  }
  
  .navigation nav li {
    width: 200px;
    margin-left: 0;
  } 
}

/****************************************
* Hamburger button
****************************************/

.burgerBtn {
  border-top: 2px solid #0072ce;
  height: 25px;
  width: 30px;
  box-sizing: border-box;
  position: absolute;
  z-index: 30;
  left: 20px;
  top: 22px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.burgerBtn:before {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  background: #0072ce;
  top: 10px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.burgerBtn:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  background: #0072ce;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.navigation .burgerBtn {
  border-color: transparent;
}
.navigation .burgerBtn:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 33px;
  left: -2px;
}
.navigation .burgerBtn:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -khtml-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 11px;
  width: 33px;
  left: -2px;
}

/****************************************
* Banner
****************************************/

.banner {
  position: relative;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(200px + (500 - 200) * (100vw - 320px) / (1140 - 320));
  overflow: hidden;
}

.banner.inside {
  max-height: 400px;
}

.banner.plain,
.banner.inside.forSale {
  max-height: 150px;
}

.banner.plain {
  background-image: url(/images/patterns/bubblePattern.jpg);
  background-size: contain;
  background-repeat: repeat;
}

.banner .wrapper {
  margin: 2rem;
}

.banner h1 {
  margin: 0;
  color: #ffffff;
  text-shadow: 3px 4px 10px rgba(0, 0, 0, .5);
  text-align: center;
  text-transform: uppercase;
  font-size: calc(35px + (80 - 35) * (100vw - 320px) / (1140 - 320));
  font-weight: 800;
}

.banner.inside h1 {
  text-transform: none;
  font-weight: 400;
}

.banner.plain h1 {
  font-size: calc(35px + (60 - 35) * (100vw - 320px) / (1140 - 320));
  text-transform: none;
  font-weight: 400;
}

.banner .description a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #00c1d5;
  text-shadow: 3px 4px 10px rgba(0, 0, 0, .5);
  font-size: calc(16px + (30 - 16) * (100vw - 320px) / (1140 - 320));
  text-decoration: none;
}

.banner .description svg {
  margin-left: .5rem;
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.banner .description a:hover {
	color: #03b2c5;
}

.banner .description a:hover svg {
	fill: #dcdcdc;
}

.banner .bigWave {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 105%;
}

.banner .bigWave svg {
  fill: #ffffff;
}


/****************************************
* Welcome Section
****************************************/

.welcomeSection {
  text-align: center;
}

.welcomeSection h3 {
  color: #00c1d5;
  font-weight: 400;
}

.welcomeSection p {
  margin: 0 auto 1rem;
  max-width: 1000px;
}

/****************************************
* About Section
****************************************/

.about {
  text-align: left;
}

.about h3 {
  color: #00c1d5;
  font-weight: 400;
}

.about img {
  width: 100%;
}

.aboutCompany {
  text-align: left;
}

.aboutCompany h3 {
  font-weight: 400;
}

.aboutCompany h4 {
  color: #da9903;
  font-weight: 200;
}

.aboutCompany .grid {
  margin: 1rem 0;
}

.aboutCompany .grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}

.aboutCompany .sidebar {
  margin-top: auto;
  margin-bottom: 1rem;
  background-color: #0072ce;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
  padding: 1.5rem;
  color: #ffffff;
}

.aboutCompany .sidebar svg { 
  margin-right: .5rem;
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.aboutCompany .sidebar .head {
  display: flex;
  flex-direction: row;
  align-content: center;
  margin-bottom: .5rem;
}

/****************************************
* Card
****************************************/

.card {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
  padding: 1.5rem;
}

.card .head {
  display: flex;
  flex-direction: row;
  align-content: center;
  margin-bottom: .5rem;
}

.card svg { 
  background-color: #0072ce;
  border: 8px solid #0072ce;
  border-radius: 100%;
  margin-right: .5rem;
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

.card h4 {
  font: normal normal 18px/1em 'Alegreya Sans';
  display: flex;
  align-self: center;
}

/****************************************
* Featured product
****************************************/

.featuredProducts > .row {
  margin: 0 1rem;
}

.featuredProducts .product {
  display: block;
  position: relative;
  visibility: hidden;
}

.featuredProducts img {
  border-radius: 0;
}

.featuredProducts .product .info {
  color: #000000;
}

.featuredProducts .info h2 {
  margin-bottom: 0;
  font-size: 20px;
}

.featuredProducts .info p {
  margin-bottom: .5rem;
  font-size: 16px;
  line-height: 16px;
}

.featuredProducts .addToCard > .flexRow {
  display: block;
  width: 100%;
  height: 100%;
}

.featuredProducts .addToCard > .flexRow a,
.featuredProducts .addToCard > .flexRow button {
  display: block;
  margin-top: .5rem;
  width: 100%;
  text-align: center;
}

.featuredProducts .addToCard .dark {
  margin: 0;
}

.featuredProducts .addToCard .button1:hover {
  color: #ffffff;
}

/****************************************
* Weekly fish update
****************************************/

.weeklyFishUpdate {
  text-align: left;
}

.weeklyFishUpdate img {
  display: block;
  margin: 0 auto 1rem;
  width: 100%;
  max-width: 200px;
}

.weeklyFishUpdate .content {
  text-align: center;
}

.weeklyFishUpdate h3 {
  color: #00c1d5;
  font-weight: 400;
}

.weeklyFishUpdate .price {
  margin-right: 1rem;
  font-size: 25px;
  font-weight: 700;
}

/****************************************
* Custom number input
****************************************/

.value-button {
  display: inline-block;
  border: 1px solid #ffffff;
  margin: 0px;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 2px 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dark .value-button {
  border-color: #2c2c2c;
}

.dark .value-button:hover {
  background-color: #2c2c2c;
  color: #ffffff;
}

.value-button:hover {
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
}

.value-button.decrease {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 0px;
  border-radius: 8px 0 0 8px;
}

.value-button.increase {
  position: absolute;
  top: 0;
  left: 60px;
  margin-left: -5px;
  border-radius: 0 8px 8px 0;
}

input[type="number"].ui_number {
  position: absolute;
  top: 0;
  left: 25px;
  margin: 0px;
  background-color: transparent;
  border: none;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  width: 30px;
  height: 25px;
  color: #ffffff;
  text-align: center;
  -moz-appearance: textfield;
}

.dark input[type="number"].ui_number {
  color: #2c2c2c;
  border-color: #2c2c2c;
}

input[type="number"].ui_number::-webkit-inner-spin-button,
input[type="number"].ui_number::-webkit-outer-spin-button {
 -webkit-appearance: none;
  margin: 0;
}

[type="number"]:invalid {
  outline: 1px solid #ff0000;
}

/****************************************
* Checkout page
****************************************/

.checkout .col-md-7 {
  border-right: 1px solid #efefef;
}

.checkout .col-md-5 {
  border-left: 1px solid #efefef;
  padding-top: 4rem !important;
}

.checkout h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 25px;
}

.checkout h2 + p {
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.checkout .miniLogo {
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
}

.checkout .miniLogo svg {
  width: 70px;
  height: 70px;
}

.checkoutNav {
  margin-bottom: 4rem;
}

.checkoutNav p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.checkoutNav p .active {
  background-color: transparent;
  color: #0d62a9;
  font-weight: 700;
}

.checkoutNav svg {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  fill: #737373;
}

.checkout button,
[type="submit"] {
  display: block;
  margin-right: 0;
  margin-left: auto;
  width: auto;
  height: auto;
}

[type="submit"] {
  min-width: 100px;
}

.checkout .product {
  color: #2c2c2c;
}

.checkout .product .background > div {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: #0072ce;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, .2);
  border-radius: 50px;
  color: #ffffff;
  font: normal normal 16px/1.5em 'Alegreya Sans';
}

.checkout .product form {
  display: none;
}

.checkout .discountCodeMessage {
  color: #ff0000;
}

.checkout .discount .field {
  margin-right: 1rem;
  width: 100%;
}

.checkout .discount input {
  margin: 0;
}

.checkout .discount button {
  margin-top: 0;
  padding: .75rem 1rem;
}

.checkout .amountCalculations .flexRow,
.checkout .totalAmount.flexRow {
  justify-content: space-between;
}

.checkout .amountCalculations p {
  margin-bottom: .25rem;
}

.checkout .totalAmount p {
  font-size: 22px;
}

.checkout .billingAddressFields {
  display: flex;
  flex-direction: column;
}

.checkout .billingAddressFields .flexRow {
  width: 100%;
}

.checkout .billingAddressFields .flexRow > div:first-of-type {
  margin-right: .5rem;
}

.checkout .billingAddressFields .flexRow > div:last-of-type {
  margin-left: .5rem;
}

#creditCard {
  display: grid;
  align-content: center;
  margin-bottom: 1rem;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  height: 46px;
  padding: 0.5em;
}

/****************************************
* Order summary
****************************************/

.orderSummary {
  margin: 0 -1rem;
  background-color: #efefef;
}

.orderSummary .head {
  padding: 1rem;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.orderSummary .flexRow {
  justify-content: space-between;
}

.orderSummary .flexRow p {
  margin-bottom: 0;
  font-size: 16px;
}

.orderSummary .totalAmount p {
  font-size: 20px;
}

.orderSummary button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: transparent;
  border: none;
  padding: 0;
  color: #0072ce;
  font: 16px;
  font-weight: 700;
}

.orderSummary svg {
  margin: .5rem;
  width: 15px;
  height: 15px;
  fill: #0072ce;
}

.orderSummary button.on svg:last-of-type {
  transform: rotate(180deg);
}

.orderSummary hr {
  border-color: #cbcbcb;
}

.orderDetails {
  max-height: 0;
  transition: max-height 0.7s ease 0s;
  overflow: hidden;
}

.orderDetails > div {
  padding: 1rem;
}

.orderDetails.on {
  max-height: 500px;
  overflow-y: scroll;
}

/****************************************
* Content block
****************************************/

.contentBlock {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  width: 100%;
  padding: .5rem;
}

.contentBlock > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contentBlock > div p {
  margin-bottom: 0;
  margin-right: 1rem;
}

.contentBlock > div + div {
  margin-top: .5rem;
  border-top: 1px solid #cbcbcb;
  padding-top: .5rem;
}

.contentBlock label {
  margin: 0;
  width: 100%;
}

/****************************************
* Filter products
****************************************/

.filterProducts {
  display: flex;
  flex-direction: row;
}

#xSEARCH,
#xCATEGORY {
  margin-bottom: 0;
  background-color: transparent;
  background-size: 20px;
  background-position: 0 5px;
  background-repeat: no-repeat;
  border: none;
  border-bottom: 2px solid #bdbdbd;
  border-radius: 0;
  padding-left: 25px;
  font-weight: 700;
}

#xSEARCH:focus,
#xCATEGORY:focus {
  outline: none;
  border-bottom: 2px solid #797979;
}

#xSEARCH {
  background-image: url('/images/layout/search.png');
}

#xCATEGORY {
  background-image: url('/images/layout/filter.png');
}

.filterProducts select {
  line-height: 1.2em;
}

.filterProducts [type="submit"] {
  margin: 0 0 0 1rem;
  height: 34px;
  padding: 0;
}

/****************************************
* Products
****************************************/

.searchTitle + p {
  margin-top: -.5rem;
}

.shopProducts > div {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
  visibility: hidden;
}

.shopProducts .product {
  display: block;
  position: relative;
  background-color: #eff6fc;
  height: calc(100% - 1rem);
  padding: 1rem;
}

.shopProducts .product h3 {
  font-size: 25px;
  color: #0072ce;
}

.shopProducts .product:hover:before {
  content: 'View Detail';
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  z-index: 100;
}

.shopProducts .product .image {
  position: relative;
}

.shopProducts .product img {
  border-radius: 0;
  aspect-ratio: 1;
}

.shopProducts .product .tag {
  position: absolute;
  bottom: -14px;
  right: 0;
  padding: .1rem .5rem;
}

.shopProducts .product .tag p {
  margin: 0;
  font-size: 12px;
  color: #ffffff;
}

.shopProducts .product .tag.featured {
  background-color: #f2a900;
}

.shopProducts .product .tag.sale {
  background-color: #ff0e2c;
}

.shopProducts .product .tag.outOfStock {
  background-color: #8c8c8c;
}

.shopProducts .product p {
  margin-top: .5rem;
  color: #0d62a9;
}


.shopProducts .product strong {
  font-size: 20px;
  font-weight: 800;
}

.shopProducts .product p:last-of-type {
  margin-bottom: 0;
}

/****************************************
* Product category
****************************************/

.productCategory {
  background-image: url('/images/layout/waterBackground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.navigation footer {
  display: none;
}

.productCategory .flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}

.productCategory h2 span {
  margin: 0;
  font-weight: normal;
  font-size: 25px;
}

.productCategory h2,
.productCategory h3,
.productCategory p {
  color: #ffffff;
  text-shadow: 3px 4px 10px rgba(0, 0, 0, .5);
  text-align: center;
}

.productCategory p + h2 {
  margin-top: 2rem;
}

.productCategory p:last-of-type {
  margin-bottom: 0;
}

.productCategory .flex > div:first-of-type {
  max-width: 80%;
  order: 2;
}

.productCategory .flex > div:last-of-type {
  order: 1;
}

.productCategory .accent2 {
  margin-bottom: 1rem;
  border-radius: 50%;
  width: 100px; 
  height: 100px;
  padding: 5px;
}

.productCategory img {
  border-radius: 50%;
  width: 100%; 
}

/****************************************
* Accordion
****************************************/

.accordion {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #eeeeee;
  border: none;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  color: #444444;
  cursor: pointer;
  font-size: 15px;
}

.accordion:after {
  margin-left: 5px;
  content: '\002B';
  color: #777777;
  font-weight: bold;
}

.accordion:first-of-type {
  border-radius: 5px 5px 0 0;
}

.accordion:last-of-type {
  border-radius: 0 0 5px 5px;
}

.accordion.active,
.accordion:hover {
  background-color: #cccccc; 
}

.accordion.active:after {
  content: '\2212';
}

.panel + .accordion {
  margin-top: 1rem;
}

.panel {
  background-color: #ffffff;
  padding: 1rem;
  overflow: hidden;
}

.panel h3 {
  margin-bottom: 1rem;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}

/****************************************
* Contact page
****************************************/

.contact {
  background-color: #e5f3ff;
  border-radius: 3px;
  padding: 2rem 1rem;
}

.form-submitted {
  padding: 1rem;
}

.form-submitted h1,
.form-submitted p {
  color: #0072ce;
}

/****************************************
* Checkmark
****************************************/

.checkmarkCircle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #b5bd00;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: auto;
  box-shadow: inset 0px 0px 0px #b5bd00;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmarkCheck {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 60px #b5bd00;
  }
}

/****************************************
* Breadcrumb
****************************************/

.breadcrumb {
  display: flex;
  flex-direction: row;
  align-content: center;
}

.breadcrumb svg {
  margin: auto 0;
  width: 10px;
  height: 10px;
  fill: #bdbdbd;
}

.breadcrumb p,
.breadcrumb a {
  margin: 0 5px;
  font-size: 12px;
}

.breadcrumb p {
  color: #bdbdbd;
}

/****************************************
* Product detail
****************************************/

.productDetail .imageZoom {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
}

.productDetail h2 + .small {
  margin-top: 0;
}

.productDetail .flexRow {
  justify-content: space-between;
}

.productDetail h3 {
  margin-bottom: 1rem;
}

.productDetail .flexRow p {
  line-height: 2em;
}

.productDetail svg {
  margin-right: .5rem;
  width: 15px;
  height: 17px;
  fill: #dadada;
}

.productDetail .addToCard {
  margin: 1rem 0;
  padding: 1rem;
}

.productDetail .addToCard h3 {
  margin-bottom: .5rem;
}

.productDetail h3 > .small {
  font-size: 14px;
}

.productDetail .flexRow {
  width: 100%;
  justify-content: flex-start;
}

.productDetail .addToCard .dark {
  margin-left: 0;
  width: 80px;
}

/****************************************
* Add to cart
****************************************/

.uiNumberWrapper,
form.addToCard > div {
  position: relative;
  height: 25px;
  width: 80px;
}

.addToCard h3 {
  margin-bottom: 0;
}

.addToCard .dark {
  margin: 0 1rem;
}

.addToCard .button,
.addToCard .button1 {
  margin-top: 0;
  padding: .35rem .5rem;
  font-size: 12px;
}

/****************************************
* Attribution
****************************************/

.attribution {
  background-color: #0072ce;
  border-top: 5px solid #f2a900;
  padding: 2rem 0 1rem;
} 

.attribution .flex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
  margin: 2rem 0;
}

.attribution p,
.attribution a {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  text-shadow: none;
}

.attribution a {
  text-decoration: none;
}

.attribution .cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.attribution .social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.attribution .social svg:hover {
  fill: #da9903; 
}

.attribution .cards svg,
.attribution .social a {
  margin: 0 .5rem;
}

.attribution .cards svg,
.attribution .social svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/****************************************
* Delivery Details
****************************************/

.deliveryDetails {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #f2a900;
  border: none;
  border-radius: 20px;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, .2);
  padding: .75rem 1rem;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  z-index: 101;
}

.deliveryDetails:hover {
  background-color: #da9903;
}

.deliveryDetails svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.deliveryDetailsOverlay {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #f2a900;
  border-radius: 20px;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, .2);
  max-width: 300px;
  padding: 1rem;
  z-index: 101;
}

.deliveryDetailsOverlay .closeOverlay {
  position: absolute;
  top: -3px;
  right: 1rem;
  margin: 0;
  font-size: 30px;
  cursor: pointer;
  color: #ffffff;
}

.deliveryDetailsOverlay h2,
.deliveryDetailsOverlay p {
  color: #ffffff;
}

.deliveryDetailsOverlay h2 {
  font-size: 24px;
  text-align: center;
}

.deliveryDetailsOverlay p {
  margin-bottom: 0;
}

/****************************************
* Tooltip
****************************************/

.tool {
  display: inline-block;
  position: relative;
  background-color: #0070ce;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: help;
}

.tool svg {
  margin: 0;
  width: 19px;
  height: 10px;
  fill: #e5f3ff;
}

.tool::before,
.tool::after {
  left: 50%;
  opacity: 0;
  position: absolute;
  z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 100; 
}

/* pointer tip */
.tool::before {
  border-style: solid;
  border-width: 1em 0.75em 0 0.75em;
  border-color: #3E474F transparent transparent transparent;
  bottom: 100%;
  content: "";
  margin-left: -0.75em;
  transition: all .65s cubic-bezier(.84,-0.18,.31,1.26), opacity .65s .5s;
  transform:  scale(.6) translateY(-90%);
} 

.tool:hover::before,
.tool:focus::before {
  transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
}

/* speech bubble */
.tool::after {
  background: #3E474F;
  border-radius: .25em;
  bottom: 180%;
  color: #EDEFF0;
  content: attr(data-tip);
  margin-left: -8.75em;
  padding: 1em;
  transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
  transform:  scale(.6) translateY(50%);  
  width: 17.5em;
  text-align: center;
}

.tool:hover::after,
.tool:focus::after  {
  transition: all .65s cubic-bezier(.84,-0.18,.31,1.26);
}

@media (max-width: 760px) {
  .tool::after { 
    font-size: .75em;
    margin-left: -5em;
    width: 10em; 
  }
}
