:root {
  --versla-color-primary: #3577f0;
  --versla-color-light: #CBD3D9;
  --versla-color-secondary: #ff497c;
  --versla-color-white: #fff;
  --versla-color-black: #000000;
  --versla-error-text-color: gray;
}

versla-shoppingcart, .versla-styling {
  font-family: inherit !important;
  /*----------------------
Header Shopping Cart  
-----------------------*/
  /*----------------------
    Button Styles  
-----------------------*/
  /* End LineItemOverview CSS */
}

versla-shoppingcart .form-group label, .versla-styling .form-group label {
  position: absolute;
  top: -11px;
  left: 20px;
  pointer-events: none;
  z-index: 4;
  background: #fff;
  padding: 0 10px;
}

versla-shoppingcart .versla-cart-modal-background, .versla-styling .versla-cart-modal-background {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  visibility: hidden;
}

versla-shoppingcart .versla-cart-container.show > .versla-cart-modal-background, .versla-styling .versla-cart-container.show > .versla-cart-modal-background {
  visibility: visible;
}

versla-shoppingcart .hide, .versla-styling .hide {
  display: none;
}

versla-shoppingcart .versla-cart-container.show > .cart-dropdown, .versla-styling .versla-cart-container.show > .cart-dropdown {
  right: 0;
}

versla-shoppingcart .cart-dropdown, .versla-styling .cart-dropdown {
  position: fixed;
  right: -600px;
  top: 0;
  bottom: 0;
  z-index: 101;
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

@media only screen and (max-width: 767px) {
  versla-shoppingcart .cart-dropdown, .versla-styling .cart-dropdown {
    width: 100%;
    right: -100%;
  }
}

versla-shoppingcart .cart-dropdown .cart-content-wrap, .versla-styling .cart-dropdown .cart-content-wrap {
  background-color: var(--versla-color-white);
  padding: 60px 50px;
  width: 600px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

@media only screen and (max-width: 767px) {
  versla-shoppingcart .cart-dropdown .cart-content-wrap, .versla-styling .cart-dropdown .cart-content-wrap {
    width: 100%;
    padding: 30px;
  }
}

@media only screen and (max-width: 479px) {
  versla-shoppingcart .cart-dropdown .cart-content-wrap, .versla-styling .cart-dropdown .cart-content-wrap {
    padding: 30px 15px;
  }
}

versla-shoppingcart .cart-dropdown .cart-content-wrap::-webkit-scrollbar, .versla-styling .cart-dropdown .cart-content-wrap::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
}

versla-shoppingcart .cart-dropdown .cart-content-wrap::-webkit-scrollbar-track, .versla-styling .cart-dropdown .cart-content-wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

versla-shoppingcart .cart-dropdown .cart-content-wrap::-webkit-scrollbar-thumb, .versla-styling .cart-dropdown .cart-content-wrap::-webkit-scrollbar-thumb {
  background: var(--color-lightest);
  border-radius: 10px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

versla-shoppingcart .cart-dropdown .cart-content-wrap::-webkit-scrollbar-thumb:hover, .versla-styling .cart-dropdown .cart-content-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--versla-color-primary);
}

