/* ---------------------------------------------wishlist Code starts here----------------------------------------------- */

.title{
    text-align: center;
    color: white;
    background-color: #212121;
    padding: 8px;
}
.title h1 {
    margin: 10px;
}
.address {
    display: flex;
    width: fit-content;
    margin: 1px auto;
}
.address a, p{
    text-decoration: none;
    color: white;
    font-size: 13px;
    margin: 0px 5px ;
}
.address a:hover{
    text-decoration: underline;
}
.header{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    margin: 20px;

}
.heading{
    display:  flex;
    justify-content: space-between;
    padding: 20px;
    color: grey;
}
.heading > h3 {
    font-weight: normal;
}
.added_items {
    /* border: 1px solid brown; */
    width: 75%;
    margin: auto;
}

.clear{
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-left: 50px;
    background-color: black;
    color: white;
}
.clear:hover{
    color: black;
    background-color: rgb(209, 209, 209);
    transition: 0.6s;
}
.wishlist_active {
    width: 14px;
    height: 14px;
    /* border: 1px solid black; */
    background-color: #FC2779;
    border-radius: 50%;
    font-size: 12px;
    color: white;
    margin: 0px;
    float: right;
    position: absolute;
    top: 4%;
    left: 88%;
    display: none;
}

.cart_active{
    width: 14px;
    height: 14px;
    /* border: 1px solid black; */
    background-color: #FC2779;
    border-radius: 50%;
    font-size: 12px;
    color: white;
    margin: 0px;
    float: right;
    position: absolute;
    top: 4%;
    right: 7%;
    display: none;
}

.empty-cart {
    width: 100%;
    border-radius: 10px;
    margin: 15px;
    background-color:#f3f2f2;
    text-align: center;
    padding: 30px;
    color: grey;
}
.card{
    /* border: 1px solid red; */
    /* align-items: center; */
    display: flex;
    justify-content: space-around;
    margin: 10px;
}
.product{
    display:  flex;
}
.product > img {
    width: 15%;
    height: 70%;
}

.price{
    margin: 0px 100px;
}
.add_cart{
    width: 150px;
    background-color: black;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
}
.add_cart:hover{
    color: black;
    background-color: rgb(209, 209, 209);
    transition: 0.6s;
}
.delete{
    border-radius: 10px;
    background-color: black;
    height: 20px;
    color: white;
    font-weight: bold;
    border: none;
    padding:3px 6px;
    cursor: pointer;
    margin-left: 40px;
}
.delete:hover{
    background-color: rgb(214, 14, 14);
}
/* // ------------------------------------------------wishlist code ends Here------------------------------------------------ */

/* modal box after checkout */

.modal-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    /* align-items: center; */
    visibility: hidden;
    padding-top: 100px;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}
.modal-bg2 {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    /* align-items: center; */
    visibility: hidden;
    padding-top: 100px;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.bg-active{
    visibility: visible;
    opacity: 1;
}
.modal {
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    width: 60%;
    height: 40%;
    padding: 10px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    flex-direction:column;
}
.deliAddress {
    display: flex;
    justify-content: space-around;
}
.deliAddress >div{
    width: 30%;
}
.modal button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}
.modal-close{
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
}
.modal_text {
    width: 270px;
    display: flex;
    justify-content: space-between;
}
.modal-thank {
    margin: 20px;
}
.modal-thank > h3 {
    margin-top: 30px;
}
.close{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.thank {
    display: none;
    text-align: center;
}
/* loading indicator */
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ---------------------------------------------wushlist Code Ends here----------------------------------------------- */

/* ---------------------------------------------Header Code starts here----------------------------------------------- */
html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0%;
    font-family: 'Poppins', sans-serif;
}

.img{
    width: 100%;
    height: 100%;
}

.Header{
    display: flex;
    width: 100%;
    height: 85px;
    border: 1px solid #DCDCDC;
    border-right: none;
    border-left: none;
}

.Header__Logo{
    width: 15%;
    height: 70%;
    /* border: 1px solid black; */
    margin-top: 0.9%;
    margin-left: 2%;
    cursor: pointer;
}

.Header__Search{
    width: 48%;
    height: 52%;
    border: 2px solid #DCDCDC;
    display: flex;
    margin-top: 1.5%;
    margin-left: 2%;
}

.Header__Search__inputBox{
    width: 330%;
    height: 85%;
    margin-top: 1%;
    margin-left: 5%;
    border: none;
    border-style: none;
    font-size: 15px;
    outline: none;
}

.Header__Search__searchicon{
    height: 80%;
    width: 7%;
    margin-top: 0.2%;
    color: rgb(94, 94, 94);
    /* border: 1px solid black; */
    margin-left: 65%;
    font-size: 170%;
    text-align: center;
    cursor: pointer;
}

.Header__Login{
    width: auto;
    height: 50%;
    /* border: 1px solid blue; */
    font-size: 14px;
    font-style: italic;
    margin-top: 2.3%;
    margin-left: 10%;
    cursor: pointer;
    color: #757575;
}

.Header__LikeCart{
    display: flex;
    width: 10%;
    height: 50%;
    margin-top: 1.8%;
    margin-left: 1%;
    /* border: 1px solid violet; */
    cursor: pointer;
}

