@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOiCnqEu92Fr1Mu51QrIzc.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOjCnqEu92Fr1Mu51TjARc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOjCnqEu92Fr1Mu51S7ABc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlvAw.ttf) format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
form input {
  display: block;
  height: 50px;
  line-height: 50px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 18px;
  box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.15);
  margin-bottom: 3px;
  border: 1px solid #858585;
  border-radius: 5px;
}
form .input-group {
  margin-bottom: 12px;
}
form button {
  display: block;
  width: 100%;
  min-height: 50px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.oldprice {
  text-decoration: line-through;
  color: #616161;
  margin-right: 3px;
}
.header {
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 2px solid darkgreen;
}
.header-top {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: .2s;
  max-height: 100px;
  padding: 10px;
  overflow: hidden;
  background: white;
}
.header-bot {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: .2s;
  max-height: 0;
  overflow: hidden;
  background: white;
}
.header.sticky .header-top {
  max-height: 0;
  padding: 0;
}
.header.sticky .header-bot {
  max-height: 100px;
  padding: 10px;
}
.header ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.header ul li {
  flex-grow: 1;
}
.header a {
  color: #fff;
  /*display: block;*/
  /*padding: 15px;*/
  /*color: #fff;*/
  /*width: 100%;*/
  /*text-align: center;*/
  /*border: 1px solid #fff;*/
  /*box-sizing: border-box;*/
  /*transition: 400ms;*/
}
.header-logo {
  flex: 0 0 auto;
  max-width: 40px;
}
.header-logo-image {
  max-width: 100%;
  display: block;
}
.header-contact {
  color: darkgreen;
  text-align: right;
  font-weight: 600;
  text-transform: uppercase;
}

.header-contact a {
  color: darkgreen;
}

.header-menu-toggler {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: darkgreen;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
  border: none;
}
.header-hamburger {
  margin-right: 10px;
}
.header-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 5px;
}
.header-hamburger span:last-child {
  margin-bottom: 0;
}
.header-menu {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(0,0,0,.15);
  z-index: -1;
  transition: .2s;
}

.header-menu ul {
  width: max-content;
  max-width: 100%;
  background-color: darkgreen;
  padding-top: 80px;
  padding-bottom: 30px;
}

