@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;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;
    box-sizing: border-box;
}

:root{
    --black-color:#333;
    --white-color:#fff;
    --green-color:#15BF5B;
    --orange-color:#F86202;

}

a{
    text-decoration: none;
}

ul, li, ol, p, h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    /* background: #FAFAFB; */
}

.form-control:focus, .navbar-toggler:focus{
    box-shadow: unset;
}

ul li{
    list-style-type: none;
}

/* ======================================================================
Header
====================================================================== */


/* .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030; 
    background-color: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
} */

.navbar-toggler {
    border: none; /* Remove default border */
}

.fa-bars, .fa-times {
    font-size: 1.5rem; /* Adjust icon size */
}

.fa-times {
    display: none; /* Initially hide the close icon */
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Ensure it spans the full width */
    z-index: 9999; /* Ensure it stays on top of other elements */
    background-color: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
}


.fixed-quick-links {
    position: sticky; /* Change from fixed to sticky */
    top: 120px; /* This defines the position from the top where it becomes sticky */
    z-index: 1020; /* Ensure it's above other content */
    transition: all 0.3s ease; /* Smooth transition */
}


.main-header{
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
    /* height: 80px; */
    /* position: relative; */
    transition: top 0.6s;
    margin-bottom: 2px;
}

.main-header .navbar{
    height: 100%;
}

.main-header .navbar-nav {
    margin-left: 90px;
    gap: 40px;
    background: #fff;
    position: relative;
    z-index: 9999;

}

  /* Ensuring proper visibility of dropdown on hover */
  .main-header  .dropdown-menu {
    display: none; /* Hide initially */
    opacity: 0;    /* Transparent initially */
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
    width: 300px;
}

.main-header .dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
    opacity: 1;     /* Fade in */
}

/* Prevent flickering on hover */
.main-header .dropdown-menu:hover {
    display: block;
    opacity: 1;
}

.main-header .dropdown-item{
    white-space: normal;
    word-break: break-all;
}

@media(max-width:991px){
    .main-header .navbar-nav{
        gap: 0;
        margin-left: 0;
        align-items: flex-start;
    }

    .main-header .navbar-nav .nav-link{
        display: inline-block !important;
    }
    .navbar-collapse{
        padding: 50px 0;
        background: #fff;
        position: relative;
        z-index: 9999;
        box-shadow: 0px 0px 2px 0px #C2D5E4;
        top: 25px;
    }

    .main-header .navbar-right-buttons{
        gap: 15px;
        justify-content: flex-start;
        margin-top: 10px !important;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start !important;
        padding-left: 15px;
    }

    .navbar-right-buttons .Start-trail-btn, .navbar-right-buttons .login-btn{
        width: auto !important;
        min-width: 138px !important;
    }
    .navbar-right-buttons .login-btn{
        min-width: 138px !important;
    }
}

.main-header .navbar-brand img {
    height: 40px; /* Adjust based on logo size */
}
.main-header .btn-login {
    background-color: #e53935;
    color: white;
}
.main-header .btn-start-trial {
    border: 1px solid black;
    background-color: transparent;
    color: black;
}
.main-header .nav-link {
    padding-left: 15px;
    padding-right: 15px;
}
.main-header .fa-play {
    padding-right: 5px;
}
.main-header .navbar-right-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-right-buttons .Start-trail-btn, .navbar-right-buttons .login-btn{
    min-width: 138px;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid #999999;
    color: #333;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.main-header .dropdown-toggle::after{
    color: #999999 !important;
}

.navbar-right-buttons .Start-trail-btn:hover{
    background: #EF3C3A !important;
    border: 1px solid #EF3C3A;
    color: #fff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu{
    box-shadow: rgb(17 12 46 / 15%) 0 48px 100px 0;
    border: none;
}

.navbar-right-buttons .login-btn{
    background: #EF3C3A !important;
    border: 1px solid #EF3C3A !important;
    min-width: 100px ;
    color: #FFF !important;
}

.navbar-right-buttons .login-btn:hover{
    background: #fff !important;
    border: 1px solid #999999 !important;
    color: #333 !important;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link{
    color: #333;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
}

@media(min-width:991px) and (max-width:1220px){
    .main-header .navbar-nav{
        margin-left: 20px;
        gap: 0px;
    }
}

