/*utils scss files */ /*========================
    Animation CSS start
==========================*/
@keyframes ripple1 {
  0% {
    transform: scale(5.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(8.5);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(3.5);
  }
  100% {
    transform: scale(5.5);
  }
}
@keyframes ripple3 {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(3.5);
  }
}
/*========================
    Variable CSS start
==========================*/
/* font family */
/* color variables */
:root {
  --theme-color: 255, 141, 47;
  --light-theme-color: 255, 240, 227;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --dark-text: 65, 68, 73;
  --light-text: 141, 143, 145;
  --success-color: 39, 125, 42;
  --error-color: 245, 58, 58;
  --accent-color: 58, 109, 229;
  --rate-color: 255, 185, 49;
  --box-bg: 245, 245, 245;
  --dashed-line: 237, 237, 237;
}

.dark {
  --white: 40, 40, 40;
  --black: 255, 255, 255;
  --dark-text: 255, 255, 255;
  --light-text: 141, 143, 145;
  --box-bg: 60, 60, 60;
  --dashed-line: 82, 82, 82;
}

.grocery-color {
  --theme-color: 59, 193, 142;
}

.pharmacy-color {
  --theme-color: 0, 136, 147;
}

/* base scss files */
/*=====================
    Reset CSS start
==========================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-container {
  padding: 0 20px;
  background-color:rgba(var(--white), 1);
}

.custom-containers {
  padding: 0 20px;
  background-color:transparent;
  display: flex;
  margin-top: 30%; 

}

/*section,*/
.section-t-space {
  padding-top: 20px;
}

.section-b-space {
  padding-bottom: 20px;
}

.section-lg-t-space {
  padding-top: 50px;
}

.section-lg-b-space {
  padding-bottom: 50px;
}

.panel-space {
  padding-top: 80px !important;
}

.theme-color {
  color: #0E2064;
}

.dark-text {
  color: rgba(var(--dark-text), 1);
}

.light-text {
  color: rgba(var(--light-text), 1);
}

.error-color {
  color: rgba(var(--error-color), 1);
}

.success-color {
  color: rgba(var(--success-color), 1);
}

.rate-color {
  color: rgba(var(--rate-color), 1);
}

[dir=rtl] .swiper {
  direction: ltr;
}

/*=====================
    Typography CSS start
==========================*/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Metropolis", sans-serif;
  background-color: rgba(var(--white), 1);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  font-family: "Metropolis", sans-serif;
  /*height: 100vh;*/
  /*height: 80vh;*/
}

h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 0;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

h3 {
  font-size: 16px;
  margin-bottom: 0;
}

h4 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0;
}

h5 {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
}

h6 {
  font-size: calc(12px + 1 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

/* components scss files*/
/*=====================
    accordion CSS start
==========================*/
.food-accordion .accordion-item {
  background: transparent;
  border-right: 1px solid rgba(var(--light-text), 0.3);
  z-index: -1;
  padding: 0px 0px;
}
.food-accordion .accordion-item .accordion-header {
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.food-accordion .accordion-item .accordion-header::after {
  content: "";
  position: absolute;
  border-bottom: 1px dashed rgba(var(--dashed-line), 1);
  width: 60px;
}
.food-accordion .accordion-item .accordion-header .accordion-button {
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--dark-text), 1);
  background-color: rgba(var(--white), 1);
}
.food-accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\ea4e";
  font-family: remixicon !important;
  width: auto;
  height: auto;
  background: none;
  font-size: 24px;
  line-height: 1;
  background-image: none;
  transform: none;
  margin-left: auto;
  margin-right: unset;
}
[dir=rtl] .food-accordion .accordion-item .accordion-header .accordion-button::after {
  margin-left: unset;
  margin-right: auto;
}
.food-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.food-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: none;
  color: rgba(var(--dark-text), 1);
  font-weight: 400;
  font-size: 14px;
}
.food-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\ea78";
  font-family: remixicon !important;
  width: auto;
  height: auto;
  background: none;
  font-size: 24px;
  line-height: 1;
  background-image: none;
  transform: none;
  margin-left: auto;
}
[dir=rtl] .food-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  margin-left: unset;
  margin-right: auto;
}
.food-accordion .accordion-item .accordion-body {
  padding: 5px 0 5px 0;
}

.option-accordion .accordion-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.option-accordion .accordion-item .accordion-header {
  position: relative;
  font-size: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.option-accordion .accordion-item .accordion-header .accordion-button {
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
}
.option-accordion .accordion-item .accordion-header .accordion-button::after {
  transform: none;
  margin-left: auto;
  font-weight: normal;
}
[dir=rtl] .option-accordion .accordion-item .accordion-header .accordion-button::after {
  margin-left: unset;
  margin-right: auto;
}
.option-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.option-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: none;
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
  font-size: 14px;
}
.option-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\ea78";
  font-family: remixicon !important;
  width: auto;
  height: auto;
  background: none;
  font-size: 24px;
  line-height: 1;
  background-image: none;
  transform: none;
}
.option-accordion .accordion-item .accordion-body {
  padding: 0 15px 12px;
}
.option-accordion .accordion-item .accordion-body .form-check {
  text-align: left;
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px solid rgba(var(--dashed-line), 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.option-accordion .accordion-item .accordion-body .form-check:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.option-accordion .accordion-item .accordion-body .form-check .form-check-label {
  color: rgba(var(--dark-text), 1);
  font-size: 14px;
}
.option-accordion .accordion-item .accordion-body .form-check .form-check-input {
  box-shadow: none;
  float: right;
  margin: 0;
}
[dir=rtl] .option-accordion .accordion-item .accordion-body .form-check .form-check-input {
  float: left;
}
.option-accordion .accordion-item .accordion-body .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.option-accordion .accordion-item .currency {
  padding: 0 15px 12px 12px;
}
[dir=rtl] .option-accordion .accordion-item .currency {
  padding: 0 12px 12px 15px;
}
.option-accordion .accordion-item .currency .currency-listing li {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-weight: 400;
  border-bottom: 1px solid rgba(var(--dashed-line), 1);
}
.option-accordion .accordion-item .currency .currency-listing li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/*=====================
    Button CSS start
==========================*/
 
.btn:hover {
  color: #fff;
  border: 2px solid #132460;
  background: #132460;
}


.btn-inline {
  padding-inline: 15px;
}

.btn:active {
  background-color: #132460;
  color: rgba(var(--white), 1);
  border: 2px solid rgba(var(--theme-color), 1);
}

.theme-btn {
  background-color: #132460;
  color: #ffffff;
  font-weight: 500;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 6px;
}
/*.theme-btn:hover {
  background-color: rgba(var(--theme-color), 1);
  color: #ffffff;
}*/
 

.gray-btn {
  background-color: rgba(var(--box-bg), 1);
  color: rgba(var(--light-text), 1);
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.gray-btn:active {
  border: none;
}
.gray-btn:hover {
  background-color: rgba(var(--box-bg), 1);
  color: rgba(var(--light-text), 1);
}

.btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: rgba(var(--light-text), 1);
}
.btn-link:hover {
  color: rgba(var(--light-text), 1);
}
/*=========================
    Category CSS start
==========================*/
.categories .food-categories {
  position: relative;
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
  z-index: 1;
  background: linear-gradient(360deg, #F5F5F5 53.51%, rgba(245, 245, 245, 0.1098039216) 100%);
}
@media (max-width: 420px) {
  .categories .food-categories {
    height: 100%;
    width: 100%;
  }
}
.categories .food-categories.food {
  background: rgba(var(--white), 1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.categories .food-categories::after {
  content: "";
  position: absolute;
  width: 98%;
  height: 100%;
  border-radius: 9px;
  left: 50%;
  bottom: 2px;
  z-index: -1;
  transform: translateX(-50%);
}
.categories .food-categories .categories-img {
  display: flex;
  justify-content: center;
  align-items: center;
  /*width: 80px;*/
  height: 80px;
   object-fit: contain; 
}
@media (max-width: 420px) {
  .categories .food-categories .categories-img {
    /*width: 100%;*/
    /*height: 40px;*/
  }
}
.categories h6 {
  color: rgba(var(--dark-text), 1);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  overflow: hidden;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
}

.msger {
  margin-top: 105px;
}

.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.msg:last-of-type {
  margin: 0;
}

.msg-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
[dir=rtl] .msg-img {
  margin-left: 10px;
  margin-right: unset;
}

.msg-bubble {
  max-width: 450px;
  padding: 8px;
  border-radius: 15px;
  background: var(--left-msg-bg);
  font-size: 14px;
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}
[dir=rtl] .msg-info-name {
  margin-left: 10px;
  margin-right: unset;
}

.msg-info-time {
  font-size: 0.85em;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
  background: rgba(var(--box-bg), 1);
  border-radius: 6px 6px 6px 0;
  color: rgba(var(--dark-text), 1);
  width: calc(100% - 50px - 10px - 40px);
  margin-right: 0;
}
[dir=rtl] .left-msg .msg-bubble {
  margin-left: 0;
  margin-right: unset;
}

.right-msg {
  flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  background: rgba(var(--theme-color), 1);
  border-radius: 6px 6px 0 6px;
  color: rgba(var(--white), 1);
}
.right-msg .msg-bubble .msg-text {
  color: #FFFFFF;
}
.right-msg .msg-img {
  margin-left: 10px;
}
[dir=rtl] .right-msg .msg-img {
  margin-left: unset;
  margin-right: 10px;
}
.right-msg .msg-img .icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.msger-inputarea {
  display: flex;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(var(--white), 1);
}
[dir=rtl] .msger-inputarea {
  left: unset;
  right: 0;
}
.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}

.msger-input {
  background-color: rgba(var(--box-bg), 1);
  backdrop-filter: blur(2px);
  padding: 14px;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  color: rgba(var(--dark-text), 1);
}
.msger-input::placeholder {
  color: rgba(var(--light-text), 1);
}
.msger-input:focus {
  outline: none;
}

.msger-send-btn {
  margin-left: 8px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  transition: background 0.23s;
  background: rgba(var(--theme-color), 1);
  backdrop-filter: blur(2px);
  border-radius: 6px;
}
[dir=rtl] .msger-send-btn {
  margin-left: unset;
  margin-right: 8px;
}

/*=====================
    form CSS start
==========================*/
.auth-form h2 {
  width: 90%;
  color: rgba(var(--dark-text), 1);
}
.auth-form .form-group {
  display: block;
}
.auth-form .form-group .form-label {
  color: rgba(var(--dark-text), 1);
}
.auth-form .form-group .form-input {
  width: 100%;
}
.auth-form .form-group .form-input .form-control {
  background-color: rgba(var(--box-bg), 1);
  border: none;
  box-shadow: none;
  padding: 10px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.auth-form .form-group .form-input .form-control:focus {
  box-shadow: none;
  border-color: none;
}
.auth-form .form-group .form-input .form-control::placeholder {
  color: rgba(var(--light-text), 1);
}
.auth-form .form-group .form-input .form-control.search {
  padding: 10px 10px 10px 42px;
}
[dir=rtl] .auth-form .form-group .form-input .form-control.search {
  padding: 10px 42px 10px 10px;
}
.auth-form .form-group .dropdown {
  display: flex;
  gap: 15px;
}
.auth-form .form-group .dropdown .dropdown-toggle {
  background-color: rgba(var(--box-bg), 1);
  color: rgba(var(--light-text), 1);
  border-radius: 6px;
  border: none;
  display: flex;
  align-items: center;
}
.auth-form .form-group .dropdown .dropdown-toggle::after {
  content: "\ea4e";
  font-family: remixicon;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  border: none;
}
.auth-form .form-group .dropdown .dropdown-toggle:active {
  border: none;
}
.auth-form .form-group .dropdown .dropdown-menu.show {
  min-width: max-content;
  background-color: rgba(var(--box-bg), 1);
  color: rgba(var(--light-text), 1);
  width: 100%;
}
.auth-form .form-group .dropdown .dropdown-menu li {
  display: block;
}
.auth-form .form-group .dropdown .dropdown-menu li .dropdown-item:active, .auth-form .form-group .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(var(--theme-color), 1);
}

.otp-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 40px;
  gap: 20px;
}
@media (max-width: 600px) {
  .otp-form {
    gap: calc(10px + 10 * (100vw - 320px) / 280);
  }
}
.otp-form .form-input::-webkit-outer-spin-button, .otp-form .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-form .form-input .form-control {
  background: rgba(var(--box-bg), 1);
  backdrop-filter: blur(2px);
  border-radius: 6px;
  border: none;
  color: rgba(var(--dark-text), 1);
  text-align: center;
  height: 48px;
  padding: 15px;
}
.otp-form .form-input .form-control::placeholder {
  color: rgba(var(--dark-text), 1);
}
.otp-form .form-input .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(var(--theme-color), 1);
}
.otp-form .btn {
  margin-top: 80px;
}

.profile-form {
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  padding-top: 20px;
}

/*=====================
    offcanvas CSS start
==========================*/
.search-filter .modal-title {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: rgba(var(--white), 1);
}
.search-filter .modal-title h3 {
  margin-left: auto;
  margin-right: auto;
  color: rgba(var(--dark-text), 1);
}
.search-filter .modal-title .btn-close {
  position: absolute;
  right: 20px;
  box-shadow: none;
}
.search-filter .search-categories li {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid rgba(var(--black), 0.1);
}
.search-filter .search-categories li .payment-detail {
  display: flex;
  gap: 10px;
}
.search-filter .search-categories li .payment-detail .add-img {
  padding: 7px;
  border-radius: 100%;
  background: rgba(var(--theme-color), 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-filter .search-categories li .payment-detail .form-check-label {
  color: rgba(var(--dark-text), 1);
}
.search-filter .search-categories li .payment-detail .radio-btn {
  padding: 0;
  width: calc(100% - 32px - 10px);
  margin: 0;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-filter .search-categories li .payment-detail .radio-btn .form-check-input {
  float: unset;
  margin: 0;
}
.search-filter .search-categories li .payment-detail .radio-btn .form-check-input {
  box-shadow: none;
  font-size: 20px;
}
.search-filter .search-categories li .payment-detail .radio-btn .form-check-input:checked[type=radio] {
  background-color: rgba(var(--theme-color), 1) !important;
  border-color: rgba(var(--theme-color), 1) !important;
  background-image: url(../images/svg/check.svg);
  margin-left: unset;
}
.search-filter .amount-range {
  margin: 20px 0;
  border-bottom: 1px solid rgba(var(--black), 0.1);
  /* Input Thumb */
  /* Input Track */
}
.search-filter .amount-range .range {
  display: flex;
  justify-content: space-between;
}
.search-filter .amount-range .range input,
.search-filter .amount-range .range output {
  display: inline-block;
  vertical-align: middle;
}
.search-filter .amount-range .range .form-label {
  color: rgba(var(--dark-text), 1);
  font-size: 16px;
  font-weight: 600;
}
.search-filter .amount-range .range output {
  width: 41px;
  height: 25px;
  display: flex;
  padding: 5px 8px;
  color: rgba(var(--light-text), 1);
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.search-filter .amount-range input[type=number] {
  width: 40px;
  padding: 4px 5px;
  border: 1px solid #bbb;
  border-radius: 3px;
}
.search-filter .amount-range input[type=range] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 7px;
  background: rgba(var(--box-bg), 1);
  border-radius: 5px;
  background-image: linear-gradient(rgba(var(--theme-color), 1), rgba(var(--theme-color), 1));
  background-size: 100%;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.search-filter .amount-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: rgba(var(--theme-color), 1);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: 0.3s ease-in-out;
}
.search-filter .amount-range input[type=range]::-webkit-slider-thumb:hover {
  background-image: rgba(var(--theme-color), 1);
}
.search-filter .amount-range input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.search-filter .order-type {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--white), 0.1);
}
.search-filter .order-type .search-form {
  width: 100%;
  border-radius: 6px;
  background-color: rgba(var(--box-bg), 1);
  padding: 15px;
}
.search-filter .order-type .search-form.search-form-check:checked {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.search-filter .order-type .search-form .form-check {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.search-filter .order-type .search-form .form-check .form-check-label {
  font-weight: 400;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--dark-text), 1);
  margin-right: auto;
}
[dir=rtl] .search-filter .order-type .search-form .form-check .form-check-label {
  margin-right: unset;
  margin-left: auto;
}
.search-filter .order-type .search-form .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.search-filter .order-type .search-form .form-check .form-check-input:focus {
  box-shadow: none;
}
.search-filter .order-type .search-form .form-check .form-check-input:checked[type=radio] {
  background-image: url(../images/svg/check.svg);
}
.search-filter .order-type .search-form .form-check .form-check-input[type=radio] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin: 0;
}
.search-filter .footer-modal {
  position: fixed;
  bottom: 0;
  padding: 12px 20px;
  width: 100%;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.2);
}

.filter-modal .filter-header {
  display: flex;
  width: 100%;
}
.filter-modal .filter-header .title {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  color: rgba(var(--dark-text), 1);
}
.filter-modal .btn-close {
  position: absolute;
  top: 20px;
  color: rgba(var(--dark-text), 1);
  box-shadow: none;
}
.filter-modal .filter-body .filter-box h3 {
  font-weight: 600;
  font-size: 16px;
}
.filter-modal .filter-body .filter-box h2 {
  color: rgba(var(--theme-color), 1);
}
.filter-modal .filter-body .filter-list {
  border-bottom: 1.5px dashed rgba(var(--dashed-line), 1);
}
.filter-modal .filter-body .filter-list li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
.filter-modal .filter-body .filter-list li .product-size {
  color: rgba(var(--dark-text), 1);
}
.filter-modal .filter-body .filter-list li .product-price {
  margin-left: auto;
  display: flex;
}
[dir=rtl] .filter-modal .filter-body .filter-list li .product-price {
  margin-left: unset;
  margin-right: auto;
}
.filter-modal .filter-body .filter-list li .product-price .form-check-label {
  margin-right: 30px;
  font-weight: 600;
  color: rgba(var(--dark-text), 1);
}
[dir=rtl] .filter-modal .filter-body .filter-list li .product-price .form-check-label {
  margin-right: unset;
  margin-left: 30px;
}
.filter-modal .filter-body .filter-list li .product-price .form-check-input {
  border: 1.5px solid rgba(var(--light-text), 1);
  box-shadow: none;
  padding-right: 0;
}
[dir=rtl] .filter-modal .filter-body .filter-list li .product-price .form-check-input {
  padding-right: unset;
  padding-left: 0;
}
.filter-modal .filter-body .filter-list li .product-price .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border: none;
}
.filter-modal .filter-footer {
  margin-top: 75px;
  padding-bottom: 20px;
}

