@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
    --acsl-FF: "Poppins", sans-serif;
    --acsl-brand: #4e2979;
    --acsl-body: #e8f1ff;
    --acsl-box: #127cab;
    --acsl-link: #014e86;
    --acsl-complied: #74b749;
    --acsl-light-green: #dbffde;
    --acsl-total: #086a93;
    --acsl-notcomplied: #cf4a4a;
    --acsl-pending: #ffb400;
    --acsl-yellow: #fdc02d;
    --acsl-light-yellow: #fff7db;
    --acsl-darkgray1: #545454;
    --acsl-lightgray: #ebebeb;
    --acsl-lightblack1: #090909;
    --acsl-lightblack2: #292929;
    --acsl-light-pink: #ffdbfa;
    --acsl-prussianblue: #0f3849;
    --acsl-tablehead: #e0ebef;
    --acsl-lightblue: #dbedff;
    --acsl-newspaperheading: #413829;
    --acsl-newspapertext: #54401e;
    --acsl-lightbg: #f4f4f5;
    --acsl-lightborder1: #dbe8f1;
    --acsl-lightborder2: #e7eef3;
    --acsl-inputborder: #cddbe6;
    --acsl-white: #fff;
    --acsl-black: #090909;
    --acsl-transparent: transparent;
    --sidebar-color: #f5f9ff;

    --acsl-regularFW: 400;
    --acsl-mediumFW: 500;
    --acsl-semiboldFW: 600;
    --acsl-boldFW: 700;

    --trans-02: all 0.2s ease;
    --trans-04: all 0.5s ease;

    font-family: var(--acsl-FF);
    font-weight: var(--acsl-RegularFW);
    line-height: 1.4;
    text-decoration: none;
}
body {
    margin: 0;
}
main {
    min-height: 100vh;
}
html {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--acsl-FF);
    font-weight: var(--acsl-RegularFW);
    margin: 0;
}

p {
    font-family: var(--acsl-FF);
    font-weight: var(--acsl-RegularFW);
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.7;
}

ul,
li,
a,
span {
    font-family: var(--acsl-FF);
    font-weight: var(--acsl-RegularFW);
}
img {
    max-inline-size: 100%;
    display: block;
    margin-bottom: 10px;
}
.font-small {
    font-size: 13px;
    line-height: 1.7em;
}
.pt-10 {
    padding-top: 10px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-100 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 10px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-50 {
    padding-bottom: 50px;
}

.pr-20 {
    padding-right: 20px;
}
.pr-30 {
    padding-right: 30px;
}
.pr-40 {
    padding-right: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}

.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}

.text-light {
    color: var(--acsl-white);
}
.text-dark {
    color: var(--acsl-black);
}

.bg-black {
    background-color: var(--acsl-black);
}

.border-radius-10 {
    border-radius: 10px;
}
.border-radius-20 {
    border-radius: 20px;
}
.border-radius-30 {
    border-radius: 30px;
}
.hidden {
    display: none;
}
.strong_text {
    font-weight: 600;
    display: block;
    margin-top: 10px;
}
.acsl-container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.default-container {
    padding: 0px 20px 0 40px;
}
.acsl-row {
    display: flex;
    gap: 1em;
}
.align-center {
    text-align: center;
}
.align-middle {
    display: flex;
    align-items: center;
}

.acsl-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.acsl-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.acsl-row-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}
.acsl-col {
    border: 0px solid rgba(0, 0, 0, 0.8);
}
.acsl-col-8 {
    width: 66%;
    float: left;
}
.acsl-col-4 {
    width: 33%;
}
.acsl-col-6 {
    width: 50%;
    float: left;
}
.acsl-col-9 {
    width: 75%;
}
.acsl-col-3 {
    width: 25%;
}

.cta-box-style-1 {
    background-color: var(--acsl-white);
    padding: 15px;
    display: flex;
    flex-direction: column;
    padding-inline: 0.625rem;
    border-radius: 15px;
    align-items: flex-start;
    position: relative;
    margin-block-end: 1.875rem;
    border: 1px solid #c8c1cc;
    background-image: url("https://www.simpliance.in/frontend/images/box-bg.svg");
    background-repeat: no-repeat;
    background-position: 96% 96%;
}
.cta-box-style-1 p {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.simple-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--acsl-dark);
}
.simple-link:hover {
    color: var(--acsl-brand);
}
.btn-primary {
    background-color: var(--acsl-yellow);
    border: 2px solid var(--acsl-yellow);
    padding: 6px 15px 7px;
    display: inline-block;
    color: var(--acsl-black);
    font-weight: 500;
    border-radius: 50px;
    font-size: 14px;
}
.btn-primary:hover {
    background-color: var(--acsl-transparent);
    border-color: var(--acsl-white);
    color: var(--acsl-white);
    transition: 0.2s ease-in-out;
}

.cta-box-style-1 img {
    width: 48px;
    z-index: 1;
}
.cta-calculator-box {
    padding: 15px 15px 40px;
    border-radius: 15px;
    padding-right: 40%;
}
.box-yellow {
    background: var(--acsl-light-yellow);
    background-image: url("https://www.simpliance.in/frontend/images/provident.svg");
    background-repeat: no-repeat;
    background-position: 100% 90%;
    background-size: auto;
}
.box-blue {
    background: var(--acsl-lightblue);
    background-image: url("https://www.simpliance.in/frontend/images/gravity.svg");
    background-repeat: no-repeat;
    background-position: 100% 90%;
    background-size: auto;
}
.box-green {
    background: var(--acsl-light-green);
    background-image: url("https://www.simpliance.in/frontend/images/professional.svg");
    background-repeat: no-repeat;
    background-position: 100% 90%;
    background-size: auto;
}
.box-pink {
    background: var(--acsl-light-pink);
    background-image: url("https://www.simpliance.in/frontend/images/income.svg");
    background-repeat: no-repeat;
    background-position: 100% 90%;
    background-size: auto;
}
.cta-calculator-box p {
    font-size: 12px;
}
.btn-secondary {
    border: 1px solid var(--acsl-black);
    border-radius: 100px;
    padding: 5px 15px;
    display: inline-block;
    font-size: 14px;
    color: var(--acsl-black);
}
.btn-secondary:hover {
    background: var(--acsl-black);
    color: var(--acsl-white);
    transition: 0.2s ease-in-out;
}

