/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*{
    padding: 0;
    margin: 0;
}

:root {
    --notification-background: #313e2c;
    --notification-primary: #aaec8a;
    --background: #FAF9FF;
}
body{
    font-family: "Poppins", sans-serif;
    background-color: #f1f1f1;
}
div{
    display: block;
}
.lekformat { font-size: 1rem; color: #e84118; }
button:focus,
.navbar-toggler:focus,
.input-group .btn:focus,
.custom-search input:focus,
.input.form-contro:focus{
    outline: 0;
    box-shadow: none;
}
.custom-row{
    width: 900px;
    height: 550px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
}
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

footer {
    margin-top: auto; /* This pushes the footer to the very bottom */
}
/* Hero Section Styling */
.index-hero-section {
    position: relative;
    background-image: url('../images/wp1.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 0;
}

.index-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.index-hero-section .container {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
}

.index-hero-section .hero-image {
    max-width: 90%; /* Scale the image for a better fit */
}

.index-hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}
.index-hero-section .btn-danger {
    background-color: #e60023;
    border: none;
    border-radius: 0px;
}

.index-hero-section .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.index-hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #e60023;
}
/* Why Us */
.whyus {
    position: relative;
    top: 50px;
}
.whyus .product-card-image {
    display: flex;
    justify-content: center;
}
.whyus .card-text{
    font-size: 12px;
    color: grey;
}
.whyus i {
    margin-top: 15px;
    padding: 15px;
    background-color: #BB2D3B;
    color: white;
    border-radius: 50%;
    font-size: 60px;
}
.whyus .product-card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whyus .product-card:hover {
    transform: scale(1.05); /* Slight scale-up on hover */
}
/* Why Us */
/* Order Edit */

.order-notes h5{
    font-size: 0.85rem;
    color: #303030;
}
.order-notes p{
    font-size: 0.85rem;
    color: #6f7078;
    margin-top: 5px;
}
/* Custom Navbar */

.custom-navbar ul li{
    display: inline-flex;
    align-items: center;
}
/* Custom Navbar */
/* Contact US */
.contactus3 p {
    color: #ed4f11;
}
.contactus3 svg{
    background-color: #B7D1F5;
    color: #5046e5;
    padding: 7px;
    border-radius: 10px;
}
/* Contact US */

.categories {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.categories img {
    transition: 0.3s ease-in;
}
.categories:hover img{
    transform: scale(1.05);
}
.categories .laptop{
    width: 100%;
    height: 650px;
    border-radius: 8px;
    object-fit: cover;
}

.categories .content2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
}
.categories .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
}