.product-detail-popup {
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
  border-radius: 15px 15px 0px 0px;
  padding: 20px;
}
.product-detail-popup.show {
  height: auto;
  background-color: rgba(var(--white), 1);
}
.product-detail-popup .product-img {
  width: 100%;
  border-radius: 16px;
}
.product-detail-popup .product-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(var(--black), 0.1);
}
.product-detail-popup .product-content .product-name {
  font-weight: 600;
  font-size: 14px;
  margin: 5px 0;
  color: rgba(var(--dark-text), 1);
}
.product-detail-popup .product-content .rating-stars {
  display: flex;
}
.product-detail-popup .product-content .rating-stars .stars {
  color: rgba(var(--rate-color), 1);
}
.product-detail-popup .product-content .product-price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--light-text), 1);
}
.product-detail-popup .product-content .product-price span {
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 600;
}
.product-detail-popup .product-content .plus-minus {
  border-radius: 6px;
  border: 1px solid rgba(var(--theme-color), 1);
  padding: 6px 17px;
  display: inline-flex;
  align-items: center;
  background-color: rgba(var(--white), 1);
  text-align: center;
}
.product-detail-popup .product-content .plus-minus input {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 14px;
  outline: none;
  width: 35px;
  text-align: center;
}
.product-detail-popup .product-content .plus-minus i {
  color: rgba(var(--theme-color), 1);
}
.product-detail-popup p {
  padding: 10px 0;
  line-height: 17px;
  margin: 0;
}
.product-detail-popup .ingredient-list {
  padding-inline-start: 20px;
  width: 100%;
}
.product-detail-popup .ingredient-list li {
  color: rgba(var(--light-text), 1);
  font-size: 13px;
  display: list-item;
  list-style-type: disc;
}

.cart-popup {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 600px;
  background: linear-gradient(180deg, #414449 1.31%, #1f1f1f 101.06%);
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
  border-radius: 20px 20px 0px 0px;
  height: auto;
  padding: 20px;
  display: none;
  display: flex;
  align-items: center;
}
.cart-popup .price-items h3 {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--theme-color), 1);
}
.cart-popup .price-items h6 {
  color: rgb(255, 255, 255);
  margin-top: 6px;
}
.cart-popup .cart-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  margin-left: auto;
}
[dir=rtl] .cart-popup .cart-btn {
  margin-left: unset;
  margin-right: auto;
}

.pay-popup {
  /* position: fixed; */
  width: 100%;
  bottom: 0;
  left: 50%;
  /* transform: translateX(-50%); */
  z-index: 2;
  max-width: 600px;
  background: linear-gradient(180deg, #414449 1.31%, #1f1f1f 101.06%);
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
  border-radius: 20px 20px 0px 0px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 20px;
}
.pay-popup .price-items h3 {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--theme-color), 1);
}
.pay-popup .price-items h6 {
  color: rgb(255, 255, 255);
  margin-top: 6px;
}
.pay-popup .pay-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  margin-left: auto;
}
[dir=rtl] .pay-popup .pay-btn {
  margin-left: unset;
  margin-right: auto;
}

.tracking-product {
  padding: 20px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 20px 20px 0px 0px;
  border: 1px solid rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 50%;
  max-width: 600px;
  transform: translateX(-50%);
}
.tracking-product .tracking-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(var(--black), 0.22);
}
.tracking-product .tracking-head .profile-pic {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  object-fit: cover;
}
.tracking-product .tracking-head h5 {
  font-weight: 600;
  color: rgba(var(--dark-text), 1);
}
.tracking-product .tracking-head h6 {
  color: rgba(var(--light-text), 1);
}
.tracking-product .tracking-head .content-option {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
[dir=rtl] .tracking-product .tracking-head .content-option {
  margin-left: unset;
  margin-right: auto;
}
.tracking-product .tracking-head .content-option .message-icon {
  background-color: rgb(47, 168, 255);
  padding: 6px;
  border-radius: 100%;
}
.tracking-product .tracking-head .content-option .call-icon {
  background-color: rgba(var(--success-color), 1);
  padding: 6px;
  border-radius: 100%;
}
.tracking-product .tracking-body {
  padding: 15px 0;
  border-bottom: 1px dashed rgba(var(--black), 0.22);
}
.tracking-product .tracking-body .tracking-place li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 25px;
}
.tracking-product .tracking-body .tracking-place li:last-child::after {
  display: none;
}
.tracking-product .tracking-body .tracking-place li::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 25px;
  border: 1px dashed rgba(var(--light-text), 1);
  transform: rotate(90deg);
}
[dir=rtl] .tracking-product .tracking-body .tracking-place li::after {
  left: unset;
  right: 0;
}
.tracking-product .tracking-body .tracking-place li span {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: rgba(var(--box-bg), 1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tracking-product .tracking-body .tracking-place li span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: rgba(var(--light-text), 1);
  border-radius: 100%;
}
.tracking-product .tracking-body .tracking-place li.active li::after {
  border: rgba(var(--theme-color), 1);
}
.tracking-product .tracking-body .tracking-place li.active::after {
  border-color: rgba(var(--theme-color), 1);
}
.tracking-product .tracking-body .tracking-place li.active span {
  background-color: rgba(var(--theme-color), 0.15);
}
.tracking-product .tracking-body .tracking-place li.active span::after {
  background-color: rgba(var(--theme-color), 1);
}

.delivery-modal .modal-content {
  padding: 20px;
}
.delivery-modal .modal-content h5 {
  line-height: 1.2;
}

.confirm-title .for-dark {
  display: none;
}

.feedback-modal .modal-content {
  padding: 20px;
}
.feedback-modal .modal-content .modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(var(--white), 1);
}
.feedback-modal .modal-content .modal-title h3 {
  color: rgba(var(--black), 1);
}
.feedback-modal .modal-content .rating {
  display: flex;
  justify-content: center;
  font-size: 40px;
  gap: 5px;
  margin-top: 30px;
}
.feedback-modal .modal-content .rating .star {
  color: rgba(var(--theme-color), 1);
}
.feedback-modal .modal-content .feedback-box {
  margin-top: 30px;
  background-color: rgba(var(--box-bg), 1);
  border: none;
  box-shadow: none;
}

.done-modal .modal-content {
  padding: 20px;
}
.done-modal .modal-content h5 {
  line-height: 1.2;
}

.location-modal .modal-title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  color: rgba(var(--dark-text), 1);
  background-color: rgba(var(--white), 1);
}
.location-modal .modal-title i {
  font-size: 20px;
}
.location-modal .modal-title .btn-close {
  margin-left: auto;
}
.location-modal .current-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(var(--dashed-line), 1);
}
.location-modal .current-location .current-address {
  display: flex;
  gap: 10px;
}
.location-modal .current-location .current-address .focus {
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.location-modal .current-location .current-address h4 {
  color: rgba(var(--theme-color), 1);
  font-weight: 600;
}
.location-modal .current-location .current-address h6 {
  width: 80%;
  margin-top: 4px;
  color: rgba(var(--light-text), 1);
}
.location-modal .current-location .arrow {
  font-size: 20px;
  color: rgba(var(--dark-text), 1);
}
.location-modal .recent-location {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--dashed-line), 1) 10;
}
.location-modal .recent-location .loation-icon {
  background-color: rgba(var(--theme-color), 1);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: rgba(var(--white), 1);
}
.location-modal .recent-location .loation-icon i {
  color: rgb(255, 255, 255);
}
.location-modal .recent-location .recant-address {
  margin-top: 4px;
  width: 80%;
}
.location-modal .recent-location .recant-address h3 {
  color: rgba(var(--dark-text), 1);
  font-weight: 500;
}
.location-modal .recent-location .recant-address h6 {
  margin-top: 4px;
  color: rgba(var(--light-text), 1);
}

.offcanvas.addtohome-popup {
  height: auto;
}
.offcanvas.addtohome-popup .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
}
[dir=rtl] .offcanvas.addtohome-popup .btn-close {
  left: 20px;
  right: unset;
  text-align: right;
}
.offcanvas.addtohome-popup .offcanvas-body {
  text-align: right;
  background-color: rgba(var(--white));
  padding: 15px;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body {
  text-align: left;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  text-align: left;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content {
  padding-left: 15px;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body .app-info .content {
  padding-left: 0;
  padding-right: 15px;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content h3 {
  font-weight: 600;
  color: rgba(var(--dark-text), 1);
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content a {
  color: rgba(var(--light-text), 1);
}
.offcanvas.addtohome-popup .offcanvas-body .home-screen-btn {
  display: inline-block;
}

.sidebar-offcanvas {
  width: 280px !important;
  background-color: rgba(var(--white), 1);
}
.sidebar-offcanvas.show {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  height: 100%;
  visibility: visible;
}
.sidebar-offcanvas .offcanvas-header {
  display: flex;
  justify-content: unset;
}
.sidebar-offcanvas .offcanvas-header h3 {
  color: rgba(var(--dark-text), 1);
  margin-left: 10px;
}
[dir=rtl] .sidebar-offcanvas .offcanvas-header h3 {
  margin-left: 0;
  margin-right: 10px;
}
.sidebar-offcanvas .offcanvas-header img {
  width: 40px;
  border-radius: 100%;
}
.sidebar-offcanvas .offcanvas-header .btn-close {
  background-color: rgba(var(--white), 0.4);
  margin-left: auto;
  margin-right: 0px;
  font-size: 10px;
  box-shadow: none;
}
[dir=rtl] .sidebar-offcanvas .offcanvas-header .btn-close {
  margin-left: 0;
  margin-right: auto;
}
.sidebar-offcanvas .sidebar-content .link-section li {
  display: block;
  padding: 10px;
  border-bottom: 1px solid rgba(var(--dark-text), 0.1);
}
.sidebar-offcanvas .sidebar-content .link-section li:last-child() {
  display: none;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox] {
  position: relative;
  width: 37px;
  height: 22px;
  appearance: none;
  background: rgba(var(--box-bg), 1);
  outline: none;
  border-radius: 50px;
  cursor: pointer;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox]:checked {
  background: rgba(var(--theme-color), 0.1);
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox]:checked::before {
  transform: translateX(80%) translateY(-50%);
  background: rgba(var(--theme-color), 1);
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox]:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(var(--light-text), 1);
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  transition: 0.5s;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages h3 {
  color: rgba(var(--dark-text), 1);
}
.sidebar-offcanvas .sidebar-content .link-section li .pages i {
  color: rgba(var(--dark-text), 1);
  font-size: 28px;
  line-height: 1;
}

/*=====================
    Product-box CSS start
==========================*/
.products {
  padding-top: 33px;
}
.products .product-box {
  position: relative;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(var(--black), 0) -3.45%, rgba(var(--black), 0.12) 87.93%);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: visible;
}
[dir=rtl] .products .product-box {
  direction: rtl;
}
.products .product-box-bg {
  padding: 8px;
  background-color: rgba(var(--black), 0);
  margin-bottom: 5px;
}
.products .product-box-bg a {
  border-radius: 8px;
  margin-bottom: 8px;
}
.products .product-box-bg .product-box-detail {
  background-color: transparent !important;
  padding: 0 !important;
}
.products .product-box .product-box-img {
  margin-top: -50px;
  display: block;
}
.products .product-box .product-box-detail h5 {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.products .product-box .product-box-detail .timing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
}
.products .product-box .product-box-detail .timing li {
  position: relative;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(var(--dark-text), 1);
}
.products .product-box .product-box-detail .timing li:last-child::after {
  display: none;
}
.products .product-box .product-box-detail .timing li .star {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(var(--success-color), 1);
  border-radius: 100%;
}
.products .product-box .product-box-detail .timing li .star i {
  color: rgb(225, 225, 225);
}
.products .product-box .product-box-detail .timing li::after {
  content: "";
  position: absolute;
  margin-left: 40px;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
  background-color: rgba(var(--dashed-line), 1);
  width: 30%;
  height: 1px;
}
[dir=rtl] .products .product-box .product-box-detail .timing li::after {
  margin-left: unset;
  margin-right: 44px;
}
.products .product-box .product-box-detail .bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.products .product-box .product-box-detail .bottom-panel .price {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
}
.products .product-box .product-box-detail .bottom-panel .cart {
  width: 25px;
  height: 25px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(var(--theme-color), 0.2);
  border-radius: 100%;
}
.products .product-box .product-box-detail .bottom-panel .cart i {
  color: rgba(var(--theme-color), 1);
}

.vertical-product-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  height: 100%;
}
.vertical-product-box .like-icon {
  position: absolute;
  top: 5px;
  right: 5px;
}
[dir=rtl] .vertical-product-box .like-icon {
  right: unset;
  left: 5px;
}
.vertical-product-box .like-icon i {
  padding: 5px;
  color: rgba(var(--error-color), 1);
  background-color: rgb(255, 255, 255);
  border-radius: 100%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vertical-product-box .like-icon .fill-icon {
  display: none;
}
.vertical-product-box .like-icon.active .outline-icon {
  display: none;
}
.vertical-product-box .like-icon.active .fill-icon {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.vertical-product-box .like-icon.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.vertical-product-box .like-icon.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.vertical-product-box .vertical-box-img {
  position: relative;
  /* width: 70%; */
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
}
[dir=rtl] .vertical-product-box .vertical-box-img {
  border-radius: 0 12px 12px 0;
}
.vertical-product-box .vertical-box-img .img {
  height: 100%;
  object-fit: cover;
  padding: 10px 10px;
  border-radius: 15px;
}
.vertical-product-box .vertical-box-img .offers {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: rgba(var(--white), 1);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.83) 43.87%, rgba(0, 0, 0, 0) 94.57%);
  width: 100%;
}
.vertical-product-box .vertical-box-img .offers h2 {
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.vertical-product-box .vertical-box-img .offers h6 {
  color: rgb(255, 255, 255);
}
[dir=rtl] .vertical-product-box .vertical-box-img .offers {
  left: unset;
  right: 0;
}
.vertical-product-box .vertical-box-details {
  /*width: 0%;*/
}
.vertical-product-box .vertical-box-details .vertical-box-head {
  padding: 10px 10px 0 10px;
}
.vertical-product-box .vertical-box-details .vertical-box-head .restaurant {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vertical-product-box .vertical-box-details .vertical-box-head .restaurant h5 {
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.vertical-product-box .vertical-box-details .vertical-box-head .restaurant h6 {
  padding: calc(2px + 3 * (100vw - 320px) / 1600) calc(5px + 5 * (100vw - 320px) / 1600);
  border-radius: 33px;
  display: flex;
  align-items: center;
  gap: calc(3px + 2 * (100vw - 320px) / 1600);
  font-size: 10px;
  font-weight: 600;
  color: rgba(var(--accent-color), 1);
  background-color: rgba(var(--accent-color), 0.08);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.vertical-product-box .vertical-box-details .vertical-box-head .restaurant h6 i {
  font-size: 12px;
  line-height: 1;
  display: flex;
}
.vertical-product-box .vertical-box-details .vertical-box-head h5 {
  color: rgba(var(--dark-text), 1);
}
.vertical-product-box .vertical-box-details .food-items {
  border: none;
  padding: 0;
  margin-top: 5px;
  color: rgba(var(--light-text), 1);
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
[dir=rtl] .vertical-product-box .vertical-box-details .food-items {
  text-align: right;
}
.vertical-product-box .vertical-box-details .rating-star {
  border-bottom: 1px dashed rgba(var(--dashed-line), 1);
  padding-bottom: 6px;
  text-align: left;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: rgba(var(--dark-text), 1);
}
[dir=rtl] .vertical-product-box .vertical-box-details .rating-star {
  text-align: right;
}
.vertical-product-box .vertical-box-details .rating-star .star {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(var(--success-color), 1);
  border-radius: 100%;
}
.vertical-product-box .vertical-box-details .rating-star .star i {
  color: rgb(255, 255, 255);
}
.vertical-product-box .vertical-box-details .location-distance {
  display: flex;
  gap: 4px;
  padding: 5px 10px;
}
.vertical-product-box .vertical-box-details .location-distance .location {
  position: relative;
  width: 60%;
  text-align: left;
  border-right: 1px solid rgba(var(--dashed-line), 1);
  margin-right: calc(5px + 10 * (100vw - 320px) / 1600);
  padding-right: calc(5px + 10 * (100vw - 320px) / 1600);
}
[dir=rtl] .vertical-product-box .vertical-box-details .location-distance .location {
  text-align: right;
  border-right: unset;
  margin-right: unset;
  padding-right: unset;
  border-left: 1px solid rgba(var(--dashed-line), 1);
  margin-left: calc(5px + 10 * (100vw - 320px) / 1600);
  padding-left: calc(5px + 10 * (100vw - 320px) / 1600);
}
.vertical-product-box .vertical-box-details .location-distance .location .place {
  position: relative;
  text-align: left;
  padding: 6px;
  color: rgba(var(--dark-text), 1);
}
[dir=rtl] .vertical-product-box .vertical-box-details .location-distance .location .place {
  text-align: right;
}
.vertical-product-box .vertical-box-details .location-distance .location .place::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--dashed-line), 1);
  width: 80%;
  height: 1px;
}
[dir=rtl] .vertical-product-box .vertical-box-details .location-distance .location .place::before {
  left: unset;
  right: 0;
}
.vertical-product-box .vertical-box-details .location-distance .location .place::after {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--black), 1);
  border-radius: 100%;
}
[dir=rtl] .vertical-product-box .vertical-box-details .location-distance .location .place::after {
  left: unset;
  right: -5px;
}
.vertical-product-box .vertical-box-details .location-distance .location h6 {
  color: rgba(var(--dark-text), 1);
}
.vertical-product-box .vertical-box-details .location-distance .distance {
  position: relative;
  width: 40%;
  border: none;
}
.vertical-product-box .vertical-box-details .location-distance .distance::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 1px;
  height: 40%;
  border-left: 1px dashed rgba(var(--theme-color), 1);
  transform: translateY(-50%);
}
[dir=rtl] .vertical-product-box .vertical-box-details .location-distance .distance::after {
  left: unset;
  right: 6px;
}
.vertical-product-box .vertical-box-details .location-distance .distance ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--dark-text), 1);
}