.trending-carousel .owl-item {
    padding-bottom: 10px;
}
.owl-carousel {
    z-index: 0 !important;
    display: block;
}
.news-box {
    background-color: var(--acsl-lightbg);
    padding: 15px 15px 20px;
    border-radius: 20px;
    border: 1px solid #dddddd;
}
.news-box:hover {
    box-shadow: 2px 4px 8px 0 #00000040;
    background-color: #fff;
}
.news-box p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.news-box h4 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
    margin-top: 10px;
}
.news-box a {
    color: #292929;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}
.news-box a i {
    font-size: 13px;
    margin-left: 5px;
}
.news-box .date {
    font-size: 13px;
    color: #454545;
}
.news-box .date i {
    margin-right: 5px;
}
.news-box .latest-tag {
    position: absolute;
    right: 15px;
    background-color: var(--acsl-white);
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
}
.news-box .latest-tag i {
    margin-left: 3px;
}
.latest-star {
    width: 16px !important;
    display: inline-flex !important;
    margin-bottom: -2px !important;
}
.news-box a:hover {
    color: var(--acsl-link);
    transition: 0.2s ease-in-out;
}

button.owl-prev,
button.owl-next {
    background-color: #292929 !important;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}
button.owl-prev:hover,
button.owl-next:hover {
    background-color: var(--acsl-brand) !important;
    transition: 0.3s ease-in-out;
}
button.owl-prev {
    position: absolute;
    top: 30%;
    left: 0px;
}
button.owl-next {
    position: absolute;
    top: 30%;
    right: 0px;
}
button.owl-prev i,
button.owl-next i {
    color: var(--acsl-white);
    font-size: 15px;
    border: 2px solid;
    border-radius: 50px;
    width: 15px;
    height: 15px;
    padding: 3px;
    line-height: 16px;
}
.promotion-slider .owl-item img {
    border-radius: 10px;
}
.bg-blue {
    background-color: var(--acsl-box);
}
.bg-light-blue {
    background-color: #f6f9fe;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}
.footer-links a {
    color: #fff;
    margin: 0 8px;
    font-size: 13px;
}
.acsl-copyright-text {
    margin-bottom: 0px;
    font-size: 13px;
}
.acsl-social-icons {
    margin-left: 40px;
}
.acsl-social-icons i {
    font-size: 22px;
    color: var(--acsl-white);
    margin: 0 7px;
}
.acsl-social-icons i:hover {
    color: var(--acsl-box);
}

/* header */
.acsl-header {
    position: fixed;
    top: 0px;
    z-index: 9;
    width: 100%;
}
.acsl-logo {
    padding: 5px 0px;
}
.acsl-logo a {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
}
.acsl-header .item-left {
    flex: 0 0 17%;
}
.acsl-header .acsl-logo img {
    max-height: 50px;
    margin-bottom: 0px;
    width: 100%;
    min-height: 50px;
}
.acsl-logo span {
    font-size: 18px;
    font-weight: 500;
    color: #090909;
    padding-left: 5px;
}
.acsl-header .item-right {
    flex: 0 0 80%;
    display: flex;
    justify-content: flex-end;
}
.acsl-header .acsl-mega-menu > ul > li {
    display: inline-block;
    margin-left: 15px;
    color: var(--acsl-black);
}
.acsl-header .acsl-mega-menu > ul > li > a {
    font-size: 13px;
    transition: color 0.3s ease;
    font-weight: 500;
    color: var(--acsl-black);
    padding: 30px 5px;
}
.acsl-header .acsl-mega-menu > ul > li > a:active {
    color: #653090;
}
.menu-main li a:hover {
    color: #653090;
}
.acsl-header .acsl-mega-menu > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #f5f5f5;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    padding: 100px 20px 50px;
    box-shadow: 0px 45vh 100px 35vh #00000059;
    pointer-events: none;
}
.acsl-header .acsl-mega-menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 25px;
    visibility: visible;
    opacity: 1;
}
.acsl-header .acsl-mega-menu > ul > li.menu-item-has-children:hover .sub-menu {
    pointer-events: auto;
}
.mega-menu-title a {
    color: var(--acsl-black);
}
.mega-menu-title a:hover {
    color: var(--acsl-brand);
}
.acsl-header .mega-menu .list-item li a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--acsl-black);
    transition: color 0.3s ease;
    text-decoration: none;
    margin-top: -5px;
    white-space: normal;
    line-height: 18px;
}
.acsl-header .acsl-mega-menu > ul > li .sub-menu > ul > li > a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: var(--acsl-black);
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    margin-top: -5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.acsl-header .acsl-mega-menu > ul > li .sub-menu > ul > li > a:hover {
    color: var(--acsl-brand);
}
.acsl-header ul {
    padding-left: 0px;
    margin: 0px;
}
.acsl-header ul li {
    list-style: none;
}
.acsl-header .acsl-mega-menu > ul > li .single-column-menu {
    min-width: 240px;
    max-width: 350px;
}
.menu-btn {
    margin-left: 10px !important;
}
.acsl-header
    .acsl-mega-menu
    > ul
    > li
    .sub-menu.mega-menu
    > .list-item
    > ul
    > li
    > a {
    padding: 15px 0;
    display: block;
    font-size: 14px;
    transition: color 0.3s ease;
    color: var(--acsl-black);
    font-weight: 500;
}
.acsl-header
    .acsl-mega-menu
    > ul
    > li
    .sub-menu.mega-menu
    > .list-item
    > ul
    > li
    > a:hover {
    color: var(--acsl-brand);
}
.acsl-header .acsl-mega-menu > ul > li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}
.acsl-header .acsl-mega-menu > ul > li .sub-menu.mega-menu-column-4 {
    width: 100%;
    /*display: flex;
  flex-wrap: wrap;*/
}
.acsl-header
    .acsl-mega-menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item {
    flex: 0 0 23%;
    padding: 0 10px;
}
.acsl-header
    .acsl-mega-menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item
    .title {
    font-size: 15px;
    color: #ea4636;
    padding: 10px 0;
}
.btn-brand {
    background-color: var(--acsl-brand);
    border: 2px solid var(--acsl-brand);
    padding: 7px 17px 7px !important;
    display: inline-block;
    color: #fff !important;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
}
.btn-brand:hover {
    background-color: var(--acsl-black);
    border-color: var(--acsl-black);
    color: #fff !important;
    transition: 0.2s ease-in-out;
}
.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/* Tabs */
.tab {
    width: 20%;
}
.tab button {
    color: var(--acsl-black);
    padding: 25px 20px;
    width: 100%;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #fff;
}
.tab button span {
    width: 100%;
    display: block;
    margin-top: 15px;
}
.tab button img {
    width: 58px;
    margin: 0 auto;
}
.tab button:hover {
    background-color: #efefef;
}
.tab button.active {
    background-color: #fff;
    color: var(--acsl-brand);
}
.tabcontent {
    width: 80%;
    padding-left: 20px;
    padding-top: 60px;
}
.menu-item-login {
    font-size: 13px;
    transition: color 0.3s ease;
    font-weight: 500;
    color: var(--acsl-black);
    padding: 15px 20px;
    display: block;
    border-bottom: 0px solid #00000014;
}
.apps-login-item {
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 600px) {
    footer.acsl-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .d-none-mobile {
        display: none;
    }
    .pr-40 {
        padding-right: 30px !important;
    }
    .pt-100 {
        padding-top: 60px;
    }
    .breadcrumb-search {
        padding: 0 0px;
    }
    .login-box {
        background: unset;
        margin: 0 15px;
        background-color: #fff;
        display: block;
    }
    .login-form .register {
        margin-top: 10px;
        width: 100%;
    }
    .register .row {
        display: block;
    }
}

/*Login page styles ends*/

