/* UNIVERSAL CSS  */

body {
    margin: 0px;
    padding: 0x;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
a {
    margin: 0px;
    padding: 0px;
}

a {
    transition: 0.3s ease-in;
}

p {
    color: #777;
    font-size: 14px;

    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
    padding-bottom: 10px;
}

li {
    list-style: none;
}

input,
textarea {
    width: 100%;
    transition: 0.3s ease-in;
}

input:focus-visible,
textarea:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-37: 37px;
    --fs-50: 50px;
    --lh-60: 60px;
    --fs-40: 40px;
    --lh-45: 45px;
    --fs-24: 24px;
    --lh-34: 34px;
    --fs-20: 20px;
    --lh-25: 25px;
    --color-red: #9a0000;
}

/* UNIVERSAL CSS END */

/* HEADER  */
.custome-container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 10px;
}

.top-adress p {
    color: #474e57;
    font-size: var(--fs-14);
    font-weight: 400;
    line-height: 20px;
}

header.custome-header .top-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.middle-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0px;
    border-bottom: 1px solid #ebebeb;
}

.logo-main {
    max-width: 190px;
    width: 100%;
}

.form-header {
    max-width: 575px;
    width: 100%;
    margin-left: -62px;
}

.grid-form {
    display: flex;
    height: 40px;
    border: 1px solid #ebebeb;
    padding-left: 10px;
}

.account {
    display: flex;
    gap: 20px;
    text-align: center;
}

.images-account {
    max-width: fit-content;
    margin: 0 auto;
    padding-bottom: 10px;
}

.sbmt-btn {
    background: transparent;
    border: none;
    max-width: 36px;
    width: 100%;
}

.grid-form input {
    border: none;
}

.data-top-head {
    background: #f6f6f6;
    padding: 15px 0px;
    position: relative;
}

.middle-head p,
.middle-head a {
    color: #333;
    font-size: var(--fs-16);

    font-weight: 300;
    line-height: 21px;
}

.nav-list ul li a,
.grid-menu a {
    color: #333;
    font-size: var(--fs-16);

    font-weight: 400;
    line-height: 21px;
    display: block;
    max-width: fit-content;
}

.nav-list ul li a {
    margin-top: -1px;
}

.nav-list ul li a,
.grid-menu a {
    padding-top: 15px;
}

.nav-list ul.nav-lists {
    display: flex;
    align-items: center;
    gap: 55px;
}

.browse-grid {
    display: flex;
    gap: 58px;
}

li.current-menu-item a {
    color: var(--color-red) !important;
    border-top: 1px solid var(--color-red);
}

.nav-list ul li a:hover {
    color: var(--color-red);
}

.cat-list li a {
    color: #999;
    font-size: var(--fs-16);

    font-weight: 400;
    line-height: 21px;
    text-transform: capitalize;
    display: block;
    max-width: 100%;
    padding: 20px 12px;
    border-bottom: 1px solid #c4c4c4;
}

.nav-list {
    width: 100%;
}

.maincat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #9a0000;
    color: #fff;
    padding: 20px 12px;
}

.list a {
    padding: 0px;
    color: #fff;
    font-size: var(--fs-16);

    font-weight: 500;
    line-height: 21px;
}

.cross {
    max-width: 15px;
    width: 100%;
}

.data-top-head p a {
    color: #9a0000;
}

.grid-menu.active {
    background: var(--color-red);
    color: #fff;
}

.link-cat a {
    font-weight: 500;
    padding: 0px !important;
}

.grid-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 235px;
    position: relative;
    width: 100%;
    transition: 0.3s ease-in;
    padding: 15px 12px;
    cursor: pointer;
}

.grid-menu.active .link-cat a {
    color: #fff;
}

.menu-icon {
    padding: 0px;
}

.cat-list {
    position: absolute;
    top: 54px;
    max-width: 100%;
    width: 100%;
    background: #fff;
    left: 0;
    right: 0;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* animation: slidedown 0.5s ease-in; */
}

@keyframes slidedown {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 6%, 0 6%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.menu-icon img {
    max-width: 18px;
    height: 24px;
}

/* .grid-menu.active .cat-list {
      display: block;
  } */

img.cross {
    display: none;
}

.grid-menu.active img.cross {
    display: block;
}

.grid-menu.active img.add {
    display: none;
}

header.custome-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 111;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
}

.margin-top {
    margin-top: 202px;
}

.hamburger i {
    font-size: 30px;
    color: var(--color-red);
}

.hold-mobile-container {
    position: relative;
}

.hamburger {
    max-width: fit-content;
    width: 100%;
    display: none;
}

.form-header input {
    color: #333;
    font-size: 14px;

    font-weight: 300;
    line-height: 20px;
}

.account-data {
    position: relative;
}

.logi-modal {
    position: fixed;
    width: 430px;
    background: #fff;
    text-align: start;
    padding: 30px 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    top: 146px;
    z-index: 1111;
    right: 75px;
    display: none;
}

.login-title {
    color: #525c64;
    font-size: var(--fs-37);

    font-weight: 300;
    line-height: normal;
}

.input-holder label {
    color: #474e57;
    font-size: 14px;

    font-weight: 400;
    line-height: 21px;
    padding-bottom: 5px;
}

.input-holder input {
    height: 43px;
    border: 1px solid #d7d7d7;
    color: #333;
    font-size: 16px;

    font-weight: 300;
    line-height: 20px;
    padding: 0px 10px;
}

.input-holder input.submit-btn {
    background: var(--color-red);
    color: #fff;
    font-weight: 500;
    line-height: 21px;
}

.title-grid {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
}

.input-holder .forgot-pw {
    color: #474e57;
    text-align: center;
    font-size: 14px;

    font-weight: 400;
    line-height: 21px;
    text-align: center;
    display: block;
    padding: 10px 0px;
    border: 1px solid #000;
}

.input-holder .forgot-pw:hover {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}

.input-holder {
    padding-bottom: 15px;
}

.account-data.account-1 {
    cursor: pointer;
}

.cat-list ul li:last-child a {
    border: none;
}

.login-cross {
    max-width: 18px;
    width: 100%;
    cursor: pointer;
}

