@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.form-control:focus {
    box-shadow: none;
}

.btn:focus {
    box-shadow: none;

}

/* HAMBURGER MENU  */
.nav-icon {
    width: 28px;
    height: 24px;
    border: none;
    cursor: pointer;
    display: none;
    background-color: inherit;
    position: relative;
    transform: rotate(0deg);
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: .1s;
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2) {
    top: 10px;
}

.nav-icon span:nth-child(3) {
    top: 20px;
}

.nav-icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px
}

.nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* HAMBURGER MENU  */




/* CAROUSEL */

.carousel-indicator {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    z-index: -2;

}

/* CAROUSEL */


.accordion .accBtn {
    background-color: inherit;
    display: flex;
    justify-content: space-between;
    border: none;
}

.accordion .accPanel {
    display: none;
}


.form-check-input{
    cursor:pointer;
}

.form-check-label:hover{
    cursor: pointer;
}


/* FILTER BUTTON */

.filterBtn.active {
    text-decoration: underline;
    font-weight: bold;
}

/* FILTER BUTTON */


.bagModal {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
}

.bag {
    width: 400px;
    height: 100%;
    background-color: #fff;
    float: right;
    position: relative;
}

.bagModal.active {
    visibility: visible;
    z-index: 4;
}


.bag-list {
    max-height: 500px;
    overflow: auto;
}

.bag-list::-webkit-scrollbar {
    width: 0;
}


.quantity button {
    width: 25px;
    height: 25px;
    border: none;
    font-size: 1.2rem;
    border-radius: 5px;
    background-color: #f8f9fa;
    color: #6c757d;
}

.checkout {
    display: none;
}


.addBtn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.badge {
    top: 85% !important;
    left: 85%;
    font-size: 13px;
}


@media (max-width:991px) {

    /* TOGGLE MENU */
    .collapse.active {
        display: block;
        width: 100%;
        position: absolute;
        top: 56px;
        left: 0;
        background-color: #212529;
    }

    /* TOGGLE MENU */



    .nav-icon {
        display: block;
    }

}

@media (max-width:450px) {
    .bag {
        width: 100%;
    }

    .bag-list {
        max-height: 400px;
        overflow: auto;
    }
    

}