.product-box2 {
  display: flex;
  gap: 15px;
}
.product-box2 .product-content {
  width: calc(100% - 130px);
}
.product-box2 .product-content .product-name {
  font-weight: 600;
  font-size: 14px;
  margin: 2px 0;
  color: rgba(var(--dark-text), 1);
}
.product-box2 .product-content .rating-stars {
  display: flex;
}
.product-box2 .product-content .rating-stars .stars {
  color: rgba(var(--rate-color), 1);
}
.product-box2 .product-content .rating-stars h5 {
  margin-left: calc(3px + 1 * (100vw - 320px) / 1600);
}
[dir=rtl] .product-box2 .product-content .rating-stars h5 {
  margin-left: unset;
  margin-right: calc(3px + 1 * (100vw - 320px) / 1600);
}
.product-box2 .product-content .product-price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--light-text), 1);
}
.product-box2 .product-content .product-price span {
  color: rgba(var(--theme-color), 1);
  font-size: 16px;
  font-weight: 600;
}
.product-box2 .product-content p {
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-box2 .product-img {
  position: relative;
  text-align: center;
  width: 122px;
  height: 128px;
}
[dir=rtl] .product-box2 .product-img {
  text-align: right;
}
.product-box2 .product-img .img {
  border-radius: 12px;
}
.product-box2 .product-img .add-btn {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -15px;
  box-shadow: 0px 2px 11px rgba(252, 128, 25, 0.14);
  border-radius: 6px;
}
.product-box2 .product-img .add-btn .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 17px;
  border: 1px solid rgba(var(--theme-color), 1);
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
  margin: 0;
  font-size: 14px;
}
.product-box2 .product-img .add-btn .btn-outline:hover {
  border: 1px solid rgba(var(--theme-color), 1);
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
}
.product-box2 .product-img .plus-minus {
  border-radius: 6px;
  border: 1px solid rgba(var(--theme-color), 1);
  padding: 6px 17px;
  display: inline-flex;
  align-items: center;
  background-color: rgba(var(--white), 1);
  text-align: center;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -15px;
  display: none;
}
.product-box2 .product-img .plus-minus input {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 14px;
  outline: none;
  width: 35px;
  text-align: center;
}
.product-box2 .product-img .plus-minus i {
  color: rgba(var(--theme-color), 1);
}

.horizontal-product-box {
  display: flex;
  gap: 10px;
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.horizontal-product-box .product-img .img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
}
.horizontal-product-box .product-content {
  width: calc(100% - 78px - 10px);
  position: relative;
}
.horizontal-product-box .product-content h5 {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
  max-width: 80%;
  font-size: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.horizontal-product-box .product-content h6 {
  color: rgba(var(--light-text), 1);
  font-weight: 400;
  margin-top: 4px;
}
.horizontal-product-box .product-content .plus-minus {
  border: 1px solid #0E2064;
  padding: 3px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  background-color: rgba(var(--white), 1);
  text-align: center;
  position: absolute;
  transform: translateX(-50%);
  left: 45px;
  bottom: 0;
}
.horizontal-product-box .product-content .plus-minus input {
  background-color: rgba(var(--white), 1);
  color: #0E2064;
  border: none;
  font-size: 14px;
  outline: none;
  width: 35px;
  text-align: center;
}
.horizontal-product-box .product-content .plus-minus i {
  color: #0E2064;
}
.horizontal-product-box .product-content .red-symbol {
  position: absolute;
  top: 0;
  right: 0;
}
[dir=rtl] .horizontal-product-box .product-content .red-symbol {
  left: 0;
  right: unset;
}
.horizontal-product-box .product-content .product-price {
  color: #0E2064;
  font-weight: 700;
  position: absolute;
  right: 0;
  bottom: 8px;
}

.order-box .vertical-box-img {
  width: 96px;
  height: 100px;
}
.order-box .vertical-box-details {
  width: calc(100% - 96px);
  padding: 10px;
}
.order-box .vertical-box-details .vertical-box-head {
  padding: 0;
  border-bottom: 1px dashed rgba(var(--dashed-line), 1);
}
.order-box .vertical-box-details .vertical-box-head .restaurant h5 {
  font-weight: 600;
}
.order-box .vertical-box-details .reorder {
  padding: 0;
}
.order-box .vertical-box-details .reorder .rating-star {
  border-bottom: none;
}
.order-box .vertical-box-details .reorder .rating-star .timing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
}
.order-box .vertical-box-details .reorder .rating-star .timing li {
  position: relative;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(var(--dark-text), 1);
}
.order-box .vertical-box-details .reorder .rating-star .timing li:last-child::after {
  display: none;
}
.order-box .vertical-box-details .reorder .rating-star .timing li .star {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(var(--success-color), 1);
  border-radius: 100%;
}
.order-box .vertical-box-details .reorder .rating-star .timing li::after {
  content: "";
  position: absolute;
  margin-left: 40px;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
  background-color: rgba(var(--dashed-line), 1);
  width: 30%;
  height: 1px;
}
[dir=rtl] .order-box .vertical-box-details .reorder .rating-star .timing li::after {
  margin-left: unset;
  margin-right: 44px;
}
.order-box .vertical-box-details .reorder .rating-star .order {
  font-size: 12px;
  padding: 4px;
  margin-left: auto;
}
[dir=rtl] .order-box .vertical-box-details .reorder .rating-star .order {
  margin-left: unset;
  margin-right: auto;
}

.effect-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.effect-group .effect {
  display: block;
  position: absolute;
  top: 38%;
  left: 50%;
  width: 20px;
  transform-origin: 0px 2px;
}
.effect-group .effect:nth-child(2) {
  transform: rotate(72deg);
}
.effect-group .effect:nth-child(3) {
  transform: rotate(144deg);
}
.effect-group .effect:nth-child(4) {
  transform: rotate(216deg);
}
.effect-group .effect:nth-child(5) {
  transform: rotate(288deg);
}
.effect-group .effect:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  border-radius: 2px;
  height: 3px;
  background: #777777;
}
.effect-group .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 10%;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background: rgba(var(--theme-color), 1);
  transform: scale(0, 0);
}

@keyframes fireworkLine {
  0% {
    right: 20%;
    transform: scale(0, 0);
  }
  25% {
    right: 20%;
    width: 6px;
    transform: scale(1, 1);
  }
  35% {
    right: 0;
    width: 35%;
  }
  70% {
    right: 0;
    width: 4px;
    transform: scale(1, 1);
  }
  100% {
    right: 0;
    transform: scale(0, 0);
  }
}
@keyframes fireworkPoint {
  30% {
    transform: scale(0, 0);
  }
  60% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 0);
  }
}
/*=====================
    Ratio CSS start
==========================*/
.ratio_40 .bg-size:before {
  padding-top: 40%;
  content: "";
  display: block;
}

.ratio_45 .bg-size:before {
  padding-top: 45%;
  content: "";
  display: block;
}

.ratio50 .bg-size:before {
  padding-top: 50%;
  content: "";
  display: block;
}

.ratio_55 .bg-size:before {
  padding-top: 55%;
  content: "";
  display: block;
}

.ratio2_3 .bg-size:before {
  padding-top: 60%;
  content: "";
  display: block;
}

.ratio3_2 .bg-size:before {
  padding-top: 66.66%;
  content: "";
  display: block;
}

.ratio_landscape .bg-size:before {
  padding-top: 75%;
  content: "";
  display: block;
}

.ratio_square .bg-size:before {
  padding-top: 100%;
  content: "";
  display: block;
}

.ratio_apos .bg-size:before {
  padding-top: 127.7777778%;
  content: "";
  display: block;
}

.ratio_portrait .bg-size:before {
  padding-top: 150%;
  content: "";
  display: block;
}

.ratio1_2 .bg-size:before {
  padding-top: 200%;
  content: "";
  display: block;
}

.b-top {
  background-position: top !important;
}

.b-bottom {
  background-position: bottom !important;
}

.b-center {
  background-position: center !important;
}

.b-left {
  background-position: left !important;
}

.b-right {
  background-position: right !important;
}

.b_size_content {
  background-size: contain !important;
}

/*=====================
  Slider CSS start
==========================*/
.swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.swiper-wrapper {
  direction: ltr;
}

.offer-wrapper .swiper-slide img {
  transform: scale(0.8);
  opacity: 0.4;
}
.offer-wrapper .swiper-slide-active img {
  transform: scale(1);
  opacity: 1;
}

/*=====================
    tab CSS start
==========================*/
.nav {
  border-bottom: 1px solid rgba(var(--dashed-line), 0.5);
  gap: 5px;
}
.nav .nav-item .nav-link {
  color: rgba(var(--light-text), 1);
  position: relative;
  padding: 4px;
}
.nav .nav-item .nav-link.active {
  color: rgb(255 255 255);
    background-color: rgb(17 34 98);
}
/*.nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}*/
.nav .nav-item .nav-link.active .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
}
[dir=rtl] .nav .nav-item .nav-link.active .nav-link::after {
  left: unset;
  right: 0;
}

/*=====================
    Title CSS start
==========================*/
.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0px;
}
.title h3 {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
}
.title a {
  color: #0E2064;
}

/* layout scss files */
/*=====================
    Header CSS start
==========================*/
.header-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header-panel a {
  z-index: 1;
}
.header-panel i {
  color: rgba(var(--dark-text), 1);
  font-size: 25px;
}
.header-panel h2 {
  position: relative;
  font-weight: 600;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: rgba(var(--dark-text), 1);
  font-size: 18px;
}
.header-panel .create-address {
  color: rgba(var(--theme-color), 1);
}
.header-panel .add-square-img {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  border: 1.5px solid;
  border-radius: 10px;
  width: 100%;
  padding: 0 5px;
  color: rgba(var(--theme-color), 1);
}