versla-shoppingcart .cart-dropdown versla-body, .versla-styling .cart-dropdown versla-body {
  padding: 30px 0;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

versla-shoppingcart .cart-dropdown versla-shoppingcart-empty, .versla-styling .cart-dropdown versla-shoppingcart-empty {
  text-align: center;
}

versla-shoppingcart versla-step, .versla-styling versla-step {
  display: none;
}

versla-shoppingcart versla-step.show, .versla-styling versla-step.show {
  display: block;
}

versla-shoppingcart a.axil-btn,
versla-shoppingcart button.axil-btn, .versla-styling a.axil-btn,
.versla-styling button.axil-btn {
  border-radius: 6px;
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  font-weight: 700;
  display: inline-block;
  padding: 16px 38px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

versla-shoppingcart a.axil-btn:before,
versla-shoppingcart button.axil-btn:before, .versla-styling a.axil-btn:before,
.versla-styling button.axil-btn:before {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

versla-shoppingcart a.axil-btn i,
versla-shoppingcart button.axil-btn i, .versla-styling a.axil-btn i,
.versla-styling button.axil-btn i {
  font-weight: 400;
  margin-right: 10px;
  color: var(--color-heading);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

versla-shoppingcart a.axil-btn.btn-bg-white,
versla-shoppingcart button.axil-btn.btn-bg-white, .versla-styling a.axil-btn.btn-bg-white,
.versla-styling button.axil-btn.btn-bg-white {
  background-color: var(--versla-color-white);
  color: var(--color-heading);
  -webkit-box-shadow: 0 16px 32px 0 rgba(103, 103, 103, 0.06);
  box-shadow: 0 16px 32px 0 rgba(103, 103, 103, 0.06);
}

versla-shoppingcart a.axil-btn.btn-bg-white:before,
versla-shoppingcart button.axil-btn.btn-bg-white:before, .versla-styling a.axil-btn.btn-bg-white:before,
.versla-styling button.axil-btn.btn-bg-white:before {
  background-color: var(--versla-color-white);
}

versla-shoppingcart a.axil-btn.btn-bg-lighter,
versla-shoppingcart button.axil-btn.btn-bg-lighter, .versla-styling a.axil-btn.btn-bg-lighter,
.versla-styling button.axil-btn.btn-bg-lighter {
  background-color: var(--color-lighter);
  color: var(--color-body);
}

versla-shoppingcart a.axil-btn.btn-bg-lighter:before,
versla-shoppingcart button.axil-btn.btn-bg-lighter:before, .versla-styling a.axil-btn.btn-bg-lighter:before,
.versla-styling button.axil-btn.btn-bg-lighter:before {
  background-color: var(--color-lighter);
}

versla-shoppingcart a.axil-btn.btn-bg-primary,
versla-shoppingcart button.axil-btn.btn-bg-primary, .versla-styling a.axil-btn.btn-bg-primary,
.versla-styling button.axil-btn.btn-bg-primary {
  background-color: var(--versla-color-primary);
  color: var(--versla-color-white);
}

versla-shoppingcart a.axil-btn.btn-bg-primary:before,
versla-shoppingcart button.axil-btn.btn-bg-primary:before, .versla-styling a.axil-btn.btn-bg-primary:before,
.versla-styling button.axil-btn.btn-bg-primary:before {
  background-color: var(--versla-color-primary);
}

versla-shoppingcart a.axil-btn.btn-bg-primary i,
versla-shoppingcart button.axil-btn.btn-bg-primary i, .versla-styling a.axil-btn.btn-bg-primary i,
.versla-styling button.axil-btn.btn-bg-primary i {
  color: var(--versla-color-white);
}

versla-shoppingcart a.axil-btn.btn-bg-primary:hover:not([disabled]):after,
versla-shoppingcart button.axil-btn.btn-bg-primary:hover:not([disabled]):after, .versla-styling a.axil-btn.btn-bg-primary:hover:not([disabled]):after,
.versla-styling button.axil-btn.btn-bg-primary:hover:not([disabled]):after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

versla-shoppingcart a.axil-btn.btn-bg-primary :disabled,
versla-shoppingcart button.axil-btn.btn-bg-primary :disabled, .versla-styling a.axil-btn.btn-bg-primary :disabled,
.versla-styling button.axil-btn.btn-bg-primary :disabled {
  opacity: 0.6;
}

versla-shoppingcart a.axil-btn.btn-bg-secondary,
versla-shoppingcart button.axil-btn.btn-bg-secondary, .versla-styling a.axil-btn.btn-bg-secondary,
.versla-styling button.axil-btn.btn-bg-secondary {
  background-color: var(--versla-color-secondary);
  color: var(--versla-color-white);
}

versla-shoppingcart a.axil-btn.btn-bg-secondary i,
versla-shoppingcart button.axil-btn.btn-bg-secondary i, .versla-styling a.axil-btn.btn-bg-secondary i,
.versla-styling button.axil-btn.btn-bg-secondary i {
  color: var(--versla-color-white);
}

versla-shoppingcart a.axil-btn.btn-bg-secondary:before,
versla-shoppingcart button.axil-btn.btn-bg-secondary:before, .versla-styling a.axil-btn.btn-bg-secondary:before,
.versla-styling button.axil-btn.btn-bg-secondary:before {
  background-color: var(--versla-color-secondary);
}

versla-shoppingcart a.axil-btn.btn-bg-secondary:hover:not([disabled]):after,
versla-shoppingcart button.axil-btn.btn-bg-secondary:hover:not([disabled]):after, .versla-styling a.axil-btn.btn-bg-secondary:hover:not([disabled]):after,
.versla-styling button.axil-btn.btn-bg-secondary:hover:not([disabled]):after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

versla-shoppingcart a.axil-btn.btn-bg-secondary :disabled,
versla-shoppingcart button.axil-btn.btn-bg-secondary :disabled, .versla-styling a.axil-btn.btn-bg-secondary :disabled,
.versla-styling button.axil-btn.btn-bg-secondary :disabled {
  opacity: 0.6;
}

versla-shoppingcart a.axil-btn.btn-outline,
versla-shoppingcart button.axil-btn.btn-outline, .versla-styling a.axil-btn.btn-outline,
.versla-styling button.axil-btn.btn-outline {
  border: 2px solid var(--color-heading);
}

versla-shoppingcart a.axil-btn.btn-outline:hover,
versla-shoppingcart button.axil-btn.btn-outline:hover, .versla-styling a.axil-btn.btn-outline:hover,
.versla-styling button.axil-btn.btn-outline:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--versla-color-white);
}

versla-shoppingcart versla-loader, .versla-styling versla-loader {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: inherit;
}

versla-shoppingcart versla-loader .versla-loader, .versla-styling versla-loader .versla-loader {
  border: 16px solid var(--versla-color-light);
  border-top: 16px solid var(--versla-color-primary);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 42%;
  left: 42%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: inherit;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 479px) {
  versla-shoppingcart .versla-line-items, .versla-styling .versla-line-items {
    padding-left: 10px;
  }
}

versla-shoppingcart .versla-line-item-template, .versla-styling .versla-line-item-template {
  display: none;
}

versla-shoppingcart .cart-item, .versla-styling .cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #F6F7FB;
  padding-bottom: 30px;
}

versla-shoppingcart .cart-item:last-child, .versla-styling .cart-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

versla-shoppingcart .cart-item .label-block, .versla-styling .cart-item .label-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

versla-shoppingcart .cart-item .product-badge, .versla-styling .cart-item .product-badge {
  margin: 2px 3px;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-primary);
  line-height: 1;
  padding: 6px 10px 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--versla-color-white);
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 16px 0 rgba(53, 119, 240, 0.3);
  box-shadow: 0 8px 16px 0 rgba(53, 119, 240, 0.3);
}

