#shopping_cart {
    color: black;
}

#shopping_cart:hover {
    color: #54595F;
}

#tgl_btn {
    color: black;
}

#tgl_btn:hover {
    color: #54595F;
}

nav {
    background-color: rgba(249, 225, 222, 1);
}

.icons i {
    padding-left: 5px;
}

.navbar-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 4px;
    color: black;
    position: relative;
}

.main::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: black;
    transition: all 0.5s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    top: 40px;
}

.navbar-nav a:hover {
    color: #54595F;
}

.large_navbar:hover {
    color: #54595F;
}

nav a:hover::before {
    width: 100%;
}

.main:hover {
    color: #54595F;
}

.form-control {
    border: none;
}

.nav-link {
    color: black;
}

.nav-link:hover {
    color: black;
}

.nav-link-2:hover {
    color: #54595F;
}

a {
    text-decoration: none;
    color: black;
}

.product_name:hover {
    color: #54595F;
}

.product_designer {
    color: #54595F;
}

.product_designer:hover {
    color: black;
}

.product_details {
    text-decoration: underline;
    text-decoration-color: #dadee2;
}

.product_details:hover {
    color: black;
    text-decoration-color: black;
}

.product_about {
    font-size: small;
}

.footer_links:hover {
    color: rgba(249, 225, 222, 1);
}

.footer_links {
    color: white;
}

.designer_list {
    color: #54595F;
}

.designer_list:hover {
    color: black;
}

.shopping:hover {
    color: black;
}

.checkout:hover {
    color: black;
}

.checkout {
    color: #54595F;
}

.icon i {
    font-size: 3rem;
    color: gainsboro;
}

.icon a:hover {
    cursor: pointer;
}

.offcanvas-body form input {
    border: 2px solid rgb(238, 233, 233);
    border-radius: 0px;
}

#forms input {
    border: 2px solid rgb(226, 223, 223);
}


#forms select {
    border: 2px solid rgb(226, 223, 223);
}


.picture img {
    height: 150px;
}

.card {
    padding: 10px;
    width: 300px;
    height: 430px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
}

.card .card_img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    left: 0;
    top: 0;
    transition: 2s
}

.card:hover .card_img {
    scale: 1.2;
}

.top-banner {
    background: linear-gradient(90deg, #000000, #1a1a1a);
    color: #d4af37;
    /* gold tone */
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.carousel-caption {
    padding-bottom: 200px;
}

.ci {
    height: 750px;
}

@media (max-width: 768px) {

    .carousel-caption {
        padding-bottom: 60px;
    }

    .ci {
        height: 500px;
    }
}

#preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            /* background color */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            /* default fully visible */
            transition: opacity 0.5s ease;
            /* smooth fade-out */
        }

        .loader-logo img {

            animation: pulse 1.5s infinite ease-in-out;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .loader-logo img {

            max-width: 80px;
            animation: pulse 1.5s infinite ease-in-out;
        }