.header {
  display: flex;
  justify-content: space-between;
}
.header .head-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .head-content .sidebar-btn {
  width: 34px;
  height: 34px;
  color: #FFF;
  padding: 10px;
  background-color: #0E2064;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border: none;
}
.header .head-content .sidebar-btn i {
  font-size: 14px;
}
.header .head-content .header-location a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  background: none;
  padding: 0;
}
.header .head-content .header-location a h2 {
  color: rgba(var(--dark-text), 1);
}
.header .head-content .header-location a .d-arrow {
  color: rgba(var(--dark-text), 1);
}
.header .head-content .header-location .pin {
  color: rgba(var(--theme-color), 1);
}
.header .head-content .header-location i {
  font-size: 24px;
}
.header a {
  width: 34px;
  height: 34px;
  color:#FFF;
  padding: 10px;
  background-color:  #0E2064;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-panel-lg {
  position: relative;
  background-image: url(../images/background/restaurant-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 184px;
}
.header-panel-lg .panel {
  position: absolute;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  width: calc(100% - 40px);
}
.header-panel-lg .panel a {
  color: rgb(225, 225, 225);
  background: rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  backdrop-filter: blur(3px);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  position: relative;
}
.header-panel-lg .panel a:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100%;
  padding: 1px;
  background: linear-gradient(128.66deg, rgba(var(--white), 1) -1.63%, rgba(var(--white), 0) 92.16%);
  -webkit-mask: linear-gradient(rgba(var(--white), 1) 0 0) content-box, linear-gradient(rgba(var(--white), 1) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

.chatting-header {
  width: 100%;
  border: none;
  border-radius: unset;
  position: fixed;
  top: 0;
  left: 0;
  max-width: unset;
  transform: none;
  bottom: unset;
}
.chatting-header .tracking-head {
  border-bottom: none;
  padding: 0;
  z-index: 1;
}
.chatting-header .tracking-head .back-arrow {
  color: rgba(var(--dark-text), 1);
  font-size: 22px;
}

/*=====================
  Nav CSS start
==========================*/
.navbar-menu {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 600px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .navbar-menu {
    max-width: 100%;
  }
}
.navbar-menu ul {
  display: flex;
  justify-content: space-between;
}
.navbar-menu ul li {
  position: relative;
  color: rgba(var(--light-text), 1);
  text-align: center;
  width: 15%;
  padding: 10px 5px; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-menu ul li.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 4px;
  background: rgba(var(--theme-color), 1);
  border-radius: 10px;
  transform: translateX(-50%);
}
.navbar-menu ul li.active a.icon {
  color: rgba(var(--theme-color), 1);
}
.navbar-menu ul li.active a.icon .active {
  display: block;
}
.navbar-menu ul li.active a.icon .unactive {
  display: none;
}
.navbar-menu ul li.active a span {
  color: rgba(var(--dark-text), 1);
  font-weight: 500;
}
.navbar-menu ul a {
  color: rgba(var(--light-text), 1);
}
.navbar-menu ul a.icon {
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
}
.navbar-menu ul a.icon.logo {
  width: 100%;
}
.navbar-menu ul a.icon img {
  margin-inline: auto;
  /*width: 25px; */
  height: 25px;
}
.navbar-menu ul a.icon img.active {
  display: none;
}
.navbar-menu ul a.icon img.unactive {
  display: block;
}
.navbar-menu ul a.icon span {
  font-size: 10px;
  font-weight: 500;
}

/* pages */
/*=====================
    Address CSS start
==========================*/
.address-list li {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 20px;
}
.address-list li .address-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}
.address-list li .address-icon::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 15px;
  width: 18px;
  height: 1px;
  background-color: rgba(var(--light-text), 1);
  z-index: 1;
}
[dir=rtl] .address-list li .address-icon::before {
  left: unset;
  right: 50px;
}
.address-list li .address-icon::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 36px;
  width: 20px;
  height: 1px;
  background-color: rgba(var(--light-text), 1);
  z-index: 1;
}
[dir=rtl] .address-list li .address-icon::after {
  left: unset;
  right: 48px;
}
.address-list li .address-icon span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.address-list li .address-icon span i {
  font-size: 24px;
  color: rgba(var(--theme-color), 1);
}
.address-list li .address-icon span::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 13px;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--light-text), 1);
  border-radius: 100%;
  z-index: 1;
}
[dir=rtl] .address-list li .address-icon span::before {
  left: unset;
  right: 65px;
}
.address-list li .address-icon span::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 34px;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--light-text), 1);
  border-radius: 100%;
  z-index: 1;
}
[dir=rtl] .address-list li .address-icon span::after {
  left: unset;
  right: 65px;
}
.address-list li .address-icon span .address-img {
  stroke: rgba(var(--theme-color), 1);
  fill: transparent;
  stroke-width: 1.5px;
  width: 21px;
  height: 21px;
}
.address-list .address-content {
  position: relative;
  overflow: hidden;
  width: calc(100% - 60px);
  margin-left: 10px;
  background: rgba(var(--white), 1);
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}
[dir=rtl] .address-list .address-content {
  margin-left: unset;
  margin-right: 10px;
  padding: 12px 18px 12px 12px;
}
.address-list .address-content .address-checkbox {
  min-height: unset;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  right: 0;
}
[dir=rtl] .address-list .address-content .address-checkbox {
  left: 0;
  right: unset;
  margin-left: unset;
  margin-right: 0;
}
.address-list .address-content .address-checkbox .form-check-input {
  width: 26px;
  height: 26px;
  border-radius: 0 8px 0;
  margin: 0;
  float: unset;
  background-color: rgba(var(--white), 1);
  border: none;
  background: transparent;
}
[dir=rtl] .address-list .address-content .address-checkbox .form-check-input {
  border-radius: 8px 0 8px 0;
}
.address-list .address-content .address-checkbox .form-check-input:active {
  filter: brightness(100%);
}
.address-list .address-content .address-checkbox .form-check-input:focus {
  box-shadow: none;
}
.address-list .address-content .address-checkbox .form-check-input:checked {
  background-image: url(../images/svg/check.svg);
  background-color: rgba(var(--theme-color), 1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.address-list .address-content .address-place {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address-list .address-content .address-place h5 {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
}
.address-list .address-content .address-place .edit {
  font-size: 20px;
}
.address-list .address-content p {
  color: rgba(var(--light-text), 1);
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  padding: 8px 0 0 0;
  margin: 8px 0 0 0;
  font-size: 13px;
}
.address-list .address-content .select-option {
  color: rgba(var(--dark-text), 1);
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  font-size: 13px;
  padding: 8px 0 0 0;
  margin: 8px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address-list .address-content .select-option .form-check {
  display: flex;
  min-height: unset;
  padding-left: 0;
  margin-bottom: 0;
  align-items: center;
}
[dir=rtl] .address-list .address-content .select-option .form-check {
  padding-left: unset;
  padding-right: 0;
}
.address-list .address-content .select-option .form-check .form-check-label {
  margin-left: 5px;
  letter-spacing: 0.03em;
}
[dir=rtl] .address-list .address-content .select-option .form-check .form-check-label {
  margin-left: unset;
  margin-right: 5px;
}
.address-list .address-content .select-option .form-check .form-check-input {
  width: 18px;
  height: 18px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  margin: 0;
}
.address-list .address-content .select-option .form-check .form-check-input:checked {
  background-image: url(../images/svg/check.svg);
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
  border: none;
  float: unset;
  margin: 0;
}

.address-filter h3 {
  margin-bottom: 12px;
  color: rgba(var(--dark-text), 1);
}
.address-filter .food-symbol {
  border-bottom: 1px dashed rgba(var(--black), 0.22) !important;
  gap: calc(6px + 6 * (100vw - 320px) / 1600) !important;
}
.address-filter .food-symbol li {
  border: 1px solid rgba(var(--box-bg), 1);
  border-radius: 7px;
}
.address-filter .food-symbol li .food-types h5 {
  line-height: 1;
}
.address-filter .food-symbol li .food-types i {
  line-height: 1;
}
.address-filter .food-symbol li .food-types.active {
  background-color: rgba(var(--theme-color), 1);
}
.address-filter .food-symbol li .food-types.active i {
  color: rgb(255, 255, 255);
}
.address-filter .food-symbol li .food-types.active h5 {
  color: rgb(255, 255, 255);
}

.address-list {
  margin-top: -10px;
}

/*=============================
    Authentication CSS start
===============================*/
.login-img {
  width: 100%;
}

.line-vector {
  position: relative;
  left: 20px;
  height: 30px;
}
[dir=rtl] .line-vector {
  left: unset;
  right: 20px;
}

h2 {
  font-size: 20px;
}

.division {
  position: relative;
  text-align: center;
  margin-top: calc(30px + 20 * (100vw - 320px) / 1600);
  z-index: 0;
}
.division span {
  background-color: rgba(var(--white), 1);
  color: rgb(103, 106, 109);
  padding: 0 10px;
  font-weight: 600;
  font-size: 14px;
}
.division::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: " ";
  width: 100%;
  background: linear-gradient(90deg, rgba(132, 132, 133, 0) 0%, rgb(132, 132, 133) 50%, rgba(29, 16, 57, 0) 100%);
  z-index: -1;
  height: 2px;
}
[dir=rtl] .division::after {
  left: unset;
  right: 0;
}

p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(var(--light-text), 1);
}

.otp-verification h3 {
  color: rgba(var(--light-text), 1);
  margin-top: 45px;
  font-weight: 600;
}
.otp-verification .otp-number {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
}

.location {
  position: relative;
}
.location h2 {
  color: rgba(var(--dark-text), 1);
}
.location h5 {
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(var(--light-text), 1);
}
.location .location-img {
  margin-top: 90px;
}
.location .animation-circle-inverse {
  z-index: 2;
}
.location .animation-circle-inverse i {
  position: absolute;
  background: rgba(var(--theme-color), 1);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
  border-radius: 100%;
  opacity: 0.4;
  animation: ripple1 3s linear infinite;
  top: 55%;
  left: 45%;
  z-index: 1;
  transform: translate(-50%);
}
[dir=rtl] .location .animation-circle-inverse i {
  left: unset;
  right: 45%;
}
.location .animation-circle-inverse i:nth-child(1) {
  height: 10px;
  width: 10px;
  animation: ripple1 3s linear infinite;
}
.location .animation-circle-inverse i:nth-child(2) {
  height: 20px;
  width: 20px;
  animation: ripple2 3s linear infinite;
}
.location .animation-circle-inverse i:nth-child(3) {
  height: 25px;
  width: 25px;
  animation: ripple3 3s linear infinite;
}

/*=============================
    Add-cart CSS start
===============================*/
.apply-coupon {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed rgba(var(--light-text), 1);
  background-color: rgba(var(--box-bg), 1);
  border-radius: 10px;
}
.apply-coupon .coupon-code {
  color: rgba(var(--success-color), 1);
  padding-top: 5px;
}
.apply-coupon i {
  color: rgba(var(--light-text), 1);
  font-size: 20px;
}

.bill-details {
  position: relative;
}
.bill-details .total-detail {
  position: relative;
  background-color: rgba(var(--box-bg), 1);
  padding: calc(15px + 5 * (100vw - 320px) / 1600);
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 0;
}
.bill-details .total-detail .sub-total {
  display: flex;
  justify-content: space-between;
}
.bill-details .total-detail h5 {
  color: rgba(var(--dark-text), 1);
}
.bill-details .total-detail .free {
  color: #0E2064;
  position: absolute;
  top: 54px;
  right: 20px;
}
[dir=rtl] .bill-details .total-detail .free {
  right: unset;
  left: 20px;
}
.bill-details .total-detail .delivery-info {
  width: 70%;
  margin-bottom: 15px;
  line-height: 1.2;
}
.bill-details .total-detail .grand-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed rgba(var(--black), 0.22);
  padding: 10px 0 0;
}
.bill-details .total-detail .grand-total h5 {
  color: rgba(var(--dark-text), 1);
}
.bill-details .total-detail .grand-total .amount {
  color: #0E2064;
}
.bill-details .total-detail .dots-design {
  position: absolute;
  bottom: -1px;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
}
.bill-details p {
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  padding: 15px 0 0;
}
.bill-details .delivery-time {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 0;
}
.bill-details .delivery-time::after {
  content: "";
  position: absolute;
  width: 100%;
  border: 1px dashed rgba(var(--dashed-line), 1);
  bottom: -4px;
  overflow: hidden;
  z-index: 1;
  right: 0;
}
.bill-details .delivery-time .delivery-line {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(var(--light-text), 1);
  border-top: none;
  overflow: hidden;
  background-color: rgba(var(--white), 1);
}
.bill-details .delivery-time .delivery-bike {
  position: relative;
  width: 67px;
  height: 49px;
  bottom: 0;
  right: 0;
}
[dir=rtl] .bill-details .delivery-time .delivery-bike {
  left: 0;
  right: unset;
}

.cart-add-box {
  display: flex;
  gap: 10px;
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.cart-add-box .add-img .img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
}
.cart-add-box .add-content {
  width: calc(100% - 55px - 10px);
  position: relative;
}
.cart-add-box .add-content .address {
  width: 70%;
  line-height: 1.2;
}
.cart-add-box .add-content .change-add {
  color: #0E2064;
  font-size: 13px;
  position: absolute;
  top: 0;
  right: 0;
}
[dir=rtl] .cart-add-box .add-content .change-add {
  left: 0;
  right: unset;
}

/*=====================
    voucher CSS start
==========================*/
.coupon-box {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
}
.coupon-box .coupon-left {
  position: absolute;
  left: 0;
  top: 50%;
  height: 111%;
  transform: translateY(-50%);
}
[dir=rtl] .coupon-box .coupon-left {
  left: unset;
  right: -1px;
  transform: translateY(-50%) scaleX(-1);
}
.coupon-box .coupon-right {
  position: absolute;
  right: 0;
  top: 50%;
  height: 111%;
  transform: translateY(-50%);
}
[dir=rtl] .coupon-box .coupon-right {
  right: unset;
  left: -1px;
  transform: translateY(-50%) scaleX(-1);
}
.coupon-box .coupon-discount {
  position: relative;
  writing-mode: vertical-rl;
  text-align: center;
  padding: calc(15px + 5 * (100vw - 320px) / 1600);
  color: rgb(255, 255, 255);
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.coupon-box .coupon-discount::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  transform: translateY(-50%);
}
[dir=rtl] .coupon-box .coupon-discount::after {
  left: -7px;
  right: unset;
}
.coupon-box .coupon-discount.color-1 {
  background-color: rgba(var(--light-text), 1);
}
.coupon-box .coupon-discount.color-2 {
  background-color: rgb(30, 60, 110);
}
.coupon-box .coupon-discount.color-3 {
  background-color: rgb(173, 110, 51);
}
.coupon-box .coupon-discount.color-4 {
  background-color: rgb(123, 51, 157);
}
.coupon-box .coupon-details {
  width: calc(100% - 53px);
  padding: 0 calc(20px + 5 * (100vw - 320px) / 1600) 0 calc(15px + 10 * (100vw - 320px) / 1600);
}
.coupon-box .coupon-details .coupon-content {
  padding: calc(10px + 10 * (100vw - 320px) / 1600) 0 0;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.coupon-box .coupon-details .coupon-content .coupon-name {
  display: flex;
  gap: 10px;
}
.coupon-box .coupon-details .coupon-content .coupon-name .coupon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 7px;
  background-color: rgba(var(--box-bg), 1);
  border-radius: 8px;
}
.coupon-box .coupon-details p {
  margin: 0;
  padding: 0;
  color: rgba(var(--light-text), 1);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(var(--dashed-line), 1);
}
.coupon-box .coupon-details p span {
  color: rgba(var(--dark-text), 1);
  font-weight: 500;
}
.coupon-box .coupon-details .coupon-apply {
  padding: calc(10px + 10 * (100vw - 320px) / 1600) 0;
  display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coupon-box .coupon-details .coupon-apply .unlock {
  width: 65%;
  color: rgba(var(--dark-text), 1);
}

.voucher-box {
  position: relative;
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}
.voucher-box::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  background: rgba(var(--white), 1);
  left: -12px;
  bottom: 25%;
  box-shadow: inset 0px 2px 12px 0px rgb(217, 217, 217);
  z-index: 1;
  display: block;
}
[dir=rtl] .voucher-box::after {
  right: -12px;
  left: unset;
}
.voucher-box::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  background: rgba(var(--white), 1);
  right: -12px;
  bottom: 25%;
  box-shadow: inset 0px 2px 12px 0px rgb(217, 217, 217);
  z-index: 1;
  display: block;
}
[dir=rtl] .voucher-box::before {
  left: -12px;
  right: unset;
}
.voucher-box .l-vector {
  position: absolute;
  left: -5px;
  bottom: 60px;
  height: 20px;
  width: 20px;
  z-index: 1;
}
[dir=rtl] .voucher-box .l-vector {
  left: unset;
  right: -5px;
}
.voucher-box .r-vector {
  position: absolute;
  height: 20px;
  width: 20px;
  right: -5px;
  bottom: 60px;
  z-index: 1;
  transform: rotate(180deg);
}
[dir=rtl] .voucher-box .r-vector {
  left: -5px;
  right: unset;
}
.voucher-box .voucher-img {
  text-align: center;
  padding-top: 12px;
}
.voucher-box .voucher-img .voucher-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.voucher-box .voucher-content {
  padding: calc(10px + 2 * (100vw - 320px) / 1600);
}
.voucher-box .voucher-content h5 {
  font-weight: 600;
  color: rgba(var(--dark-text), 1);
  margin-top: 12px;
}
.voucher-box .voucher-content p {
  color: rgba(var(--light-text), 1);
  margin-top: 4px;
  padding: 0;
  margin: 0;
}
.voucher-box .voucher-discount {
  position: relative;
  width: 100%;
  height: 70px;
  background: rgb(53, 121, 42);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
}
.voucher-box .voucher-discount.color-1 {
  background-color: rgb(37, 131, 125);
}
.voucher-box .voucher-discount.color-2 {
  background-color: rgb(30, 60, 110);
}
.voucher-box .voucher-discount.color-3 {
  background-color: rgb(173, 110, 51);
}
.voucher-box .voucher-discount.color-4 {
  background-color: rgb(123, 51, 157);
}
.voucher-box .voucher-discount.color-5 {
  background-color: rgb(53, 121, 42);
}
.voucher-box .voucher-discount .top-vector {
  position: absolute;
  width: 90%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.voucher-box .voucher-discount h2 {
  color: rgb(225, 225, 225);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}

.expired-box {
  position: relative;
}
.expired-box .expired-tag {
  position: absolute;
  background-color: rgba(var(--theme-color), 0.6);
  backdrop-filter: blur(3px);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  height: 34px;
}
.expired-box .expired-tag p {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: rgba(var(--dark-text), 1);
}
.expired-box .expired-voucher {
  position: relative;
  filter: grayscale(100%);
}

/*=============================
    Restaurant-details CSS start
===============================*/
.restaurant-details-box {
  position: relative;
  background: rgba(var(--white), 1);
  border-bottom: 2px solid rgba(var(--black), 0.2);
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.06);
  border-radius:  0px;
  padding: 0px;
  margin-top: 0px;
  z-index: 1;
}
.restaurant-details-box .restaurant-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(var(--dashed-line), 1);
  padding: 0px 5px;
}
.restaurant-details-box .restaurant-head .name {
  display: flex;
}
.restaurant-details-box .restaurant-head .name .restaurant-logo {
  width: 40px;
  height: 40px;
}
.restaurant-details-box .restaurant-head .name h3 {
  font-weight: 700;
  color: rgba(var(--dark-text), 1);
}
.restaurant-details-box .restaurant-head .name h6 {
  margin-top: 5px;
  color: rgba(var(--light-text), 1);
}
.restaurant-details-box .restaurant-head .option {
  gap: 2px;
  font-size: 20px;
  text-align: end;
}
.restaurant-details-box .restaurant-head .option .share {
  color: rgba(var(--dark-text), 1);
}
.restaurant-details-box .restaurant-head .option .heart {
  color: rgba(var(--error-color), 1);
}
.restaurant-details-box .restaurant-details {
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.restaurant-details-box .restaurant-details .location {
  width: 60%;
  border-right: 1px solid rgba(var(--dashed-line), 1);
  margin-right: calc(10px + 10 * (100vw - 320px) / 1600);
  padding-right: calc(10px + 10 * (100vw - 320px) / 1600);
}
[dir=rtl] .restaurant-details-box .restaurant-details .location {
  border-right: unset;
  margin-right: unset;
  padding-right: unset;
  border-left: 1px solid rgba(var(--dashed-line), 1);
  margin-left: calc(10px + 10 * (100vw - 320px) / 1600);
  padding-left: calc(10px + 10 * (100vw - 320px) / 1600);
}
.restaurant-details-box .restaurant-details .location .rating-star {
  border-bottom: 1px solid rgba(var(--dashed-line), 1);
  padding-bottom: 8px;
  display: flex;
  gap: 5px;
  color: rgba(var(--dark-text), 1);
}
.restaurant-details-box .restaurant-details .location .rating-star .star {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(var(--success-color), 1);
  border-radius: 100%;
}
.restaurant-details-box .restaurant-details .location .rating-star .star i {
  color: rgb(255, 255, 255);
}
.restaurant-details-box .restaurant-details .distance {
  width: 40%;
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.restaurant-details-box .restaurant-details .distance::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 1px;
  height: 30%;
  border-left: 1px dashed rgba(var(--theme-color), 1);
  transform: translateY(-50%);
  z-index: -1;
}
[dir=rtl] .restaurant-details-box .restaurant-details .distance::after {
  left: unset;
  right: 6px;
  border-left: unset;
  border-right: 1px dashed rgba(var(--theme-color), 1);
}
.restaurant-details-box .restaurant-details .distance li {
  width: 100%;
  display: flex;
  gap: 5px;
  color: rgba(var(--dark-text), 1);
}
[dir=rtl] .restaurant-details-box .restaurant-details .distance li i {
  float: right;
}

.offer-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 20px;
  background: rgba(var(--box-bg), 1);
  border-radius: 7px;
}
.offer-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 16px;
  height: 16px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  transform: translateY(-50%);
}
[dir=rtl] .offer-box::after {
  left: unset;
  right: 18%;
}
.offer-box::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 18%;
  width: 16px;
  height: 16px;
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  transform: translateY(-50%);
}
[dir=rtl] .offer-box::before {
  left: unset;
  right: 18%;
}
.offer-box .offer-icon .offer {
  width: 40px;
  height: 40px;
}
.offer-box .offer-content h5 {
  color: rgba(var(--dark-text), 1);
  font-size: 13px;
}
.offer-box .offer-content h6 {
  margin-top: 5px;
}