@media(min-width:991px) and (max-width:1500px){
    .main-header .navbar-nav{
        margin-right: 30px;
    }
}




/* ================================================================================
<!--GST Late Fee Calculator-section-->
=============================================================================== */

.gstLatefee_calculator_sec{
    width: 100%;
    /* padding-top: 40px; */
    background: #FAFAFB;
    /* margin-top: 80px; */
}




.gstLatefee_right_sec .quick-links-container{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 2px 0px #C2D5E4;
}

.gstLatefee_right_sec h5{
    color: #333;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.gstLatefee_right_sec h5 span{
    padding-right: 10px;
}

.gstLatefee_right_sec .quick-links{
    border-radius: 5px 5px 0px 0px;
    background: #FFFBFB;
    padding: 15px 25px;
    border-bottom: 1px solid #F5F0F0;
}

.gstLatefee_right_sec .quick-links-list ul li{
    border-bottom: 1px solid #F2F2F2;
    padding: 10px 25px;
}

.gstLatefee_right_sec .quick-links-list ul li a{
    color: #999;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
}

.gstLatefee_right_sec .quick-links-list ul li a.active{
    color: #006CBA !important;
    text-decoration-line: underline !important;
}

.gstLatefee_right_sec .download-img{
    border-radius: 5px;
    background: #D8E8F0;
    margin-top: 15px;
    width: 100%;
}

.gstLatefee_right_sec .download-img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-1610{
    max-width: 1530px;
    width: 100%;
    margin: auto;
    height: 100%;
}

/* .mw-1310{
    max-width: 1310px;
    width: 100%;
    margin: auto;
} */

.gstLatefee_left_sec{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 2px 0px #C2D5E4;
    padding: 30px 40px 5px;
    margin: 30px 0;
}

.gst-heading-2{
    color: #333;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    max-width: 725px;
}

.gstLatefee_left_sec .search-field .input-group .form-control, .gstLatefee_left_sec .search-field .input-group button{
    border-radius: 7px;
    border: 1px solid #999;
    height: 54px;
    line-height: 40px;
}

.gstLatefee_left_sec .search-field .input-group .form-control:focus, .gstLatefee_left_sec .search-field .input-group button:focus{
    border: 2px solid #999;
}

.gstLatefee_left_sec .search-field .input-group .form-control::placeholder{
    color: #999;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.gstLatefee_left_sec .input-group button{
    padding: 0 40px;
    background: #999999 !important;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
}

.gstLatefee_left_sec .input-group button:hover{
    color: #FFF;
}

.gstLatefee_left_sec .search-field{
    margin: 30px 0;
}

.gst-heading-4{
    color: #333;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
}

.gstLatefee_left_sec_txt p{
    color: #414141;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.15px;
    margin-bottom: 20px;
}

.gstLatefee_left_sec_txt p span{
    font-weight: 500;
}

.gstLatefee_left_sec_txt .key-point-box{
    border-radius: 5px;
    background: #FAFAFA;
    display: flex;
    gap: 27px;
    align-items: center;
    padding: 20px;
    margin-bottom: 28px;
}

.gstLatefee_left_sec_txt .key-point-box h6{
    color: #666;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.gstLatefee_left_sec_txt .key-point-box h6 span{
    font-weight: 700;
    color: #EF3C3A;
}

.gray-lighr-color{
    color: #666 !important;
}

.gstLatefee_ul_list, .gst-app-img {
    margin-bottom: 25px;
    text-align: center;
}
.flex-shrink-0{
    margin-bottom: auto;
}

.gstLatefee_ul_list .flex-grow-1.ms-3{
    color: #666;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: left;

}

.gstLatefee_ul_list .flex-shrink-0 img{
    vertical-align: baseline;
}

.gstLatefee_ul_list.gstLatefee_ul_list1  .flex-grow-1.ms-3{
    line-height: 22px;
    margin-bottom: 15px;
}


.gstLatefee_ul_list.gstLatefee_ul_list1 .flex-shrink-0{
    margin-bottom: 22px;
}

.gstLatefee_ul_list.gstLatefee_ul_list1 .flex-shrink-0 img{
    vertical-align: super;
}

.gstLatefee_left_sec_txt .key-point-box2{
    background: #FAFAFA !important;
}

