.woocommerce-info.red {
  color: var(--color-red);
  font-size: 18px;
  padding: 0;
  margin: 1em 0;
}
section#cart .cart-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#cart .top {
  padding: 120px 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
section#cart .top #pay-now {
  padding: 20px 60px;
  border: 1px solid var(--color-black);
  border-radius: 50px;
}
#navigation #header-cart {
  position: fixed;
  background-color: #F3F4F5;
  height: 80vh;
  max-width: 600px;
  width: calc(100% - 20px);
  right: 10px;
  top: 74px;
  z-index: 999999999999;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease-out;
  overflow: hidden;
  border: 1px solid var(--color-lightgray);
}
#navigation #header-cart .scroll-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
#navigation #header-cart:before {
    background-color: rgba(255,255,255,0.7);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all 0.2s ease;
    width: 100%;
    z-index: 9;
  }
#navigation #header-cart:after {
  animation: spin 1s linear infinite;
  border: 5px solid rgba(0,0,0,0.2);
  border-top: 5px solid #25408f;
  border-radius: 50%;
  content: '';
  display: block;
  height: 50px;
  left: calc(50% - 25px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 25px);
  transition: opacity 0.5s ease;
  width: 50px;
  z-index: 99;
}
#navigation #header-cart.loading {
  cursor: not-allowed;
}
#navigation #header-cart.loading:before,
#navigation #header-cart.loading:after {
  opacity: 1;
}
#navigation #header-cart.loading * {
  pointer-events: none;
}
#navigation #header-cart section#cart .cart-content .item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 30px;
  gap: 40px;
  border-bottom: 1px solid var(--color-lightgray);
}
#navigation #header-cart .header {
  background-color: #F3F4F5;
  position: sticky;
  top: 0;
  z-index: 1;
}
section#checkout-cart section#cart .cart-content .item {
  padding: 20px;
  border-radius: 15px;
  background-color: white;
}
section#checkout-cart section#cart .cart-content .item {
	display: flex;
	background-color: #f5f5f5;
}
section#checkout-cart section#cart .cart-content .item > div:last-of-type {
  flex-direction: row;
  padding-left: 40px;
  gap: 10px;
}
section#cart .cart-content .item > div:last-of-type {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  gap: 15px;
}
section#cart .cart-content .item > div:last-of-type > div {
  display: flex;
  align-items: center;
}
section#checkout-cart
section#cart
.cart-content
.item
> div:last-of-type
> div {
  gap: 10px;
}
#navigation #header-cart .close {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  display: block;
  height: 32px;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
}
#navigation #header-cart .close:before,
#navigation #header-cart .close:after {
  background-color: #000;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  width: 100%;
}
#navigation #header-cart .close:hover:before {
  background-color: #25408F;
}
#navigation #header-cart .close:hover:after {
  background-color: #25408F;
}
#navigation #header-cart .close:before {
  transform: rotate(45deg) translateY(calc(-50% + 1px));
}
#navigation #header-cart .close:after {
  transform: rotate(-45deg) translateY(calc(-50% + 1px));
}
#navigation #header-cart section#cart .item .bot {
  margin: 0 !important;
}
#navigation #header-cart section#cart .cart-content .item .attr {
  display: flex;
}
#navigation #header-cart section#cart .cart-content .item .bot .remove {
  transition: all 0.3s ease;
  width: 20px;
}
#navigation #header-cart section#cart .cart-content .item .bot .remove svg {
  display: block;
  height: auto;
  width: 100%;
}
#navigation #header-cart section#cart .cart-content .item .bot .remove svg * {
  transition: all 0.3s ease;
}
#navigation #header-cart section#cart .cart-content .item .bot .remove:hover svg path {
  fill: var(--color-red) !important;
}
#navigation #header-cart section#cart .cart-content .item .bot span {
  font-size: 24px;
  font-weight: 500;
}
section#cart .cart-content .item .bot .remove {
  color: var(--color-gray);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
