/* Global */
   
    @font-face {
        font-family: 'Inter_Tight';
        src: url('../../Font/Inter_Tight/static/InterTight-Regular.ttf') format('truetype'); /* Adjust the path to your font file */
    }
    @font-face {
        font-family: 'Inter_Tight_bold';
        src: url('../../Font/Inter_Tight/static/InterTight-Bold.ttf') format('truetype'); /* Adjust the path to your font file */
    }
    
    /* Hide the default scrollbar */
    ::-webkit-scrollbar {
        width: 10px; /* Width of the scrollbar */
        margin-left: 10px;
        
    }
    
    /* Track */
    ::-webkit-scrollbar-track {
        background: #efefef; /* Color of the track */
    }
    
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: var(--theme-main-color); /* Color of the scrollbar handle */
        border-radius: 10px;
    }
    
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--theme-main-color); /* Color of the scrollbar handle on hover */
    }
    
    body {
        font-family: 'Inter_Tight'; /* Use 'Inter_Tight' as the primary font and fallback to a generic sans-serif font */
        letter-spacing:0.8px;
    }
    a{
        text-decoration: none;
    }
    .theme-color{
        color: var(--theme-main-color) !important;
    }
    .theme-light-background{
        background-color: var(--theme-secondary-color) !important;
    }
    .required-filed{
        color: #ff0000;
    }
    .wine-btn{
        background-color: var(--theme-main-color) !important;
        color: var(--theme-text-color) !important;
        border-radius: 50px;
        text-decoration: none;
        padding: 10px 80px;
        position: relative;
        overflow: hidden;
        z-index: 9;
        border: none;
    }

    .wine-btn:hover{
        background-color: var(--theme-main-color);
        color: var(--theme-text-color);
    }

    .wine-btn:before {
        background:  #d3ac37;
        content: "";
        height: 50px;
        left: -100%;
        opacity: 1;
        position: absolute;
        top: 0px;
        transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
        width: 100%;
        z-index: -10;
    }
    .wine-btn:hover:before {
        left: 120%;
        transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    }

    .wine-btn-cancel{
        background: #F9F9F9;
        color: #757575;
        border-radius: 50px;
        text-decoration: none;
        padding: 10px 80px;
        position: relative;
        overflow: hidden;
        z-index: 9;
        border: none;
    }

    .wine-btn-cancel:hover{
        background-color: #F9F9F9;
        color:  #757575;;
    }

    .wine-btn-cancel:before {
        background:  #F9F9F9;
        content: "";
        height: 50px;
        left: -100%;
        opacity: 1;
        position: absolute;
        top: 0px;
        transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
        width: 100%;
        z-index: -10;
    }
    .wine-btn-cancel:hover:before {
        left: 120%;
        transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    }
    
    .custom-checkbox {
        display: none;
    }

    /* Style the labels to act as custom checkboxes */
    .custom-checkbox + label {
        display: inline-block;
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        padding-top: 5px;
    }

    /* Create the custom checkboxes */
    .custom-checkbox + label::before {
        content: "";
        display: inline-block;
        width: 30px;
        height: 30px;
        border: 2px solid var(--theme-main-color);
        background-color: white; /* Inner color */
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 10px;
    }

    /* Center the check mark */
    .custom-checkbox + label::after {
        content: "\2713";
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 1px;
        left: 5px;
    }

    /* Change the inner color when the checkbox is checked */
    .custom-checkbox:checked + label::before {
        background-color: var(--theme-main-color); /* Change inner color when checked */
    }

    .custom-radio {
        display: none;
    }
    
    /* Style the labels to act as custom radio buttons */
    .custom-radio + label {
        display: inline-block;
        position: relative;
        padding-left: 30px;
        cursor: pointer;
    }
    
    /* Create the custom radio buttons */
    .custom-radio + label::before {
        content: "";
        display: inline-block;
        width: 25px;
        height: 25px;
        border: 2px solid var(--theme-main-color);
        background-color: white; /* Inner color */
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 50%; /* Making it circular */
    }
    
    /* Center the dot for radio button */
    .custom-radio + label::after {
        content: "";
        width: 15px;
        height: 15px;
        background-color: var(--theme-main-color);
        position: absolute;
        top: 5px;
        left: 5px;
        border-radius: 50%; /* Make it circular */
        display: none; /* Hide the dot by default */
    }
    
    /* Show the dot when the radio button is checked */
    .custom-radio:checked + label::after {
        display: block;
    }
    
    label{
        font-weight: 600;
    }

    .text-right{
        text-align: right;
    }

    .padding-left-0{
        padding-left: 0 !important;
    }
    .padding-right-0{
        padding-right: 0 !important;
    }
    a{
        color: var(--theme-main-color);
    }
    
/* ================= Header Start ================= */
    nav.navbar{
        top: 0px;
        width: 100%;
        transition: all 0.8s;
        z-index: 99;
        background-color: var(--theme-text-color);
        border-bottom: 2px solid var(--theme-main-color);
        padding: 0;
    }

    nav.navbar.darkHeader {
        box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, 
        rgb(0 0 0 / 30%) 0px 1px 3px -1px;
        position: fixed;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-animation: slideDown 1s ease-out;
        animation: slideDown 1s ease-out;
    }

    nav.navbar img {
        /* transition: all 0.8s; */
        height: 80px;
    }
    @-webkit-keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

    nav.navbar ul li.nav-item.dropdown, 
    nav.navbar ul li.nav-item {
        padding: 21px 12px;
        font-size: 16px;
        transition: all 0.2s;
        font-weight: 700;
    }
    nav.navbar ul li.nav-item.dropdown a.db-header-btn {
        background-color: #118c97;
        border-radius: 4px;
        color: #fff;
        padding-inline: 20px;
    }
    nav.navbar ul li a{
        color: #262626;
    }

    nav.navbar ul li .dropdown-menu .dropdown-item {
        color: #000;
        font-size: 16px;
        padding: 10px 15px;
        transition: all 0.3s;
        white-space: break-spaces;
        font-weight: 500;
        word-break: break-all;
    }

    .slider-nav .slick-list .slick-track {
        width: 100% !important;
    }

    nav.navbar ul li:hover .dropdown-menu:not(header li.dropdown .dropdown-menu) {
        display: block !important;
    }

    nav.navbar ul.dropdown-menu {
        padding:0px;
    }
    
    nav.navbar ul.dropdown-menu.features-dropdown{
        width: 218px;
    }

    nav.navbar ul.dropdown-menu.member-dropdown{
        left: auto !important;
        width: 100%;
        min-width: max-content;
        right: 0px;
    }

    nav.navbar ul li .dropdown-menu .dropdown-item:hover,
    nav.navbar ul li .dropdown-menu .dropdown-item.active {
        background: var(--theme-main-color);
        color: var(--theme-text-color);
    }

    .main-container{
        /* margin-top: 150px; */
        padding-top: 30px;
        padding-bottom: 60px;
        min-height:100vh;
    }
header.vendor-header nav.navbar {
    border-color: #118c97;
}
header.vendor-header nav.navbar ul li .dropdown-menu .dropdown-item:hover,
header.vendor-header nav.navbar ul li .dropdown-menu .dropdown-item.active {
    background: #118c97;
}
header ul.vendor-dropdown-menu ul.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
/* ================= Header End ================= */