/* large screen Styles */
@media (min-width: 991px) {
    footer.acsl-section {
        margin-left: 320px;
    }
    .acsl-col-2 {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        border-right: 1px solid #c4c4c4;
        padding: 0 10px;
    }
    .acsl-col-2 .list-item {
        width: 50% !important;
    }
    .mega-menu .acsl-col-2:last-child {
        border: none;
    }
    .mega-menu .list-item li {
        display: flex;
        background-color: #fff;
        border-radius: 5px;
        padding: 5px 10px 0;
        margin: 20px 10px;
        align-items: center;
    }
    .mega-menu .list-item {
        width: 25%;
    }
    .mega-menu .list-item li img {
        width: 44px;
        margin-right: 0px;
    }
    .acsl-container.mega-menu-container {
        display: flex;
        padding: 0px !important;
        max-width: 1160px;
    }
    .mega-menu .list-item li:hover {
        box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25098039215686274);
        transition: 0.3s ease;
    }
    .mega-menu .list-item li:hover a {
        color: #662d91 !important;
    }
    .mega-menu-title {
        position: absolute;
        top: 60px;
        font-size: 20px;
        font-weight: 500;
        padding-left: 10px;
    }

    /* Tabs */
    .tabcontent .mega-menu-title {
        font-size: 16px;
    }
    .tab-menu {
        padding: 40px 20px 40px !important;
    }
    .tabcontent .acsl-col-2 .list-item {
        width: 33% !important;
    }
    .tabcontent .acsl-col-2:last-child .list-item {
        width: 50% !important;
    }
    .acsl-col-2 {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        border-right: 1px solid #c4c4c4;
        padding: 0 10px;
    }
    .tabcontent .acsl-col-2.col3 {
        width: 65%;
    }
    .tabcontent .col2 .list-item {
        width: 50% !important;
    }
    .tabcontent .col1:last-child .list-item {
        width: 100% !important;
    }
    .tabcontent .list-item li {
        text-align: center;
        display: block !important;
    }
    .tabcontent .list-item li a {
        font-weight: 400 !important;
    }
    .tabcontent .list-item a {
        font-size: 13px !important;
    }
}

/*responsive*/
@media (max-width: 991px) {
    .filter {
        margin: 0px !important;
    }
    .acsl-container.mega-menu-container {
        padding: 0px;
        padding-bottom: 80px !important;
    }
    .mega-menu .acsl-col-2:not(:first-child) {
        margin-top: 30px;
    }
    .mega-menu .list-item li img {
        display: none;
    }
    .acsl-header
        .acsl-mega-menu
        > ul
        > li.menu-item-has-children:hover
        .sub-menu {
        margin-top: 0px;
    }
    .mega-menu-title {
        margin-bottom: 20px;
        font-size: 16px;
        font-weight: 500;
    }
    .acsl-header .mega-menu .list-item li a {
        font-size: 13px;
        padding: 10px 0px;
    }
    .acsl-header .item-center {
        order: 3;
        flex: 0 0 100%;
    }
    .acsl-header .item-left,
    .acsl-header .item-right {
        flex: 0 0 auto;
    }
    .v-center {
        justify-content: space-between;
    }
    .acsl-header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .acsl-header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }
    .acsl-header .mobile-menu-trigger span:before,
    .acsl-header .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }
    .acsl-header .mobile-menu-trigger span:before {
        top: -6px;
    }
    .acsl-header .mobile-menu-trigger span:after {
        top: 6px;
    }
    .acsl-header .item-right {
        align-items: center;
    }

    .acsl-header .acsl-mega-menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }
    .acsl-header .acsl-mega-menu.active {
        transform: translate(0%);
    }
    .acsl-header .acsl-mega-menu > ul > li {
        line-height: 1;
        margin: 0;
        display: block;
    }
    .acsl-header .acsl-mega-menu > ul > li > a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #00000014;
    }
    .menu-item-has-children i {
        transform: rotate(-90deg);
        margin-left: 10px;
        line-height: 20px;
        height: 20px;
        position: absolute;
        right: 20px;
    }
    .acsl-header .acsl-mega-menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        background-color: #ffffff;
        top: 0;
    }
    .acsl-header .acsl-mega-menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }
    .acsl-header .acsl-mega-menu .mobile-menu-head.active .go-back {
        display: block;
    }
    .acsl-header .acsl-mega-menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }
    .acsl-header .acsl-mega-menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }
    .acsl-header .acsl-mega-menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        margin-top: 0px;
    }
    .acsl-header .acsl-mega-menu > ul > li .sub-menu.mega-menu,
    .acsl-header .acsl-mega-menu > ul > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: scroll;
    }
    .acsl-header .acsl-mega-menu > ul > li .sub-menu.active {
        display: block;
    }
    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }
        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .acsl-header
        .acsl-mega-menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item
        img {
        margin-top: 0;
    }
    .acsl-header
        .acsl-mega-menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item.text-center
        .title {
        margin-bottom: 20px;
    }
    .acsl-header
        .acsl-mega-menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item.text-center:last-child
        .title {
        margin-bottom: 0px;
    }
    .acsl-header
        .acsl-mega-menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item {
        flex: 0 0 100%;
        padding: 0px;
    }
    .acsl-header .acsl-mega-menu > ul > li .sub-menu > ul > li > a,
    .acsl-header
        .acsl-mega-menu
        > ul
        > li
        .sub-menu.mega-menu
        > .list-item
        > ul
        > li
        > a {
        display: block;
    }
    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }
    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    .right_align {
        text-align: center !important;
    }
    .right_align .download {
        margin-top: 10px;
    }

    /* Tabs */
    .tab {
        width: 90%;
        display: block;
        margin-bottom: 20px;
    }
    .tab button img {
        display: none;
    }
    .tab button span {
        margin-top: 0px;
    }
    .tab button.active:after {
        display: none;
    }
    .tab button {
        padding: 25px 10px;
        font-size: 13px;
        font-weight: 500;
    }
    .tabcontent {
        width: 100%;
        padding-left: 0px;
        padding-top: 0px;
        height: 100vh;
        overflow-y: scroll;
        padding-bottom: 20px;
    }
    .tab-menu-title {
        margin-top: 25px;
    }
}

.acsl-header .acsl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    border-bottom: 1px solid #ebebeb;
    height: 70px;
    background: linear-gradient(
        90deg,
        hsla(0, 0%, 96%, 1) 0%,
        hsla(0, 0%, 100%, 1) 20%,
        hsla(218, 65%, 97%, 1) 64%,
        hsla(216, 71%, 99%, 1) 100%
    );
}
.acsl-navbar {
    position: relative;
}
.hamburger {
    display: none;
    font-size: 30px;
    color: var(--acsl-black);
    cursor: pointer;
}
.acsl-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.acsl-menu li {
    color: var(--acsl-black);
    padding: 0 4px;
    position: relative;
}
.menu-link {
    padding: 7px 15px;
    font-size: 16px;
    color: var(--acsl-black);
    display: block;
}
.menu-link:hover {
    color: var(--acsl-brand);
}
.country-dropdown select {
    margin-left: 15px;
    padding: 7px 35px 7px 15px;
    border: 1px solid var(--acsl-black);
    border-radius: 30px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-appearance: none !important; /* For Safari and older Chrome */
    -moz-appearance: none !important; /* For Firefox */
    appearance: none !important;
}
.acsl-banner-title {
    font-size: 44px;
    line-height: 1.4em;
}
.banner-section {
    padding: 80px 20px 20px;
    text-align: center;
    max-width: 45%;
    margin: 0 auto;
}

.acsl-searchform-input {
    margin: 15px auto;
    width: 600px;
    max-width: 720px;
    min-width: 500px;
}
.acsl-searchform-input-inner {
    display: flex;
    border: 2px solid var(--acsl-brand);
    background-color: var(--acsl-white);
    border-radius: 15px;
}
input#search-bar {
    border: none;
    outline: none;
    font-size: 15px;
    width: 100%;
    padding: 15px;
    background-color: #fff !important;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.suggestions-container {
    overflow: hidden;
    position: absolute;
    width: 100%;
    display: none;
}
.acsl-autocomplete-wrap {
    display: none;
    background-color: #fff;
    border: 2px solid var(--acsl-brand);
    border-top: none;
    max-height: 215px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 0 0.9375rem 0.9375rem;
    max-inline-size: inherit;
    margin: 0 auto;
    position: absolute;
    margin-top: 40px;
    scrollbar-width: none;
    margin-left: -2px;
    left: unset;
    width: 596px;
    max-width: 720px;
    min-width: 500px;
}
.suggestions-list-wrapper {
    height: 160px;
    overflow-y: auto;
    scrollbar-width: none;
}
#suggestions-list {
    list-style-type: none;
    margin: 0;
    padding: 0 15px;
}
#suggestions-list li {
    margin-bottom: 10px;
}
.request-assistance {
    background-color: var(--acsl-brand);
    padding: 10px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}
