.article.shoppingCart-wrap {
  /* customer tabs */
  /* test environment buttons */
}
.article.shoppingCart-wrap .shop-step-bar-wrap {
  --doneColor: var(--defaultBlue);
  --activeColor: #064180;
  --inactiveColor: var(--defaultDarkGrey);
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  counter-reset: item;
  list-style-type: none;
  font-weight: bold;
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step {
  --circleSize: 48px;
  --lineThickness: 2px;
  color: var(--inactiveColor);
  text-align: center;
  display: block;
  position: relative;
  line-height: 40px;
  float: left;
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step::after {
  border-top: var(--lineThickness) solid var(--inactiveColor);
  position: absolute;
  content: "";
  top: calc((var(--circleSize) + var(--lineThickness)) / 2);
  right: calc(-50% + var(--circleSize) * 1.5);
  left: calc(50% + var(--circleSize) * 1.5);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step:last-child::after {
  border: none;
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.done {
  color: var(--doneColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.done::after {
  border-color: var(--doneColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.done .circle::before {
  content: "\f00c";
  font-family: var(--fa-family-classic);
  font-weight: 300;
  background-color: var(--doneColor);
  border: 3px solid var(--doneColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.done > a {
  color: var(--doneColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step .circle {
  display: block;
  margin: auto;
  width: var(--circleSize);
  height: var(--circleSize);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step .circle::before {
  content: counter(item) "  ";
  counter-increment: item;
  border-radius: var(--circleSize);
  display: block;
  width: var(--circleSize);
  height: var(--circleSize);
  color: var(--defaultWhite);
  margin: auto;
  text-align: center;
  line-height: calc(var(--circleSize) - 3px);
  border: 3px solid var(--inactiveColor);
  color: var(--inactiveColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.done .circle::before, .article.shoppingCart-wrap .shop-step-bar-wrap > .step.active .circle::before {
  color: var(--defaultWhite);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step > a {
  color: var(--inactiveColor);
  display: inline-block;
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.active {
  color: var(--activeColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.active > a {
  color: var(--activeColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap > .step.active .circle::before {
  background-color: var(--activeColor);
  border-color: var(--activeColor);
}
.article.shoppingCart-wrap .shop-step-bar-wrap.three-step > .step {
  width: 33.3333333333%;
}
.article.shoppingCart-wrap .shop-step-bar-wrap.four-step > .step {
  width: 25%;
}
.article.shoppingCart-wrap .black {
  color: var(--defaultBlack);
}
.article.shoppingCart-wrap .blue {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap {
  float: none;
  width: 100%;
  padding: 40px 0;
  margin: 0px auto;
  max-width: 1200px;
  /* back buttons */
}
.article.shoppingCart-wrap .step-wrap.flex {
  display: flex;
}
.article.shoppingCart-wrap .step-wrap.view .title {
  font-size: var(--defaultFontSize);
  color: var(--defaultBlack);
  font-weight: 500;
  padding-top: 25px;
  padding-bottom: 5px;
}
.article.shoppingCart-wrap .step-wrap.view .price-table {
  font-size: var(--smallerFontSize);
  line-height: 24px;
  padding: 20px;
  border: 1px solid var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap.view .price-table .price-row {
  padding-bottom: 5px;
}
.article.shoppingCart-wrap .step-wrap.view .price-table .price-row.last-child {
  padding-top: 5px;
  padding-bottom: 0px;
}
.article.shoppingCart-wrap .step-wrap.view .price-table .price-row .label.large,
.article.shoppingCart-wrap .step-wrap.view .price-table .price-row .value.large {
  font-size: var(--defaultFontSize);
}
.article.shoppingCart-wrap .step-wrap.view .basket-title {
  float: left;
  display: block;
  width: 100%;
  font-size: var(--smallerFontSize);
  font-weight: 500;
  border: 1px solid var(--defaultDarkGrey);
  border-bottom: none;
  padding: 20px 20px 10px 20px;
}
.article.shoppingCart-wrap .step-wrap.view .product-table {
  float: left;
  width: 100%;
  margin: 0px;
}
.article.shoppingCart-wrap .step-wrap.view .product-table > .product {
  border: none;
  border-left: 1px solid var(--defaultDarkGrey);
  border-right: 1px solid var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap.view .product-table > .product .title {
  font-size: var(--smallerFontSize);
  padding-top: 0px;
  padding-bottom: 0px;
}
.article.shoppingCart-wrap .step-wrap.view .product-table > .product .title > a {
  line-height: 16px;
}
.article.shoppingCart-wrap .step-wrap.view .product-table > .product .product-options-wrapper > .options-holder {
  font-size: 12px;
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 100px;
}
.article.shoppingCart-wrap .step-wrap.view .comments {
  float: left;
  display: block;
  width: 100%;
  font-size: var(--smallerFontSize);
  padding: 20px;
  border-left: 1px solid var(--defaultDarkGrey);
  border-right: 1px solid var(--defaultDarkGrey);
  border-bottom: 1px solid var(--defaultDarkGrey);
  font-style: italic;
}
.article.shoppingCart-wrap .step-wrap.view .comments .comments-title {
  font-size: var(--smallerFontSize);
  font-weight: 500;
  font-style: normal;
}
.article.shoppingCart-wrap .step-wrap.view .step-back {
  display: block;
  width: 100%;
  border: 1px solid var(--defaultDarkGrey);
  border-top: none;
  text-align: center;
  line-height: 48px;
}
.article.shoppingCart-wrap .step-wrap.view .step-back a {
  color: var(--defaultBlue);
  font-size: var(--smallerFontSize);
  font-weight: 400;
  text-decoration: none;
  transition: color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap.view .step-back a:hover {
  color: var(--defaultBlack);
}
.article.shoppingCart-wrap .step-wrap.view .step-back a::before {
  display: none;
}
.article.shoppingCart-wrap .step-wrap.view .buttons {
  float: left;
  width: 100%;
  padding-top: 30px;
}
.article.shoppingCart-wrap .step-wrap.view .buttons.mobile {
  display: none;
}
.article.shoppingCart-wrap .step-wrap.view .buttons .prev-step {
  float: left;
}
.article.shoppingCart-wrap .step-wrap.view .buttons .next-step {
  min-width: 265px;
}
.article.shoppingCart-wrap .step-wrap.view2 {
  max-width: 1000px;
  margin: 0 auto;
  float: none;
}
.article.shoppingCart-wrap .step-wrap .article.widget-default-login {
  margin: 0 auto;
  float: none;
}
.article.shoppingCart-wrap .step-wrap .article.widget-default-login .form-holder > form {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .article.widget-default-login .form-holder > form::after {
  inset: 0;
}
.article.shoppingCart-wrap .step-wrap .accounts {
  text-align: center;
}
.article.shoppingCart-wrap .step-wrap .accounts button {
  margin-top: 10px;
}
.article.shoppingCart-wrap .step-wrap h1 {
  font-size: 20px;
  text-align: left;
  margin-bottom: 20px;
  min-height: 30px;
}
.article.shoppingCart-wrap .step-wrap h1 > span {
  font-size: var(--defaultFontSize);
  font-weight: 400;
  display: inline-block;
  padding: 0 8px;
  color: #a4a4a4;
}
.article.shoppingCart-wrap .step-wrap.step2 h1.login {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .message {
  position: relative;
  margin-bottom: 30px;
}
.article.shoppingCart-wrap .step-wrap .message.error {
  margin-top: 25px;
  margin-bottom: 30px;
}
.article.shoppingCart-wrap .step-wrap .message .message-content {
  flex: 1;
}
.article.shoppingCart-wrap .step-wrap .message .close {
  font-size: var(--smallerFontSize);
  line-height: var(--defaultLineHeight);
  cursor: pointer;
}
.article.shoppingCart-wrap .step-wrap .shop-message {
  text-align: center;
}
.article.shoppingCart-wrap .step-wrap .shop-message > i {
  font-size: 88px;
  color: var(--defaultTextColor);
  margin-bottom: 22px;
  margin-top: 10px;
}
.article.shoppingCart-wrap .step-wrap .shop-message > span {
  display: block;
}
.article.shoppingCart-wrap .step-wrap .shop-message > a {
  background-color: var(--defaultBlue);
  text-decoration: none;
  color: var(--defaultWhite);
  display: inline-block;
  margin-top: 43px;
  line-height: 40px;
  width: 100%;
  max-width: 326px;
  text-align: center;
}
.article.shoppingCart-wrap .step-wrap .shop-message > a:hover {
  background-color: #064180;
}
.article.shoppingCart-wrap .step-wrap .product-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product {
  width: 100%;
  height: 100px;
  border-bottom: solid 1px var(--defaultDarkGrey);
  display: flex;
  align-items: stretch;
}
.article.shoppingCart-wrap .step-wrap .product-table .product:nth-child(2) {
  border-top: solid 1px var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .product-table .product.removing {
  opacity: 0.4;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .image {
  padding: 5px 10px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product > div {
  float: none;
  display: flex;
  align-items: center;
}
.article.shoppingCart-wrap .step-wrap .product-table .product > div .volume-discount {
  padding: 5px 10px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product > div .title {
  padding: 5px 10px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product > div .title > div {
  line-height: 20px;
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .info {
  flex-direction: column;
  align-items: flex-start;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .info .title {
  color: var(--defaultBlack);
  transition: color var(--shortTransition);
  line-height: 32px;
  font-weight: 500;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .info .title:hover {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .product-table .product .price-wrap {
  flex-direction: column;
  text-align: right;
  align-items: end;
  justify-content: center;
  text-align: right;
  padding-right: 20px;
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .product-table .product .price-wrap .old-price {
  padding-right: 5px;
  font-size: 13px;
  text-decoration: line-through;
  color: #a4a4a4;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .price-wrap > .actions {
  text-align: right;
  font-size: 19px;
  padding-bottom: 5px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .price-wrap > .actions > * {
  display: inline-block;
  cursor: pointer;
  transition: color var(--shortTransition);
  color: #a4a4a4;
  padding: 5px;
  background: none;
  border: none;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .price-wrap > .actions > * :hover {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .product-table .product .price-wrap > .actions .delete-wrap {
  padding-right: 0;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .unit-price {
  display: inline-block;
  padding-left: 20px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .unit-price > span {
  font-size: 13px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .unit-price > i {
  display: none;
  text-align: center;
  color: var(--defaultTextColor);
  width: 35px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .unit-price > i[data-active] {
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper {
  display: inline-block;
  color: var(--defaultBlack);
  position: relative;
  text-align: center;
  width: 140px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper > span {
  position: absolute;
  width: 35px;
  top: 0;
  line-height: 40px;
  z-index: 2;
  cursor: pointer;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper > .plus {
  right: 0;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper > .plus::before {
  font-family: var(--fa-family-classic);
  font-weight: 300;
  color: #8e8e8e;
  content: "\f067";
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper > .minus {
  left: 0;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper > .minus::before {
  font-family: var(--fa-family-classic);
  font-weight: 300;
  color: #8e8e8e;
  content: "\f068";
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper > input {
  border: none;
  -webkit-appearance: none;
  height: 40px;
  overflow: hidden;
  padding: 8px 35px;
  background: none;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1px solid var(--defaultDarkGrey);
  background-color: var(--defaultWhite);
  overflow: hidden;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .amount > .input-wrapper.input-error input {
  border: 1px solid #ff0000;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .image {
  padding: 15px 10px;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .image a {
  display: block;
  height: 100%;
  width: 100%;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .image img {
  width: 100%;
  height: 100%;
  display: block;
  font-size: var(--defaultFontSize);
  line-height: var(--defaultLineHeight);
  object-fit: contain;
}
.article.shoppingCart-wrap .step-wrap .product-table .product .select-clone-value {
  height: 37px;
  overflow: hidden;
}
.article.shoppingCart-wrap .step-wrap .product-table .price-table > .price-row > .value.large,
.article.shoppingCart-wrap .step-wrap .product-table .product > .price-wrap > .subtotal {
  font-weight: bold;
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous {
  color: var(--defaultWhite);
  border-radius: 3px;
  padding: 10px;
  display: inline-block;
  min-width: 230px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous:hover {
  background-color: #5e5e5e;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form {
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section {
  padding: 25px;
  margin-bottom: 20px;
  transition: opacity var(--shortTransition);
  border: 1px solid var(--defaultDarkGrey);
  background-color: var(--defaultWhite);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .user-warning {
  background-color: #df6d6d;
  color: var(--defaultWhite);
  display: none;
  line-height: 24px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.disabled * {
  cursor: not-allowed;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap {
  background-color: var(--defaultWhite);
  margin-top: 10px;
  display: none;
  padding: 15px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap.active {
  display: block;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap input {
  width: 100%;
  border: solid 1px var(--defaultDarkGrey);
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .input-error input {
  border-color: #ff0000;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .select-clone-value {
  background-color: var(--defaultWhite);
  border: solid 1px var(--defaultDarkGrey);
  padding: 8px 40px 7px 10px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap input:disabled {
  background-color: var(--defaultDarkGrey);
  color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row {
  width: 100%;
  padding: 0px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap > div > .postcode-check-success,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap > div > .field-error-icon {
  display: none;
  position: absolute;
  top: 35px;
  right: 35px;
  color: #c95456;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap > div > .postcode-check-success {
  color: #51a455;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap > div > label {
  padding-bottom: 5px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap > div > label.black {
  color: var(--defaultBlack);
  font-weight: 400;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap > div > input {
  width: 100%;
  border: solid 1px var(--defaultDarkGrey);
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap .form-row > .input-wrap.input-error > div > input {
  border-color: #ff0000;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap textarea {
  width: 100%;
  border: solid 1px var(--defaultDarkGrey);
  padding: 10px;
  resize: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .select-clone-value.disabled {
  background-color: var(--defaultDarkGrey);
  color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address {
  margin-bottom: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address-alt {
  padding: 0;
  background-color: inherit;
  margin-top: 0;
  border: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address-alt:has(.alternative-wrap.active) {
  border-top: 1px solid var(--defaultWhite);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address-alt > .form-row {
  padding: 0;
  border: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address-alt .alternative-wrap {
  display: block;
  max-height: 0;
  overflow-y: hidden;
  transition: var(--shortTransition);
  transition-property: border-color, max-height;
  padding: 0 25px;
  margin-top: 0;
  border: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address-alt .alternative-wrap .form-row.streetAndCity {
  padding-bottom: 25px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address-alt .alternative-wrap.active {
  border: 1px solid var(--defaultDarkGrey);
  border-top: 1px solid var(--defaultWhite);
  max-height: 1000px;
  margin-top: -1px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .form-row > .input-wrap {
  margin: 0px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.persona > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address > .alternative-wrap > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.persona > .alternative-wrap > .form-row {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address > .alternative-wrap > .form-row, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.persona > .alternative-wrap > .form-row {
  margin-top: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row.newsletter-subscription {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row > div {
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row .input-wrap {
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row .input-wrap > div > .toggle-pass {
  position: absolute;
  right: 10px;
  bottom: 7px;
  z-index: 1;
  color: #a0a0a0;
  font-weight: 300;
  cursor: pointer;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address > .alternative-wrap > .form-row > .input-wrap, .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.persona > .alternative-wrap > .form-row > .input-wrap {
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row > .input-wrap:nth-last-child(2), .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.address > .alternative-wrap > .form-row > .input-wrap:nth-last-child(2), .article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.persona > .alternative-wrap > .form-row > .input-wrap:nth-last-child(2) {
  margin-bottom: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section.register > .alternative-wrap > .form-row > .input-wrap.no-padding {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .alternative-wrap > .form-row > .input-wrap input:focus,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .form-row > .input-wrap input:focus,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .form-row > .alternative-wrap input:focus {
  outline: solid 1px #064180;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form > form > section .form-row > .input-wrap .error-message {
  color: var(--defaultRed);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row {
  padding: 0 25px;
  width: 100%;
  padding-bottom: 0px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap.radio {
  padding-right: 25px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap.no-padding > div {
  padding-right: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div {
  padding-right: 25px;
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap .radiobutton-clone {
  padding-top: 16px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap.no-padding > div {
  padding-right: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row label {
  display: block;
  padding-bottom: 5px;
  color: #595959;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row label.black {
  color: var(--defaultBlack);
  font-weight: 400;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .field-type-checkbox label {
  padding-bottom: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > label > span.mark,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .alternative-wrap label > span.mark {
  font-size: 10px;
  line-height: 10px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > label[for] {
  cursor: pointer;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > .select-wrap {
  width: 100%;
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > .select-clone-value {
  background-color: var(--defaultWhite);
  border: solid 1px var(--defaultDarkGrey);
  padding: 8px 40px 7px 10px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap.input-error > div > input {
  border-color: #ff0000;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > input {
  width: 100%;
  border: solid 1px var(--defaultDarkGrey);
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > input:disabled,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > textarea:disabled {
  background-color: var(--defaultLightGrey);
  color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > input:disabled ~ label[for] {
  background-color: var(--defaultLightGrey);
  color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > .postcode-check-success,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > .field-error-icon {
  display: none;
  position: absolute;
  top: 35px;
  right: 35px;
  color: #c95456;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > .postcode-check-success {
  color: #51a455;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap > div > textarea {
  width: 100%;
  border: solid 1px var(--defaultDarkGrey);
  padding: 10px;
  resize: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .field-error-icon {
  height: 30px;
  position: absolute;
  right: 30px;
  bottom: 4px;
  width: 30px;
  text-align: center;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .field-error-icon > i {
  color: #c95456;
  text-align: center;
  vertical-align: -3px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .alternative-wrap input[name=alternative_city] ~ .field-error-icon,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap.no-padding .field-error-icon {
  right: 7px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .alternative-wrap > .form-row > .input-wrap.no-padding,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row .input-wrap.no-padding {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .alternative-wrap > .form-row > .input-wrap > div > .checkbox-clone ~ label,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form .form-row > .input-wrap > div > .checkbox-clone ~ label {
  margin-left: 25px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form h2 {
  margin-top: 40px;
  font-size: var(--biggerFontSize);
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form h2.alt {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form h2.alt.active {
  display: block;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form h2.blue {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > .form h3 {
  font-size: var(--biggerFontSize);
  margin-top: 15px;
  margin-bottom: 30px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap .hide.message {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .previous,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > .add-another-address {
  color: var(--defaultWhite);
  border-radius: 3px;
  padding: 10px;
  display: inline-block;
  min-width: 230px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--shortTransition);
  background-color: #5e5e5e;
}
.article.shoppingCart-wrap .step-wrap .comments-wrap,
.article.shoppingCart-wrap .step-wrap .discount-wrap {
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .comments-wrap {
  padding-left: 0;
}
.article.shoppingCart-wrap .step-wrap .step-back {
  line-height: 40px;
  display: inline-block;
  clear: left;
}
.article.shoppingCart-wrap .step-wrap .next-step {
  line-height: 40px;
  display: inline-block;
  clear: left;
  background-color: var(--defaultBlue);
  float: right;
  text-align: center;
  transition: background-color var(--shortTransition);
  cursor: pointer;
  clear: right;
  width: 100%;
  max-width: 265px;
}
.article.shoppingCart-wrap .step-wrap .next-step:hover {
  background-color: #003f82;
}
.article.shoppingCart-wrap .step-wrap .next-step > a {
  display: block;
  width: 100%;
  color: var(--defaultWhite);
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap {
  padding: 20px;
  background-color: var(--defaultLightGrey);
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap > .title {
  font-size: var(--smallerFontSize);
  font-weight: 700;
  cursor: pointer;
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap > .title::after {
  font-family: var(--fa-family-classic);
  content: "\f055";
  font-weight: 300;
  float: right;
  font-size: 20px;
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap.active > .title::after {
  content: "\f056";
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap > .expand {
  margin-top: 15px;
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap > .expand textarea {
  height: 75px;
  min-height: 75px;
  min-width: 100%;
  resize: none;
  padding: 10px 12px;
  box-shadow: none;
  background-color: var(--defaultWhite);
  border: none;
  border-radius: 3px;
  font-size: var(--smallerFontSize);
  font-family: inherit;
  transition: border var(--shortTransition);
  color: #25282a;
  width: 100%;
  -webkit-appearance: none;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 10px;
}
.article.shoppingCart-wrap .step-wrap .toggle-box > .inner-wrap > .expand .characters-left {
  color: #a4a4a4;
  text-align: right;
  font-size: 12px;
}
.article.shoppingCart-wrap .step-wrap .comments-wrap > .inner-wrap > .expand {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-input input {
  border: none;
  width: 100%;
  height: 38px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-input .discount-code-button {
  display: inline-block;
  width: 100%;
  background-color: #5e5e5e;
  color: var(--defaultWhite);
  cursor: pointer;
  font-size: var(--smallerFontSize);
  line-height: 36px;
  text-align: center;
  border: solid 1px var(--defaultDarkGrey);
  transition: background-color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-input .discount-code-button:hover {
  background-color: var(--defaultBlack);
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-input .discount-code-button:disabled {
  background-color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-input .discount-code-button:disabled:hover {
  background-color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-input input::placeholder {
  color: #acacab;
  font-size: var(--smallerFontSize);
  padding-left: 5px;
  padding-right: 15px;
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-message {
  display: block;
}
.article.shoppingCart-wrap .step-wrap .discount-wrap > .inner-wrap > .expand .discount-message > span {
  padding-top: 10px;
  color: #af2f2b;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .product-table > .product .unit-price .vat-label {
  width: 22%;
  font-size: 12px;
  color: #a4a4a4;
  text-align: right;
  font-weight: normal;
}
.article.shoppingCart-wrap .step-wrap .price-table {
  padding: 10px 0px 10px 10px;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row {
  width: 100%;
  padding-bottom: 15px;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label,
.article.shoppingCart-wrap .step-wrap .price-table .price-row .value {
  float: left;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label.large,
.article.shoppingCart-wrap .step-wrap .price-table .price-row .value.large {
  font-size: 20px;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label {
  width: 60%;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label.label-remove button {
  padding: 0 5px;
  font-size: var(--smallerFontSize);
  appearance: none;
  background: none;
  border: none;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label.label-remove button:hover {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label > span {
  width: 22%;
  font-size: 12px;
  color: #a4a4a4;
  text-align: right;
  font-weight: normal;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .label.bold {
  font-weight: bold;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .value {
  width: 40%;
  text-align: right;
}
.article.shoppingCart-wrap .step-wrap .price-table .price-row .value.bold {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .price-table .next-step {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .price-table .next-step > a {
  background-color: var(--defaultBlue);
  min-width: 200px;
  float: right;
  color: var(--defaultWhite);
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: background-color var(--shortTransition);
  border: none;
}
.article.shoppingCart-wrap .step-wrap .buttons > .next-step > #end-order,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .next,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .next,
.article.shoppingCart-wrap .step-wrap a.back-to-step,
.article.shoppingCart-wrap .step-wrap .accounts button {
  background-color: var(--defaultBlue);
  min-width: 200px;
  float: right;
  color: var(--defaultWhite);
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: background-color var(--shortTransition);
  border: none;
}
.article.shoppingCart-wrap .step-wrap .price-table > .next-step > a:hover,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .next:hover,
.article.shoppingCart-wrap .step-wrap .buttons > .next-step > #end-order:hover,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .next:hover,
.article.shoppingCart-wrap .step-wrap a.back-to-step:hover,
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .button > span:hover,
.article.shoppingCart-wrap .step-wrap .accounts button:hover {
  background-color: #064180;
}
.article.shoppingCart-wrap .step-wrap .accounts button {
  float: none;
}
.article.shoppingCart-wrap .step-wrap .buttons > .next-step > a,
.article.shoppingCart-wrap .step-wrap .buttons > .next-step > #end-order {
  width: 100%;
  text-align: center;
  position: relative;
  padding-right: 5px;
}
.article.shoppingCart-wrap .step-wrap .buttons > .next-step > a::after,
.article.shoppingCart-wrap .step-wrap .buttons > .next-step > #end-order::after {
  position: absolute;
  content: "\f105";
  font-family: var(--fa-family-classic);
  font-size: var(--defaultFontSize);
  padding-left: 3px;
  font-weight: 300;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .next::after,
.article.shoppingCart-wrap .step-wrap .next-step > a::after {
  position: absolute;
  content: "\f105";
  font-family: var(--fa-family-classic);
  font-size: var(--defaultFontSize);
  padding-left: 3px;
  font-weight: 300;
}
.article.shoppingCart-wrap .step-wrap .agreement {
  float: left;
  width: 100%;
  text-align: right;
  font-size: var(--smallerFontSize);
  font-weight: 300;
  padding-top: 20px;
  padding-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .next.disabled {
  background-color: #5e5e5e;
  opacity: 0.33;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .next.disabled:hover {
  background-color: #5e5e5e;
  opacity: 0.33;
}
.article.shoppingCart-wrap .step-wrap a.back-to-step {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block,
.article.shoppingCart-wrap .step-wrap .new-user-block {
  padding: 25px;
  width: 49%;
  float: left;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .new-user-block {
  border: 1px solid var(--defaultDarkGrey);
  margin-left: 1%;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block,
.article.shoppingCart-wrap .step-wrap .new-user-block {
  min-height: 350px;
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset {
  padding: 25px;
}
.article.shoppingCart-wrap .step-wrap .new-user-block {
  padding: 25px;
}
.article.shoppingCart-wrap .step-wrap .new-user-block .text {
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .new-user-block .text h2 {
  padding-bottom: 10px;
  font-size: 20px;
}
.article.shoppingCart-wrap .step-wrap .new-user-block .text h3 {
  font-size: var(--defaultFontSize);
}
.article.shoppingCart-wrap .step-wrap .new-user-block .text ul {
  padding: 0;
  list-style-type: none;
}
.article.shoppingCart-wrap .step-wrap .new-user-block .text ul li {
  width: 100%;
  display: block;
  position: relative;
  padding: 0px 0px 5px 20px;
}
.article.shoppingCart-wrap .step-wrap .new-user-block .text ul li::before {
  content: "\f00c";
  font-family: var(--fa-family-classic);
  font-size: var(--smallerFontSize);
  margin-right: 5px;
  font-weight: 400;
  left: 0;
  position: absolute;
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .existing-user-block {
  background-color: #f6f6f6;
  margin-right: 1%;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login {
  position: unset;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login > .margin {
  position: unset;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login > .margin > .padding {
  position: unset;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder {
  position: unset;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form {
  position: unset;
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset {
  position: unset;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset .title {
  font-weight: bold;
  font-size: var(--defaultFontSize);
  line-height: inherit;
  margin-bottom: 7px;
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset .login-row > #login-widget-show-password-forgot {
  line-height: var(--defaultLineHeight);
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset .login-row > label {
  color: var(--defaultBlack);
  line-height: inherit;
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset .subtitle {
  font-size: var(--smallerFontSize);
  margin-bottom: 25px;
  line-height: 20px;
  color: var(--defaultBlack);
}
.article.shoppingCart-wrap .step-wrap .new-user-block > .subtitle {
  font-size: var(--smallerFontSize);
  margin-bottom: 25px;
  line-height: 20px;
  color: var(--defaultBlack);
}
.article.shoppingCart-wrap .step-wrap .new-user-block > .message {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > .message.active {
  display: flex;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .registration-row {
  float: left;
  padding-bottom: 10px;
  width: 100%;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .registration-row label {
  display: block;
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .registration-row .input-wrap {
  padding: 0;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .registration-row .input {
  padding-bottom: 10px;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .registration-row input {
  padding: 5px 45px 5px 10px;
  width: 100%;
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .input-wrap .field-error-icon {
  height: 30px;
  position: absolute;
  right: 5px;
  bottom: 4px;
  width: 30px;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .input-wrap .field-error-icon > i {
  color: #c95456;
  text-align: center;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .button > span {
  color: var(--defaultWhite);
  background-color: var(--defaultBlue);
  text-align: center;
  padding: 10px 30px;
  border-radius: none;
  display: inline-block;
  cursor: pointer;
}
.article.shoppingCart-wrap .step-wrap .new-user-block > form > .button > span::after {
  content: " \f105";
  font-family: var(--fa-family-classic);
  position: relative;
  top: 1px;
  padding-left: 5px;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .top {
  padding-bottom: 20px;
  border-bottom: solid 1px #e0e0e0;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .top > .close {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .messages {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items > .item > .right > .remove,
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items > .item > .right > .amount > .icons {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items > .item > .right > .prices > .price-old,
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items > .item > .right > .prices > .discount {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items > .button {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .top > .title {
  font-weight: bold;
  font-size: var(--defaultFontSize);
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items {
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .item {
  border-bottom: 1px dashed #ebebeb;
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .item > .left {
  float: left;
  padding: 10px;
  width: 25%;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .item > .right {
  float: left;
  padding: 10px;
  width: 75%;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .item > .right > .title {
  font-weight: bold;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .item > .right > .prices {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .item > .right > .prices > .price {
  display: inline-block;
  font-weight: bold;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .shipping-cost {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .shipping-cost > .value {
  width: 48%;
  text-align: right;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .total-cost {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
  display: none;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .total-cost .value {
  width: 48%;
  text-align: right;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .total-cost .tax-included {
  color: #848484;
  font-size: 10px;
  font-style: italic;
  text-align: right;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .total-cost .value .bold,
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .total-cost .label .bold {
  font-weight: bold;
}
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .shipping-cost > .label,
.article.shoppingCart-wrap .step-wrap .short-cart-wrap > .items .total-cost > .label {
  width: 50%;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap {
  padding-right: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons {
  padding: 20px 0;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous,
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .next {
  min-width: 265px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .previous,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > .next {
  min-width: 265px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > .add-another-address {
  width: auto;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 30px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .user-warning {
  background-color: #df6d6d;
  color: var(--defaultWhite);
  display: none;
  line-height: 24px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses {
  padding: 20px;
  background-color: #f6f6f6;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .title {
  font-weight: bold;
  padding-bottom: 5px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .option {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .option.disabled .radiobutton-clone,
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .option.disabled span {
  opacity: 0.5;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .option .left {
  float: left;
  vertical-align: text-bottom;
  padding-top: 5px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .option .right {
  width: 90%;
  float: left;
  padding-right: 25px;
}
.article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > div > .option .right > span {
  display: block;
}
.article.shoppingCart-wrap .step-wrap .cart-side-links {
  padding: 20px 0;
  display: none;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen {
  padding: 0px;
  color: #1e1e1e;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap {
  float: left;
  width: 50%;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap[data-type=is_pickup] {
  width: 100%;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap[data-type=is_delivery] {
  padding-right: 15px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap[data-type=is_billing] {
  padding-left: 15px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address {
  float: left;
  width: 100%;
  padding: 20px;
  font-size: var(--smallerFontSize);
  line-height: 24px;
  background-color: var(--defaultLightGrey);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address .wrap {
  min-height: 120px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address .address-row.bold {
  font-weight: 500;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address .address-row.edit, .article.shoppingCart-wrap .step-wrap .addresses-chosen .address .address-row.edit-back {
  padding-top: 15px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address a {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address a:hover {
  color: var(--defaultBlack);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .address .wrap .no-address {
  font-style: italic;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 110;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap {
  position: relative;
  background-color: var(--defaultWhite);
  padding: 30px;
  max-width: 850px;
  width: 100%;
  margin: 0px auto 50px auto;
  box-shadow: 0px 3px 23px var(--defaultShadowColor);
  top: 10%;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: var(--smallerFontSize);
  line-height: 24px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--defaultWhite);
  z-index: 10001;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: var(--smallerFontSize);
  line-height: 24px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--defaultWhite);
  z-index: 10001;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .close i,
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .close i {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  top: 2px;
  margin-left: 5px;
  transition: transform var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .close:hover i,
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .close:hover i {
  transform: rotate(180deg);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap h2 {
  width: 50%;
  font-size: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap h3 {
  width: 50%;
  font-size: var(--biggerFontSize);
  margin-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .button-add-address {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--defaultBlue);
  color: var(--defaultWhite);
  text-align: center;
  padding: 8px 25px;
  cursor: pointer;
  transition: background-color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .button-add-address:hover {
  background-color: #003f82;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .addresses-view {
  float: left;
  width: 100%;
  padding-top: 15px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .width-33 {
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap {
  width: 100%;
  border: 1px solid var(--defaultDarkGrey);
  font-size: var(--smallerFontSize);
  padding: 20px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap.active {
  border: 1px solid var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .info {
  min-height: 180px;
  overflow: hidden;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .info .tav,
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .info .company-name.bold {
  font-size: var(--defaultFontSize);
  font-weight: 500;
  line-height: 19px;
  padding-bottom: 5px;
  max-height: 43px;
  overflow: hidden;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .edit {
  padding-top: 15px;
  text-align: center;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .edit .button-edit {
  font-weight: 400;
  line-height: 16px;
  cursor: pointer;
  transition: color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .edit .button-edit:hover {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .use .button-use {
  width: 100%;
  color: var(--defaultWhite);
  background-color: var(--defaultBlue);
  text-align: center;
  padding: 8px;
  cursor: pointer;
  transition: background-color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .button-use:hover {
  background-color: #003f82;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap {
  position: relative;
  background-color: var(--defaultWhite);
  padding: 40px;
  max-width: 850px;
  width: 100%;
  margin: 0px auto 50px auto;
  box-shadow: 0px 3px 23px var(--defaultShadowColor);
  top: 10%;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap h2 {
  padding-bottom: 10px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .message {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .message.active {
  display: flex;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap {
  padding: 30px;
  border: 1px solid var(--defaultDarkGrey);
  font-size: var(--smallerFontSize);
  color: #595959;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap input {
  width: 100%;
  border: 1px solid var(--defaultDarkGrey);
  font-size: var(--smallerFontSize);
  padding: 10px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap > div[class*=width-] {
  padding-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .buttons {
  padding-top: 0px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .button-add-address,
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .button-edit-address {
  float: left;
  min-width: 150px;
  color: var(--defaultWhite);
  background-color: var(--defaultBlue);
  text-align: center;
  padding: 8px;
  cursor: pointer;
  transition: background-color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .button-add-address:hover,
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .button-edit-address:hover {
  background-color: #003f82;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .cancel {
  float: left;
  padding: 8px;
  color: var(--defaultBlack);
  cursor: pointer;
  margin-left: 10px;
  transition: color var(--shortTransition);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .cancel:hover {
  color: var(--defaultBlue);
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .padding-left {
  padding-left: 15px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .padding-right {
  padding-right: 15px;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .input {
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap {
  float: left;
  width: 100%;
  padding: 10px 0;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .title,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .title {
  font-size: 20px;
  padding: 0px 0px 25px 0px;
  font-weight: bold;
}
.article.shoppingCart-wrap .step-wrap .sub-title {
  float: left;
  width: 100%;
  font-size: var(--defaultFontSize);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 5px;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block {
  float: left;
  width: 100%;
  border: 1px solid var(--defaultDarkGrey);
  padding: 15px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block[data-apple-pay="1"] {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .left {
  width: 20px;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .left {
  width: 20px;
  display: inline-block;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .left > .radiobutton-clone,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .left > .radiobutton-clone {
  margin-top: 3px;
  position: relative;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .left > .radiobutton-clone::before,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .left > .radiobutton-clone::before {
  top: -1px;
  left: 1px;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .left > .radiobutton-clone::after,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .left > .radiobutton-clone::after {
  top: 3px;
  left: 5px;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .right,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .right {
  display: inline-block;
  margin-left: 5px;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .right > img,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .right > img {
  vertical-align: -6px;
  display: inline;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .right > label,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .right > label {
  font-weight: bold;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .right > label > span,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .right > label > span {
  font-size: 10px;
  font-weight: 300;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > i,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > i {
  font-size: var(--defaultFontSize);
  cursor: help;
  color: var(--defaultBlack);
  float: right;
  margin-top: 6px;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .image,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .image {
  float: right;
}
.article.shoppingCart-wrap .step-wrap .payment-select-wrap > .block > .right > .select-wrap,
.article.shoppingCart-wrap .step-wrap .carrier-select-wrap > .block > .right > .select-wrap {
  margin-top: 10px;
}
.article.shoppingCart-wrap .step-wrap .text {
  padding-bottom: 50px;
  font-size: var(--smallerFontSize);
}
.article.shoppingCart-wrap .step-wrap .text > h1 {
  padding-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .text > h1.check::before {
  content: "\f00c";
  font-family: var(--fa-family-classic);
  display: inline-block;
  font-size: 24px;
  color: #47b222;
  padding-right: 20px;
  padding-left: 10px;
}
.article.shoppingCart-wrap .step-wrap .text > p {
  margin-bottom: 1em;
}
.article.shoppingCart-wrap .step-wrap .subtitle {
  padding-bottom: 30px;
  font-size: 20px;
}
.article.shoppingCart-wrap .step-wrap h2 {
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .step-wrap .order-succes.details-wrap .buttons {
  padding-bottom: 30px;
}
.article.shoppingCart-wrap .step-wrap .order-succes.details-wrap .buttons .next-step {
  float: none;
  margin: 0px auto;
  display: table;
}
.article.shoppingCart-wrap .step-wrap .order-succes.details-wrap .buttons .next-step a::after {
  position: absolute;
  content: "\f105";
  font-family: var(--fa-family-classic);
  font-size: var(--defaultFontSize);
  padding-left: 3px;
  font-weight: 300;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous, .article.shoppingCart-wrap .step-wrap.view .buttons .prev-step a,
.article.shoppingCart-wrap .step-wrap .step-back > a {
  background-color: inherit;
  color: var(--defaultBlack);
  font-size: var(--smallerFontSize);
  font-weight: 400;
  text-align: left;
  transition: var(--shortTransition);
  transition-property: color, background-color;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous::before, .article.shoppingCart-wrap .step-wrap.view .buttons .prev-step a::before,
.article.shoppingCart-wrap .step-wrap .step-back > a::before {
  font-family: var(--fa-family-classic);
  content: "\f053";
  display: inline-block;
  margin-right: 7px;
  font-size: 12px;
}
.article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous:hover, .article.shoppingCart-wrap .step-wrap.view .buttons .prev-step a:hover,
.article.shoppingCart-wrap .step-wrap .step-back > a:hover {
  color: var(--defaultBlue);
  background: none;
}
.article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap.hide {
  display: none;
}
.article.shoppingCart-wrap .step-wrap .secure {
  float: right;
  text-align: center;
  color: #00c300;
  font-size: 12px;
  padding-top: 10px;
  max-width: 265px;
  min-width: 265px;
}
.article.shoppingCart-wrap .product-table > .configurator-name {
  margin-top: 30px;
}
.article.shoppingCart-wrap .order-succes.details-wrap {
  float: left;
  width: 100%;
}
.article.shoppingCart-wrap .order-succes.details-wrap .details-title {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding-top: 25px;
  padding-bottom: 35px;
}
.article.shoppingCart-wrap .order-succes.details-wrap .icon-wrap {
  max-width: 175px;
  margin: 0px auto;
  padding-left: 20px;
  padding-right: 20px;
}
.article.shoppingCart-wrap .order-succes.details-wrap .icon-wrap .icon {
  border: 1px solid var(--defaultDarkGrey);
  border-radius: 50%;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  position: relative; /* If you want text inside of it */
}
.article.shoppingCart-wrap .order-succes.details-wrap .icon-wrap .icon i {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  color: var(--defaultBlue);
  margin-top: -24px;
  width: 100%;
}
.article.shoppingCart-wrap .order-succes.details-wrap .info {
  padding: 15px 30px;
  text-align: center;
}
.article.shoppingCart-wrap .order-succes.details-wrap .info .text {
  font-size: var(--smallerFontSize);
  line-height: 24px;
}
.article.shoppingCart-wrap .login-form .h1Class {
  padding-bottom: 0;
}
.article.shoppingCart-wrap .customer-tabs-default {
  border-bottom: 1px solid var(--defaultDarkGrey);
  margin-bottom: 10px;
}
.article.shoppingCart-wrap .customer-tabs {
  background: var(--defaultWhite);
  border-left: 1px solid var(--defaultDarkGrey);
  border-right: 1px solid var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .customer-tabs > .customer-tab {
  background: var(--defaultWhite);
}
.article.shoppingCart-wrap .customer-tabs > .customer-tab > .customer-tab-inner {
  padding: 10px 10px 5px 10px;
  overflow: hidden;
  text-align: center;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times,
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule {
  list-style: none;
  margin: 0 auto 15px auto;
  padding: 0;
  display: table;
  overflow: hidden;
  width: 750px;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper {
  font-size: 0;
  line-height: 0;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li {
  width: 100%;
  background: var(--defaultLightGrey);
  overflow: hidden;
  line-height: 63px;
  margin-bottom: 5px;
  padding-left: 60px;
  position: relative;
  cursor: pointer;
  display: none;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li.active {
  display: block;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li > .radiobutton-clone {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  left: 36px;
  padding: 0;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background-color: #e2e2e2;
  transition: background-color var(--shortTransition);
  content: "";
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li.active.selected::before {
  background-color: var(--defaultBlue);
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li.selected > .label-name {
  font-weight: 700;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li .label-name,
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li .label-time {
  display: block;
  text-align: left;
  float: left;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li .label-name {
  width: 195px;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times.deliver > li.selected {
  padding: 10px 0 10px 35px;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times.deliver > li.selected > .label-name {
  line-height: var(--defaultLineHeight);
  width: 100%;
  padding-right: 15px;
}
.article.shoppingCart-wrap .customer-tabs .times-wrapper > .times.deliver > li.selected > .label-name > span {
  width: 100%;
  clear: left;
  display: block;
  font-size: 12px;
  font-weight: 200;
  line-height: 18px;
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule > li {
  width: 50px;
  height: 50px;
  border: 1px solid var(--defaultWhite);
  border-radius: 50%;
  line-height: 17px;
  font-weight: 100;
  padding-top: 7px;
  cursor: pointer;
  transition: border var(--shortTransition);
  display: table-cell;
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule > li > span {
  display: block;
  width: 100%;
  text-align: center;
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule > li > span.day-number {
  font-weight: 400;
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule > li.not-active {
  color: var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule > li.selected {
  border: 1px solid var(--defaultBlue);
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule > li.selected > span {
  font-weight: 700;
}
.article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i {
  display: none;
}
.article.shoppingCart-wrap .customer-tabs.no-pickup {
  border-top: 1px solid var(--defaultDarkGrey);
}
.article.shoppingCart-wrap .customer-tab + .customer-tab {
  display: none;
}
.article.shoppingCart-wrap .customer-tabs-nav {
  border-bottom: 1px solid var(--defaultDarkGrey);
  margin: 0;
  padding: 0;
  list-style: none;
}
.article.shoppingCart-wrap .customer-tabs-nav::after {
  content: "";
  display: table;
  clear: both;
}
.article.shoppingCart-wrap .customer-tabs-nav > li {
  margin: 0 -1px -1px 0;
  float: left;
  border: 1px solid #eee;
  border-bottom: 0;
  list-style: none;
  background-color: var(--defaultLightGrey);
  transition: background-color var(--shortTransition);
  z-index: 1;
  border-bottom: 1px solid var(--defaultDarkGrey);
  color: #151b31;
  line-height: 24px;
  min-width: 162px;
  margin-right: 7px;
}
.article.shoppingCart-wrap .customer-tabs-nav > li::before {
  height: 5px;
  opacity: 0.03;
  background-color: var(--defaultBlack);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.article.shoppingCart-wrap .customer-tabs-nav > li > label {
  cursor: pointer;
  padding: 15px 15px 15px 45px;
  position: relative;
  display: block;
}
.article.shoppingCart-wrap .customer-tabs-nav > li > label .radiobutton-clone {
  position: absolute;
  left: 17px;
}
.article.shoppingCart-wrap .customer-tabs-nav > li > label > div {
  font-size: var(--defaultFontSize);
  font-weight: 600;
}
.article.shoppingCart-wrap .customer-tabs-nav > li > label > div > span {
  width: 100%;
  display: block;
  font-size: 12px;
  font-weight: 200;
  line-height: 14px;
}
.article.shoppingCart-wrap .customer-tabs-nav > li.active {
  border-bottom-color: var(--defaultWhite);
  background-color: var(--defaultWhite);
  border-color: var(--defaultDarkGrey);
  z-index: 2;
}
.article.shoppingCart-wrap .customer-tabs-nav > li.active::before {
  display: none;
}
.article.shoppingCart-wrap .customer-tab-inner {
  padding: 10px 15px 0 15px;
}
.article.shoppingCart-wrap .user-data-wrap .input-wrap.toggle-business-account {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.article.shoppingCart-wrap .user-data-wrap .input-wrap.toggle-business-account.show {
  max-height: 300px;
  opacity: 1;
}
.article.shoppingCart-wrap .wrapper-test-env {
  display: inline;
  float: right;
  display: none;
}
.article.shoppingCart-wrap #hidden-payment-provider-form {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
.article.shoppingCart-wrap #hidden-payment-provider-form.fixed {
  position: fixed;
  z-index: 20001;
  text-align: center;
  top: 60%;
}
.article.shoppingCart-wrap #hidden-payment-provider-form.fixed > form > div {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 25px;
  font-size: var(--smallerFontSize);
  color: var(--defaultTextColor);
}
.article.shoppingCart-wrap #hidden-payment-provider-form.fixed > form > div p {
  display: block;
  margin-bottom: 30px;
}
.article.shoppingCart-wrap #hidden-payment-provider-form > form input[type=submit] {
  background-color: #47b222;
  border-radius: 3px;
  color: var(--defaultWhite);
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  margin: 0 auto;
  text-decoration: none;
  width: 230px;
  border: none;
}
.article.shoppingCart-wrap #hidden-payment-provider-form > form input[type=submit]:hover {
  background-color: #65c046;
}
.article.shoppingCart-wrap .cart-left-side {
  padding-right: 20px;
}
.article.shoppingCart-wrap .cart-right-side {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8ede8;
  padding: 25px;
  margin-top: 50px;
}
.article.shoppingCart-wrap .cart-right-side .top {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.article.shoppingCart-wrap .cart-right-side .product {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.article.shoppingCart-wrap .cart-right-side .product .image {
  width: 80px;
  height: 80px;
  border: 1px solid #e8ede8;
}
.article.shoppingCart-wrap .cart-right-side .product .title {
  width: calc(75% - 80px);
  padding: 0 0 0 15px;
}
.article.shoppingCart-wrap .cart-right-side .product .price {
  width: 25%;
  text-align: right;
  padding: 0 0 0 15px;
}
.article.shoppingCart-wrap .step-wrap .cart-right-side > .price-table {
  padding: 20px 0 0 0;
  margin-top: 20px;
  border: none;
  border-top: 1px solid var(--defaultDarkGrey);
}

.confirmbox .test-env-select {
  position: relative;
}
.confirmbox .test-env-select label {
  margin-bottom: 10px;
  display: block;
}
.confirmbox .test-env-select .select-clone-value {
  position: relative;
}

@media (max-width: 1050px) {
  .article.shoppingCart-wrap .step-wrap .addresses-chosen > .address {
    width: 50%;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .subtitle,
  .article.shoppingCart-wrap .step-wrap .new-user-block > .subtitle {
    height: 65px;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block,
  .article.shoppingCart-wrap .step-wrap .new-user-block {
    min-height: 390px;
  }
}
/* Grade A */
@media (max-width: 1194px) {
  .article.shoppingCart-wrap .step-wrap .discount-wrap,
  .article.shoppingCart-wrap .step-wrap .comments-wrap {
    padding: 10px 10px 0 0;
    width: 50%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table {
    float: right;
    margin-top: 10px;
  }
  .agreement-wrap {
    width: 100%;
  }
}
/* Grade B */
@media (max-width: 991px) {
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div input {
    width: 60px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.options-wrap, .article.shoppingCart-wrap .step-wrap .product-table > .product > div.amount-wrap {
    padding-right: 25px;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block {
    padding: 0;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block {
    padding: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block > form > .button > span {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block > form > .registration-row {
    padding-bottom: 0;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block > form > .button {
    padding-top: 0;
    height: 75px;
    left: 15px;
    right: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block .text h2 {
    font-size: var(--biggerFontSize);
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .submit-wrap {
    padding-top: 0;
    height: 75px;
    left: 15px;
    right: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .submit-wrap #login-widget-show-password-forgot {
    float: left;
    line-height: inherit;
    margin-top: 10px;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .submit-wrap #forgot-password-submit-button,
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .submit-wrap #login-submit-button {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap,
  .article.shoppingCart-wrap .step-wrap .user-addresses-wrap {
    width: 100%;
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .short-cart-wrap,
  .article.shoppingCart-wrap .step-wrap .cart-side-links {
    display: none;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen > .address {
    width: 50%;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block,
  .article.shoppingCart-wrap .step-wrap .new-user-block {
    min-height: 370px;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step::after {
    right: -30%;
    left: 70%;
  }
  .article.shoppingCart-wrap .article.widget-default-login form > fieldset > .submit-wrap > #login-submit-button {
    width: 100%;
  }
  .article.shoppingCart-wrap .article.widget-default-login .form-holder > form > fieldset {
    padding: 15px;
  }
  .article.shoppingCart-wrap .cart-left-side {
    width: 100%;
    padding-right: 0;
  }
  .article.shoppingCart-wrap .cart-right-side {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 30px;
  }
}
/* Grade C */
@media (max-width: 767px) {
  .article.shoppingCart-wrap .step-wrap {
    padding: 30px 0;
  }
  .article.shoppingCart-wrap .step-wrap.flex {
    display: block;
  }
  .article.shoppingCart-wrap .step-wrap .secure {
    min-width: 265px;
  }
  .article.shoppingCart-wrap .step-wrap .price-table {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table > .price-row > .value {
    width: 35%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table > .price-row > .label {
    width: 60%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table > .price-row > span {
    width: 15%;
    display: none;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block {
    width: 100%;
    margin-bottom: 10px;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .subtitle,
  .article.shoppingCart-wrap .step-wrap .new-user-block > .subtitle {
    height: auto;
    padding-bottom: 0;
  }
  .article.shoppingCart-wrap .step-wrap .price-table {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table .next-step {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table .next-step > a {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table > .price-row > .value {
    width: 40%;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product {
    position: relative;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .title > a {
    line-height: inherit;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .input-wrapper {
    padding: 0;
    width: calc(50% - 10px);
    float: right;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .input-wrapper > .minus {
    left: 0;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .unit-price {
    padding: 0;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.options-wrap, .article.shoppingCart-wrap .step-wrap .product-table > .product > div.amount-wrap {
    padding-right: 5px;
  }
  .article.shoppingCart-wrap .step-wrap .discount-wrap,
  .article.shoppingCart-wrap .step-wrap .comments-wrap {
    width: 100%;
    padding: 10px 0;
  }
  .article.shoppingCart-wrap .step-wrap h1 {
    font-size: var(--biggerFontSize);
    margin-bottom: 10px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > h2 {
    font-size: var(--defaultFontSize);
    margin-top: 30px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table {
    display: table;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product {
    height: auto;
    padding: 15px 0px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > .amount {
    flex-direction: column;
    justify-content: center;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div {
    vertical-align: top;
    height: auto;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.clear {
    float: none;
    clear: both;
    padding: 0;
    display: inline;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.image img {
    height: auto;
    width: 100%;
    display: block;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.title {
    width: 80%;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.price-wrap, .article.shoppingCart-wrap .step-wrap .product-table > .product > div.amount-wrap {
    vertical-align: middle;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.amount-wrap {
    width: 22%;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.amount-wrap > i {
    top: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.amount-wrap > .mobile-label {
    display: inline-block;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div > span.title > span {
    max-height: 22px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.price-wrap, .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.options-wrap, .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.amount-wrap {
    height: auto;
  }
  .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.title, .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.amount-wrap, .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.options-wrap {
    padding-bottom: 0;
  }
  .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.amount-wrap, .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.options-wrap {
    padding-top: 0;
  }
  .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product > div.price-wrap {
    line-height: 19px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table.non-edit-mode > .product.has-subs > div.image {
    min-height: auto;
  }
  .article.shoppingCart-wrap .step-wrap .message.error {
    margin-bottom: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form {
    padding: 0px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row {
    padding-bottom: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row > .input-wrap.radio {
    width: 50%;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row > .input-wrap > div {
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row .alternative-wrap.active {
    margin-bottom: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row .alternative-wrap .form-row {
    padding-bottom: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row .alternative-wrap .input-wrap {
    padding-bottom: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row .alternative-wrap .input-wrap > div {
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > .form-row .input-wrap {
    width: 100%;
    padding-bottom: 15px;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step::after {
    right: -25%;
    left: 75%;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step > .label,
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step > a > .label {
    display: none;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block {
    min-height: auto;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .submit-wrap {
    left: auto;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block {
    min-height: auto;
  }
  .article.shoppingCart-wrap .step-wrap .existing-user-block > .article.widget-default-login .form-holder > form > fieldset > .submit-wrap,
  .article.shoppingCart-wrap .step-wrap .new-user-block > form > .button {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap[data-type=is_delivery], .article.shoppingCart-wrap .step-wrap .addresses-chosen > .address-wrap[data-type=is_billing] {
    width: 100%;
    padding: 0px;
  }
  .article.shoppingCart-wrap .step-wrap.view .product-table > .product > div {
    vertical-align: middle;
  }
  .article.shoppingCart-wrap .step-wrap .payment-select-wrap > .title {
    font-size: var(--biggerFontSize);
    padding-bottom: 20px;
  }
  .article.shoppingCart-wrap .step-wrap.view .buttons.top > .prev-step {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section.persona > .form-row.gender > .input-wrap {
    width: 30%;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section > .form-row > .alternative-wrap > .form-row.three-fix > .input-wrap, .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section > .form-row.three-fix > .input-wrap {
    width: 33.3333333333%;
  }
  .article.shoppingCart-wrap .step-wrap.view .address-wrap .title {
    padding-top: 10px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap,
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap {
    width: 95%;
    padding: 20px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .addresses-view {
    padding-top: 0px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .width-33 {
    width: 50%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap > div[class*=width-] {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .padding-left,
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .padding-right {
    padding-left: 0px;
    padding-right: 0px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .use {
    padding-top: 20px;
  }
  .article.shoppingCart-wrap .step-wrap .agreement {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
  .article.shoppingCart-wrap .step-wrap .text {
    padding-bottom: 20px;
  }
  .article.shoppingCart-wrap .order-succes.details-wrap .details-title {
    font-size: var(--biggerFontSize);
  }
  .article.shoppingCart-wrap .step-wrap .order-succes.details-wrap .width-33 {
    width: 100%;
  }
  .article.shoppingCart-wrap .customer-tabs-nav > li {
    width: calc(50% - 3px);
    margin-right: 3px;
    margin-left: 0;
    min-width: auto;
  }
  .article.shoppingCart-wrap .customer-tabs-nav > li:last-child {
    margin-left: 3px;
    margin-right: 0;
  }
  .article.shoppingCart-wrap .cart-right-side {
    padding: 15px;
  }
}
/* Grade D */
@media (max-width: 479px) {
  .article.shoppingCart-wrap {
    /* customer tabs */
  }
  .article.shoppingCart-wrap .step-wrap .price-table {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .price-table .next-step > a {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen > .address {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen > .address:first-child {
    padding-bottom: 25px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.image {
    width: 20%;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product.has-subs > div.image {
    width: 20%;
    min-height: 120px;
  }
  .article.shoppingCart-wrap .step-wrap .step-back,
  .article.shoppingCart-wrap .step-wrap .next-step, .article.shoppingCart-wrap .step-wrap.view .buttons .prev-step {
    width: 100%;
    text-align: center;
    max-width: unset;
  }
  .article.shoppingCart-wrap .step-wrap.view .buttons {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .article.shoppingCart-wrap .step-wrap.view .buttons .prev-step {
    order: 1;
  }
  .article.shoppingCart-wrap .step-wrap .secure {
    max-width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > .delivery-address-wrap,
  .article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > .billing-address-wrap {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .user-addresses-wrap > .addresses > .add-another-address {
    min-width: auto;
  }
  .article.shoppingCart-wrap .step-wrap .price-table > .price-row.border-bottom > .label > span {
    display: block;
    width: 100%;
    text-align: left;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section {
    padding: 15px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section > .form-row {
    padding-left: 0;
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section > .form-row .input-wrap {
    width: 100%;
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section > .form-row .input-wrap > div {
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section .alternative-wrap .input-wrap > div {
    padding-right: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons {
    padding: 0;
    margin-top: 20px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > a {
    width: 100%;
    text-align: center;
  }
  .article.shoppingCart-wrap .step-wrap .user-addresses-wrap > div.buttons > a,
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons > .previous {
    width: 100%;
    text-align: center;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.buttons .previous {
    order: 3;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product {
    float: left;
    width: 100%;
    display: block;
    padding: 25px 0px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product:nth-child(1) {
    border-top: solid 1px #dddde0;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product > div.image {
    float: left;
    width: 30%;
    padding: 0px 10px 0 0;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .info {
    float: left;
    width: 70%;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .info > a.title {
    width: 100%;
    position: relative;
    max-height: none;
    overflow: visible;
    line-height: 24px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .amount {
    float: left;
    width: 100%;
    display: block;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .amount .input-wrapper {
    width: 100%;
    float: left;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .amount .unit-price {
    padding-top: 10px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .price-wrap {
    float: left;
    width: 100%;
    display: block;
    margin-top: -22px;
  }
  .article.shoppingCart-wrap .step-wrap .product-table > .product .price-wrap > .actions {
    position: absolute;
    right: 10px;
    top: 5px;
  }
  .article.shoppingCart-wrap .step-wrap.step1 .secure,
  .article.shoppingCart-wrap .step-wrap .secure {
    width: 100%;
    padding-bottom: 10px;
    max-width: unset;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step::after {
    right: -15%;
    left: 85%;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step > .label {
    display: none;
  }
  .article.shoppingCart-wrap .step-wrap .new-user-block > form > .button > span::after {
    padding-left: 10px;
  }
  .article.shoppingCart-wrap .step-wrap.view .next-step {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap.view .prev-step {
    width: 100%;
    padding-top: 10px;
  }
  .article.shoppingCart-wrap .step-wrap.view .basket-title {
    padding: 15px;
  }
  .article.shoppingCart-wrap .step-wrap.view .product-table > .product {
    float: left;
    padding-bottom: 10px;
  }
  .article.shoppingCart-wrap .step-wrap.view .product-table > .product > div.image {
    padding: 0px 0px 0px 15px;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step {
    --circleSize: 35px;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section > .form-row {
    padding-bottom: 0;
  }
  .article.shoppingCart-wrap .step-wrap .user-data-wrap > div.form > form > section.persona > .form-row.gender > .input-wrap {
    width: 40%;
  }
  .article.shoppingCart-wrap .step-wrap.view .order-succes.details-wrap .info {
    padding-bottom: 30px;
  }
  .article.shoppingCart-wrap .step-wrap.view .order-succes.details-wrap .info .title {
    padding-top: 0px;
  }
  .article.shoppingCart-wrap .shop-step-bar-wrap > .step.done > a {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap,
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap {
    padding: 20px 10px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .width-33 {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .address-wrap .info {
    min-height: auto;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap h2,
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap h3 {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .my-addresses-wrap .button-add-address {
    position: relative;
    width: calc(100% - 20px);
    top: unset;
    right: unset;
    margin: 10px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap {
    padding: 20px;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .button-add-address,
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .button-edit-address {
    width: 100%;
  }
  .article.shoppingCart-wrap .step-wrap .addresses-chosen .popup-my-addresses .popup-address-wrap .address-wrap .cancel {
    width: 100%;
    text-align: center;
    margin: 10px 0px 0px 0px;
  }
  .article.shoppingCart-wrap .step-wrap.step4 .buttons:not(.mobile) .prev-step {
    display: none;
  }
  .article.shoppingCart-wrap .step-wrap.step4 .buttons.mobile {
    padding-top: 0px;
    display: block;
  }
  .article.shoppingCart-wrap .step-wrap.step4 .buttons.mobile .prev-step {
    padding-top: 0px;
  }
  .article.shoppingCart-wrap .step-wrap.step4 .buttons.mobile .prev-step a {
    line-height: normal;
  }
  .article.shoppingCart-wrap .step-wrap a.back-to-step {
    width: 100%;
  }
  .article.shoppingCart-wrap .customer-tabs-nav > li {
    padding: 10px 5px 10px 30px;
  }
  .article.shoppingCart-wrap .customer-tabs-nav > li > .radiobutton-clone {
    left: 8px;
  }
  .article.shoppingCart-wrap .customer-tabs-nav > li > div > span {
    font-size: 10px;
  }
  .article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: var(--defaultLineHeight);
  }
  .article.shoppingCart-wrap .customer-tabs .times-wrapper > .times > li > .radiobutton-clone {
    top: 10px;
    left: 32px;
  }
}
/* custom grade for customer tabs */
@media only screen and (max-width: 800px) {
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i {
    position: absolute;
    cursor: pointer;
    top: 25px;
    font-weight: 400;
    display: block;
    z-index: 9;
  }
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i::after {
    height: 60px;
    width: 40px;
    position: absolute;
    content: "";
    top: -20px;
    z-index: -1;
  }
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i.fa-arrow-left {
    left: 10px;
  }
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i.fa-arrow-left::after {
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    border-left: 10px solid var(--defaultWhite);
    left: -10px;
  }
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i.fa-arrow-right {
    right: 10px;
  }
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > i.fa-arrow-right::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    border-right: 10px solid var(--defaultWhite);
    right: -10px;
  }
  .article.shoppingCart-wrap .customer-tabs .schedule-wrapper > ul.schedule {
    margin-left: 20px;
    transition: margin-left var(--shortTransition);
  }
  .article.shoppingCart-wrap .step-wrap .buttons > .next-step > .wrapper-test-env {
    float: unset;
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 10px;
    display: block;
    overflow: hidden;
  }
}

/*# sourceMappingURL=shoppingCart.css.map */