.gstLatefee_ul_list.gstLatefee_ul_list2 .flex-grow-1.ms-3 span{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; 
}

.gstLatefee_ul_list.gstLatefee_ul_list2 .flex-grow-1.ms-3{
    margin-bottom: 10px;
}



/* <!--Frequently question section start--> */

.frequently-sec{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 2px 0px #C2D5E4;
    padding: 30px 40px;
    margin-top: 15px;
}
.frequently-txt h2{
   max-width: 419px;
   width: 100%;
   color: #333;
    font-family: Poppins;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.42px;
    margin-bottom: 64px;
}

.accordion-button::after {
    background-size: 0.75rem; 
    background-position: center; 
    background: url(../tool-img/circle-arrow-top.svg);
    display: flex;
    justify-content: center;
    background-size: cover;
    align-items: center;
    transition: transform .2s ease-in-out;
    border-radius: 50%; 
    padding: 10px; 
}

.accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow:unset;
}

.accordion-button:not(.collapsed)::after{
    background: url(../tool-img/circle-arrow-top.svg);
    background-size: cover;
}


.ewaybill-errors .accordion-button::after{
    background-size: 0.75rem; 
    background-position: center; 
    background: url(../tool-img/circle-arrow-down.svg);
    display: flex;
    justify-content: center;
    background-size: cover;
    align-items: center;
    transition: transform .2s ease-in-out;
    border-radius: 50%; 
    padding: 10px; 
}

.frequently-container .accordion-item{
    border-radius: 10px !important;
    margin-bottom: 10px;
    border: 2px solid #666666 !important;
}

.frequently-container h2{
    margin-bottom: 27px;
}

.frequently-container .accordion-button{
    border-radius: 10px !important;
}

.frequently-container .accordion-button span{
    background-color:#E4EFF9;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background-size: cover;
    align-items: center;
    margin-right: 22px;
    color: #333333;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.54px;
}

.ewaybill-errors .frequently-container .accordion-button span{
    background-color: #CCCCCC !important;
}

.accordion-button:not(.collapsed){
    color: #333;
    background-color: unset;
    box-shadow: unset;
}


.accordion-button{
    color: #333;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.17px;
}

.accordion-item-txt{
    padding:19px 0px;
}

.accordion-item-txt p{
    color: #666;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.15px;
    }

.accordion-item-txt span{
    height: 68px;
    background: #D9D9D9;
    width: 1px;
}

.accordion-body{
    max-width: 1197px;
    width: 100%;
    margin: auto;
    border-top: 2px solid #F4F4F4;
    width: 91%;
    margin: auto;
    background: #FFF;
    margin: 0px auto;
    padding: 0;
}

.accordion-plan-btn{
    max-width: 220px;
    width: 100%;
    margin: auto;
    height: 48px;
    flex-shrink: 0;
    background-color: #119A49;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.accordion-plan-btn:hover{
    background-color: var(--orange-color);
}

.accordion-plan-btn a{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
}

.search-table-box thead tr th{
    color: #333;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.search-table-box thead{
    background-color: #FAFAFAE5 !important;
}

.search-table-box {
    margin-bottom: 50px;
}

.search-table-box tbody td{
    color: #666;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.error-message {
    font-size: 14px;
    font-weight: bold;
}



/* 
<!--footer---section-start--> */

.footer-sec{
    position: relative;
    background: #FAFAFB;
    padding-top: 60px;
}

.footer-info{
    width: 100%;
    border-radius: 50px 50px 0px 0px;
    background: #F2F2F2;
    padding: 50px;
    max-width: 1308px;
    margin: auto;
}

.footer-info .contact-form{
    max-width: 537px;
    width: 100%;
    padding: 62px 62px 69px 62px;
    background: #464A5A;
    color: #FFF;
    border-radius: 25px;
    height: 540px;
}