span.over-lay {
    position: fixed;
    /* background: #000000c7; */
    width: 100%;
    inset: 0;
    cursor: pointer;
    z-index: 111;
    display: none;
    animation: opacity 0.5s ease-in;
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.top-adress p {
    padding: 0px;
}

header.custome-header span.cart-data {
    position: absolute;
    height: 18px;
    width: 18px;
    background: #9a0000;
    top: -5px;
    right: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    padding: 0px !important;
}

/* HEADER END */

/* HOME SLIDER  */

.home-slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section.home-slider-main-sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.clip-images {
    position: absolute;
    top: 0;
    z-index: 11;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-slider,
.clip-images {
    min-height: 735px;
}

.clip-images img {
    height: 100%;
    object-fit: cover;
}

.home-slider-content-details {
    position: absolute;
    top: 0;
    z-index: 11;
    top: 30px;
}

.logo-sam {
    max-width: 198px;
    width: 100%;
    padding-bottom: 85px;
}

.main-title {
    color: #000;
    font-size: var(--fs-50);

    font-weight: 600;
    line-height: var(--lh-60);
    letter-spacing: -1.125px;
    padding-bottom: 15px;
}

.title-slider {
    max-width: 460px;
    width: 100%;
}

.sub-title {
    color: #000;
    font-size: var(--fs-40);

    font-weight: 500;
    line-height: var(--lh-45);
    padding-bottom: 15px;
    text-transform: capitalize;
}

.title-slider p {
    color: #000;
    font-size: var(--fs-20);

    font-weight: 500;
    line-height: var(--lh-25);
}

.universal-anchor a,
.universal-anchor p {
    color: #fff;
    text-align: right;
    font-family: Poppins;
    font-size: 18px;

    font-weight: 400;
    background: #9a0000;
    padding: 10px;
    display: block;
    text-align: center;
}

.universal-anchor a:hover {
    background: #474e57;
}

.universal-anchor {
    max-width: 238px;
    width: 100%;
    text-align: center;
}

.universal-anchor a img {
    width: 11px;
    height: 11px;
}

.home-slider-content-details .universal-anchor {
    padding-top: 25px;
}

section.home-slider-main-sec .swiper-pagination {
    bottom: 45px;
}

section.home-slider-main-sec span.swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: #fff;
    transition: 0.5s ease-in;
}

section.home-slider-main-sec span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 20px;
    background: var(--color-red);
}

/* HOME SLIDER END */

/* WHO WE ARE SEC  */

.sub-title-holder .sub-title {
    max-width: fit-content;
    border-bottom: 2px solid #474e57;
    padding: 0px;
    color: #474e57;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 25px;
}

.sub-title-holder {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.sub-title-holder .universal-anchor {
    max-width: 295px;
    width: 100%;
    margin: 0 auto;
    padding-top: 25px;
}

.sub-title-holder .universal-anchor a {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.universal-anchor a img {
    transition: 0.3s ease-in;
}

.sub-title-holder .universal-anchor a:hover {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}

.sub-title-holder .universal-anchor a:hover img {
    filter: invert(1);
}

.universal-anchor a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

section.who-we-are-sec {
    padding: 60px 0px;
}

.flag-stand {
    max-width: 475px;
    height: 515px;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: 0.5s ease-in;
    display: flex;
    align-items: end;
    padding: 20px;
    width: 100%;
    transition: 0.3s ease-in;
}

.flag-stand:hover {
    background-size: 110% 110%;
}

.flad-title {
    color: #fff;
    text-shadow: 2px 2px 0px #000;
    font-size: var(--fs-24);

    font-weight: 600;
    line-height: var(--lh-34);
}

.flag-data {
    max-width: 245px;
    width: 100%;
}

.flag-stand .universal-anchor {
    max-width: 180px;
    padding-top: 15px;
}

.flag-stand .universal-anchor p {
    background: transparent;
    border: 1px solid #fff;
}

.universal-anchor p {
    transition: 0.3s ease-in;
}

.flag-stand:hover p {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}

.universal-anchor p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.flag-stand a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
}

.flag-stand.data-2 {
    max-width: 278px;
}

.grid-who-we-are {
    display: flex;
    gap: 20px;
    padding-top: 55px;
}

.flag-stand.data-3 {
    max-width: 377px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 20px;
}

.flag-stand.data-3 .flag-stand :hover .universal-anchor p {
    background: var(--color-red) !important;
    border-color: var(--color-red);
}

.flag-stand.data-3:hover .universal-anchor p {
    background: transparent;
    border-color: #fff;
}

.flag-stand.data-3 .flag-stand {
    max-width: 100%;
    height: 257px;
    width: 100%;
}

/* WHO WE ARE SEC END */

/* FEATURED SEC  */

section.featured-sec {
    background: #eaeaea;
    padding: 50px 0px;
}

.featured-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 50px;
}

.fetured-holder {
    max-width: 345px;
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
}

.like-holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 11;
    opacity: 0;
    transition: 0.3s ease-in;
}

.fetured-holder:hover .like-holder {
    opacity: 1;
}

.image-featured {
    max-width: 100%;
    width: 100%;
    height: 345px;
    overflow: hidden;
    position: relative;
}

.image-featured img {
    height: 100%;
    object-fit: contain;
}

.btm-featured {
    padding: 20px;
    text-align: center;
}

