.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
/* Minicart */
#ehl-minicart-section {
  text-align: center;
  cursor: pointer;
  font-family: "Inter";
  padding-top: 5px;
  padding-right: 50px;
}
#ehl-minicart {
  position: relative;
  top: 5px;
  font-size: 0.8em;
  text-align: center;
  z-index: 1;
}
#ehl-minicart-order {
  display: block;
  margin: 17px 0 0 0;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.8em;
  border-style: solid;
  border-width: 1px;
  border-color: #333333;
  border-radius: 2px;
  background-color: #fcf3df;
  color: #fdfdfd;
  cursor: pointer;
}
#ehl-minicart-order:hover {
  background-color: #4d4d4d;
}
/* Cart */
#ehl-cart-section {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fcf3df;
  z-index: 999;
  font-family: "Inter";
  padding: 0 10px;
}
#ehl-cart-header {
  padding: 20px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #333333;
  height: 39px;
}
#ehl-cart-title {
  font-weight: bold;
  color: #333333;
}
#ehl-cart-close {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 4px;
  cursor: pointer;
  font-size: 1.5em;
}
#ehl-cart-close:hover {
  background-color: #f4f4f4;
}
#ehl-cart-close:after {
  content: "\00d7";
  text-align: center;
  padding: 4px;
}
#ehl-cart-content {
  padding: 5px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 175px);
  min-width: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #004C3B #333333;
}
#ehl-cart-footer {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  text-align: right;
}
.ehl-cart-button {
  flex-grow: 1;
}
#ehl-cart-item-value {
  padding: 10px;
  color: #333333;
}
#ehl-cart-button-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: #004C3B;
  color: #fdfdfd;
}
#ehl-cart-button-block:hover {
  background-color: #007f63;
}
/* Shop - Minicart */
.s-minicart-block {
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Inter";
  font-size: 0.6em;
  font-weight: bold;
}
.s-minicart-count {
  position: absolute;
  width: 100%;
  top: -10px;
  left: 1px;
  color: #ff0202;
}
.s-minicart-value {
  position: absolute;
  width: 100%;
  bottom: -15px;
  right: 0;
  color: #333333;
}
/* Shop - cart */
.s-cart-item-block {
  padding-bottom: 10px;
}
.s-cart-item-block:first-child {
  padding-top: 0;
}
.s-cart-item-block:last-child {
  padding-bottom: 0;
}
.s-cart-item-content {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 10px;
  background-color: #fefaf0;
  border-radius: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  font-size: 0.7em;
  gap: 20px;
  cursor: pointer;
  min-height: 170px;
  align-items: start;
}
.s-cart-item-picture-container {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
}
.s-cart-item-picture-container img {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.s-cart-item-picture {
  max-height: 200px;
  max-width: 100px;
}
.s-cart-item-picture-title {
  font-family: "FoeDidotModern";
  position: absolute;
  text-align: center;
  font-size: 0.8em;
  width: 80%;
  font-weight: bold;
}
.s-cart-item-description-container {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0 0 0;
  width: 50%;
  color: #333333;
}
.s-cart-item-code {
  display: block;
  padding: 2px 0;
}
.s-cart-item-name {
  display: block;
  padding: 2px 0;
}
.s-cart-item-sub-name {
  display: block;
  padding: 2px 0;
}
.s-cart-item-unit {
  display: none;
}
.s-cart-item-quantity-price-block {
  position: absolute;
  display: block;
  right: 10px;
  bottom: 10px;
  color: #333333;
  z-index: 1;
}
.s-cart-item-quantity {
  display: inline-block;
  padding: 2px 2px 2px 30px;
}
.s-cart-item-price {
  display: inline-block;
  padding: 2px 0;
}
.s-cart-item-price::before {
  content: "\00d7";
  padding: 0 2px 0 0;
}
.s-cart-item-value-currency {
  display: inline-block;
}
.s-cart-item-value {
  display: inline-block;
  padding: 0 0 0 4px;
}
.s-cart-item-total-block {
  position: relative;
  display: inline-block;
  padding: 2px 0 2px 10px;
  font-weight: bold;
}
.s-cart-item-total-currency {
  display: inline-block;
}
.s-cart-item-total {
  display: inline-block;
  padding: 0 0 0 4px;
}
.s-cart-item-quantity-clear {
  padding: 2px 4px;
  cursor: pointer;
}
.s-cart-item-quantity-button-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 35px;
}
.s-cart-item-quantity-add,
.s-cart-item-quantity-remove {
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #26CC7D;
  color: #26CC7D;
}
.s-cart-item-quantity-add:hover,
.s-cart-item-quantity-remove:hover {
  color: #fdfdfd;
  background-color: #26CC7D;
}
.s-cart-item-quantity-add {
  display: inline-block;
  left: 130px;
  bottom: 25px;
  font-size: 1.3em;
  line-height: 18px;
}
.s-cart-item-quantity-add:before {
  content: "\002b";
}
.s-cart-item-quantity-remove {
  display: inline-block;
  left: 160px;
  bottom: 25px;
  font-size: 1.5em;
  line-height: 0.6;
}
.s-cart-item-quantity-remove:before {
  content: "\02d7";
}
.s-cart-item-quantity-clear {
  position: absolute;
  right: 5px;
  top: 5px;
}
.s-cart-item-quantity-clear:before {
  content: "\00d7";
  color: #ff0202;
}
/* Cart value */
.s-cart-value-currency {
  display: inline-block;
}
.s-cart-value {
  display: inline-block;
  padding: 0 0 0 4px;
}
#ehl-cart-save {
  display: none;
}
@media only screen and (max-width: 900px) {
  #ehl-cart-section {
    width: 50%;
  }
  #ehl-minicart-section {
    padding-right: 10px;
    padding-top: 0;
  }
  .s-cart-item-block {
    padding: 5px 0 5px 15px;
  }
}
@media only screen and (max-width: 640px) {
  #ehl-cart-section {
    width: 100vw;
    height: 90vh;
    padding: 0 10px;
    border-bottom: 1px solid #f4f4f4;
  }
}