.footer-info .contact-form form{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.footer-info .contact-form h3{
    color: #FFF;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 35px;
}

.footer-info .contact-form form input{
    background: unset;
    border: unset;
    box-shadow: unset;
    border-bottom: 2px solid rgba(242, 242, 242, 0.8) !important;
    padding-bottom: 7px;
    margin-top: 25px;
    width: 100%;
    color: #fff;
}

.footer-info .contact-form form input.message-txt{
    padding-bottom: 47px;
}

.footer-info .contact-form form input {
    caret-color: red;
}

.btn-check:focus+.btn, .btn:focus{
    box-shadow: unset;
    border: unset;
}

.footer-info .contact-form form input:first-child{
    margin-top: 0;
}

.footer-info .contact-form form input.active{
    border-bottom: 2px solid #F86202 !important;
}

.footer-info .contact-form form input:focus-visible{
    border: unset;
    outline: unset;
    box-shadow: unset;
}

.footer-info .contact-form form input::placeholder {
    color: #F2F2F2;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; 
    letter-spacing: 0.34px;
}

/* .footer-info .contact-form .start-btn{
    width: 100%;
    margin-top: 40px;
    border: unset;
    height: 58px;
    background-color: #F86202;
    color: #fff;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    transition: all 0.5s ease;
} */

.ewaybill-errors .footer-info .contact-form .start-btn{
    background-color: #FF002E;
}

/* .footer-info .contact-form .start-btn:hover{
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
} */

.contact-details .map-container .flex-grow-1{
    position: relative;
}

.contact-details .map-container .flex-grow-1::after{
    content: '';
    width: 358.839px;
    background: linear-gradient(90deg, rgba(93, 93, 93, 0.20) 0%, rgba(255, 234, 213, 0.20) 100%);
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -27px;

}

.contact-details{
    padding-left: 160px;
}

.contact-details .map-container h6, .contact-details .email-container h6{
    color: #333;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 130% */
    letter-spacing: 0.4px;
}

.contact-details .map-container p{
    color: rgba(51, 51, 51, 0.80);
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
}

.contact-details .map-container p span{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.15px;
}


.contact-details .map-container .flex-shrink-0, .contact-details .email-container .flex-shrink-0{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.80);
}


.contact-details .email-container{
    margin-top: 50px;
}

.contact-details .email-container a{
    color: #006CBA;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.15px;
}

.footer-menu{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 65px;
}

.footer-menu a{
    color: #666;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 200% */
    letter-spacing: 0.26px;
    text-decoration-line: underline;
    transition: all 0.5s ease;
}

.footer-menu a.active{
    color: #333;
}

.footer-menu a:hover{
    color: #333;
}

.footer-info .gst-no{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(51, 51, 51, 0.10);
    /* border-bottom: 1px solid rgba(51, 51, 51, 0.10); */
    padding: 12px 0;
    margin-top: 37px;
    gap: 50px;
}

.footer-info .gst-no a{
    color: #333;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 200% */
}

.footer-info .gst-no a span{
    font-weight: 500;
}

.Copyright-sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.Copyright-sec p{
    color: #666;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 216.667% */
}

.Copyright-sec .footer-logos .gst-logo{
    width: 120px;
    height: 31px;
}

.footer-bg-img{
    background: linear-gradient(180deg, #F2F2F2 60%, #FFF 80%);
    padding-top: 354px;
    position: absolute;
    top: 54%;
    z-index: -1;
}

.footer-info .contact-form form input.active {

    border-bottom: 2px solid #F86202 !important;

}

.ewaybill-errors .footer-info .contact-form form input.active{
    border-bottom: 2px solid #FFCBCE !important;
}



/* 
================================================================
ewaybill-errors-page
================================================================== */

.ewaybill-errors .error_search_box{
    display: flex;
    justify-content: end;
}







/* =================================================================================
Free Online GST Invoice Generator
================================================================================ */

.InvoiceButtonD, .Invoice_file{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

 button.savePDf_btn{
    border-radius: 7px;
    border: 1px solid #999;
    padding: 5px 20px;
    background: #FFF;
    color: #999;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
    transition: all 0.5s ease;
}

button.savePDf_btn:hover{
    background: #EF3C3A;
    color: #fff;
    border: 1px solid #EF3C3A;
}

 .Invoice_file{
    flex-direction: column;
    border-radius: 7px;
    border: 1.1px dashed #E3E2E2;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%);
    cursor: pointer;
    max-width: 180px;
    width: 100%;
    text-align: center;
    padding: 15px;
    position: relative;
}

.Invoice_file_up .Invoice_file #cancelButton-uploader1, .Invoice_file #cancelButton-uploader2{
    background-color: unset;
    outline: unset;
    border: unset;
    position: absolute;
    top: 5px;
    right: 5px;
}

 .Invoice_file #fileName-uploader1, .Invoice_file #fileName-uploader2{
    color: #666;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; 
    word-break: break-all;
}