.btm-featured p {
    color: #333;
    font-size: 20px;

    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.add-cart-btn .cart-add {
    display: block;
    color: #fff;
    font-size: 18px;

    font-weight: 400;
    line-height: 22px;
    background: var(--color-red);
    padding: 10px;
    text-align: center;
    transition: 0.3s ease-in;
}

/* .fetured-holder:hover .add-cart-btn .cart-add{
      background: #525C64;
  } */
.add-cart-btn {
    position: absolute;
    bottom: -25%;
    width: 100%;
    left: 0;
    right: 0;
    transition: 0.3s ease-in;
}

.fetured-holder:hover .add-cart-btn {
    bottom: 0;
}

.btm-featured p strong {
    font-weight: 600;
}

/* header.custome-header.active-header .data-top-head {
      position: fixed;
      width: 100%;
      top: -42%;
  } */

/* FEATURED SEC END */

/* QUART SEC  */

.quart-holder {
    height: 410px;
    max-width: 465px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.quart-holder:hover {
    background-size: 110% 110%;
}

.quart-title {
    color: #fff;
    font-size: var(--fs-40);

    font-weight: 500;
    line-height: 44px;
    /* 110% */
}

.quart-holder .universal-anchor p,
.quart-holder .universal-anchor a {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}

.quart-holder:hover .universal-anchor p {
    background: var(--color-red);
    border-color: var(--color-red);
}

.quart-holder .universal-anchor {
    max-width: 145px;
    padding-top: 25px;
    margin: 0 auto;
}

.quart-data {
    max-width: 300px;
    width: 100%;
    text-align: center;
    margin: 0px auto;
}

.grid-quard {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.quart-holder a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.quarterdeck-sec {
    padding: 90px 0px;
}

/* QUART SEC END */

/* ENGRAVING  */

section.engraving-sec .grid-who-we-are {
    flex-direction: row-reverse;
    padding: 0px;
}

section.engraving-sec {
    background: #eaeaea;
    padding: 65px 0px;
}

.other-product-holder-main {
    max-width: 345px;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0 auto;
}

.product-main-images-here {
    max-width: 345px;
    height: 345px;
    overflow: hidden;
}

.product-main-images-here img {
    height: 100%;
    object-fit: contain;
}

.other-product-holder-main p {
    color: #333;
    font-size: 20px;

    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.grid-productmain {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

section.otherproduct-sec .sub-title-holder {
    padding-bottom: 50px;
}

section.otherproduct-sec {
    padding: 85px 0px;
}

/* ENGRAVING END */

/* PRODUCT  */

.dropdown {
    max-width: 300px;
    width: 100%;
}

.dropdown select {
    width: 100%;
    border: 1px solid #767676;
    color: #171717;
    font-size: 18px;

    font-weight: 400;
    line-height: normal;
    padding: 12px;
    background-repeat: no-repeat;
    background-position: right center;
    appearance: none;
    background-position-x: 95%;
    text-transform: capitalize;
}

select:focus-visible {
    outline: none;
}

.filter-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 50px;
    padding-bottom: 40px;
}

.quart-produc {
    max-width: 385px;
    width: 100%;
    text-align: center;
    background: #fff;
    height: 100%;
    margin: 0 auto;
}

.quart-produc .add-cart-btn {
    position: static;
}

.quart-produc .add-cart-btn p {
    background: #fff;
    color: #9a0000;
    font-weight: 500;
}

.quart-produc .add-cart-btn {
    padding-bottom: 15px;
}

.quart-produc:hover .add-cart-btn p {
    background: var(--color-red);
    color: #fff;
}

.add-cart-btn p:hover {
    background: #525c64;
}

.prod-images {
    height: 400px;
    overflow: hidden;
}

.prod-images img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.btm-produ p {
    color: #333;
    font-size: 20px;

    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
    padding-bottom: 10px;
}

.prod-images,
.btm-produ {
    padding: 20px;
}

.prod-images {
    padding-bottom: 0px !important;
}

.btm-produ {
    padding-top: 0px !important;
    /* min-height: 110px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quart-produc {
    max-width: 385px;
    width: 100%;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s ease-in;
}

.quart-produc:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.quart-productss {
    background: #eaeaea;
    padding: 80px 0px;
}

section.quargear-sec {
    padding-top: 50px;
}

.grid-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* PRODUCT END */

/* SINGLE PRODUCT  */

.thumbnail-product {
    max-width: 770px;
    width: 100%;
}

.drdwn-holder {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    border: 1px solid #000;
    height: 50px;
    padding: 0px 10px;
    justify-content: space-between;
    position: relative;
    background: #0000;
    transition: 0.3s ease-in;
}

.grid-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}

.drdwn-holder.custome-dropdown {
    background: var(--color-red);
    border-color: var(--color-red);
}

.drdwn-holder.custome-dropdown .data-drp p {
    color: #fff;
}

.drdwn-holder p,
.drdwn-holder a {
    color: #b8b8b8;
    font-size: 18px;

    font-weight: 400;
    line-height: normal;
    padding: 0px;
}

.drp-images {
    max-width: 18px;
    width: 100%;
}

span.decrp {
    color: #9a0000;
    font-size: 18px;

    font-weight: 600;
    line-height: 24px;
    display: block;
    padding-bottom: 10px;
}

.cerimnal-title {
    color: #474e57;
    font-size: var(--fs-50);
    font-weight: 700;
    line-height: 53px;
    padding-bottom: 30px;
}

.drdwn-holder.custome-dropdown .select-1 {
    display: none;
}

.drdwn-holder.custome-dropdown .select-2 {
    display: block;
}

.drdwn-holder.custome-dropdown img.drpdowns {
    display: none;
}

.drdwn-holder.custome-dropdown img.cross-imagee {
    display: block;
}

.price-main {
    font-size: 19px;
    color: var(--color-red);
    font-weight: 700;
    line-height: 27px;
}

.price-main a:hover {
    color: #000000;
}

.bullet-ceremonal p {
    color: #555;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 10px;
}

.bullet-ceremonal p strong {
    color: #000;
    font-weight: 600;
}

.bullet-ceremonal {
    max-width: 630px;
    width: 100%;
    margin: 0 auto;
}

.data-drp p {
    padding: 0px;
}

.select-2 {
    display: none;
}

img.cross-imagee {
    display: none;
}

.drpdown-click {
    position: absolute;
    top: 49px;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: none;
    background: #fff;
}

.drpdown-click ul li a {
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-transform: capitalize;
    padding: 15px 10px;
    display: block;
    border-bottom: 1px solid #c4c4c4 !important;
}

.drpdown-click ul li a:last-child {
    border: none;
}

.custome-drpdwn {
    padding-top: 30px;
}

.crtdiv span.qty {
    display: flex;
    align-items: center;
    gap: 30px;
}

.grid-quantity p,
.grid-quantity a {
    padding: 0px;
}

.grid-quantity {
    border: 1px solid #000;
    max-width: 127px;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-quantity span.num {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.quantity {
    padding: 35px 0px;
}

.add-cart-main-btn a {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    background: var(--color-red);
    padding: 10xpx 0px !important;
    display: inline-block;
    padding: 10px;
}

.add-cart-main-btn a {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    background: var(--color-red);
    padding: 10px 0px !important;
    display: inline-block;
    padding: 12px 49px !important;
    border: 1px solid var(--color-red);
}

.add-cart-main-btn a:hover {
    border-color: #000;
    color: #000;
    background: #fff;
}

ul.mini-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

ul.mini-nav li a {
    color: #9a0000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    transition: 0.3s ease-in;
}

ul.mini-nav li {
    position: relative;
}

ul.mini-nav li:last-child::after {
    display: none;
}

ul.mini-nav li:last-child a {
    color: #777;
}

ul.mini-nav li::after {
    position: absolute;
    background-image: url(../images/minidrp.svg);
    content: "";
    top: 9px;
    right: -15px;
    background-repeat: no-repeat;
    height: 10px;
    width: 10px;
}

ul.mini-nav li a:hover {
    color: #000;
}

section.single-product-main-sec {
    padding-bottom: 135px;
}

section.realated-product-main-sec .sub-title-holder .sub-title {
    border: none;
}

section.realated-product-main-sec .grid-main {
    padding-top: 40px;
}

section.realated-product-main-sec {
    padding-bottom: 120px;
}

/* SINGLE PRODUCT END */

/* SIDE CART  */
.cart-slider {
    position: fixed;
    max-width: 420px;
    width: 100%;
    z-index: 11111;
    height: 100vh;
    top: 0;
    right: -90%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: #fff;
    transition: 0.5s ease-in-out;
}

.cart-slider.active-slide {
    right: 0;
}

.close-cart {
    background: transparent;
    border: none;
    margin-top: 25px;
}

.cart-title {
    color: #525c64;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.cart-title {
    margin: 55px 0px;
}

.cart-image {
    max-width: 73px;
    width: 100%;
    height: 85px;
    overflow: hidden;
}

.cart-image img {
    height: 100%;
    object-fit: contain;
}

.cart-detilas input[type="number"] {
    max-width: 50px;
    height: 40px;
    margin-top: 15px;
    text-align: center;
}

.grids-carts p {
    color: #474e57;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.364px;
}

.cart-detilas {
    max-width: 190px;
    width: 100%;
}

.grids-carts {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding-bottom: 10px;
}

p.total-price {
    color: #474e57;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.468px;
}

.remove-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

a.remove-cart {
    display: block;
    max-width: fit-content;
    margin-left: auto;
}

.total-para p {
    color: #525c64;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.total-para {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.grid-total {
    border-bottom: 1px solid #c4c4c4;
}

.biewcart-grid a {
    text-align: center;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    display: block;
    padding: 10px;
    width: 100%;
}

a.view-cart {
    color: #474e57;
    border: 1px solid #474e57;
}

a.checkout {
    background: #9a0000;
    color: #fff;
}

.biewcart-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 20px;
    padding-top: 30px;
}

.grid-paypal {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.pay-pal .or {
    max-width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.total-para,
.cross-cart,
.product-data-cart-holder,
.biewcart-grid,
.grid-paypal {
    padding-left: 25px;
    padding-right: 25px;
}

.sub-total {
    position: absolute;
    bottom: 0;
    background: #fafafa;
    padding: 20px 0px;
    width: 100%;
}

.total-para {
    padding-bottom: 10px;
}

.product-data-cart-holder {
    height: 55vh;
    overflow-y: scroll;
}

.product-data-cart-holder::-webkit-scrollbar {
    width: 5px;
}

/* Handle */
.product-data-cart-holder::-webkit-scrollbar-thumb {
    background: var(--color-red);
}

/* Handle on hover */
.product-data-cart-holder::-webkit-scrollbar-thumb:hover {
    background: var(--color-red);
}

/* SIDE CART END */

/* /* loogin poup css start  */
.pouplogin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
    z-index: 1000;
}

span.closedata {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.logindata {
    padding-bottom: 0px;
    padding-top: 0px;
}

.logindata {
    max-width: 1290px;
    margin: 0 auto;
    background-color: #fff;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

button.closeloginpoup {
    position: absolute;
    top: -22px;
    right: -28px;
    border: none;
    background: transparent;
    outline: none;
    width: 35px;
    background: #fff;
    height: 35px;
    border-radius: 50%;
    z-index: 9;
}

.mainformdata {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    height: 600px;
}

.mainformdata .title {
    position: relative;
    padding: 30px;
    max-width: 50%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #9a0000;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mainformdata .content {
    position: relative;
    z-index: 99;
}

.mainformdata .content h2 {
    color: #fff;
    font-size: 50px;
    padding-bottom: 10px;
}

.mainformdata .content h3 {
    color: #fff;
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 25px;
    padding-top: 25px;
}

.mainformdata .content span {
    color: #fff;
    font-size: 18px;
    max-width: 400px;
    line-height: 30px;
    width: 100%;
    display: block;
}

section.pouplogin .title ul {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    padding-top: 40px;
    padding-left: 0px;
    margin-bottom: 0px;
}

section.pouplogin .title ul li.current {
    color: #000;
    background-color: #fff;
}

section.pouplogin .title ul li {
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 400;
    padding: 10px 30px;
    max-width: 250px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.formlogin {
    max-width: 50%;
    width: 100%;
    padding: 50px 20px;
}

.tab-content.current {
    display: block;
    animation: animatilogin 0.3s ease-in;
}

.tab-content {
    display: none;
}

.formlogin form {
    width: 100%;
    max-width: 100%;
}

.formlogin form h2 {
    font-size: 30px;
    line-height: 40px;
    color: #000;
    font-weight: 700;
    color: #9a0000;
    margin: 20px 0px;
}

.fileds {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0px;
}

.formlogin form label {
    font-size: 18px;
    line-height: 25px;
}

.filedsdata input,
.fileds input {
    border: 1px solid #c4c4c4;
    outline: none;
    padding: 15px;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.formlogin .tab-content input[type="submit"],
.formlogin .tab-content.login input[type="submit"] {
    border-radius: 5px;
    background: #d22f25;
    border: none;
    color: #fff;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 25.6px;
    padding: 18px 73px;
    display: block;
    margin: 0 auto;
    margin-top: 45px;
    transition: 0.3s ease-in;
    width: 100%;
}

.formlogin .tab-content input[type="submit"]:hover,
.formlogin .tab-content.login input[type="submit"]:hover {
    background: #9a0000;
}

.formlogin form a {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    margin-top: 20px;
    display: block;
}

.formlogin form .condistions a {
    display: inline;
    margin: 0px;
}

.verify {
    display: flex;
    align-items: center;
}

.condistions p,
.condistions .verify label {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* input[type="checkbox"] {
      position: relative;
      border: 2px solid #000;
      border-radius: 2px;
      background: none;
      cursor: pointer;
      line-height: 0;
      margin-right: 11px;
      outline: 0;
      padding: 0 !important;
      vertical-align: text-top;
      height: 20px;
      width: 20px;
      -webkit-appearance: none;
      opacity: .5;
  }
  input[type=checkbox]:hover {
      opacity: 1;
  } */
.mainformdata .title::after {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    z-index: 0;
    width: 100%;
    height: 100%;
}

.pouplogin.showpoup {
    display: block;
    animation: animte-drop-down 0.9s ease-in;
}

@keyframes animte-drop-down {
    0% {
        opacity: 0;

        -webkit-clip-path: polygon(50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%);
        clip-path: polygon(50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%,
                50% 50%);
    }

    100% {
        opacity: 1;

        -webkit-clip-path: polygon(0 0,
                50% 0,
                100% 0,
                100% 50%,
                100% 100%,
                50% 100%,
                0 100%,
                0 50%);
        clip-path: polygon(0 0,
                50% 0,
                100% 0,
                100% 50%,
                100% 100%,
                50% 100%,
                0 100%,
                0 50%);
    }
}

@keyframes animatilogin {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* payment page csss */

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

li {
    list-style: none;
}

.container-data {
    display: flex;
}

input {
    margin-bottom: 0px;
}

* {
    font-family: "Poppins", sans-serif;
}

.payment-tab {
    max-width: 50%;
    background-color: #ffffff;
    width: 100%;
}

.payment-tab .payment {
    max-width: 635px;
    width: 100%;
    margin-left: auto;
}

section.multistep-payment .cart-data {
    max-width: 50%;
    width: 100%;
    padding-left: 65px;
    background: #f6f6f6;
    min-height: 100vh;
}

.payment-tab .payment {
    padding-top: 30px;
    padding-right: 65px;
}

ul#progressbar {
    padding: 0px;
    margin: 0px;
    padding-top: 25px;
}

#msform {
    margin-top: 0px;
}

#progressbar li:before {
    display: none;
}

#progressbar li:after {
    display: none;
}

#progressbar li {
    text-align: left;
    width: auto;
    max-width: auto;
    color: #000;
}

#progressbar li.active {
    color: #9a0000;
}

/* #progressbar li.active + li {
      color: #000000;
  } */

#progressbar li strong {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

ul#progressbar {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}

ul#progressbar li img {
    margin: 0px 12px;
}

.mainpaymentgatway {
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    padding: 22px 0px;
    position: relative;
}

.mainpaymentgatway span {
    position: absolute;
    top: -13px;
    padding: 0px 10px;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    color: #525c64;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    /* 150% */
}

.mainpaymentgatway a {
    margin: 0px 25px 0px;
    display: inline-block;
}

.or {
    position: relative;
    margin-top: 20px;
}

.or::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: #525c6442;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.or span {
    color: #474e57;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    padding: 10px 10px;
    position: relative;
    background-color: #fff;
    z-index: 2;
}

.form-card {
    padding-top: 65px;
}

.fs-title {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    /* 116.667% */
    padding-bottom: 23px;
    margin-bottom: 0px;
}

.emaildata label {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    padding-bottom: 3px;
}

.sucscribeemail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 13px;
}

.sucscribeemail input#email {
    max-width: 360px;
    width: 100%;
    display: block;
    border-radius: 4px;
    border: 1px solid #dedede;
    padding: 0px 8px;
    outline: none;
}

.sucscribeemail input.submitemail {
    border-radius: 4px;
    border: 1px solid #000;
    background: #1a1a1a;
    color: #fff;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    padding: 12px 60px;
}

.signup {
    display: flex;
    gap: 6px;
    padding-bottom: 20px;
}

.signup a {
    color: #9a0000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    text-decoration: none;
}

.signup p {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    margin-bottom: 0px;
}

.offeronemail {
    display: flex;
    gap: 7px;
    align-items: center;
    padding-bottom: 37px;
}

.offeronemail label {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

.dropdown1 {
    padding: 10px 13px;
    border-radius: 4px;
    border: 1px solid #dedede;
}

.dropdown1 p {
    margin-bottom: 0px;
    color: #747474;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 175% */
}

.dropdown1 select {
    width: 100%;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background-position: 100% center;
}

.info {
    display: flex;
    gap: 16px;
    padding: 19px 0px;
}

.info input {
    border: none;
    outline: none;
    width: 100%;
    max-width: 50%;
    padding: 19px 13px;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 131.25% */
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 131.25% */
    border-radius: 4px;
    border: 1px solid #dedede;
}

.info input::placeholder {
    color: #000000;
}

.info.data {
    padding-top: 0px;
}

.info.data input {
    width: 100%;
    max-width: 100%;
}

.dropdown1.info-data,
.info.info-data input {
    width: 100%;
    max-width: 100%;
}

.next-time .save {
    padding-bottom: 7px;
    display: flex;
    gap: 7px;
    align-items: center;
}

.next-time .save label {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

.data-next {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 44px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 19px;
}

.data-next a {
    text-decoration: none;
    color: #9a0000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

input.payenow,
input.next.action-button {
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    /* 150% */
    border-radius: 4px;
    border: 1px solid #9a0000;
    background: #9a0000;
    padding: 13px 23px;
    max-width: fit-content;
}

fieldset p {
    text-align: left;
    margin-bottom: 20px;
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

fieldset p a {
    color: #9a0000;
    text-decoration: none;
    text-align: left;
    margin-bottom: 20px;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

.cart-data {
    padding-top: 250px;
}

.cart-data ul {
    padding: 0px;
    margin: 0px;
    max-width: 480px;
    width: 100%;
}

.cart-data ul.list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.product {
    display: flex;
    gap: 15px;
}

.cart-data ul.list li h2 {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    letter-spacing: -0.416px;
    margin-bottom: 0px;
    padding-bottom: 8px;
}

.cart-data ul.list li p.title {
    margin-bottom: 0px;
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.cart-data ul.list li .productimg {
    position: relative;
}

.cart-data ul.list li .productimg span {
    position: absolute;
    z-index: 999;
    width: 23px;
    height: 23px;
    display: block;
    text-align: center;
    line-height: 23px;
    color: #fff;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.364px;
    background-color: #747474;
    top: -13px;
    right: 4px;
    border-radius: 50%;
    display: grid;
    align-items: center;
}

.total {
    margin-top: 30px;
}

.total ul {
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 20px 0px;
}

.total ul li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.total ul li:last-child {
    padding-bottom: 0px;
}

.total ul li span {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: -0.364px;
}

.total-sub {
    margin-top: 21px;
    display: flex;
    justify-content: space-between;
    max-width: 470px;
    width: 100%;
}

.total-sub span {
    color: #000;
    font-family: Poppins;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 86.957% */
    letter-spacing: -0.598px;
}

.form-card.shiping {
    padding-top: 0px;
}

.form-card.shiping ul {
    padding: 0px;
    margin: 0px;
}

.form-card.shiping {
    padding: 17px;
    border-radius: 4px;
    border: 1px solid #dedede;
}

.form-card.shiping ul li {
    display: flex;
    justify-content: space-between;
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

.form-card.shiping ul li a {
    color: #9a0000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    text-decoration-line: underline;
    text-decoration: underline;
}

.form-card.shiping ul li span.contact {
    color: #747474;
}

.form-card.shiping ul li span.email {
    max-width: 352px;
    width: 100%;
    display: block;
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

.form-card.shiping ul li span.email.parice {
    max-width: 445px;
}

.form-card.shiping ul li {
    padding: 15px 0px;
    border-bottom: 1px solid #dedede;
}

.form-card.shiping ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.form-card.shiping ul li:first-child {
    padding-top: 0px;
}

.method-data {
    padding: 40px 0px;
}

.method-data h2 {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    /* 116.667% */
    text-align: left;
    margin-bottom: 14px;
}

.method-data ul {
    padding: 0px;
    margin: 0px;
}

.method-data ul li {
    display: flex;
    padding: 22px 17px;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid #9a0000;
    background: #f1f5ff;
}

.method-data.payment p {
    color: #747474;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    margin-bottom: 14px;
}

.method-data.payment.cart {
    padding-right: 0px;
}

.crat-product-data {
    height: 100vh;
    max-width: 600px;
    padding-right: 10px;
    width: 100%;
    overflow: auto;
    padding-top: 15px;
}

.paymentdata .header-p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-radius: 4px 4px 0px 0px;
    border: 1px solid #9a0000;
    background: #f1f5ff;
}

.paymentdata .header-p label {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
}

.body-cart {
    padding: 18px;
    border: 1px solid #dedede;
    background: #f5f5f5;
    border-bottom: none;
}

/* end payment page css */
.inputfileds {
    display: flex;
    background-color: #fff;
    margin-bottom: 15px;
}

.inputfileds input {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 12px 18px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: 1px solid #dedede;
    background: #fff;
    outline: none;
    padding-right: 0px;
    border-right: none;
}

.inputfileds button {
    border: none;
    outline: none;
    background-color: #fff;
    border: 1px solid #dedede;
    border-left: none;
    padding-right: 14px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.inputfileds.name input {
    border: 1px solid #dedede;
    border-radius: 4px;
    padding-right: 15px;
}

.inputfileds .cvv {
    display: flex;
    width: 100%;
}

.inputfileds.cvvdata {
    gap: 14px;
    background-color: transparent;
}

.inputfileds.cvvdata .expiry input {
    border: 1px solid #dedede;
    border-radius: 4px;
    max-width: 100%;
    width: 100%;
}

.inputfileds.cvvdata .expiry {
    width: 100%;
}

.footer-payment {
    display: flex;
    justify-content: space-between;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid #dedede;
    background: #fff;
    padding: 18px;
}

.method-data.payment-data {
    padding-top: 30px;
    padding-bottom: 45px;
}

.method-data.payment-data ul li {
    justify-content: flex-start;
    gap: 11px;
}

.method-data.payment-data ul li.active {
    border-radius: 4px 4px 0px 0px;
    border: 1px solid #9a0000;
    background: #f1f5ff;
}

.method-data.payment-data ul li {
    background-color: #fff;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid #dedede;
    background: #fff;
}

/* custom radio box */

.container01 {
    display: block;
    position: relative;
    padding-left: 35px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    /* font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-align: left;
    user-select: none;
}

/* Hide the browser's default radio button */

.container01 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;

    border: 1px solid #dedede;
    background: #fff;
}

/* On mouse-over, add a grey background color */

.container01:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */

.container01 input:checked~.checkmark {
    background-color: #2196f3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container01 input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

.container01 .checkmark:after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .checkbox .container input:checked ~ .checkmark{
      background-color: transparent;
    } */

.container1 {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    /* background-color: #eee; */
    border-radius: 3px;
    border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
/* .container1:hover input ~ .checkmark1 {
      background-color: #ccc;
    } */

/* When the checkbox is checked, add a blue background */
.container1 input:checked~.checkmark1 {
    background-color: #2196f3;
    border: 1px solid #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark1:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container1 input:checked~.checkmark1:after {
    display: block;
}

/* Style the checkmark/indicator */
.container1 .checkmark1:after {
    top: 50%;
    left: 50%;

    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

section.multistep-payment .cart-data .header {
    padding-bottom: 40px;
    display: none;
    text-align: center;
}

/* resposnive css */

@media (max-width: 1600px) {
    .mainformdata .content h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 0px;
    }

    .mainformdata .content h3 {
        font-size: 20px;
        padding: 15px 0px;
        margin-bottom: 0px;
    }

    .mainformdata .content span {
        font-size: 16px;
        line-height: 25px;
    }

    section.pouplogin .title ul li {
        font-size: 16px;
        padding: 8px 25px;
    }

    .formlogin form h2 {
        font-size: 25px;
        line-height: 35px;
        margin: 15px 0px;
    }

    .formlogin form label {
        font-size: 16px;
        line-height: 23px;
    }

    .filedsdata input,
    .fileds input {
        padding: 10px;
        font-size: 15px;
        line-height: normal;
    }

    .formlogin form a {
        font-size: 16px;
    }

    .formlogin .tab-content input[type="submit"],
    .formlogin .tab-content.login input[type="submit"] {
        font-size: 16px;
        padding: 10px 0px;
    }

    .mainformdata {
        height: 550px;
    }
}

@media (max-width: 1400px) {
    .payment-tab .payment {
        max-width: 500px;
        padding-right: 20px;
    }

    #progressbar li strong {
        font-size: 14px;
    }

    .mainpaymentgatway a img {
        max-width: 185px;
    }

    .form-card {
        padding-top: 30px;
    }

    .fs-title {
        margin-bottom: 15px;
        padding-bottom: 0px;
    }

    .sucscribeemail input.submitemail {
        padding: 10px 30px;
    }

    .sucscribeemail input#email {
        max-width: 330px;
    }

    .signup {
        padding-bottom: 15px;
    }

    .offeronemail label {
        margin-bottom: 0px;
    }

    .offeronemail {
        padding-bottom: 20px;
    }

    .info input {
        padding: 10px 13px;
        font-size: 14px;
    }

    .info {
        padding: 12px 0px;
    }

    .dropdown1 select {
        font-size: 14px;
    }

    .dropdown1 p {
        line-height: normal;
    }

    input.next.action-button {
        padding: 12px 15px;
    }

    .cart-data ul.list li h2 {
        font-size: 14px;
    }

    .total-sub span {
        font-size: 18px;
    }

    .method-data ul li {
        padding: 10px 15px;
    }

    ul#progressbar {
        padding-bottom: 40px;
    }

    .form-card.shiping ul li span.contact,
    .form-card.shiping ul li span.email {
        font-size: 14px;
    }

    section.multistep-payment .cart-data {
        padding-left: 20px;
    }

    label.container01,
    label.container1 {
        font-size: 14px;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    .form-card.shiping ul li span.email {
        max-width: 310px;
    }
}

@media (max-width: 1200px) {
    .mainformdata .content h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 0px;
    }

    .mainformdata .content h3 {
        font-size: 18px;
        padding: 10px 0px;
        margin-bottom: 0px;
    }

    .mainformdata .content span {
        font-size: 15px;
        line-height: 25px;
    }

    section.pouplogin .title ul li {
        font-size: 15px;
        padding: 8px 25px;
    }

    .formlogin form h2 {
        font-size: 20px;
        line-height: 30px;
        margin: 12px 0px;
    }

    .formlogin form label {
        font-size: 15px;
        line-height: 22px;
    }

    .filedsdata input,
    .fileds input {
        padding: 8px;
        font-size: 15px;
        line-height: normal;
    }

    .formlogin form a {
        font-size: 15px;
    }

    .formlogin .tab-content input[type="submit"],
    .formlogin .tab-content.login input[type="submit"] {
        font-size: 15px;
        padding: 10px 0px;
    }

    .mainformdata {
        height: 500px;
    }

    .logindata {
        max-width: 950px;
    }

    .mainformdata {
        gap: 20px;
    }

    .payment-tab .payment {
        padding-left: 20px;
        padding-top: 30px;
    }

    section.multistep-payment .cart-data {
        padding-right: 20px;
    }

    .sucscribeemail input#email {
        max-width: 310px;
    }

    .form-card.shiping ul li span.email {
        max-width: 280px;
    }
}

@media (max-width: 991px) {
    .container-data {
        flex-direction: column-reverse;
    }

    section.multistep-payment .cart-data {
        padding-top: 30px;
    }

    .crat-product-data {
        height: auto;
        overflow: auto;
    }

    .mainformdata {
        flex-direction: column;
    }

    .mainformdata .title {
        max-width: 100%;
        width: 100%;
    }

    .mainformdata .title {
        justify-content: flex-start;
    }

    .mainformdata .content span {
        max-width: 100%;
        width: 100%;
    }

    .formlogin {
        max-width: 100%;
        width: 100%;
    }

    .formlogin {
        padding-top: 0px;
    }

    .logindata {
        max-width: 80%;
    }

    .mainformdata {
        height: 745px;
    }

    section.pouplogin.showpoup {
        overflow: auto;
    }

    .payment-tab,
    section.multistep-payment .cart-data {
        max-width: 100%;
    }

    .cart-data ul,
    .total-sub,
    .crat-product-data,
    .payment-tab .payment {
        max-width: 80%;
        margin: 0 auto;
    }

    .total-sub {
        margin-top: 30px;
    }

    section.multistep-payment .cart-data {
        min-height: auto;
        padding-bottom: 50px;
    }

    section.multistep-payment .payment .header {
        display: none;
    }

    section.multistep-payment .payment {
        padding-top: 20px;
    }

    section.multistep-payment .cart-data .header {
        display: block;
    }
}

@media (max-width: 665px) {

    .cart-data ul,
    .total-sub,
    .crat-product-data,
    .payment-tab .payment {
        max-width: 100%;
    }

    .method-data.payment.cart {
        padding-left: 0px;
    }

    .inputfileds.cvvdata,
    .info {
        flex-direction: column;
    }

    .info input {
        max-width: 100%;
        width: 100%;
    }

    .body-cart {
        padding: 15px;
    }
}

@media (max-width: 428px) {
    ul#progressbar {
        display: none;
    }

    section.multistep-payment .payment {
        padding-top: 50px;
    }

    .sucscribeemail input#email {
        max-width: 220px;
    }

    .sucscribeemail input.submitemail {
        padding: 10px;
    }

    input.next.action-button {
        padding: 10px;
    }
}

/* CHANGES SEABAG  */

.filter-grid .data-drp p {
    color: #000;
}

/* CHANGES SEABAG  */

.footer-menu li.current-menu-item a {
    border: none !important;
}

/* MILAN CSS  */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
    --silver: #f6f6f6;
    --dark-silver: #474e57;
    --color-333: #333;
    --theme-red: #9a0000;
    --silver-regular: #ebebeb;

    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-19: 19px;
    --fs-20: 20px;
    --fs-21: 21px;
    --fs-22: 22px;
    --fs-23: 23px;
    --fs-24: 24px;
    --fs-25: 25px;
    --fs-26: 26px;
    --fs-27: 27px;
    --fs-28: 28px;
    --fs-29: 29px;
    --fs-30: 30px;
    --fs-40: 40px;
    --fs-31: 31px;
    --fs-50: 50px;
}

.top-heaader {
    background-color: var(--silver);
    font-size: 16px;
    height: 50px;
    display: grid;
    align-items: center;
}

* {
    font-family: "Poppins", sans-serif;
}

a {
    color: var(--theme-red);
    text-decoration: none;
}

.top-heaader p {
    color: var(--dark-silver);
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 300;
    line-height: calc(var(--fs-14) + 6px);
    margin: 0;
}

.container.cs {
    max-width: 1199px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    align-items: center;
    border-bottom: 1px solid var(--silver-regular);
    padding-bottom: 14px;
}

.search-form {
    max-width: 574px;
    margin-left: -70px;
    width: 100%;
}

.profile-user ul {
    display: flex;
    column-gap: 21px;
    text-align: center;
    margin: 0;
}

.profile-user ul li p {
    margin-bottom: 0;
    color: var(--color-333);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
    padding-top: 9px;
}

input.form-control {
    border-radius: 0;
    border-color: transparent;
}

input.form-control:focus {
    border-color: none;
    box-shadow: none;
    border-color: transparent;
}

.search-form .input-group-text {
    border: none;
    background-color: transparent;
    border-radius: 0;
    cursor: pointer;
}

.search-form input.form-control {
    border-right: none;
}

.search-form .input-group {
    border: 1px solid #ebebeb;
}

.cart-number {
    position: relative;
}

.shop-items {
    position: absolute;
    top: -7px;
    right: 0;
    width: 18px;
    height: 18px;
    background-color: var(--theme-red);
    border-radius: 50%;
    font-size: 10px;
    color: white;
    display: grid;
    align-items: center;
    justify-content: center;
    line-height: normal;
    cursor: pointer;
}

.search-form .input-group-text svg {
    position: relative;
    left: -6px;
}

input::placeholder {
    color: #333;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.main-menu {
    display: flex;
}

.items_menu ul {
    display: flex;
    column-gap: normal;
    margin: 0;
    justify-content: space-between;
}

.items_menu {
    max-width: 570px;
    width: 100%;
    margin-left: 70px;
}

.items_menu ul li a {
    color: #333;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    padding-top: 15px;
    display: block;
    padding-bottom: 18px;
    border-top: 1px solid transparent;
    transition: all 0.3s;
}

.item_browse {
    width: 218px;
    margin-left: 14px;
    display: grid;
    align-items: center;
}

.browse-categories {
    display: flex;
    column-gap: 14px;
    position: relative;
}

.browse-categories::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: #ebebeb;
    right: 0;
    top: 10px;
}

.browse-categories span {
    color: #333;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.items_menu ul li a.active,
.items_menu ul li a:hover {
    color: var(--theme-red);
    border-top-color: var(--theme-red);
}

.footer p,
.footer p a {
    color: #777;
    font-family: Poppins;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 300;
    line-height: calc(var(--fs-16) + 7px);
}

.bottom-footer {
    padding-top: 19px;
    padding-bottom: 19px;
    border-top: 1px solid var(--silver-regular);
    text-align: center;
}

.main-footer p {
    color: #000;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 318px;
    padding-bottom: 27px;
}

.footer-menu {
    display: flex;
    max-width: 524px;
    padding-left: 30px;
    column-gap: 128px;
}

.footer-menu a {
    color: #777;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) + 11px);
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: #9a0000;
}

.heading-18 {
    color: #333;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.follow-icons {
    display: flex;
    column-gap: 12px;
}

.footer p {
    margin-bottom: 0;
}

.footer-menu svg {
    margin-right: 18px;
}

.footer-menu ul {
    margin-bottom: 0;
}

.footer-menu ul li {
    margin-bottom: 17.5px;
}

.footer-menu ul li:last-child {
    margin-bottom: 20.5px;
}

.footer-menu ul.quick_link li {
    margin-bottom: 0;
}

.heading-40 {
    font-size: var(--fs-40);
}

.heading-50 {
    font-size: var(--fs-50);
}

.about-section {
    height: 400px;
    display: grid;
    align-items: center;
    justify-content: center;
}

.about-section .heading-50 {
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-50);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-50) + 10px);
    letter-spacing: -1.125px;
}

.section {
    padding: 86px 0px;
}

.section p {
    color: #474e57;
    font-family: Poppins;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-16) + 14px);
}

