@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  position: relative;
  min-height: 100%;
  color: #2A2A2A;
  background-color: #FFFFFF;
  margin: 0;
  padding-bottom: 100px;
  /* Same height as footer */
}

h1, h2, h3, h4, h5 {
  color: #394352;
}

.content-wrapper {
  width: 900px;
  margin: 0 auto;
}

.content-wrapper.error {
  padding: 40px 0;
}

header {
  position: relative;
  border-bottom: 1px solid #EEEEEE;
}

header .content-wrapper {
  display: flex;
}

header h1, header img {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  font-size: 20px;
  margin: 0;
  padding: 24px 0;
}

header adminnav {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  justify-content: center;
  align-items: center;
}

header adminnav a {
  white-space: nowrap;
  text-decoration: none;
  color: #555555;
  padding: 10px 10px;
  margin: 0 10px;
}

header adminnav a:hover {
  border-bottom: 1px solid #aaa;
}

sitehead{
  position: relative;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
sitehead .wshead{
  height: 100%;
  width: 100%;
  display: flex;
  background: #3E8DA8;
  justify-content: center;
  margin: auto;
}
sitehead .wshead .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

nav{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 50px;
  background: #3E8DA8;
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 30px;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .products-arrow,
.links li:hover .about-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .products-sub-menu,
nav .navbar .links li:hover .about-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .cart{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .cart i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.navbar .cart a span {
  display: inline-block;
  text-align: center;
  background-color: #bd263a;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  font-weight: bold;
  position: absolute;
  top: -4px;
  right: 2px;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .fa-bars{
  display: none;
}

pagehead{
  width: 100%;
  height: 100%;
  height: 60px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
pagehead .pghead{
  height: 100%;
  width: 100%;
  display: flex;
  background: #3E8DA8;
  justify-content: center;
  margin: auto;
}
.pghead .pgname p {
  font-size: 20px;
  width: 100%;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
}

main .featured {
  display: flex;
  flex-direction: column;
  background-image: url(site-images/featured-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

main .featured h2 {
  display: inline-block;
  margin: 0;
  width: 1050px;
  font-family: Rockwell, Courier Bold, Courier, Georgia, Times, Times New Roman, serif;
  font-size: 68px;
  color: #FFFFFF;
  padding-bottom: 10px;
}

main .featured p {
  display: inline-block;
  margin: 0;
  width: 1050px;
  font-size: 24px;
  color: #FFFFFF;
}

main .featured-events {
  display: flex;
  flex-direction: column;
  background-color: #3E8DA8;
  height: 200px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

main .getzip {
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEEEEE;
}

main .getzip h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 20px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

main .getzip p {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  text-align: center;
  width: 100%;
}

main .getzip form {
  width: 300px;
  display: flex;
  flex-flow: wrap;
  padding-bottom: 20px;
  margin: 0 auto;
}

main .getzip form .zipval {
  width: 1000%;
  display: inline-block;
  text-align: center;
}

main .getzip form .zipval input{
  width: 80px;
}

main .getzip .error {
  color: red;
  text-align: center;
}

main > .privacy p {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  margin: 20px;
  width: auto;
}

main .privacy h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 20px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #EEEEEE;
}

main .privacy h3 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 10px 0;
  font-size: 20px;
  text-align: left;
  width: 100%;
}

main > .privacy ul {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  margin-left: 30px;
  width: auto;
}

main > .pagetext p {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin: 10px;
  width: auto;
}

main .pagetext h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 20px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #EEEEEE;
}

main .pagetext .align-left  img {
 float: left; 
 padding: 0 40px 20px 20px;
}

main .pagetext .align-right  img {
 float: right; 
 padding: 0 20px 20px 40px;
}

main .recentlyadded h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 20px 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;
  justify-content: space-around;
  padding: 20px 0 0 0;
}

main .recentlyadded .products .product, main .products .products-wrapper .product {
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 25%;
  padding-bottom: 20px;
}

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 {
  display: flex;
  padding: 40px 0;
}

main > .product h1 {
  font-size: 34px;
  font-weight: normal;
  margin: 0;
  padding: 20px 0 10px 0;
}

main > .product .product-small-imgs img {
  border: 1px solid #EEEEEE;
  cursor: pointer;
  margin: 20px 12px 0 0;
}

main > .product .product-small-imgs img.selected {
  border: 1px solid #c8c8c8;
}

main > .product .product-wrapper {
  padding-left: 15px;
}

main > .product .product-image-text {
  padding: 15px 20px;
}

main > .product .product-image-text-small {
  display: none;
  padding: 15px 20px;
}

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: 40px 0;
}

main > .product form select, main > .product form input[type="number"] {
  width: 400px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}

main > .product form input[type="submit"] {
  background: #4e5c70;
  border: 0;
  color: #FFFFFF;
  width: 400px;
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

main > .product form input[type="submit"]:hover {
  background: #434f61;
}

main > .product form input[type="submit"]:disabled {
  background: #ddd;
}

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

main > .locations .locations-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 0 0 0;
}

main .locations .locations-wrapper .location {
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 25%;
  padding-bottom: 20px;
}


main > .locations .locations-wrapper .location p {
  margin: 0;
}

main > .locations .locationmap {
  display: flex;
  justify-content: center;
  padding: 0;
}

main > .locations .locationmap .mapouter {
  position: relative;
  text-align: right;
  height: 400;
  width: 400;
}

main > .locations .locationmap .gmap_canvas {
  overflow: hidden;
  background: none!important;
  height: 400;
  width: 400;
}

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

main > .contact p {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin: 10px;
  width: auto;
}

main > .contact #message {
  padding: 0px 40px 0px 0px;
}

main > .contact #mail-status {
  padding: 12px 20px;
  width: 100%;
  display:none; 
  font-size: 1em;
  color: rgb(40, 40, 40);
}

main > .contact .label {
  margin: 2px 0;
}

main > .contact .field {
  margin: 0 0 20px 0;
}

main > .contact .error {
  background-color: #F7902D;
  margin-bottom: 40px;
}

main > .contact .success {
  background-color: #48e0a4;
}

main > .contact .g-recaptcha {
  margin: 0 0 25px 0;
}

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

main > .products .products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

main > .products .products-header p {
  margin: 0;
}

main > .products .products-header label {
  padding-left: 20px;
}

main > .products .products-header select {
  padding: 5px;
  margin-left: 15px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}

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;
}

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

