html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #f6f6f6;
}

/*.row {
    margin-left: 0;
    margin-right: 0;
}*/

.category-list-item a, .product-list-item a, .bd-intro a {
    text-decoration: none;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

a.category-list-item {
    text-decoration: none;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

a.product-redirect {
    text-decoration: none;
    color: orangered !important;
    font-weight:bold;
    font-size:16px;
}

img {
    width: 100%;
}

img.category-list {
    border: 1px solid #ddd;
    width:75%;
    border-radius: 50% !important;
    object-fit: cover;
}

img.product-list {
    border: 1px solid #ddd;
    border-radius: 3px;
}

img:hover {
    box-shadow: 5px 5px 5px 0px rgba(195,195,195,0.75);
    -webkit-box-shadow: 5px 5px 5px 0px rgba(195,195,195,0.75);
    -moz-box-shadow: 5px 5px 5px 0px rgba(195,195,195,0.75);
}

img.direct-link {
    border-radius: 3px;
}

div.category-list-col {
    padding: 5px;
}

div.category-list-item {
    border: 1px solid #ddd;
    margin-bottom: 0px;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
    /*font-weight: bold;*/
}

div.product-list-col {
    padding: 5px;
}

div.product-list-item {
    border-radius: 5px;
    padding: 5px;
    background-color: #fff;
}

div.product-list-item img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

text.product-list-name {
    display: block;
    display: -webkit-box;
    width: 100%;
    margin: 0 auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

text.product-price {
    color: red;
    margin-right: 10px;
}

div.product-content {
    background-color:#fff;
    padding:10px;
}

#sidebar {
    display: block;
    width: 15%;
    transition: all 0.3s;
    box-sizing: border-box;
    padding: 5px;
    left: 0px;
    z-index: 9;
}

#sideright {
    transition: all 0.3s;
    width: 85%;
    box-sizing: border-box;
}

.ssm-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    display: none;
    z-index: 11;
}

@media (max-width: 768px) {
    #sidebar {
        border:1px solid red;
        transform: translate(-245px,0);
        display:none;
    }

    #sideright {
        width: 100%;
    }
}

.main {
    display: flex;
    width:100%;
}

.search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}