@layer library, reset, base, demo;
@import "https://unpkg.com/open-props@2.0.0-beta.5" layer(library);
/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap"); */
/* @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"); */
@layer reset {
  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }

  :where(:not(dialog)) {
    margin: 0;
  }
}

@layer base {
  .html22 {
    --nav-block-size: 74px;
    --brand-gradient: linear-gradient(227deg, #1400c7 0%, #00bbff 100%);

    @media (prefers-reduced-motion: no-preference) {
      scroll-behavior: smooth;
    }
  }

  .body22 {
    /* font-family: "Lato", sans-serif; */
    min-block-size: 100dvb;
  }
}

@layer demo {
  .navbar {
    min-block-size: var(--nav-block-size);
    display: grid;
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    background-color: white;
    z-index: var(--layer-3);
    place-items: center end;
    padding-block: var(--size-3);
    padding-inline: var(--size-5);

    @media (min-width: 600px) {
      padding-inline: 6dvi;
    }
  }

  .nav-cta-btn {
    font-size: var(--font-size-1);
    font-weight: var(--font-weight-7);
    inline-size: max-content;
    white-space: nowrap;
    text-decoration: none;
    padding-block: var(--size-3);
    padding-inline: var(--size-7);
    border: var(--border-size-2) solid transparent;
    color: black;
    position: relative;
    isolation: isolate;
    background:
      linear-gradient(white, white) padding-box,
      var(--brand-gradient) border-box;
    border-radius: var(--radius-6);
    overflow: hidden;

    &::before {
      content: "";
      display: block;
      position: absolute;
      inset: 0;

      background: var(--brand-gradient);
      mix-blend-mode: screen;
    }

    &:hover {
      color: white;

      &::before {
        background:
          var(--brand-gradient) padding-box,
          var(--brand-gradient) border-box;
        background-repeat: no-repeat;
        background-size: contain;
        mix-blend-mode: normal;
        z-index: -1;
      }
    }
  }

  .section-a22 {
    --section-block-size: max(400px, 100dvb);

    display: grid;
    background-color: #ffffff;
    min-block-size: var(--section-block-size);
    position: relative;
    padding: 0px;
    display: grid;

    > * {
      grid-area: 2/1;
    }
  }

  .mainsectiontim {
    @media (min-width: 1370px) {
      margin: 0 5rem;
    }

    @media (min-width: 2400px) {
      margin: 0 6rem;
    }
  }

  .section-wrapper-a22 {
    position: relative;
    display: grid;

    @media (min-width: 700px) {
      grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 700px) {
      /* padding-block-start: calc(var(--nav-block-size) + var(--size-7)); */
      padding-block-end: var(--size-7);
      /* grid-template-columns: 1fr 1fr; */
    }
  }

  /* aboutus */
  .section-wrapper-a88 {
    position: relative;
    display: grid;
    @media (min-width: 700px) {
      grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 700px) {
      padding-block-end: var(--size-7);
    }
  }
  /* about end */

  .video-a22 {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1;
  }

  .content-wrapper-a22 {
    display: grid;
    @media (max-width: 700px) {
      gap: var(--size-7);
    }
  }

  .meta-a22 {
    display: grid;
    margin-bottom: 0px;
    gap: var(--size-2);
    width: 100%;
  }
  /* about add */
  .meta-a88 {
    display: grid;
    margin-bottom: 140px;
    gap: var(--size-2);
    width: 100%;

    @media (max-width: 450px) {
      margin-bottom: 0px;
    }
    @media (min-width: 700px) {
      margin-bottom: 100px;
    }

    @media (max-width: 800px) {
      margin-bottom: 0px;
    }
    @media (min-width: 1500px) {
      margin-bottom: 200px;
    }
    @media (min-width: 1900px) {
      margin-bottom: 300px;
    }
  }

  .mobile-visual-a22 {
    inline-size: 100%;
    aspect-ratio: var(--ratio-square);

    @media (min-width: 700px) {
      display: none;
    }
  }
  /* about end */

  .content-a22 {
    display: grid;
    width: 100%;
    inline-size: 100%;
    /* place-items: center; */
    padding-block: var(--size-7);
    padding-inline: var(--size-5);

    @media (min-width: 700px) {
      padding: var(--size-10);
      min-block-size: 30cqb;
      /* place-items: center end; */
    }
    @media (min-width: 1300px) {
      place-items: center end;
    }
    @media (min-width: 2300px) {
      min-block-size: 50cqb;
    }

    @media (max-width: 800px) {
      gap: var(--size-5);
      /* width:130%; */
    }
    @media (max-width: 450px) {
      gap: var(--size-5);
    }
  }

  .mobile-visual-a22 {
    inline-size: 100%;
    aspect-ratio: var(--ratio-square);

    @media (min-width: 700px) {
      display: none;
    }
  }

  .headline-a22 {
    /* text-wrap: pretty;  */

    @media (max-width: 700px) {
      font-size: var(--font-size-6);
    }
  }

  .desc-a22 {
    font-size: var(--font-size-4);
    line-height: 1.5;
    max-inline-size: 40ch;
    /* text-wrap: pretty; */

    @media (max-width: 700px) {
      font-size: var(--font-size-3);
    }
  }

  .visual-a22 {
    display: grid;
    position: sticky;
    block-size: var(--section-block-size);
    inset-block-start: 0;
    container-type: size;

    @media (width< 700px) {
      display: none;
    }
  }

  .video-visual-a22 {
    inline-size: 100%;
    block-size: var(--section-block-size);
    /* display: block; */
    position: sticky;
    inset-block-start: 0;
    isolation: isolate;
    filter: hue-rotate(210deg);
  }

  .card-wrapper-a22 {
    container-type: size;
    display: grid;
    place-items: center;
    margin: 5rem 0;
    overflow: clip;

    > * {
      grid-area: 1/1;
    }
  }

  .card-wrapper-a88 {
    place-items: start;
  }
  /* about add */
  /* .card-wrapper-a88 {
    margin: 0rem 0;
  } */

  /* about end */

  .card-a22 {
    aspect-ratio: var(--ratio-square);
    inline-size: 60cqi;
    border-radius: var(--radius-3);
    scale: 0.4;
  }

  .card-a22-a11 {
    /* border:solid 1px red; */

    inline-size: 70cqi;
  }
  .card-a22-a22 {
    /* border:solid 1px red; */
    margin-top: 18px;
    margin-left: 0px;
    width: 80%;
    height: 85%;
  }

  .card-img-a22 {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
  }

  .card-1-a22 {
    scale: 1;
  }

  .card-2-a22 {
    translate: -38cqi 3cqb;
    opacity: 0;
  }

  .card-3-a22 {
    translate: -30cqi 40cqb;
    opacity: 0;
  }

  .card-4-a22 {
    translate: -4cqi 60cqb;
    opacity: 0;
  }
  .card-5-a22 {
    translate: 23cqi 40cqb;
    opacity: 0;
  }

  .card-6-a22 {
    translate: 38cqi 5cqb;
    opacity: 0;
  }

  .hed-font {
    font-size: 29px;
  }

  /* home page */
  .card-1-a23 {
    scale: 1;
  }

  .card-2-a23 {
    translate: 0cqi 5cqb;
    opacity: 0;
  }

  .card-3-a23 {
    translate: 0cqi 5cqb;
    opacity: 0;
  }

  .card-4-a23 {
    translate: 0cqi 5cqb;
    opacity: 0;
  }

  .card-5-a23 {
    translate: 0cqi 5cqb;
    opacity: 0;
  }
  .card-6-a23 {
    translate: 0cqi 5cqb;
    opacity: 0;
  }
  /*  end */

  .content-1-a22 {
    --_text-gradient: linear-gradient(227deg, #1400c7 0%, #00bbff 100%);
  }

  .content-2-a22 {
    --_text-gradient: linear-gradient(227deg, #28dc28 0%, #00bbff 100%);
  }

  .content-3-a22 {
    --_text-gradient: linear-gradient(227deg, #1400c7 0%, #b800b1 100%);
  }

  .content-4-a22 {
    --_text-gradient: linear-gradient(227deg, #b800b1 0%, #f50000 100%);
  }
  .content-5-a22 {
    --_text-gradient: linear-gradient(227deg, #1400c7 0%, #00bbff 100%);
  }
  .content-6-a22 {
    --_text-gradient: linear-gradient(227deg, #28dc28 0%, #00bbff 100%);
  }

  .jou-bg-img {
    background-image: url("/assets/img/Aboutus/jou/line (1).webp");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .text-highlight-a22 {
    background: var(--_text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}

@supports (animation-timeline: scroll()) {
  body {
    timeline-scope:
      --content-1-a22, --content-2-a22, --content-3-a22, --content-4-a22,
      --content-5-a22, --content-6-a22, --content-1-a23, --content-2-a23,
      --content-3-a23, --content-4-a23;
  }

  .section-a22 {
    view-timeline-name: --section-a22;
  }

  .content-1-a22 {
    view-timeline-name: --content-1-a22;
  }

  .content-2-a22 {
    view-timeline-name: --content-2-a22;
  }

  .content-3-a22 {
    view-timeline-name: --content-3-a22;
  }

  .content-4-a22 {
    view-timeline-name: --content-4-a22;
  }

  .content-5-a22 {
    view-timeline-name: --content-5-a22;
  }

  .content-6-a22 {
    view-timeline-name: --content-6-a22;
  }

  /* .content-6-a22 {
    view-timeline-name: --content-6-a22;
  } */

  /* home page css start */

  .content-1-a23 {
    view-timeline-name: --content-1-a22;
  }

  .content-2-a23 {
    view-timeline-name: --content-2-a22;
  }

  .content-3-a23 {
    view-timeline-name: --content-3-a22;
  }
  /* end */

  .card-a22 {
    animation-timing-function: linear;
    animation-fill-mode: forwards;
  }

  /* .card-1-a22 {
    animation-timeline: --content-1-a22;
    animation-name: slide-up-first-card;
  }

  .card-2-a22 {
    animation-timeline: --content-2-a22;
    animation-name: slide-up-card;
  }

  .card-3-a22 {
    animation-timeline: --content-3-a22;
    animation-name: slide-up-card;
  }

  .card-4-a22 {
    animation-timeline: --content-4-a22;
    animation-name: slide-up-card;
  }

  .card-5-a22 {
    animation-timeline: --content-5-a22;
    animation-name: slide-up-card;
  } */

  /* .card-6-a22 {
    animation-timeline: --content-6-a22;
    animation-name: slide-up-card;
  } */

  /* home apge cs start */
  .card-1-a23 {
    animation-timeline: --content-1-a22;
    animation-name: slide-up-first-card;
  }

  .card-2-a23 {
    animation-timeline: --content-2-a22;
    animation-name: slide-up-card;
  }

  .card-3-a23 {
    animation-timeline: --content-3-a22;
    animation-name: slide-up-card;
  }

  .card-4-a23 {
    animation-timeline: --content-4-a22;
    animation-name: slide-up-card;
  }

  .card-5-a23 {
    animation-timeline: --content-5-a22;
    animation-name: slide-up-card;
  }

  .card-6-a23 {
    animation-timeline: --content-6-a22;
    animation-name: slide-up-card;
  }
  /* end */

  /* aboutus */
  @keyframes slide-up-first-card {
    0% {
      translate: 0cqi;
      scale: 1;
      opacity: 0.5;
    }
    10% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }
    20% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }

    30% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }
    40% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }

    50% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }
    60% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }

    70% {
      translate: 0cqi;
      opacity: 0;
    }

    90% {
      translate: 0 0cqi;
      scale: 1;
      opacity: 0;
    }

    100% {
      translate: 0 0cqi;
      opacity: 0;
    }
  }

  @keyframes slide-up-card {
    10% {
      translate: 0cqi;
      scale: 0;
      opacity: 0;
    }
    20% {
      translate: 0cqi;
      scale: 1;
      opacity: 0;
    }

    30% {
      translate: 0cqi;
      scale: 1;
      opacity: 0;
    }
    40% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }

    50% {
      translate: 0cqi;
      scale: 1;
      opacity: 1;
    }

    70% {
      translate: 0cqi;
      opacity: 0;
    }

    90% {
      translate: 0 0cqi;
      scale: 1;
      opacity: 0;
    }
  }
}

/* home page */
@keyframes home-page-first-animation {
  0% {
    translate: 0cqi;
    scale: 1;
    opacity: 0.5;
  }
  10% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }
  20% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }

  30% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }
  40% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }

  50% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }
  60% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }

  70% {
    translate: 0cqi;
    opacity: 0;
  }

  90% {
    translate: 0 0cqi;
    scale: 1;
    opacity: 0;
  }

  100% {
    translate: 0 0cqi;
    opacity: 0;
  }
}

