/**
 * Shopping cart styles
 *
 * @version 1.0
 * @created [2023-03-03]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
/**
 * LESS mixins
 *
 * @version 1.0
 * @created [2022-12-16]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
/**
 * Less variables for the whole project
 *
 * @version 1.0
 */
.no-bulls {
  list-style: none;
}
#cart {
  /**
 * Shopping cart navigation
 *
 * @version 1.0
 * @created [2023-03-04]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
  /**
 * Shopping cart overview
 *
 * @version 1.0
 * @created [2023-03-04]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
  /**
 * Shopping cart customer information
 *
 * @version 1.0
 * @created [2023-04-17]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
  /**
 * Shopping cart delivery information
 *
 * @version 1.0
 * @created [2023-07-26]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
  /**
 * Shopping cart summary page
 *
 * @version 1.0
 * @created [2023-07-26]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
  /**
 * Shopping cart overview
 *
 * @version 1.0
 * @created [2023-03-04]
 * @author  [Jakub Prokopec <jakub.prokopec@gmail.com>]
 */
}
#cart .cart-box {
  padding: 10px 6%;
}
#cart .cart-message {
  font-size: 18px;
  font-weight: 500;
}
#cart h1 {
  margin-bottom: 20px;
}
#cart .form-group.required > label::after {
  content: "*";
  color: #f23d61;
  font-weight: 700;
  display: inline-block;
  padding-left: 0.25em;
}
#cart .form-group > label {
  color: #1a1a1a;
  font-size: 15px;
}
#cart .cart-navigation {
  margin-bottom: 30px;
}
@media (max-width:991px) {
  #cart .cart-navigation {
    display: none;
  }
}
#cart .cart-navigation .cart-box ul {
  box-shadow: 0 0 10px 2px #dedede;
  -webkit-box-shadow: 0 0 10px 2px #dedede;
  -moz-box-shadow: 0 0 10px 2px #dedede;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
}
@media (max-width:991px) {
  #cart .cart-navigation .cart-box ul {
    flex-wrap: wrap;
  }
}
#cart .cart-navigation .cart-box ul li {
  text-align: center;
  list-style: none;
  background: #f7f7f7;
  padding: 20px;
  width: 25%;
  position: relative;
  font-size: 16px;
  color: #1a1a1a;
}
@media (max-width:991px) {
  #cart .cart-navigation .cart-box ul li {
    width: 100%;
  }
}
#cart .cart-navigation .cart-box ul li span {
  font-weight: 500;
}
#cart .cart-navigation .cart-box ul li.active {
  background: #30c2ff;
  color: #ffffff;
  background: #69e0ff;
  background: linear-gradient(45deg, #2ac2e9 0%, #69e0ff 100%);
  border-color: #36d5ff;
}
#cart .cart-navigation .cart-box ul li.active:not(:last-child):after {
  border-color: transparent transparent transparent #62ddfd;
}
#cart .cart-navigation .cart-box ul li:not(:last-child):before {
  z-index: 10;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2em 0 2em 1em;
  border-color: transparent transparent transparent #e5e5e5;
}
#cart .cart-navigation .cart-box ul li:not(:last-child):after {
  z-index: 11;
  position: absolute;
  border-color: transparent transparent transparent #f7f7f7;
  left: calc(100% - 3px);
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2em 0 2em 1em;
}
#cart .cart-overview {
  width: 100%;
  font-size: 14px;
}
#cart .cart-overview li {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
@media (max-width:991px) {
  #cart .cart-overview li {
    flex-wrap: wrap;
  }
}
#cart .cart-overview li.added-product {
  background: #f7f7f7;
}
#cart .cart-overview li .cart-image {
  width: 8%;
  min-width: 56px;
}
#cart .cart-overview li .cart-image img {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  max-width: 56px;
  max-height: 56px;
  width: auto;
  box-shadow: 0 0 10px 2px #dedede;
  -webkit-box-shadow: 0 0 10px 2px #dedede;
  -moz-box-shadow: 0 0 10px 2px #dedede;
}
@media (max-width:991px) {
  #cart .cart-overview li .cart-image {
    width: 30%;
  }
  #cart .cart-overview li .cart-image img {
    max-width: inherit;
    max-height: inherit;
    width: 100%;
    height: 100%;
  }
}
#cart .cart-overview li .cart-name {
  width: 70%;
  padding: 0 10px;
}
#cart .cart-overview li .cart-name a {
  color: #206469;
  font-weight: 500;
  font-size: 16px;
}
#cart .cart-overview li .cart-name span {
  color: #676e6d;
}
@media (max-width:991px) {
  #cart .cart-overview li .cart-name {
    padding-left: 20px;
  }
}
#cart .cart-overview li .cart-price {
  width: 40%;
  text-align: right;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}