.schedule-Product {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.span_check {
    font-size: 12px;
    color: #fff;
}
.acsl-request_assitance {
    color: var(--acsl-black);
    background: white;
    border-radius: 12px;
    padding: 7px;
    padding-top: 10px;
    display: flex;
    max-width: 200px;
    font-size: 14px;
    white-space: nowrap;
}
.acsl-search-button {
    border: none;
    flex: 0 0 60px;
    border-radius: 15px;
    background-color: transparent;
    cursor: pointer;
}
.acsl-search-button i {
    font-size: 24px;
}
input#search-bar:focus {
    background-color: #fff !important;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.error {
    font-size: 11px;
    color: red;
    display: block;
}

/*Listing page styles*/
.acsl-accordion .acsl-accordion-item {
    border-bottom: 1px solid #61a0d3;
}
.acsl-accordion .acsl-accordion-item button[aria-expanded="true"] {
    border-bottom: 1px solid #61a0d3;
}
.acsl-accordion button[aria-expanded="true"] .icon {
    background-color: transparent;
    color: #61a0d3;
}
.acsl-accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 15px 0px 15px;
    color: var(--acsl-lightblack2);
    font-size: 14px;
    background: none;
    outline: none;
    border: none !important;
}
.acsl-accordion button:hover,
.acsl-accordion button:focus {
    cursor: pointer;
    color: var(--acsl-brand);
}
.acsl-accordion button:hover::after,
.acsl-accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}
.acsl-accordion button .acsl-accordion-title {
    padding: 10px 0px 5px;
    display: block;
    width: 95%;
    line-height: 1.3em;
}
.acsl-accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #61a0d3;
    background-color: #61a0d3;
    color: #fff;
}
.acsl-accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.acsl-accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.acsl-accordion button[aria-expanded="true"] {
    color: var(--acsl-brand);
}
.acsl-accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}
.acsl-accordion button[aria-expanded="true"] + .acsl-accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    margin-bottom: 20px;
}
.acsl-accordion .acsl-accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.acsl-accordion .acsl-accordion-content p {
    font-size: 13px;
    margin: 0px 0 25px;
    line-height: 1.7em;
    font-weight: normal;
}
.acsl-accordion-content div span,
.acsl-accordion-content span {
    font-family: "Poppins", sans-serif !important;
}
.faq-img {
    max-width: 220px;
    margin: 0 auto;
}
.bg-blue-gradient {
    background: linear-gradient(
        270.9deg,
        rgba(255, 255, 255, 0.5) 16.17%,
        #f0f4fc 31.36%,
        #f1f5fc 51.88%,
        #ffffff 99.52%
    );
}

.listing-box {
    background-color: #f6f9fe;
    padding: 25px 15px 15px;
    border-radius: 10px;
    border: 1px solid #c6d9f6;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
.act-box {
    padding: 20px 30px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.updated-date {
    color: #424243;
    font-size: 12px;
}
.updated-date strong {
    font-weight: 600;
}
.read-more {
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    background-color: #4e2979;
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    border: 2px solid #4e2979;
    transition: 0.2s ease-in-out;
    margin-top: -5px !important;
    display: block;
    width: fit-content;
}
.read-more:hover {
    color: #4e2979;
    background-color: #fff;
}
.download {
    text-decoration: none;
    color: #fff;
    background-color: #365c96;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    border: 1px solid white;
}
.download:hover {
    background-color: #4e2979;
}
.download img {
    margin-bottom: 0px;
    width: 15px;
    margin-left: 5px;
}
.listing-box .align-left {
    float: left;
    width: 80%;
}
.listing-box .listing-title {
    margin-bottom: 10px;
    padding-top: 10px;
}
.listing-box .align-right {
    float: right;
    text-align: right;
    width: 20%;
    margin-top: 0px;
    padding-bottom: 0px;
}
.location {
    border: 1px solid #c6d9f6;
    border-radius: 5px;
    background-color: #fff;
    font-size: 13px;
    margin-top: -40px;
    display: block;
    width: fit-content;
    margin-bottom: 0px !important;
    padding: 5px 10px;
}
.tag_module {
    border: 1px solid #c6d9f6;
    border-radius: 5px;
    background-color: #fff;
    font-size: 13px;
    display: block;
    width: fit-content;
    margin-bottom: 0px !important;
    padding: 5px 10px;
    position: absolute;
    right: 0px;
    margin-top: -30px;
    margin-right: 50px;
}

/*pagination*/
.acsl-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pagination-design {
    display: flex;
}
.acsl-pagination__label,
.acsl-pagination-showdetails {
    font-size: 15px;
}
.entries-per-page {
    border: 1px solid #c6c6c6;
    border-radius: 5px;
    padding: 4px 7px;
    box-shadow: 2px 2px 10px 0 #0000001a;
    margin: 0 5px;
    outline: none;
}
.page-number {
    background-color: transparent;
    border: 1px solid #ebebeb;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
}
.page-number.active,
.page-number:hover {
    background-color: #192a45;
    color: #fff;
    transition: 0.2s ease;
}
.prev-page,
.next-page {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: transparent;
    border: none !important;
}

/*breadcrumb*/
.breadcrumb {
    display: flex;
    padding: 0px 20px 0 0;
    border-radius: 10px;
    border: 1px solid #d8e2f2;
    background-color: #f8fafb;
    width: -webkit-fill-available;
    width: -moz-available;
    margin-left: 40px;
    max-height: 45px;
    white-space: nowrap;
    margin-right: 0px;
}
.breadcrumb li {
    list-style: none;
    display: flex;
    align-items: center;
}
.breadcrumb-links {
    display: inline-flex;
    padding-left: 10px;
    white-space: nowrap;
}
.breadcrumb-links .acsl-icon {
    margin: 0 5px;
    width: 30px;
}
.breadcrumb li a {
    font-size: 14px;
    color: #424242;
}
.breadcrumb li a:hover {
    color: var(--acsl-brand);
}
.breadcrumb .page {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-transform: capitalize;
}
.breadcrumb .home,
.breadcrumb .divider {
    width: 20px;
    padding-left: 15px;
}

/*Filter styles*/
.filter {
    margin-left: 40px;
    display: flex;
}
.filter .checkbox-dropdown {
    min-width: 200px;
    border: 1px solid #c6c6c6;
    padding: 11px;
    position: relative;
    user-select: none;
    box-shadow: 2px 2px 6px 0 #0000001a;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    margin: 0 5px;
    height: fit-content;
}
.filter .checkbox-dropdown.is-active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.filter .checkbox-dropdown:after {
    content: "";
    height: 0;
    position: absolute;
    width: 0;
    border: 6px solid transparent;
    border-top-color: #000;
    top: 50%;
    right: 10px;
    margin-top: -3px;
}
.filter .checkbox-dropdown.is-active:after {
    border-bottom-color: #000;
    border-top-color: #fff;
    margin-top: -9px;
}
.filter .checkbox-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    border: inherit;
    border-top: none;
    left: -1px;
    right: -1px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    background-color: #fff;
    z-index: 1;
    width: 100%;
}
.filter .checkbox-dropdown-list input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-left: 0px;
    margin-right: 5px;
}
.filter .is-active .checkbox-dropdown-list {
    opacity: 1;
    pointer-events: auto;
}
.filter .checkbox-dropdown-list li label {
    display: flex;
    border-bottom: 1px solid #dedede;
    padding: 6px 10px;
    transition: all 0.2s ease-out;
    font-size: 12px;
    cursor: pointer;
    align-items: center;
}
.filter .checkbox-dropdown-list li label:hover {
    background-color: #cde1ff;
    color: #365c96;
}
.filter .checkbox-dropdown-list li {
    padding: 0px;
}

