.cartProduct {
    height: 80px;
    width: auto;
}

.houseIcon {
    height: 15px;
    max-height: 15px;
    width: auto;
}

.cartPageTitle {
    width: 100%;
    background-color: rgb(241, 241, 241);
    font-weight: bold;
    height: 70px;
    display: flex;
    justify-content: center;
}

.alphaNetPriceColor {
    color: rgba(0, 0, 0, 0.336);
}

.totalPriceStyle {
    border: solid 1px rgba(153, 153, 153, 0.336) !important;
}

.filter-red-active {
    filter: invert(19%) sepia(52%) saturate(5945%) hue-rotate(354deg) brightness(90%) contrast(88%);
}

.filter-red {
    filter: invert(82%) sepia(36%) saturate(3541%) hue-rotate(307deg) brightness(88%) contrast(98%);
}

.stepsStyleActive {
    color: rgb(131, 130, 130);
    font-weight: bold;
}

.stepsStyle {
    color: rgba(131, 130, 130, 0.342);
    font-weight: bold;
}

.arrowStepsStyle {
    width: 40px;
    height: auto;
}

a {
    text-decoration: none !important;
}

.product-container {
    display: flex;
    justify-content: space-between;

    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 20px;
}

.product-images {
    width: 45%;
}

.main-image img {
    width: 80%;
    height: auto;
}

.small-images {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: start;
}

.small-image {
    width: 100%;
    /* height: 80px; */
    cursor: pointer;
}

.small-image:hover {
    opacity: 0.7;
}

.product-details {
    width: 45%;
}

.product-prices span {
    font-size: 16px;
    margin: 10px 0;
}

.product-prices .grossPrice {
    font-size: 13px;
}

/* .product-size {
    margin: 15px 0;
} */

.product-description p {
    margin-top: 10px;
    font-size: 14px;
}

.product-subid {
    margin-top: 20px;
}

.zoom-on-hover {
    transition: transform 0.2s ease-in-out;
}

.zoom-on-hover:hover {
    transform: scale(1.05);
}


.product-box {
    width: 100%;
    height: 280px;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #ddd;
    background-color: #fff;
}

.product-home-img-box {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
}

.product-home-img {
    /* width: max-content !important; */
    width: auto;
    height: 200px;
}
.product-home-img img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.col-md-12.text-center {
    font-size: 16px;
    padding: 10px;
}

.product-box-frame {
    border: 1px solid #e5e5e5;
    text-align: center;
}

/* TOOLTIP CUSTOM */
.tooltipc {
    position: relative;
    display: inline-block;
    /* border: 1px solid black;
    border-radius: 50%; */
    /* border-bottom: 1px dotted black; */
    font-weight: bold;
}

.tooltipc .tooltipctext {
    visibility: hidden;
    width: 220px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltipc .tooltipctext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipc:hover .tooltipctext {
    visibility: visible;
    opacity: 1;
}

.custom-tabs-container {
    display: flex;
    justify-content: start;
    margin-bottom: 20px;
    padding: 0;
}

.custom-tabs-container .custom-tab-item {
    margin-right: 15px;
}

.custom-tabs-container .custom-tab-link {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-tabs-container .custom-tab-link.active {
    color: red;
    font-weight: 700;
}

.custom-tabs-container .custom-tab-item:last-child {
    margin-right: 0;
}


.backgroundImageNewsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.backgroundImageNewsletter .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: white;
}

.backgroundImageNewsletter h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.backgroundImageNewsletter p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.backgroundImageNewsletter .form-control {
    border-radius: 5px;
    padding: 10px;
}

/* .backgroundImageNewsletter .btn-custom {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background-color: #ff0404;
    border: none;
    border-radius: 5px;
    color: white;
} */

.backgroundImageNewsletter .btn-custom:hover {
    background-color: #a10000;
}

.fc-95r {
    font-size: 0.95rem;
}

.adminPanelModal {
    min-width: 20vw !important;
    max-width: 60vw !important;
    height: auto;
}

.order-prod-cst {
    font-size: 14px !important;
}

.order-prod-img-cst {
    width: 50px;
    height: auto;
}

.product-name-box {
    font-weight: 600;
}

@media (max-width: 600px) {
    .nav-item {
        background-color: #000000;
    }

    #navbarNav {
        z-index: 999999;
    }
}

@media (max-width: 768px) {
    .custom-tabs-container {
        flex-direction: column !important;
        align-items: stretch;
    }

    .custom-tab-item {
        width: 100%;
    }

    .custom-tab-link {
        display: block;
        width: 100%;
        text-align: center;
    }
}
