@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --gilroy-font: "Gilroy";

    --transition-05s: all ease-in-out 0.5s;

    --main-color: 230, 23, 23; /* rgb(230, 23, 23); */
    --para-color: 145, 145, 145; /* rgb(145, 145, 145); */
    --black-color: 0, 0, 0; /* rgb(0, 0, 0); */
    --white-color: 255, 255, 255; /* rgb(255, 255, 255); */

}

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

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

.sdw {
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5)
}
.loader {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
  }
  .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid rgba(var(--main-color),1);
    animation: prixClipFix 2s linear infinite ;
  }

  @keyframes rotate {
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
      75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
      100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
  }
  #collection-products > .row > * {
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5)
  }
/*================================= Order Sucess Page ========================*/

.order-sucess {
    padding: 40px 0px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.success-container {
    background: white;
    height: 520px;
    width: 90%;
    box-shadow: 5px 5px 10px grey;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    padding: 40px;
}
.success-container::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    height: 10px;
    width: 100%;
    background: #198754;
}
.success-container.fail::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    height: 10px;
    width: 100%;
    background: #d62828;
}
.success-container h4 {
    font-size: 40px;
    font-weight: 600;
}
.success-container i {
    --ehw-bg: 80px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    border-radius: 50%;

    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-container i.fa-check {
    border: 5px solid #198754;
    color: #198754;
}
.success-container i.fa-xmark {
    border: 5px solid #d62828;
    color: #d62828;
}
.success-container > p.success {
    font-size: 24px;
    font-weight: 400;
    color: #198754;
}
.success-container > p.fail {
    font-size: 24px;
    font-weight: 400;
    color: #d62828;
}
.success-container .order-details h5 {
    font-size: 22px;
    font-weight: 500;
}
.success-container .order-details h5 > a {
    font-size: 24px;
    font-weight: 600;
    color: rgb(3, 3, 173);
}
.success-container .order-details p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

/*======================================= Order History Page ================================*/
.order-history {
    padding: 60px 0px;
}
.order-left,.order-right {
    margin-top: 20px;
}
.order-left .order-filterBox {
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.order-left .order-filterBox h3 {
    font-size: 24px;
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.order-optBox {
    margin-bottom: 20px;
}
.order-optBox h5 {
    font-size: 18px;
    font-weight: 400;
}
.order-optBox .form-check > label {
    font-size: 16px;
    font-weight: 400;
}
.order-right .order-form-search {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}
.order-right .order-form-search input {
    width: 85%;
    border-radius: 0px;
}
.order-right .order-form-search button {
    width: 15%;
    border-radius: 0px;
    font-size: 16px;
}
.order-list li {
    margin-bottom: 16px;
}
.order-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5);
    padding: 20px;
    transition: all ease-in-out 0.5s;
}
.order-list-item:hover {
    box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.5);
}
.order-list-item .order-img {
    --ehw-img: 100px;
    width: var(--ehw-img);
    height: var(--ehw-img);
}
.order-list-item .order-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-title-des {
    width: 50%;
    padding: 0px 20px 20px 0px;
}
.order-title-des > h5 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
.order-title-des > span {
    font-size: 16px;
    font-weight: 500;
    color: #534c4c;
    margin-bottom: 0px;
    margin-right: 20px;
}
.order-price p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.order-info h5 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
}
.order-info p {
    font-size: 16px;
    font-weight: 500;
    color: #534c4c;
    margin-bottom: 0px;
}
.order-info h5.status-del::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #198754;
}
.order-list-item.order-dtls {
    justify-content: flex-start;
    gap: 20px;
}
.order-ads-box {
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.order-ads-box  > h3 {
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.order-ads-des > h5 {
    font-size: 20px;
    font-weight: 600;
}
.order-ads-des > h5 i {
    margin-right: 10px;
    color: #28a745;
}
.order-tracking {
    padding: 40px 60px;
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}
.order-summary {
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin-bottom: 20px;
}
.order-summary > h4  {
    font-size: 20px;
    color: #000;
    font-weight: 400;
}
.order-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.order-summary-list li > p {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 400;
}
.order-summary-list li > span {
    font-size: 14px;
    color: #534c4c;
}
.order-summary-list li.total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: -5px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 30px;
}
ul.timeline > li:before {
    content: '\2713';
    background: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 0;
    left: -30px;
    width: 50px;
    height: 50px;
    z-index: 400;
    text-align: center;
    line-height: 50px;
    color: #d4d9df;
    font-size: 24px;
    border: 2px solid #d4d9df;
}
ul.timeline > li.active:before {
    content: '\2713';
    background: #28a745;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 0;
    left: -30px;
    width: 50px;
    height: 50px;
    z-index: 400;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 30px;
    border: 2px solid #28a745;
}
/* end timeline */


/* Location Modal */

.change-location-form-wrap {
    position: relative;
    width: 100%;
}

.change-location-form-wrap .form-group {
    position: relative;
    width: 100%;
    display: flex;
    /* flex-wrap: wrap; */
    margin-bottom: 12px;
}
.change-location-form-wrap .form-group .input {
    position: relative;
    width: calc(100% - 65px);
    width: calc(100%);
    padding-right: 8px;
}
.change-location-form-wrap .form-group .apply-btn-wrap {
    position: relative;
    width: 65px;
    width: 36%;
}
.change-location-form-wrap .form-group .apply-btn-wrap .apply-btn {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #e23d20;
    color: #fff;
    font-size: 15px;
    border: 0px;
    border-radius: 4px;
}


.change-location-form-wrap .form-group .form-control {
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: none;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
}
.change-location-form-wrap .location-footer {
    position: relative;
    width: 100%;
    max-height: 280px;
    overflow: auto;
}

.change-location-form-wrap .location-footer ul {
    position: relative;
    width: 100%;
}
.change-location-form-wrap .location-footer ul li {
    position: relative;
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
}
.change-location-form-wrap .location-footer ul li .location-list{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    padding: 6px 5px;
}
.change-location-form-wrap .location-footer ul li .location-list:hover{
    background-color: #ededed;
}
.change-location-form-wrap .location-footer ul li .location-list .icon {
    position: relative;
    width: 25px;
    font-size: 18px;
}
.change-location-form-wrap .location-footer ul li .location-list .location-address {
    position: relative;
    width: calc(100% - 25px);
}
.change-location-form-wrap .location-footer ul li .location-list .location-address h5 {
    position: relative;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.change-location-form-wrap .location-footer ul li .location-list .location-address p {
    position: relative;
    width: 100%;
    font-size: 13px;
    margin-bottom: 0px;
}
.Location-CloseBtn {
    position: absolute;
    right: 0px;
    top: 0px;
}
.Location-img {
    width: 180px;
    margin: 0px auto;
}
.Location-CheckTxt {
    margin: 20px 0px 16px;
    padding: 0px 10px 16px;
    border-bottom: 1px solid #bbb;
    text-align: center;
}
.Location-CheckTxt h5 {
    font-size: 18px;
    font-weight: 600;
}
.Location-CheckTxt p {
    font-size: 13px;
    margin-bottom: 0;
}
.DeliveryAvail-box {
    background: rgb(229, 239, 229);
    padding: 6px 10px;
    margin: 10px 0px;
    border-radius: 5px;
    color: #242424;
    word-break: break-word;
    font-weight: 600;
    font-size: 14px;
}
#locationForm {
    margin-top: 20px;
}

/* End Location Modal */
.AdsTop-banner {
    margin-top: 10px;
}
.AdsTop-banner .top-banner, .AdsBottom-banner .bottom-banner {
    border-radius: 10px;
    overflow: hidden;
}
.SliderMiddle-MainBox .swiper-slide {
    padding: 0px !important;
    overflow: hidden;
    border-radius: 16px;
}
.image-bg {
    overflow: hidden;
}
.category-page a, .category-home.HYTTY-home a {
    display: block;
    /* border: 0.5px solid rgb(232, 232, 232); */
    padding: 4px;
    border-radius: 5px;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5); */
    background: #fff;
}
.category-page .image-bg {
    background-color: rgb(229 243 243);
    border-radius: var(--bs-border-radius-xl) !important;
}
/* .category-page .image-bg img {
    object-fit: contain;
} */