.categories h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.categories p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* Checkout */
.checkout-info h6{
    margin-left: 4px;
}
.cPrice {
    display: flex;
    margin-left: auto;
}
.checkout-products {

    border-left: solid 1px lightgrey;
}
/* Checkout */
/* Cart Page */
.cart-page{
    margin-top: 90px;
    margin-bottom: 10px;
}
.product-total {
    width: 100%;
    background-color: #f4f5f7;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid lightgrey;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.product-total .product-section .checkout-button{
    position: relative;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #57a773;
    border-radius: 10px;
    margin-bottom: 10px;
    top: 10px;
    color: #f8fbf9;
    text-decoration: none;
}
.product-total .product-section .checkout-button i{
    padding: 4px;
    background-color: white;
    color: green;
    margin-left: 10px;
    border-radius: 20px;
}
.product-total .product-section .checkout-button:hover,
.product-total .product-section .checkout-button:hover i{
    background-color: black;
    color: red;
    transition: .5s;
}
.product-total .product-section p {
    margin-top: 15px;
    font-size: 0.85rem;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.product-total .product-section span {
    float: right;
    font-weight: bold;
}
.product-details {
    width: 100%;
    background-color: #f4f5f7;
    padding: 15px;
    border: 1px solid lightgrey;
    border-radius: 20px;
}
.product-details .product-items{
    height: 120px;
    width: 100%;
    margin-top: 20px;
}
.product-details .product-items .product-quantity {
    position: relative;
    top: 20px;
}
.product-details .product-items img{
    width: 150px;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    float: left;
}
.product-details .product-items .product-Title{
    width: 60%;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    top: 30px;
    left: 2px;
}
.product-details .product-items .product-price{
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    top: 10px;
    left: 2px;
    float: right;
}

.product-details .product-items .product-remove{
    float: right;
    text-decoration: none;
    color: #67778A;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.product-details .product-items .product-remove:hover{
    color: black;
}

/* Cart Page */
.badge {
    position: relative;
    bottom: 5px;
    right: 5px;
    background-color: #ff5722; /* Adjust color as needed */
    color: white;
    font-size: 0.55rem; /* Adjust size as needed */
    padding: 0.25em 0.5em; /* Adjust padding as needed */
    border-radius: 50%;
}
.cart-details{
    background-color: #f4f5f7;
    padding: 10px;
}
.cart-details .cart-quantity {
    position: relative;
    top: 20px;
    left: 10px;
    color: #67778A;
}
.cart-details img{
    max-width: 55px;
    max-height: 100%;
    mix-blend-mode: multiply;
    float: left;
    margin: 5px;
}
.cart-details .cart-price{
    float: right;
    font-weight: normal;
}
.cart-details .product-quantity{
    float: right;
    font-size: 0.88rem;
}
.cart-details .cart-section span{
    float: right;
}
.cart-details .cart-items{
    margin-top: 50px;
}
.cart-details .cart-items .cart-Title{
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    top: 10px;
    left: 2px;
}
.cart-details .cart-total {
    font-weight: bold;
}
.cart-buttons {
    display: flex;
    margin-top: 10px;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}
.cart-buttons .cart {
    padding: 10px;
    background-color: black;
    color: white;

    text-decoration: none;
    border-radius: 10px;
}
.cart-buttons .cart i {
    padding: 5px;
    background-color: white;
    color: black;
    border-radius: 20px;
}
.cart-buttons .cart:hover{
    background-color: red;
    color: black;
    transition: .5s;
}
.cart-buttons .checkout:hover,
.cart-buttons .checkout:hover i{
    background-color: green;
    color: white;
    transition: .5s;
}
.cart-buttons .checkout{
    padding: 10px;
    background-color: #ff151c;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}
.cart-buttons .checkout i {
    padding: 5px;
    background-color: white;
    color: red;
    border-radius: 20px;
}
/* Cart */
/*Toast*/
.notification {
    position: absolute;
    width: max-content;
    left: 0;
    right: 0;
    bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    background-color: var(
            --notification-background);
    color: var(--notification-primary);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    animation: fade-in 3s linear;
}

.notification__icon {
    height: 26px;
    width: 26px;
    margin-right: 4px;
}

.notification__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 8px;
}

.notification__progress {
    position: absolute;
    left: 8px;
    bottom: 4px;
    width: calc(100% - 16px);
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(
            to right,
            var(--notification-background),
            var(--notification-primary)
    );
    border-radius: inherit;
    animation: progress 1.5s 0.3s linear;
}

@keyframes fade-in {
    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    95% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}
/*Toast*/
.filter-card {
    z-index: 100 !important;
}
.overlay-container {
    position: relative; /* Container with relative positioning */
}
.overlay-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* Make sure it has a higher z-index than the content */
}
/* Glider Custom */
.glider-custom {
    max-width: 100%;
    margin-left: 70px;
    margin-right: 70px;
    mix-blend-mode: multiply !important;
}
.glider-custom .glider-img {
    max-width: 150px;
    max-height: 300px;
    margin-left: 30px;
    overflow: hidden;
    position: relative;
    margin: auto;
}
.glider-custom .glider-img img {
    object-fit: contain;
    height: 150px;
    width: 100%;
}
.glider-custom .glider-description{
    text-align: center;
}
.glider-custom .glider-description a{
    text-decoration: none;
    color: black;
}
.glider-custom .glider-description a:hover{
    color: #ff9f00;
}
/* Glider Custom */

/* Icons Footer */
.footer-style{
    background-color:#212121;
    color: white;
}
.social-icons i{
    font-size: 25px;
    padding: 7px;

    border-radius: 20px;
}