.Invoice_file_up{
    margin: 30px 0;
}

.Invoice_file_up .taxInvoice_Btn{
    border-radius: 5px;
    background: #99BFE8;
    border: 1px solid #99BFE8;
    padding: 37px 77px;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; 
}

.Invoice_Generator{
    margin-bottom: 25px;
}

.Invoice_Generator .Invoice_Generator_date{
    border-radius: 7px;
    border: 1px solid rgba(16, 16, 16, 0.10);
    background: #FCFCFF;
    padding: 20px;
    margin-bottom: 10px;
    position: relative;
}

.Invoice_Generator .Invoice_Generator_date::after{
    content: '';
    height: 112px;
    width: 1px;
    background: rgba(16, 16, 16, 0.10);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

#gstinvoiceGen form label{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#gstinvoiceGen form .form-control, #gstinvoiceGen form .form-select{
    border-radius: 7px;
    border: 1px solid #CCC;
    /* background: #FFF; */
    height: 42px;
    color: #333;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#gstinvoiceGen form input::placeholder, #gstinvoiceGen form textarea::placeholder{
    color: #999;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: auto; 
}

#gstinvoiceGen form .form-control.date-picker-in{
    border-radius: 7px 0px 0px 7px;
}

#gstinvoiceGen form .input-group-text1{
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.Invoice_Generator_date .mx-380{
    max-width: 410px;
}

.Invoice_Generator_date .mx-380:last-child{
    margin-left: auto;
}

@media (max-width:991px) {
    .Invoice_Generator_date .mx-380:last-child{
        margin-left: unset;
    }
    .Invoice_Generator .Invoice_Generator_date::after{
        display: none;
    }
}

.Invoice_Generator_details{
    border-radius: 7px;
    border: 1px solid rgba(16, 16, 16, 0.10);
    background: #FAFAFA;
    overflow: hidden;
}

.Invoice_Generator_details .col-padding{
    padding: 41px 20px 23px;
    border: 1px solid #1010101A;
    border-width: 0px 1px 1px 0;
}

.Invoice_Generator_details .col-padding:last-child{
    border-bottom: 0;
}

.col-padding .hidden{
    visibility: hidden;
}