.food-filter .food-symbol {
  display: flex;
  gap: 15px;
}
.food-filter .food-symbol .food-types {
  display: flex;
 /* border: 1px solid rgba(var(--box-bg), 1);*/
  padding: 5px;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  height: 100%;
  width: 100px;
}
.food-filter .food-symbol .food-types .img {
  width: 15px;
  height: 15px;
}
.food-filter .food-symbol .food-types h6 {
  color: rgba(var(--dark-text), 1);
  line-height: 1;
}
.food-filter .food-symbol .food-types .close {
  color: rgba(var(--dark-text), 1);
  display: none;
}
.food-filter .food-symbol .food-types .close.active {
  display: flex;
  color: rgba(var(--theme-color), 1);
}
.food-filter .food-symbol .food-types.active {
  display: flex;
  border: 1px solid rgba(var(--theme-color), 1);
}
.food-filter .food-symbol .food-types.active .close {
  display: flex;
  color: rgba(var(--theme-color), 1);
}

/*=====================
    Empty Tab CSS start
==========================*/
.empty-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.empty-tab h2 {
  margin-top: 40px;
  color: rgba(var(--dark-text), 1);
}
.empty-tab h5 {
  color: rgba(var(--light-text), 1);
  font-weight: 400;
}
.empty-tab .empty-bell {
  margin-top: 100px;
}
.empty-tab .empty-cart {
  margin-top: 70px;
}
.empty-tab .empty-search {
  margin-top: 90px;
}
.empty-tab .empty-wishlist {
  margin-top: 70px;
}

.grocery-categories-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(var(--light-text), 1);
  background-color: rgba(var(--box-bg), 1);
  border-radius: 6px;
}
[dir=rtl] .grocery-categories-box {
  direction: rtl;
}
.grocery-categories-box.active {
  color: rgb(255, 255, 255);
  background-color: #0E2064;
}
.grocery-categories-box.active h6 {
  border-left: 1px solid rgb(255, 255, 255);
}
[dir=rtl] .grocery-categories-box.active h6 {
  border-right: 1px solid rgb(255, 255, 255);
  border-left: unset;
}
.grocery-categories-box h6 {
  padding-left: 8px;
  border-left: 1px solid rgba(var(--light-text), 0.4);
}
[dir=rtl] .grocery-categories-box h6 {
  padding-right: 8px;
  padding-left: unset;
  border-right: 1px solid rgba(var(--light-text), 0.4);
  border-left: unset;
}

.grocery-banner-img {
  border-radius: 6px;
}

.grocery-product-box {
  position: relative;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgb(var(--box-bg), 1);
  background: rgba(var(--white), 1);
  box-shadow: 0px 2px 15px 0px rgba(var(--black), 0.04);
}
[dir=rtl] .grocery-product-box {
  direction: rtl;
}
.grocery-product-box .offer-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  color: rgb(var(--error-color), 1);
  background-color: rgb(var(--error-color), 0.15);
  border-radius: 10px;
}
[dir=rtl] .grocery-product-box .offer-tag {
  right: 12px;
  left: unset;
}
.grocery-product-box .grocery-product-img {
  padding: 48px 0 18px;
  text-align: center;
}
.grocery-product-box .grocery-product-img .img {
  width: 90px;
  height: 70px;
  object-fit: contain;
}
.grocery-product-box .grocery-product-details h4 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.grocery-product-box .grocery-product-details .price {
  font-size: 13px;
}
.grocery-product-box .like-icon {
  position: absolute;
  top: 5px;
  right: 5px;
}
[dir=rtl] .grocery-product-box .like-icon {
  right: unset;
  left: 5px;
}
.grocery-product-box .like-icon i {
  padding: 5px;
  color: rgba(var(--error-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grocery-product-box .like-icon .fill-icon {
  display: none;
}
.grocery-product-box .like-icon.active .outline-icon {
  display: none;
}
.grocery-product-box .like-icon.active .fill-icon {
  display: flex;
  color: rgba(var(--error-color), 1);
}
.grocery-product-box .like-icon.active .effect:before {
  animation: fireworkLine 0.5s linear 0.1s;
}
.grocery-product-box .like-icon.active .effect:after {
  animation: fireworkPoint 0.5s linear 0.1s;
}
.grocery-product-box .effect-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grocery-product-box .effect-group .effect {
  display: block;
  position: absolute;
  top: 38%;
  left: 50%;
  width: 20px;
  transform-origin: 0px 2px;
}
.grocery-product-box .effect-group .effect:nth-child(2) {
  transform: rotate(72deg);
}
.grocery-product-box .effect-group .effect:nth-child(3) {
  transform: rotate(144deg);
}
.grocery-product-box .effect-group .effect:nth-child(4) {
  transform: rotate(216deg);
}
.grocery-product-box .effect-group .effect:nth-child(5) {
  transform: rotate(288deg);
}
.grocery-product-box .effect-group .effect:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  border-radius: 2px;
  height: 3px;
  background: #777777;
}
.grocery-product-box .effect-group .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 10%;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background: rgba(var(--theme-color), 1);
  transform: scale(0, 0);
}

.grocery-horizontal-product-box {
  /*border-radius: 4px;
  border: 1px solid rgba(var(--box-bg), 1);
  background: rgba(var(--white), 1);
  box-shadow: 0px 2px 15px 0px rgba(var(--white), 0.04);*/
  padding: 10px 10px;
}
.grocery-horizontal-product-box li {
  padding:0px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(var(--box-bg), 1);
}
.grocery-horizontal-product-box li:first-child {
  padding-top: 0;
}
.grocery-horizontal-product-box li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.grocery-horizontal-product-box li .horizontal-product-img .img {
  width: 64px;
  height: 64px;
}
.grocery-horizontal-product-box li .horizontal-product-details {
  position: relative;
  width: calc(100% - 70px);
}
.grocery-horizontal-product-box li .horizontal-product-details .add-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px calc(10px + 5 * (100vw - 320px) / 1600);
  font-size: 13px;
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 5px;
}
[dir=rtl] .grocery-horizontal-product-box li .horizontal-product-details .add-btn {
  right: unset;
  left: 0;
}

.grocery-horizontal-product-box2 {
  border-radius: 4px;
  border: 1px solid rgba(var(--box-bg), 1);
  background: rgba(var(--white), 1);
  box-shadow: 0px 2px 15px 0px rgba(var(--black), 0.04);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.grocery-horizontal-product-box2 .horizontal-product-img .img {
  background-color: rgba(var(--box-bg), 1);
  width: 64px;
  height: 64px;
  padding: 8px;
}
.grocery-horizontal-product-box2 .horizontal-product-details {
  position: relative;
  width: calc(100% - 70px);
}
.grocery-horizontal-product-box2 .horizontal-product-details h5 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.grocery-horizontal-product-box2 .horizontal-product-details h6 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1;
}
.grocery-horizontal-product-box2 .horizontal-product-details .add-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px calc(10px + 5 * (100vw - 320px) / 1600);
  font-size: 13px;
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 5px;
}
[dir=rtl] .grocery-horizontal-product-box2 .horizontal-product-details .add-btn {
  right: unset;
  left: 0;
}

/*=====================
    home Page CSS
==========================*/
.search-section .form-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.search-section .form-group .form-input {
  position: relative;
  width: calc(100% - 40px - 10px);
}
.search-section .form-group .form-input .search-icon {
  font-size: 20px;
}
.search-section .form-group .form-input .search-icon::after {
  display: none !important;
}
.search-section .form-group .form-input i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: rgba(var(--light-text), 1);
  padding-right: 10px;
  font-size: 14px;
}
[dir=rtl] .search-section .form-group .form-input i {
  left: unset;
  right: 12px;
  padding-right: unset;
  padding-left: 10px;
}
.search-section .form-group .filter-button {
  padding: 0;
  background-color: rgba(var(--box-bg), 1);
  backdrop-filter: blur(2px);
  border-radius: 6px;
  border: none;
  color: rgba(var(--white), 1);
  width: auto;
  height: auto;
  padding: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-section .form-group .filter-button i {
  color: rgb(132, 132, 133);
  font-size: 22px;
}
.search-section .form-group .filter-button:focus {
  box-shadow: none;
}

.search-form .form-group .form-input .form-control {
  padding: 8px 8px 8px 45px;
}
[dir=rtl] .search-form .form-group .form-input .form-control {
  padding: 8px 45px 8px 8px;
}
.search-form .form-group .form-input .form-control:focus {
  box-shadow: none;
}
.search-form .form-group .form-input i::after {
  content: none;
}

.brands-logo .food-brands {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  margin: 0 auto;
}
.brands-logo h4 {
  margin-top: 10px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(var(--dark-text), 1);
}

.empty-section h2 {
  width: 90%;
  font-size: 45px;
  font-weight: 800;
  color: rgba(var(--dark-text), 0.5);
}
.empty-section h5 {
  margin: 15px 0;
  color: rgba(var(--light-text), 1);
  text-align: left;
}
[dir=rtl] .empty-section h5 {
  text-align: right;
}

.banner-section .banner-img {
  width: 100%;
}

/*=====================
    onboarding Page CSS
==========================*/
.home {
  position: relative;
}
.home .cooking-video {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 767px;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  object-fit: cover;
}
.home .theme-content {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 767px;
  padding: 20px 0;
  /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.89) 57.48%, rgba(0, 0, 0, 0) 100%);*/
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.home .slogan {
  margin-top: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(225, 225, 225, 0.12);
  border-bottom: 1px solid rgba(225, 225, 225, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .slogan li {
  color: rgb(225, 225, 225);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: calc(10px + 10 * (100vw - 320px) / 1600);
}
.home p {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: rgb(225, 225, 225);
  padding: 0;
}
.home .start-btn:active {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}

/*=====================
    landing Page CSS
==========================*/
.main-categories-box {
  padding: calc(10px + 5 * (100vw - 320px) / 1600);
  background-color:#FFF;
  border: 1px solid rgba(var(--box-bg), 1);
  /*border: 3px solid #FFF;*/
  border-radius: 5px;
  min-height: 110px;
/*box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,rgba(255, 255, 255, 0.08) 0px 1px 0px inset;*/
}
.main-categories-box .main-categories-img {
  text-align: center;
}
.main-categories-box .main-categories-img .img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  /*padding-bottom: 10px;*/
}
.main-categories-box h6 {
  border-top: 1px solid rgba(var(--box-bg), 1);
  /*padding-top: 10px;*/
  text-align: center;
}

.offer-deal-box {
  background-color: rgba(var(--box-bg), 1);
  padding: calc(10px + 5 * (100vw - 320px) / 1600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5px + 5 * (100vw - 320px) / 1600);
}
.offer-deal-box .deal-img {
  height: 25px;
  width: 25px;
}
.offer-deal-box h5 {
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  color: rgba(var(--dark-text), 1);
}

.main-banner-box {
  cursor: pointer;
}
.main-banner-box .banner-img {
  border-radius: 12px 12px 0 0;
}
.main-banner-box .main-banner-details {
  margin-top: 4px;
  padding: 12px;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(var(--box-bg), 1);
}
.main-banner-box .main-banner-details h3 {
  font-weight: 500;
  color: rgba(var(--dark-text), 1);
}
.main-banner-box .main-banner-details h5 {
  margin-top: 4px;
  font-size: 500;
  color: rgba(var(--light-text), 1);
  padding-bottom: 12px;
}
.main-banner-box .main-banner-details h5 span {
  color: rgba(var(--theme-color), 1);
}
.main-banner-box .main-banner-details .order-part {
  padding-top: 12px;
  border-top: 1px dashed rgba(var(--light-text), 0.3);
}
.main-banner-box .main-banner-details .order-part h5 {
  font-weight: 500;
  color: rgba(var(--dark-text), 1);
}

.main-product-card {
  border-radius: 6px;
  border: 1px solid rgb(186, 188, 189);
  box-shadow: 0px 2px 15px 0px rgba(var(--black), 0.04);
}
[dir=rtl] .main-product-card {
  direction: rtl;
}
.main-product-card .product-card-img {
  border-radius: 6px 6px 0 0;
}
.main-product-card .card-body {
  padding: 12px;
}
.main-product-card .card-body .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-product-card .card-body .add-btn {
  padding: 5px 15px;
}

/*=============================
    Location CSS start
===============================*/
.location-map {
  border: 0;
  height: 100vh;
  width: 100%;
}

.delivery-root {
  position: relative;
  border: 0;
  height: 100vh;
  width: 100%;
  margin-bottom: -16px;
}
.delivery-root > div {
  height: 100%;
}

.location-popup {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 600px;
  background: linear-gradient(180deg, #414449 1.31%, #1f1f1f 101.06%);
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
  border-radius: 20px 20px 0px 0px;
  height: auto;
  padding: 20px;
}
.location-popup .change-location {
  display: flex;
  justify-content: space-between;
}
.location-popup .change-location h2 {
  font-weight: 500;
  color: rgb(255, 255, 255);
}
.location-popup .change-location i {
  color: rgba(var(--theme-color), 1);
  font-size: 18px;
}
.location-popup .address {
  font-size: 14px;
  font-weight: 500;
}
.location-popup .delivery-btn {
  font-size: 16px;
}

/*=====================
    Notification CSS start
==========================*/
.notification .notification-box {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 20px;
}
.notification .notification-box .notification-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px dashed rgba(var(--light-text), 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification .notification-box .notification-icon::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 21px;
  width: 18px;
  height: 1px;
  background-color: rgba(var(--light-text), 1);
}
[dir=rtl] .notification .notification-box .notification-icon::before {
  left: unset;
  right: 50px;
}
.notification .notification-box .notification-icon::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 36px;
  width: 20px;
  height: 1px;
  background-color: rgba(var(--light-text), 1);
}
[dir=rtl] .notification .notification-box .notification-icon::after {
  left: unset;
  right: 48px;
}
.notification .notification-box .notification-icon span {
  width: 42px;
  height: 42px;
  background-color: rgba(var(--box-bg), 1);
  padding: 10px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification .notification-box .notification-icon span::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 19px;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--light-text), 1);
  border-radius: 100%;
}
[dir=rtl] .notification .notification-box .notification-icon span::before {
  left: unset;
  right: 70px;
}
.notification .notification-box .notification-icon span::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 34px;
  transform: translate(-50%);
  width: 5px;
  height: 5px;
  background-color: rgba(var(--light-text), 1);
  border-radius: 100%;
}
[dir=rtl] .notification .notification-box .notification-icon span::after {
  left: unset;
  right: 70px;
}
.notification .notification-box .notification-icon span .notification-img {
  stroke: rgba(var(--light-text), 1);
  width: 21px;
  height: 21px;
  border-radius: 100%;
}
.notification .notification-box .notification-icon span .notification-img.img1 {
  padding: 5px;
}
.notification .notification-box.unread .notification-icon {
  border: 1px dashed rgba(var(--theme-color), 1);
}
.notification .notification-box.unread .notification-icon::before {
  background-color: rgba(var(--theme-color), 1);
}
.notification .notification-box.unread .notification-icon::after {
  background-color: rgba(var(--theme-color), 1);
}
.notification .notification-box.unread .notification-icon span {
  background-color: rgba(var(--theme-color), 1);
}
.notification .notification-box.unread .notification-icon span::before {
  background-color: rgba(var(--theme-color), 1);
}
.notification .notification-box.unread .notification-icon span::after {
  background-color: rgba(var(--theme-color), 1);
}
.notification .notification-box.unread .notification-icon span .notification-img {
  border: 1px solid rgb(255, 255, 255);
}
.notification .notification-box.unread .notification-content p {
  color: rgba(var(--dark-text), 1);
}
.notification .notification-box.unread .notification-content h5 {
  font-weight: 600;
}
.notification .notification-box .notification-content {
  width: calc(100% - 60px);
  margin-left: 10px;
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 12px 12px 12px 18px;
}
[dir=rtl] .notification .notification-box .notification-content {
  margin-left: unset;
  margin-right: 10px;
  padding: 12px 18px 12px 12px;
}
.notification .notification-box .notification-content h5 {
  color: rgba(var(--dark-text), 1);
  font-size: 14px;
  line-height: 1.2;
}
.notification .notification-box .notification-content h6 {
  color: rgba(var(--light-text), 1);
}
.notification .notification-box .notification-content p {
  color: rgba(var(--light-text), 1);
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  padding: 8px 0 0 0;
  margin: 8px 0 0 0;
}