@keyframes home-page-animation {
  10% {
    translate: 0cqi;
    scale: 1;
    opacity: 0;
  }
  20% {
    translate: 0cqi;
    scale: 1;
    opacity: 0;
  }

  30% {
    translate: 0cqi;
    scale: 1;
    opacity: 0;
  }
  40% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }

  50% {
    translate: 0cqi;
    scale: 1;
    opacity: 1;
  }

  70% {
    translate: 0cqi;
    opacity: 0;
  }

  90% {
    translate: 0 0cqi;
    scale: 1;
    opacity: 0;
  }
}

/* dvkdvkdmvkldmv */

.wrapper-a55,
.wrapper-a55 .img-area-a55,
.social-icons-a55 a,
.buttons-a55 button {
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
}

.wrapper-a55 {
  position: relative;

  padding: 30px;
  border-radius: 10px;
  width: 100%;
}

.wrapper-a55 .img-area-a55 {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-area-a55 .inner-area-a55 {
  height: calc(100% - 25px);
  width: calc(100% - 25px);
  border-radius: 50%;
}
.inner-area-a55 img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.wrapper-a55 .name-a55 {
  font-size: 23px;
  font-weight: 500;
  color: white;
  margin: 10px 0 5px 0;
}
.wrapper-a55 .about-a55 {
  color: #d0d1d7;
  font-weight: 400;
  font-size: 16px;
}
.wrapper-a55 .social-icons-a55 {
  margin: 15px 0 25px 0;
}
.social-icons-a55 a {
  position: relative;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  display: inline-flex;
  text-decoration: none;
  border-radius: 50%;
}
.social-icons-a55 a:hover::before,
.wrapper-a55 .icon:hover::before,
.buttons-a55 button:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #ecf0f3;
  box-shadow:
    inset -3px -3px 7px #ffffff,
    inset 3px 3px 5px #ceced1;
}
.buttons-a55 button:hover:before {
  z-index: -1;
  border-radius: 5px;
}

