/* @font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url("/frontend/fonts/avenir-next/AvenirNextLTPro-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-Bold";
  src: url("/frontend/fonts/avenir-next/AvenirNextLTPro-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-It";
  src: url("/frontend/fonts/avenir-next/AvenirNextLTPro-It.otf");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "AvenirNextLTPro-Regular", sans-serif;
}

.navbar-wrapper {
  box-shadow: 0px 8px 36px rgba(0, 0, 0, 0.0705882353);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1620px;
  margin: 0 auto;
  padding: 16px 20px;
}
.navbar .logo img {
  transition: 0.1s;
}
.navbar .cart-map {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex: 1;
  max-width: 800px;
}
.navbar .cart-map .map-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .cart-map .map-item.active .map-item-title {
  color: #A4CE3C;
}
.navbar .cart-map .map-item.active .icon::after {
  border: 1px solid #A4CE3C;
}
.navbar .cart-map .map-item .icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}
.navbar .cart-map .map-item .icon::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
}
.navbar .cart-map .map-item .map-item-title {
  font-size: 16px;
  color: #DDDDDD;
}

@media screen and (max-width: 1224px) {
  .navbar {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .navbar .logo img {
    max-width: 150px;
  }
  .navbar .cart-map {
    gap: 12px;
  }
  .navbar .cart-map .map-item .map-item-title {
    display: none;
  }
  .confirm-order {
    padding: 0 !important;
  }
  .confirm-order .title-img {
    max-width: 150px;
  }
  .confirm-order .info-text {
    text-align: center;
  }
}
.cart-shipping-details {
  max-width: 1620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.cart-shipping-details .left-side .shipping-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-shipping-details .left-side .shipping-title-wrapper .title {
  font-size: 20px;
  font-weight: 600;
}
.cart-shipping-details .left-side .shipping-title-wrapper .modal-link {
  color: #A4CE3C;
  text-decoration: none;
}
.cart-shipping-details .left-side .shipping-title-wrapper .modal-link:hover {
  text-decoration: underline;
}
.cart-shipping-details .left-side .address {
  margin-top: 24px;
  background: #F7F7F7;
  padding: 24px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.1s;
}
.cart-shipping-details .left-side .address .address-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-shipping-details .left-side .address .address-label input {
  width: 24px;
  height: 24px;
  accent-color: #73a100;
}
.cart-shipping-details .left-side .address .address-label .payment-type {
  font-size: 16px;
  font-weight: 600;
}
.cart-shipping-details .left-side .address .address-label .small {
  font-size: 13px;
}
.cart-shipping-details .left-side .address .address-label .address-info {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
}
.cart-shipping-details .left-side .address .address-label .address-info .address-title {
  color: #383838;
  font-weight: 600;
  margin-bottom: 8px;
}
.cart-shipping-details .left-side .address .address-label .address-info .street-address {
  font-size: 14px;
  color: #4f4f4f;
}
.cart-shipping-details .left-side .address .buttons .btn {
  margin-left: 24px;
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-weight: 600;
}
.cart-shipping-details .left-side .address .buttons .btn:hover {
  text-decoration: underline;
}
.cart-shipping-details .left-side .add-address-btn {
  margin-top: 30px;
  border: 2px solid #A4CE3C;
  color: #A4CE3C;
  padding: 18px 40px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.1s;
}
.cart-shipping-details .left-side .add-address-btn:hover {
  background: #A4CE3C;
  color: #FFF;
}

@media screen and (max-width: 600px) {
  .cart-shipping-details .left-side .address .address-label {
    gap: 8px;
  }
  .cart-shipping-details .left-side .address .address-label img {
    display: none;
  }
}
.bill-details {
  display: flex;
  flex-direction: column;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  overflow: hidden;
}
.bill-details .item {
  padding: 20px 24px;
  border-bottom: 1px solid #DDDDDD;
  color: #787878;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bill-details .title {
  background: #A4CE3C;
  color: #FFF;
  font-size: 18px;
} */

/* .cart-btn {
  padding: 16px;
  margin-top: 30px;
  width: 100%;
  display: inline-block;
  background: #A4CE3C;
  color: #FFF;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.1s;
}
.cart-btn:hover {
  background: #6F901F;
} */

/* .footer {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  background: #F7F7F7;
}
.footer a {
  color: #A4CE3C;
} */

.address-modal-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(231, 231, 231, 0.5019607843);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.address-modal-layer .address-modal {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  background: #FFF;
  border-radius: 16px;
  padding: 30px 32px;
  overflow: auto;
}
.address-modal-layer .address-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.address-modal-layer .address-modal .modal-header .title {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 600;
}
.address-modal-layer .address-modal .modal-header .close-modal {
  background: #333;
  color: #FFF;
  width: 28px;
  height: 28px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.address-modal-layer .address-modal hr {
  margin-top: 24px;
  border-top: 1px solid #EFEFF4;
}
.address-modal-layer .address-modal .form-title {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 600;
}
.address-modal-layer .address-modal .input-group {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.address-modal-layer .address-modal .input-group .input-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.address-modal-layer .address-modal .input-group .input-wrapper label {
  margin-bottom: 8px;
}
.address-modal-layer .address-modal .input-group .input-wrapper .input {
  padding: 12px 15px;
  font-size: 14px;
  color: #4A4A4A;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
}
.address-modal-layer .address-modal .btn-wrapper {
  margin-top: 20px;
}
.address-modal-layer .address-modal .btn-wrapper .btn {
  max-width: 450px;
  width: 100%;
  padding: 16px;
  text-transform: uppercase;
  font-size: 16px;
  border: 0;
  background: #A4CE3C;
  color: #FFF;
  border-radius: 8px;
}

.confirm-order {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  transition: 0.1s ease-in-out;
}
.confirm-order .title-img {
  margin-bottom: 32px;
}
.confirm-order .sub-text {
  margin-top: 15px;
}
.confirm-order .sub-text a {
  color: #A4CE3C;
}
.confirm-order .sub-text {
  line-height: 32px;
}
.confirm-order .info-text {
  color: #7D7D7D;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}
.confirm-order .info-text img {
  width: 16px;
}

.body-container {
  max-width: 1420px;
  padding: 0 20px;
  margin: 0 auto;
  transition: 0.1s;
}

@media screen and (max-width: 1520px) {
  .body-container {
    max-width: 1220px;
  }
}
@media screen and (max-width: 1224px) {
  .body-container {
    max-width: 992px;
  }
}
@media screen and (max-width: 1020px) {
  .body-container {
    max-width: 800px;
  }
}
@media screen and (max-width: 776px) {
  .body-container {
    max-width: 740px;
  }
}
@media screen and (max-width: 1224px) {
  .cart-shipping-details .left-side .address {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-shipping-details .left-side .address .buttons {
    margin-left: 42px;
    margin-top: 12px;
  }
  .cart-shipping-details .left-side .address .buttons .btn {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media screen and (max-width: 992px) {
  .address-modal-layer .address-modal {
    max-width: 540px;
  }
}
@media screen and (max-width: 767px) {
  .cart-shipping-details {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 540px) {
  .cart-shipping-details .left-side .shipping-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cart-shipping-details .left-side .address {
    padding: 16px 20px;
  }
  .address-modal-layer .address-modal {
    height: 75%;
  }
  .address-modal-layer .address-modal .input-group {
    flex-direction: column;
  }
  .address-modal-layer .address-modal .input-group .input-wrapper {
    width: 100%;
  }
}/*# sourceMappingURL=cartShippingDetails.css.map */