#navigation #header-cart section#cart .cart-content .item .attr > div {
  border-right: 1px solid var(--color-lightgray);
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  padding: 5px 19px;
}
#navigation #header-cart section#cart .cart-content .item .attr > div:first-child {
  padding-left: 0;
}
#navigation #header-cart section#cart .cart-content .item .attr > div:last-child {
  padding-right: 0;
}
#navigation
#header-cart
section#cart
.cart-content
.item
.attr
> div:last-of-type {
  border: none;
}
#navigation #header-cart section#cart .cart-content .item .attr p {
  font-size: 16px;
  max-width: initial;
}
#navigation #header-cart section#cart .cart-content .item .color {
  height: 30px;
  width: 30px;
}
section#cart .cart-content .item .color {
  display: flex;
  overflow: hidden;
}
section#cart .cart-content .item .color > div {
  width: 100%;
  height: 100%;
}
section#checkout-cart section#cart .cart-content .item .attr>div {
  padding: 0 10px;
}
section#checkout-cart section#cart .cart-content .item .attr>div:first-child {
  padding-left: 0;
}
section#checkout-cart section#cart .cart-content .item .attr>div:last-child {
  padding-right: 0;
}
#navigation #cart-notices {
  position: fixed;
  z-index: 99999999;
  background-color: white;
  width: 100%;
  overflow: hidden;
  top: 106px;
  max-height: 0;
  transition: max-height 250ms ease-out;
}
#navigation #cart-notices.active {
  max-height: 100px;
}
#navigation #cart-notices .close {
  height: 25px;
  width: 25px;
  margin-left: auto;
  transform: rotate(45deg);
}
#navigation #cart-notices .close:hover {
  cursor: pointer;
}
#navigation #cart-notices .checkmark {
  height: 30px;
  width: 30px;
}
#navigation #cart-notices svg {
  height: 100%;
  width: 100%;
}
#navigation #cart-notices > div {
  padding: 20px 40px;
  border-top: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
  display: flex;
  align-items: center;
  gap: 25px;
}
.show-cart a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.show-cart svg {
  height: 30px;
  width: auto;
}
.show-cart .cart-notifs {
  position: absolute;
  height: 25px;
  width: 25px;
  transform: translate(65%, -45%);
  border-radius: 50px;
  background-color: var(--color-blue);
  color: white !important;
  text-align: center;
  line-height: 25px;
  opacity: 0;
}
.show-cart .cart-notifs.active {
  opacity: 1;
}
#navigation #header-cart.active {
  opacity: 1;
  pointer-events: initial;
}
#navigation #header-cart h3 {
  padding: 25px 40px 20px;
  border-bottom: 1px solid var(--color-lightgray);
}
#navigation #header-cart.empty .items,
#navigation #header-cart.empty .checkout {
  display: none;
}
#navigation #header-cart.empty {
  height: fit-content;
}
#navigation #header-cart .no-results {
  padding: 15px 40px;
  display: none;
}
#navigation #header-cart.empty .no-results {
  display: flex;
}
#navigation #header-cart .checkout {
  margin-top: auto;
  background-color: white;
  padding: 25px 40px;
  border-radius: 15px;
  align-self: flex-end;
  width: 100%;
}
#navigation #header-cart .checkout a {
  width: 100%;
  text-align: center;
	color: #fff;
}
#navigation #header-cart .checkout a.more {
  margin-top: 15px;
}
#navigation #header-cart .checkout p {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 5px;
  letter-spacing: 1px;
}
#navigation #header-cart .checkout h4{
	font-size: 32px;
}
#navigation #header-cart .checkout .info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px 0;
  width: 80%;
}
#navigation #header-cart section#cart .cart-content {
  gap: 0;
}
#navigation #header-cart .items::-webkit-scrollbar {
  width: 3px;
}
#navigation #header-cart .items::-webkit-scrollbar-thumb {
  background: var(--color-gray);
}
section#checkout-cart section#cart .cart-content .item > div:first-of-type {
  width: 15%;
}
section#cart .cart-content .product-thumbnail {
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	position: relative;
	padding-bottom: 100%;
	background-color: #fff;
}
section#cart .cart-content .product-thumbnail .preorder-tag {
  font-size: 10px;
  padding: 4.5px 7.5px;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
}
section#cart .cart-content .product-thumbnail img {
  position: absolute;
  height: 90%;
  left: 50%;
  width: 90%;
  top: 50%;
  object-fit: contain;
  transform: translate(-50%,-50%);
}
section#cart .cart-content .item .bot .remove {
  transition: all 0.3s ease;
  width: 20px;
}
section#cart .cart-content .item .bot .remove svg {
  display: block;
  height: auto;
  width: 100%;
}
section#cart .cart-content .item .bot .remove svg * {
  transition: all 0.3s ease;
}
section#cart .cart-content .item .bot .remove:hover svg path {
  fill: var(--color-red) !important;
}
section#cart .cart-content .item .cart-qty {
  display: flex;
}
section#cart .cart-content .item .cart-qty>span {
  align-items: center;
  background-color: #FFF;
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 25px;
}
section#cart .cart-content .item .cart-qty>span:hover {
  background-color: var(--color-blue);
  color: #FFF;
}
section#cart .cart-content .item .cart-qty>span.minus{
  border-radius: 10px 0 0 10px;
}
section#cart .cart-content .item .cart-qty>span.plus{
  border-radius: 0 10px 10px 0;
}
section#cart .cart-content .item .cart-qty * {
  flex-shrink: 0;
}
section#cart .cart-content .item .cart-qty input {
  -moz-appearance: textfield;
  width: 30px;
  text-align: left;
  padding: 10px 0;
  text-align: center;
}
#navigation #header-cart section#cart .cart-content .item .cart-qty input {
  background-color: white;
  border: none;
}
section#cart .cart-content .item .cart-qty input::-webkit-inner-spin-button,
section#cart .cart-content .item .cart-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section#cart .cart-content .item .cart-qty input {
  background-color: #fff;
}
.woocommerce section#cart a.remove {
  width: fit-content;
  text-decoration: underline;
  height: fit-content;
  color: var(--color-red) !important;
}
.woocommerce section#cart a.remove:hover {
  background-color: transparent;
  color: var(--color-red) !important;
}
section#cart .cart-content .item .color {
  height: 40px;
  width: 40px;
  border-radius: 50px;
}
#checkout-cart .cart .cart-empty,
#checkout-cart .cart .return-to-shop {
  display: none;
}
section#checkout-cart {
  min-height: unset;
}
section#checkout-cart .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 100px 0 60px;
}
section#checkout-form {
  padding-bottom: 100px;
}
section#checkout-form .container {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
section#checkout-form .wrapper form .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
section#checkout-form .wrapper form .content .col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section#checkout-form .container .woo-form {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 500ms ease-out;
}
section#checkout-form .container.edit .woo-form {
  max-height: 1100px;
}
section#checkout-form .container .info {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: white;
  transition: opacity 500ms ease-out;
  opacity: 1;
}
section#checkout-form .container .info > div {
  margin-top: auto;
  text-decoration: underline;
}
section#checkout-form .container .info > div:hover {
  cursor: pointer;
}
section#checkout-form .container.edit .info {
  opacity: 0;
  pointer-events: none;
}
section#checkout-form .container .info p {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}
section#checkout-form .woocommerce-form-coupon-toggle {
  /*display: none;*/
	margin-top: 20px;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
	border-top: none;
	background-color: #fff;
	border-radius: 15px;
	padding: 1em 2em 1em 2em;
}
.checkout_coupon button.button{
	background-color: black;
    border-radius: 50px;
    padding: 13px 50px;
    margin-top: 0;
    font-weight: 500;
    border: 1px solid black;
	color: #fff;
    transition: all 250ms linear;
}
.checkout_coupon button.button:hover{
	background-color: transparent;
	color: #000;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before{
	content: none!important;
}
section#checkout-form .container .woo-form .save {
  margin-top: 50px;
  text-decoration: underline;
}
section#checkout-form form .container .woocommerce-shipping-fields h3 {
  font-size: 20px;
}
section#checkout-form .woocommerce .woocommerce-order {
  padding-bottom: 200px;
}
.woocommerce-order .woocommerce-notice--success {
  margin-bottom: 20px;
}
.woocommerce-order .woocommerce-order-overview {
  background-color: white;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.woocommerce .woocommerce-order-details ul.order_details li {
  font-size: 18px;
  line-height: 22px;
}
.woocommerce .woocommerce-order-details ul.order_details li strong {
  font-weight: 600;
  margin-top: 10px;
  font-size: 22px;
}
.woocommerce .woocommerce-order-details .woocommerce-order-details__title {
  margin-bottom: 25px;
}
.woocommerce .woocommerce-order-details .woocommerce-table {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
}
.woocommerce .woocommerce-customer-details address,
.woocommerce .woocommerce-customer-details address *,
.woocommerce .woocommerce-order-details .grid * {
  font-size: 24px;
  font-weight: 400;
}
.woocommerce .woocommerce-order-details .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border-bottom: 1px solid var(--color-lightgray);
}
.woocommerce .woocommerce-order-details .last .grid:last-of-type {
  border-bottom: 1px solid transparent;
}
.woocommerce .woocommerce-order-details .grid {
  padding: 10px;
}
.woocommerce .woocommerce-customer-details h2,
.woocommerce .woocommerce-order-details h2 {
  margin-bottom: 15px;
}
.woocommerce .woocommerce-order-details .row ul,
.woocommerce .woocommerce-order-details .row li,
.woocommerce .woocommerce-order-details .row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.woocommerce .woocommerce-customer-details address {
  background: white;
  padding: 20px;
  border-radius: 15px;
  border: none;
}
.woocommerce .woocommerce-customer-details address p {
  margin: 10px 0;
}
.woocommerce
.woocommerce-customer-details
.woocommerce-customer-details--phone::before {
  line-height: unset;
}
#view-order {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 200px;
}
#view-order mark {
  background-color: transparent;
  color: var(--color-blue);
  font-weight: 600;
}
#view-order .woocommerce .woocommerce-order-details h2 {
  margin: 50px 0 30px;
}
#view-order .woocommerce .woocommerce-customer-details .woocommerce-columns {
  display: flex;
  gap: 40px;
}
#view-order .woocommerce .woocommerce-customer-details .woocommerce-column {
  float: none;
  width: 100%;
}
#view-order .woocommerce .col2-set::after,
#view-order .woocommerce .col2-set::before {
  display: none;
}
#add_payment_method #payment,
.woocommerce-checkout #payment {
  background-color: transparent;
}
.woocommerce-privacy-policy-text p {
  font-size: 20px;
}
.woocommerce-privacy-policy-text p a {
  display: contents;
}
.woocommerce #payment #place_order {
  background-color: black;
  border-radius: 50px;
  padding: 17px 50px;
  margin-top: 15px;
  font-weight: 500;
  border: 1px solid black;
  transition: all 250ms linear;
	color: #fff;
}
.woocommerce #payment #place_order:hover {
  background-color: transparent;
  color: black;
}
section#checkout-form .woocommerce table.shop_table th,
section#checkout-form .woocommerce table.shop_table td {
  padding: 15px 15px;
}
section#checkout-form .woocommerce table.shop_table th,
section#checkout-form .woocommerce table.shop_table td {
  font-size: 16px;
}
section#checkout-form .woocommerce table.shop_table {
  margin: 20px 0;
}
section#checkout-form .woocommerce ul#shipping_method li {
  margin: 0;
}
section#checkout-form .woocommerce table.shop_table tfoot td,
section#checkout-form .woocommerce table.shop_table strong,
section#checkout-form .woocommerce table.shop_table th {
  font-weight: 500;
}
section#checkout-form .woocommerce form #payment .form-row label {
  line-height: 20px;
  margin-bottom: 5px;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  section#checkout-form .woocommerce table.shop_table th,
  section#checkout-form .woocommerce table.shop_table td {
    padding: 10px 10px;
  }
  section#checkout-form .woocommerce table.shop_table th,
  section#checkout-form .woocommerce table.shop_table td {
    font-size: 18px;
  }
	section#checkout-form .woocommerce table.shop_table td .woocommerce-Price-currencySymbol{
		font-size: 14px;
	}
}
#add_payment_method #payment div.payment_box::before,
section#checkout-form #payment div.payment_box::before {
  display: none;
}
#add_payment_method #payment div.payment_box,
section#checkout-form #payment div.payment_box {
  background-color: transparent;
  margin: 0;
  padding: 0;
}
#payment div.payment_box > div > p {
  display: none;
}
#payment div.payment_box .form-row {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
#payment .wc_payment_method > label {
  font-size: 24px;
  font-weight: 500;
}
#payment .wc-stripe-elements-field {
  border-radius: 50px;
  margin: 0;
  padding: 7px 10px;
}
#payment ul.payment_methods li .stripe-credit-card-brand {
  right: 15px;
}
#payment .ElementsApp .InputElement {
  font-size: 20px;
}
#payment .methods li label {
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
	#navigation #cart-notices{
		top: 94px;
	}
  section#checkout-form .wrapper form .content {
    gap: 20px;
  }
  section#checkout-form .wrapper form .content .col {
    gap: 20px;
  }
  section#checkout-cart section#cart .cart-content .item > div:last-of-type {
    padding-left: 20px;
  }
  #view-order .woocommerce .woocommerce-customer-details .woocommerce-column {
  }
  section#checkout-cart section#cart .cart-content .item h6 {
    max-width: 150px;
  }
  .woocommerce .woocommerce-customer-details address,
  .woocommerce .woocommerce-customer-details address *,
  .woocommerce .woocommerce-order-details .grid * {
    font-size: 18px;
  }
  .woocommerce .woocommerce-order-details .woocommerce-table {
    padding: 15px;
  }
}
@media screen and (max-width: 1440px) {
  section#checkout-cart .top {
    margin: 110px 0 40px;
  }
  section#cart .cart-content .item h6 {
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  section#checkout-form .wrapper form .content {
    grid-template-columns: 1fr;
  }
  #view-order .woocommerce .woocommerce-customer-details .woocommerce-columns {
    flex-direction: column;
  }
  #view-order .woocommerce .woocommerce-customer-details .woocommerce-column {
  }
  section#checkout-cart section#cart .cart-content .item h6 {
    max-width: unset;
  }
  section#checkout-cart section#cart .cart-content .item .attr {
    width: 100%;
  }
  section#checkout-cart section#cart .item .attr > div:last-of-type {
    border: none;
  }
  section#checkout-cart section#cart .cart-content .item > div:last-of-type {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  section#checkout-cart section#cart .cart-content .item > div:last-of-type > div {
    gap: 0;
  }
  section#checkout-cart section#cart .cart-content .item .attr > div {
    border-right: 1px solid var(--color-lightgray);
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  section#checkout-cart section#cart .cart-content .item .attr > div:last-of-type {
    border: none;
  }
  section#checkout-cart section#cart .cart-content .item > div:first-of-type {
    width: 100%;
  }
  section#checkout-form .container.edit .woo-form {
    max-height: 1500px;
  }
	.show-cart .cart-notifs{
		width: 18px;
		height: 18px;
		line-height: 1.15;
		font-size: 14px;
	}
	.page-template-mix-and-match #navigation #cart-notices{
		top: 103px;
	}
	.page-template-mix-and-match #navigation #cart-notices.remove{
		top: 49px;
	}
  section#checkout-cart section#cart .cart-content .item .attr>div {
    padding: 0 15px;
  }
}
@media screen and (max-width: 700px) {
  section#checkout-cart section#cart .cart-content .item > div:last-of-type {
    width: 100%;
    gap: 20px;
  }
  section#checkout-cart section#cart .cart-content .item .attr {
    width: 100%;
  }
  section#checkout-cart section#cart .cart-content .item {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  section#checkout-cart section#cart .cart-content .item .color {
    height: 30px;
    width: 30px;
  }
  #navigation #header-cart .checkout {
    padding: 20px;
  }
}
@media screen and (max-width: 700px) {
  #navigation #header-cart {
    border-radius: 0;
    width: 100%;
    height: 100dvh;
    right: 0;
    top: 0;
  }
  #navigation #header-cart.empty {
    height: 100dvh;
  }
  #navigation #header-cart .checkout a.more {
    margin-top: 5px;
  }
  #navigation #header-cart h3 {
    padding: 20px;
    padding-right: 60px;
    text-align: left;
  #navigation #header-cart .checkout .info {
    width: 100%;
    padding: 0 0 20px;
  }
	#navigation #header-cart .checkout .info h4{
		font-size: 24px;
	}
  #navigation #header-cart .checkout a {
    margin: auto;
	  padding: 10px 10px;
  }
  #navigation #header-cart section#cart .cart-content .item {
    padding: 20px;
    gap: 20px;
  }
	.show-cart .cart-notifs{
		font-size: 12px;
		width: 18px;
		height: 18px;
		line-height: 1.5;
	}
  #navigation #header-cart section#cart .cart-content .item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  #navigation #header-cart section#cart .cart-content .item .attr {
    justify-content: center;
  }
  #navigation #header-cart section#cart .cart-content .item .attr > div {
    flex-grow: 1;
    padding: 5px 0;
  }
  section#checkout-cart section#cart .cart-content .item,
  #navigation #header-cart section#cart .cart-content .item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  section#checkout-cart section#cart .cart-content .item > div:last-of-type {
    padding: 0;
  }
  section#cart .cart-content .product-thumbnail {
    width: 250px;
    margin: auto;
    padding-bottom: 0;
    height: 250px;
  }
  section#checkout-form .container {
    padding: 15px;
  }
  section#checkout-form .container .info {
    padding: 15px;
  }
  section#cart .cart-content .item .name h6 {
    text-align: center;
    width: 100%;
  }
  #navigation #header-cart section#cart .item .bot,
  section#checkout-cart section#cart .cart-content .item > div:last-of-type > div {
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
	section#checkout-form .woocommerce table.shop_table th,
  section#checkout-form .woocommerce table.shop_table td {
	 font-size: 14px;
  }
	section#checkout-form .woocommerce table.shop_table td .woocommerce-Price-currencySymbol{
		font-size: 10px;
	}
  #navigation #header-cart section#cart .cart-content .item {
    padding: 20px 10px;
  }
  section#cart .cart-content .item h6 {
    font-size: 20px;
  }
  #navigation #header-cart h3{
    font-size: 30px;
  }
}