.buttons-a55 button:hover {
  color: black;
}
.social-icons-a55 a i {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 35px;
}
.social-icons-a55 a:nth-last-child(1) i {
  color: #13d151;
}
.social-icons-a55 a:nth-last-child(2) i {
  color: #e6ba12;
}
.social-icons-a55 a:nth-last-child(3) i {
  color: #1da9e9;
}
.social-icons-a55 a:nth-last-child(4) i {
  color: #f23400;
}

.wrapper-a55 .buttons-a55 {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.buttons-a55 button {
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 0;
  color: #d0d1d6;
  font-size: 17px;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  z-index: 4;
}
.buttons-a55 button:first-child {
  margin-right: 10px;
}
.buttons-a55 button:last-child {
  margin-left: 10px;
}

/* 

<div className="body-a55 border bg-dark">
   <div class="wrapper-a55">

     <div class="name-a55">Monalisha Roy</div> 
     <p>dddv</p>    

   </div>
   </div> */

.gradie1 {
  background: linear-gradient(227deg, #1400c7 0%, #00bbff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gradie2 {
  background: linear-gradient(227deg, #28dc28 0%, #00bbff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gradie3 {
  background: linear-gradient(227deg, #1400c7 0%, #b800b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.gradie4 {
  background: linear-gradient(227deg, #b800b1 0%, #f50000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.rotatetimicon {
  transform: rotate(90deg);
}

.bguniapi {
  /* background-color: #0c0125; */
  background-color: #050b1b;
}

.accbgclr {
  background-color: transparent;
}

.swiper-pagination {
  margin-top: 60px !important;
  position: sticky !important;
  /* position: relative; */
}

.txt-light-gry {
  color: #918b9f;
}

/* font-size contact us email */

.app-logodd a img {
  width: 190px;
  margin-bottom: 0px;
  position: relative;
}

.giftcard-ul {
  width: 45.9%;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.giftcard-list:hover {
  cursor: pointer;
  background-color: #f5f5f5;
}
.giftcard-img {
  height: 100%;
  width: 100%;
}

@media (max-width: 900px) {
  .giftcard-freq-and-gold {
    display: none;
  }
}
@media (max-width: 800px) {
  .giftcard-ul {
    width: 87.6%;
  }
}

@media (max-width: 500px) {
  .giftcard-ul {
    width: 92%;
  }
}

@media (max-width: 380px) {
  .giftcard-ul {
    width: 91%;
  }
}

@media (max-width: 330px) {
  .giftcard-ul {
    width: 90%;
  }
}

.gift-img {
  height: 70vh;
}
.gif-arow-btn {
  color: black;
}
.gif-arow-btn:hover {
  color: rgb(95, 92, 92);
}

.custom-input-gift-card {
  height: 30px;
}

.Gift-D-Main-img {
  height: 45vh;
  width: 100%;
}

.Gift-main-banner {
  height: 60vh;
}

.Gift-Details-section1 {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  z-index: 12;
  margin-top: -80px;
}

.Giftrow {
  gap: 20px;
}
.GiftCardDetalisTandC {
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  border: solid 1px #a0a0a0;
  border-radius: 5px;
  transition:
    background-color 0.5s ease,
    color 0.5s ease;
}
.done-clr {
  color: green;
  transition: color 0.5s ease;
}
.done-clr:hover {
  color: white;
}

.GiftCardDetalisTandC:hover {
  cursor: pointer;
  color: white;
  background-color: #895637;
}
.brd-rad1 {
  border-radius: 20px;
  border: "solis 3px red";
}

.Gift_Filter_Category .tab-link {
  background-color: white;
  cursor: pointer;
  padding-top: 3px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15); */
  padding-right: 0px;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;

  text-transform: capitalize;
}

/* .Gift_Filter_Category .tab-link:hover {
  background-color: #f7f7f7;

} */
.Gift_Filter_Category .tab-link.active {
  color: white;
  background-color: #d18e32;
}

.gift-pagination-arrow {
  background-color: #eab5a5;
  color: grey;
}
.gift-pagination-arrow:disabled {
  color: #c0c0c0;
  background-color: transparent;
  border: solid 1px #c0c0c0;
}

.Gift-form-link {
  text-decoration: underline;
  cursor: pointer;
  color: black;
}
.Gift-form-link:hover {
  color: blue;
}

.Gift-card-price-box {
  border: solid 2px rgb(200, 200, 200);
  border-radius: 15px;
}

.Gift-card-custom-price-input {
  height: 40px;
  width: 90%;
  border-radius: 5px;
}
.Gift-card-custom-price-input::placeholder {
  color: rgb(169, 168, 168);
}

.cat-proj-card:hover {
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.giftdetail-discount {
  background-color: rgb(246, 246, 246);
  border-radius: 20px;
}

.cele-ani-giftcards:hover {
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.giftdetail-discount-bg2 {
  height: 42px;
  background-color: rgb(246, 246, 246);
  border-radius: 20px;
  width: 50%;
}
/* .scrl-btn .gif-arow-btn:{
  color: red;
  
} */

/* .GiftPage-acti.active {
  color: #895637;
} */

button .gitft-dot i {
  color: #eab5a5; /* Default blue for all dots */
}
button.active .gitft-dot i {
  color: #895637; /* Red color for active dot */
}

.Giftcard-cate-icon {
  /* margin-left: 20px; */
  padding: 2px;
  height: 70px;
  width: 70px;
  border: 1px;
}

.GiftViewDetails-section {
  background-color: white;
}
.GiftViewDetails-section:hover {
  background-color: white !important;
}

.GiftCard-Categ:hover {
  border: solid 1px black;
}
.Giftcard-disco {
  border: none;
  width: fit-content;
  padding: 3px;
  border-radius: 4px;
}

.secbgimg {
  border: solid 1px green;
}

/* CSS */
.button-33 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow:
    rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.15) 0 1px 2px,
    rgba(44, 187, 99, 0.15) 0 2px 4px,
    rgba(44, 187, 99, 0.15) 0 4px 8px,
    rgba(44, 187, 99, 0.15) 0 8px 16px,
    rgba(44, 187, 99, 0.15) 0 16px 32px;
  color: green;
  cursor: pointer;
  display: inline-block;
  /* font-family:
    CerebriSans-Regular,
    -apple-system,
    system-ui,
    Roboto,
    sans-serif; */
  padding: 7px 20px;
  width: 70%;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow:
    rgba(44, 187, 99, 0.35) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.25) 0 1px 2px,
    rgba(44, 187, 99, 0.25) 0 2px 4px,
    rgba(44, 187, 99, 0.25) 0 4px 8px,
    rgba(44, 187, 99, 0.25) 0 8px 16px,
    rgba(44, 187, 99, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

/* .gif-arow-btn1 {
  color: rgb(174, 173, 173);
} */

/* Default arrow icon (active state) */
.scroll-button11 i {
  color: black;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Inactive state: grayed out */
.scroll-button11.disabled i {
  color: rgb(184, 180, 180) !important;
  cursor: not-allowed;
}

/* .login-modal-ag .modal-content-ag {
  width: 95%;
  height: fit-content;
  padding: 0px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

.Paymentsuc-content-ag {
  position: relative;
  overflow: hidden;
}

.Paymentsuc-content-ag::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  animation: subtleShine 3s linear infinite;
  pointer-events: none; /* ensures button clicks still work */
}

@keyframes subtleShine {
  0% {
    transform: translate(-100%, -100%) rotate(25deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(25deg);
  }
}

.Paymentsuc-content-ag {
  position: fixed;
  top: 10%;
  /* left: 35%; */
  height: 70vh;
  width: 400px;
  /* width: 35%; */
  background-color: white;
  display: flex;
  flex-direction: column;
  z-index: 10002;
  transition: transform 0.4s ease-in-out;
  border-radius: 5px;
}

.modal-content-ag {
  position: fixed;
  top: 5%;
  bottom: 2%;
  right: 0;
  max-height: 60vh;
  width: 90%;
  background-color: #f5f7fd;
  display: flex;
  flex-direction: column;
  z-index: 10002;
  transition: transform 0.4s ease-in-out;
  border-radius: 5px;
}

.modal-content-HToR {
  position: fixed;
  top: 20%;
  bottom: 20%;
  right: 18%;
  max-height: 36vh;
  width: 60%;
  background-color: #f5f7fd;
  display: flex;
  flex-direction: column;
  z-index: 10002;
  transition: transform 0.4s ease-in-out;
  border-radius: 5px;
}

.close-icon-ag {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
  color: red;
}

.close-icon-ag:hover {
  color: rgb(132, 132, 132);
}

.modal-overlay-ag {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.giftdetails_price_input {
  border: solid 1px rgb(188, 188, 188);
}

.cardssection-Paymentsuc {
  flex: 1;
  overflow-y: auto;
  background-color: #ebddd5;
  padding: 15px;
  padding-bottom: 20px;
  scrollbar-width: 10px;
  text-align: justify;
  -ms-overflow-style: none;
}
.cardssection-Paymentsuc::-webkit-scrollbar {
  display: none;
}

.cardssection-inside-tandc {
  flex: 1;
  overflow-y: auto;
  background-color: #ebddd5;
  padding: 15px;
  padding-bottom: 20px;
  scrollbar-width: 10px;
  text-align: justify;
  -ms-overflow-style: none;
}
.cardssection-inside-tandc::-webkit-scrollbar {
  display: none;
}

.right-rounded22 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.left-rounded22 {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.top-short-border22 {
  position: relative;
  display: inline-block;
  padding-top: 10px;
}

.top-short-border22::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 0.5px;
  background-color: rgb(188, 188, 188);
}

.headerwith-searchand-reward {
  padding-left: 48px;
  border-radius: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-rewardcoin {
  display: flex;
  justify-content: end;
}
.headerwith-serachreward-and-banner {
  padding: 20px 40px 0px 40px;
}

.header-sub-rewardcoin {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1600px) {
  .Paymentsuc-content-ag {
    height: 50vh;
  }
}

@media (max-width: 850px) {
  .headerwith-serachreward-and-banner {
    padding: 10px 20px 0px 20px;
  }

  .modal-content-HToR {
    position: fixed;
    top: 5%;
    bottom: 2%;
    right: 0;
    max-height: 50vh;
    width: 90%;
    background-color: #f5f7fd;
    display: flex;
    flex-direction: column;
    z-index: 10002;
    transition: transform 0.4s ease-in-out;
  }
}

@media (max-width: 500px) {
  .headerwith-searchand-reward {
    padding: 15px 4px 15px 4px;
    display: flex;
    border-radius: 0px;
    align-items: center;
  }

  .Paymentsuc-content-ag {
    /* left:10%; */
    width: 90%;
  }
  .header_banner_img {
    display: none;
  }
  .header-sub-rewardcoin {
    display: block;
  }

  .headerwith-serachreward-and-banner {
    padding: 0px 1px 0px 1px;
  }
  .header-rewardcoin {
    margin: 0;
    display: block;
    align-items: center;
  }
  .giftcard-trip-banner {
    height: 15vh;
    width: 100%;
  }
}

.button-483 {
  appearance: none;
  background-color: #ffffff;
  border-width: 0;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  /* font-family: Clarkson, Helvetica, sans-serif; */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1em;
  margin: 0;
  opacity: 1;
  outline: 0;
  padding: 5px 15px 5px 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition:
    opacity 300ms cubic-bezier(0.694, 0, 0.335, 1),
    background-color 100ms cubic-bezier(0.694, 0, 0.335, 1),
    color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
  border-radius: 5px;
}

.button-483:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: #895637;
  border-radius: 5px;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition:
    clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.button-483:hover {
  color: white;
}

.button-483:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-483:after {
  color: white;
  background-color: #895637;
}

.button-483 span {
  z-index: 1;
  position: relative;
}

.Gift-someone-canclebtn {
  color: white;

  font-size: 22px;
}
.Gift-someone-canclebtn:hover {
  color: #ffffffcc;
  font-size: 20px;
}

.container-eg-btn-2 {
  /* font-family: sans-serif; */
  flex-wrap: wrap;
  line-height: normal;
}
.container-eg-btn-2 .button {
  color: black;
  width: 140px;
  background: #f1e6e0;
  padding: 12px 20px;
  border: 1px solid #895637;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
}
.container-eg-btn-2 .button:hover {
  cursor: pointer;
  color: #f5e2d9;
}

.container-eg-btn-2 .button-7:before {
  position: absolute;
  transition: 0.6s;
  content: "";
  top: 50%;
  background: #895637;
  border-radius: 50%;
  width: 0;
  height: 0;
  left: 50%;
  z-index: -1;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.container-eg-btn-2 .button-7:hover:before {
  width: 11em;
  height: 11em;
}

.container-eg-btn-3 {
  /* font-family: sans-serif; */
  flex-wrap: wrap;
  line-height: normal;
}
.container-eg-btn-3 .button {
  color: black;
  font-weight: bold;
  background: #f1e6e0;
  padding: 10px 12px;
  border: 1px solid #895637;
  text-align: center;
  /* text-transform: uppercase; */
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
}
.container-eg-btn-3 .button:hover {
  cursor: pointer;
  color: #f5e2d9;
}

.container-eg-btn-3 .button-7:before {
  position: absolute;
  transition: 0.6s;
  content: "";
  top: 50%;
  background: #895637;
  border-radius: 50%;
  width: 0;
  height: 0;
  left: 50%;
  z-index: -1;
  transform-origin: center;
  transform: translate(-50%, -50%);
}

.container-eg-btn-3 .button-7:hover:before {
  width: 11em;
  height: 11em;
}

.container-eg-btn-5 {
  /* font-family: sans-serif; */
  flex-wrap: wrap;
  line-height: normal;
}
.container-eg-btn-5 .button {
  color: black;
  border-radius: 15px;
  width: 210px;
  font-weight: bold;
  background: #f1e6e0;
  padding: 10px 12px;
  border: 1px solid #895637;

  /* text-transform: uppercase; */
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
}
.container-eg-btn-5 .button:hover {
  cursor: pointer;
  color: #f5e2d9;
}

.container-eg-btn-5 .button-7:before {
  position: absolute;
  transition: 0.6s;
  content: "";
  top: 50%;
  background: #895637;
  border-radius: 50%;
  width: 0;
  height: 0;
  left: 50%;
  z-index: -1;
  transform-origin: center;
  transform: translate(-50%, -50%);
}

.container-eg-btn-5 .button-7:hover:before {
  width: 18em;
  height: 11em;
}

.paymentsuc-canclebtn {
  color: black;
  font-size: 22px;
}
.paymentsuc-canclebtn:hover {
  color: rgb(46, 45, 45) c;
  font-size: 20px;
}

.mycart-canclebtn {
  color: black;

  font-size: 22px;
}
.mycart-canclebtn:hover {
  color: rgb(46, 45, 45) c;
  font-size: 20px;
}

/* Toast */

/* Base toast styles */
.my-custom-toast {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background-color: #333;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  z-index: 1000004;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); subtle shadow */
  min-width: 250px; /* Minimum width to avoid wrapping */
  max-width: 90%; /* Max width as a percentage for smaller screens */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflowing content */
  text-overflow: ellipsis; /* Add ellipsis if the text overflows */
  word-wrap: break-word;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Success toast - Green */
.my-custom-toast.success {
  background-color: #0c831f;
  border-left: 5px solid #0c831f; /* subtle left border */
}

/* Error toast - Red */
.my-custom-toast.error {
  background-color: #dc3545;
  border-left: 5px solid #c82333;
}

/* Info toast - Blue */
.my-custom-toast-info {
  background-color: #17a2b8;
  border-left: 5px solid #138496;
}

/* Toast icon (optional) */
.custom-toast .my-toast-icon {
  margin-right: 15px;
  font-size: 20px; /* icon size */
}

/* Close button */
.my-custom-toast .my-close-btn {
  cursor: pointer;
  font-size: 18px;
  color: white;
  background: none;
  border: none;
  margin-left: 15px;
  transition: color 0.3s;
}

.my-custom-toast .my-close-btn:hover {
  color: #ccc;
}

/* Toast animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Media Queries for Responsiveness */

@media (max-width: 768px) {
  .my-custom-toast {
    min-width: 200px; /* Slightly smaller toast on smaller screens */
    font-size: 14px; /* Slightly smaller text on smaller screens */
    max-width: 80%; /* Limit width more on smaller screens */
  }
}

@media (max-width: 480px) {
  .my-custom-toast {
    min-width: 180px; /* Smaller minimum width */
    font-size: 12px; /* Adjust text size for very small screens */
    max-width: 90%; /* Allow more flexibility on very small screens */
    padding: 10px 15px; /* Reduce padding on small screens */
  }
}

.cart-reomve-btn {
  font-size: 15px;
  color: grey;
  cursor: pointer;
}

/* .giftcard-PaymentSuccess-dark-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.64);
  z-index: 10000;
} */

.giftcard-PaymentSuccess-dark-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75); /* darker background */
  backdrop-filter: blur(6px); /* adds blur effect */
  -webkit-backdrop-filter: blur(6px); /* for Safari support */
  z-index: 10000;
}

.giftcard-toggle-dark-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.568);
  z-index: 10000;
}

.giftcard-cart-leftslider {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  background-color: #f5f7fd;
  display: flex;
  flex-direction: column;
  z-index: 10002;
  transition: transform 0.4s ease-in-out;
}
.giftcard-cart-header {
  background-color: #ffffff;
  padding: 10px;
  flex-shrink: 0;
  height: 55px;
}

.giftcard-paymentsuc-header {
  /* background-color: l; */
  padding: 5px;
  flex-shrink: 0;
  height: 200px;
}
.cardssection-inside-cart {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}
.cardssection-inside-cart::-webkit-scrollbar {
  display: none;
}

.Giftcart-bottom-section {
  background-color: #63ab45;
  height: 70px;
  margin-bottom: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: white;
}

.Giftcart-proccedtopay-btn {
  height: 56px;
  width: 90%;
  border-radius: 8px;
  background-color: #0c831f;
  padding: 13px 15px;
  box-sizing: border-box;
  cursor: pointer;
}
.Giftcart-proccedtopay-btn:hover {
  background-color: #09731b;
}

/* code of detailspage */
.gifdetail-main-img {
  border-radius: 8px;
  position: relative;
  width: 450px;
  height: 450px;
  overflow: hidden;
  cursor: none;
  object-fit: fill;
}

.giftdetailsimg-hover-dimeffect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.Giftdetail-img-lens {
  position: absolute;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.giftcard-lens-pluscursor {
  position: absolute;
  z-index: 3;
  font-size: 26px;
  font-weight: bold;
  color: black;
  pointer-events: none;
  user-select: none;
}

.giftdetail-aeronpaypromise {
  width: 460px;
}

.giftdetail-right-sidedata {
  position: relative;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: start;
}

.giftdetail-zoomed-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: 3;
  pointer-events: none;
  transition: background-position 0.01s ease;
  margin-top: 10px;
}

.giftdetail-tandc {
  display: flex;
  justify-content: space-between;
  width: 460px;
  gap: 10px;
  padding-left: 17px;
}

.giftdetail-customprice-input {
  background-color: #f5f5f5;
  border: none;
  height: 35px;
  width: 200px;
  border-radius: 4px;
  margin-top: 5px;
}
.customprice-pay-and-save {
  min-width: 90px;
}

.dimeffectof-cart-and-receiverform {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.52);
  z-index: 10000;
}

.gifdetail-receiverform {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 350px;
  background-color: #f1e6e0;
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  z-index: 10002;
}

.gift-customsection {
  display: flex;
  justify-content: start;
  align-items: center;
}

.giftcard-cart-proceedtopay {
  font-size: 17px;
  color: #ecf5ed;
}

.gift-leading-cards {
  height: 16vh;
  width: 25vh;
  border: 2px solid #895637;
  border-radius: 15px;
}

.truncate2-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
  white-space: normal;
}

.read-more-btn {
  color: black;
  cursor: pointer;
  font-size: 15px;
  text-decoration: underline !important;
  display: inline-block;
}

.read-more-btn:hover {
  color: blue;
}

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

.Gift_history_cart_inMobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 10px;
  height: 60px;
  background-color: #9b601c;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 10px 15px;
  color: white;
  z-index: 1000;
  display: none; /* Default: hidden */
}

.GiftCard_header_Mobile_banner {
  /* width: 400px;
  height: 400px; */
  display: none; /* Default: hidden */
}

@media (min-width: 1400px) {
  .gift-leading-cards {
    height: 10vh;
    width: 18vh;
  }
  .giftcard-cart-proceedtopay {
    font-size: 15px;
    color: #ecf5ed;
  }
}

@media (max-width: 1000px) {
  .giftcard-cart-leftslider {
    width: 350px;
  }

  .Giftcardcheckout-paysection {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .payment-section-in-giftpay {
    margin-top: 10px;
  }

  .gift-leading-cards {
    height: 13vh;
    width: 19vh;
    border: 2px solid #895637;
    border-radius: 15px;
  }

  .gifdetail-main-img {
    width: 260px;
    height: 260px;
  }
  .giftdetailsimg-hover-dimeffect {
    display: none;
  }
  .Giftdetail-img-lens {
    display: none;
  }
  .giftcard-lens-pluscursor {
    display: none;
  }
  .giftdetail-zoomed-img {
    display: none;
  }

  .gifdetail-productdetail {
    width: 100%;
  }
  .container-eg-btn-2 .button {
    width: 80px;
  }

  .giftdetail-aeronpaypromise {
    width: 100%;
  }
  .giffdetail-leftsidedata {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .giftdetail-tandc {
    width: 260px;
  }
}

@media (max-width: 575.98px) {
  .Gift_history_cart_inMobile {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .GiftCard_header_Mobile_banner {
    display: block;
  }
}

@media (max-width: 480px) {
  .Gift_history_cart_inMobile {
    display: flex;
  }

  .Gift_historyand_cart_sec {
    display: none;
  }
  .gifdetail-main-img {
    width: 350px;
    height: 350px;
  }

  .giftcard-cart-proceedtopay {
    font-size: 15px;
  }
  .giftcard-cart-leftslider {
    height: 100%;
    width: 100%;
  }

  .giftdetail-tandc {
    gap: 0px;
    padding-left: 0px;
    width: 350px;
    margin-left: 0px;
  }
  .container-eg-btn-5 .button {
    width: 165px;
  }

  .giftdetail-customprice-input {
    width: 100%;
    border: solid 1px red;
  }
}

@media (max-width: 390px) {
  .gifdetail-main-img {
    width: 290px;
    height: 290px;
  }
  .giftcard-cart-leftslider {
    height: 100%;
    width: 100%;
  }

  .giftcard-cart-header {
    height: 40px;
  }

  .gift-customsection {
    display: block;
  }
  .giftdetail-customprice-input {
    width: 280px;
  }
  .container-eg-btn-2 .button {
    width: 150px;
  }
}

@media (max-width: 340px) {
  .giftdetail-tandc {
    width: 200px;
    justify-content: center;
  }
}

.skeleton-box33 {
  background: linear-gradient(90deg, #d3d3d3 25%, #bfbfbf 37%, #d3d3d3 63%);
  background-size: 400% 100%;
  animation: shimmer33 1.4s ease infinite;
}

@keyframes shimmer33 {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

/* Loader.css */
.loader-container33 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(56, 54, 54, 0.4);
  z-index: 9999;
}

.loader33 {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin33 1s linear infinite;
}

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

.categ-skeleton-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2 per row */
  gap: 20px;
}

.giftcard-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile default: 2 columns */
  gap: 30px;
}

@media (min-width: 768px) {
  .categ-skeleton-container {
    grid-template-columns: repeat(5, 1fr); /* Tablet: 5 per row */
  }
  .giftcard-skeleton-grid {
    grid-template-columns: repeat(3, 1fr); /* Tablet: 3 columns */
  }
}

@media (min-width: 1200px) {
  .categ-skeleton-container {
    grid-template-columns: repeat(7, 1fr); /* Desktop: 7 per row if needed */
  }
  .giftcard-skeleton-grid {
    grid-template-columns: repeat(6, 1fr); /* Tablet: 3 columns */
  }
}

.skeleton-item33 {
  display: flex;
  justify-content: center;
}
.giftcard-skeleton-item {
  display: flex;
  justify-content: center;
}

/* Gift Card History Sec */
.border-left-s {
  width: 80%;
  border-left: 2px solid transparent;
  transition: border-color 0.5s ease;
}

.border-left-s:hover {
  background-color: #f8f9fa;
}

.border-left-s-active {
  /* border-left-color: #9b601c; */
  border-left-color: #c79d7b;
  background-color: #f8f9fa;
  /* background-color: #f1e6e0; */
}

.custom-collapse {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.custom-collapse.open {
  max-height: 1000px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}

.Gift-CardHistory-datasection {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.GiftC-history-cards {
  display: flex;
  align-items: center;
  border-top: solid 1px gray;
  border-bottom: solid 1px gray;
  cursor: pointer;
  padding-top: 10px;
  display: flex;
  padding-bottom: 10px;
}

.GiftC-his-img-and-data-sec {
  display: flex;
  align-items: center;
  gap: 20px;
}

.Gift-hist-img {
  height: 70px;
  width: 57.75px;
  border-radius: 3px;
}

.GiftC-his-pading {
  padding-left: 3rem;
  text-align: center;
}

.GiftC-his-detail-sec {
  padding-top: 10px;
  padding-bottom: 10px;
}

.GiftC-his-pb {
  padding-bottom: 0.25rem;
}

.GiftC-order-sum {
  padding-left: 1.5rem;
}

.GiftC-his-success-sec {
  padding-bottom: 10px;
}
.GiftC-his-success-part {
  gap: 5px;
  display: flex;
  align-items: center;
}

.giftc-suc-logo {
  padding: 0.25rem;
}

.GiftC-viewGift-btn-sec {
  display: flex;
  align-items: center;
  justify-content: end;
}

.GiftC-viewGift-btn {
  padding-top: 0.25rem;
  padding-left: 0.5rem; /* 8px */
  padding-right: 0.5rem; /* 8px */
  padding-bottom: 0.25rem; /* 4px */
}

.fixed-sidebar11 {
  position: sticky;
  top: 5px;
  height: fit-content;
  z-index: 10;
}

.remove-btn-giftpayment:hover {
  color: red;
}

.Giftcards-in-payment {
  display: flex;
  height: 190px;
  gap: 15px;
  padding: 0.5rem;
}

.Giftcard-img-inside-GifPay {
  height: 80px;
  width: 80px;
  border-radius: 3px;
}
.payment-section-in-giftpay {
  height: 300px;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .border-left-s {
    width: 80%;
    border-left: 2px solid transparent;
    transition: border-color 0.5s ease;
  }
}

@media (max-width: 900px) {
  .border-left-s {
    width: 100%;
    border-left: 2px solid transparent;
    transition: border-color 0.5s ease;
  }
}

@media (max-width: 500px) {
  .GiftC-viewGift-btn-sec {
    justify-content: start;
  }
  .Gift-hist-img {
    height: 50px;
  }
  .martop {
    margin-top: 20px;
  }
  .Giftcards-in-payment {
    height: 200px;
  }
  .GiftC-his-img-and-data-sec {
    gap: 0px;
  }
  .GiftC-order-sum {
    padding-left: 0rem;
    padding-top: 20px;
  }
  .gif-his-det {
    padding-top: 20px;
  }

  .payment-section-in-giftpay {
    height: 430px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
  }
}
@media (min-width: 1400px) {
  .Giftcards-in-payment {
    height: 240px;
  }
}

@media (min-width: 1800px) {
  .Giftcards-in-payment {
    height: 210px;
  }
}

.imgggsec {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body33 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: grid;
  place-items: center;
}
.whyCA-cards {
  width: 190px;
  height: 100%;
  object-fit: cover;
  border: solid 1px gray;

  border-radius: 5%;
  /* -webkit-box-reflect: below 2px
    linear-gradient(transparent, transparent, #0004); */
  transform-origin: center;
  transform: perspective(800px) rotateY(25deg);
  transition: 0.5s;
}
.container44 {
  max-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.container44:hover .whyCA-cards {
  opacity: 0.3;
}
.container44 .whyCA-cards:hover {
  transform: perspective(800px) rotateY(0deg);
  opacity: 1;
}