.header-menu.active {
  left: 0;
}
.header-menu ul {
  display: flex;
  flex-direction: column;
}
.header-menu ul a {
  padding: 15px 30px;
  display: block;
}
.main-heading {
  text-align: center;
  /*padding-top: 100px;*/
  padding-left: 36px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FFFDE7;
  background-image: url(../img/thank-bg.png);
  background-size: cover;
  background-position: center center;
  position: relative;
  border-bottom: 2px solid darkgreen;
  z-index: 3;
}
.main-heading * {
  position: relative;
  z-index: 1;
}
.main-heading::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  list-style-position: outside;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.6);
}
.main-heading .h1 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 26px;
  font-family: Roboto, Arial, sans-serif;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  background-color: darkgreen;
  display: block;
  width: 100%;
  padding: 25px 15px;
}
.main-heading h2,
.main-heading .h2 {
  color: #2E7D32;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  font-family: Roboto, Arial, sans-serif;
  margin-bottom: 80px;
}
.main-heading .subtitle {
  font-family: Roboto, Arial, sans-serif;
  display: block;
  font-weight: 300;
  margin-bottom: 25px;
  font-size: 18px;
  color: green;
}
.main-heading .arrow-wrap {
  width: 46px;
  margin: 0 auto;
}
.products-heading {
  text-align: center;
}
.products-heading h2 {
  padding: 15px;
  color: green;
  background: transparent;
}
.content {
  padding: 15px;
  font-weight: lighter;
}
.content p {
  font-size: 16px;
  line-height: 24px;
  color: #5b5b5b;
}
.tab-content > h2 {
  padding: 15px;
  text-transform: uppercase;
  color: #fff;
  background: green;
  margin-bottom: 15px;
}
.btn {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  background-color: coral;
  margin-right: 10px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: 400ms;
}
.btn.load {
  font-size: 0;
  position: relative;
}
.btn.load::before {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  border: 2px solid #5b5b5b;
  border-top: 2px solid #fff;
  border-radius: 50%;
  z-index: 1;
  animation: spin 2s infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn:disabled {
  background-color: lightgray !important;
  color: #777;
}
.btn.add-product {
  margin-right: auto;
  flex-grow: 1;
  background-color: mediumseagreen;
}
.btn-less,
.btn-more {
  min-width: 40px;
}
.product {
  background-color: #F3F3F3;
  border-radius: 20px;
  margin-bottom: 25px;
}
.product .heading {
  position: relative;
}
.product .heading img {
  border-radius: 20px;
}
.product .heading .title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px);
  background: #2B552F;
  background-color: rgba(43, 85, 47, 0.7);
  backdrop-filter: blur(4px);
  padding: 20px 15px;
  border-radius: 20px;
  color: #fff;
}
.product .heading .title h2 {
  margin-bottom: 10px;
}
.product .heading .title span {
  font-weight: 300;
  font-style: italic;
}
.product ul {
  list-style: none;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 15px;
  color: inherit;
}
.product ul li {
  margin-bottom: 5px;
}
.product .chars {
  padding: 20px 15px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 5px;
  line-height: 1.65;
}
.product .chars .h5 {
  margin-bottom: 15px;
  color: #616161;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}
.product .price {
  flex: 0 0 100%;
  line-height: 32px;
  font-size: 24px;
  font-weight: 300;
  margin-right: 15px;
  padding-top: 15px;
}
.product .price b {
  font-weight: 500;
}
.product .order-block {
  display: flex;
  flex-direction: row;
  padding-top: 10px;
}
.product input {
  display: inline-block;
  padding: 10px 15px;
  box-sizing: border-box;
  min-width: 40px;
  margin-right: 10px;
  max-width: 50px;
  text-align: right;
}
.float-cart {
  display: block;
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  max-width: 50px;
  background-color: #FF5722;
  padding: 19px 17px 12px 13px;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 9;
}
.float-cart svg {
  color: #fff;
  fill: #fefefe;
}
.float-cart .quantity {
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  top: -3px;
  right: -3px;
  display: block;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  font-size: 15px;
}
.cart {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 0;
  box-sizing: border-box;
  padding: 15px 0;
  font-size: 16px;
  background-color: #F3F3F3;
  display: flex !important;
  flex-direction: column;
}
.cart.hidden {
  display: none !important;
}
.cart .btn {
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  color: #fff;
  margin-bottom: 15px;
  background-color: #FF5722;
  border: 0;
  outline: none;
  width: 100%;
  border-radius: 10px;
  font-size: 18px;
  transition: 400ms;
}
.cart .btn-less {
  max-width: 48%;
  flex: 0 0 50%;
  margin-right: auto;
  background-color: #64B5F6;
}
.cart .btn-more {
  max-width: 48%;
  flex: 0 0 50%;
  background-color: #FF8A65;
}
.cart .btn-order {
  margin-bottom: 0;
}
.cart .btn:active {
  background-color: #999;
}
.cart .btn.disabled {
  background-color: #808080;
}
.cart h3 {
  margin: 0;
}
.cart .heading {
  display: flex;
  flex-flow: row nowrap;
  padding: 0 15px 15px;
  border-bottom: 1px solid #ccc;
  justify-content: space-between;
  align-items: center;
}
.cart .heading h3 {
  max-width: calc(100% - 30px);
}
.cart .heading .close {
  position: static;
  right: 15px;
  top: 12px;
  color: white;
  /*width: 25px;*/
  /*height: 25px;*/
  padding: 10px;
  display: flex;
  align-items: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: darkgreen;
}
.cart .heading .close::before {
  /*width: 20px;*/
  /*height: 20px;*/
  margin-bottom: -3px;
  margin-right: 10px;
  display: inline-block;
  content: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' ?%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg height='20px' width='20px'  id='Layer_1' fill='%23fff' style='enable-background:new 0 0 32 32;' version='1.1' viewBox='0 0 32 32' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath d='M28,14H8.8l4.62-4.62C13.814,8.986,14,8.516,14,8c0-0.984-0.813-2-2-2c-0.531,0-0.994,0.193-1.38,0.58l-7.958,7.958 C2.334,14.866,2,15.271,2,16s0.279,1.08,0.646,1.447l7.974,7.973C11.006,25.807,11.469,26,12,26c1.188,0,2-1.016,2-2 c0-0.516-0.186-0.986-0.58-1.38L8.8,18H28c1.104,0,2-0.896,2-2S29.104,14,28,14z'/%3e%3c/svg%3e");
}
/*.cart .heading .close::before {*/
/*  content: '';*/
/*  display: block;*/
/*  position: absolute;*/
/*  left: 49%;*/
/*  top: 49%;*/
/*  width: 25px;*/
/*  height: 3px;*/
/*  background-color: #555;*/
/*  transform: translate(-50%, -50%) rotate(45deg);*/
/*}*/
/*.cart .heading .close::after {*/
/*  content: '';*/
/*  display: block;*/
/*  position: absolute;*/
/*  left: 49%;*/
/*  top: 49%;*/
/*  width: 25px;*/
/*  height: 3px;*/
/*  background-color: #555;*/
/*  transform: translate(-50%, -50%) rotate(-45deg);*/
/*}*/
.cart .products {
  padding: 10px 15px;
  overflow-y: auto;
  max-height: calc(100% - 70px);
}
.cart .item {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 10px;
  border: none;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.cart .item:last-child {
  margin-bottom: 0;
}
.cart .item .left-col {
  flex: 0 0 30%;
  max-width: 115px;
}
.cart .item .right-col {
  padding-left: 10px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.cart .item .right-col .input-group {
  display: flex;
  flex-flow: row wrap;
}
.cart .item .right-col label {
  width: 100%;
}
.cart .item .right-col input {
  padding: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  margin: 0 8px;
  font-size: 18px;
  text-align: center;
  background-color: #f8f8f8;
}
.cart .item .right-col .less,
.cart .item .right-col .more {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0;
}
.cart .item .right-col .remove {
  position: absolute;
  width: 15px;
  height: 15px;
  padding: 0;
  right: 5px;
  top: 3px;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 0;
  z-index: 9;
}
.cart .item .right-col .remove::before {
  content: '';
  display: block;
  position: absolute;
  left: 49%;
  top: 49%;
  width: 20px;
  height: 2px;
  background-color: #b0b0b0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.cart .item .right-col .remove::after {
  content: '';
  display: block;
  position: absolute;
  left: 49%;
  top: 49%;
  width: 20px;
  height: 2px;
  background-color: #b0b0b0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cart .item .price {
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 7px;
  color: #999;
}
.cart .item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #616161;
}
.cart .footer {
  margin-top: auto;
  padding: 15px 15px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #ccc;
}
.cart .footer .total-price {
  font-size: 24px;
  font-weight: bold;
  color: #555;
  padding: 6px 15px;
}
.cart .footer .btn {
  width: auto;
  height: auto;
}
.cart .footer .clear-cart {
  width: 100%;
  text-align: center;
  padding-top: 10px;
}
.cart .footer .clear-cart .clear {
  display: inline;
  text-align: center;
  color: blue;
  background-color: transparent;
  border: none;
  outline: none;
  text-decoration: underline;
}
.order-section {
  position: fixed;
  top: 50%;
  left: 10px;
  border-radius: 8px;
  width: calc(100% - 20px);
  height: auto;
  padding: 50px 30px;
  box-sizing: border-box;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
  z-index: 99;
  display: none;
}
.order-section .close {
  position: absolute;
  right: 15px;
  top: 20px;
  font-size: 0;
  width: 25px;
  height: 25px;
  display: block;
}
.order-section .close::before {
  content: '';
  display: block;
  position: absolute;
  left: 49%;
  top: 49%;
  width: 25px;
  height: 3px;
  background-color: #555;
  transform: translate(-50%, -50%) rotate(45deg);
}
.order-section .close::after {
  content: '';
  display: block;
  position: absolute;
  left: 49%;
  top: 49%;
  width: 25px;
  height: 3px;
  background-color: #555;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.order-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #555;
}
.cart-alert {
  position: fixed;
  width: 200px;
  bottom: calc(50% - 40px);
  right: calc(50% - 100px);
  box-sizing: border-box;
  padding: 30px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: white;
  text-align: center;
  /*transform: translate(-50%, -50%);*/
  transform-origin: right bottom;
  z-index: 99;
  display: none;
  opacity: 0;
}

.cart-alert.animate {
  display: block;
  opacity: 1;
  animation: ease-in-out toCart 1s 1;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.float-buttons {
  position: sticky;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 15px 15px 50px;
  box-sizing: border-box;
  background-color: #fff;
  border-top: 2px solid darkgreen;
  z-index: 6;
  gap: 15px;
  transform: translateY(100%);
  transition: .2s;
}

.float-buttons.show {
  transform: translateY(0);
}

.float-buttons .btn {
  width: 100%;
  font-size: 20px;
}

.category-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 36px;
  height: 100%;
  max-height: 100vh;
  background-color: darkgreen;
  z-index: 9;
  padding: 60px 0 0;
}

.category-nav-list {
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: space-around;
}

.category-nav-list li {
  margin-bottom: 0;
  flex: 1 1 auto;
  max-height: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-nav-list a {
  /*transform: rotate(90deg);*/
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  transition: 400ms;
  text-align: center;
  display: block;
  height: 100%;
}

.category-nav-list a.active {
  background-color: white;
  color: darkgreen;
}

section.products {
  padding-left: 36px;
}

@keyframes toCart {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
    bottom: 40px;
    right: 40px;
  }
}