.notification-setting {
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 15px;
}
.notification-setting li {
  display: block;
  border-bottom: 1px solid rgba(var(--dashed-line), 0.5);
}
.notification-setting li:last-child {
  border-bottom: none;
}
.notification-setting li .notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
}
.notification-setting li .notification input[type=checkbox] {
  position: relative;
  width: 37px;
  height: 22px;
  appearance: none;
  background: rgba(var(--box-bg), 1);
  outline: none;
  border-radius: 50px;
  cursor: pointer;
}
.notification-setting li .notification input[type=checkbox]:checked {
  background: rgba(var(--theme-color), 0.1);
}
.notification-setting li .notification input[type=checkbox]:checked::before {
  transform: translateX(80%) translateY(-50%);
  background: rgba(var(--theme-color), 1);
}
.notification-setting li .notification input[type=checkbox]:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(var(--light-text), 1);
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  transition: 0.5s;
}

/*=============================
    order CSS start
===============================*/
.order-tracking {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: calc(15px + 5 * (100vw - 320px) / 1600);
}
.order-tracking .tracking-place li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 25px;
  width: 100%;
}
.order-tracking .tracking-place li:last-child::after {
  display: none;
}
.order-tracking .tracking-place li::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 70px;
  width: 25px;
  border: 1px dashed rgba(var(--light-text), 1);
  transform: rotate(90deg);
}
[dir=rtl] .order-tracking .tracking-place li::after {
  left: unset;
  right: 70px;
}
.order-tracking .tracking-place li h6 {
  color: rgba(var(--dark-text), 1);
}
.order-tracking .tracking-place li h6.color-1 {
  color: rgb(255, 185, 49);
}
.order-tracking .tracking-place li h6.color-2 {
  color: rgb(68, 111, 221);
}
.order-tracking .tracking-place li h6.color-3 {
  color: rgba(var(--error-color), 1);
}
.order-tracking .tracking-place li h6.color-4 {
  color: rgba(var(--success-color), 1);
}
.order-tracking .tracking-place li span {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: rgba(var(--box-bg), 1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-tracking .tracking-place li span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: rgba(var(--light-text), 1);
  border-radius: 100%;
}
.order-tracking .tracking-place li .icon {
  padding: 6px;
  border-radius: 6px;
}
.order-tracking .tracking-place li .icon.step-1 {
  background: rgb(255, 241, 214);
}
.order-tracking .tracking-place li .icon.step-2 {
  background: rgb(225, 232, 250);
}
.order-tracking .tracking-place li .icon.step-3 {
  background: rgb(252, 217, 217);
}
.order-tracking .tracking-place li .icon.step-4 {
  background: rgb(224, 239, 217);
}
.order-tracking .tracking-place li.active::after {
  border-color: rgba(var(--theme-color), 1);
}
.order-tracking .tracking-place li.active span {
  background-color: rgba(var(--theme-color), 0.15);
}
.order-tracking .tracking-place li.active span::after {
  background-color: rgba(var(--theme-color), 1);
}

/*=============================
     Page-listing CSS start
===============================*/
.categories-title {
  margin-top: 20px;
}
.categories-title h2 {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  background-color: rgba(var(--box-bg), 1);
  padding: 20px;
  border-radius: 15px;
}

.categories-menu .navigation .pages {
  width: 100%;
  padding: 0 10px;
}
.categories-menu .navigation .pages h4 {
  font-size: 15px;
}
.categories-menu .navigation .pages a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--dark-text), 1);
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
  width: 100%;
}
.categories-menu .navigation .pages a i {
  color: rgba(var(--dark-text), 1);
  font-size: 30px;
  line-height: 1;
}
[dir=rtl] .categories-menu .navigation .pages a i {
  transform: scaleX(-1);
}

