/* :root {
    --dark-primary: #2A254B;
    --primary: #726E8D;
    --deep-dark-primary: #22202E;
    --light-gray: #F9F9F9;
    --container-text: #5B5676;
    --light: #fff;
    --btn-feature-bgcolor: #39385e;
} */
:root {
    --dark-primary: #1b254b;
    --primary: rgb(51, 45, 87);
    --deep-dark-primary: #a3b1cc;
    --light-gray: #F9F9F9;
    --container-text: #3599db;
    --light: #fff;
    --btn-feature-bgcolor: #323e69;
    --input-border: #DCDCDC;

}

body {
    font-family: "Rubik", sans-serif;
}

.active {
    /* color: #3599db !important; */
    font-weight: bold !important;
    border-bottom: 1px solid black  !important;
}

/* Start NavBr */
.navbar-brand {
    /* color: var(--deep-dark-primary) !important; */
    color: black !important;
    font-size: 2.1875rem !important;
}

.nav-link {
    padding-inline: 1.875rem !important;
}

.navbar-nav {
    --bs-nav-link-color: var(--primary);
}

.icon-il>a {
    color: var(--dark-primary);
}

.bottom-bar {
    background-color: var(--light-gray);
    /* margin-block: 1.25rem; */
}

.bottom-bar ul>li>a {
    color: var(--primary);
}

.bottom-bar .nav-link {
    padding-inline: 0.6875rem !important;
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* ul span i {
    color: #3599db;
} */


.form-control:focus {
    box-shadow: none;
}

.logout-link {
    width: fit-content;
    color: #dc3545 !important;
    display: inline-block;
    cursor: pointer;
}

.logout-link:hover {
    color: #fff !important;
    background-color: #dc3545 !important;
}


@media (max-width: 991px) {
    .logout-link {
        width: fit-content;
        margin-left: 1.875rem;
    }
}

/* End NavBra */


/* Start Header */

#category {
    height: 100%;
}

.btn.show,
.btn:first-child:active {
    border-color: transparent;
}

.dropdown-menu.show {
    box-shadow: 1px 1px 5px gainsboro;
    border: none;
}

.dropdown-menu>li>a {
    cursor: pointer;
    color: rgba(26, 24, 24, 0.562);
}

.card {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.card-img-top {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}


.card h4 {
    color: var(--dark-primary);
}

.card small {
    color: var(--primary);
}


.card img {
    transform: scale(0.5);
    transition: transform 1s;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
}

.card img:hover {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
}


.card button {
    background-color: var(--light-gray);
    padding: 16px;
    width: 100%;
    color: var(--primary);
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.card span>i {
    color: var(--primary);
    font-size: 25px;
    ;

}

#cart {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

/* #cart:hover {
    background-color: var(--deep-dark-primary);
} */

.discount {
    transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
}

#product_name {
    display: -webkit-box;
    line-clamp: 2;
    -Webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    font-size: 20px;
    line-height: 1.2;
}

#product_description {
    display: -webkit-box;
    line-clamp: 2;
    -Webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    font-size: 20px;
    line-height: 1.2;
}

/* End Header */

/*Controls */
#controls {
    background-color: var(--light-gray);
}

#controls i {
    font-size: 1.875rem;
    cursor: pointer;
}

/* Start Footer */
footer {
    /* background-color: var(--dark-primary); */
    color: var(--light);
    padding: 2.5rem 0.625rem;
}

footer input {
    /* background-color: var(--btn-feature-bgcolor); */
    padding: 1.25rem;
    border-color: transparent;
}

/* footer input::placeholder {
    color: var(--light);
} */

footer button {
    /* color: var(--dark-primary); */
    border-color: transparent;
}

.after-brdr {
    position: relative;
    padding-bottom: 1.25rem;
    width: 95%;
    text-align: center;
}

.after-brdr::after {
    content: '';
    background-color: var(--primary);
    width: 100%;
    height: 0.125rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

hr {
    background-color: #fff;
}

footer ul>li i {
    font-size: 1.5625rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

footer ul>li i:hover {
    color: #fff
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: underline;
    opacity: 0.8;
}


/* End Footer */