.section-about-us .heading-40 {
    color: #474e57;
    margin-bottom: 20px;
}

.heading-20 {
    font-size: var(--fs-20);
}

.section-about-us .heading-20 {
    color: #474e57;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 18px;
}

.mx-w739 {
    max-width: 739px;
}

img {
    max-width: 100%;
    height: auto;
}

.top_img {
    margin-top: 69px;
}

.mx-w973 {
    max-width: 973px;
}

.section-three {
    background-color: #9a0000;
}

.section-about-us {
    padding-bottom: 60px;
}

.footer {
    padding-top: 45px;
}

.section.section-three ul {
    margin-bottom: 0;
    display: flex;
    column-gap: 131px;
    justify-content: center;
}

.section.section-three ul li {
    color: #fff;
    font-family: Poppins;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-20) + 4px);
    letter-spacing: -0.2px;
    text-transform: capitalize;
}

.flex-icons {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.section.section-three {
    padding: 68px 0px;
}

.section-search {
    background-repeat: no-repeat;
    background-size: cover;
    height: 287px;
}

.heading-21 {
    font-size: var(--fs-21);
}

.section-search .form {
    max-width: 606px;
    display: block;
    margin: 0 auto;
}

.section-search .heading-21 {
    color: #fff;
    font-family: Poppins;
    font-size: var(--fs-21);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-21) + 5px);
    letter-spacing: -0.735px;
    text-align: center;
    margin-bottom: 28px;
}

