.loader-wrapper {
  position: fixed;
  top: 50%;
  left: 10%;
  right: 10%;
  text-align: center;
  margin-top: -128px;
  opacity: 0.1;
  z-index: 999999;
}
#header {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
#header .logotype img {
  max-width: 200px;
  max-height: 40px;
}
@media (min-width: 768px) {
  #header .logotype img {
    max-width: 250px;
    max-height: 80px;
  }
}
@media (min-width: 768px) {
  #header .logotype {
    width: 320px;
  }
}
#header .middle {
  flex-grow: 1;
}
#header .customer-service {
  align-self: center;
  text-align: end;
  line-height: 150%;
  flex-grow: 1;
}
@media (min-width: 768px) {
  #header .customer-service {
    flex-grow: 0;
    width: 320px;
    font-size: 1.25em;
  }
}
#header .customer-service .title {
  font-weight: bold;
  margin: 0;
}

#box-checkout-cart,
#box-checkout-cart .card-header,
#box-checkout-summary,
#box-checkout-summary .card-header {
  margin-top: 0;
  padding: 0;
  border: none;
}

#box-checkout-cart .row {
  margin-bottom: 0;
  gap: 7px;
}
#box-checkout-cart [class*="col-"] {
  align-self: center;
}
#box-checkout-cart .headings {
  padding: 4px 15px;
  border-bottom: 1px solid #e0e0e0;
}
#box-checkout-cart .item {
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
}
/*
#box-checkout-cart .item:nth-child(odd) {
  background: var(--table-striped-row-background-odd);
}
#box-checkout-cart .item:nth-child(even) {
  background: var(--table-striped-row-background-even);
}
*/
#box-checkout-cart .name {

}
#box-checkout-cart .btn {
  padding-left: 1em;
  padding-right: 1em;
}
#box-checkout-cart .error {
  color: #f00;
}
#box-checkout-cart .unit-price,
#box-checkout-cart .total-price {

}
#box-checkout-cart .subtotal {
  display: none;
}
#box-checkout-customer fieldset {
  border: none;
  padding: 0;
}
#box-checkout-customer button[type=submit]:not([disabled]) {
  font-weight: bold;
  color: #ff0000;
  animation: flasher 1s linear infinite;
}
#box-checkout-shipping .thumbnail,
#box-checkout-payment .thumbnail {
  padding: 0.5em;
  overflow: hidden;
}
#box-checkout-shipping .option,
#box-checkout-payment .option {
  position: relative;
  transition: all 250ms ease;
}
#box-checkout-shipping .option.btn,
#box-checkout-payment .option.btn {
  padding: 15px;
  white-space: normal;
}

#box-checkout-shipping .option.active,
#box-checkout-payment .option.active {

}
#box-checkout-shipping .option.disabled,
#box-checkout-payment .option.disabled {
  cursor: not-allowed;
}
#box-checkout-shipping .option:not(.active) .content,
#box-checkout-payment .option:not(.active) .content {
  max-height: 0;
  overflow-y: hidden;
}
#box-checkout-shipping .option .thumbnail,
#box-checkout-payment .option .thumbnail {
  padding: 0 !important;
}
#box-checkout-shipping .option .error,
#box-checkout-payment .option .error {
  color: #c00;
}
#box-checkout-shipping .option .content,
#box-checkout-payment .option .content {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: start;
  transition: all 0.25s ease;
}
#box-checkout-shipping .option .description,
#box-checkout-payment .option .description {
  margin-bottom: 1em;
}
#box-checkout-shipping .option hr,
#box-checkout-payment .option hr {
  margin: 1em 0;
  border-color: #ddd;
}
@media (min-width: 768px) {
  #box-checkout-shipping .price,
  #box-checkout-payment .price {
    position: absolute;
    display: inline-block;
    top: var(--gutter-y);
    right: 15px;
  }
}
@media (min-width: 768px) {
  [dir="rtl"] .price {
    right: auto;
    left: var(--gutter-x);
  }
}
#box-checkout-summary table {
  margin-bottom: 0;
}
#box-checkout-summary .error {
  align-self: center;
  color: #ff0000;
  text-align: center;
}
#box-checkout-summary input[type=checkbox][required]:not(:checked) {
  animation: flasher 1s linear infinite;
}


/* Customization */
#checkout #site-menu {
  position: relative;
}

#checkout h2.card-title {
  font-size: 1.1rem;
}

