.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 */
#reift-minicart-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
#reift-minicart {
  position: relative;
  font-size: 3em;
  text-align: center;
  z-index: 1;
}
#reift-minicart:hover {
  color: #367cbd;
}
#reift-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: #2b6295;
  border-radius: 2px;
  background-color: #2b6295;
  color: #fdfdfd;
  cursor: pointer;
}
#reift-minicart-order:hover {
  background-color: #367cbd;
}
/* Cart */
#reift-cart-section {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #2b6295;
  border-style: none none none solid;
  border-width: 2px;
  border-color: #e9eff4;
  z-index: 59;
}
#reift-cart-header {
  padding: 20px;
  display: flex;
  flex-direction: row;
  background-color: #e9eff4;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #ffbe02;
}
#reift-cart-title {
  font-weight: bold;
  color: #2b6295;
}
#reift-cart-close {
  position: absolute;
  right: 2px;
  top: 2px;
  padding: 4px;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  color: #20496f;
  border-color: #20496f;
  border-radius: 2px;
}
#reift-cart-close:hover {
  background-color: #eeeeee;
}
#reift-cart-close:after {
  content: "\00d7";
  text-align: center;
  padding: 4px;
}
#reift-cart-content {
  padding: 5px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 175px);
  min-width: 300px;
  background-color: #2b6295;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffbe02 #2b6295;
}
#reift-cart-footer {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #e9eff4;
}
.reift-cart-button {
  flex-grow: 1;
}
#reift-cart-item-value {
  padding: 10px;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: #2b6295;
  font-weight: bold;
}
#reift-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;
}
.s-minicart-count {
  position: absolute;
  width: 100%;
  top: 10px;
  left: 4px;
  font-size: 0.7em;
  color: #ff0202;
}
.s-minicart-value {
  position: absolute;
  width: 100%;
  bottom: -15px;
  right: 0;
  font-size: 0.6em;
  color: #2b6295;
}
/* Shop - cart */
#reift-cart {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s-cart-item-block {
  display: flex;
  flex-direction: column;
  text-align: left;
  background-color: #2b6295;
}
.s-cart-item-content {
  position: relative;
  padding: 10px 4px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: #fdfdfd;
  border-radius: 1px;
  font-size: 0.8em;
}
.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: #2b6295;
}
.s-cart-item-unit {
  display: none;
}
.s-cart-item-discount {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 8px;
  background-color: #ffbe02;
  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;
  color: #2b6295;
  background-color: #fdfdfd;
  z-index: 1;
}
.s-cart-item-price::before {
  content: "\00d7";
  padding: 0 2px 0 0;
}
.s-cart-item-initial-price {
  color: grey;
  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: #95b0ca;
  color: #fdfdfd;
  border-radius: 4px;
  text-align: center;
}
.s-cart-item-quantity-add:hover,
.s-cart-item-quantity-remove:hover {
  background-color: #6089af;
}
.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: "\00d7";
  color: #ff0202;
}
/* 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: 900px) {
  /* Minicart */
  #reift-minicart-section {
    flex-direction: row;
    align-items: start;
    gap: 20px;
    position: absolute;
    top: 20px;
    right: 4%;
  }
  #reift-cart-section {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  #reift-cart-section {
    width: 100%;
  }
}