main .cart table, main .myaccount table {
  width: 100%;
}

main .cart table thead td, main .myaccount table thead td {
  padding: 30px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .cart table thead td:last-child, main .myaccount table thead td:last-child {
  text-align: right;
}

main .cart table tbody td, main .myaccount table tbody td {
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .cart table tbody td:last-child, main .myaccount table tbody td:last-child {
  text-align: right;
}

main .cart table .img, main .myaccount table .img {
  width: 80px;
}

main .cart table .remove, main .myaccount table .remove {
  color: #777777;
  font-size: 12px;
  padding-top: 3px;
}

main .cart table .remove:hover, main .myaccount table .remove:hover {
  text-decoration: underline;
}

main .cart table .price, main .myaccount table .price {
  color: #999999;
}

main .cart table a, main .myaccount table a {
  text-decoration: none;
  color: #555555;
}

main .cart table input[type="number"], main .myaccount table input[type="number"] {
  min-width: 68px;
  max-width: 78px;
  padding: 10px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}

main .cart .subtotal, main .cart .shipping, main .myaccount .subtotal, main .myaccount .shipping {
  text-align: right;
  padding: 30px 0 0 0;
}

main .cart .subtotal .text, main .cart .shipping .text, main .myaccount .subtotal .text, main .myaccount .shipping .text {
  padding-right: 40px;
  font-size: 16px;
}

main .cart .subtotal .price, main .cart .shipping .price, main .myaccount .subtotal .price, main .myaccount .shipping .price {
  font-size: 16px;
  color: #999999;
}

main .cart .shipping, main .myaccount .shipping {
  padding: 10px 0 0 0;
}

main .cart .shipping-methods, main .myaccount .shipping-methods {
  display: flex;
  flex-flow: column;
  align-self: flex-end;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0;
  border-bottom: 1px solid #EEEEEE;
  padding: 40px 0;
  max-width: 320px;
}

main .cart .shipping-methods h2, main .myaccount .shipping-methods h2 {
  font-weight: 500;
  margin: 0;
  padding-bottom: 5px;
}

main .cart .taxnotice {
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}

main .cart .shipping-methods .shipping-method, main .myaccount .shipping-methods .shipping-method {
  padding-top: 10px;
}

main .cart .total, main .myaccount .total {
  text-align: right;
  padding: 20px 0 40px 0;
}

main .cart .total .text, main .myaccount .total .text {
  padding-right: 40px;
  font-size: 18px;
}

main .cart .total .price, main .myaccount .total .price {
  font-size: 18px;
  color: #999999;
}

main .cart .buttons, main .myaccount .buttons {
  text-align: right;
  padding-bottom: 10px;
}

main .cart .buttons input[type="submit"], main .myaccount .buttons input[type="submit"] {
  margin: 0 0 5px 5px;
  padding: 12px 20px;
  border: 0;
  background: #4e5c70;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

main .cart .buttons input[type="submit"]:hover, main .myaccount .buttons input[type="submit"]:hover {
  background: #434f61;
}

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;
}

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

main .checkout form, main .myaccount form {
  width: 600px;
  display: flex;
  flex-flow: wrap;
  padding-bottom: 40px;
}

main .checkout form h2, main .myaccount form h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 50px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .checkout form h3 {
  width: 90%;
  font-weight: normal;
  font-size: 15px;
  padding: 10px 0 10px 0;
  margin: 0 0 10px 0;
  text-align: center;
}

main .checkout form h2:first-child, main .myaccount form h2:first-child {
  padding: 20px 0 20px 0;
}

main .checkout form label, main .myaccount form label {
  display: block;
  padding: 15px 0 10px 0;
}

main .checkout form input, main .checkout form select, main .myaccount form input, main .myaccount form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

main .checkout form input[type="submit"], main .checkout form button, main .myaccount form input[type="submit"], main .myaccount form button {
  width: 100%;
  border: 0;
  margin-top: 40px;
  padding: 14px 20px;
  background: #4e5c70;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

main .checkout form input[type="submit"]:hover, main .checkout form button:hover, main .myaccount form input[type="submit"]:hover, main .myaccount form button:hover {
  background: #434f61;
}

main .checkout form .row1, main .checkout form .row2, main .myaccount form .row1, main .myaccount form .row2 {
  width: 50%;
  display: inline-block;
}

main .checkout form .row1, main .myaccount form .row1 {
  padding-right: 10px;
}

main .checkout form .row2, main .myaccount form .row2 {
  padding-left: 10px;
}

main .checkout .paypal, main .checkout .stripe, main .myaccount .paypal, main .myaccount .stripe {
  padding-bottom: 40px;
  width: 100%;
}

main .checkout .paypal button, main .checkout .stripe button, main .myaccount .paypal button, main .myaccount .stripe button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px 7px 20px;
  background-color: #FFC439;
  width: inherit;
}

main .checkout .paypal button:hover, main .checkout .stripe button:hover, main .myaccount .paypal button:hover, main .myaccount .stripe button:hover {
  background-color: #f3bb37;
}

main .checkout .stripe, main .myaccount .stripe {
  padding-bottom: 0;
}

main .checkout .stripe button, main .myaccount .stripe button {
  padding: 14px 20px;
  background-color: #4381cf;
}

main .checkout .stripe button:hover, main .myaccount .stripe button:hover {
  background-color: #3374c6;
}

main .myaccount form {
  width: 100%;
}

main .myaccount h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 30px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

main .myaccount table {
  padding-bottom: 40px;
}

main .myaccount table tr:last-child td {
  border-bottom: 0;
}

main .myaccount .login-register {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

main .myaccount .login-register h1 {
  text-align: left;
  padding-top: 15px;
}

main .myaccount .login-register .login {
  width: 100%;
  border-right: 1px solid #f6f6f6;
  padding-right: 45px;
}

main .myaccount .login-register .register {
  width: 100%;
  padding-left: 45px;
}

main p.error {
  color: red;
}

main .recipes {
  padding: 0 10px;
}

main .recipes table {
  width: 75%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;

}

main .recipes table thead td {
  font-weight: 600;
  padding: 15px 0;
}

main .recipes table tbody tr {
  font-size: 16px;
}

main .recipes table tbody td {
  text-align:left;
  vertical-align:middle;
  padding: 5px 0;
  word-wrap: break-word;
}

main .recipes table tbody td:hover {
  color: blue;
}


main .section{
  max-width: 800px;
  margin: 3rem auto;
}

main .card {
  background-color: #F4EBDA;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left: 30px;
  background: repeating-linear-gradient(#0000 0 calc(1.2rem - 1px),#78BAF3 0 1.2rem) right bottom /100% 100%,linear-gradient(#FFCECD 0 0) 30px 0/2px 100% #F4EBDA;
  background-repeat: no-repeat;
  line-height: 1.2rem;
  transform: rotate(-4deg);
  padding: 1rem;
  clip-path: polygon(
            1% 2%,
            3.5% 0.1%,
            8.9% 2.7%,
            16.2% 1.2%,
            19.7% 0.8%,
            24.7% 2%,
            31.2% 0%,
            35.9% 2.3%,
            40.6% 0.5%,
            47.1% 1.8%,
            49.9% 1%,
            53.8% 2.5%,
            62.2% 0.4%,
            67.3% 1.2%,
            70.3% 0.3%,
            75.8% 1.4%,
            78.5% 1.7%,
            84% 2.6%,
            91.1% 0.5%,
            93.6% 2.4%,
            97.3% 0.3%,
            98.9% 6%,
            98.1% 11.4%,
            98.6% 15.5%,
            97.3% 17.8%,
            97.7% 27.4%,
            98.3% 28.5%,
            99.7% 34.1%,
            98.8% 41.9%,
            98.3% 45.7%,
            98.4% 50.9%,
            98.7% 57.4%,
            99.6% 60.4%,
            99.4% 66.6%,
            99.2% 69.5%,
            97.4% 77.1%,
            98.1% 82.3%,
            99.9% 83.5%,
            98.2% 91.5%,
            99.3% 95.3%,
            98% 98.6%,
            93.6% 97.4%,
            90.3% 98.3%,
            86.8% 98.3%,
            78.6% 98.5%,
            76.4% 99.2%,
            69.7% 99.8%,
            64.2% 99.3%,
            61.8% 99.2%,
            57.2% 98.1%,
            48.7% 98.3%,
            46.8% 99%,
            39.6% 98.9%,
            33.8% 97.3%,
            28.2% 99.4%,
            27% 98.3%,
            22.1% 98.6%,
            13.1% 97.1%,
            8.7% 99.3%,
            2.7% 97.4%,
            2% 98.2%,
            2.1% 94.3%,
            0.7% 90.5%,
            0.9% 86.3%,
            2.2% 78.2%,
            0.4% 76.7%,
            1.2% 72.1%,
            2% 64%,
            1.4% 59.8%,
            0.4% 57.3%,
            0.3% 49.1%,
            2.9% 44.7%,
            1.9% 41.3%,
            0.8% 35.7%,
            2.9% 31.3%,
            0.8% 24.9%,
            2.7% 20.5%,
            0.8% 17.4%,
            2.5% 8.6%,
            1.1% 5.5%
        );
}

main .card_image {
  height: calc(23*1.2rem);
  padding: 1.2rem 1.2rem 0;
  position:relative;
}
main .card_image:before,
main .card_image:after{
  content: "";
  position: absolute;
  width: 20px;
  left: 81%;
  top: 0;
  height: 45px;
  background: #E8BD3F;
  transform: rotate(45deg);
  opacity: 0.7;
}

main .card_image:after{
  transform: rotate(-45deg);
  top:auto;
  bottom:-22px;
  left: 21%;
}

main .card_image img {
  width:100%;
  height:100%;
  object-fit:contain;
}

main .card_content {
  padding: 1.2rem;
}

main .card_content h2 {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

main .card_content h3 {
  text-decoration: underline;
  margin-bottom: 1.5rem;
}


footer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
footer p {
  line-height: 70px;
  height: 100%;
  color: #fff;
  text-align: left;
  text-decoration: none;
  font-weight: 600;
}

footer img {
 float: right; 
 padding: 15px 10px 0px 0px;
}


/* Responsive CSS below */
@media (max-width: 1000px) {
  .rhide {
    display: none;
  }
  .content-wrapper {
    width: 100%;
    padding: 0 10px;
  }
sitehead .wshead .logo a{
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
  nav{
    /* position: relative; */
  }
  .navbar .fa-bars{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #3E8DA8;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .logo a{
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .fa-bars{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .products-arrow,
.links li:hover .about-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .products-sub-menu,
  nav .navbar .links li:hover .about-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .products-sub-menu,
  .navbar .nav-links.show2 .links .about-sub-menu {
      display: block;
    }
    .navbar .nav-links.show1 .links .products-arrow,
    .navbar .nav-links.show2 .links .about-arrow{
        transform: rotate(180deg);
}
pagehead .pghead{
  height: 100%;
  width: 100%;
  display: flex;
  background: #3E8DA8;
  justify-content: center;
  margin: auto;
}
.pghead .pgname p {
  font-size: 20px;
  width: 100%;
  color: #fff;
  padding: 10px 20px 20px;
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
}

  main .recentlyadded .products, main .products .products-wrapper {
    justify-content: space-around;
  }
  main .recentlyadded .products .product, main .products .products-wrapper .product {
    width: auto;
  }
  main .featured {
    height: 300px;
  }
  main .featured h2 {
    font-size: 48px;
    width: 100%;
    padding: 0 10px;
  }
  main .featured p {
    font-size: 22px;
    width: 100%;
    padding: 0 10px;
  }
  main > .locations .locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0 0 0;
  }
  main .locations .locations-wrapper .location {
    width: auto;
  }
  main > .products .products-header {
    flex-flow: column;
  }
  main > .products .products-header p {
    padding-bottom: 10px;
  }
  main > .products .products-header form {
    display: flex;
    flex-flow: column;
  }
  main > .products .products-header form label {
    padding-top: 15px;
  }
  main > .product {
    padding: 0 10px;
    flex-flow: column;
  }
  main > .product .product-imgs {
    text-align: center;
    padding: 0 10px;
  }
  main > .product .product-image-text {
    display: none;
    padding: 10px 15px;
  }
  main > .product .product-image-text-small {
    display: block;
    text-align: left;
    padding: 0;
  }
  main > .product .product-imgs .product-img-large {
    width: 100%;
    height: auto;
    max-width: 350px;
  }
  main > .product .product-imgs .product-small-imgs .product-img-small {
    width: 50px;
    height: 50px;
  }
  main > .product form input[type="number"], main > .product form input[type="submit"] {
    width: 100%;
  }
  main > .product .product-wrapper {
    padding: 0;
  }
  main .cart table input[type="number"] {
    width: 40px;
  }
  main .checkout form, main .myaccount form {
    width: 100%;
  }
  main .myaccount .login-register {
    flex-flow: column;
  }
  main .myaccount .login-register .login {
    border-right: 0;
    padding: 10px;
  }
  main .myaccount .login-register .register {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  nav .navbar .nav-links{
    max-width: 100%;
  }
  .navbar .logo a{
    display: none;
  }
  main > .product .product-imgs .product-img-large {
    width: 100%;
    height: auto;
    max-width: 250px;
  }

  main .recipes table {
    width: 60%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 300px) {
  main .recipes table {
    width: 90%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
  }
}