﻿@tailwind base;
@tailwind components;
@tailwind utilities;


@font-face {
    font-family: 'Dax_Regular';
    font-weight: 400;
    font-display: auto;
    src: url('/static/fonts/dax-regular-1361513784.ttf') format('truetype');
}

@font-face {
    font-family: 'Dax_Medium';
    font-weight: 400;
    font-display: auto;
    src: url('/static/fonts/DaxMedium.ttf') format('truetype');
}

@font-face {
    font-family: 'Dax_Light';
    font-weight: 400;
    font-display: auto;
    src: url('/static/fonts/DaxLight-1.ttf') format('truetype');
}

@font-face {
    font-family: 'Dax_Bold';
    font-weight: 900;
    font-display: auto;
    src: url('/static/fonts/DaxBold.ttf') format('truetype');
}

:root {
    --primary-color: #682E92;
    --font-family: 'Dax_Medium',Helvetica,Arial,sans-serif;
}

 
body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Dax_Medium';
    overflow-x: hidden !important;
    overflow-y: scroll;
}

[class^="socials--"] {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 20px;
    width: 20px;
    background-color: var(--primary-color);
}

[class^="socials-blog-"] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 28px;
    width: 28px;
    border: 1px solid #ddd;
    color: black;
    border-radius: 50%;
}

[class^="socials-footer-"] {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 32px;
    width: 32px;
    
}

#header {
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.16);
}

.menu {
    white-space: nowrap;
}

    .menu .dropdown {
        /*left: 0;*/
        z-index: 9;
        font-size: .85rem;
        top: 57px;
        opacity: 1;
        border-top: 4px solid #672F8E;
    }

        .menu .dropdown.hidden {
            transition: opacity 0.5s ease-in-out;
            opacity: 0
        }

        .menu .dropdown::before {
            content: "";
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #672F8E;
            position: absolute;
            top: -13px;
            right: 50px
        }

        .menu .dropdown.sub-category-menu::before {
            right: 68%
        }

@media (max-width: 1024px) {
    .menu .dropdown::before {
        display: none;
    }
}

.menu .dropdown [role='menu'], .dropdown {
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}

.menu .nav-item {
    cursor: pointer;
}

.dropdown [role='menu'] {
}

.hidden {
    display: none;
}

i {
    min-width: 16px;
}

.socials i {
    min-width: 13px;
}

.rotate-180 {
    transform: rotate(180deg)
}

#sidebar {
    white-space: nowrap;
    padding: 8px;
    min-width:300px !important;
}
/*.slick-list {
    display: flex !important;
    justify-content: center !important;
}*/

#sendEnquiryPopup input,
#sendEnquiryPopup textarea {
    background-color: #682e9221;
    padding: 8px;
}

ul, ol {
    margin-left: 40px !important;
}

.text-[#ffff], .text-[#fff] {
    color: #ffff !important;
}

.text-[#000] {
    color: #000 !important;
}

.scrollbar-hide::-webkit-scrollbar {
    width: 0; /* Remove scrollbar space */
    background: transparent; /* Optional: blend scrollbar into background */
    height: 0;
}
/* Optional: show scrollbar track on hover */
.scrollbar-hide::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
}



#accordion-collapse::-webkit-scrollbar,
.product-category-header::-webkit-scrollbar {
    width: 3px; /* Remove scrollbar space */
    background: #eee; /* Optional: blend scrollbar into background */
    height: 2px;
}
/* Optional: show scrollbar track on hover */

#accordion-collapse::-webkit-scrollbar-thumb:hover,
.product-category-header::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
}
