.page-cart {
  margin-top: 100px;
  padding-top: 60px;
}

@media (max-width: 700px) {
  .page-cart {
    padding-top: 25px;
  }
}

.cart-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .cart-header {
    margin-bottom: 10px;
  }
}

.quantitySummary {
  padding: 0;
  margin: 0;
  border: none;
  width: 44px;
  text-align: center;
}

.colProductAndPrice {
  flex-direction: row;
  display: flex;
  flex-grow: 1;
}

@media (max-width: 900px) {
  .colProductAndPrice {
    flex-direction: column;
    margin-left: 10px;
    padding-right: 10px;
    max-width: 250px;
  }
  .colImgAndProduct {
    max-width: 255px;
  }
}

@media (min-width: 900px) {
  .colImg img {
    max-width: initial !important;
    max-height: initial !important;
    height: auto;
    width: 75px;
  }
}

.cart-summary div,
.quantitySummary {
  font-size: 20px;
}

.cart-summary .cart-row-header > div,
.quantitySummary {
  font-weight: bold;
}

@media (max-width: 900px) {
  .cart-summary div,
  .quantitySummary {
    font-size: 14px;
  }

  .cart-summary .cart-row-header > div:not(:last-of-type) {
    padding-right: 20px;
  }
  .cart-summary .cart-row-header .colTotal {
    padding-right: 0;
  }
  .cart-summary .cart-row-header {
    display: none !important;
  }
  .quantitySummary {
    height: 40px;
    width: 30px;
    padding-left: 13px;
    border: 1px solid #273e39;
  }
  .cart-summary .colTotal {
    display: none;
  }
}

@media (max-width: 700px) {
  .cart-summary div,
  .quantitySummary {
    font-size: 12px;
  }
}

.cart-summary .colProduct {
  padding-right: 40px;
}

@media (max-width: 900px) {
  .cart-summary .colProduct {
    padding: 0;
    margin-bottom: 10px;
  }
}

.cart-summary .colProduct a {
  text-decoration: none;
  color: #273e39;
  font-weight: bold;
}

#cart .cart-row {
  border: none;
  padding-bottom: 10px;
}

#cart .cart-row.cart-row-header {
  border-bottom: 1px solid #273e39;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#cart .cart-row.cart-row-header .colRemove {
  display: none;
}

.cart-actions {
  height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 750px) {
  .cart-actions {
    margin-left: auto;
    height: initial;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 50px;
  }
}

.colRemove {
  width: 20px !important;
  height: 20px;
  position: relative;
  margin-right: -40px;
  margin-left: 20px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .colRemove {
    margin-right: 0;
    margin-top: 10px;
  }
}

.colRemove::before,
.colRemove::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #273e39;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.colRemove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.colRemove img {
  /* display: none; */
  cursor: pointer;
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

#cart #cart-footer {
  padding-top: 45px;
  margin-top: 35px;
  border-top: 1px solid #e2e2e2;
  flex-direction: column;
  align-items: flex-end;
}

#cart #price-cad {
  display: none;
}

#div-add-promo-code {
  margin: 0;
  padding: 0;
  display: flex;
}

#div-add-promo-code #txtPromoCode {
  order: 1;
  padding: 14.5px 65px 14.5px 25px;
  border: 1px solid #273e39;
  font-size: 16px;
  text-transform: capitalize;
  width: 100%;
  box-sizing: border-box;
}

#div-add-promo-code #txtPromoCode::placeholder {
  color: #273e39;
}

#div-add-promo-code #cmdAddPromoCode {
  order: 2;
  margin-left: -47px;
  border: none;
  background: transparent;
  width: 47px;
  cursor: pointer;
}

#cart .cart-message {
  order: 2;
  margin-top: 15px;
}

#cart .cartTotal {
  order: 1;
}

#cart .cart-message,
#cart .cartTotal {
  max-width: 350px;
  width: 100%;
}

@media (max-width: 750px) {
  #cart .cart-message,
  #cart .cartTotal {
    width: 100%;
  }
}

#cart .cart-message > * {
  width: 100%;
}

#lnkContinueShopping {
  color: #ff8f49;
  border: 2px solid #ff8f49;
  width: auto;
  padding: 10px 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  transition: 400ms ease;
  transition-property: color, background;
}

@media (max-width: 750px) {
  #lnkContinueShopping {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    text-align: center;
  }

  #cmdBilling {
    width: 100%;
  }
}

#lnkContinueShopping:hover {
  color: white;
  background: #ff8f49;
}

label[for='radSummaryPickup'],
label[for='radSummaryLocal'] {
  padding: 10px;
}

.cartSummary > div i {
  margin-left: 10px;
}

/* Cart Flyout */

#cart-notification {
  top: 85px;
  padding: 25px 40px 10px;
  box-sizing: border-box;
  text-align: left;
  text-transform: initial;
}

@media (min-width: 750px) {
  #cart-notification {
    width: 430px;
  }
}

.cart-flyout-title {
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #273e39;
}

.cart-flyout-item {
  display: flex;
}

.cart-flyout-item-title {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cart-flyout-item-image {
  width: 75px;
  height: auto;
  max-height: 75px;
  margin-right: 15px;
}

#cart-notification #subtotal {
  margin-bottom: 20px;
}

#cart-notification .button {
  margin: 0 auto 15px;
  display: inline-block;
}

#cart-notification #nb-item {
  padding-left: 0;
  border-top: 0px;
  margin-top: 30px;
}

#cart-notification .cart-items-total {
  font-weight: bold;
}

.cartExtraInfo {
  display: none;
}

#cartSummaryMsg {
  margin-bottom: 20px;
}

#cartSummaryMsg .msg-title {
  margin-bottom: 10px;
}
