.btn_main {
  border-radius: 25px;
  background: #b10303;
  display: inline-flex;
  padding: 18px 22px;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
  border: 1px solid #b10303;
  position: relative;
}
.btn_main.white {
  border: 1px solid #2f2f2f;
  background: #fafafa;
  color: #161616;
}
.btn_main.white:hover {
  background: #fff;
  color: #161616;
}
.btn_main:hover {
  background: #ca0404;
  color: #fff;
}

.item_badge {
  color: #376d28;
  border-radius: 25px;
  background: rgba(231, 246, 226, 0.8);
  display: inline-flex;
  padding: 8px 10px;
  align-items: center;
  margin-bottom: 15px;
  border: 1px solid #376d28;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.item_badge i {
  margin-right: 5px;
}
.item_badge.pending {
  border-color: #eca809;
  background: rgba(235, 167, 8, 0.2);
  color: #9f7412;
}
.item_badge.cancelled {
  border-color: #e34234;
  background: #fef3f2;
  color: #e34234;
}

.cart_btn {
  display: inline-flex;
  padding: 8px 18px;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  color: #e34234;
  border: 1px solid #e34234;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}
.cart_btn.inCart {
  background: #e34234;
  color: #fff !important;
}
.cart_btn.inCart:hover {
  color: #fff !important;
}
.cart_btn.inCart .inCart_content {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
  overflow: hidden;
}
.cart_btn.inCart .cart_content {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}
.cart_btn .inCart_content {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}
.cart_btn:hover {
  color: #e34234;
}

.item_card {
  border-radius: 8px;
  border: 1px solid #dfe0e2;
  background: #fff;
  margin: 15px 0;
  padding: 12px;
}
.item_card img {
  width: 100%;
  height: 253px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.item_card h4 i {
  margin-right: 8px;
}
.item_card .text {
  padding: 15px 0;
}
.item_card .price_wrap {
  margin-bottom: 10px;
}
.item_card .price_wrap h4 {
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .item_card img {
    height: 173px;
  }
}
@media (max-width: 500px) {
  .item_card img {
    height: 149px;
  }
  .item_card h4 {
    font-size: 14px;
  }
  .item_card .cart_btn {
    font-size: 13px;
    padding: 4px 12px;
  }
  .item_card .cart_btn i {
    font-size: 12px;
  }
}

.input_forms {
  display: flex;
  margin: 40px 0 30px;
}
.input_forms .input_form {
  position: relative;
}
.input_forms .input_form.daySelect {
  margin-right: 10px;
}
.input_forms .input_form.daySelect a:hover {
  background: #ca0404 !important;
  color: #fff !important;
  border-color: #ca0404 !important;
}
.input_forms .input_form img {
  position: absolute;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 3;
}
.input_forms .input_form select,
.input_forms .input_form input,
.input_forms .input_form .nice-select {
  border-radius: 29px;
  border: 1px solid #7b400c;
  background: #fff;
  height: 48px;
  flex-shrink: 0;
  padding: 0 25px;
  margin-right: 10px;
}
.input_forms .input_form .nice-select {
  width: 195px;
  display: flex;
  align-items: center;
  padding-left: 45px;
}
.input_forms .input_form .nice-select .list {
  width: 100%;
}
.input_forms .input_form .nice-select::after {
  border-bottom: 2px solid #161616;
  border-right: 2px solid #161616;
  right: 20px;
  width: 7px;
  height: 7px;
}
.input_forms .input_form .nice-select .current {
  font-weight: 600;
}
.input_forms .input_form input {
  width: 360px;
  padding-left: 45px;
}
.input_forms .input_form .btn_main {
  height: 48px;
  padding: 2px 22px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .input_forms {
    flex-direction: column;
  }
  .input_forms .input_form select,
  .input_forms .input_form input,
  .input_forms .input_form .nice-select,
  .input_forms .input_form .btn_main {
    width: 95%;
    margin: 5px 0;
  }
  .input_forms .input_form .btn_main {
    justify-content: center;
  }
}

#profileBtn {
  padding: 0 25px;
}
#profileBtn i {
  font-size: 10px;
}