.section-search .form input::placeholder {
    color: #474e57;
}

.form-search,
.form-search .input-group {
    height: 55px;
    overflow: hidden;
}

.form-search .btn {
    display: flex;
    width: 151px;
    height: 55px;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #9a0000;
    border-color: #9a0000;
    color: #fff;
    text-align: right;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-18) + 4px);
    column-gap: 14px;
    border-radius: 0;
    transition: 0.3s ease-in;
}

.form-search .btn:hover {
    background: #525c64;
    border-color: #525c64;
}

.form.form-search input {
    padding: 15px 18px;
}

.list-style-dotted {
    margin-left: 30px;
    margin-bottom: 20px;
}

ul.list-style-dotted li {
    list-style-type: disc;
}

ul.list-style-dotted li {
    color: #474e57;
    font-family: Poppins;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-16) + var(--fs-16));
}

ul li::marker {
    color: var(--dark-silver);
}

.footer-menu ul li a svg path {
    transition: all 0.3s;
}

.footer-menu ul.footer-tel li a:hover svg path {
    fill: #9a0000;
}

.box-items {
    background-color: #d9d9d9;
    padding-left: 53px;
    padding-right: 53px;
    padding-top: 21px;
    padding-bottom: 5px;
}

.box-items .heading-40 {
    color: #474e57;
    font-family: Poppins;
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-40) + 4px);
    margin-bottom: 20px;
}

