@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://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", serif;
    ::-webkit-scrollbar{
        width: 0px;
        height: 0px;
    }
}

html,
body {
    width: 100%;
    height: 100%;
}

:root {
    --pad: 5%;
    --pad2: 0px 5%;
    --pad3: 5% 0px;
    --mt: 20px;
    --mt-15:15px;
    --light: #fff;
    --dark: #000;
    --txt-clr: #000;
    --main-clr:#f57f20;
    --secoundry-clr:#f57f20;
    ;
    --bg-clr:#e5f3f3;
}

.pad-inline {
    padding: var(--pad2);
}

.header {
    padding: var(--pad2);
}

.header h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    text-wrap: nowrap;
}
.header p{
    font-size: 14px;
    color: var(--main-clr);
    font-weight: 500;
}
.header i{
    font-size: 20px;
}
.padding-bottom{
    padding-bottom: 80px;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-col{
    flex-direction: column;
}
.space-between {
    justify-content: space-between;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.items-start {
    align-items: flex-start;
}
.flex-wrap{
    flex-wrap: wrap;
}
.gap-2 {
    gap: 2px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.wrapper-overlay{
    transition: all .4s ease-in-out;
}
.wrapper-overlay.active{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 9999;
}

.padding-bottom{
    padding-bottom: 60px;
}


.cart-container{
    position: fixed;
    width: 180px;
    min-width: fit-content;
    left: 50%;
    transform: translateX(-50%) scale(.1);
    padding:8px 10px;
    padding-left: 20px;
    border-radius: 100vw;
    background: linear-gradient(90deg, var(--main-clr) 0%, var(--secoundry-clr) 100%);
    bottom: 0;
    opacity: 0;
    /* scale: .1; */
    z-index: -1000;
    transition: all .4s ease-in-out;
}
.cart-container.active{
    z-index: 1000;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    bottom: 60px;
}
.cart-container h3{
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.cart-container p{
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.right-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-clr);
    color: #000;
    font-size: 20px;
}


/* sweet alert designed*/

.custom-confirm-class{
    all: unset;
    width: 100%;
    min-width: 150px;
    padding: 10px;
    font-size: 15px;
    background: var(--main-clr);
    border-radius: 5px;
    border: none;
    outline: none;
    color: #fff;
    text-align: center;
}
.custom-icon{
    /* background: var(--main-clr); */
    color: var(--main-clr);
}

div:where(.swal2-icon).swal2-success .swal2-success-ring{
    border: 5px solid #f57f2086!important;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line]{
    background: var(--main-clr)!important;
}




.loader{
    width: 100%;
    height: 100%;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    background: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.spin {
    display: inline-flex;
    gap: 5px;
    animation: l3-0 1s infinite;
    transform-origin: 50% calc(100% + 2.5px);
  }
  .spin:before,
  .spin:after {
    content: "";
    width: 25px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 3px inset var(--main-clr);
  }
  .spin:after {
    transform-origin: -2.5px calc(100% + 2.5px);
    animation: l3-1 1s infinite;
  }
  @keyframes l3-1 {
    50%,
    100% {transform:rotate(180deg)}
  }
  @keyframes l3-0 {
    0%,
    50%  {transform:rotate(0deg)}
    100% {transform:rotate(90deg)}
  }

  .hideOffer{
    display: none;
  }