/*=============================
    payment CSS start
===============================*/
.payment-list .payment-card-box {
  flex-wrap: wrap;
  padding: 0 15px;
  border-radius: 14px;
}
.payment-list .payment-card-box .payment-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px 0;
}
.payment-list .payment-card-box .payment-detail .add-img {
  width: 35px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment-list .payment-card-box .payment-detail .add-img .img {
  width: 35px;
  height: 30px;
}
.payment-list .payment-card-box .payment-detail .add-img .add-square-img {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  border: 1.5px solid;
  border-radius: 10px;
  width: 100%;
}
.payment-list .payment-card-box .payment-detail .add-content {
  width: calc(100% - 35px - 15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment-list .payment-card-box .payment-detail .add-content h5 {
  color: rgba(var(--dark-text), 1);
}
.payment-list .payment-card-box .payment-detail .add-content .form-check .form-check-input {
  box-shadow: none;
}
.payment-list .payment-card-box .payment-detail .add-content .form-check .form-check-input:checked {
  background-color: rgba(var(--theme-color), 1);
  border-color: rgba(var(--theme-color), 1);
}
.payment-list .new-card {
  border-top: 1px dashed rgba(var(--dashed-line), 1);
}

.debit-card {
  position: relative;
  background-image: url(../images/background/card.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
  border-radius: 14px;
}
.debit-card .card-details {
  padding: 22px;
}
.debit-card .card-details .card-name {
  color: rgba(225, 225, 225, 0.5);
}
.debit-card .card-details .chip {
  margin-top: 12px;
}
.debit-card .card-details .ac-details {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.debit-card .card-details .ac-details li h6 {
  font-weight: 400;
  color: rgba(225, 225, 225, 0.5);
}
.debit-card .card-details .ac-details li h3 {
  font-weight: 700;
  color: rgb(225, 225, 225);
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.debit-card .card-details .user-name {
  margin-top: 15px;
}
.debit-card .card-details .user-name h6 {
  font-weight: 400;
  color: rgba(225, 225, 225, 0.5);
}
.debit-card .card-details .user-name h5 {
  font-weight: 500;
  color: rgb(225, 225, 225);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.address-form {
  border-top: 1px dashed rgba(var(--dashed-line), 1);
  padding-top: 20px;
}

.pharmacy-categories-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--light-text), 1);
  background-color: rgba(var(--box-bg), 1);
  border-radius: 100%;
  margin: 0 auto;
}
.pharmacy-categories-box.active {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 0.1);
}
.pharmacy-categories-box.active h6 {
  border-left: 1px solid rgba(var(--white), 1);
}

.pharmacy-banner-img {
  border-radius: 6px;
}

.pharmacy-product-box {
  padding: 0;
  position: relative;
}
.pharmacy-product-box .ratings {
  position: absolute;
  top: 15px;
  right: 12px;
}
[dir=rtl] .pharmacy-product-box .ratings {
  left: 12px;
  right: unset;
}
.pharmacy-product-box .grocery-product-details {
  background-color: rgba(var(--box-bg), 1);
  padding: 8px 12px;
}
.pharmacy-product-box .grocery-product-details .cart-btn {
  background-color: rgba(var(--theme-color), 1);
  padding: 5px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}


.pharmacy-horizontal-product-box li {
  border-bottom: 1px solid rgba(var(--black), 0.1);
  gap: 12px;
}
.pharmacy-horizontal-product-box li .horizontal-product-img {
  padding: 0px;
  background-color: rgba(var(--white), 1);
  border-radius: 4px;
}
.pharmacy-horizontal-product-box li h5 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pharmacy-horizontal-product-box2 {
  border-radius: 4px;
  border: 1px solid rgba(var(--box-bg), 1);
  background: rgba(var(--white), 1);
  box-shadow: 0px 2px 15px 0px rgba(var(--black), 0.04);
  display: flex;
  align-items: unset;
  padding: 0;
  gap: 0;
  height: 100%;
}
[dir=rtl] .pharmacy-horizontal-product-box2 {
  direction: rtl;
}
.pharmacy-horizontal-product-box2 .horizontal-product-img .img {
  width: 80px;
  height: 100%;
}
.pharmacy-horizontal-product-box2 .horizontal-product-details {
  position: relative;
  width: calc(100% - 80px);
  padding: 12px;
}
.pharmacy-horizontal-product-box2 .horizontal-product-details .add-btn {
  right: 15px;
  bottom: 15px;
}
[dir=rtl] .pharmacy-horizontal-product-box2 .horizontal-product-details .add-btn {
  left: 15px;
  right: unset;
}

.discount-banner {
  border-radius: 6px;
}

/*=============================
    profile CSS start
===============================*/
.profile-cover {
  position: relative;
  width: 100%;
  height: 90px;
  background: linear-gradient(333.77deg, #FF8D2F 9.66%, #FFD3B0 101.81%);
  border-radius: 20px 20px 0px 0px;
}
.profile-cover .profile-pic {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  padding: 10px;
  background-color: rgba(var(--white), 1);
}

.profile-name {
  margin-top: 25px;
}
.profile-name h5 {
  font-weight: 600;
  color: rgba(var(--dark-text), 1);
  text-align: center;
  margin-top: 30px;
}
.profile-name h6 {
  color: rgba(var(--dark-text), 1);
  text-align: center;
  font-weight: 400;
  margin-top: 4px;
}

.profile-list li {
  width: 100%;
  padding-bottom: 15px;
}
.profile-list li .profile-box {
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 100px 38px 38px 100px;
  color: rgba(var(--dark-text), 1);
  border: 1px solid rgba(var(--black), 0.05);
  background-color: rgba(var(--box-bg), 1);
}
[dir=rtl] .profile-list li .profile-box {
  border-radius: 38px 100px 100px 38px;
}
.profile-list li .profile-box .profile-icon {
  height: 32px;
  width: 32px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.4);
  font-size: 22px;
  border: 1px solid rgba(var(--light-text), 0.2);
  background-color: rgba(var(--box-bg), 1);
}
.profile-list li .profile-box .profile-icon .icon {
  width: 16px;
  height: 16px;
}
.profile-list li .profile-box .profile-box-name {
  width: calc(100% - 40px - 15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  margin-left: 6px;
  color: rgba(var(--dark-text), 1);
}
[dir=rtl] .profile-list li .profile-box .profile-box-name {
  margin-left: unset;
  margin-right: 6px;
}
.profile-list li .profile-box .profile-box-name h6 {
  font-weight: 500;
  font-size: 1px;
}
.profile-list li .profile-box .profile-box-name h6 .arrow {
  margin-left: auto;
  font-size: 14px;
}
[dir=rtl] .profile-list li .profile-box .profile-box-name h6 .arrow {
  margin-left: unset;
  margin-right: auto;
}
.profile-list li .profile-box .profile-box-name i {
  font-size: 16px;
}
[dir=rtl] .profile-list li .profile-box .profile-box-name i {
  transform: scaleX(-1);
  margin-left: 8px;
}

.profile-img {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 100px;
}
.profile-img .img {
  border-radius: 18px;
}
.profile-img .camera {
  position: absolute;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-size: 20px;
  height: 32px;
  width: 32px;
  bottom: -5px;
  right: -10px;
}
[dir=rtl] .profile-img .camera {
  margin-left: -10px;
  margin-right: unset;
}

/* themes */
/*=====================
    Dark CSS start
==========================*/
body.dark .navbar-menu {
  border-top: 1px solid rgba(var(--light-text), 0.2);
}
body.dark .location .location-img {
  filter: invert(0.85);
}
body.dark .categories .food-categories {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .products .product-box {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
  border: none;
  margin: 1px;
  z-index: 0;
}
body.dark .products .product-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(161.57deg, rgba(255, 255, 255, 0.2) -44.12%, rgba(255, 255, 255, 0) 99.26%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(var(--white), 1))) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(var(--white), 1)));
  -webkit-mask: linear-gradient(rgba(var(--white), 1) 0 0) content-box, linear-gradient(rgba(var(--white), 1) 0 0);
  -webkit-mask-composite: xor;
  z-index: -1;
}
body.dark .brands-logo .food-brands {
  border: 1px solid transparent;
  position: relative;
  border-radius: 100%;
}
body.dark .brands-logo .food-brands::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100%;
  padding: 1px;
  background: linear-gradient(161.57deg, rgba(255, 255, 255, 0.2) -44.12%, rgba(255, 255, 255, 0) 99.26%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(var(--white), 1))) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(var(--white), 1)));
  -webkit-mask: linear-gradient(rgba(var(--white), 1) 0 0) content-box, linear-gradient(rgba(var(--white), 1) 0 0);
  -webkit-mask-composite: xor;
}
body.dark .search-filter .footer-modal {
  border: 1px solid rgba(var(--light-text), 0.5);
}
body.dark .btn-close {
  filter: invert(1);
}
body.dark .form-check-input {
  background-color: transparent;
  border: 1px solid rgba(var(--light-text), 1);
}
body.dark .form-control {
  background-color: rgba(var(--box-bg), 1);
  color: rgba(var(--light-text), 1);
}
body.dark .bill-details .total-detail .dots-design {
  filter: invert(0.85);
}
body.dark .address-list li .address-icon {
  border: 1px solid rgba(var(--light-text), 1);
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .address-list li .address-content {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .modal .modal-dialog .modal-content {
  background-color: rgba(var(--white), 1);
}
body.dark .order-tracking {
  background-color: rgba(var(--box-bg), 1);
}
body.dark .coupon-box .coupon-left {
  filter: invert(0.85);
}
body.dark .coupon-box .coupon-right {
  filter: invert(0.85);
}
body.dark .voucher-box .voucher-discount .top-vector {
  filter: invert(0.85);
}
body.dark .voucher-box::after {
  box-shadow: none;
}
body.dark .voucher-box::before {
  box-shadow: none;
}
body.dark .payment-list .payment-card-box .payment-detail .add-img .img1 {
  width: 35px;
  height: 30px;
  filter: invert(1);
}
body.dark .confirm-title .for-dark {
  display: block;
}
body.dark .confirm-title .for-light {
  display: none;
}
body.dark .profile-list li .profile-box {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
}
body.dark .profile-list li .profile-box .profile-icon {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .profile-list li .profile-box .profile-icon .icon {
  filter: invert(1);
}
body.dark .otp-form .form-input .form-control {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .search-section .form-group .filter-button {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .auth-form .form-group .form-input .form-control {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
}
body.dark .auth-form .form-group .dropdown .dropdown-menu li .dropdown-item {
  color: #fff;
}
body.dark .dark-border-gradient {
  border: 1px solid transparent;
  position: relative;
  padding: 1px;
  border-radius: 6px;
}
body.dark .dark-border-gradient .form-control,
body.dark .dark-border-gradient .dropdown-toggle {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
  z-index: 1;
  position: relative;
}
body.dark .dark-border-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(161.57deg, rgba(255, 255, 255, 0.53) -44.12%, rgba(255, 255, 255, 0) 99.26%);
  -webkit-mask: linear-gradient(rgba(var(--white), 1) 0 0) content-box, linear-gradient(rgba(var(--white), 1) 0 0);
  -webkit-mask-composite: xor;
}
body.dark .vertical-product-box {
  background: linear-gradient(149.22deg, #3C3C3C -9.22%, #2A2A2A 114.95%);
  border: 1px solid rgba(245, 245, 245, 0.06);
}

.ahmedabad{
  background-color: #0E2064;
  height: 50px;
  width: 100%;
  border-radius: 07px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 0 0;
}

.ahmedabad-main{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ahmedabad-main a{
  color: #fff;
}

.addtocard-1{
    margin-bottom: 10px;
    margin-left: 50%;
}

.addtocard_{
  display: flex;
  align-items: center;
  justify-content:center ;
}

.addtocard_ a{
  /* color:#0E2064; */
  color:#000000;
  font-family: "Metropolis", sans-serif;
}



.place-order{
  position:fixed;
  top: 90%;
  left: 0%;
  right: 50%;
  width: 100%;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  justify-content: center;
  padding-top: 10px;
  background-color:#0E2064;
}

.background-color-place-order{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-96,
.btn-96 *,
.btn-96 :after,
.btn-96 :before,
.btn-96:after,
.btn-96:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-96 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
}

.btn-96:disabled {
  cursor: default;
}

.btn-96:-moz-focusring {
  outline: auto;
}

.btn-96 svg {
  display: block;
  vertical-align: middle;
}

.btn-96 [hidden] {
  display: none;
}

.btn-96 {
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  -webkit-mask-image: none;
  padding: 2rem 5rem;
  perspective: 800px;
  position: relative;
  text-transform: uppercase;
  transform-style: preserve-3d;
}

.btn-96 span {
  background: #fff;
  color: #000;
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transform: rotateX(0deg);
  transform-origin: top center;
  transition: 0.2s;
}

.btn-96:hover span {
  transform: rotateX(35deg);
}

.btn-96:after,
.btn-96:before {
  background: #ddd;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotateX(0deg);
  width: 100%;
  z-index: -1;
}

.btn-96:after {
  background: #ccc;
  width: 0;
}

.btn-96:hover:after {
  -webkit-animation: progress-bar 1.2s;
  animation: progress-bar 1.2s;
}

@-webkit-keyframes progress-bar {
  0% {
    opacity: 1;
    width: 0;
  }

  10% {
    opacity: 1;
    width: 15%;
  }

  25% {
    opacity: 1;
    width: 25%;
  }

  40% {
    opacity: 1;
    width: 35%;
  }

  55% {
    opacity: 1;
    width: 75%;
  }

  60% {
    opacity: 1;
    width: 100%;
  }

  to {
    opacity: 0;
    width: 100%;
  }
}

@keyframes progress-bar {
  0% {
    opacity: 1;
    width: 0;
  }

  10% {
    opacity: 1;
    width: 15%;
  }

  25% {
    opacity: 1;
    width: 25%;
  }

  40% {
    opacity: 1;
    width: 35%;
  }

  55% {
    opacity: 1;
    width: 75%;
  }

  60% {
    opacity: 1;
    width: 100%;
  }

  to {
    opacity: 0;
    width: 100%;
  }
}

.common{
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.inputs{
  height: 45px;
  padding-left:15px;
}

.common sup{
  color:red;
  margin-top: 15px;
}

.form-group sup{
  color:red;
}

.bg-image-location{
  background-image: url(../images/Choose-City.jpg);
  max-width: 600px;
}

@media (max-width:500) {
    .custom-containers{
      margin-top: 50% !important;
    }
}

.main-allow{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;

}


.allow{
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.button:hover {
  box-shadow: .5px .5px 150px #252525;
}

.type1::after {
  content: "Thanks";
  height: 50px;
  width: 150px;
  background-color: #008080;
  color: #fff;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(50px);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1::before {
  content: "Allow";
  height: 50px;
  width: 150px;
  background-color: #fff;
  color: #008080;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(0px) scale(1.2);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1:hover::after {
  transform: translateY(0) scale(1.2);
}

.type1:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}


@media only screen and (max-width: 600px) {
  .slider-logo-fixed{
      margin-left:auto; margin-right:auto; display:block; position: fixed;
  }
  
  .header-logo-stickery{
      margin-left: auto;
    margin-right: auto;
    display: block; max-width:50%;
  }
  
  .content-get-started{
      font-weight:400;
      font-size:14px !important;
      padding-left:15px;
      padding-right:15px;
  }
  
}

@media only screen and (min-width: 600px) {
  .header-logo-stickery{
      margin-left: auto;
    margin-right: auto;
    display: block; max-width:50%;
  }
  
  .content-get-started{
      font-weight:400; 
      font-size:14px !important; 
      padding-left:15px; 
      padding-right:15px;
  }
  
  
}

.border-gold{
    border:1px solid #F0B92B;
}




    /* Responsive image */
    .responsive-img {
        max-width: 100%;
        height: auto;
    }

    /* Adjustments for smaller screens */
    @media (max-width: 768px) {
        .responsive-img {
            width: 100%;
            height: auto;
        }
        .content-get-started {
            font-size: 16px; /* Reduce font size for better fit */
            width: 90%;
        }
    }

    /* Adjustments for medium screens */
    @media (min-width: 769px) and (max-width: 1200px) {
        .responsive-img {
            width: 90%;
            height: auto;
        }
        .content-get-started {
            font-size: 18px; /* Medium font size for readability */
            width: 85%;
        }
    }

    /* Adjustments for large screens */
    @media (min-width: 1201px) {
        .responsive-img {
            width: 80%;
            height: auto;
        }
        .content-get-started {
            font-size: 19px;
            width: 75%;
        }
    }
    
    
    
    
/*.slider-bg-image{*/
/*    background-image:url(../images/sofa-1.png);*/
/*    height:250px;*/
/*    width:100%;*/
/*}*/



/*=================================================================Sofa-Page-Slider(Start)=======================================================================================================*/



/*html, body {*/
/*    height: 100%;*/
/*    overflow-y: auto; */
/*}*/

/*.slider-bg-image {*/
/*    background-image: url(../video/Bhadewala1.gif);*/
    background-size: cover; /* Ensures the background image covers the entire div */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
/*    height: 350px;*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*}*/

@media (max-width: 768px) {
    .slider-bg-image {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 576px) {
    .slider-bg-image {
        height: 550px; /* Further adjust height for mobile screens */
    }
}

.sliders-1 {
    position: relative; /* Ensure content can expand */
}

p.slider-content-1 {
    margin-top:50px ;
}

/*=================================================================Sofa-Page-Slider(End)=======================================================================================================*/



/*=================================================================Chair-Home-Page-Slider(Start)=======================================================================================================*/



.slider-bg-image-2 {
    background-image: url(../images/chair-1.png);
    background-size: cover; /* Ensures the background image covers the entire div */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: 550px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .slider-bg-image {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 576px) {
    .slider-bg-image {
        height: 550px; /* Further adjust height for mobile screens */
    }
}

.sliders-1 {
    position: relative; /* Ensure content can expand */
}

p.slider-content-1 {
    margin-top:50px ;
}

/*=================================================================Chair-Home-Page-Slider(End)=======================================================================================================*/




/*=================================================================Chair-Table-Home-Page-Slider(Start)=======================================================================================================*/




.slider-bg-image-3 {
    background-image: url(../images/sofa-1.png);
    background-size: cover; /* Ensures the background image covers the entire div */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: 550px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .slider-bg-image {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 576px) {
    .slider-bg-image {
        height: 550px; /* Further adjust height for mobile screens */
    }
}

.sliders-1 {
    position: relative; /* Ensure content can expand */
}

p.slider-content-1 {
    margin-top:50px ;
}

/*=================================================================Chair-Table-Home-Page-Slider(End)=======================================================================================================*/



/* Labels, Badges */
.label,
.badge {
    font-weight: normal;
    font-size: 90%;
}

.label {
    padding: 1px 4px;
}

.badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 6px;
}

.label-danger {
    background-color: #e74c3c;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #ff5542;
}

.label-warning {
    background-color: #e67e22;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ff8b26;
}

.label-success {
    background-color: #27ae60;
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #2cc76c;
}

.label-info {
    background-color: #2980b9;
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #2f92d4;
}

.label-primary {
    background-color: #1bbae1;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #5ac5e0;
}

.label-default {
    background-color: #999999;
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #777777;
}


.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 60%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}


.accordion{
  margin: 0px 0;
  border: 1px solid rgb(19 36 96);
}
.accordion .item {
    border: none;
    margin-bottom: 50px;
    background: none;
}
.t-p{
  color: rgb(193 206 216);
  padding: 40px 30px 0px 30px;
}
.accordion .item .item-header h2 button.btn.btn-link {
    background: #333435;
    color: white;
    border-radius: 0px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 2.5;
    text-decoration: none;
}
.accordion .item .item-header {
    border-bottom: none;
    background: transparent;
    padding: 0px;
    margin: 2px;
}

.accordion .item .item-header h2 button {
    color: white;
    font-size: 20px;
    padding: 15px;
    display: block;
    width: 100%;
    text-align: left;
}

.accordion .item .item-header h2 i {
    float: right;
    font-size: 30px;
    color: #eca300;
    background-color: black;
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

button.btn.btn-link.collapsed i {
    transform: rotate(0deg);
}

button.btn.btn-link i {
    transform: rotate(180deg);
    transition: 0.5s;
}


.text-right {
  text-align: right;
}

.pl-15  {
 padding-left: 15px;
}

.pl-30  {
 padding-left: 30px;
}

.pt-20  {
 padding-top: 20px;
}

.pt-10  {
 padding-top: 10px;
}

.pt-6  {
 padding-top: 6px;
}


.pl-30  {
 padding-left: 30px;
}

.w-100  {
 max-width: 100% !important;
}


/* Buttons */
.btn {
    margin: 1px 0;
}

.btn .gi,
.btn .hi,
.btn .si,
.btn .fi {
    line-height: 1;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    opacity: 0.4;
}

.block-options .btn,
.input-group .btn,
.modal-content .btn {
    margin-top: 0;
    margin-bottom: 0;
}

.btn-default {
    background-color: #f1f3f6;
    border-color: #dbe1e8;
    color: #394263;
}

.btn-default.btn-alt {
    background-color: #ffffff;
}

.btn-default:hover {
    background-color: #eaedf1;
    border-color: #c2c8cf;
}

.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default:active:hover,
.btn-default:active:focus,
.btn-default.active,
.btn-default.active:hover,
.btn-default.active:focus,
.open .btn-default.dropdown-toggle,
.open .btn-default.dropdown-toggle:hover,
.open .btn-default.dropdown-toggle:focus,
.open .btn-default.dropdown-toggle.focus {
    background-color: #eaedf1;
    border-color: #eaedf1;
}

.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled:active,
.btn-default.disabled.active,
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled].focus,
.btn-default[disabled]:active,
.btn-default[disabled].active,
.btn-default[disabled]:active:focus,
.btn-default[disabled].active:focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default.active,
fieldset[disabled] .btn-default:active:focus,
fieldset[disabled] .btn-default.active:focus {
    background-color: #eaedf1;
    border-color: #eaedf1;
}

.btn-primary {
    background-color: #6ad2eb;
    border-color: #1bbae1;
    color: #ffffff;
}

.btn-primary.btn-alt {
    background-color: #ffffff;
    color: #1bbae1;
}

.btn-primary:hover {
    background-color: #1bbae1;
    border-color: #1593b3;
    color: #ffffff;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.active:hover,
.btn-primary.active:focus,
.open .btn-primary.dropdown-toggle,
.open .btn-primary.dropdown-toggle:hover,
.open .btn-primary.dropdown-toggle:focus,
.open .btn-primary.dropdown-toggle.focus {
    background-color: #1bbae1;
    border-color: #1bbae1;
    color: #ffffff;
}

.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled].active,
.btn-primary[disabled]:active:focus,
.btn-primary[disabled].active:focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary:active:focus,
fieldset[disabled] .btn-primary.active:focus {
    background-color: #1bbae1;
    border-color: #1bbae1;
    color: #ffffff;
}

.btn-danger {
    background-color: #ef8a80;
    border-color: #e74c3c;
    color: #ffffff;
}

.btn-danger.btn-alt {
    background-color: #ffffff;
    color: #e74c3c;
}

.btn-danger:hover {
    background-color: #e74c3c;
    border-color: #9c3428;
    color: #ffffff;
}

.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger.active,
.btn-danger.active:hover,
.btn-danger.active:focus,
.open .btn-danger.dropdown-toggle,
.open .btn-danger.dropdown-toggle:hover,
.open .btn-danger.dropdown-toggle:focus,
.open .btn-danger.dropdown-toggle.focus {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #ffffff;
}

.btn-danger.disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled:active,
.btn-danger.disabled.active,
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled].focus,
.btn-danger[disabled]:active,
.btn-danger[disabled].active,
.btn-danger[disabled]:active:focus,
.btn-danger[disabled].active:focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger.active,
fieldset[disabled] .btn-danger:active:focus,
fieldset[disabled] .btn-danger.active:focus {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #ffffff;
}

.btn-warning {
    background-color: #f7be64;
    border-color: #f39c12;
    color: #ffffff;
}

.btn-warning.btn-alt {
    background-color: #ffffff;
    color: #f39c12;
}

.btn-warning:hover {
    background-color: #f39c12;
    border-color: #b3730c;
    color: #ffffff;
}

.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning.active,
.btn-warning.active:hover,
.btn-warning.active:focus,
.open .btn-warning.dropdown-toggle,
.open .btn-warning.dropdown-toggle:hover,
.open .btn-warning.dropdown-toggle:focus,
.open .btn-warning.dropdown-toggle.focus {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #ffffff;
}

.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active,
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
.btn-warning[disabled]:active,
.btn-warning[disabled].active,
.btn-warning[disabled]:active:focus,
.btn-warning[disabled].active:focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active,
fieldset[disabled] .btn-warning:active:focus,
fieldset[disabled] .btn-warning.active:focus {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #ffffff;
}

.btn-success {
    background-color: #aad178;
    border-color: #7db831;
    color: #ffffff;
}

.btn-success.btn-alt {
    background-color: #ffffff;
    color: #7db831;
}

.btn-success:hover {
    background-color: #7db831;
    border-color: #578022;
    color: #ffffff;
}

.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success:active:hover,
.btn-success:active:focus,
.btn-success.active,
.btn-success.active:hover,
.btn-success.active:focus,
.open .btn-success.dropdown-toggle,
.open .btn-success.dropdown-toggle:hover,
.open .btn-success.dropdown-toggle:focus,
.open .btn-success.dropdown-toggle.focus {
    background-color: #7db831;
    border-color: #7db831;
    color: #ffffff;
}

.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled:active,
.btn-success.disabled.active,
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
.btn-success[disabled]:active,
.btn-success[disabled].active,
.btn-success[disabled]:active:focus,
.btn-success[disabled].active:focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active,
fieldset[disabled] .btn-success:active:focus,
fieldset[disabled] .btn-success.active:focus {
    background-color: #7db831;
    border-color: #7db831;
    color: #ffffff;
}

.btn-info {
    background-color: #7abce7;
    border-color: #3498db;
    color: #ffffff;
}

.btn-info.btn-alt {
    background-color: #ffffff;
    color: #3498db;
}

.btn-info:hover {
    background-color: #3498db;
    border-color: #2875a8;
    color: #ffffff;
}

.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info:active:hover,
.btn-info:active:focus,
.btn-info.active,
.btn-info.active:hover,
.btn-info.active:focus,
.open .btn-info.dropdown-toggle,
.open .btn-info.dropdown-toggle:hover,
.open .btn-info.dropdown-toggle:focus,
.open .btn-info.dropdown-toggle.focus {
    background-color: #3498db;
    border-color: #3498db;
    color: #ffffff;
}

.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled:active,
.btn-info.disabled.active,
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
.btn-info[disabled]:active,
.btn-info[disabled].active,
.btn-info[disabled]:active:focus,
.btn-info[disabled].active:focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active,
fieldset[disabled] .btn-info:active:focus,
fieldset[disabled] .btn-info.active:focus {
    background-color: #3498db;
    border-color: #3498db;
    color: #ffffff;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link.btn-icon:hover,
.btn-link.btn-icon:focus {
    color: #1bbae1;
}

.btn-link.btn-icon {
    color: #999999;
}

.btn-link.btn-icon:hover,
.btn-link.btn-icon:focus {
    text-decoration: none;
}

.block-options .btn {
    border-radius: 15px;
    padding-right: 8px;
    padding-left: 8px;
    min-width: 30px;
    text-align: center;
}


.border-radius-0 {
    border-radius: 0px !important ;
}
.border-none {
    border: none !important;
}


.select-dropdown,
.select-dropdown * {
	margin: 0;
	padding: 0;
	/*position: relative;*/
	box-sizing: border-box;
}
.select-dropdown {
	position: relative;
	background-color: #E6E6E6;
	border-radius: 4px;
}
.select-dropdown select {
	font-size: 1rem;
	font-weight: normal;
	max-width: 100%;
	padding: 3px 3px 3px 3px;
	border: none;
	background-color: var(--bs-form-control-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
}
.select-dropdown select:active, .select-dropdown select:focus {
	outline: none;
	box-shadow: none;
}
.select-dropdown:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-top: 5px solid #aaa;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

.w-50 {
max-width: 50%;   
}   


@media (max-width:992px) and (min-width: 600px) {
  .posi{
     position: fixed ! IMPORTANT;
    top: 50% !important;
    height: 100% !important;
}

.posi-heighst{
    height: 120rem !important;
}



  .posi-without-switch{
     position: fixed ! IMPORTANT;
    top: 70% !important;
    height: 100% !important;
}
.posi-height{
    height: 120rem !important;
}
}


@media only screen and (max-width: 768px) {
     .posi{
     position: fixed ! IMPORTANT;
    top: 80% !important;
}

.posi-heights{
    height: 120rem !important;
}


     .posi-without-switch{
     position: fixed ! IMPORTANT;
    top: 90% !important;
}

.posi-height{
    height: 120rem !important;
}

}


@media only screen and (max-width: 600px) {
     .posi{
     position: fixed ! IMPORTANT;
    top: 70% !important;
    height: 100% !important;
}

.posi .pages {
    margin-left:20px;
}

.posi-heights{
    height: 120rem !important;
}


 .posi-without-switch{
     position: fixed ! IMPORTANT;
    top: 78% !important;
    height: 100% !important;
}

.posi-without-switch .pages {
    margin-left:20px;
}

.posi-height{
    height: 120rem !important;
}

}



.background-color-11{
    background-color:black;
}


<!--======================================================================New-Css-Added-->


.common sup {
  color: red;
  margin-top: 15px;
}

.form-group sup {
  color: red;
}

.bg-image-location {
  background-image: url(../images/Choose-City.jpg);
  max-width: 600px;
}

@media (max-width: 500) {
  .custom-containers {
    margin-top: 50% !important;
  }
}

.main-allow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.allow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.button:hover {
  box-shadow: 0.5px 0.5px 150px #252525;
}

.type1::after {
  content: "Thanks";
  height: 50px;
  width: 150px;
  background-color: #008080;
  color: #fff;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(50px);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1::before {
  content: "Allow";
  height: 50px;
  width: 150px;
  background-color: #fff;
  color: #008080;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(0px) scale(1.2);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1:hover::after {
  transform: translateY(0) scale(1.2);
}

.type1:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}

.page::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: -50%;
  transform: translateY(50%);
  left: 54px;
  background: linear-gradient(3deg, darkgreen, orangered, red);
  border-radius: 50% 60% 50% 0%;
  transform: rotate(113deg);
}

.page::before {

  content: "";
  position: absolute;
  top: -37%;
  left: 44px;
  width: 482px;
  height: 482px;
  border-radius: 257px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(-211deg);
  z-index: 2;
}

.pagetextin h2 {
  font-size: 30px !important;
  color: #fff !important;
  font-family:"Makro Bold";
}

.pagetextin p {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}



.round-it3::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -124px;
  width: 270px;
  height: 270px;
  border-radius: 257px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(-212deg);
  z-index: 2;
}

.round-it3::before {
  content: "";
  position: absolute;
  top: 29%;
  left: -32px;
  width: 150px;
  height: 150px;
  border-radius: 257px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(55deg);
  z-index: 2;
}



.round-it::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 220px;
  width: 200px;
  height: 200px;
  border-radius: 98px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(-313deg);
  z-index: 2;
}

/* .page::after {
  width: 100%;
  height: 100%;
  content: "";

  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 100px solid red;
  border-radius: 50%;
} */
.pagetext {
  position: absolute;
  bottom: 80px;

  left: 40px;
  z-index: 1;
}

.pagetext h2 {
  color: #fff;
  font-size: 35px;
  line-height: 45px;
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 500;
}

.pagetext h2 span {
  -webkit-text-fill-color: linear-gradient(3deg, darkgreen, orangered, red) !important;
}

.pagetext p {
  font-size: 14px;
  font-weight: normal;
  max-width: 457px;
  text-align: justify;
}

.page2 {
  width: 100%;
  height: 100vh;
  background-color: #0e2064;
  overflow: hidden;
}

.page3 {
  width: 100%;
  height: 100vh;
  background-color: #0e2064;
  overflow: hidden;
}

.page4 {
  width: 100%;
  height: 100vh;
  background-color: #0e2064;
  overflow: hidden;
}


.page3::after {
  width: 250px;
  height: 250px;
  content: "";
  position: absolute;
  bottom: 1px;
  left: 10px;
  background: rgba(0, 100, 0, 0.645);
  border-radius: 50%;
}



.page3::before {
  width: 200px;
  height: 200px;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 36px;
  left: 81px;
  z-index: 1;
}

.pagetextin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.pagetext2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.pagetext2 p {
  font-size: 14px;
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-weight: 300;
}

.pagetext2 h2 {
  text-align: center;
  font-size: 35px;
  color: #fff;
  margin-bottom: 10px;
}

.form-page {
  background-color: #0e2064;
  width: 100%;
  height: 100vh;
}

.form-page2 {
  background-color: #0e2064;
  width: 100%;
  height: 100vh;
}

.inwat {
  font-weight: 300 !important;
}



.green li {
  background-color: #008080 !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50%;
}

.darkgreen li {
  background-color: #008080 !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50%;
}

.text-in {
  width: 100%;
  padding-top: 30px;

}

.form-page::after {
  width: 600px;
  height: 600px;
  content: "";
  border: 2px solid #fff;
  position: absolute;
  bottom: -161px;
  right: -19px;
  border-radius: 50%;
}

.form-page2::before {
  width: 600px;
  height: 600px;
  content: "";
  border: 2px solid #fff;
  position: absolute;
  bottom: -279px;
  left: 20px;
  border-radius: 50%;
}

.pagetext2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
}

.pagetext2 ul li {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: palevioletred;
}

.page4::after {
  width: 250px;
  height: 250px;
  content: "";
  position: absolute;
  top: 8px;
  left: -102px;
  background: #005f71;
  border-radius: 50%;
}

.page4::before {
  width: 150px;
  height: 150px;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 16px;
  z-index: 1;
}

#main {
  width: 100%;
  padding-left: 25px;
  background-color: #d5d5d57a;
  height: 100vh;
}

.custom-container2 {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-container2 h2 {
  font-size: 28px;
  color: #0e2064;
}

.custom-container2 i {
  padding: 15px 8px;
  background-color: #7777775c;
  border-radius: 20px;
  cursor: pointer;
  color: #0e2064;
}

.diwalipic img {
  border-radius: 10px 0 0 10px;
}

.diwalipic {
  border-radius: 10px 0 0 10px !important;
  border-radius: 10px 0 0 10px !important;
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.list {
  width: 100%;
  display: flex;
  white-space: nowrap;
  margin-top: 20px;
  justify-content: space-between;

}

.list li {
  /* padding: 10px 15px; */
  color: #0e2064;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #0e2064;
  width: 92% !important;
  text-align: center;
  display: flex !important;
      align-items: center;
      justify-content: center;
      height: 30px;
      width: 100% !important;
}

.list li a {
  width: 100%;
  display: block;
}

.pic {
  width: 100%;
  margin-top: 10px;
}

.pic img {
  width: 92%;
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
  position: relative;
  left: -34px;
}

.mLX {
  width: 100%;
  display: flex;
}

.all-pic {
  width: 95%;
}

.data {
  width: 5%;
}

.data ul li a {
  color: rgba(128, 128, 128, 0.658);
  font-weight: 500;
}

.active2 {
  color: #0e2064 !important;
}

.data ul {
  display: flex;
  flex-wrap: wrap;
}

.data ul li {
  transform: rotate(270deg);
  position: relative;
  left: -40px;
  top: 32px;
}

.data ul li:nth-child(even) {
  position: relative;
  top: 60px;
  left: -20px;
}

.data ul li:nth-child(3) {
  position: relative;
  top: 85px;
  left: -20px;
}

/* @media screen and (max-width:1366px) {
  .page::after {
    left: 20px;
  }


  .pagetext2 {
    top: 55%;
  }

  .page3::before {
    width: 200px;
    height: 200px;
    content: "";
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    left: 66px;
    z-index: 1;
  }

  .page3::after {
    width: 300px;
    height: 300px;
    content: "";
    position: absolute;
    bottom: -82px;
    left: -1px;
    background: rgba(0, 100, 0, 0.645);
    border-radius: 50%;
  }
}

@media screen and (max-width:539px) {
  .pagetext {
    left: 0;
    padding: 0 15px;
  }

  .pagetext p {
    font-size: 11px;
    margin-top: 5px;
  }

  .pagetext h2 {
    font-size: 29px;
    line-height: 37px;
  }

  .page::before {
    top: -34%;
    left: 19px;
  }

  .page::after {
    top: -43%;
  }

  .round-it::before {
    top: 25%;
  }

  .round-it::after {
    top: -17%;
    left: 223px;
    -webkit-transform: rotate(-228deg);
  }
}

@media screen and (max-width:479px) {
  .round-it::before {
    top: 37%;
    left: 302px;
  }

  .round-it::after {
    top: -18%;
    left: 109px;
    -webkit-transform: rotate(-277deg);
  }

  .page::before {
    top: -29%;
    left: -10px;
    -webkit-transform: rotate(-213deg);
  }

  .round-it3::after {
    top: -82px;
    left: -124px;
    -webkit-transform: rotate(-242deg);
  }

  .page::after {
    top: -33%;
  }

  .pagetext2 p {
    max-width: 100%;
    padding: 0 15px;
  }

  .page3::before {
    bottom: 0px;
    left: 21px;
  }

  .page3::after {
    bottom: -73px;
    left: -47px;
  }

  .pagetext2 {
    top: 50%;
  }

  .page4::after {
    top: -68px;
    left: -102px;
  }

  .page4::before {
    top: -32px;
    left: 16px;
  }
}

@media screen and (max-width:399px) {
  .page::before {
    top: -36%;
  }

  .custom-container {
    padding: 0 20px;
  }

  .page3::after {
    bottom: -73px;
    left: -149px;
  }

  .page3::before {
    bottom: 0px;
    left: -94px;
  }

  .round-it2::after {
    bottom: -8%;
    left: -112px;
    -webkit-transform: rotate(-225deg);
  }

  .round-it::before {
    top: 37%;
    left: 226px;
  }
} */

.list {
  width: 100%;

}

.slick-prev:before,
.slick-next:before {
  display: none !important;
}

.slick-prev,
.slick-arrow {
  display: none !important;
}

.inbut {
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(266deg, rgb(23, 146, 23), rgb(228, 78, 23), rgb(241, 144, 176), rgb(145, 131, 238), red);
}










/* 
new */
#home {
  width: 100%;
  padding: 0 !important;
  overflow: hidden;
  position: relative;

}

.fast-page::after {
  width: 700px;
  height: 700px;
  content: "";
  position: absolute;
  top: -70%;
  transform: translateY(50%);
  left: -9px;
  background: linear-gradient(3deg, #6aaf9c, #c2a796, #ca8480, #ad5575);
  border-radius: 50% 60% 50% 0%;
  transform: rotate(113deg);
}

.fast-page::before {
  content: "";
  position: absolute;
  top: -43%;
  left: 44px;
  width: 482px;
  height: 482px;
  border-radius: 257px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(-211deg);
  z-index: 2;
}

.pagesecton {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.pagesecton h2 {
  color: #fff;
  font-size: 42px;
  font-family: "Makro Bold";
}

.pagesecton p {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.fast-page {
  width: 100%;
  background-color: #1a1950;
  height: 100vh;
  padding: 0 !important;
}

.textpostion {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 50%;
}

.secton {
  width: 100%;
  height: 100vh;
  background-color: #1a1950;
}

.pagein h2 {
  font-size: 30px;
  color: #fff;
  font-family: 'Makro Bold';
}

.ol {
  background-image: linear-gradient(to left, #51a4a8, #f6b19f);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pagein p {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.pagein img {
  width: 100px;
}

.arrowin {
  position: absolute;
 /* bottom: 12px !important;*/
 top:72%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(3deg, #4ac0b6, #eed5e7, #be72af);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.arrowin2 {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(3deg, #4ac0b6, #eed5e7, #be72af);
  width: 150px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

}

.arrowin2 a {
  color: #0e2064 !important;
}

.arrowin a {
  color: #fff !important;
}

.secton::after {
  width: 300px;
  height: 300px;
  content: "";
  position: absolute;
  top: -70px;
  right: -40px;
  background: #935d8d;
  border-radius: 50%;
}

.pagethree {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.pagethree h2 {
  font-size: 35px;
  color: #fff;
  font-family:'Makro Bold';
}

.pagethree p {
  color: #fff;
  font-size: 12px;
  margin-top: 5px;
  font-family: "Roboto", sans-serif;

}


.plan {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  width: 100%;


}

.plan li {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c477b1;
  margin-top: 8px;


}

.secton::before {
  width: 200px;
  height: 200px;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -52px;
  right: -35px;
  z-index: 1;
}

.round-it2::after {
  content: "";
  content: "";
  position: absolute;
  bottom: -3%;
  left: 1px;
  width: 300px;
  height: 300px;
  border-radius: 257px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(125deg);
  z-index: 2;
}

.round-it2::before {
  content: "";
  content: "";
  position: absolute;
  bottom: -19%;
  left: 103px;
  width: 200px;
  height: 200px;
  border-radius: 257px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(43deg);
  z-index: 2;
}






























































@font-face {
  font-family: "Neuzon";
  src: url('../fonts/Neuzon.ttf');
}

.heading{
  color:#242961;
  /* font-weight:900; */
  font-family: "Neuzon";
  margin-left: 25px;
}

.price-1{
  color:#242961; 
  font-weight:900;
  font-family: "Neuzon";
}

.heading-2{
  font-size:45px;
  color: rgba(var(--success-color), 1);
  font-family: "Neuzon";
  line-height: 50px;
  color: #638336;
  margin-left: 25px;
}

.pera{
  font-size: 18px;
    /* max-width: 373px; */
    display: block;
    /* margin-top: 15px; */
    line-height: 20px;
    /* margin-left: 25px; */
    color: #242961;
    font-weight: 500;
    font-family:sans-serif;
    padding: 15px 0px 15px 25px;
}

.minus-plush-add-card{
  display: flex;
  justify-content: start;
  gap: 15px;
  align-items: center;
  margin-left: 18px;
}

.minus-btn{
  margin-top: 10px;
  color: #242961;
  font-size: 18px;
  background-color: #2429613b !important;
  border-radius: 100%;
  padding: 7px
}

.Quantity{
  font-size: 18px;
  margin-top: 0;
  text-align: end;
  line-height: 20px;
  color:#242961;
}

@media(max-width:767px) and (min-width:250px){
  .Quantity{
    font-size: 16px !important;
    margin-top: 0;
    text-align: end;
    line-height: 20px;
    color:#242961;
    /* min-width: 106px; */
    margin-right: 15px;
  }



  .heading{
    color:#242961;
    /* font-weight:900; */
    font-family: "Neuzon";
    /* margin-left: 15px; */
    margin-left: 10px;
  }
  
  .price-1{
    color:#242961; 
    font-weight:900;
    font-family: "Neuzon";
  }
  
  .heading-2{
    font-size:45px;
    color: rgba(var(--success-color), 1);
    font-family: "Neuzon";
    line-height: 50px;
    color: #638336;
    /* margin-left: 15px; */
    margin-left: 10px;
  }
  
  .pera{
    font-size: 17px;
      /* max-width: 373px; */
      display: block;
      /* margin-top: 15px; */
      line-height: 20px;
      /* margin-left: 25px; */
      color: #242961;
      font-weight: 500;
      font-family:sans-serif;
      /* padding: 15px 0px 15px 25px; */
      padding: 8px;
  }

  .minus-plush-add-card{
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
    margin-left: 8px;
  }
  
  .minus-btn{
    margin-top: 10px;
    color: #242961;
    font-size: 18px;
    background-color: #2429613b !important;
    border-radius: 100%;
    padding: 7px
  }
}


@font-face {
    font-family: "Makro Bold";
    src: url("https://db.onlinewebfonts.com/t/2642790799d51450439483aba3a0643a.eot");
    src: url("https://db.onlinewebfonts.com/t/2642790799d51450439483aba3a0643a.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/2642790799d51450439483aba3a0643a.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/2642790799d51450439483aba3a0643a.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/2642790799d51450439483aba3a0643a.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/2642790799d51450439483aba3a0643a.svg#Makro Bold")format("svg");
}


.icon-main-1 i{
  color: white; 
  display: block;
  font-size: 20px;
}



@media only screen and (max-width: 600px) {
 .textpostion {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 50%;
}

.arrowin {
    position: absolute;
    /* bottom: 12px !important; */
    top: 78%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(3deg, #4ac0b6, #eed5e7, #be72af);
    width: 60px;
    bottom:50px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

}
