* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    list-style: none;
    text-decoration: none;
}

/* li {
    list-style: none;
} */

p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0;
}

/* ************* App Loader ************* */

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #000 #0000;
    animation: l1 1s infinite;
}

@keyframes l1 {
    to {
        transform: rotate(.5turn)
    }
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    display: none;
}

.search-overlay.active {
    display: block;
}

.focused-search {
    position: relative;
    z-index: 10;
}

/* ************* Header Style ************* */

.button-black {
    background-color: #2e2e2e;
    color: #ffffff;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    box-shadow: none;
    border-style: Solid;
    cursor: pointer;
}

.header-box {
    position: sticky;
    top: 0px;
    background-color: white;
    border-radius: 0px 0px 50px 50px;
    z-index: 11
}

.title {
    color: #101828;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
}

.clear-button {
    position: absolute;
    top: 30%;
    right: 75px;
    background-color: black;
    width: 23px;
    border-radius: 50% !important;
    color: white;
    justify-content: center;
    display: none;
    align-items: center;
    height: 23px;
    z-index: 10;
    cursor: pointer;
}

#doc-search-result {
    padding: 0;
    border: none;
    position: absolute;
    width: 100%;
    background: var(--bs-white);
    border-radius: 4px;
    box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1);
    font-size: 14px;
    font-weight: 400;
    display: none;
    transition: all 0.4s;
    z-index: 99;
    top: 70px;
}

#doc-search-result::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    position: absolute;
    top: -6px;
    transform: rotate(45deg);
    left: 40px;
    border-left: 1px solid #e6eeef;
    border-top: 1px solid #e6eeef;
}

.ezd-badge {
    background: rgb(175 184 193 / .2);
    color: var(--black_800);
    font-size: 11px;
    padding: 3px 8px 0;
    border-radius: 3px;
    margin-right: 5px;
    display: inline-block;
    line-height: 1.45;
    vertical-align: middle;
    font-weight: 500;
    height: 20px;
    letter-spacing: .2px;
    margin-top: 5px;
}

.pointer {
    cursor: pointer !important;
}

/* ************* pages Style ************* */

.accordion-button {
    background-color: #d8e1f5;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #2e2e2e;
    color: #ffffff;
    border-radius: 10px 10px 0px 0px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:hover {
    background-color: #2e2e2e;
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-flush {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 131px;
}

.sub-menu {
    background: #fff;
    border-top: none;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px 0px 10px 10px;
}

.sub-menu a {
    color: #101828;
}

.sub-menu a:hover {
    color: green;
    text-decoration: none;
}

.left-menu-item {
    padding: 12px;
    text-decoration: underline;
}

.eazydocs-next-prev-wrap {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
    flex-wrap: wrap;
}

.eazydocs-next-prev-wrap a {
    flex: 1;
    min-width: 45%;
    display: block;
    box-shadow: 0 1px 2px rgb(0 0 0 / .12);
    border: 1px solid black;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none !important;
    position: relative;
    background: #f9f9f9;
    color: black;
    font-size: 17px;
    font-weight: 500;
}

.eazydocs-next-prev-wrap a span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #6a737c;
    font-weight: 400;
    margin-bottom: 6px;
}

.prev-prev-pager.second::before {
    content: "➜";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-size: 24px;
    color: #8899a8;
}

.next-prev-pager.second::after {
    content: "➜";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #8899a8;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Contect Us  */
.form-control {
    padding: .9rem .75rem;
}

.form-label {
    margin-bottom: 0px;
}

.contact-icon {
    align-items: center;
    display: flex;
    height: 46px;
    justify-content: center;
    margin-bottom: 11px;
    width: 46px;
    background: rgb(93 114 112 / 10%);
    border-radius: 50%;
    transition: 0.4s;
}

li.active-li a {
    color: green;
    border-radius: 6px;
}


/* header  */
.site-header-image {
    width: 25%;
}

/* header  */
.site-footer-image {
    width: 8%;
}

/* category  */
.category-content {
    padding: 0rem 3rem;
}

.category-list-sidebar li {
    list-style-type: none;
}

.find_answer {
    font-size: 40px;
    font-weight: 600;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .site-header {
        padding: 16px 32px !important;
    }

    .site-header-image {
        width: 75%;
    }

    .app-name {
        display: none;
    }

    .site-footer-image {
        width: 12% !important;
    }

    .category-page {
        padding: 0rem 1.5rem;
    }

    .category-content {
        padding: 1rem 0rem;
    }

    .tandc {
        padding: 48px 32px !important;
    }

    .privacy-policy {
        padding: 48px 32px !important;
    }

    .site-footer-padding {
        padding: 20px 20px !important;
    }

    .eazydocs-next-prev-wrap a {
        padding: 10px 10px;
    }

    .prev-prev-pager.second::before {
        left: 5px;
    }

    .next-prev-pager.second::after {
        right: 5px;
    }

    .search-result {
        padding: 50px 10px !important;
    }

    .category-list {
        padding: 50px 20px !important;
    }
    .find_answer {
        font-size: 22px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .site-footer-image {
        width: 25% !important;
    }

    .category-content {
        padding: 1rem 0rem;
    }

    .prev-prev-pager.second::before {
        left: 8px;
    }

    .next-prev-pager.second::after {
        right: 8px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 767.98px) and (max-width: 991.98px) {
    .site-footer-image {
        width: 13%;
    }

    .prev-prev-pager.second::before {
        left: 10px;
    }

    .next-prev-pager.second::after {
        right: 10px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 991.98px) and (max-width: 1200px) {
    .site-footer-image {
        width: 10%;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1200px) and (max-width: 1400px) {
    .site-footer-image {
        width: 9%;
    }
}