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

html{
  overflow-x: hidden !important;
}
body{
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden !important;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:"slnt" 0;
    font-size: 15px;
    color: var(--bg-primary);
}
:root{
    --primary:#602478;
    --bg-primary:#000000;
    --bg-primary-alt:#2A124E;
    --bg-primary-alt-dark:#351D59;
    --bg-primary-light:#F5F6FA;
    --bg-primary-light-alt:#E8DEF8;
    --bg-secondary:#dc3545;
    --bg-secondary-alt:#e81e25;
    --bg-secondary-light:#FBC8B2;
    --bg-gradient:linear-gradient(139deg, var(--bg-secondary-alt),var(--bg-secondary));
}

/*<------- header -------> */
.header1{
    color: rgb(255, 255, 255);
    background-color: rgb(33 52 136);
    padding: 10px 0;
    top: 0;
    opacity: 1;
    transition: 0.2s all;
}
.header1 a{
    color: white;
}
.header1.scrolled{
    opacity: 0;
    position: absolute;
    width: 100%;
    top: -50px;
}
header{
    backdrop-filter: blur(2px);
    /* color: white; */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s ease-in;
    background: #ffffff00;
}
#header a{
    transition: 0.3s ease-in;
    color: #ffffff;
    font-weight: 500;
}
header.scrolled{
    background: #ffffff;
    box-shadow: black 0px -1px 11px -9px;
}
header.scrolled a {
    color: #000000 !important;
}
header.scrolled .nav_toggle span{
    background: black;
}

.header {
    display: flex;
    width: 100%;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
}
.logo_img {
    transition: 0.5s all;
    filter: brightness(15);
    max-width: 140px;
}
.main_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s all;
}
.main_nav a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0);
    border-radius: 11px;
    transition: 0.3s all;
}
.main_nav a:hover {
    background: #eeeeee7a;
    /* color: white !important; */
    border-bottom: 0;
    border: 0;
}
.main_nav .nav_bt {
    background: #602478;
    /* color: white; */
    display: flex;
    border: none;
    padding: 8px 20px;
    border-radius: 15px;
    margin-left: 8px;
    transition: 0.3s all;
    color: white;
}
.main_nav .nav_bt:hover{
    box-shadow: #602478 4px 4px;
    border: none;
    color: #000000 !important;
}
.main_nav .nav_bt {
    color: white !important;
}

.nav{
    display: none !important;
}
.mobile_nav{
    display: none !important;
}
.nav_toggle{
    display: flex;
    flex-direction: column;
    gap: 8px 0px;
    /* display: none; */
    position: relative;
    z-index: 9999;
}
.nav_toggle span {
    width: 35px;
    height: 3px;
    /* background: var(--bg-secondary); */
    background: #ffffff;
    border-radius: 13px;
    transition: 0.5s all;
    position: relative;
}
.nav_toggle :nth-child(2) {
    transition: 0.5s all;
    width: 20px;
    margin-left: 15px;
    background: #c271e2 !important;
}
.nav_toggle :nth-child(3){
    height: 3.2px;
}

/*--- mobile nav toggled ---*/
.nav_toggle.toggled :nth-child(1){
    transform: rotate(45deg);
    top: 9px;
    background: #c271e2 !important;
}
.nav_toggle.toggled :nth-child(2){
    transition: 0.5s all;
    opacity: 0;
}
.nav_toggle.toggled :nth-child(3) {
    transform: rotate(-47deg);
    bottom: 13px;
    background: #c271e2 !important;
}
/* end */

.nav_ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem 1rem;
}
.nav_bt_ul {
    display: flex;
    margin-left: 2rem;
    gap: 0rem 1rem;
    align-items: center;
    justify-content: center;
}
ul.nav_ul li a{
    padding: 10px;
    transition: 0.3s all;
    border-radius: 6px;
    color: var(--bg-primary);
}
ul.nav_ul li a:hover{
    background-color: #f1e9ff;
    /* background-color: #643ea2; */
    border-radius: 12px;
}