.deals {
  width: 100%;
  padding: 16px 0;
}
.deals .swiper-slide {
  background: #e2c38c;
  border-radius: 12px;
}
.deals .swiper-slide .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.deals .swiper-slide .content .cart_btn {
  padding: 0;
  color: #e34234;
  display: inline-flex;
  min-width: 94px;
  max-width: 104px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
}
.deals .swiper-slide .content .cart_btn i {
  margin-right: 4px;
}
.deals .swiper-slide .img img {
  width: 100%;
  height: 192px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.deals .swiper-slide:nth-child(even) {
  background: #d1d7ef;
}

.cartBox {
  position: absolute;
  width: 423px;
  background: #fff;
  right: 0;
  top: 55px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #dfe0e2;
  transition: 0.5s;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
.cartBox.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cartBox .empty_cart {
  width: 100%;
  height: 100px;
  background: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 5px 0;
}
.cartBox .empty_cart i {
  margin-right: 5px;
}
.cartBox .empty_cart h5 {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
}
.cartBox .cart_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cartBox .cart_head h4 {
  font-size: 20px;
  font-weight: 500;
  padding: 6px 0;
}
.cartBox .cart_head i {
  font-size: 24px;
  cursor: pointer;
}
.cartBox .cart_list {
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
}
.cartBox .cart_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dfe0e2;
  padding: 14px 0;
  position: relative;
}
.cartBox .cart_list li:hover .removeFromCart {
  transform: translateY(-50%) translateX(0);
  visibility: visible;
  opacity: 1;
}
.cartBox .cart_list li .removeFromCart {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  right: 0px;
  font-size: 14px;
  color: #e34234;
  background: #fef3f2;
  border: 1px solid #e34234;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.cartBox .cart_list li .removeFromCart i {
  margin-right: 5px;
}
.cartBox .cart_list li .item_name {
  display: flex;
  align-items: center;
  width: 100%;
}
.cartBox .cart_list li .item_name small {
  margin-left: 5px;
}
.cartBox .cart_list li .item_name small:last-child span {
  display: none;
}
.cartBox .cart_list li .item_qty {
  position: relative;
  display: inline;
}
.cartBox .cart_list li .item_qty button {
  position: absolute;
  top: 3px;
  z-index: 4;
  left: 8px;
  background: transparent;
  border: 0;
  display: block;
  width: 16px;
}
.cartBox .cart_list li .item_qty button.sub_qty {
  left: auto;
  right: 27px;
  text-align: right;
}
.cartBox .cart_list li .item_qty button i {
  color: #fff;
  font-size: 16px;
}
.cartBox .cart_list li .item_qty input {
  background: #5b5e61;
  border-radius: 25px;
  display: inline-flex;
  padding: 3px 10px;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  width: 82px;
  text-align: center;
  margin-right: 14px;
  border: 0;
  font-size: 16px;
}
.cartBox .cart_list li h5 {
  font-weight: 500;
  margin-bottom: 0;
  width: 65%;
}
.cartBox .cart_list li p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  width: 30%;
  text-align: right;
}
.cartBox .cart_message {
  width: 100%;
}
.cartBox .cart_message textarea {
  background: rgba(238, 238, 238, 0.6);
  padding: 10px;
  height: 85px;
  font-size: 16px;
  width: 100%;
  border-radius: 8px;
  border-color: #dfe0e2;
  font-weight: 400;
}
.cartBox .btn_main {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 !important;
  margin-top: 8px;
  height: 40px;
}
.cartBox .discount {
  background: #eee;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 30px 0;
}
.cartBox .discount li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cartBox .discount li h5 {
  font-weight: 400;
  color: #5b5e61;
  margin-bottom: 0;
}
.cartBox .discount li:last-child {
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .cartBox {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
  .cartBox .cart_list li {
    flex-direction: row-reverse;
    padding-right: 80px;
  }
  .cartBox .cart_list li .item_name {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
  .cartBox .cart_list li .item_name h5 {
    width: 100%;
  }
  .cartBox .cart_list li .item_name p {
    text-align: left;
    width: 100%;
  }
  .cartBox .cart_list li .item_name .removeFromCart {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transform: translate(0, -50%);
    width: 25px;
    height: 25px;
    border-radius: 5px;
  }
  .cartBox .cart_list li .item_name .removeFromCart i {
    font-size: 12px;
    margin-right: 0;
  }
  .cartBox .cart_message {
    margin: 20px 0;
  }
}

.login_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.51);
  z-index: 999;
  overflow-y: auto;
  display: none;
}
.login_modal.show {
  display: flex;
}
.login_modal .close {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #fff;
  cursor: pointer;
  background: #e34234;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  z-index: 4;
}
@media (max-width: 500px) {
  .login_modal .close {
    right: 10px;
  }
}
.login_modal .close i {
  font-size: 12px;
}
.login_modal .content {
  width: 464px;
  padding: 32px;
  background-color: #fff;
  border-radius: 8px;
  max-width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.login_modal .content h1 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 41px;
}
.login_modal .content .nav.nav-tabs {
  display: flex;
  justify-content: space-between;
  border: 0;
  background: #eee;
  box-shadow: 0px 0px 7px 0px rgba(160, 160, 160, 0.35) inset;
  border-radius: 9px;
  width: 298px;
  margin: 0 auto;
}
.login_modal .content .nav.nav-tabs li {
  padding: 6px 6px 8px;
}
.login_modal .content .nav-link {
  font-size: 16px;
  width: 132px;
  height: 48px;
  border: 0 !important;
  color: #2f2f2f;
  border-radius: 9px;
  text-align: center;
}
.login_modal .content .nav-link:hover {
  border: 0;
}
.login_modal .content .nav-link.active {
  border: 0;
  background-color: #e34234;
  color: #fff;
}
.login_modal .content .alternate p {
  position: relative;
}
.login_modal .content .alternate p span {
  background: #fff;
  display: block;
  position: relative;
  z-index: 2;
  width: 40px;
  text-align: center;
  color: #cccdce;
}
.login_modal .content .alternate p::before {
  content: "";
  position: absolute;
  top: 11px;
  width: 100%;
  height: 1px;
  background: #cccdce;
}
.login_modal .content .alternate a {
  display: flex;
  width: 100%;
  height: 48px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  border: 1px solid #dfe0e2;
  border-radius: 25px;
}
.login_modal .content .alternate a img {
  width: 21px;
  margin-right: 10px;
}