.filter .checkbox-dropdown-list::-webkit-scrollbar {
    width: 5px;
}
.filter .checkbox-dropdown-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
.filter .checkbox-dropdown-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(78 41 121);
}
.dropdown-header {
    padding: 8px 12px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 4px;
}
select {
    width: auto;
    border: 1px solid #c6c6c6;
    padding: 10px;
    position: relative;
    user-select: none;
    box-shadow: 2px 2px 6px 0 #0000001a;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    margin: 0 5px;
    height: fit-content;
    min-height: 40px;
    outline: none;
}
input#stateSearch,
#actSearch {
    padding: 8px 10px !important;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 13px;
    box-sizing: border-box;
    outline: none;
    margin: 0 4px 5px;
    width: calc(100% - 6px);
}

.acsl-top-content {
    margin-top: 60px;
}
.breadcrumb-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter {
    margin: 20px -5px 0px 10px;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    margin-right: 20px;
}
.page-heading-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-heading-filter h2 {
    padding-left: 40px;
}
.acsl-search {
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    font-size: 13px;
    border: 2px solid #424242;
    outline: none;
    height: 39px;
    border-radius: 5px 0px 0px 5px;
}
.acsl-search:focus {
    border: 2px solid #f8bc27;
    transition: 0.35s ease;
}
.acsl-search:focus::-webkit-input-placeholder {
    transition: opacity 0.45s ease;
    opacity: 0;
}
.search-container {
    display: inline-flex;
}
.search-container button {
    background-color: #424242;
    padding: 0px 15px;
    border-radius: 0 5px 5px 0;
    border: 2px solid #424242;
    height: 43px;
}
.search-container button img.search-icon {
    margin-bottom: 0px;
    width: 30px;
    filter: brightness(0) invert(1);
}

/*Detail page*/
.detail-content {
    border: 1px solid #c6d9f6;
    padding: 20px;
    border-radius: 10px;
    width: calc(100% + -20px) !important;
}
.detail-content .acsl-heading_3 {
    padding-bottom: 0px;
    width: 90%;
}
.detail-content .updated-date {
    font-style: italic;
    margin-bottom: 20px;
    display: block;
    margin-top: 5px;
}
.detail-content p {
    font-size: 14px;
    line-height: 1.8em;
}
.detail-content .location-1 {
    font-size: 12px;
    color: #4e2979;
    display: flex;
    float: right;
}
.detail-content .location-1 img {
    margin-bottom: 0px;
    width: 15px;
    padding-right: 2px;
}
.detail-content iframe {
    width: 100%;
    height: unset;
    overflow: hidden;
}
.articel-title {
    color: rgb(9, 9, 9);
    font-weight: 600;
    font-size: 16px;
}
.related-posts .article-title:hover {
    color: #4e2979;
}
.related-posts .text-description {
    color: #424242;
    font-size: 14px;
}
.related-posts .acsl-col {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #0000001a;
}
.related-posts .acsl-col .post-image {
    border-radius: 5px 5px 0 0;
    height: auto;
    object-fit: cover;
    width: 100%;
}
.related-posts .date,
.related-posts .place {
    display: flex;
}
.related-posts .article-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.related-posts .post-content {
    padding: 2px 10px 5px;
}
.related-posts .article-info span {
    color: #292929;
    font-size: 12px;
}
.related-posts .article-info span img {
    width: 15px;
    margin-right: 4px;
}

.select2-container--default .select2-selection--single {
    border-color: #fff;
    height: 60px;
    padding: 7.5px 0;
    border-radius: 0;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 58px;
}
.select2-dropdown {
    border-radius: 0;
    box-shadow: #444 0px 3px 5px;
    border: 0;
}

/*Holiday styles*/
.acsl-inline-title {
    display: flex;
    color: #292929;
    font-weight: 500;
}
.acsl-inline-title img {
    width: 20px;
    height:20px;
    margin-right: 5px;
}
.acsl-holiday-box {
    border: 1px solid #a1c6fe;
    border-radius: 10px;
    background-color: #f9fbff;
    padding: 12px 20px 18px;
    text-align: center;
}
.acsl-holiday-box:hover {
    background-color: #fff;
}
.acsl-holiday-box .acsl-title a {
    color: #20a2dc;
    font-size: 14px;
    font-weight: 600;
}
.acsl-holiday-box p {
    font-size: 11px;
    margin-bottom: 0px;
    color: #424242;
    margin-top: 10px;
}

/*holiday table*/
.table-container {
    width: 90%;
    margin: 20px auto;
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
}

.acsl-table {
    width: 100%;
    border-collapse: collapse;
}

.acsl-table thead {
    background-color: #c3d9fd;
}

.acsl-table th,
.acsl-table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid #dee9fc;
    font-size: 13px;
    word-break: unset;
}

.acsl-table th {
    cursor: pointer;
    user-select: none;
    font-size: 16px;
}
.acsl-table th b{
    font-weight: 500;
}

.acsl-table th.sortable:hover {
    background-color: #aac7f6;
}
.acsl-table .sortable:after {
    content: url("https://www.simpliance.in/frontend/images/sort-arrow.svg");
    padding-left: 5px;
}
.acsl-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.acsl-table tbody tr:nth-child(odd) {
    background-color: #fff;
}
.acsl-download {
    text-align: right;
    padding-top: 15px;
}
.acsl-download span {
    font-style: italic;
    font-size: 12px;
    padding-right: 10px;
}
.align-right {
    text-align: right;
    margin-top: -60px;
    padding-bottom: 15px;
}
.right_align {
    text-align: right;
    padding-bottom: 15px;
}
.align-right p {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 5px;
}
.table-outer {
    background-color: #f8fafb;
    padding: 15px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .acsl-table th,
    .acsl-table td {
        font-size: 14px;
        padding: 10px;
    }
}
.acsl-heading_3 {
    font-size: 20px;
}
.acsl-heading_4 {
    font-size: 15px;
    font-weight: 600;
}
.locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    gap: 1em;
    border: 1px solid #e0eaff;
    background-color: #f9fbff;
    border-radius: 10px;
    padding: 20px;
    padding-left: 40px;
    color: #20a2dc;
}
.locations a {
    color: #20a2dc;
    font-size: 14px;
}
.locations p {
    color: #555555;
    font-size: 14px;
    margin-bottom: 0px;
}

.locations a:hover {
    color: #4e2979;
    transition: 0.2s ease;
}
.non-applicable li {
    font-size: 14px;
    color: var(--acsl-black);
}
.main-content .list-content li {
    font-size: 13px;
    line-height: 1.7em;
    margin-bottom: 5px;
}
.list-items li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.select-menu {
    position: relative;
    width: 260px;
    margin: 15px 10px 0px;
}

.select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 15px 15px;
    border: 1px solid #afc2e1;
    border-radius: 5px;
    cursor: pointer;
    margin: 0px 0px;
}

