.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 #000000;
}
.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 */
#shop-minicart-section {
  position: absolute;
  display: inline-block;
  right: 4%;
  top: 10px;
  text-align: center;
  cursor: pointer;
}
#shop-minicart {
  position: relative;
  font-size: 3em;
  text-align: center;
  z-index: 1;
}
#shop-minicart:hover {
  color: #933ba1;
}
#shop-minicart-order {
  display: block;
  margin: 17px 0 0 0;
  padding: 4px 6px;
  text-align: center;
  font-size: .8em;
  border-style: solid;
  border-width: 1px;
  border-color: #712d7c;
  border-radius: 2px;
  background-color: #712d7c;
  color: #fdfdfd;
  cursor: pointer;
}
#shop-minicart-order:hover {
  background-color: #933ba1;
}
/* Cart */
#shop-cart-section {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  padding: 10px;
  background-color: #712d7c;
  z-index: 59;
}
#shop-cart-header {
  position: absolute;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #ecd5ef;
  text-align: center;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #009cff;
}
#shop-cart-title {
  display: block;
  font-weight: bold;
  color: #712d7c;
}
#shop-cart-close {
  position: absolute;
  right: 2px;
  top: 2px;
  padding: 4px;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  color: #250f29;
  border-color: #250f29;
  border-radius: 2px;
}
#shop-cart-close:hover {
  background-color: #eeeeee;
}
#shop-cart-close:after {
  content: "\00d7";
  text-align: center;
  padding: 4px;
}
#shop-cart-content {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 56px 0 0 0;
  height: calc(100vh - 175px);
  text-align: right;
  vertical-align: top;
  width: 100%;
  background-color: #712d7c;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #009cff #712d7c;
}
#shop-cart-footer {
  position: absolute;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #ecd5ef;
  text-align: right;
}
#shop-cart-item-value {
  display: block;
  padding: 10px;
  color: #712d7c;
}
#shop-cart-order {
  display: block;
}
/* Shop - Minicart */
.s-minicart-block {
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: Roboto, Helvetica;
  font-size: .4em;
}
.s-minicart-count {
  position: absolute;
  width: 100%;
  top: 10px;
  left: 4px;
  font-size: .7em;
  color: #009cff;
}
.s-minicart-value {
  position: absolute;
  width: 100%;
  bottom: -15px;
  right: 0;
  font-size: .6em;
  color: #712d7c;
}
/* 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;
  background-color: #712d7c;
}
.s-cart-item-block:first-child {
  padding-top: 0;
}
.s-cart-item-block:last-child {
  padding-bottom: 0;
}
.s-cart-item-content {
  position: relative;
  box-sizing: border-box;
  padding: 10px 4px;
  min-height: 70px;
  background-color: #fdfdfd;
  border-radius: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  font-size: .8em;
}
.s-cart-item-picture {
  position: absolute;
  display: inline-block;
  max-width: 100px;
  max-height: 50px;
  z-index: 1;
}
.s-cart-item-picture:hover {
  max-height: 250px;
  max-width: 250px;
}
.s-cart-item-code {
  display: none;
  padding: 2px 0;
}
.s-cart-item-name {
  display: block;
  padding: 2px 10px 2px 100px;
}
.s-cart-item-sub-name {
  display: none;
  padding: 2px 0;
}
.s-cart-item-unit {
  display: none;
}
.s-cart-item-quantity {
  display: inline-block;
  padding: 2px 2px 2px 100px;
}
.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: absolute;
  display: inline-block;
  right: 10px;
  color: #712d7c;
  padding: 2px 0;
  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-add,
.s-cart-item-quantity-remove {
  display: none;
}
.s-cart-item-missing-quantity {
  display: block;
  padding: 2px 2px 2px 100px;
  color: #ff0202;
}
.s-cart-item-quantity-clear {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 2px 4px;
  cursor: pointer;
}
.s-cart-item-quantity-clear:before {
  content: "\00d7";
  color: #009cff;
}
/* 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) {
  #shop-cart-section {
    width: 40%;
  }
}
@media only screen and (max-width: 640px) {
  #shop-cart-section {
    width: 100%;
  }
}
