/* Application colors */
/* Application Fonts */
/* Shadows */
/* for the transition to work, same number of subshadows need to be defined */
/* Borders */
.has-items .open-cart-link,
.show-cart-when-empty .open-cart-link {
  display: block !important;
}

.open-cart-link.main-open-link {
  margin-left: 22px;
}
.open-cart-link.main-open-link span {
  color: #005dbb;
}
.open-cart-link.main-open-link span:before, .open-cart-link.main-open-link span:after {
  display: inline;
  color: #4d4d4d;
}
.open-cart-link.main-open-link span:before {
  content: "(";
}
.open-cart-link.main-open-link span:after {
  content: ")";
}

header.main-navigation .nav > li > a.open-cart-link {
  display: none;
}

body.cart-visible #cart {
  visibility: visible;
}

body.cart-opened {
  overflow: hidden;
}
body.cart-opened header.main-navigation {
  z-index: 0;
}
body.cart-opened #cart {
  opacity: 1;
}
body.cart-opened #cart .cart-content {
  left: calc(100% - 535px);
}

#cart {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #2b2b2b;
  font-weight: normal;
}
#cart:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(122deg, #3b93bc, #4f98dc 55%, #025dba 100%);
  opacity: 0.9;
}
#cart .cart-light-btn {
  box-shadow: 8px 2px 32px 0 rgba(18, 61, 101, 0.15), -8px -8px 20px 0 rgba(255, 255, 255, 0.6), inset -4px -3px 40px 0 rgba(255, 255, 255, 0.09);
  border-style: solid;
  border-width: 0.5px;
  border-image-source: linear-gradient(135deg, #ffffff, #ffffff 62%, #cbd7e5);
  border-image-slice: 1;
  background-image: linear-gradient(135deg, #e8f1f9, #edf5fc), linear-gradient(135deg, #ffffff, #ffffff 62%, #cbd7e5);
  background-origin: border-box;
  color: #005dbb;
  transition: all 0.3s ease;
}
#cart .cart-light-btn:hover {
  box-shadow: -2px -2px 4px 0 rgba(255, 255, 255, 0.6), inset -4px -3px 40px 0 rgba(255, 255, 255, 0.09);
  border-image-source: linear-gradient(95deg, #ffffff, #ffffff 62%, #cbd7e5);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)), linear-gradient(95deg, #e5f0f9, #edf5fc), linear-gradient(95deg, #ffffff, #ffffff 62%, #cbd7e5);
}
#cart .cart-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 101;
}
#cart .cart-header {
  max-width: 1244px;
  width: 100%;
  margin: auto;
  padding: 15px 0;
}
#cart .cart-header .cart-header-home {
  width: 134px;
  height: 23px;
  background: url("../img/logo-white.svg") no-repeat center/100% auto;
  display: block;
}
#cart .cart-content {
  position: absolute;
  top: 0;
  width: 535px;
  height: 100%;
  left: 100%;
  transition: all 0.2s ease;
  background-color: #e9eff4;
}
#cart .cart-content-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
#cart .cart-items-header {
  padding: 25px 30px 20px 30px;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #ebebeb;
  background-color: #ffffff;
}
#cart .cart-special-text {
  padding: 13px 30px 13px 30px;
  background-color: rgba(130, 214, 189, 0.2509803922);
}
#cart .cart-items-label {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.31px;
}
#cart .hide-cart-btn {
  width: 28px;
  height: 28px;
}
#cart .hide-cart-btn .hide-cart-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#cart .hide-cart-btn .hide-cart-inner:before, #cart .hide-cart-btn .hide-cart-inner:after {
  content: "";
  display: block;
  opacity: 0.75;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  background-color: #005dbb;
  width: 100%;
  height: 1px;
}
#cart .hide-cart-btn .hide-cart-inner:before {
  transform: rotate(45deg);
}
#cart .hide-cart-btn .hide-cart-inner:after {
  transform: rotate(-45deg);
}
#cart .cart-items {
  background-color: #ffffff;
}
#cart .cart-items-shadow {
  box-shadow: 0 2px 4px 0 rgba(77, 77, 77, 0.15);
}
#cart .cart-items-list {
  padding: 22px 15px 0 15px;
  max-height: 300px;
  overflow: auto;
}
#cart .cart-item {
  padding: 22px 15px 14px 15px;
  position: relative;
}
#cart .cart-item:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 30px);
  height: 1px;
  background-color: #ebebeb;
  left: 15px;
  bottom: 0;
}
#cart .cart-item:last-child {
  padding-bottom: 0;
}
#cart .cart-item:last-child:after {
  display: none;
}
#cart .cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin-bottom: 16px;
}
#cart .cart-item-row:last-of-type {
  margin-bottom: 0;
}
#cart .cart-item-row.addon-row {
  border-radius: 6px;
  box-shadow: inset -4px -3px 40px 0 rgba(255, 255, 255, 0.09);
  border-style: solid;
  border-width: 0.5px;
  border-image-source: linear-gradient(101deg, #ffffff, #ffffff 62%, #cbd7e5 100%);
  border-image-slice: 1;
  background-image: linear-gradient(101deg, #e5f0f9, #edf5fc 100%), linear-gradient(101deg, #ffffff, #ffffff 62%, #cbd7e5 100%);
  background-origin: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: flex-start;
  position: relative;
}
#cart .cart-item-row.addon-row .addon-badge {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 16px;
  width: 40px;
  height: 40px;
}
#cart .cart-item-row.addon-row .cart-product-title .cart-addon-title {
  font-size: 16px;
  font-weight: normal;
  display: block;
  margin-bottom: 5px;
  color: #2b2b2b;
}
#cart .cart-item-row.addon-row .cart-product-title .cart-product-desc {
  font-size: 12px;
  line-height: 150%;
  font-weight: normal;
}
#cart .cart-item-row.addon-row .cart-product-price {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.2px;
  display: flex;
  align-items: flex-start;
}
#cart .cart-item-row.addon-row .cart-product-price span {
  font-size: 12px;
}
#cart .cart-item-row.addon-row .cart-count {
  margin-right: 11px;
}
#cart .cart-product-title {
  font-size: 16px;
  font-weight: bold;
  color: #2b2b2b;
}
#cart .cart-row-right {
  display: flex;
  align-items: center;
}
#cart .cart-count {
  font-size: 18px;
  letter-spacing: 0.3px;
  display: flex;
  margin-right: 16px;
}
#cart .cart-count .cart-count-btn.decrement {
  margin-right: 6px;
}
#cart .cart-count .cart-count-btn.increment {
  margin-left: 6px;
}
#cart .cart-count .cart-count-input {
  border-radius: 3px;
  border: solid 1px rgba(31, 31, 31, 0.15);
  background-color: #f8f9fb;
  outline: none;
  width: 30px;
  height: 30px;
  text-align: center;
}
#cart .cart-count .cart-count-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
#cart .cart-product-price {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.15px;
}
#cart .cart-items-subtotal {
  padding: 14px 45px 22px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.2px;
}
#cart .cart-items-subtotal .subtitle-label {
  font-size: 18px;
}
#cart .cart-items-subtotal .subtitle-amount {
  font-size: 24px;
}
#cart .bundle-wrap {
  padding: 16px 11px 18px 19px;
  overflow: auto;
  min-height: calc(50% - 80px);
}
#cart .bundles-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.31px;
  margin-bottom: 3px;
  padding: 0 13px;
}
#cart .bundles-subtitle {
  font-size: 18px;
  letter-spacing: 0.2px;
  padding: 0 13px;
  margin-bottom: 30px;
}
#cart .bundles-list {
  padding: 0 15px;
}
#cart .cart-bundle {
  border-radius: 4px;
  box-shadow: inset -4px -3px 40px 0 rgba(255, 255, 255, 0.09);
  border-style: solid;
  border-width: 0.5px;
  border-image-source: linear-gradient(97deg, #ffffff, #ffffff 62%, #cbd7e5 100%);
  border-image-slice: 1;
  background-image: linear-gradient(97deg, #e5f0f9, #edf5fc 100%), linear-gradient(97deg, #ffffff, #ffffff 62%, #cbd7e5 100%);
  background-origin: border-box;
  padding: 7px 16px 7px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
#cart .cart-bundle:last-child {
  margin-bottom: 0;
}
#cart .bundle-left {
  flex: 0 1 85%;
}
#cart .bundle-discount {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
#cart .bundle-title {
  font-size: 20px;
  font-weight: 600;
}
#cart .add-bundle-to-cart {
  display: block;
  width: 45px;
  height: 45px;
  background: url("../img/add-cart-icn.svg") no-repeat center/20px auto;
}
#cart .add-bundle-to-cart:hover {
  background-image: url("../img/add-cart-icn.svg");
}
#cart .cart-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 30px 20px 30px;
  box-shadow: 0 -2px 4px 0 rgba(77, 77, 77, 0.15);
  background-color: #f1f6fb;
}
#cart .cart-actions .cart-action-btn {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
}
#cart .cart-actions .cart-action-btn.cart-checkout {
  margin-bottom: 15px;
}
/* Application colors */
/* Application Fonts */
/* Shadows */
/* for the transition to work, same number of subshadows need to be defined */
/* Borders */
@media (max-width: 1300px) {
  #cart .cart-header {
    max-width: 90%;
  }
}
/* Application colors */
/* Application Fonts */
/* Shadows */
/* for the transition to work, same number of subshadows need to be defined */
/* Borders */
@media (max-width: 767px) {
  body.cart-opened #cart .cart-content {
    left: 0;
  }

  #cart .cart-header {
    display: none;
  }
  #cart .cart-content {
    width: 100%;
  }
}
/* Application colors */
/* Application Fonts */
/* Shadows */
/* for the transition to work, same number of subshadows need to be defined */
/* Borders */
@media (max-width: 500px) {
  #cart .cart-content {
    background-color: #ffffff;
  }
  #cart .cart-items-header {
    position: relative;
    display: block;
    text-align: center;
    padding: 15px;
  }
  #cart .cart-special-text {
    padding: 13px 30px 13px 30px;
    background-color: rgba(130, 214, 189, 0.2509803922);
  }
  #cart .cart-items-label {
    font-size: 18px;
    letter-spacing: normal;
  }
  #cart .hide-cart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  #cart .cart-items-list {
    padding-top: 19px;
  }
  #cart .cart-item {
    padding: 14px 0;
  }
  #cart .cart-item-row {
    padding: 0 7.5px;
  }
  #cart .cart-item-row.addon-row .cart-product-title .cart-addon-title {
    font-size: 16px;
  }
  #cart .cart-item-row.addon-row .cart-product-title .cart-addon-title:before {
    top: 4px;
  }
  #cart .cart-item-row.addon-row .cart-product-title .cart-product-desc {
    max-width: 155px;
    line-height: 175%;
  }
  #cart .cart-product-title,