.form_single {
  width: 100%;
  margin-bottom: 18px;
}
.form_single.no_br input,
.form_single.no_br textarea {
  border-radius: 4px;
  padding: 10px;
}
.form_single.flex {
  align-items: center;
}
.form_single.flex label {
  margin-bottom: 0;
}
.form_single label {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.14px;
  margin-bottom: 10px;
}
.form_single label h5 {
  margin-bottom: 0;
  font-weight: 400;
}
.form_single input,
.form_single textarea {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #dfe0e2;
  padding: 0 25px;
}
.form_single textarea {
  min-height: 95px;
  padding-top: 10px;
}
.form_single input[type=radio],
.form_single input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #499532;
  margin-right: 8px;
}
.form_single .btn_main {
  width: 100%;
  height: 48px;
  justify-content: center;
  margin-top: 31px;
}

@media (max-width: 850px) {
  .order {
    margin-top: 50px;
  }
}
.order .cartBox {
  position: relative;
  width: 100%;
  right: auto;
  top: auto;
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.checkout_page {
  background: #fafafa;
  padding: 80px 0;
}
.checkout_page .container {
  border-radius: 16px;
  background: #fff;
  filter: drop-shadow(0px 2px 4px rgba(46, 46, 46, 0.12)) drop-shadow(0px 14px 20px rgba(168, 168, 168, 0.14));
  padding: 20px;
  padding-bottom: 40px;
}
.checkout_page .checkout_head {
  border-bottom: 1px solid #dfe0e2;
  margin-bottom: 20px;
}
.checkout_page .checkout_head h3 {
  padding-top: 20px;
  font-size: 24px;
  margin-bottom: 25px;
}
.checkout_page .cart_head {
  margin-bottom: 20px;
}
.checkout_page .cart_message {
  margin-bottom: 30px;
}
.checkout_page .cart_message h5 {
  margin-bottom: 15px;
}
.checkout_page .cart_message textarea {
  min-height: 100px;
}
.checkout_page .btn_main {
  height: 44px;
}

div#map {
  width: 100%;
  height: 410px;
}

.get_location {
  margin-bottom: 40px;
}

.checkout_forn h5 {
  margin-top: 15px;
}
.checkout_forn textarea {
  height: 150px;
}
.checkout_forn .address_badge {
  margin: 15px 0 5px;
}
.checkout_forn .address_badge .item_badge {
  cursor: pointer;
  border: 0;
  background: #eee;
  color: #5b5e61;
}
.checkout_forn .address_badge .item_badge.active, .checkout_forn .address_badge .item_badge:hover {
  color: #376d28;
  background: rgba(231, 246, 226, 0.8);
}

.checkout_page .form_single input {
  border-radius: 8px;
}
.checkout_page .form_single label {
  font-size: 16px;
  font-weight: 600;
}
.checkout_page .pay_options {
  display: flex;
}
.checkout_page .pay_options .form_single {
  background-color: #fafafa;
  border: 1px solid #dfe0e2;
  display: inline-flex !important;
  width: 140px;
  padding: 5px 10px;
  margin-right: 30px;
  border-radius: 8px;
  margin-top: 14px;
}
.checkout_page .pay_options .form_single img {
  width: 59px;
}
.checkout_page .promo_code {
  text-align: right;
  margin-top: 10px;
}
.checkout_page .promo_code .addPromo {
  cursor: pointer;
  display: none;
}
.checkout_page .promo_code .addPromo.show {
  display: inline-flex;
}
.checkout_page .promo_code .promo_wrap {
  position: relative;
  text-align: left;
  margin-top: 15px;
  display: none;
}
.checkout_page .promo_code .promo_wrap.show {
  display: block;
}
.checkout_page .promo_code .promo_wrap input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #dfe0e2;
  padding: 0 25px;
}
.checkout_page .promo_code .promo_wrap button {
  height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  background: #efa30b;
  border-radius: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.profile_page {
  padding: 80px 0;
}
.profile_page .profile_menu {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dfe0e2;
  padding: 20px;
}
.profile_page .profile_menu ul li {
  margin-bottom: 20px;
}
.profile_page .profile_menu ul li a {
  font-size: 18px;
  font-weight: 400;
}
.profile_page .profile_menu ul li a i {
  font-size: 14px;
  margin-right: 5px;
}
.profile_page .profile_menu ul li a.active, .profile_page .profile_menu ul li a:hover {
  color: #f34e40;
}
.profile_page .profile_head {
  margin-bottom: 25px;
}
.profile_page .profile_head.flex {
  align-items: center;
}
.profile_page .profile_head h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}
.profile_page .profile_head .item_badge.main {
  font-size: 16px;
  color: #e34234;
  border: 1px solid #e34234;
  background: #fff;
  padding: 15px;
  margin-left: 15px;
  cursor: pointer;
}
.profile_page .profile_head .item_badge.main i {
  font-size: 16px;
}
.profile_page .profile_box {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dfe0e2;
  padding: 20px;
  margin-bottom: 15px;
}
.profile_page .profile_box .form_single {
  margin-bottom: 32px;
}
.profile_page .profile_box .form_single label {
  font-size: 16px;
  font-weight: 500;
}
.profile_page .profile_box .form_single input {
  padding: 0 15px;
}
.profile_page .profile_box .form_single .btn_main {
  width: auto;
  margin-top: 0;
  margin-right: 15px;
}
.profile_page .profile_box .form_single .btn_main.white {
  color: #b10303;
  border: 1px solid #b10303;
}
.profile_page .address_box .address_head {
  height: 46px;
  border-bottom: 1px solid #dfe0e2;
  margin-bottom: 15px;
}
.profile_page .address_box .address_head .item_badge {
  color: #5b5e61;
  background: #eee;
  border: 0;
}
.profile_page .address_box .address_content {
  padding-bottom: 30px;
}
.profile_page .address_box .address_content .text {
  width: 80%;
}
.profile_page .address_box .address_content .text small {
  margin-top: 12px;
  display: block;
  font-weight: 400;
}
.profile_page .address_box .address_content .text small i {
  margin-right: 3px;
}
.profile_page .address_box .address_content button {
  width: 20%;
  max-width: 70px;
  justify-content: center;
  padding: 6px 0;
  height: 25px;
  color: #e34234;
  border: 1px solid #e34234;
  background: #fef3f2;
}
.profile_page .address_box .address_content h5 {
  font-size: 18px;
  font-weight: 500;
}
.profile_page .address_box .address_content p {
  margin-top: 10px;
  max-width: 70%;
}
.profile_page .address_box .address_content p small {
  font-size: 14px;
}
@media (max-width: 500px) {
  .profile_page .address_box .address_content p {
    max-width: 100%;
  }
}

