.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) 0 0 5px;
}
.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 */
#qws-minicart-section {
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d5d5d5;
}
#qws-minicart {
  position: relative;
  top: 7px;
  padding: 0 40px;
  font-size: 2em;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}
#qws-minicart::before {
  font-size: 0.8em;
}
#qws-minicart:hover {
  color: #bc966f;
}
#qws-minicart-order {
  display: none;
}
/* Cart */
#qws-cart-section {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
  z-index: 59;
  box-shadow: 0 -5px 10px #00000024;
}
#qws-cart-header {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #A97D4F;
}
#qws-cart-title {
  font-weight: bold;
  color: black;
}
#qws-cart-close {
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  color: #634a2f;
  border-color: #634a2f;
  border-radius: 2px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#qws-cart-close:hover {
  background-color: #eeeeee;
}
#qws-cart-close:after {
  content: "\00d7";
  text-align: center;
  padding: 4px;
}
#qws-cart-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 175px);
  min-width: 300px;
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 150px;
}
#qws-cart-footer {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  text-align: right;
  border-top: 1px solid #A97D4F;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: white;
  z-index: 10;
}
.qws-cart-button {
  flex-grow: 1;
}
#qws-cart-item-value {
  padding: 10px;
  color: #A97D4F;
}
#qws-cart-button-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
/* Shop - Minicart */
.s-minicart-block {
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: Roboto, Helvetica;
  font-size: 0.4em;
  color: black;
}
.s-minicart-count {
  position: absolute;
  top: -22px;
  left: 50%;
  font-size: 0.9em;
  min-width: 20px;
  height: 20px;
  background: #A97D4F;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
}
/* Shop - cart */
.s-cart-item-block {
  position: relative;
  display: table;
  box-sizing: border-box;
  padding: 2px 0;
  width: 100%;
  vertical-align: top;
  text-align: left;
}
.s-cart-item-content {
  position: relative;
  padding: 10px 4px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: #fdfdfd;
  border-radius: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 5px;
  font-size: 0.8em;
  min-height: 130px;
}
.s-cart-item-picture-container {
  min-height: 100px;
  width: 100px;
}
.s-cart-item-picture {
  max-height: 200px;
  max-width: 100px;
}
.s-cart-item-description-container {
  width: 50%;
  color: black;
}
.s-cart-item-sub-name {
  display: none;
}
.s-cart-item-discount {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 8px;
  background-color: #E20612;
  color: #fdfdfd;
  transform: rotate(-5deg);
  font-size: 0.9em;
}
.s-cart-item-discount-unset {
  display: none;
}
.s-cart-item-discount-set {
  display: flex;
  flex-direction: row;
}
.s-cart-item-quantity-price-block {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 2px;
  flex-direction: row;
  background-color: #fdfdfd;
  z-index: 1;
}
.s-cart-item-price::before {
  content: "\00d7";
  padding: 0 2px 0 0;
}
.s-cart-item-initial-price {
  text-decoration: line-through;
}
.s-cart-item-total-block {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  font-weight: bold;
}
.s-cart-item-quantity-clear {
  padding: 2px 4px;
  cursor: pointer;
}
.s-cart-item-quantity-button-block {
  position: absolute;
  left: 110px;
  bottom: 25px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.s-cart-item-quantity-add,
.s-cart-item-quantity-remove {
  padding: 0;
  width: 16px;
  cursor: pointer;
  background-color: #A97D4F;
  color: #fdfdfd;
  text-align: center;
}
.s-cart-item-quantity-add:hover,
.s-cart-item-quantity-remove:hover {
  background-color: #ccb092;
}
.s-cart-item-quantity-add:before {
  content: "\002b";
}
.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: "\f2ed";
  font-family: "Font awesome 6 Pro";
  color: #A97D4F;
}
/* Cart value */
.s-cart-value-currency {
  display: inline-block;
}
.s-cart-value {
  display: inline-block;
  padding: 0 0 0 4px;
}
@media only screen and (max-width: 950px) {
  #qws-minicart-section {
    flex-direction: row;
    align-items: start;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 4%;
  }
}
@media only screen and (max-width: 900px) {
  #qws-cart-section {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  #qws-cart-section {
    width: 100%;
  }
}
