.rtl a.nasa-title-menu {
    letter-spacing: unset !important;
}
body .tp-bullets.custom .tp-bullet.selected{
    background-color:#2f5abc !important;
}
body .service-block.style-3 .box .service-icon{
    color:#2f5abc !important;
}

@media only screen and (min-width: 768px) {
/* Footer: Recaptcha display with CF7 Form */
.footer-recaptcha {
    display: flex;
}

.footer-recaptcha input[type="email"] {
    flex: 1;
}

.recaptcha-container {
    margin-top: 10px !important;
}

#nasa-footer .footer-light-2 .footer-contact .wpcf7 p {
    margin-top: 18px !important;
}
.footer-recaptcha span.wpcf7-form-control-wrap.recaptcha {
    margin-left: 10px !important;
}

/* First footer column heigth */
#nasa-footer .footer-light-2 .contact-information {
    margin-top: 75px !important;
} 

/* Second footer column heigth */
.nasa-nav-sc-menu.delivery-information-clmn {
    margin-top: 80px !important;
    margin-left: 30px !important;
}

.footer-wrapper .wpcf7-form.submitting:after {
    left: 20% !important;
}
.main-img {
    height: 380px !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.main-img img {
    max-height: 100% !important;
    width: auto !important;
}
}
li.product-warp-item .product-item {
    text-align: center;
}


/* Rental Products and Rental Details - Max Width */
.rental-products, .rental-details {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Rental Listing - 3 Items Per Row */
.rental-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
}

/* Thumbnail Container for Rental Items */
.rental-thumbnail {
    width: 100%;
    height: 0;
    padding-bottom: 130%; /* Aspect ratio 180/236 */
    position: relative;
}

/* Container for the image */
.rental-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.rental-image img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

/* Rental Item - Column Layout */
.rental-item {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    max-width: 380px;
    overflow: hidden;
}

/* Rental Content Layout */
.rental-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 15px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
}

/* Title for Rental Item */
.rental-content h2 {
    font-size: 1.2em;
    color: #2f5abc;
    margin-bottom: 5px;
    min-height: 50px;
}

