@-webkit-keyframes animation-top-bottom {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes animation-top-bottom {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes animation-bottom-top {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animation-bottom-top {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}
@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
.cart-section .cart-empty {
  margin: 30px 0 40px;
  display: none;
}
.cart-section .cart-empty .cart-empty_icon {
  max-width: 140px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.cart-section .cart-empty .cart-empty_icon svg {
  position: relative;
  left: -5px;
}
.cart-section.empty .cart-empty {
  display: block;
}
.cart-section.empty .cart-inner,
.cart-section.empty .upsell-products {
  display: none;
}
.cart-section .line-item {
  margin-bottom: 15px;
}
.cart-section .section-wrapper {
  padding: 30px 0;
  margin-bottom: 40px;
}
.cart-section .cart-title {
  margin-bottom: 30px;
}
.cart-section .cart-title .cart-wrapper {
  display: flex;
}
.cart-section .cart-content .line-item_wrapper {
  background: var(--miscellaneous-color);
  border: 1px solid var(--body-border-color);
}
.cart-section .cart-content .line-item_price {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--body-border-color);
}
.cart-section .cart-content .line-item_price .price-compare {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}
.cart-section .cart-content .line-item_price .price {
  font-weight: 400;
  color: var(--color-second);
  font-size: 15px;
}
.cart-section .cart-content .line-item_total {
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid var(--body-border-color);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-second);
}
.cart-section .cart-content .line-item_quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  max-width: 100px;
  height: 45px;
  background: var(--body-border-color);
  border-radius: 2px;
}
.cart-section .cart-content .line-item_quantity input {
  width: 30px;
  padding: 0;
  border: 0;
  text-align: center;
  color: var(--color-second);
}
.cart-section
  .cart-content
  .line-item_quantity
  input[type="number"]::-webkit-inner-spin-button,
.cart-section
  .cart-content
  .line-item_quantity
  input[type="number"]::-webkit-outer-spin-button {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.cart-section .cart-content .line-item_quantity > a {
  width: 30px;
  height: 100%;
  opacity: 0.7;
  color: var(--color-second);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .cart-section .cart-content .line-item_quantity > a:hover {
    background: var(--body-border-color);
    opacity: 1;
  }
}
.cart-section .cart-content .line-item_quantity svg {
  width: 10px;
  height: 10px;
}
.cart-section .cart-content .line-item {
  position: relative;
}
.cart-section .cart-content .line-item .btn-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
}
.cart-section .cart-content .line-item .btn-remove svg {
  width: 12px;
  height: 12px;
  color: var(--text-miscellaneous);
}
@media (hover: hover) {
  .cart-section .cart-content .line-item .btn-remove:hover {
    opacity: 0.8;
  }
}
.cart-section .cart-content .line-item_headline {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--body-border-color);
}
.cart-section .cart-content .image {
  width: 100%;
  max-width: 125px;
  -webkit-margin-end: var(--gutter-xs);
  margin-inline-end: var(--gutter-xs);
}
.cart-section .cart-content .line-item_info {
  padding: 10px 0;
  height: 100%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.cart-section .cart-content .line-item_info .name {
  width: 100%;
}
.cart-section .cart-content .line-item_info strong {
  font-weight: 500;
  color: var(--color-second);
}
.cart-section .cart-content .options p {
  margin: 4px 0;
  color: var(--body-second-color);
  font-size: 13px;
}
.cart-section .cart-content .options p:last-child {
  margin-bottom: 0;
}
.cart-section .cart-content_headline {
  display: none;
}
.cart-section .cart-content_redirect {
  margin: 30px 0 50px;
  display: flex;
  justify-content: space-between;
}
.cart-section .cart-content_redirect > a {
  display: inline-flex;
  align-items: center;
}
.cart-section .cart-content_redirect > a .svg_element-ui {
  -webkit-margin-start: 3px;
  margin-inline-start: 3px;
}
.cart-section .cart-content_redirect > a svg {
  width: 10px;
  height: 10px;
  display: flex;
}
.cart-section .cart-content_redirect .btn-update {
  -webkit-margin-start: 30px;
  margin-inline-start: 30px;
}
.cart-section .cart-content_bottom {
  grid-gap: 30px;
  color: var(--color-second);
}
.cart-section .cart-content_bottom .cart-note_title {
  font-size: 18px;
  margin: 0 0 20px;
  font-weight: 500;
}
.cart-section .cart-content_bottom textarea {
  min-height: 120px;
  height: 100%;
}
.cart-section .cart-content_bottom .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  margin-bottom: 22px;
  font-weight: 500;
  border-bottom: 1px solid var(--body-border-color);
}
.cart-section .cart-content_bottom .cart-total .title {
  text-transform: uppercase;
}
.cart-section .cart-content_bottom .cart-total .price {
  font-size: 26px;
  color: var(--price-sale-color);
}
.cart-section .cart-content_bottom .terms-and-conditions {
  position: relative;
}
.cart-section
  .cart-content_bottom
  .terms-and-conditions
  input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.cart-section
  .cart-content_bottom
  .terms-and-conditions
  input[type="checkbox"]:checked
  ~ label:after {
  visibility: visible;
}
.cart-section
  .cart-content_bottom
  .terms-and-conditions
  input[type="checkbox"]:checked
  ~ label:before {
  background: #0773f9;
  border-color: #0773f9;
}
.cart-section .cart-content_bottom .terms-and-conditions > label {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--body-font-size);
}
.cart-section .cart-content_bottom .terms-and-conditions > label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 4px;
  border: 1px solid black;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}