#box-checkout-customer .card-header a.btn-default {
  padding-left: 40px;
  background: #fff url(../images/account.svg) 10px center no-repeat;
  background-size: 24px;
}

#box-checkout-customer .card-header a.btn-default:hover,
#box-checkout-customer .card-header a.btn-default:focus {
  color: #fff;
  background-color: var(--success-button-background-color-hover);
}

#box-checkout-customer .card-header a.btn-default:hover svg,
#box-checkout-customer .card-header a.btn-default:focus svg {
  filter: invert(100%);
}

#checkout .wrapper {
  margin-bottom: 40px;
}

#checkout #box-checkout-shipping .option.btn,
#checkout #box-checkout-payment .option.btn {
  opacity: .5;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
}

#checkout #box-checkout-shipping .option.btn:hover,
#checkout #box-checkout-shipping .option.btn:focus,
#checkout #box-checkout-payment .option.btn:hover,
#checkout #box-checkout-payment .option.btn:focus {
  opacity: 1;
}

#checkout #box-checkout-shipping .option.btn.active,
#checkout #box-checkout-payment .option.btn.active {
  opacity: 1;
  box-shadow: none !important;
  background-color: #fff;
}

#box-checkout-shipping .option .thumbnail,
#box-checkout-payment .option .thumbnail {
  display: flex;
  border: none;
  align-items: center;
}

#box-checkout-shipping .option .thumbnail:before,
#box-checkout-payment .option .thumbnail:before {
  font-family: "FontAwesome";
  content: "\f1db";
  font-size: 22px;
}

#box-checkout-shipping .option.active .thumbnail:before,
#box-checkout-payment .option.active .thumbnail:before {
  content: "\f05d";	
}

#box-checkout-customer .row {
  margin-bottom: 20px;
}

#box-checkout .shipping-address {
  margin: 15px 0;
}

#box-checkout .shipping-address h3,
#box-checkout .account h3 {
  font-size: 1.05rem;
}

#box-checkout-shipping h2.title {
  margin-bottom: 10px;
}

#checkout .cart.wrapper {
  margin-top: 25px;
}

#checkout .option .title {
  color: #000;
  font-size: 1rem;
  font-weight: 100;
}

#checkout .option .name {
   color: #a5a5a5;
}

#box-checkout-cart .thumbnail {
  width: 55px;
  border: none;
  padding: 0;
}

#box-checkout-cart .input-group {
  border: none;
}

#box-checkout-cart .form-control {
  width: 50px;
  text-align: left;
  border-radius: 0;
  border: 1px solid var(--offcanvas-background-color);
}

#box-checkout-cart .input-group .input-group-text {
  padding: 10px;
  background-color: transparent;
}

#box-checkout-summary .table {
  margin-top: 10px;
  border: none;
}

#box-checkout-summary .table td {
  padding: 10px 15px;
}

#box-checkout-summary .table strong {
  font-weight: 100;
}

#box-checkout-summary .table tr:last-child strong {
  font-size: 1.15rem;
  font-weight: bold;
}

#box-checkout-summary .card-body {
  padding: 0;
}

#box-checkout-summary .comments .form-control {
  height: 80px;
}

#box-checkout-summary .confirm {
  display: block;
}

#box-checkout-summary .confirm .error {
  margin-bottom: 10px;
}

#box-checkout-summary .consent {
  margin-bottom: 20px;
}

#box-checkout-summary .consent a {
  border-bottom: 1px solid #000;
}

#box-checkout-summary .consent a:hover,
#box-checkout-summary .consent a:focus {
  color: #fe4c50;
  text-decoration: none;
  border-color: #fe4c50;
}

@media (max-width: 767px) {
  #checkout #site-menu,
  #checkout #content {
    padding: 15px;
  }
  #header {
    display: block;
	text-align: center;
  }
  #header .logotype {
    display: inline-block;
	margin-bottom: 10px;
  }
  #header .logotype img {
    max-width: 140px;
    max-height: 32px;
  }
  #header .customer-service {
	display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .customer-service .account img {
    width: 20px;
	height: 20px;
  }
  #box-checkout-customer .card-header {
    margin-bottom: 20px;
  }
  #box-checkout label {
    font-size: .9rem;
  }
}

@media (max-width: 575px) {
  #box-checkout #box-checkout-shipping img,	
  #box-checkout #box-checkout-payment img{
    display: none;
  }
}