.address_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.51);
  z-index: 999;
  overflow-y: auto;
  display: none;
}
.address_modal.show {
  display: flex;
}
.address_modal .content {
  width: 664px;
  padding: 32px;
  background-color: #fff;
  border-radius: 8px;
  max-width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.address_modal .content h1 {
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 36px;
  margin-top: 0;
}
.address_modal .content h3 {
  margin-bottom: 15px;
  font-size: 26px;
}

.btn_cancel {
  width: 100%;
  text-align: center;
  text-decoration: underline;
  color: #7d8287;
  margin-top: 20px;
  cursor: pointer;
}

.order_list .profile_box {
  margin: 6px 0;
  cursor: pointer;
}
.order_list .profile_box.active {
  border-color: #b10303;
}

.order_filter .btn_main {
  padding: 8px 22px;
  margin-bottom: 15px;
}

.order_detail {
  display: none;
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}
.order_detail.show {
  display: block;
}
.order_detail .cartBox {
  position: relative;
  width: 100%;
  right: auto;
  top: auto;
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  padding-bottom: 40px;
}
.order_detail .cartBox .cart_head {
  border-bottom: 1px solid #dfe0e2;
  margin-bottom: 0;
}
.order_detail .cartBox .cart_head.flex {
  align-items: center;
}
.order_detail .cartBox .cart_head h4 {
  margin-bottom: 15px;
}
.order_detail .cartBox .cart_head .close i {
  font-size: 18px;
}
.order_detail .cartBox h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px;
}
.order_detail .cartBox h6 {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.order_detail .cartBox .cart_list li {
  border-top: 0;
  padding: 0;
  margin-bottom: 5px;
}
.order_detail .cartBox ul li {
  margin-bottom: 5px;
}
.order_detail .cartBox .discount {
  padding: 10px 15px;
}
.order_detail .cartBox .discount li {
  margin-bottom: 5px;
}
.order_detail .cartBox .btn_main {
  height: 44px;
  margin-top: 30px !important;
  border: 1px solid #e34234;
  background: #fff0f0;
  color: #e34234;
}
@media (max-width: 500px) {
  .order_detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9;
  }
  .order_detail .cartBox .cart_list li {
    flex-direction: row;
  }
}