.Invoice_Generator_details h6{
    color: #333;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}

.Invoice_Generator_details .form-check-label{
    color: #666;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-check-input:focus, .form-control:focus, .form-select:focus{
    box-shadow: unset;
}


.table-wrapper {
    overflow-x: auto;
    border-radius: 7px;
    border: 1px solid #999;
    padding: 0;
    margin: 0;
}

.bdr {
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.table-wrapper th, .table-wrapper th span{
    color: #FFF !important;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 13px; 
    background: #666;
    vertical-align: middle;
}

.table-wrapper td{
    color: #333;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; 
    vertical-align: middle;
}

.table-wrapper td.w-105{
    width: 105px;
}

.Invoice_table_Generator .form-control, .Invoice_table_Generator .form-select, .Invoice_table_Generator span{
    color: #333;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.Invoice_table_Generator .add_row_btn button{
    border-radius: 150px;
    border: 1px solid #CCC;
    background: #FAFAFB;
    padding: 9px 14px;
    color: #333;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 15px;
}


.charges-container table{
    margin-bottom: 0;
}

.charges-container-sec{
    margin-bottom: 59px;
}
  
  .charges-container {
    max-width: 378px;
    margin-left: auto;
    width: 100%;
    border-radius: 10px;
    border-radius: 7px;
    border: 1px solid rgba(16, 16, 16, 0.10);
    padding-top: 20px;
  }

  .charges-container-sec .table th, .charges-container-sec .table td, .charges-container .form-control {
    color: #333;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    vertical-align: middle;
  }

  .charges-container-sec .table th{
    color: #333;
  }

  .charges-container-sec .table td,  .charges-container .form-control{
    color: #666;
    text-align: right;
    font-weight: 500;
  }
/* 
  .charges-container-sec .table td span{
    padding-right: 13px;
  } */

  .charges-container-sec .input-group .form-control {
    border-radius: 5px;
    height: 35px;
    font-size: 14px;
    max-width: 120px;
  }
 
.charges-cell-p th, .charges-cell-p td{
   padding: 10px 20px;
}

  .charges-container .form-control{
    max-width: 70px;
    height: 34px;
    border-radius: 5px;
    border: 1px solid rgba(16, 16, 16, 0.10);
    background: #FFF;
    margin-left: auto;
    text-align: right;
  }

  .charges-container .grand-total{
    border-radius: 0px 0px 5px 5px !important;
    background: #99BFE8;
  }

  .charges-container .grand-total th,  .charges-container .grand-total td{
    color: #fff;
    padding: 15px 33px 15px 20px;
  }

  .Invoice_Generator.Intable_form .Invoice_Generator_details{
    border: unset;
    background: unset;
  }

  .Invoice_Generator.Intable_form .form-control, .Invoice_Generator.Intable_form .d-flex.justify-content-end{
    max-width: 380px;
  }

 .Invoice_Generator.Intable_form h5{
    color: #999;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
 }

 .Invoice_Generator.Intable_form{
    margin-bottom: 66px;
 }

 .info-detail-text1 li{
    text-align: left;
    color: #666;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-left: 30px;
    position: relative;
    display: block;
    margin-bottom: 10px;
 }

 .info-detail-text1 li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 11px;
    width: 13px;
    height: 13px;
    background: url(../tool-img/done_ring_round_light_1.png);
    background-repeat: no-repeat;
    background-size: contain;
}

@media(max-width:767px){
    .col-padding.paddingTop-0{
        padding-top: 0px !important;
    }
}


/* =======================================================================
E Invoice QR Code Scanner
======================================================================= */


.QR_code_sec{
    margin: 0px 0 1px;
    background: #FCFBFF;
    box-shadow: 0px 1px 0px 0px #E4EFF9;
    padding: 30px 0;
}

.mw-1100{
    max-width: 1320px;
    margin: auto;
    width: 100%;
}

.QR_code_sec .navbar-right-buttons{
    display: flex;
    gap: 10px !important;
    flex-wrap: wrap;
    margin-top: 35px;
}

.QR_code_sec .navbar-right-buttons a.Start-trail-btn{
    max-width: 138px !important;
}

.QR_code_sec .navbar-right-buttons a.login-btn{
    max-width: 100px !important;
    background: #333333 !important;
    border: 1px solid #333333 !important;
    color: #fff;
}

.QR_code_sec .navbar-right-buttons a.login-btn:hover{
    color: #fff !important;
    background-color: #EF3C3A !important;
    border: 1px solid #EF3C3A !important;
}

.code-scannerLeft-sec .gst-heading-2, .QR_reader_sec .gst-heading-2{
    margin-bottom: 10px;
}

.code-scannerLeft-sec p, .QR_reader_sec p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.16px;
    margin-bottom: 0;
}


.QR_reader_sec{
    padding-top: 80px;
}   

.QR_reader_sec p{
    font-size: 14px;
    max-width: 777px;
    margin-bottom: 46px;
}

.search-table-box1{
    display: none;
    margin-bottom: 50px;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    overflow: hidden;
}
.QR_reader_sec .pdf-preview-content{
    display: flex;
    gap: 10px;
    margin-bottom:10px;
}

.QR_reader_sec .search-table-box iframe{
    width: 100%;
    height: 100%;  
}
.QR_reader_sec .pdf-preview-content button{
    max-width: 138px;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid #999999;
    color: #333;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.pdf-preview-content_con{
    padding: 25px;
    /* border-radius: 5px; */
    background: #FFFBFB;
    box-shadow: -1px 0px 0px 0px #DAE0E3;
    height: 100%;

}

.pdf-preview-content_con .table-responsive{
    background-color: #FFFFFF;
}

.pdf-preview-content_con .table-responsive td{
    white-space: normal;
    word-break: break-all;
}

.QR_reader_sec .pdf-preview-content button.active{
    background-color: #EF3C3A;
    color: #fff;
    border-color: #EF3C3A;
}

.pdf-preview_con{
    background-color: #F2F2F2;
    padding: 25px;
    /* border-radius: 5px; */
}