.nav_bt1,
.nav_bt2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px 0.5rem;
    line-height: 1.2;
    font-size: 14px;
    text-align: center;
    border-radius: 16px;
    height: 100%;
    transition: 0.5s all;
}
a.nav_bt1{
    color: white;
    background: #3d1f6e;
    padding: 6px 17px;
    &:hover{
        background-color:#280f52;
    }
}
a.nav_bt2{
    color: white;
    background: #F26221;
    padding: 7px 20px;
    &:hover{
        background-color: #b44817;
    }
}
.mobile_nav{
    position: fixed;
    width: 45%;
    /* background-image: linear-gradient(139deg, #4d2c82, #330f6d); */
    background: var(--bg-primary-light);
    height: 100vh;
    right: -82px;
    top: 0;
    /* display: flex; */
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem 0rem;
    text-align: center;
    color: var(--bg-primary);
    flex-direction: column;
    display: none;
    opacity: 0;
    transition: 0.3s ;
    visibility: hidden;
    padding: 0px 20px;
}
.nav_ul_mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* margin-top: 4rem; */
    margin-bottom: 1rem;
    font-size: 1.4rem;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.nav_ul_mobile a {
    color: rgb(0, 0, 0);
    transition: 0.3s all;
    padding: 1rem;
    &:hover{
        background-color: #86868600;
        /* border-radius: 18px; */
        border-bottom: solid 4px var(--bg-secondary);
        padding-bottom: 5px;
    }
}
a.nav_bt1.mobile{
    background: #2A124E;
    border-radius: 11px;
    padding: 6px 14px;
    height: max-content;
}
.nav_social{
    margin-top:1rem;
}
.social_icons.mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.social_icons.mobile span {
    background: #00000021;

}
.social_icons span{
    i{
      font-size: 22px;
      width: 35px;
      height: 35px;
      background-color: var(--bg-secondary-light);
      color: var(--bg-secondary);
      text-align: center;
      line-height: 35px;
      border-radius: 5px;
      transition: all 0.3s ease 0s;
    }
    i:hover{
      background-color: #DCE1E6;
      color: var(--bg-primary);
      transition: all 0.3s ease 0s;
    }

}
.social_icons.mobile span {
    padding: 0.4rem;
    border-radius: 5px;
}
.social_icons span img{
    width: 27px;
}
.social_icons.mobile span img {
    width: 27px;
}

ul.nav_ul{
    display: none !important;
  }
.nav_toggle{
    padding: 5px;
    display: flex;
    justify-content: center;
    margin-left:1rem;
}
.nav_bt_mobile .nav_bt1{
    display: flex;
}
/* .nav_bt1{
    display: none;
} */
.mobile_nav{
    display: flex;
    visibility: collapse;
}
.mobile_nav.toggled{
    opacity: 1;
    right: 0;
    transition: 0.5s all;
    visibility: visible;
    box-shadow: #0808085e -19px 17px 60px 30px;
}
/* header end */