.cart-item .text-secondary {
	font-weight: 700;
}

.HeadLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.search-box {
    width: 100%;
    margin: auto;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.search-box .input-group .form-control{
    box-shadow: none;
    border-color: #6c757d;
}
.selectLocationBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.HeadLogo {
    display: block;
    max-width: 140px;
}
.product-cta input {
    padding: 0 !important;
    font-size: 13px !important;
}

.rt-sec {
    padding: 30px 30px;
    background-color: #EEF3FF;
  }
  .rt-sec .details-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rt-sec .details-hdr h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0 0 12px;
    position: relative;
  }
  .rt-sec .details-hdr h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: #FF6600;
  }
  .rt-sec .details-hdr .btn-outline-warning {
    padding: 6px 20px !important;
  }
  .rt-sec .custom-fld {
    margin-top: 15px;
  }
  .rt-sec .custom-fld h4 {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    padding: 0;
  }
  .rt-sec .custom-fld h4 span {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 10px 0 0;
    display: block;
  }


.rd-mailform .form-group {
    margin-bottom: 1rem;
  }

  .rd-mailform .form-group .form-control {
    height: 50px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    background-color: transparent;
  }
.full-hight{
    height: 100vh;
}


@media (max-width: 767px) {
    .success-container {
        height: auto;
        width: 100%;
        gap: 20px;
    }
    .success-container h4 {
        font-size: 28px;
    }
    .success-container > p {
        font-size: 20px;
    }
    .success-container .order-details h5 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .success-container .order-details p {
        font-size: 16px;
    }
    .success-container .order-details h5 > a {
        font-size: 20px;
    }
    .success-container i {
        --ehw-bg: 60px;
        font-size: 30px;
    }
    .order-list-item.order-dtls {
        justify-content: flex-start;
        gap: 20px;
        flex-wrap: wrap;
    }
    .order-title-des {
        width: 60%;
        padding: 0 10px 0 0;
    }
    .order-title-des > h5 {
        font-size: 18px;
    }
    .order-tracking {
        padding: 30px 50px;
    }
    .order-list-item {
        padding: 12px;
    }
    .selectLocationBtn {
        font-size: 11px;
    }
    .search-box input, .search-box .btn-search {
        font-size: 13px;
    }
    .custom-mbl-body {
        max-height: 48vh;
        overflow: scroll;
    }
    .sticky-footer .row {
        gap: 12px 0px;
    }
}