#cart .cart-product-price,
#cart .cart-item-row.addon-row .cart-product-price {
    font-size: 14px;
  }
  #cart .cart-count {
    margin-right: 19px;
  }
  #cart .cart-count .cart-count-input,
#cart .cart-count .cart-count-btn {
    width: 34px;
    height: 34px;
  }
  #cart .cart-items-subtotal {
    padding: 17px 15px 25px 15px;
  }
  #cart .cart-items-subtotal .subtitle-label,
#cart .cart-items-subtotal .subtitle-amount {
    font-size: 18px;
  }
  #cart .bundles-subtitle {
    margin-bottom: 27px;
  }
  #cart .bundle-wrap {
    padding: 27px 15px 18px 15px;
  }
  #cart .bundles-list {
    padding: 0;
  }
  #cart .cart-actions {
    padding-top: 23px;
  }
  #cart .cart-actions .cart-action-btn {
    font-size: 16px;
  }
  #cart .cart-actions .cart-action-btn.cart-checkout {
    margin-bottom: 10px;
  }
  #cart .cart-actions .cart-action-btn.cart-continue {
    box-shadow: none;
    background: none;
    border: none;
    padding: 0;
    width: fit-content;
    margin: auto;
  }
}
/*# sourceMappingURL=cart.css.map */