/*<------- common -------> */
a{
    text-decoration: none !important;
}
a:hover{
    color: inherit;
}
ul{
    list-style: none;
}
.mt-80{
    margin-top: 120px;
}
.mt-60{
    margin-top: 60px;
}
.mb-80{
    margin-bottom: 80px;
}
.mb-60{
    margin-bottom: 60px;
}
.sub_title{
    font-size: 16px;
    font-weight: 600;
    padding: 5px 30px;
    width: max-content;
    border-radius: 100px;
    margin-bottom: 10px;
    backdrop-filter: blur(21px);
}
.pill_blue {
    background-color: #f2eaf6;
    color: #602378;
}
.pill_orange{
    background-color: #e8000021;
    color: #FF5C00;
}
.pill_grey_orange{
    background-color: #F2F2F2;
    color: #FF5C00;
}
.pill_grey_blue{
    background-color: #F2F2F2;
    color: #213488;
}
.pill_alt{
    background-color: #00000070;
    color: white;
}
.semi_pill{
    font-size: 25px;
    font-weight: 700;
    padding: 10px 15px;
    width: max-content;
    border-radius: 10px;
}
.squire_pill {
    padding: 3px 15px;
    width: max-content;
    border-radius: 6px;
}
.about_cnt{
    align-items: center;
}
.title span {
    font-weight: 600;
    color: var(--primary);
}
.title {
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: capitalize;
    /* text-align: center; */
}
.title.small {
    font-weight: 500;
    font-size: 35px;
}
.gradient {
    /* background: -webkit-linear-gradient(45deg, #2074B9,#2074B9,#2074B9, #FF5C00,#FF5C00); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #e5002b;
}

/*<---- hero ---->  */
#hero_banner1{
    z-index: 1;
    position: relative;
    background-color: rgb(0, 0, 0);
}
#hero_banner .container{
    height: 100%;
}
.hero_img{
    height: 100vh;
    object-fit: cover;
    width: 100%;
}
/* .hero_img::after{
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
} */
.hero_data {
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-transform: capitalize;
    flex-direction: column;
    gap: 10px;
    margin-top: -20px;
    /* position: relative; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero_data::after {
    content: " ";
    height: 100%;
    position: absolute;
    top: 20px;
    width: 200%;
    left: -100%;
    background-image: linear-gradient(82deg, #000000ba, #0000005c);
    z-index: -1;
}
.hero_data h1 {
    font-size: 57px;
    font-weight: 500;
}
.hero_data a {
    width: 200px;
    text-align: center;
}
.bt_buy {
    text-decoration: none;
    padding: 11px 70px;
    background-color: #602378;
    color: #fff;
    border-radius: 10px;
    transition: 0.3s all;
    font-size: 18px;
    margin-top: 0px;
    display: inline-block;
    max-width: 225px;
    min-width: 301px;
    max-width: 250px;
    display: flex;
    /* align-items: center; */
    text-align: center;
    justify-content: center;
    border: none;
}
a.bt_buy:hover{
    background-color: #893aa8;
}
a.bt_buy button {
    text-decoration: none;
    background-color: #00000000;
    border: none;
    color: white;
}
a.bt_chat{
    background-color: #e7deeb;
    color: #893aa8;
    border-radius: 10px;
    transition: 0.3s all;
    padding: 11px 30px;
}
a.bt_chat:hover{
    background-color: #893aa8;
    color:#fff;
}
a.bt_more {
    padding: 10px 25px;
    color: #ffffff;
    background: #ffffff14;
    border-radius: 100px;
    font-weight: 300;
    border: solid 1px #ffffff1c;
    transition: 0.2s all;
    backdrop-filter: blur(13px);
    letter-spacing: 3px;
}
a.bt_more:hover {
    background: #602378;
    color: white;
    border: solid 1px #2074b9;
}
/*<---- about ---->  */
.about_img{
    width: 100%;
}
.about_img img{
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    max-height: 520px;
}
.about_cnt>p {
    text-align: justify;
    font-size: 19px;
    max-width: 800px;
    text-align: center;
}
.about_cnt.page p{
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
}
.product_cnt .title{
    text-align: left ;
}
#featured_product_alt {
    background: #f7f7f7;
    padding: 100px 0;
}
#featured_product {
    padding: 50px 0;
}
.shop_now {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.shop_now.features {
    margin-bottom: 7px;
}
.product_img {
    display: grid;
    align-items: center;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}
.product_img img {
    /* max-height: 400px; */
    object-fit: contain;
    width: 100%;
    height: 100%;
    align-items: center;
    object-position: center;
    border-radius: 10px;
    max-width: 360px;
    margin: auto;
}
.feature_ico {
    padding: 5px;
    align-items: center;
    border-radius: 10px;
    height: max-content;
}
.feature_ico_1{
    background: #79f1001f;
}
.feature_ico_2{
    background: #60237814;
}
.feature_ico_3 {
    background: #f1a50026;
    width: max-content;
}
div#product_type_icon img {
    width: 25px;
}
.feature_card {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
}
.feature_card p {
    font-size: 15px !important;
    margin: 0;
    font-weight: 600 !important;
    color: #000000 !important;
}

.product_cnt p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    color: #393939;
    letter-spacing: 0.5px;
    line-height: normal;
    margin: 0;
}
.products .fav-ico{
    color: #f1a500;
}

/*<---- vis_mis ---->  */

/*<---- service ---->  */
#service {
    background-color: #f7f7f7;
    /* text-align: center; */
}
.about_cnt{

}
.about_cnt{
    font-size: 17px;

}
.about_cnt_vis .title.small{
    font-size: 40px;
}
.about_cnt_vis .title.small img{
    width: 40px;
}
.about_cnt_vis {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding-left: 30px;
}
.contact_img{
    position: relative;
    background-image: url(/img/contact_img.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    height: 100%;
}
/* .contact_img img {
    border-radius: 15px;
    height: 100%;
} */
.contact_img::before {
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background-image: linear-gradient(82deg, #000000ba, #0000005c);
    z-index: 0;
    border-radius: 15px;
}
.contact_img p{
    z-index: 2;
    color: white;
    position: relative;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
    padding-top: 20px;
}
.contactus form input, 
.contactus form textarea {
    padding: 13px 10px;
    background-color: #f1f1f1;
    border-radius: 15px;
    border: solid #f1f1f1;
    width: 100%;
}
/* <---- Service----> */
#other_banner {
    height: 250px;
    background-image: url("../img/about-banner.webp");
    color: white;
    background-size: cover;
    background-position: center;
    text-transform: capitalize;
    position: relative;
    /* top: 20px; */
    margin-top: 80px;
}
#other_banner .banner_img {
    height: 100%;
    display: flex;
    align-items: center;
}
#other_banner .banner_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 145px;
}
#other_banner .banner_content h4 {
    font-size: 45px;
    font-weight: 600;
    margin: 0;
}
#other_banner .banner_content h5 {
    font-size: 35px;
    margin-top: 5px;
}
/* <====== Archives =======> */