.box-items ul li {
    color: #474e57;
    font-family: Poppins;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-16) + 16px);
}

.gx-100 {
    --bs-gutter-x: 100px;
}

.box-items-red {
    background-color: #9a0000;
}

.box-items-red ul li,
.box-items-red .heading-40 {
    color: #f6f6f6;
}

.box-items-red ul li::marker {
    color: #fff;
}

.nav-list ul li.current-menu-item a {
    font-weight: 500;
}

.contact-form .heading-40 {
    color: var(--dark-silver);
    text-align: center;
    font-size: var(--fs-40);
    font-weight: 500;
    line-height: calc(var(--fs-40) + 4px);
}

.span-bottom .border_bottom {
    display: block;
    border: 1px solid #474e57;
    max-width: 446px;
    height: 2px;
    margin: 0 auto;
    margin-top: 12px;
    margin-bottom: 25px;
}

.mx-w-1029 {
    display: block;
    max-width: 1029px;
    margin: 0 auto;
}

.ancher_tel {
    display: block;
    color: #777;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.ancher_tel:hover {
    color: var(--theme-red);
}

.contact-form p {
    color: #777;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-16) + 9px);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 30px;
}

p.light-font,
.light-font {
    color: #777;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 300;
    line-height: calc(var(--fs-20) + 8px);
}