header {
  position: fixed;
  padding: 20px 0 0px 0;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
  transition: 0.5s;
}
header.fixed {
  padding: 5px 0;
  background: linear-gradient(121deg, #e0bf00 0%, #efa20b 100%);
}
header.fixed .logo a img {
  height: 76px;
}
@media (max-width: 1400px) {
  header.fixed .logo a img {
    height: 68px;
  }
}
@media (max-width: 500px) {
  header.fixed .logo a img {
    height: 52px;
  }
}
header.fixed .input_forms {
  display: flex;
  justify-content: center;
}
header.fixed .input_forms .input_form input {
  margin-right: 5px;
}
header.fixed .input_forms .btn_main {
  margin-left: 0;
}
header .input_forms {
  display: none;
  margin: 0;
}
header .logo {
  width: 260px;
}
header .logo a {
  display: inline-block;
  transition: 0.5s;
}
header .logo img {
  height: 94px;
  max-width: 260px;
  transition: 0.5s;
}
@media (max-width: 1600px) {
  header .logo img {
    height: 78px;
  }
}
@media (max-width: 1400px) {
  header .logo img {
    height: 68px;
  }
}
@media (max-width: 390px) {
  header .logo img {
    height: 52px;
  }
}
header .menu {
  display: flex;
  justify-content: flex-end;
}
header .btn_main {
  padding: 0 16px;
  height: 48px;
  margin-left: 10px;
  font-size: 16px;
}
@media (max-width: 1600px) {
  header .btn_main {
    height: 42px;
  }
}
header .btn_main.white {
  color: #161616;
}
header .btn_main img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .btn_main span {
  background: #e34234;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  margin-left: 4px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 850px) {
  header .mb_show {
    display: none;
  }
  header .logo {
    display: flex;
    align-items: center;
    width: auto;
  }
  header .profileDiv .btn_main.mb_hide {
    display: flex !important;
  }
}
@media (max-width: 500px) {
  header .mb_show {
    display: block;
    margin-right: 10px;
  }
  header .mb_nav_btn i {
    font-size: 32px;
  }
  header .profileDiv .btn_main.mb_hide {
    display: none !important;
  }
  header .logo {
    display: flex;
    width: auto;
  }
  header .logo img {
    height: 64px;
  }
}
@media (max-width: 390px) {
  header .mb_nav_btn i {
    font-size: 27px;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
  background: linear-gradient(121deg, #e0bf00 0%, #efa20b 100%);
}
.banner .container {
  height: 100%;
}
.banner .text {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}
.banner .text h1 {
  width: 400px;
}
.banner .text p a {
  position: relative;
}
.banner .text p a:hover::before {
  width: 0;
}
.banner .text p a::before {
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  content: "";
  background-color: #161616;
  transition: 0.5s;
}
.banner .certified_wrap {
  position: absolute;
  bottom: 28%;
  right: 3%;
  display: flex;
}
.banner .certified_wrap .certified {
  position: relative;
  margin-left: 10px;
}
.banner .certified_wrap .certified button {
  background: transparent;
  border: 0;
}
.banner .certified_wrap .certified img {
  width: 86px;
  height: 86px;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner .certified_tooltip + .tooltip > .tooltip-inner {
  background-color: #fff;
}
.banner .deals {
  position: absolute;
  bottom: 0;
  background: #e4a60b;
}
@media (max-width: 1600px) {
  .banner .text {
    top: 40%;
  }
  .banner .certified_wrap {
    bottom: 27.5%;
  }
  .banner .certified_wrap .certified img {
    width: 70px;
    height: 70px;
  }
  .banner .deals .swiper-slide .img img {
    height: 167px;
  }
}
@media (max-width: 1400px) {
  .banner .certified_wrap {
    bottom: 28%;
    z-index: 8;
    right: 2%;
  }
  .banner .certified_wrap .certified img {
    width: 68px;
    height: 68px;
  }
  .banner .deals .swiper-slide h4 {
    font-size: 14px;
  }
  .banner .deals .swiper-slide .img img {
    height: 137px;
  }
}
@media (max-width: 880px) {
  .banner {
    background-size: 1060px !important;
    background-position: top right !important;
    background-repeat: no-repeat;
    height: 660px;
  }
  .banner .text {
    top: 46%;
  }
  .banner .deals {
    padding: 5px 0;
  }
  .banner .deals .swiper-slide h4 {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .banner {
    background-size: cover !important;
    background-position: center !important;
    height: 100vh;
  }
  .banner .text {
    top: 40%;
  }
  .banner .text h1 {
    width: 95%;
  }
  .banner .certified_wrap {
    bottom: 24%;
  }
  .banner .certified_wrap .certified img {
    width: 88px;
    height: 88px;
  }
  .banner .deals {
    padding: 5px 0;
  }
  .banner .deals .swiper-slide h4 {
    font-size: 16px;
  }
  .banner .deals .swiper-slide .img img {
    height: 167px;
  }
  .banner .deals .swiper-slide .col-5 {
    padding-left: 0;
  }
  .banner .deals .swiper-slide .content {
    padding-right: 0;
  }
  .banner .deals .swiper-slide .content .cart_btn {
    width: 100px;
  }
}

.deals .deal_item {
  display: flex;
}
.deals .deal_item .content {
  width: 68%;
  height: 156px;
}
@media (max-width: 1600px) {
  .deals .deal_item .content {
    height: 135px;
  }
}
@media (max-width: 850px) {
  .deals .deal_item .content {
    height: 105px;
  }
}
@media (max-width: 500px) {
  .deals .deal_item .content {
    height: 135px;
  }
}
.deals .deal_item .img {
  width: 42%;
}

.category {
  padding: 40px 0;
}
.category .swiper-slide {
  text-align: center;
}
.category .swiper-slide img {
  width: 74px;
}
.category .swiper-slide h5 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.14px;
}
.category .category_flex {
  display: flex;
  flex-wrap: wrap;
}
.category .category_flex .item {
  flex: 1 1 15px;
  text-align: center;
}
.category .category_flex .item img {
  width: 95%;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.divider_wrap {
  position: relative;
}
.divider_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fafafa;
  border-top: 1px solid #dfe0e2;
  z-index: -1;
}
.divider_wrap.divider_bottom .divider {
  height: 460px;
}
@media (max-width: 500px) {
  .divider_wrap.divider_bottom .divider {
    height: 605px;
  }
}
.divider_wrap.divider_bottom::before {
  background: #2f2f2f;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
.divider_wrap.divider_bottom::after {
  top: 0;
  border-top: 0;
}
.divider_wrap .btn_main {
  padding: 12px 22px;
}

.divider {
  height: 394px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.divider .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  padding-left: 40px;
}
.divider .text .border-text {
  color: #e64d00;
  border: 1px solid #e64d00;
  padding: 13px 23px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 400;
}
.divider .text h2,
.divider .text h3,
.divider .text p {
  width: 524px;
  max-width: 100%;
}
.divider .text p small {
  font-size: 14px;
  color: #cccdce;
}
.divider .text img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.divider .text .input_form img {
  width: 24px;
  height: 24px;
}
.divider .text .input_form .nice-select {
  color: #161616;
}
.divider .text .input_form .btn_main {
  height: 48px;
  padding: 2px 22px;
}
.divider .text p {
  margin: 20px 0;
}
@media (max-width: 500px) {
  .divider {
    height: 506px;
  }
  .divider .text {
    width: 100%;
    padding: 20px;
  }
}

.top_orders {
  background: #fafafa;
  padding: 70px 0;
}
.top_orders .item_card {
  background-color: #fff;
}
.top_orders .item_card h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top_orders h2 {
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .top_orders .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.2);
    padding-left: calc(var(--bs-gutter-x) * 0.2);
  }
  .top_orders .item_card {
    margin: 5px 0;
    padding: 8px;
  }
}

footer {
  background: #2f2f2f;
  padding: 80px 0 20px;
}
footer .footer_logo h6 {
  color: #fff;
  margin-top: 20px;
}
footer .footer_links {
  color: #fff;
}
footer .footer_links h4 {
  font-size: 20px;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}
footer .footer_links a {
  display: block;
  margin: 15px 0;
  font-size: 16px;
  font-weight: normal;
}
footer .footer_links a i {
  margin-right: 5px;
}
footer .goto_top {
  text-align: right;
}
footer .goto_top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  background: #fff;
  color: #161616;
  font-size: 22px;
  font-weight: 600;
}
footer .footer_bottom {
  color: #fff;
  border-top: 1px solid #919599;
  margin-top: 40px;
  padding-top: 20px;
}
footer .footer_bottom h6 {
  margin-bottom: 5px;
}
footer .footer_bottom a i {
  margin-left: 18px;
  font-size: 24px;
}
@media (max-width: 500px) {
  footer .footer_links {
    margin: 30px 0;
  }
  footer .footer_links a {
    font-size: 14px;
  }
  footer .footer_links a i {
    display: none;
  }
  footer .goto_top {
    display: none;
  }
  footer .footer_bottom {
    flex-direction: column-reverse;
    padding-top: 45px;
  }
  footer .footer_bottom a {
    margin-bottom: 40px;
    display: inline-block;
  }
  footer .footer_bottom h6 {
    text-align: center;
  }
}

.page_banner {
  height: 536px;
  position: relative;
}
.page_banner.no_banner {
  height: 130px;
}
@media (max-width: 850px) {
  .page_banner.no_banner {
    height: 110px;
  }
}
.page_banner .text {
  top: 55%;
}
.page_banner .filter_bar {
  position: absolute;
  width: 100%;
  bottom: 20px;
  transition: 0.5s;
}
.page_banner .filter_bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: linear-gradient(121deg, #e0bf00 0%, #efa20b 100%);
  height: 85px;
  display: flex;
  align-items: center;
}
.page_banner .filter_bar.fixed .container {
  height: auto;
}
.page_banner .filter_bar.fixed .fb_wrap .cart {
  display: flex;
}
.page_banner .filter_bar.fixed .fb_wrap .cart span {
  background: #e34234;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}
.page_banner .filter_bar .btn_main {
  padding: 0 16px;
  height: 36px;
  margin: 5px 0;
  margin-right: 5px;
  font-size: 16px;
}
.page_banner .filter_bar .btn_main.white {
  background: rgba(250, 250, 250, 0.46);
  border: 1px solid #7d8287;
}
.page_banner .filter_bar .fb_wrap {
  border-radius: 10px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2px 4px 0px rgba(46, 46, 46, 0.25), 0px 14px 20px 0px rgba(168, 168, 168, 0.14);
  transition: 0.5s;
  display: flex;
  justify-content: space-between;
}
.page_banner .filter_bar .fb_wrap .cart {
  display: none;
}
@media (max-width: 850px) {
  .page_banner .text {
    top: 60%;
  }
}

.card_style {
  border-radius: 10px;
  border: 1px solid #dfe0e2;
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
}
.card_style:last-child {
  margin-bottom: 0;
}
.card_style .search_checkbox {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
}
.card_style .search_checkbox:last-child {
  margin-bottom: 0;
}
.card_style .search_checkbox input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: #499532;
  margin-right: 8px;
}
.card_style .search_checkbox label h5 {
  margin-bottom: 0;
  line-height: 1;
}
.card_style ul {
  margin-top: 20px;
}
.card_style ul li {
  margin: 11px 0;
}
.card_style ul li.active a {
  color: #e34234;
}
.card_style ul li.active a::after {
  width: 100%;
}
.card_style ul li a {
  transition: 0.5s;
  position: relative;
  display: inline-block;
}
.card_style ul li a:hover {
  color: #e34234;
}
.card_style ul li a:hover::after {
  width: 100%;
}
.card_style ul li a::after {
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 5px;
  left: 0;
  content: "";
  background-color: #e34234;
  transition: 0.5s;
}

.list_page {
  padding: 60px 0;
  background: #fafafa;
}
.list_page .category {
  padding: 0;
}
.list_page .category .swiper-slide img {
  width: 74px;
}
.list_page .category .swiper-slide h5 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.14px;
}
@media (max-width: 850px) {
  .list_page {
    padding: 20px 0;
  }
  .list_page .category {
    margin-bottom: 30px;
  }
  .list_page .category .swiper-slide {
    height: 137px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list_page .category .swiper-slide.active {
    background-color: #eee;
  }
  .list_page .category .swiper-slide img {
    width: 64px;
    height: 64px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 10px;
  }
  .list_page .category .swiper-slide h5 {
    margin-bottom: 0;
  }
}

.item_group {
  margin-bottom: 55px;
}
.item_group:first-child {
  margin-top: 0;
}
.item_group:last-child {
  margin-bottom: 0;
}
.item_group .deals {
  padding: 0;
}
@media (max-width: 850px) {
  .item_group {
    margin-top: 40px;
  }
}
.item_group h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.item_group .card_style {
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}
.item_group .card_style .item_card {
  border-radius: 10px;
  border: 1px solid #dfe0e2;
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
}

.card_style .item_card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
}
.card_style .item_card .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 850px) {
  .card_style .item_card .content {
    display: block;
    width: 75%;
  }
  .card_style .item_card .content .text h4 {
    margin-bottom: 0;
  }
  .card_style .item_card .content .text small {
    line-height: 1;
  }
  .card_style .item_card .content .price_wrap {
    margin-top: 10px;
    justify-content: space-between;
  }
}
.card_style .item_card img {
  width: 88px;
  height: 76px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 25px;
}
@media (max-width: 850px) {
  .card_style .item_card img {
    width: 25%;
    margin-right: 20px;
    max-width: 77px;
  }
}
.card_style .item_card .text {
  padding: 0;
}
.card_style .item_card .price_wrap {
  justify-content: end;
}
.card_style .item_card .price_wrap h4 {
  margin-right: 20px;
}
@media (max-width: 500px) {
  .card_style .item_card .price_wrap h4 {
    margin-right: 15px;
  }
}
.card_style .item_card .price_wrap h4.discounted_price {
  color: #1ea91e;
}
.card_style .item_card .price_wrap h4.original_price {
  color: #696e73;
  text-decoration: line-through;
}