.cart-section .cart-content_bottom .terms-and-conditions > label:after {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10'%3E%3Cpath fill='%23fff' d='M12 1.741L4.267 10 0 5.427l1.633-1.739L4.27 6.515 10.37 0 12 1.741z'/%3E%3C/svg%3E");
  position: absolute;
  left: 3px;
  top: 0;
  bottom: -1px;
  display: flex;
  align-items: center;
  visibility: hidden;
}
.cart-section .text-right {
  margin-top: 25px;
}
.cart-section .free-shipping {
  margin-top: 15px;
}
.cart-section .free-shipping .price {
  font-size: 14px;
  color: var(--color-second);
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
}
.cart-section .free-shipping .text {
  font-size: var(--body-font-size);
}
.cart-section .upsell-products {
  margin-top: 50px;
  color: var(--body-color);
}
.cart-section .upsell-products .section_title-text-1 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-second);
}
.cart-section .upsell-products .tns-ovh {
  padding: 3px;
}
.cart-section .upsell-products .upsell-products_list {
  margin-top: 3px;
}
.cart-section .upsell-products .product-card {
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.05);
}
.cart-section .shipping-calculator_form .form-group select {
  padding: 0 15px;
}
.cart-section .shipping-calculator_form .form-group input {
  height: 42px;
}
.cart-section .shipping-calculator_form .form-group .js-btn-submit-shipping {
  padding: 8px 30px;
  height: 42px;
}
.cart-section .shipping-calculator_results > div {
  padding-bottom: 30px;
}
.cart-section .shipping-calculator_results .title {
  padding: 5px 0;
}
.cart-section .shipping-calculator_results ul li {
  list-style: unset;
  margin: 5px 0;
}
@media (min-width: 768px) {
  .cart-section .cart-content_redirect {
    display: block;
  }
  .cart-section .section-wrapper {
    background: var(--miscellaneous-color);
    padding: 30px;
    margin-bottom: 60px;
  }
  .cart-section .line-item {
    margin-bottom: 0;
  }
  .cart-section .cart-content {
    font-size: 15px;
  }
  .cart-section .cart-content .line-item_info {
    -webkit-border-start: 1px solid var(--body-border-color);
    border-inline-start: 1px solid var(--body-border-color);
    padding: 10px;
  }
  .cart-section .cart-content .line-item_info strong {
    font-weight: 400;
  }
  .cart-section .cart-content .line-item_wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr minmax(100px, 100px) minmax(100px, 100px) 50px;
  }
  .cart-section .cart-content .line-item_wrapper:last-child {
    border-top: 0;
  }
  .cart-section .cart-content .image {
    max-width: 110px;
    padding: 10px;
  }
  .cart-section .cart-content .line-item_headline,
  .cart-section .cart-content .line-item_price,
  .cart-section .cart-content .line-item_total {
    border: 0;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-border-end: 1px solid var(--body-border-color);
    border-inline-end: 1px solid var(--body-border-color);
  }
  .cart-section .cart-content .line-item_total {
    -webkit-border-start: 1px solid var(--body-border-color);
    border-inline-start: 1px solid var(--body-border-color);
  }
  .cart-section .cart-content .price-compare {
    display: none;
  }
  .cart-section .cart-content .line-item .btn-remove {
    margin: 0 auto;
    background: none;
    border: 1px solid var(--color-second);
    border-radius: 2px;
    position: unset;
  }
  .cart-section .cart-content .line-item .btn-remove svg {
    color: var(--color-second);
  }
  .cart-section .cart-content .line-item_price {
    display: none;
  }
  .cart-section .cart-content .line-item_price,
  .cart-section .cart-content .line-item_total {
    justify-content: center;
  }
  .cart-section .cart-content_headline {
    display: grid;
    text-align: center;
    align-items: center;
    height: 55px;
    background: var(--body-border-color);
    color: var(--color-second);
    font-size: 15px;
    grid-template-columns: 1fr minmax(100px, 100px) minmax(100px, 100px) 50px;
  }
  .cart-section .cart-content_headline .price_title {
    display: none;
  }
  .cart-section .cart-content_bottom {
    grid-template-columns: 1fr 40%;
  }
}
@media (min-width: 1100px) {
  .cart-section .cart-content .line-item_wrapper {
    grid-template-columns:
      1fr minmax(100px, 150px) minmax(100px, 150px) minmax(100px, 150px)
      50px;
  }
  .cart-section .cart-content .line-item_price {
    display: flex;
  }
  .cart-section .cart-content_headline {
    grid-template-columns:
      1fr minmax(100px, 150px) minmax(100px, 150px) minmax(100px, 150px)
      50px;
  }
  .cart-section .cart-content_headline .price_title {
    display: block;
  }
}

/*# sourceMappingURL=cart-page.min.css.map */