/* Excerpt for Rental Item */
.rental-excerpt {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Prices */
.rental-prices {
    border-radius: 25px;
}

/* Rental Prices Table */
table.rental-prices th, table.rental-prices td {
    padding: 20px 10px;
    text-align: center;
    border: 1px dashed #000;
    color: #2f5abc;
    font-weight: 600;
}

table.rental-prices th {
    color: #000;
}

/* Rental Button */
.rental-button {
    background-color: #2f5abc;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.rental-button:hover {
    background-color: #2f5abc;
    color: white !important;
}

/* Product Details Page */
.rental-product-details {
    padding: 20px;
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.product-image {
    width: 50%;
    margin-right: 30px;
    text-align: center;
}

.product-image img {
    width: auto;
    height: 100%;
    border-radius: 10px;
    margin: 10px auto;
}

.product-info {
    flex: 1;
    width: 100%;
    margin: 0 auto;
}

.product-excerpt {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.product-prices {
    margin-top: 20px;
}

.price-section {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    justify-content: center;
}

.price {
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.price::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background-color: #ddd;
}

.price:last-child::after {
    display: none;
}

.rate-value {
    font-size: 45px;
    font-weight: 600;
    color: #2f5abc;
    margin-bottom: 0;
    position: relative;
}

/* Dollar Sign Styling */
.dollar-sign {
    font-size: 18px;
    position: absolute;
    top: 5px;
    left: -15px;
    color: #2f5abc;
}

.rate-label {
    font-size: 12px;
    color: #666;
    margin-top: 0;
}

/* Product Description */
.product-description {
    margin-top: 30px;
}

.product-description h2 {
    font-size: 24px;
    color: #333;
}

/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        width: 100%;
        margin-right: 0;
    }

    .product-info {
        flex: 1;
        padding-left: 0;
        text-align: left;
    }

    .product-excerpt {
        font-size: 16px;
    }

    .price-section {
        align-items: flex-start;
    }

    .price {
        width: 100%;
        margin-bottom: 10px;
    }

    .rate-value {
        font-size: 36px;
    }

    .rental-listing {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .rental-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .rental-item {
        max-width: 90%;
        padding: 10px;
        margin: auto;
    }

    .rental-thumbnail {
        padding-bottom: 150%; /* Adjust the aspect ratio for mobile */
    }

    .rate-value {
        font-size: 32px;
    }

    .rental-content h2 {
        font-size: 1.1em;
    }
}
.product-type-simple.product-item  {
    text-align: center;
}
body .nasa-product-grid .add_to_cart_text,body .nasa-product-grid .add-to-cart-grid{
    background-color: #337ebf !important;
}
.contact-info {
    text-align: center; /* Center the title */
    margin: 0 auto;
    border: 1px solid #2f5abc;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2f5abc;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between phone and email */
    flex-wrap: wrap;
}

.contact-details p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.contact-details i {
    color: #2f5abc; /* Use primary color */
}

.contact-details a {
    text-decoration: none;
    color: #626161;
    font-weight: 400;
}

@media (max-width: 900px) {
    .contact-details {
    display: flex !important;
}
    .contact-info,.contact-details,.product-info {
        flex-direction: row !important; /* Keep email and phone on the same row */
        justify-content: center !important;
    }
}


.fast-slider .nasa-slick-slider .slick-slide{
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensure it takes full height */
    margin: 0 10px;
}
.slick-track {
    display: flex;
    align-items: center;
}

a.rental_contract{
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    text-decoration: none;
    margin-bottom: 15px !important;
    border-radius: 10px !important;
}

@media only screen and (max-width: 767px) {
    .product-category img, .product-item .main-img img {
        width: auto !important;
        height: 150px !important;
        margin: 10px  !important;
    }
}
/* 

.fast-slider .nasa-slick-slider .slick-track {
    transition: transform 600ms ease-in-out !important; 
}

.fast-slider .nasa-slick-slider .slick-slide {
    transition: all 600ms ease-in-out !important; 
}

.fast-slider .nasa-nav-arrow {
    transition: opacity 600ms ease-in-out !important;
}
strong.bold {
    font-weight: 600 !important;
}
i.pe-7s-note2 {
    display: none;
}
.fast-slider .nasa-slick-slider .slick-track {
    display: flex;
    width: max-content;
    animation: autoScroll 3000s linear infinite;
}

@keyframes autoScroll {
    0% { transform: translateX(0); }
    20% { transform: translateX(-100%); }
    40% { transform: translateX(-200%); }
    60% { transform: translateX(-300%); }
    80% { transform: translateX(-400%); }
    100% { transform: translateX(0); }
}

.fast-slider .nasa-slick-slider:hover .slick-track {
    animation-play-state: paused;
} */
span.nasa-wishlist-count.nasa-mini-number.wishlist-number, span.nasa-cart-count.nasa-mini-number.cart-number, .nasa-static-sidebar.nasa-active .nasa-sidebar-close a:hover, body .nasa-static-sidebar .btn-mini-cart a.checkout ,body .nasa-static-sidebar .btn-mini-cart a.checkout:hover 
,body .product-info .cart .single_add_to_cart_button:hover, body #cart-sidebar.style-1 a.nasa-sidebar-return-shop:hover, body #nasa-wishlist-sidebar.style-1 a.nasa-sidebar-return-shop:hover, body #nasa-popup .wpcf7 input[type="button"]:hover, body #nasa-popup .wpcf7 input[type="submit"]:hover, body #nasa-footer .footer-light-2 .footer-contact .btn-submit-newsletters:hover, body .nasa-hoz-buttons .nasa-product-grid .add-to-cart-grid:hover, body .nasa-hoz-buttons .nasa-product-grid .btn-wishlist:hover, body .nasa-hoz-buttons .nasa-product-grid .quick-view:hover, body .nasa-hoz-buttons .nasa-product-grid .btn-compare:hover, body .nasa-product-content-select-wrap .nasa-product-content-child .nasa-toggle-content-attr-select .nasa-attr-ux-item.nasa-active {
    background-color: #045bbc !important;
}
.nasa-sidebar-close a:hover{
	border: 1px solid #045bbc !important;
}
body .nasa-product-content-select-wrap .nasa-product-content-child .nasa-toggle-content-attr-select .nasa-attr-ux-item.nasa-active{    border-color:  #045bbc !important;
    border-color:  #045bbc !important;
}
body .product-info .cart .single_add_to_cart_button:hover, body #cart-sidebar.style-1 a.nasa-sidebar-return-shop:hover, body #nasa-wishlist-sidebar.style-1 a.nasa-sidebar-return-shop:hover, body #nasa-popup .wpcf7 input[type="button"]:hover, body #nasa-popup .wpcf7 input[type="submit"]:hover, body #nasa-footer .footer-light-2 .footer-contact .btn-submit-newsletters:hover, body .nasa-hoz-buttons .nasa-product-grid .add-to-cart-grid:hover, body .nasa-hoz-buttons .nasa-product-grid .btn-wishlist:hover, body .nasa-hoz-buttons .nasa-product-grid .quick-view:hover, body .nasa-hoz-buttons .nasa-product-grid .btn-compare:hover, body .nasa-product-content-select-wrap .nasa-product-content-child .nasa-toggle-content-attr-select .nasa-attr-ux-item.nasa-active,
.woocommerce-notices-wrapper .woocommerce-info:not(.cart-empty):before, .woocommerce-message:not(.cart-empty):before, #yith-wcwl-message:not(.cart-empty):before{
    color: white !important;
}
.nasa-order-received .woocommerce-thankyou-order-received {
    color: #045bbc  !important;
}
.nasa-order-received ul.woocommerce-thankyou-order-details{
    border: 2px dashed #045bbc !important;
}
.AuthorizeNetSealContainer {
    padding: 20px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .nasa-close-menu-mobile:hover,body .nasa-close-menu-mobile:focus,body .nasa-close-menu-mobile:active{
        background-color: rgb(47, 90, 188) !important;
}
svg.ns-push-open {
    display: none;
}

a.button.checkout.wc-forward,.nasa-static-sidebar .btn-mini-cart .woocommerce-mini-cart__buttons a.checkout, .ns-cart-popup-v2 .btn-mini-cart .woocommerce-mini-cart__buttons a.checkout {
    background-color: #045bbc !important;
    border-color: #045bbc !important;
    color: #FFF !important;
}
body a:hover{
    color: #045bbc !important;
}

.large-12.columns.ns-before-archive-products {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    margin-top: 10px;
}
span.nasa-labels-filter-text, .nasa-labels-filter-top .nasa-top-row-filter li .nasa-tab-filter-topbar,.sort-bar .nasa-filter-order .woocommerce-ordering .sort-text,.woocommerce-ordering .nasa-current-orderby {
    font-weight: bold;
}