.sidebar_filter {
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}

.profileDiv:hover .btn_main i {
  transform: rotate(180deg);
}
.profileDiv:hover .profileBox {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.profileBox {
  position: absolute;
  width: 160px;
  background: #fff;
  right: 0;
  top: 55px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #dfe0e2;
  transition: 0.5s;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
.profileBox li {
  margin-bottom: 18px;
}
.profileBox li a {
  font-size: 16px;
  font-weight: 400;
}
.profileBox li a i {
  margin-right: 5px;
}
.profileBox li a:hover {
  color: #e34234;
}
.profileBox li:last-child {
  margin-bottom: 0;
}
.profileBox .myProfile {
  display: none;
  margin: 30px 0;
  border-bottom: 1px solid #dfe0e2;
  padding-bottom: 30px;
  position: relative;
}
.profileBox .myProfile h4 {
  font-size: 22px;
  margin-bottom: 5px;
}
.profileBox .myProfile .close {
  position: absolute;
  top: 0px;
  right: 0;
}
.profileBox.show {
  transform: translate(0%, 0px);
  opacity: 1;
  visibility: visible;
}
.profileBox.show:hover {
  transform: translate(0%, 0px) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.profileBox.show .myProfile {
  display: block;
}
@media (max-width: 500px) {
  .profileBox {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    border-radius: 0;
    z-index: 999;
    transform: translate(100%, 0px);
    opacity: 1;
    visibility: hidden;
  }
  .profileBox:hover {
    transform: translate(100%, 0px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .profileBox ul li {
    border-bottom: 1px solid #dfe0e2;
    padding-bottom: 15px;
  }
  .profileBox ul li:last-child {
    border-bottom: 0;
  }
}

.flex__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.addon {
  display: none;
}
.addon.inCart {
  display: flex;
}
@media (max-width: 500px) {
  .addon.inCart {
    display: block;
  }
}
.addon h6 {
  margin-right: 10px;
  width: 10%;
}
@media (max-width: 500px) {
  .addon h6 {
    width: 100%;
  }
}
.addon .addon_list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .addon .addon_list {
    margin-top: 15px;
  }
}
.addon .addon_list button {
  display: flex;
  padding: 6px 12px;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #161616;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 25px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.addon .addon_list button i {
  color: #57a93e;
  margin-right: 5px;
  display: none;
}
.addon .addon_list button h6 {
  color: #7d8287;
  margin-left: 8px;
  display: block;
  width: 53px;
  text-align: right;
}
.addon .addon_list button.active {
  border-color: #57a93e;
  background: #e7f6e2;
}
.addon .addon_list button.active i {
  display: block;
}

.page__title {
  padding-top: 70px;
}
.page__title.not_found {
  min-height: 450px;
  text-align: center;
  display: flex;
  align-items: center;
  padding-top: 0;
}
.page__title.not_found h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  color: #1a2224;
  margin-bottom: 25px;
}
.page__title.not_found a {
  text-align: center;
  color: #b10303;
  font-weight: 600;
  position: relative;
}
.page__title.not_found a:hover::before {
  width: 0;
}
.page__title.not_found a::before {
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  content: "";
  background-color: #b10303;
  transition: 0.5s;
}
.page__title h2 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  color: #b10303;
}

.te__pages {
  padding: 70px 0;
  width: 1120px;
  max-width: 100%;
  margin: auto;
}
.te__pages h4 {
  font-size: 22px;
  margin: 1rem 0;
  margin-top: 1.2rem;
}
.te__pages p {
  margin: 0.6rem 0;
}
.te__pages ul {
  margin-bottom: 1.2rem;
}
.te__pages li {
  margin: 0.4rem 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 18px;
  position: relative;
}
.te__pages li::before {
  position: absolute;
  content: "";
  background-color: #cccdce;
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.te__pages img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1rem auto;
}

.contact__page {
  margin: 70px auto;
  background-color: rgba(241, 241, 241, 0.2392156863);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.contact__page .heading {
  margin-bottom: 40px;
}
.contact__page .heading i {
  color: #696e73;
  font-size: 20px;
}
.contact__page .form__group {
  margin-bottom: 16px;
}
.contact__page .form__group :last-child {
  margin-bottom: 0;
}
.contact__page form {
  padding: 64px;
  padding-right: 24px;
}
.contact__page label {
  color: #696e73;
}
.contact__page textarea,
.contact__page input {
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 4px;
  margin-top: 8px;
  font-size: 16px;
  display: block;
  width: 100%;
  background-color: transparent;
}
.contact__page textarea {
  position: relative;
}
.contact__page textarea:focus-visible {
  outline: 0;
}
.contact__page .send {
  position: relative;
  width: 100%;
}
.contact__page .send button {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50px;
  background-color: #b10303;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease-in-out;
}
.contact__page .send button i {
  color: #fff;
  font-size: 16px;
}
.contact__page .send:hover button {
  width: 44px;
  height: 44px;
  background-color: #ca0404;
}

.contact__details {
  background-color: #fffafa;
  padding: 56px 40px;
  height: 100%;
}
.contact__details .reach {
  margin: 32px 0;
}
.contact__details li {
  margin: 16px 0;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.contact__details li i {
  margin-right: 12px;
  color: #696e73;
  font-size: 18px;
}
.contact__details li:last-child {
  margin-bottom: 0;
}
.contact__details li::before {
  content: none;
}
.contact__details .social {
  display: flex;
}
.contact__details .social i {
  margin-right: 20px;
  font-size: 20px;
}

.accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item:last-child {
  border-bottom: 0;
}
.accordion .accordion-item .accordion-header {
  font-size: 18px;
}
.accordion .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #fffafa;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/accordion.svg");
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-body {
  font-weight: 400;
}

.choose_address {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.choose_address .address_wrap {
  border: 1px solid #dfe0e2;
  display: flex;
  padding: 15px;
  width: 310px;
  margin-right: 15px;
  border-radius: 4px;
}
.choose_address .address_wrap input {
  margin-top: 5px;
}
.choose_address .address_wrap input[type=radio]:checked + label h5 {
  color: #376d28;
  background-color: rgba(231, 246, 226, 0.8);
}
.choose_address .address_wrap h5 {
  margin-top: 0;
  border: 0;
  background: #eee;
  color: #5b5e61;
  font-size: 14px;
  padding: 8px 15px;
  font-weight: 600;
}
.choose_address .address_wrap div {
  margin-top: 10px;
}
.choose_address .address_wrap div p {
  font-size: 15px;
}
.choose_address .address_wrap small {
  margin-top: 12px;
  display: block;
  font-weight: 400;
}
.choose_address .address_wrap small i {
  margin-right: 3px;
}

.add_location.checkout {
  margin: 20px 0 10px;
}
.add_location.checkout a {
  border-radius: 3px;
  font-size: 14px;
  padding: 8px 30px;
  text-transform: uppercase;
}
.add_location.checkout a:hover {
  background: #fff;
}
.add_location.checkout a i {
  font-size: 18px;
}

#selectedMap,
#map_edit {
  height: 240px;
}

.map_select p {
  margin: 10px 0 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.14px;
}

.contd {
  margin-top: 30px;
}
.contd .btn_main {
  padding: 10px 22px;
}/*# sourceMappingURL=style.css.map */