.sBtn-text {
    font-size: 13px;
    color: #333;
}

.options {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #e6eefe !important;
    border: 0px solid #ccc;
    border-radius: 0px;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    z-index: 1000;
}

.options.active {
    max-height: max-content;
    border-radius: 0px 0px 10px 10px;
}

.option {
    display: flex;
    align-items: center;
    padding: 20px 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.option:hover {
    background: #cde1ff;
}

.option-text {
    margin-left: 10px;
    font-size: 14px;
    color: #090909;
}

/* Styling for content sections */
.menu-links {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    margin-top: 20px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: #555;
}

.menu-links.active {
    max-height: max-content;
}

.acsl-location-filter select {
    border-radius: 5px;
    border: 1px solid #c6c6c6;
    padding: 8px 15px;
    outline: none;
    cursor: pointer;
    box-shadow: 2px 2px 6px 0 #0000001a;
}
.acsl-location-filter {
    margin-top: -50px;
}

.state-name {
    padding-top: 20px;
    padding-left: 40px;
    margin-bottom: -40px;
    font-weight: 500;
}

/*FAQ*/
.faq-detail .default-container {
    background-color: #f6f9fe;
    padding: 20px;
    margin-left: 40px;
    width: calc(100% - 100px) !important;
    border: 1px solid #c6d9f6;
    border-radius: 5px;
}
.faq-detail .acsl-heading_2 {
    font-size: 16px;
    font-weight: 500;
}

.table-default th {
    background-color: #e0eaff !important;
    text-align: left !important;
    font-weight: 500;
    border: 1px solid #bed3ff !important;
}
.table-default td {
    text-align: left !important;
    line-height: 1.6;
    border: 1px solid #e0eaff;
}
.table-default td a {
    word-break: break-word;
    display: block;
    color: #20a2dc;
    margin-bottom: 5px;
}
.table-default td a:hover {
    color: var(--acsl-brand);
}
.table-default select {
    border: 1px solid #20a2dc;
    border-radius: 5px;
    padding: 8px 10px;
    cursor: pointer;
    min-width: 70px;
    width: 100%;
}
.table-default .col25 {
    width: 20%;
}

.table-default ul {
    padding-left: 20px;
    margin: 0px;
}

@media (max-width: 600px) {
    .table-default {
        display: block;
        overflow-x: auto;
        display: inline-block;
    }
    .table-container {
        overflow-x: auto;
        display: inline-block;
    }
    select {
        width: calc(100% - 0px);
    }
    select#monthFilter{
        margin-left: 0px;
        margin-bottom: 10px;
    }
}

/*Responsive table*/
.acsl-responsive-table {
    border: 1px solid #e0eaff;
    border-collapse: collapse;
    padding: 0;
    margin-left: 40px;
    width: calc(100% - 60px);
    table-layout: fixed;
    margin-bottom: 20px;
}
.acsl-responsive-table td a {
    color: #20a2dc;
    word-wrap: break-word;
}
.acsl-responsive-table th,
.acsl-responsive-table td {
    padding: 10px;
    text-align: left;
    font-size: 13px;
    border: 1px solid #e0eaff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}
.acsl-responsive-table th {
    font-size: 14px;
    font-weight: 500;
    background-color: #d8e5ff;
}
.table-style-2 th {
    background-color: #f2f6ff;
}
.table-style-2 .main-title th {
    background-color: #e0eaff !important;
    text-align: center;
}

#enquiry-form .form-group label {
    width: unset;
}

@media screen and (max-width: 600px) {
    .locations {
        grid-template-columns: 1fr;
    }
    .tag_module {
        margin-right: 30px;
    }
    .hours_listing {
        display: block !important;
    }
    .acsl-responsive-table {
        border: 0;
    }
    .acsl-responsive-table {
        margin-left: 20px;
        width: calc(100% - 40px);
    }
    .acsl-responsive-table thead {
        border: 1px solid #000;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .acsl-responsive-table tr {
        border-bottom: 3px solid #673392;
        display: block;
        margin-bottom: 10px;
    }
    .acsl-responsive-table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 12px;
        text-align: right;
    }
    .acsl-responsive-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    .acsl-responsive-table td:last-child {
        border-bottom: 0;
    }
}

/*Responsive styles for tablet*/
@media only screen and (max-width: 991px) and (min-width: 601px) {
    .banner-section {
        max-width: 60%;
    }
    ol.locations {
        grid-template-columns: 1fr 1fr !important;
        font-size: 13px;
    }
    .filter .checkbox-dropdown {
        width: 150px;
    }
    .acsl-banner-title {
        font-size: 30px;
        line-height: 1.3em;
    }
    .acsl-md-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .acsl-md-2 {
        grid-template-columns: 1fr 1fr;
    }
    .listing-box .align-left {
        width: 70%;
    }
    .listing-box .align-right {
        width: 30%;
    }
    .table-default {
        width: 100% !important;
        display: inline-table !important;
    }
    .table-default td {
        white-space: normal;
    }
    .acsl-col-9 {
        width: 66%;
    }
    .acsl-col-3 {
        width: 34%;
    }
    .btns-div {
        display: block !important;
    }
    .btns-div .btn-brand {
        margin: 5px;
        white-space: nowrap;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    #disclamier-popup {
        width: 80% !important;
    }
    .acsl-pagination__label,
    .acsl-pagination-showdetails {
        font-size: 12px;
    }
    .body-content {
        margin-left: 60px;
    }
    .acsl-top-content {
        display: block;
    }
    .breadcrumb {
        width: 100%;
        margin-bottom: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* important for iOS */
        white-space: nowrap;
    }
    .d-none-small {
        display: none;
    }
    .acsl-faq .acsl-col-8 {
        width: 100%;
    }
    .footer-content {
        display: block;
        text-align: center;
    }
    .footer-links {
        margin: 20px 0 25px;
    }
    .btn-brand {
        margin: 10px;
        text-align: center;
        padding: 10px 20px !important;
        border: 2px solid var(--acsl-brand) !important;
    }
    .country-dropdown select {
        width: 90%;
        margin-top: 10px;
    }
    button.owl-prev,
    button.owl-next {
        position: unset;
        margin: 20px 10px 0;
    }
    .owl-nav {
        text-align: center;
    }
    .promotion-slider .owl-nav {
        margin-top: -15px;
    }
    .menu-item-has-children .fa-arrow-right {
        transform: rotate(-0deg) !important;
        right: 45px;
    }
    .pr-40 {
        padding-right: 40px;
    }
    .acsl-table tr th {
        width: 20%;
    }
    .acsl-table .name {
        width: 40%;
    }
    .locations a, .non-applicable li{
        font-size: 13px;
    }
    .small-right-none .default-container {
        padding-right: 0px;
    }
}