versla-shoppingcart .cart-item .item-img, .versla-styling .cart-item .item-img {
  margin-right: 30px;
  position: relative;
}

@media only screen and (max-width: 479px) {
  versla-shoppingcart .cart-item .item-img, .versla-styling .cart-item .item-img {
    margin-right: 10px;
  }
}

versla-shoppingcart .cart-item .item-img a, .versla-styling .cart-item .item-img a {
  display: block;
  background-color: #F6F7FB;
  border-radius: 10px;
}

versla-shoppingcart .cart-item .item-img a img, .versla-styling .cart-item .item-img a img {
  border-radius: 10px;
  height: auto;
  width: 100px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

@media only screen and (max-width: 479px) {
  versla-shoppingcart .cart-item .item-img a img, .versla-styling .cart-item .item-img a img {
    width: 70px;
  }
}

versla-shoppingcart .cart-item .item-img .close-btn, .versla-styling .cart-item .item-img .close-btn {
  height: 31px;
  min-width: 31px;
  width: 31px;
  background-color: #F6F7FB;
  border: 2px solid var(--versla-color-white);
  border-radius: 50%;
  font-size: 12px;
  color: var(--versla-color-black);
  position: absolute;
  top: -15px;
  left: -10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

versla-shoppingcart .cart-item .item-img .close-btn:hover, .versla-styling .cart-item .item-img .close-btn:hover {
  background-color: var(--versla-color-primary);
  color: var(--versla-color-white);
  fill: var(--versla-color-white);
}

versla-shoppingcart .cart-item .item-img .close-btn svg, .versla-styling .cart-item .item-img .close-btn svg {
  height: 12px;
}

versla-shoppingcart .cart-item .item-content, .versla-styling .cart-item .item-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

versla-shoppingcart .cart-item .item-content .item-title, .versla-styling .cart-item .item-content .item-title {
  font-weight: bolder;
}

versla-shoppingcart .cart-item .item-content .item-price, .versla-styling .cart-item .item-content .item-price {
  font-weight: 400;
}

versla-shoppingcart .cart-item .item-content .item-price .before-sale-price, .versla-styling .cart-item .item-content .item-price .before-sale-price {
  font-size: 1.2rem;
  text-decoration: line-through;
}

versla-shoppingcart .cart-item .item-content .versla-customfields, .versla-styling .cart-item .item-content .versla-customfields {
  color: #777777;
}

versla-shoppingcart .cart-item .item-content .promotion-message span, .versla-styling .cart-item .item-content .promotion-message span {
  display: block;
  font-size: 12px;
}

versla-shoppingcart .cart-item .item-title, .versla-styling .cart-item .item-title {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 70%;
}

versla-shoppingcart .cart-item .item-price, .versla-styling .cart-item .item-price {
  font-size: 18px;
  font-family: var(--font-secondary);
  color: var(--color-black);
}

versla-shoppingcart .cart-item .item-quantity, .versla-styling .cart-item .item-quantity {
  position: absolute;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  top: 3rem;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity, .versla-styling .cart-item .item-quantity .versla-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity .qtybtn, .versla-styling .cart-item .item-quantity .versla-quantity .qtybtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  line-height: 20px;
  font-size: 18px;
  color: var(--color-black);
  background-color: #F6F7FB;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity .qtybtn:hover, .versla-styling .cart-item .item-quantity .versla-quantity .qtybtn:hover {
  background-color: var(--versla-color-primary);
  fill: var(--versla-color-white);
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity .qtybtn .pro-qty .qtybtn, .versla-styling .cart-item .item-quantity .versla-quantity .qtybtn .pro-qty .qtybtn {
  width: 32px;
  float: left;
  line-height: 26px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  height: 32px;
  background: #F6F7FB;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid transparent;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity .qtybtn svg, .versla-styling .cart-item .item-quantity .versla-quantity .qtybtn svg {
  width: 15px;
  height: 15px;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity .quantity-input, .versla-styling .cart-item .item-quantity .versla-quantity .quantity-input {
  font-size: 16px;
  font-weight: 600;
  color: #27272E;
  height: 26px;
  width: 30px;
  border: none;
  text-align: center;
  padding: 0;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity input::-webkit-outer-spin-button,
versla-shoppingcart .cart-item .item-quantity .versla-quantity input::-webkit-inner-spin-button, .versla-styling .cart-item .item-quantity .versla-quantity input::-webkit-outer-spin-button,
.versla-styling .cart-item .item-quantity .versla-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

versla-shoppingcart .cart-item .item-quantity .versla-quantity input[type=number], .versla-styling .cart-item .item-quantity .versla-quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

versla-shoppingcart versla-icon, .versla-styling versla-icon {
  width: 20px;
  position: absolute;
  cursor: pointer;
  border-radius: 10px;
  line-height: 1;
}

versla-shoppingcart versla-icon svg, .versla-styling versla-icon svg {
  fill: white;
  width: 50px;
}

versla-shoppingcart versla-icon .total-count-wrapper, .versla-styling versla-icon .total-count-wrapper {
  position: absolute;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  right: 5px;
  top: 5px;
  color: var(--main-white) !important;
  background-color: var(--primary-color);
  border: 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

versla-shoppingcart versla-icon.versla-float-icon, .versla-styling versla-icon.versla-float-icon {
  position: fixed;
  bottom: 40px;
  right: 40px;
  opacity: 1;
  display: block;
  width: 75px;
  height: 75px;
  line-height: 36px;
  background: var(--versla-color-secondary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 40px;
  font-weight: 500;
  border-radius: 10px;
}

versla-shoppingcart versla-icon.versla-float-icon .total-count-wrapper, .versla-styling versla-icon.versla-float-icon .total-count-wrapper {
  background-color: white !important;
  color: var(--versla-color-secondary) !important;
  border: 2px solid;
  font-size: 14px;
}

versla-shoppingcart versla-icon.versla-float-icon .versla-open-cart-button, .versla-styling versla-icon.versla-float-icon .versla-open-cart-button {
  display: grid;
  place-items: center;
}

versla-shoppingcart versla-icon.versla-float-icon.bottom-left, .versla-styling versla-icon.versla-float-icon.bottom-left {
  bottom: 1%;
  left: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.bottom-right, .versla-styling versla-icon.versla-float-icon.bottom-right {
  bottom: 1%;
  right: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.top-right, .versla-styling versla-icon.versla-float-icon.top-right {
  top: 1%;
  right: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.top-left, .versla-styling versla-icon.versla-float-icon.top-left {
  top: 1%;
  left: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.center-left, .versla-styling versla-icon.versla-float-icon.center-left {
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.center-right, .versla-styling versla-icon.versla-float-icon.center-right {
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.center-top, .versla-styling versla-icon.versla-float-icon.center-top {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 1%;
}

versla-shoppingcart versla-icon.versla-float-icon.center-bottom, .versla-styling versla-icon.versla-float-icon.center-bottom {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 1%;
}

versla-shoppingcart .versla-checkout-form, .versla-styling .versla-checkout-form {
  margin: 20px;
}

versla-shoppingcart .versla-form-group, .versla-styling .versla-form-group {
  margin-bottom: 30px;
  position: relative;
}

versla-shoppingcart .versla-form-group label, .versla-styling .versla-form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--color-body);
}

versla-shoppingcart .versla-form-group input, .versla-styling .versla-form-group input {
  border: 0 none;
  border-radius: 6px;
  height: 50px;
  font-size: var(--font-size-b2);
  padding: 0 20px;
  background-color: #fff;
  border: 1px solid var(--versla-color-light);
  width: 100%;
}

versla-shoppingcart .versla-form-group input:focus, .versla-styling .versla-form-group input:focus {
  border-color: var(--versla-color-primary);
  -webkit-box-shadow: none;
  box-shadow: none;
}

versla-shoppingcart .versla-form-group textarea, .versla-styling .versla-form-group textarea {
  min-height: 160px;
  border: 0 none;
  border-radius: 6px;
  resize: none;
  padding: 15px;
  font-size: var(--font-size-b2);
  background-color: #fff;
  border: 1px solid var(--versla-color-light);
  line-height: 1.5;
  padding-left: 30px;
  padding-top: 20px;
}

versla-shoppingcart .versla-form-group textarea:focus, .versla-styling .versla-form-group textarea:focus {
  border-color: var(--versla-color-primary);
}

versla-shoppingcart .versla-form-field:focus-visible, versla-shoppingcart .versla-form-field:-webkit-autofill, .versla-styling .versla-form-field:focus-visible, .versla-styling .versla-form-field:-webkit-autofill {
  outline: none;
}

versla-shoppingcart .versla-form-label, .versla-styling .versla-form-label {
  margin: 0;
  font-weight: bold;
}

versla-shoppingcart .versla-form-field.error, .versla-styling .versla-form-field.error {
  border: 1px solid;
  border-color: var(--versla-error-text-color);
}

versla-shoppingcart .versla-form-error, .versla-styling .versla-form-error {
  display: none;
  margin-bottom: 5px;
}

versla-shoppingcart .versla-form-error.show, .versla-styling .versla-form-error.show {
  font-weight: bold;
  font-size: 13px;
  color: var(--versla-error-text-color) !important;
  padding-left: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

versla-shoppingcart .versla-optional, .versla-styling .versla-optional {
  display: none;
}

versla-shoppingcart .versla-optional.show, .versla-styling .versla-optional.show {
  color: grey;
  font-size: x-small;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

versla-shoppingcart .versla-overview-container, .versla-styling .versla-overview-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

versla-shoppingcart #versla-overview-template, .versla-styling #versla-overview-template {
  display: none;
}

versla-shoppingcart #versla-shoppingcart-overview, .versla-styling #versla-shoppingcart-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

versla-shoppingcart .versla-shoppingcart-overview, .versla-styling .versla-shoppingcart-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

versla-shoppingcart .versla-overview-checkoutform, .versla-styling .versla-overview-checkoutform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

versla-shoppingcart .versla-overview-checkoutform > .versla-overview-name, .versla-styling .versla-overview-checkoutform > .versla-overview-name {
  font-size: 15px;
  font-weight: bold;
  padding: 0;
  margin: 2px;
}

versla-shoppingcart .versla-overview-checkoutform > .versla-overview-value, .versla-styling .versla-overview-checkoutform > .versla-overview-value {
  font-size: 15px;
  padding: 0;
  margin: 2px;
}

versla-shoppingcart #versla-checkoutform-overview-template, .versla-styling #versla-checkoutform-overview-template {
  display: none;
}

versla-shoppingcart #versla-checkoutform-overview, .versla-styling #versla-checkoutform-overview {
  padding: 0;
  margin: 10px;
}

versla-shoppingcart versla-header, .versla-styling versla-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 2px solid #F6F7FB;
  padding-bottom: 18px;
}

versla-shoppingcart versla-header .header-title, .versla-styling versla-header .header-title {
  font-size: 26px;
  color: var(--color_black);
  margin-bottom: 0;
}

versla-shoppingcart versla-header .cart-close, .versla-styling versla-header .cart-close {
  height: 40px;
  width: 40px;
  font-size: 16px;
  color: var(--color_black);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
}

versla-shoppingcart versla-header .cart-close:hover, .versla-styling versla-header .cart-close:hover {
  background-color: var(--versla-color-primary);
  color: var(--versla-color-white);
  fill: var(--versla-color-white);
}

versla-shoppingcart versla-header .cart-close svg, .versla-styling versla-header .cart-close svg {
  height: 16px;
}

versla-shoppingcart .cart-footer, .versla-styling .cart-footer {
  border-top: 2px solid #F6F7FB;
}

versla-shoppingcart .cart-footer .cart-subtotal, .versla-styling .cart-footer .cart-subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0 10px;
  color: var(--color-black);
  font-size: 20px;
}

versla-shoppingcart .cart-footer .cart-subtotal .subtotal-amount, .versla-styling .cart-footer .cart-subtotal .subtotal-amount {
  font-weight: 700;
}

versla-shoppingcart .cart-footer .group-btn, .versla-styling .cart-footer .group-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

versla-shoppingcart .cart-footer .group-btn .axil-btn, .versla-styling .cart-footer .group-btn .axil-btn {
  border: 0;
  text-align: center;
}

versla-shoppingcart .cart-footer .group-btn .axil-btn:hover:not([disabled]):before, .versla-styling .cart-footer .group-btn .axil-btn:hover:not([disabled]):before {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

versla-shoppingcart .cart-footer .group-btn .axil-btn[disabled], .versla-styling .cart-footer .group-btn .axil-btn[disabled] {
  opacity: 0.6;
}