#cart .cart-overview li .cart-price small {
  color: #676e6d;
  font-size: 11px;
}
#cart .cart-overview li .cart-price .input-group {
  width: 200px;
}
#cart .cart-overview li .cart-price .input-group button {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#cart .cart-overview li .cart-price .input-group #quantity {
  max-width: 90px;
  padding-right: 10px;
}
#cart .cart-overview li .cart-price .input-group .unit {
  line-height: 34px;
}
#cart .cart-overview li .cart-price .cart-item-total {
  min-width: 140px;
}
@media (max-width:991px) {
  #cart .cart-overview li .cart-price {
    justify-content: space-between;
    margin-top: 30px;
    width: 90%;
  }
  #cart .cart-overview li .cart-price .input-group {
    width: 160px;
  }
  #cart .cart-overview li .cart-price .cart-item-total {
    min-width: inherit;
    white-space: nowrap;
  }
}
#cart .cart-overview li .cart-remove {
  padding-left: 14px;
}
#cart .cart-overview li .cart-remove a {
  font-size: 17px;
  color: red;
}
@media (max-width:991px) {
  #cart .cart-overview li .cart-remove {
    text-align: right;
    margin-top: 30px;
    width: 10%;
    padding-left: 0;
  }
  #cart .cart-overview li .cart-remove a {
    padding: 10px;
  }
}
#cart .cart-overview li.cart-summary {
  height: 78px;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  color: #1a1a1a;
  justify-content: space-between;
}
#cart .cart-overview li.cart-summary .cart-name {
  width: 80%;
}
#cart .cart-overview li.cart-summary .cart-price {
  color: #676e6d;
  font-size: 15px;
}
#cart .cart-overview li.cart-summary .cart-price span {
  color: #1a1a1a;
}
@media (max-width:991px) {
  #cart .cart-overview li.cart-summary {
    height: auto;
  }
  #cart .cart-overview li.cart-summary .cart-price {
    margin-top: 10px;
  }
}
#cart .cart-overview li.cart-buttons {
  border: none;
  padding-top: 30px;
  justify-content: space-between;
}
#cart .cart-overview li.cart-buttons a {
  max-width: 240px;
  font-size: 14px;
  font-weight: 500;
}
#cart .cart-overview li.cart-buttons a.btn-action {
  float: right;
}
#cart .cart-overview li.cart-buttons a i {
  padding-left: 10px;
}
#cart .cart-overview li.cart-buttons .cart-continue {
  width: 50%;
}
#cart .cart-overview li.cart-buttons .cart-cashier {
  width: 50%;
  text-align: right;
}
@media (max-width:991px) {
  #cart .cart-overview li.cart-buttons {
    flex-direction: column-reverse;
  }
  #cart .cart-overview li.cart-buttons .modal-cart-continue {
    width: 100%;
  }
  #cart .cart-overview li.cart-buttons a {
    max-width: inherit;
  }
  #cart .cart-overview li.cart-buttons .cart-cashier {
    width: 100%;
    margin-bottom: 20px;
  }
  #cart .cart-overview li.cart-buttons .cart-cashier a {
    width: 100%;
  }
  #cart .cart-overview li.cart-buttons .cart-cashier a.btn-action {
    float: none;
    flex-wrap: nowrap;
  }
}
#cart .cart-overview li.cart-error {
  display: none;
  background: #f8d7da;
}
#cart .cart-customer {
  width: 100%;
  font-size: 14px;
}
#cart .cart-customer input,
#cart .cart-customer textarea {
  background-color: #f4f4f4;
}
#cart .cart-customer input::placeholder {
  color: #9f9f9f;
  opacity: 1;
}
#cart .cart-customer .form-group {
  margin-bottom: 14px;
}
#cart .cart-customer .btn-action {
  font-weight: 400;
  float: right;
}
#cart ul.smap-suggest {
  display: none !important;
}
#cart .cart-delivery {
  width: 100%;
  font-size: 14px;
}
#cart .cart-delivery .accordion-item {
  border: none;
}
#cart .cart-delivery .form-group {
  margin-bottom: 14px;
}
#cart .cart-delivery .btn-action {
  float: right;
}
@media (max-width:991px) {
  #cart .cart-delivery .btn-action {
    float: none;
    width: 100%;
  }
}
#cart .cart-delivery .accordion-item .delivery-list {
  margin-left: 14px;
}
@media (max-width:991px) {
  #cart .cart-delivery .accordion-item .delivery-list {
    margin-left: 6px;
  }
}
#cart .cart-delivery .delivery-list {
  margin-top: 14px;
  margin-bottom: 14px;
}
#cart .cart-delivery .delivery-list li {
  position: relative;
  margin-bottom: 14px;
  background-color: #f4f4f4;
  padding: 0;
}
#cart .cart-delivery .delivery-list li input {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  display: block;
}
@media (max-width:991px) {
  #cart .cart-delivery .delivery-list li input {
    left: 15px;
  }
}
#cart .cart-delivery .delivery-list li label {
  display: flex;
  align-items: center;
  padding: 14px 20px 14px 50px;
  cursor: pointer;
  font-weight: 500;
  height: 52px;
}
#cart .cart-delivery .delivery-list li label .image {
  width: 60px;
  height: 60px;
  width: 52px;
  height: 52px;
  display: inline;
}
#cart .cart-delivery .delivery-list li label .image .image-wrapper {
  margin-top: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cart .cart-delivery .delivery-list li label .image .image-wrapper img {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 80%;
  margin: auto;
}
#cart .cart-delivery .delivery-list li label .name {
  padding: 0 8px;
}
#cart .cart-delivery .delivery-list li label .price {
  white-space: nowrap;
  margin-left: auto;
  font-size: 14px;
  color: #206469;
  font-weight: 500;
}
#cart .cart-delivery .delivery-list li label .price.free {
  font-size: 14px;
  color: #31a531;
}
#cart .cart-delivery .delivery-list li label:hover {
  color: #206469;
  transition: color 0.25s;
}
#cart .cart-delivery .delivery-list li label.disabled .name {
  color: #86919d;
}
@media (max-width:991px) {
  #cart .cart-delivery .delivery-list li label {
    padding: 14px 15px 14px 35px;
  }
  #cart .cart-delivery .delivery-list li label .name {
    font-size: 14px;
  }
  #cart .cart-delivery .delivery-list li label .price {
    font-size: 15px;
  }
}
#cart .cart-delivery .delivery-list li:hover {
  background-color: #f9f9f9;
  transition: background-color 0.25s;
}
#cart .cart-delivery .delivery-list.delivery li label {
  padding-top: 0;
  padding-bottom: 0;
}
#cart .cart-delivery .delivery-list.delivery li label.no-image {
  padding: 14px 0 14px 30px;
}
#cart .cart-delivery #delivery-method-post-heading {
  margin-top: 14px;
}
#cart .cart-delivery .delivery-method {
  margin-bottom: 14px;
  background-color: #f4f4f4;
  padding: 0;
}
#cart .cart-delivery .delivery-method a {
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #1a1a1a;
  padding: 0 20px;
}
#cart .cart-delivery .delivery-method a:hover {
  color: #206469;
  background-color: #f9f9f9;
  transition: color background-color 0.25s;
}
#cart .cart-delivery .delivery-method a .delivery-image {
  width: 52px;
  height: 52px;
  display: inline;
}
#cart .cart-delivery .delivery-method a .delivery-image .delivery-image-wrapper {
  border: 1px solid #dee2e6;
  margin-top: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
}
#cart .cart-delivery .delivery-method a .delivery-image .delivery-image-wrapper img {
  width: 80%;
  margin: auto;
}
#cart .cart-delivery .delivery-method a .delivery-image .delivery-image-wrapper.zasilkovna img {
  width: 100%;
}
#cart .cart-delivery .delivery-method a .delivery-title {
  margin-left: 10px;
}
#cart .cart-delivery .delivery-method a .delivery-arrow {
  width: 8px;
  height: 8px;
  transform: rotate(225deg);
  transition: transform 0.25s;
  display: inline-block;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin-left: auto;
  margin-top: 0;
}
#cart .cart-delivery .delivery-method a.collapsed .delivery-arrow {
  margin-top: -4px;
  transform: rotate(45deg);
}
#cart #modal-overlay .post-modal {
  height: 600px;
  width: 100%;
}
#cart .cart-summary {
  width: 100%;
  font-size: 14px;
}
#cart .cart-summary .cart-overview li {
  padding: 10px;
  margin-bottom: 10px;
  min-height: 83px;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier {
  width: 100%;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier .form-check {
  clear: both;
  margin-bottom: 14px;
  display: flex;
  justify-content: end;
  padding-left: 0;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier .form-check label.form-check-label {
  cursor: pointer;
  line-height: 30px;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier .form-check-input[type=checkbox] {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 10px;
  border: 2px solid #1a1a1a;
  cursor: pointer;
  margin-left: 14px;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier .form-check-input:checked {
  background-color: #33b9ba;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier .form-check-input:checked#conditions {
  background-color: #c27559;
}
#cart .cart-summary .cart-overview li.cart-buttons .cart-cashier #submit-btn {
  margin-top: 20px;
  float: right;
}
#cart .cart-summary .cart-overview li.delivery .cart-image .delivery-image {
  width: 52px;
  height: 52px;
  display: inline;
}
#cart .cart-summary .cart-overview li.delivery .cart-image .delivery-image .delivery-image-wrapper {
  border: 1px solid #dee2e6;
  margin-top: 5px;
  margin-left: 2px;
  width: 56px;
  height: 56px;
  display: flex;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
}
#cart .cart-summary .cart-overview li.delivery .cart-image .delivery-image .delivery-image-wrapper img {
  width: 100%;
  margin: auto;
}
@media (max-width:991px) {
  #cart .cart-summary .cart-overview li .cart-name {
    font-size: 16px;
  }
  #cart .cart-summary .cart-overview li .cart-price {
    justify-content: end;
    font-size: 18px;
    margin-top: 0;
  }
}
#cart .cart-summary .cart-overview li.payment .cart-image i {
  margin-left: 14px;
  font-size: 28px;
}
#cart .cart-summary .cart-overview li.payment .free {
  font-size: 14px;
  color: #31a531;
}
#cart .cart-summary .cart-overview li.discount .cart-image i {
  margin-left: 17px;
  font-size: 24px;
}
#cart .cart-summary .cart-overview li.discount #discount-code {
  margin-left: 14px;
  border: 1px solid #e9e9e9;
  padding: 10px 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#cart .cart-summary .cart-overview li.discount .btn-stitch {
  display: inline-block;
  margin-left: 14px;
}
#cart .cart-summary .cart-overview li.discount .cart-name {
  display: flex;
  align-items: center;
}
#cart .cart-summary .cart-overview li.discount #discount-total.error {
  color: red;
}
#cart .cart-summary .cart-overview li.discount #discount-total.success {
  color: #31a531;
}
@media (max-width:991px) {
  #cart .cart-summary .cart-overview li.discount .cart-name {
    flex-wrap: wrap;
  }
  #cart .cart-summary .cart-overview li.discount .cart-name strong,
  #cart .cart-summary .cart-overview li.discount .cart-name #discount-code,
  #cart .cart-summary .cart-overview li.discount .cart-name .btn-stitch {
    flex: 1 0 100%;
    margin-left: 0;
    margin-bottom: 4px;
  }
  #cart .cart-summary .cart-overview li.discount .cart-name #discount-code {
    width: 100%;
  }
}
#cart .cart-summary .cart-overview li.cart-summary {
  height: auto;
  padding: 20px 0;
}
#cart .cart-summary .cart-overview li.cart-summary .cart-price {
  font-size: 16px;
  width: 260px;
  flex-wrap: wrap;
}
#cart .cart-summary .cart-overview li.cart-summary .cart-price .price-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#cart .cart-summary .cart-overview li.cart-summary .cart-price .price-item span {
  color: #676e6d;
}
#cart .cart-summary .cart-overview li.cart-summary .cart-price .price-item span.price-item-total {
  color: #1a1a1a;
}
#cart .cart-summary .cart-overview li.cart-summary .cart-price .price-item.total {
  font-size: 18px;
  margin-top: 20px;
}
#cart .cart-summary .cart-overview li.cart-summary .cart-price #summary-discount-wrapper {
  display: none;
}
@media (max-width:991px) {
  #cart .cart-summary .cart-overview li.cart-summary .modal-cart-name {
    display: none;
  }
  #cart .cart-summary .cart-overview li.cart-summary .cart-price {
    width: 100%;
  }
}
#cart .cart-aside {
  padding-top: 0;
  padding-right: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media (max-width: 767.98px) {
  #cart .cart-aside {
    display: none;
  }
}
#cart .cart-aside li {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px;
  margin-bottom: 20px;
}
#cart .cart-aside li.added-product {
  background: #f7f7f7;
}
#cart .cart-aside li .cart-image {
  width: 20%;
}
#cart .cart-aside li .cart-image img {
  width: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  max-width: 56px;
  max-height: 56px;
  width: auto;
  box-shadow: 0 0 10px 2px #dedede;
  -webkit-box-shadow: 0 0 10px 2px #dedede;
  -moz-box-shadow: 0 0 10px 2px #dedede;
}
#cart .cart-aside li .cart-name {
  text-align: left;
  font-size: 12px;
  width: 50%;
  padding: 0 0 0 10px;
}
#cart .cart-aside li .cart-name a {
  width: 180px;
  color: #206469;
  font-weight: 500;
  font-size: 14px;
  display: table-cell;
  line-height: 18px;
  padding: 0;
}
#cart .cart-aside li .cart-name br {
  display: none;
}
#cart .cart-aside li .cart-name span {
  color: #676e6d;
}
#cart .cart-aside li .cart-name .product-delivery {
  display: none;
}
#cart .cart-aside li .cart-price {
  width: 30%;
  text-align: right;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}
#cart .cart-aside li .cart-price small {
  color: #676e6d;
  font-size: 11px;
}
#cart .cart-aside li .cart-price .input-group {
  display: none;
}
#cart .cart-aside li .cart-price .cart-item-total {
  min-width: 140px;
}
#cart .cart-aside li .cart-remove {
  display: none;
}
#cart .cart-aside li.cart-summary {
  height: 30px;
  border: none;
  color: #1a1a1a;
  display: flex;
  justify-content: end;
  font-size: 12px;
  padding: 0;
  margin-top: -10px;
}
#cart .cart-aside li.cart-summary .cart-price {
  width: 100%;
  color: #676e6d;
  font-size: 12px;
  text-align: left;
}
#cart .cart-aside li.cart-summary .cart-price span {
  color: #1a1a1a;
}
#cart .cart-aside li.cart-summary .cart-cashier {
  width: 35%;
  text-align: right;
}
#cart .cart-aside li.cart-summary .cart-cashier a {
  max-width: 140px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 0.5em 0.6em / 0.6em 3em 2em 3em;
}
#cart .cart-aside li.cart-summary .cart-cashier a.btn-colored {
  float: right;
}
#cart .cart-aside li.cart-summary .cart-cashier a i {
  padding-left: 10px;
}
