body {
    font-family: Roboto, Arial, sans-serif;
}

a {
    text-decoration: none;
}

.ww-box {
    height: 100%;
}

.weather a {
    visibility: hidden;
}

.logo {
    filter: invert(1);
    max-height: 26px;
}

.form-check-label {
    cursor: pointer;
}

.form-check-label:hover {
    color: #0d6efd;
}

.head-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 0;
    width: 18px;
    height: 18px;
}

.link-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.icon-link {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.icon-link:hover {
    background-color: #e2e6ea;
}

.icon-link img {
    width: 32px;
    height: 32px;
}

.icon-link span {
    font-size: 14px;
}

.smalltext {
    font-size: 14px;
}

.cart-dropdown {
    position: relative;
}

.cart-small-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    text-wrap: wrap;
    gap: 10px;
}

.cart-small-item:hover {
    background-color: #f1f1f1;
    transition: all .2s;
}

.cart-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    max-width: 450px;
    top: 100%;
    right: 0;
}

.cart-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s;
    min-width: 400px;
}

@media (max-width: 768px) {
    .cart-dropdown:hover .dropdown-menu {
        display: none;
    }
}

.cart-delete {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-smalltext {
    color: rgba(0, 0, 0, .8);
    font-size: 12px;
}

.select2-container {
    z-index: 10000;
}

.select2-results__option--selectable {
    font-size: 14px;
}

.table-comparison {
    border-top: 1px solid #fff;
}

.table-comparison-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer;
}

.table-comparison-body::-webkit-scrollbar-thumb {
    background-color: #3498db;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
}

.table-comparison-body::-webkit-scrollbar-thumb:hover {
    background-color: #2980b9;
}

.table-comparison-body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.table-comparison-head {
    overflow: hidden;
    top: 56px;
}

.table-comparison-head table th {
    background-color: #fcfcfc;
}

.table-comparison-info {
    width: 250px;
    min-width: 250px;
}

.comparsion-name {
    height: 50px;
    word-break: normal;
}

.sortable-column {
    text-wrap: nowrap;
    cursor: pointer;
}

.sort-icon {
    opacity: .7;
}

.table-comparison-head th:not(.table-comparison-info) {
    width: 250px;
    min-width: 250px;
    word-break: break-all;
}

.table-comparison td:not(.table-comparison-info) {
    width: 250px;
    min-width: 250px;
    word-break: break-all;
}

.table-th-smallphoto {
    width: 60px;
}

.table-th-photo {
    width: 120px;
}

.table-th-small {
    width: 150px;
}

.table-buttons {
    width: 120px;
}

.td-product-name {
    font-size: 14px;
}

.td-product-features {
    font-size: 13px;
    min-width: 250px;
}

.td-product-stocks {
    font-size: 13px;
}

.td-product-prices {
    font-size: 13px;
}

.product-site-link {
    display: inline-block;
    background-image: url(/assets/img/link_up.svg);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 24px;
    color: #000;
    text-decoration: none;
}

.product-image {
    max-width: 100px;
    max-height: 100px;
    border-radius: 5px;
}

.product-compare-image {
    max-width: 200px;
    border-radius: 10px;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.product-buttons button {
    width: 100%;
}

.filters-section {
    background: #f8f9fa;
    padding: 15px;
    top: 56px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.filter-price {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    height: 32px;
    position: relative;
}

.select2-container--default .select2-selection--multiple {
    font-size: 14px;
}

#customerSuggestions {
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item:hover {
    background-color: #333;
    color: #fff;
}