/*
 * Fonts
 */
@font-face {
  font-family: "Martel";
  src: url('../resources/fonts/Martel/Martel-Light.ttf') format('truetype');
  font-weight: lighter;
}
@font-face {
  font-family: "Martel";
  src: url('../resources/fonts/Martel/Martel-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: "Martel";
  src: url('../resources/fonts/Martel/Martel-SemiBold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "Martel";
  src: url('../resources/fonts/Martel/Martel-Bold.ttf') format('truetype');
  font-weight: bolder;
}
@font-face {
  font-family: "Roboto";
  src: url('../resources/fonts/Roboto/Roboto-Light.ttf') format('truetype');
  font-weight: lighter;
}
@font-face {
  font-family: "Roboto";
  src: url('..//resources/fonts/Roboto/Roboto-LightItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: lighter;
}
@font-face {
  font-family: "Roboto";
  src: url('..//resources/fonts/Roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url('..//resources/fonts/Roboto/Roboto-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url('../resources/fonts/Roboto/Roboto-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url('../resources/fonts/Roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
}
.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;
}
/* Cart */
#shop-cart-section {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  padding: 10px;
  background-color: #ffffff;
  color: #dcd5cd;
  z-index: 59;
  border-left: 2px solid #dcd5cd;
}
#shop-cart-header {
  position: absolute;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  color: #6c6c6c;
  text-align: center;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #dcd5cd;
}
#shop-cart-title {
  display: block;
  font-weight: bold;
  color: #333331;
}
#shop-cart-close {
  position: absolute;
  right: 3px;
  top: 0px;
  padding: 0 3px;
  cursor: pointer;
  color: #FF3500;
  font-size: 2em;
}
#shop-cart-close:hover {
  background-color: lighten;
}
#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%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #E60000;
}
#shop-cart-footer {
  position: absolute;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  color: #6c6c6c;
  text-align: right;
}
#shop-cart-item-value {
  display: block;
  padding: 10px;
  color: #E60000;
}
#shop-cart-order-invoice {
  display: block;
}
#shop-cart-order-credit-card {
  display: block;
}
/* 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-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: 100px;
  background-color: #ffffff;
  color: #6c6c6c;
  border-radius: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  font-size: 0.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;
  z-index: 9;
}
.s-cart-item-code {
  display: none;
  padding: 2px 0;
}
.s-cart-item-name {
  display: block;
  padding: 2px 10px 2px 70px;
}
.s-cart-item-sub-name {
  display: inline-block;
  padding: 2px 0 0 70px;
}
.s-cart-item-unit {
  display: none;
}
.s-cart-item-quantity {
  display: inline-block;
  padding: 2px 2px 2px 20px;
}
.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: #E60000;
  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,
.s-cart-item-quantity-clear {
  padding: 2px 4px;
  cursor: pointer;
}
.s-cart-item-quantity-add {
  position: absolute;
  display: inline-block;
  left: 0;
  color: #E60000;
}
.s-cart-item-quantity-add:hover,
.s-cart-item-quantity-remove:hover {
  background-color: #FAF7F5;
}
.s-cart-item-quantity-add:before {
  content: "\002b";
  position: absolute;
  top: 30px;
  left: 5px;
  color: #ffffff;
  background-color: #E60000;
  padding: 1px 7px 0px 7px;
  border-radius: 2px;
}
.s-cart-item-quantity-remove {
  position: absolute;
  display: inline-block;
  left: 15px;
}
.s-cart-item-quantity-remove:before {
  content: "\02d7";
  position: absolute;
  top: 30px;
  left: 17px;
  background-color: #333331;
  color: #ffffff;
  padding: 1px 9px 0px 9px;
  border-radius: 2px;
}
.s-cart-item-quantity-clear {
  position: absolute;
  right: 5px;
  top: 5px;
}
.s-cart-item-quantity-clear:before {
  font-family: "Font awesome 6 Pro";
  content: "\f2ed";
  color: #FF3500;
}
/* 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: 1028px) {
  #shop-cart-section {
    width: 40%;
  }
  #shop-cart-footer {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 640px) {
  #shop-cart-section {
    width: 100%;
  }
}