.Header__LikeCart>div{
 width: 40%;
 /* border: 1px solid blue; */
 text-align: center;
 font-size: 140%;
}

.Header__LikeCart>div>a>i{
    margin-top: 13%;
}

.Header__LikeCart>div>a{
    color: black;
    text-decoration: none;
}

.Header__Login__P{
    text-decoration: none;
    color: black;
}

.Header__Login__P:hover{
    text-decoration: underline;
}

.navBar{
    width: 100%;
    height: 40px;
    /* border: 1px solid black; */
    display: flex;
}

.navBar>div{
    width: auto;
    height: 70%;
    margin-left: 1.5%;
    /* border: 1px solid black; */
    text-align: center;
    margin-top: 0.5%;
    cursor: pointer;
}

.navBar>div>i{
    color: #757575;
}

.dropbtn{
    font-weight: bold;
}

.dropbtn:hover{
    color: #FC2779;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.navBar__content{
    display: none;
    position: absolute;
    width: 700px;
    border: 1px solid #DCDCDC;
    background-color: white;
    z-index: 1;
}
  
.navBar__content>div>a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.navBar__content>div>a:hover{
    color: #ff619e;
    /* font-size: 18px; */
    transform:translateX(12px);
    transition-duration: 0.3s;
}

.navBar__content>div{
    margin-left: 5%;
}

.navBar__content>div>p{
    font-weight: bold;
    text-align: left;
}

.navBar__content>div>p:hover{
    color: #ff619e;
}

.dropdown:hover .navBar__content {display: block; display: flex;}

#navBar__content1{
    width: 200px;
}

/* ---------------------------------------------Header Code Ends here----------------------------------------------- */

/* ---------------------------------------------Footer Code Starts here----------------------------------------------- */

.Footer{
    width: 100%;
    height: auto;
    background-color: black;
    border: 1px solid black;
    border-left: none;
    border-right: none;
    margin-top: 5%;

}

.Footer__Logo, .iconBox{
    width: 10%;
    height: 140px;
    /* border: 1px solid white; */
    margin: auto;
    margin-top: 5%;
}

.iconBox{
    margin-top: 0%;
    height: auto;
    display: flex;
    justify-content: space-around;
}

.icon>i{
    color: whitesmoke;
    cursor: pointer;
}

.Footer__Info{
    color: white;
    /* border: 1px solid white; */
    width: 95%;
    height: auto;
    margin-left: 2%;
    margin-top: 3%;
    display: flex;
}

.Footer__Info>div{
    margin-right: 2%;
    /* border: 1px solid white; */
    width: auto;
}

.Footer__Info>div>strong{
    letter-spacing: 2px;
}

.Footer__Info>div>p{
    color: rgb(124, 124, 124);
    line-height: 18px;
}

.Footer__Info>div>p:hover, .mobileNum>p:hover{
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

#info__1{
    width: 32%;
    margin-left: 5%;
    /* margin-right: 5%; */
}

.dash{
    width: 15%;
    height: 3px;
    background-color: white;
    margin-bottom: 35px;
}

.mobileNum{
    display: flex;
    width: 300px;
}

/* .mobileNum>i, .mobileNum>p{
    border: 1px solid white;
} */

.mobileNum>i{
    height: 25px;
    width: 10%;
    font-size: 22px;
}

.mobileNum>p{
    margin-top: 1px;
    margin-left: 1%;
    font-size: 15px;
    color: rgb(124, 124, 124);
}

#dateTime{
    margin-top: 0%;
    color: white;
    text-decoration: none;
    cursor:text;
    font-size: 15px;
}

#spcaeTopBottom{
    margin-top: 10%;
    margin-bottom: 10%;
}

.glogoBanner{
    display: flex;
    width: 75%;
    height: 30px;
    /* border: 1px solid white; */
}

.glogoBanner>div{
    width: 42%;
    height: 100%;
    margin-left: 2%;
    cursor: pointer;
}

#bannerGetApp{
    width: 30%;
}

#newsLetter{
    /* border: 1px solid white; */
    width: 40%;
    height: 200px;
}

#newsTextBox{
    border: 2px solid white;
    width: 80%;
    height: 18%;
    border-top: none;
    border-right: none;
    border-left: none;
}

.newsText{
    width: 100%;
    background-color: inherit;
    border: none;
    outline: none;
    color: rgb(124, 124, 124);
}

.signUpButton{
    padding: 10px;
    margin-top: 2%;
    width: 50%;
    border: none;
    outline: none;
    background-color: #FC2779;
    cursor: pointer;
    color: white;
}

.signUpButton:hover{
    background-color: #ff0062;
}

.dividePage{
    width: 82%;
    height: 1px;
    background-color: grey;
    margin: auto;
    margin-top: 5%;
}

.copyRight{
    width: 50%;
    height: 40px;
    /* border: 1px solid white; */
    margin: auto;
    margin-top: 3%;
    color: white;
    text-align: center;
    margin-bottom: 1%;
}

/* ---------------------------------------------Footer Code Ends here----------------------------------------------- */
