:root {
    --bs-font-sans-serif: 'Rubik', sans-serif;
}

.container-xxl {max-width: 1530px;}

body{
    background-image: url("/img/new_background.png");
}

a{ color: var(--bs-dark);}

/* Category Cards */

.category__link {
    text-align: center;
    display: block;
    text-decoration: none;
    transition: 250ms all;

}

.category__link:hover {
    transform: scale(1.1);

}

.category__img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    margin-bottom: 10px;
    box-shadow: 0px, 3px, 6px rgba(0,0,0,.16);
    overflow: hidden;
    border-radius: 8px;

}

.category__img--large {
    height: 330px;
    
}

.category__img img{
    width: 100%;
    object-fit: cover;
    
}

.img-fluid {
    border-radius: 10px;
}

#topbar {
    background-color: slategray;
}

.out-of-stock-marker {
    position: relative;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

.highlight {
    border: 7px solid red;
    opacity: 1; 
}

.notify-badge{
    position: absolute;
    right:-20px;
    top:10px;
    background:red;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:5px 10px;
    font-size:20px;
}