.career_box {
    background: #efefefe0;
    /* margin-top: 100px; */
    padding: 30px;
    border-radius: 40px;
    display: flex;
    /* height: 500px; */
    box-shadow: 0px 1px 15px 3px rgba(0, 0, 0, 0.03);
    position: relative;
    text-align: left;
}

.career_box h4 {
    color: black;
    font-family: "poppins", sans-serif;
    /* text-align:center; */
    font-weight: 600;
}

.read_btn {
    padding: 8px 20px;
    /* border: 1px solid var(--secondary); */
    /* color: var(--secondary); */
    text-decoration: none;
    border-radius: 30px;
    font-family: "Raleway", sans-serif;
    /* position: absolute; */
    right: 10%;
    bottom: 10%;
    font-weight: 600;
    display: inline-block;
}
.career_box .blue_btn{
        box-shadow: 0px 0px 14px -7px #ff7b64;
        color: white;
        background: #F26221;
}


/* <======= ftr =======> */
footer {
    background: #f1f1f1;
    color: #000000;
    padding-top: 60px;
    padding-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
}
.ftr_info {
    width: 100%;
    text-align: center;
    /* border-bottom: solid 1px #949494; */
    margin-bottom: 20px;
}
.ftr_info img {
    max-width: 150px;
}
.ftr_title {
    text-transform: capitalize;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}
.ftr_title h3{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
}
.ftr_li {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.ftr_li li{
    margin: 5px 0 !important;
    border-bottom: solid 2px #eca52100;
    color: rgb(102, 102, 102);
}
.ftr_li a{
    color: #5e5e5e;
    transition: 0.3s all;
    font-size: 18px;
    font-weight: 400;
}
.ftr_li li:hover a{
    color: #303030;
    border-bottom: solid 2px #ffffff;
}
.ftr_li.addr{
    text-transform:none;
}

.ftr_li a svg{
    font-size: 30px;
    color: #602378;
}
/*whatsapp call*/
.wp_call_bt,
.call_bt{
    position: fixed;
    left: 15px;
    z-index: 0;
    display: block;
    width: 50px;
    transition: 0.5s all ease-in;
    cursor: pointer;
    padding: 5px;
    border-radius: 100%;
    height: 50px;
    display: grid;
    align-items: center;
    justify-content: center;
    &:hover{
        transform: scale(0.9);
    }
}
.wp_call_bt{
    bottom: 17px;
    background: #1b3484;
}
.wp_call_bt img{
    transform: rotate(180deg);
}
.call_bt {
    bottom: 74px;
    background: #000000;
}


/* <======== Contact========= */

.contact-frm {
    padding: 60px 0;
    /* background: url(../images/about_bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conatct_space {
    margin: 0px 100px;
    /* background: #c62128; */
    border-radius: 20px;
    box-shadow: 0px 4px 30px 2px rgba(0, 0, 0, 0.07);
}

.getin_box {
    padding: 30px;
    background: #fff;
    border-radius: 20px 0px 0px 20px;
}

.getin_box h2 {
    font-size: 25px;
    color: #1b3484;
}

.getin_box .address {
    padding-left: 0%;
}

.getin_box .address i {
    font-size: 18px;
    margin-top: 4px;
}

.getin_box .address a {
    font-size: 16px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: all 0.3s;
}

.getin_box .address a:hover {
    color: #1178A8;
    transition: all 0.3s;
}

.getin_box .social_icons {
    margin-top: 0px;
    padding: 0%;
    display: flex;
    gap: 10px;
}

.getin_box .social_icons li a {
    list-style: none;
    float: left;
    font-size: 17px;
    height: 35px;
    width: 35px;
    background-color: #213488;
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    border-radius: 30px;
}


.getin_box .social_icons li a:hover {
    margin-left: 0%;
    color: #ffff;
    background-color: #4AAE4C !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.getin_box .social_icons li i:hover {
    background-color: #333 !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.form_box {
    padding: 30px;
    border-radius: 0px 20px 20px 0px;
    background-color: rgba(233, 233, 233, 0.478);
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}

.form_box h2 {
    font-size: 25px;
    color: #213488;
    margin-bottom: 10px;
}

.form_box input,
.form_box textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 13px;
    border: 1px solid #0000003d;
    font-weight: 300;
}

.form_box input:focus-visible,
.form_box textarea:focus-visible {
    outline: 1px solid #000;
}

.form_box .main_btn2 {
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background-color: #213488;
    padding: 9px 20px;
    border: 1px solid #1178A8;
    border-radius: 13px;
    transition: all 0.3s ease 0s;
    text-align: center;
}