.pdf-preview_con .preview_pdf{
    height: 552px;
    overflow-y: auto;
    width: 100%;
}

.pdf-preview_con .preview_pdf img{
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.pdf-uploader .pdf_file{
    border-radius: 4px;
    border: 1.1px dashed #568DA8;
    background: #FFF;
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.pdf-uploader{
    padding-top: 45px;
}

.pdf-uploader .pdf_file span{
    color: #006CBA;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.pdf-uploader .pdf_file #cancelButton-uploader3{
    position: absolute;
    top: 0;
    right: 5px;
    background: unset;
    border: unset;
}

.pdf-preview-content_con p{
    color: #333;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 457px;
    margin: auto;
    padding: 43px 0 23px;
}

.pdf-preview-content_con .call_back_btn{
    background-color: #FFFFFF;
    color: #EF3C3A;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    max-width: 190px;
    padding: 14px 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EF3C3A;
    border-radius: 4px;

}

.qr-scanner-api-txt .gray-lighr-color{
    max-width: 100%;
    margin-bottom: 30px;
}

.qr-scanner-api-txt .gray-lighr-color a{
    color: #5076C7;
    text-decoration-line: underline !important;
}

.gst-heading-6{
    color: #666;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}

.gst-heading-6 a{
    color: #5076C7;
}

.QR-extracted-data{
    background: #FFF9F3;
    margin-top: 80px;
    position: relative;
}

.QR-extracted-data::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: url(../tool-img/qr-code.png);
    background-position: center;
    background-size: cover;
    width: 557px;
    height: 100%;
}

.QR-extracted-data-txt{
    padding: 90px 0 127px;
}
.QR-extracted-data-txt .gst-heading-4{
    margin-bottom: 30px;
}

.QR-extracted-data-txt h6{
    color: #333;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
}

.QR-extracted-img{
    display: none;
}

/* .QR-extracted-img img{
    width: 100%;
    height: 100%;
} */

@media (max-width:1600px){
    .QR-extracted-img{
        display: block;
    }
    .QR-extracted-data::after{
        display: none;
    }
}

.stuff-counts-sec{
    background: #FAFAFB;
    padding: 88px 0px 44px;
}

.stuff-counts-sec h4{
    margin-bottom: 0px;
}


.stuff-counts-box{
    filter: drop-shadow(0px 0px 1px #C2D5E4);
    padding: 30px;
    border-radius: 5px;
    border: unset;
    /* margin-top: 44px; */
}

.stuff-counts-box h6{
    color: #333;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    padding-left: 40px;
}

.stuff-counts-box p{
    color: #666;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    letter-spacing: 0.15px;
    text-transform: capitalize;
    margin: 20px 0 0;
}

.stuff-counts-box h6::before {
    content: '';
    position: absolute;
    left: 0;
    width: 25px; 
    height: 25px; 
    background-size: contain; 
    background-repeat: no-repeat !important;
}

.stuff-counts-box1 h6::before {
    background-image: url(../tool-img/support-icon.svg);
}

.stuff-counts-box2 h6::before {
    background-image: url(../tool-img/integration-icon.svg); 
}

.stuff-counts-box3 h6::before {
    background-image: url(../tool-img/cost-icon.svg); 
}

.stuff-counts-box4 h6::before {
    background-image: url(../tool-img/security-icon.svg);
}

.info-detail-text2 li{
    padding-left: 0;
    color: #333;
}
.info-detail-text2 li b{
    padding-right: 15px;
}
.info-detail-text2 li::before{
    display: none;
}

.gstLatefee_calculator_sec.QR-code-page .gstLatefee_left_sec{
    margin-top: 0;
}   

.gstLatefee_calculator_sec.QR-code-page .gstLatefee_left_sec_txt{
    padding: 10px 0 20px;
}

@media (max-width:991px){
    .QR_reader_sec {
        padding-top: 30px;
    }
    .QR_reader{
        margin-bottom: 20px;
    }
    .pdf-preview_con .preview_pdf{
        height: auto;
    }
    .QR_reader_sec p{
        margin-bottom: 0px;
    }
    .QR-extracted-data-txt {
        padding: 10px 0 30px;
    }
    .QR-extracted-data{
        margin-top: 30px;
    }
    .stuff-counts-sec {
        padding: 30px 0px 0px;
    }
}