p.light-font {
    padding-bottom: 10px;
}

.form_groww .heading-40 {
    color: var(--dark-silver);
    text-align: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    margin-bottom: 30px;
}

.form_groww {
    max-width: 992px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}

.form_groww input {
    border: 1px solid #b8b8b8;
    background-color: #fafafa;
    height: 42.841px;
}

.form_groww input:focus {
    border: 1px solid #b8b8b8;
}

.form_groww .form-group {
    margin-bottom: 44.5px;
}

.form_groww label {
    margin-bottom: 11.22px;
}

.form_groww textarea {
    border: 1px solid #b8b8b8;
    background-color: #fafafa;
    border-radius: 0;
}

.form_groww .btn-danger,
.form_groww .btn-danger:focus {
    display: flex;
    width: 200px;
    height: 54px;
    padding: 4px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background-color: #9a0000;
    border-color: #9a0000;
    border-radius: 2px;
    color: #ffffff;
    transition: all 0.3s;

    font-size: var(--fs-18);
    font-weight: 500;
    line-height: calc(var(--fs-18) + 20px);
}

.form_groww .btn-danger:hover {
    background-color: #525c64;
    border-color: #525c64;
    color: #ffffff;
}

.flex-form-btn {
    margin-top: 32.4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_groww input:focus,
.form_groww textarea:focus {
    box-shadow: 0 0 0 0.25rem #9a000024;
    border-color: #9a000024;
}

.container.main-footer {
    max-width: 1199px;
}

.empty-banner {
    padding-top: 100px;
    padding-bottom: 200px;
    background-color: #f6f6f6;
    margin-bottom: 90px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.empty-banner .heading-40 {
    color: #474e57;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--fs-40) + 13px);
    margin-bottom: 60px;
}

.items_flex {
    border: 1px solid #777;
    padding: 28px 21.59px;
    position: relative;
}

.flex-item-two {
    display: flex;
    column-gap: 34px;
}

.flex-item-two .items_flex:first-child {
    width: 939.328px;
    height: 255px;
    border: 1px solid #777;
    display: grid;
    align-items: end;
}

.flex-item-two .items_flex:last-child {
    width: 425px;
    height: 255px;
    border: 1px solid #777;
}

.item_parent {
    display: flex;
    justify-content: space-between;
}

.item_bg {
    display: block;
    width: 175px;
    height: 175px;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
    background-color: white;
    background-position: center center;
}

.item_parent .heading-25 {
    color: #9a0000;
    font-family: Poppins;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-25) + 7px);
    margin-bottom: 12px;
}