/* Responsive Styles */
@media (max-width: 600px) {
    .doc-content span{
        width: 100% !important;
        height: unset !important;
        word-wrap: break-word;
    }
    .doc-content img {
        height: unset !important;
    }
    .doc-content table {
        width: 100%;
        overflow-x: auto;
        display: block;
        margin: 20px 0px;
    }
    .detail-content .acsl-heading_3 {
        width: 100%;
        display: inline-block;
    }
    .detail-content .location-1 {
        display: inline-flex;
        float: unset;
        align-items: center;
    }
    .footer-content {
        padding: 0 0px;
    }
    .state-name {
        padding-left: 20px;
    }
    ol.locations {
        grid-template-columns: 1fr !important;
    }
    #disclamier-popup {
        width: 80% !important;
        transform: translate(-50%, -10%) !important;
    }
    .acsl-location-filter select {
        width: 100%;
    }
    .banner-section {
        padding: 60px 10px 10px;
        max-width: 100%;
    }
    .acsl-header .acsl-logo img {
        max-height: 40px;
    }
    p {
        font-size: 14px;
    }
    .default-container {
        padding: 0px 15px 0 15px;
    }
    .body-content {
        margin-left: 0px;
        margin-top: 20px;
    }
    .breadcrumb {
        margin-left: 0px;
        max-height: 50px;
        max-width: calc(100% - 20px);
    }
    .hamburger {
        display: block;
    }

    .acsl-accordion button .acsl-accordion-title {
        width: 90%;
    }
    .acsl-accordion button .icon {
        top: 20px;
    }

    .listing-box .align-left {
        width: 100%;
    }
    .listing-box .align-right {
        text-align: left;
        width: 100%;
    }
    .ascl-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
    }
    .ascl-menu.active {
        display: flex;
    }
    .ascl-menu li {
        padding: 10px;
        text-align: center;
        width: 100%;
    }

    .acsl-banner-title {
        font-size: 1.6em;
    }
    .cta-box-style-1 {
        margin-block-end: 0px;
    }
    .acsl-row-2,
    .acsl-row-3,
    .acsl-row-4 {
        grid-template-columns: 1fr;
    }
    .acsl-copyright-text {
        margin-bottom: 15px;
        font-size: 12px;
        text-align: center;
    }
    .listing-box .listing-title {
        font-size: 15px;
    }
    .footer-links a {
        font-size: 12px;
        padding: 10px 2px;
    }
    .acsl-social-icons {
        margin-left: 0px;
        text-align: center;
    }
    .acsl-searchform-input {
        inline-size: calc(100%);
    }
    button.owl-prev,
    button.owl-next {
        width: 40px;
        height: 40px;
    }
    button.owl-prev i,
    button.owl-next i {
        font-size: 16px;
        width: 16px;
        height: 16px;
        padding: 4px;
        line-height: 18px;
    }
    .acsl-autocomplete-wrap,
    .acsl-searchform-input {
        width: 320px;
        max-width: 320px;
        min-width: 320px;
    }
    img.banner-img {
        width: 100%;
    }
    .acsl-banner-title-div h1 span {
        font-size: 34px !important;
    }
    .footer.request-assistance {
        display: none;
    }
    .promotion-slider .owl-item img {
        height: 160px;
        object-fit: cover;
    }
    .filter {
        margin-left: 0px;
        display: block;
    }
    .filter .checkbox-dropdown {
        width: calc(100% - 15px);
        margin: 10px 0;
    }
    .acsl-top-content {
        padding: 10px 15px;
        margin-top: 80px;
    }
    .search-container {
        width: 100%;
    }
    .acsl-pagination {
        display: block;
        text-align: center;
    }
    .acsl-pagination-showdetails {
        margin: 15px 0;
    }
    .breadcrumb-search,
    .page-heading-filter {
        display: block;
    }
    .page-heading-filter h2 {
        padding-left: 0px;
        padding-top: 20px;
    }
    .align-right {
        margin-top: 0;
        padding-bottom: 15px;
        text-align: left;
    }
    .acsl-download {
        text-align: left;
        padding-top: 10px;
    }
    .acsl-download span {
        margin-bottom: 10px;
        display: block;
    }
    .acsl-table th,
    .acsl-table td, .acsl-table p, .acsl-table li{
        font-size: 12px;
    }
    .row-sm {
        display: block;
    }
    .acsl-col-6 {
        width: 100%;
        float: unset;
    }
    .faq-detail .default-container {
        margin-left: 20px;
        width: calc(100% - 80px) !important;
    }
    .acsl-location-filter select {
        margin-bottom: 10px;
    }
    .acsl-col-9,
    .acsl-col-3 {
        width: 100%;
    }
    .btns-div {
        display: block !important;
    }
    .btns-div .btn-brand {
        margin: 5px;
    }
    .quick-links {
        margin-top: 20px;
        position: unset;
    }
    .acsl-row-mobile {
        display: block;
    }
}

#mySizeChart {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#disclamier-popup {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 50%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-align: left;
}
#disclamier-popup p {
    font-size: 12px;
}

#disclamier-close-icon {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_length {
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    padding: 10px 0;
}

.left-none {
    margin-left: 0px;
    width: 100%;
}
.strong-bullet {
    font-size: 18px;
    font-weight: 600;
}
.strong-bullet:before {
    content: "•";
    margin-right: 10px;
    color: black;
    font-size: 26px;
    vertical-align: middle;
}
.btns-div {
    gap: 10px;
    display: flex;
    margin-top: 30px;
    white-space: nowrap;
}
.quick-links {
    border: 1px solid #d3e3eb;
    padding: 20px 15px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}
.quick-links ul {
    padding-left: 30px;
    margin-top: 20px;
}
.quick-links h3 {
    color: #20a2dc;
}
.quick-links li {
    margin-bottom: 10px;
}
.quick-links li a {
    color: #292929;
}
.quick-links li a:hover {
    color: var(--acsl-brand);
}

.pagination-next-icon,
.pagination-prev-icon {
    width: 10px;
    height: 10px;
    margin-bottom: 0px;
    display: unset;
    vertical-align: middle;
}
button.prev-page:hover .acsl-icon,
button.next-page:hover .acsl-icon {
    filter: brightness(0) invert(1);
}

/* .acsl-table tr td a {
    color: #20a2dc !important;
} */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    display: none;
}
.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px); /* for IE6+ */
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    display: none;
}

.acsl-icon {
    height: 20px;
    width: 20px;
    display: block;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    transition: color 0.3s;
    color: #000;
}