.social-icons  .fa-square-facebook{
    color: #3b5998;
}
.social-icons .fa-instagram{
    color:#F47E0A ;
}

.social-icons .fa-tiktok{
    color: black;
}
/* Icons Footer */
.same-cat{
    margin-left: 70px;
    width: 90%;
}
.features {
    font-size: 0.85rem;
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 20px;
}
.feat {
    width: 100%;
}
.description i{
    color: green;
}
.desc {
    font-weight: bolder;
    background-color: rgba(218, 223, 225, 1);
    padding: 2px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.20rem;
}
.prods .prod-info span{
    position: relative;
    left: 40%;
}
.productDesc li{
    padding: 5px;
}
.product-page .row{
    margin-top: 10px;
    padding: 10px;
    margin-left: 70px;
}

.product-page .img-div{
    width: 580px; /* Adjust to your desired size */
    height: 500px; /* Adjust to your desired size */
    overflow: hidden; /* Crop overflow if needed */
    position: relative;
    background-color: transparent;
}
.product-page .img-div img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* This ensures the image covers the container without distortion */
    position: absolute;
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
}
.product-page .product-info .productName{
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: 0.9;
}
.product-page .product-info .productPrice{
    font-weight: 500;
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
    margin-left: 10px;
    margin-bottom: 15px;
}
.product-page .product-info .btngroup{
    margin-top: 22px;
}
.product-page .product-info .btngroup button{
    display: inline-block;
    font-size: 16px;
    font-family: inherit;
    text-transform: uppercase;
    padding: 15px 16px;
    color: #fff;
    transition: all 0.3s ease;
}
.product-page .product-info .btngroup button i{
    margin-right: 8px;
}
.product-page .product-info .btngroup .AddToCart{
    background-color: #ff9f00;
    border: 2px solid #ff9f00;
    margin-right: 8px;
}

.product-page .product-info .btngroup .AddToCart:hover{
    background-color: #fff;
    color: #ff9f00;
}
.product-page .product-info .btngroup .BuyNow{
    background-color: #000;
    border: 2px solid #000;

}
.product-page .product-info .btngroup .BuyNow:hover{
    background-color: #fff;
    color: #000;
}
/* Custom pagination */
.hidden{
    opacity: 0;
}
.hidden2{
    opacity: 0;
    display: none !important;
}
/* Custom pagination */
/* No products */
.noproducts {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #f4f5f7;
    padding: 10px;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);

}
.noproducts img {
    width: 500px;
    height: 500px;
}
.noproducts h3{
    font-weight: bold;
    text-transform: uppercase;
    color: #b5b5b5;
}
.noproducts p{
    font-size: 0.85rem;
}
/* No products */
/* Breadcrumb */
.custom-breadcrumb{
    width: 100%;
    padding: 17px 5px 5px 0;
    margin-bottom: 10px;
    background-color: #f4f5f7;
}
.custom-breadcrumb .breadcrumb{
    margin-left: 85px;
}
.custom-breadcrumb .breadcrumb a{
    font-size: 14px;
    list-style: none;
    text-decoration: none;
    font-weight: normal;
    color: black;
}
.custom-breadcrumb .breadcrumb .active a {
    font-weight: bold !important;
    text-decoration: underline;
}
/* CSS */
.spinner {
    /* Define the spinner styles here */
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
    display: none; /* Initially hidden */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-header {
    font-weight: bold;
    text-align: center;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    font-size: 40px;
    border-radius: 10px;
    text-transform: uppercase;
}
.sale-title {
    font-weight: bold;
    margin-left: 70px;
    color: #09144f;
    text-transform: uppercase;
}
#slider{
    height: 10px;
}

#slider .noUi-connect {
    background: #c0392b;
}

#slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px; /* half the width */
    border-radius: 9px;
}
#slider .noUi-tooltip {
    font-size: 12px; /* Adjust the font size as needed */
    padding: 4px 8px; /* Adjust the padding as needed */
}
#slider .noUi-tooltip {
    top: auto;
    left: -10px;
    bottom: -30px; /* Adjust the distance between the handle and the tooltip as needed */
    transform: translateY(0);
    transition: transform 0.2s ease-in-out;
}