@media (max-width: 575px) {
    .HeadLogo {
        max-width: 80%;
    }
    .header .mbl-customize.d-flex {
        display: flex !important;
    }
    .search-box .p-2.w-100.sticky-top.bg-white {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .selectLocationBtn {
        font-size: 10px;
    }
    .order-list-item {
        display: block;
    }
    .order-title-des {
        width: 100%;
        padding: 0;
    }
    .order-title-des > span {
        margin-right: 0;
    }
    .rt-sec {
        padding: 15px;
    }
}



/* issue fixing css add */
.categoryStories .swiper-slide {
    height: auto;
}
.productSwiper .swiper-slide {
    height: auto;
}
.productSwiper .swiper-slide .product-image a img{
    height: 190px;
    object-fit: cover;
}
#addressForm .form-check-input[type=radio], #redirect .form-check-input[type=radio]{
    border-color: #000;
}

.floating-collection{
    margin-bottom: 125px !important;
}

.form-check-input {
	border: var(--bs-border-width) solid #919191;
}
#message .alert {
	padding: .5rem;
	overflow: scroll;
	max-height: 160px;
}

/* issue fixing css add end */
.stiCk .btn-primary {
    background-color: #fff !important;
    color:#e23d20 !important;
}

.stiCk .btn-primary.selected {
    border: 1px solid #e23d20 !important;
    background: #e23d20 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .product-cta {
        width: 75px !important;
    }
    .productSwiper .swiper-slide .product-image a img {
    height: 190px;
    object-fit: contain;
}
}