.plane_pic2 {
    transform: rotate(45deg) translateY(-2px);
    width: 17px;
    transition: all 0.2s ease 0s;
}

.form_box .main_btn2:hover {
    color: #1178A8;
    background-color: #fff;
    transition: all 0.3s ease 0s;
}

.form_box .main_btn2:hover .plane_pic2 {
    transform: rotate(45deg) translateY(-9px);
    transition: all 0.2s ease 0s;
}

/* <======== Thank-you ========= */

.thanks_sec {
    /* background: url(../img/about-img1.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 4px 7px 2px #00000010;
    padding: 60px 30px;
    border-radius: 30px;
}

.thanks_sec .love {
    text-align: center;
    font-size: 50px;
    color: #ED1B24;
    display: flex;
    justify-content: center;
    margin: auto;
}
.main_btn {
    padding: 10px;
    background: #e1e1e1;
    text-align: center;
    margin: 0;
    border-radius: 10px;
    border: none;
}
.thanks_sec .main_head {
    text-align: center;
    text-transform: capitalize;
    font-size: 50px;
}

.thanks_sec p {
    text-align: center;
    font-size: 20px !important;
}



.product {
    cursor: pointer;
    border: none;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    z-index: 102;
    height: auto;
}
.popup .container{
    height: 100%;
}
.popup .row{
    justify-content: space-between;
}
.popup .bt_buy{
    padding: 7px 63px;
}
#popup-image {
    width: 100%;
    display: block;
    height: 100%;
    border-radius: 15px;
    /* height: 400px; */
    object-fit: contain;
    object-position: center;
}
.variants span { cursor: pointer; padding: 5px; margin: 5px; border: 1px solid #ccc; display: inline-block; }
.close {
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
    position: fixed;
    top: -5px;
    right: 9px;
    border: none;
    border-radius: 100%;
    box-shadow: 0px 0px 10px -4px #ffffff;
    border: solid 1px #aaaaaa;
    transition: 0.5s all;
}
.variants {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}
.variants span {
    cursor: pointer;
    padding: 5px;
    margin: 0px;
    border: 1px solid #ccc;
    display: inline-block;
    background: #9c27b026;
    padding: 4px 20px;
    border-radius: 6px;
    border: none;
    color: #9C27B0;
    font-weight: 600;
}
.variants span.active {
    background: #9C27B0;
    color: #ffffff;
}
span#popup-price {
    font-size: 25px;
    font-weight: 600;
}
.close:hover{
    background: #000000;
    color: #ffffff;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 102;
}

p.cancel.text-center {
    margin-top: 2px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #602378;
}
.popup-desc p {
    max-height: 150px;
    /* overflow: scroll; */
    margin: 0;
}
p.offer-price {
    position: relative;
    top: -10px;
    color: #909090;
}
span#popup-price-strike {
    /* text-decoration: line-through; */
    position: relative;
}
span#popup-price-strike::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 167%;
    height: 1px;
    background-color: #5b5b5b;
}
p.offer-price {
    position: relative;
    top: -10px;
    color: #909090;
}
span#popup-price-strike {
    /* text-decoration: line-through; */
    position: relative;
}
span#popup-price-strike::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 167%;
    height: 1px;
    background-color: #5b5b5b;
}

.product_info p {
    margin: 0;
}
.promocode-section {
    margin: 15px 0;
    width: 100%;
    margin: 0;
}

button.apply-promocode {
    background: #ffffff00;
    color: #9c27b0;
    border: solid 1px;
    padding: 4px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s all;
    margin-bottom: 10px;
}

button.apply-promocode:hover {
    background: #7B1FA2;
    color: white;
}

.promocode-input-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.input-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.discount-info {
    color: #4CAF50;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #f1f8e9;
    border-radius: 4px;
    border-left: 3px solid #4CAF50;
}

.promocode-error {
    color: #f44336;
    font-weight: 500;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ffebee;
    border-radius: 4px;
    border-left: 3px solid #f44336;
    width: 100%;
    font-size: 13px;
    display: block;
    clear: both;
    text-align: left;
    box-sizing: border-box;
}

#promocode-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button.apply-code-btn {
    background: #602378;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s all;
}

button.apply-code-btn:hover {
    background: #4A1A5E;
}

.popup button.bt_buy.buy-now{
    width: 100%;
    min-width: 100%;
}


.form-control:focus {
    color: #320b42 !important;
    background-color: #6023780a !important;
    border-color: #602378 !important;
    outline: 0 ;
    box-shadow: none;
    border: solid 2px;
}