.item_parent p {
    color: #474e57;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) + 4px);
}

.parent_flex {
    display: flex;
    column-gap: 15.41px;
}

.parent_flex2 {
    max-width: 271px;
}

.parent_flexTwo {
    text-align: right;
}

.parent_flexTwo p {
    color: #777;
    text-align: right;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) + 2px);
}

.cart_remove {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--theme-red);
    text-align: right;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) + 2px);
    text-decoration-line: underline;
}

.parent_flexTwo p {
    padding-bottom: 24px;
}

.items_flex .heading-20 {
    color: var(--dark-silver);
    font-family: Poppins;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 5px;
}

.btn.btn-theme {
    border-radius: 0;
    height: 44px;
    background-color: var(--theme-red);
    width: 100%;
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-20) + 10px);
    transition: all 0.3s;
}

.btn.btn-theme:hover {
    background-color: #001d49;
}

.items_flex table.table tbody {
    border-bottom: 1px solid silver;
}

.items_flex table.table tbody td {
    background-color: transparent;
    border: none;
    color: #777;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 4px 0px;
}

.items_flex table.table tfoot th {
    background-color: transparent;
    border: none;
    color: #777;
    font-family: Poppins;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.items_flex table.table tbody tr:last-child td {
    padding-bottom: 12px;
}

.items_flex table.table tfoot tr th {
    color: #474e57;
    font-family: Poppins;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-22) - 2px);
    padding-top: 17px;
}

.flex-item-two .items_flex:last-child {
    padding-top: 14px;
}

.items_flex table.table tr td:last-child,
.items_flex table.table tr th:last-child {
    text-align: right;
}

.footer-logo a p {
    transition: 0.3s ease-in;
}

.footer-logo a p:hover {
    color: #9a0000;
}

/* MILAN CSS END */

#sign-in {
    display: none;
}

#forgot-email {
    display: none;
}

.footer-logo {
    max-width: 368px;
    width: 100%;
}

.grid-addno {
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.grid-addno input {
    border: none;
    text-align: center;
    max-width: fit-content;
    margin: 0 auto;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.value-button {
    cursor: pointer;
    width: 100%;
}

.grid-addno input::-webkit-input-placeholder {
    text-align: center;
}

/* Chrome, Safari, Edge, Opera */
.grid-addno input::-webkit-outer-spin-button,
.grid-addno input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


span.overlay-cart {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1111;
    cursor: pointer;
    background: rgb(0 0 0 / 60%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
}