/* To reverse the tooltip arrow */
#slider .noUi-tooltip::before {
    border-top-color: transparent;
    border-bottom-color: #3E3E3E; /* Adjust the background color as needed */
    transform: rotate(190deg);
}
/* Sort Category*/
.custom-pagination{
    display: flex;
    margin-top: 10px;
}
.sortfilter {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px;
    height: 60px;
    background-color: white;
    width: calc(100% + 25px )!important;
}
.sortfilter p {
    margin:10px;
    font-size: 0.85rem;
}
.sortfilter li {
    margin-top: 15px;
}
.sortby{
    height: 40px;
    max-width: 12%;
    font-size: 0.82rem;
    font-weight: bold;
}
/* Sort Category*/
/* Filters */
.filters {
    margin-left: 70px;
}
.category-products{
    width: calc(100% + 25px);
    height: 450px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);

}
.category-products img{
    height: 200px;
    width: 100%;
    overflow: hidden;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.category-products .price {
    margin: 0 0 0 5px;
}
.category-products .price span{
    font-weight: bold;
}
.category-products .price sup{
    font-weight: normal;
}
.category-products .shipping{
    color: #333;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    margin-top: 5px;
}

.custom-button {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.8rem;
    background-color: #3498db; /* Use a deep blue color */
    color: #fff;
    border: 2px solid #3498db; /* Add a border */
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.custom-button span {
    display: inline-block;
    transition: transform 0.5s, opacity 0.5s;
}

.custom-button:hover span {
    transform: translateX(100%);
    opacity: 0;
}

.custom-button::before {
    content: "";
    background-color: #3498db; /* Set the background color for the hover effect */
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: width 0.3s;
    z-index: -1;
}

.custom-button:hover::before {
    width: 100%; /* Expand the background color on hover */
}

.item-title {
    font-weight: 600;
    font-size: 16px;
    margin-top: 5px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.375;
    word-wrap: break-word;
    word-break: break-word;
}

/* Filters */

/* On sale stuff */
.gap20{
    row-gap: 15px;
    column-gap: 55px;
}

/* Custom Laptop */
.custom-laptops {
    margin-left: 70px;
}
.custom-laptops .card{
    background-color: white;
    border: none;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-laptops img {
    aspect-ratio: 3 / 2;
    mix-blend-mode: multiply;
}
/* Custom Laptop */

/* Product Section Styling */
.product-section-index {
    margin-top: -100px; /* Pull up product cards to overlap with hero section */
    z-index: 2;
    top: 60px;
    margin-bottom: 3rem;
}
.product-section-index .product-card img {
    height: 100%;
    width: 250px;
    aspect-ratio: 4/3;
    object-fit: contain;

}
.product-section-index .product-card .product-card-image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-section-index .product-card-details{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
    gap: 10px; /* Optional gap between grid items */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-section-index .product-card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-section-index .product-card:hover {
    transform: scale(1.05); /* Slight scale-up on hover */
}

.product-section-index .product-card .card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.product-section-index .product-card .card-text {
    color: #e60023;
    font-size: 1.5rem;
}


/* Login */

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%, -50%);
}
.text p{
    color: #fff;
    font-size: 18px;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.input-box{
    width: 330px;
    box-sizing: border-box;
}
.input-box header{
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
}
.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;

}
.input {
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}
.input-box .input-field label{
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}
.input-field .input:focus ~ label{
    top: -10px;
    font-size: 13px;

}
.input-field .input:valid ~ label{
    top: -10px;
    font-size: 13px;
    color: #5d5076;
}
.input-field .input:focus{
    border-bottom: 1px solid #743ae1;
}
.submit{
    border: none;
    outline: none;
    height: 45px;
    background: lightgreen;

    border-radius: 5px;
    transition: .4s;
}
.submit:hover{
    background: rgba(37, 95, 156, 0.9);
    color: #fff;
}
.signin{
    text-align: center;
    font-size: small;
    margin-top: 25px;
}
.span a{
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: .5s;
}

/* Login */

/* Custom Cart */
.custom-cart {
    color: #fa5625;
    font-weight: bold;
}
.custom-cart i {
    font-size: 15px;
    margin-left: 5px;
}
.custom-cart a{
    list-style: none;
    text-decoration: none;
    color: black;
}
/* Custom Cart */

/* Custom Partners Stuff */
.custom-partners {
    background: none;
    border: none;
    align-items: center;
    z-index: 0;
}
.custom-partners  img{
    max-height: 100px;
    width: 109px;
    margin-top: 10px;
}
.custom-partners:hover  img{
    transform: scale(1.2);
    transition: .5s;
    z-index: 3;
}
.toshiba-fix img{
    position: relative;
    width: 60%;
}
/* Custom Products Stuff */
.custom-products {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: none;
    transition: .5s;
    height: 500px;
    width: 500px;
    position: relative;
    background-color: whitesmoke;
    height: 100%;
    width: 100%;
}
.custom-products a {
    list-style: none;
    text-decoration: none;
    color: black;

}
.custom-products img {
    height: 250px;
    width: 300px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.custom-products:hover {
    z-index: 3; /* Bring hovered card to the top */
}
.custom-products  h1{
    padding: 10px;
}
.custom-products  .details ul li{
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.custom-products .details h6 s{
    position: absolute;
    font-size: 20px;
    left: 10px;
}

.custom-products:hover  .details ul li{
    opacity: 1;
    visibility: visible;
}
.custom-products .details .title{
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    top: 10px;
    text-align: center;
}
.custom-products .details h4{
    position: relative;
    text-align: center;
}
/* Custom Card Stuff */
.samerow .custom-card .poster{
    height: 200px!important;
}
.custom-card{
    position: relative;
    width: 100%;
    max-height: 425px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.custom-card .poster{
    position: relative;
    overflow: hidden;
}
.custom-card .poster::before{
    content: "";
    position: absolute;
    bottom: -190px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #1064a6 20% ,transparent);
    transition: 0.5;
    z-index: 1;
}
.custom-card:hover .poster::before{
    bottom: 0px;
}
.custom-card:hover .poster img{
    transform: translateY(-180px);
    filter: blur(2px);
}
.custom-card .poster img{
    transition: 0.5s;
    width: 100%;

}
.custom-card .details{
    position: absolute;
    bottom: -130px;
    left: 0;
    padding: 20px;
    width: 100%;
    z-index: 2;
    transition: 0.5s;
}
.custom-card:hover .details{
    bottom: 0;
}
.custom-card .details .logo{
    max-width: 180px;
}
.custom-card .details h3{
    font-size: 0.8em;
    color: white;
}
.custom-card .details .rating{
    position: relative;
    padding: 5px 0;

}
.custom-card .details .rating .fa-star{
    color: whitesmoke;
    font-size: 1em;
}
.custom-card .details .rating span{
    color: whitesmoke;
}
.custom-card .details .tags{
    position: relative;
    margin-top: 5px;
}
.custom-card .details .tags span{
    padding: 2px 5px;
    color: whitesmoke;
    background-color: #03a8f5;
    border-radius: 4px;
}
.custom-card .details .tags span:nth-child(2)
{
    background: black;
}
.custom-card .details .info{
    color: #fff;
    margin-top: 10px;
}
.custom-card .details .cast{
    position: relative;

}

.custom-card .details .cast h4{
    color: white;
    margin-top: 10px;
}
.custom-card .details .cast ul{
    position: relative;
    display: inline-flex;
    gap: 5px;
    margin-top: 10px;
}
.custom-card .details .cast ul li{
    list-style: none;
    width: 35px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
}
.custom-card .details .cast ul li img{
    max-width: 100%;

}
/* Custom Search bar */
/* Style the search container */
.search-container{
    width: 50%;
}
.custom-search input{
    border: none;
    outline: 1px solid lightgrey;
    padding: 10px 10px;
    border-radius: 50px 50px 50px  50px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.custom-search input:focus{
    border: none;
    outline: 1px solid lightgrey;
    padding: 10px 10px;
    border-radius: 50px 50px 50px 50px;

}
.custom-search button {
    position: relative;
    right: 50px;
    color: black;
    background: none;
    border: none;
    outline: none;
    margin-bottom: 15px;
}

/* Nav Scroller */
.nav-scroller .nav {
    color: rgba(255, 255, 255, .75);
    background-color: black;
}
.phone {
    color: #fff;
    font-size: 12;
}
.wrap {
    background: #202020;
}
.wrap .phone a {
    color: #fff;
    font-size: 12px; }

.social-media {
    display: inline-block; }
.social-media p a {
    width: 34px;
    height: 34px;
    background: #4d4d4d;
    margin-right: 1px; }
.social-media p a span {
    color: #fff;
}
.social-media a {
    text-decoration: none;
}
.social-media p a:hover {
    background: #f1bc31;
    border-color: #f1bc31; }

/* Custom Branding */

/* CUSTOM TABLE */
.custom-table td{
    background-color: transparent;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.custom-table i{
    color: cyan;
    background-color: black;
    padding: 10px;
    font-size: 25px;
    border-radius: 50%;
    align-content: center;
}

/* RESPONSIVE CSS
-------------------------------------------------- */
/* max-width 640px, mobile-only styles, use when QAing mobile issues */
@media only screen and (max-width: 40em) {
    .filter-card {
        z-index: 1;
    }
    .categories .laptop{
        height: 280px;
    }
    .product-section-index{
        top: 0px;
        padding-top: 3rem;
        margin-top: 0px !important;
    }
    .custom-row{
        max-width: 320px;
    }
    .custom-laptops {
        margin-left: 0;
    }
    .search-container{
        width: 100%;
    }
    .sidebar {
        background-color: rgba(255, 255, 255, .15);
        backdrop-filter: blur(10px);
        color: white;
    }
    .sidebar-body ul li a {
        color: white;
    }
    .sidebar-body ul li .active {
        padding: 5px;
        border-radius: 15px 0px 15px 0px;
        background-color: red;
    }
    .product-details .product-items{
        height: 120px;
        width: 100%;
        margin: 0;
    }
    .product-details .product-items img{
        width: 100px;
    }
    .product-details .product-items .product-Title {
        width: 100%;
        margin-top: -15px;
        margin-bottom: 20px;
    }
    .product-total {
        margin-top: 15px;
    }

    .custom-table i{
        color: cyan;
        background-color: black;
        padding: 5px;
        font-size: 15px;
        border-radius: 50%;
        align-content: center;

    }
    .custom-brand{
        color: black;
        font-weight: bold;
        letter-spacing: 5px;
        font-size: 20px;
        border-bottom: 5px solid cyan;
        border-radius: 10px;

    }
    .navbar-active{
        border: none;
        text-decoration: underline;
        text-decoration-color: red;
        text-decoration-thickness: 5px;
    }
    .custom-products{
        width: 100%;
    }
    .custom-products img {
        height: 250px;
        width: 100%;
        object-fit: contain;
        mix-blend-mode: multiply;
    }
    .custom-laptops button{
        position: relative;
        right: 30px;
        width: 100%;
        font-size: 13px;
    }

    .filters {
        margin-left: 0;
    }

    .sortfilter{
        width: 100%;
    }

    .sortfilter p{
        font-size: 0.80rem;
    }
    .sortfilter select{
        max-width: 100%!important;
        font-size: 0.72rem;
    }
    .category-products{
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .category-products img{
        height: 200px;
        width: 227px;
        display: block;
        margin: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
    }
    .category-products .custom-button{
        position: static;
    }
    .sortfilter{
        width: 100% !important;
        height: 230px;
        display: block!important;
    }
    .product-page .row{
        margin-left: 0;
    }
    .product-page .img-div{
        width: 100%;
        height: 100%;
    }
    .product-page .img-div img{
        width: 100%;
        height: 100%;
        position: relative;
    }
    .features {
        width: 100%;
        display: inline-block;
    }

    .custom-breadcrumb .breadcrumb{
        margin-left: 0px;
    }
    .btngroup .AddToCart {
        width: 100%;
        margin-bottom: 5px;
    }
    .btngroup .BuyNow {
        width: 100%;
    }
    .same-cat{
        width: 100%;
        margin-left: 0;
    }

}

/* Tv Only  */
@media (min-width: 2000px){

    .gap20{
        gap: 20px;
    }
    .features{
        width: 100%;
    }
    .description{
        width: 80%;
    }
    .feat{
        width: 100%;
    }
}
@media only screen and (min-width: 1752px) and (max-width: 1999px){

    .feat {
        width: 100%;
    }
    .description{
        width: 350px;
    }
    .desc {
        width: 60%;
    }
}
@media only screen and (min-width: 1199px) and (max-width: 1751px){

    .product-info .productPrice{
        display: inline-block;
        margin-left: 25px;
    }
    .product-page .row{
        margin-left: 0;
    }
    .product-page .img-div{
        width: 100%;
        height: 400px;
    }
    .description{
        width: 80%;
    }
    .feat{
        width: 200px;
    }

    .btngroup{
        display: inline-flex;
        width: 100%;
    }
    .btngroup .AddToCart {
        width: 50%;
    }
    .btngroup .BuyNow {
        width: 50%;
    }
}
@media only screen and (min-width:992px) and (max-width: 1198px) {

    .categories .laptop{
        height: 480px;
    }
    .search-container{
        width: 49%;
    }
    .filters {
        margin-left: 0;
    }

    .category-products{
        width: calc(100% + 25px);
        height: 100%;
        border-radius: 0;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .category-products img{
        height: 200px;
        width: 100%;
        display: block;
        margin: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
    }
    .sortfilter{
        width: 100%;
    }

    .sortfilter p{
        font-size: 0.80rem;
    }
    .sortfilter select{
        max-width: 35%;
        font-size: 0.80rem;
    }

    .btngroup .AddToCart {
        width: 100%;
        margin-bottom: 5px;
    }
    .btngroup .BuyNow {
        width: 100%;
    }
    .features{
        width: 100%;
    }
    .description{
        width: 232px;
    }
    .feat{
        width: 185px;
    }
    .product-page .img-div{
        right: 100px;
        width: 540px;
    }
}
/* Medium screens */
/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (min-width: 40.063em) and (max-width: 62em) {
    .filter-card {
        z-index: 1;
    }
    .categories .laptop{
        height: 350px;
    }
    .product-section-index{
        padding-top: 0px !important;
        margin-top: -80px;
    }
    .lead{
        font-size: 12px;
    }
    .search-container{
        width: 100%;
    }
    .custom-table {
        position: relative;
        top: 100px;
    }
    .custom-table h1{
        position: relative;
        top: 100px;
    }
    .custom-card .poster img{
        transition: 0.5s;
        max-width: 100%;
        height: 300px !important;
    }
    .custom-products img {
        height: 250px;
        width: 100%;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

    .filters {
        margin-left: 0;
    }
    .category-products{
        width: calc(100% + 25px);
        height: 100%;
        border-radius: 0;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .category-products img{
        height: 150px;
        width: 100%;
        margin: 29px 0;
        object-fit: contain;
        mix-blend-mode: multiply;
    }
    .sortfilter{
        width: 100%;
    }

    .sortfilter p{
        font-size: 0.80rem;
    }
    .sortfilter select{
        max-width: 35%;
        font-size: 0.80rem;
    }
    .product-info .productPrice{
        display: inline-block;
        margin-left: 25px;
    }
    .product-page .row{
        margin-left: 0;
    }
    .product-page .img-div{
        width: 100%;
        height: 400px;
    }
    .features{
        width: 100%;
    }
    .description{
        width: 540px;
    }
    .feat{
        width: 150px;
    }
    .btngroup{
        display: inline-flex;
        width: 100%;
    }
    .btngroup .AddToCart {
        width: 50%;
    }
    .btngroup .BuyNow {
        width: 50%;
    }
    .same-cat{
        width: 100%;
        margin-left: 0;
    }
}