.acsl-icon-home {
    background-image: url('data:image/svg+xml,<svg width="14" height="13" viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.35355 1.56051L11 5.20696V10.9998C11 11.276 10.7761 11.4998 10.5 11.4998H9V8.99985C9 8.17142 8.32843 7.49985 7.5 7.49985H6.5C5.67157 7.49985 5 8.17142 5 8.99985V11.4998H3.5C3.22386 11.4998 3 11.276 3 10.9998V5.20696L6.64645 1.56051C6.84171 1.36525 7.15829 1.36525 7.35355 1.56051ZM8.06066 0.853402C7.47487 0.267616 6.52513 0.267616 5.93934 0.853402L0.646447 6.1463C0.451184 6.34156 0.451184 6.65814 0.646447 6.8534C0.841709 7.04866 1.15829 7.04866 1.35355 6.8534L2 6.20696V10.9998C2 11.8283 2.67157 12.4998 3.5 12.4998H10.5C11.3284 12.4998 12 11.8283 12 10.9998V6.20696L12.6464 6.8534C12.8417 7.04866 13.1583 7.04866 13.3536 6.8534C13.5488 6.65814 13.5488 6.34156 13.3536 6.1463L8.06066 0.853402ZM8 11.4998H6V8.99985C6 8.72371 6.22386 8.49985 6.5 8.49985H7.5C7.77614 8.49985 8 8.72371 8 8.99985V11.4998Z" fill="%23424242"/></svg>');
}
.article-style-1 img {
    object-fit: cover;
}
.acsl-icon-separator {
    background-image: url('data:image/svg+xml,<svg width="18px" height="28px" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="48" height="48" fill="white" fill-opacity="0.01" /><path d="M12 12L24 24L12 36" stroke="%23292929" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" /><path d="M24 12L36 24L24 36" stroke="%23292929" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" /></svg>');
}
.acsl-icon-arrow-down {
    background-image: url('data:image/svg+xml,<svg width="18" height="9" viewBox="0 0 18 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.5837 0.75L11.167 6.3399C10.8885 6.63499 10.5526 6.87006 10.1801 7.03074C9.80749 7.19142 9.40607 7.27433 9.00032 7.27433C8.59458 7.27433 8.19309 7.19142 7.82052 7.03074C7.44795 6.87006 7.11214 6.63499 6.83366 6.3399L1.41699 0.75" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.acsl-icon-prev-arrow {
    background-image: url('data:image/svg+xml,<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.46967 6.53033C0.176777 6.23744 0.176777 5.76256 0.46967 5.46967L5.71967 0.21967C6.01256 -0.0732233 6.48744 -0.0732233 6.78033 0.21967C7.07322 0.512563 7.07322 0.987437 6.78033 1.28033L2.06066 6L6.78033 10.7197C7.07322 11.0126 7.07322 11.4874 6.78033 11.7803C6.48744 12.0732 6.01256 12.0732 5.71967 11.7803L0.46967 6.53033ZM11.7197 11.7803L6.46967 6.53033C6.17678 6.23744 6.17678 5.76256 6.46967 5.46967L11.7197 0.21967C12.0126 -0.0732233 12.4874 -0.0732233 12.7803 0.21967C13.0732 0.512563 13.0732 0.987437 12.7803 1.28033L8.06066 6L12.7803 10.7197C13.0732 11.0126 13.0732 11.4874 12.7803 11.7803C12.4874 12.0732 12.0126 12.0732 11.7197 11.7803Z" fill="%23292929"/></svg>');
    background-size: 13px;
    margin-left: -2px;
}
.acsl-icon-next-arrow {
    background-image: url('data:image/svg+xml,<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.28033 0.21967L6.53033 5.46967C6.82322 5.76256 6.82322 6.23744 6.53033 6.53033L1.28033 11.7803C0.987437 12.0732 0.512563 12.0732 0.21967 11.7803C-0.0732234 11.4874 -0.0732234 11.0126 0.21967 10.7197L4.93934 6L0.219672 1.28033C-0.0732221 0.987437 -0.073222 0.512563 0.219672 0.21967C0.512565 -0.0732234 0.987439 -0.0732234 1.28033 0.21967ZM7.28033 0.21967L12.5303 5.46967C12.8232 5.76256 12.8232 6.23744 12.5303 6.53033L7.28033 11.7803C6.98744 12.0732 6.51256 12.0732 6.21967 11.7803C5.92678 11.4874 5.92678 11.0126 6.21967 10.7197L10.9393 6L6.21967 1.28033C5.92678 0.987437 5.92678 0.512563 6.21967 0.21967C6.51256 -0.0732234 6.98744 -0.0732234 7.28033 0.21967Z" fill="%23292929"/></svg>');
    background-size: 13px;
}

/* Reposonive using each pages */
.acsl-top-content {
    margin-right: 20px;
    padding-right: 0px;
}
.acsl-top-content .filter .checkbox-dropdown:last-child {
    margin-right: 0px;
}
.acsl-body-lei-labour_code .breadcrumb {
    margin-right: 0px !important;
}
.acsl-body-lei-acts .acsl-top-content {
    padding-right: 0px;
}
.acsl-body-lei-acts .checkbox-dropdown {
    margin-right: 0px !important;
}
.acsl-body-lei-rules .breadcrumb,
.acsl-body-lei-rules .page-heading-filter, .acsl-body-lei-rules .filter {
    margin-right: 0px;
}
.acsl-body-lei-schemes .filter, .acsl-body-lei-schemes .breadcrumb {
    margin-right: 0px;
}
.acsl-body-lei-forms .acsl-top-content {
    margin-right: 0px;
}
.acsl-body-lei-professional_tax .filter {
    margin-right: -5px;
}
.acsl-body-lei-regulations .filter {
    margin-right: 0px;
}
.acsl-body-lei-regulations .acsl-top-content .filter .checkbox-dropdown:last-child, .acsl-body-lei-schemes .acsl-top-content .filter .checkbox-dropdown:last-child, .acsl-body-lei-rules .acsl-top-content .filter .checkbox-dropdown:last-child {
    width: calc(100% - 0px);
}
.acsl-body-lei-acts .filter {
    margin-right: 0px;
}
.acsl-body-lei-labour_code .acsl-section.acsl-top-content {
    padding-right: 0px !important;
}
.acsl-body-lei-forms .breadcrumb{
    margin-right: 20px;
}


@media only screen and (max-width: 991px) and (min-width: 601px) {
    .page-heading-filter {
        margin-right: 20px;
    }
    .acsl-body-lei-rules .breadcrumb,
    .page-heading-filter {
        margin-right: 0px;
    }
    .acsl-body-lei-rules .pr-30 {
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .breadcrumb {
        margin-right: 0px;
    }
    .acsl-body-lei-forms .filter {
        margin-right: 20px !important;
    }
}

@media (max-width: 600px) {
    .acsl-section.acsl-top-content {
        padding-right: 0px !important;
    }
    .acsl-body-lei-rules .filter .checkbox-dropdown {
        width: calc(100% - 0px);
    }
    .acsl-top-content .filter .checkbox-dropdown:last-child {
        width: calc(100% - 20px);
    }
}

.documet_content{
    max-width: 780px;
    margin: 0 auto;
    border: 3px solid #c6d9f6;
}
.lwf_updated_date {
    font-size: 11px;
    margin-top: 10px;
    text-align: right;
}




/* Google search */
.gsib_a {
    padding: 8px 10px !important;
    border: 0px solid;
    border-radius: 10px 0 0 10px;
}
.gsc-control-wrapper-cse {
    border-radius: 12px !important;
    border: 2px solid;
    margin-top: -5px;
}
table.gsc-search-box {
    margin-bottom: -4px !important;
}
.gsc-search-button-v2 {
    padding: 10px 15px !important;
    background-color: #000 !important;
    border-color: #000 !important;
    border-radius: 0px 10px 10px 0 !important;
    margin-left: 0px !important;
}
.gsc-control-cse {
    border: 1px solid #ebf3ff00 !important;
    border-radius: 10px;
    margin-top: 10px;
    background-color: transparent !important;
    padding: 0px !important;
}
.gsc-input-box {
    border: 0px solid #dfe1e5 !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    border-radius: 12px;
}
table.gsc-search-box td.gsc-input {
    padding-right: 0px !important;
    border: 0px solid #ccc;
    padding: 0px;
}
.gsc-search-button {
    padding: 0px;
    border: 0px;
}
td.gsib_b {
    display: none !important;
}
.gsc-search-button-v2 svg {
    width: 20px !important;
    height: 20px !important;
}
.google-search-box {
    max-width: 640px !important;
    min-width: 360px;
    margin-top: -5px !important;
    margin-left: 10px !important;
}

@media only screen and (max-width: 991px) and (min-width: 601px) {
    .google-search-box {
        margin-top: -10px !important;
    }
}

@media (max-width: 600px) {
    .lwf_updated_date {
        text-align: left;
    }
    .gsc-search-button-v2 {
        padding: 17px 20px !important;
    }
    .gsib_a {
        padding: 10px 10px !important;
    }
    .gsc-search-button-v2 {
        padding: 12.5px 15px !important;
    }
    .google-search-box {
        min-width: 320px;
        margin-left: 0px !important;
    }
}   


