﻿
a {
    text-decoration: none;
}

#navID {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    position: sticky;
    top: 0;
   /* z-index: 1050;*/
}

/* Fix for long sticky headers */
.sticky-top {
    position: sticky !important;
    
}

/*//css for managing icon*/
#imgID{
    width:40px;
    height:40px;
}


@media only screen and (max-width: 600px) {

    /*.sticky-top { 
        width: 103%;
    }*/

    #imgID {
        width: 20px;
        height: 20px;
    }
}


.toggle-btn {
    display: inline-block;
}

.hidden-card{
    display:none;
}

.logouthidden{
    display:none;
}

/************************* Tabs css *****************************/
.shdcls {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.dashtabgroup {
    position: relative;
    display: inline;
    width: 100%;
}

.dashtabgroup__item {
    -webkit-appearance: none;
   /* -moz-appearance: none !important;*/
   /* padding: 10px;*/
    height: 0;
    width: 0;   
    outline: 0;
}

    .dashtabgroup__item:checked + .dashtab {
        background-color: #fbfbfc00;
        color: #484f53;
        font-weight: bold;
        position: relative;
    }

.dashtabgroup__item--1:checked ~ .panel--1, .dashtabgroup__item--2:checked ~ .panel--2, .dashtabgroup__item--3:checked ~ .panel--3, .dashtabgroup__item--4:checked ~ .panel--4, .dashtabgroup__item--5:checked ~ .panel--5 {
    display: block;
}

.dashtabgroup .dashtab {
    float: left;
    width: 100%;
    display: block;
    background-color: #fbfbfc00;
    font-weight: bold;
    color: #484f53;
    padding: 6px;
    cursor: pointer;
    transition: all 0.15s ease-in;
}

.dashtabgroup .panel {
    display: none;
}

    .dashtabgroup .panel .cta {
        background-color: #ff8037;
        padding: 10px 35px;
        color: white;
        border-bottom: 5px solid #b24e14;
        font-size: 20px;
        display: inline-block;
        text-decoration: none;
    }

@media screen and (min-width: 768px) {
    .dashtabgroup .dashtab {
        /*display: inline-block;*/
        display: inline;
        float: none;
        width: auto;
    }
}


/******************* search bar css  ************************/
.search-wrapper {
    max-width: 600px;
    margin: 10px auto;
}

.search-box {
    position: relative;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1000;
}

    .search-box:focus-within {
        box-shadow: 0 3px 20px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

.search-input {
    border-radius: 50px;
    padding-left: 45px;
    padding-right: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    .search-input:focus {
        border-color: #0d6efd;
        box-shadow: none;
    }

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    padding: 3px 15px;
    transition: all 0.3s ease;
}

    .search-button:hover {
        background-color: #0b5ed7;
        transform: translateY(-50%) scale(1.05);
    }

/* Dark theme search box */
.search-box.dark {
    background-color: #212529;
}

    .search-box.dark .search-input {
        background-color: #212529;
        color: #fff;
    }

        .search-box.dark .search-input::placeholder {
            color: #6c757d;
        }

    .search-box.dark .search-icon {
        color: #6c757d;
    }


/* span class css */
.spcls {
    background-color: #362D86;
    color:white;
}

body {
    /*background: #eee;*/
    overflow-x: hidden;
   
}

/************************* side menu css **************************/

/*Hamburger menu list*/
    
    /*.checkbtn {
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
    }*/

    .nav-mobile {
        position: absolute;
        top: 12rem;
        left: 0;
        z-index: 1;
        width: 200px;
        display: none;
    }

        .nav-mobile nav{
            color: #fff;
            padding: 1rem 1.5rem;
            
        }

    
/* //----------------------------- footer css ------------------------------//  */

#footerID {
    background-color: #eeeeee;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1%;   
}

    #footerID p {
        color: #646161;
    }

    #footerID hr {
        border: 1px double;
        color: #646161;
    }

.footerh4clss {
    color: #646161;
    
}


#cpysectn {
    height: 4vh;
    background-color: #363636;
    padding-top: 7px;
}


    /***************** //tooltip css *****************/
    .tooltip-container {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    /* Tooltip text */
    .tooltip-text {
        visibility: hidden;
        opacity: 0;
        width: max-content;
        max-width: 200px;
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 6px 10px;
        border-radius: 6px;
        position: absolute;
        bottom: 125%; /* Position above the icon */
        left: 50%;
        transform: translateX(-50%);
        transition: opacity 0.3s ease, transform 0.3s ease;
        font-size: 14px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        white-space: nowrap;
        z-index: 1;
    }

        /* Arrow */
        .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%; /* Bottom of the tooltip */
            left: 50%;
            transform: translateX(-50%);
            border-width: 6px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

    /* Show on hover */
    .tooltip-container:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }


    /***********scroll css****************/
    /* width */
    ::-webkit-scrollbar {
        height: 6px;
        width: 5px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 5px;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #95c0cb;
        border-radius: 10px;
    }


/* ----------- add to cart count css  ----------  */
#cart-count {
    position: absolute;
    top: 75px;
   /* right: 85px;*/
    background: #362d86;
    color: white;
    border-radius: 50%;
    padding: 0px 6px;
    font-size: 12px;
}

@media only screen and (max-width: 600px) {
    #cart-count {
        top: 300px;
        right: 265px;
        position: sticky;
    }
}