:root {
    --main-color: #304868;
    --secondary-color: #ffffff;
    --slit-items-color: #f5f5f5;
    --sadow-color: #000000;
}

.active:focus-within h5 {
    color: var(--main-color);
}

a.active.show {
    background-color: var(--slit-items-color);
    border: 0 1px solid rgba(0, 0, 0, 0.125) !important;
    border-color: rgba(0, 0, 0, 0.125);
}

.bg-light {
    background-color: var(--slit-items-color) !important;
}

.buttonrow {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: 10vh;
    margin-left: 15px;
}

.button-wishlist {
    background: url("/public/img/wishlist-icon.gif") 100% 100% no-repeat;
    border: none;
    background-size: 25px 25px !important;
    width: 25px;
    height: 25px;
    outline: none;
}

.button-wishlist-unactive {
    background: url("/public/img/wishlist-icon-0.png") 100% 100% no-repeat;
}

.button-wishlist-unactive-static {
    background: url("/public/img/wishlist-icon-0.png") 100% 100% no-repeat;
}

.button-wishlist-unactive:hover {
    background: url("/public/img/wishlist-icon.gif") 100% 100% no-repeat;
}

.button-wishlist-active {
    background: url("/public/img/wishlist-icon-1.png") 100% 100% no-repeat;
}

.button-cart {
    background: url("/public/img/cart-icon.png") 100% 100% no-repeat;
    border: none;
    background-size: 25px 25px !important;
    width: 25px;
    height: 25px;
    outline: none;
}
.cart-count,
.wishlist-count {
    font-size: 0.75rem;
    position: absolute;
    transform: translate(-45%, -45%);
}

.bg-main {
    background-color: var(--main-color) !important;
    color: var(--secondary-color) !important;
}

.button-dark {
    font-family: Arial, Helvetica, sans-serif;
    width: 165px;
    height: 40px;
    color: var(--secondary-color);
    background-color: rgb(24, 24, 24);
    border-radius: 6px;
    box-shadow: inset 0 0 0 0 rgb(20, 134, 58);
    transition: ease-out 0.3s;
    font-size: 20px;
    border: none;
    outline: none;
}

.button-dark:hover {
    box-shadow: inset 165px 0 0 0 rgb(20, 134, 58);
    cursor: pointer;
    color: rgb(129, 129, 129);
}

.table-scroll {
    overflow-x: scroll;
}

.fixfooterimg {
    width: 296px;
}

.a-container {
    margin: 0;
}

.profilebutton {
    background: url("/public/img/white-profile-icon.png") 100% 100% no-repeat;
    border: none;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    outline: none;
    display: block;
}

.ordersbutton {
    background: url("/public/img/orders-icon.png") 100% 100% no-repeat;
    border: none;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    outline: none;
    display: block;
}

.settingsIco {
    width: 20px;
    height: 20px;
    position: relative;
    top: -4px;
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--main-color);
    /* font-size: ; */
}

/* ---cart products--- */

.cart-page {
    margin: 80px auto;
}

table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.cart-info {
    display: flex;
    flex-wrap: wrap;
}
.cart-info p {
    margin: 0;
}

th {
    text-align: left;
    padding: 9px;
    color: var(--main-color);
    background: var(--slit-items-color);
    font-weight: normal;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

td {
    padding: 5px;
}

/* td input {
    width: 40px;
    height: 30px;
    padding: 5px;
} */

td a {
    color: rgb(247, 66, 53);
    font-size: 18px;
}

td img {
    width: 144px;
    height: 144px;
    margin-right: 10px;
}

.fixtrw {
    width: 75px;
}

.fixtrw34 {
    width: 34px;
}

.total-price {
    display: flex;
    justify-content: flex-end;
}

.total-price table {
    border-top: 3px solid var(--slit-items-color);
    max-width: 350px;
}

.removecontentcart {
    background: url("/public/img/removeitem.png") 100% 100% no-repeat;
    border: none;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    outline: none;
    justify-content: right;
}

.row {
    --bs-gutter-x: 0rem;
}

.makeorderbutton {
    margin-right: 20px;
}

@media (max-width: 576px) {
    .cart-table th,
    .cart-table td {
        padding: 4px;
        font-size: 14px;
    }
    .cart-table td img {
        width: 80px;
        height: 80px;
    }
    .cart-table .quantity-control input[type='number'] {
        width: 40px;
    }
    .cart-table .qty-btn {
        width: 28px;
    }
    .cart-table .config-col {
        display: none;
    }
}

.toastify {
    padding: 12px 20px;
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgb(0 0 0 / 40%);
    background: -webkit-linear-gradient(315deg, #23C552, #1a963e);
    background: linear-gradient(135deg, #23C552, #1a963e);
    position: fixed;
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 6px;
    cursor: pointer;
}

.toastify.on {
    opacity: 1;
}

.toastify.reject {
    background: -webkit-linear-gradient(315deg, #F84F31, #ba290f);
    background: linear-gradient(135deg, #F84F31, #ba290f);
}

.toastify.info {
    background: -webkit-linear-gradient(315deg, #288feb, #1d68aa);
    background: linear-gradient(135deg, #288feb, #1d68aa);
}

@media (max-width: 576px) {
    .toastify {
        padding: 8px 12px;
        font-size: 14px;
    }
}