.ff-header {
    width: 100%;
    position: fixed;
    background: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
    z-index: 1111;
}
.ff-header__burgar-menu {
    background-color: var(--color-secondary);
}
.ff-header__menu-col--primary,
.ff-header__search-wrap:hover,
header .ff-dropdown__item.active {
    background-color: var(--color-primary);
}
.ff-header__navbar {
    padding: 15px 0;
}
.ff-header__link > a {
    font-size: var(--fs-text-medium);
    line-height: calc(var(--fs-text-medium) + 8px);
    color: var(--color-secondary);
    font-weight: 500;
    padding: calc(var(--spacing-card) / 2);
}
.ff-header__link:last-child > a {
    margin-right: 0;
}
.ff-header__link-icon {
    fill: var(--color-secondary);
}
.ff-header__link:last-child {
    margin: 0;
}
.ff-header__search-wrap {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gray);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.2s;
}
.ff-header__search-wrap:hover {
    color: #fff;
}
.ff-header__menu-content {
    padding: 24px 16px;
}
header .ff-dropdown__items {
    width: 200px;
    box-shadow: 0 2px 6px 2px rgb(0 0 0 / 0.15), 0 1px 2px 0 rgb(0 0 0 / 0.3);
    border: none;
    overflow: hidden;
}
/* header .ff-dropdown__item {
    --pading-val: 18px;
    font-size: 16px;
    padding: var(--pading-val);
    cursor: pointer;
} */
 header .ff-dropdown__item {
    --pading-val: 18px;
    font-size: 16px;
    padding: 8px 12px 8px 16px;
    cursor: pointer;
    width: 200px;
    height: 58px;
    gap: 12px;
}
.ff-header__burgar-menu,
.ff-header__menu-col--secondary {
    background-color: var(--color-secondary);
}
.ff-header__menu-title--lightgray {
    color: #d9d9d9;
}
.ff-header__course-item-inwrap {
    padding-right: 28px;
}
.ff-header__course-title,
.ff-header__link > a {
    transition: color 0.3s;
}
.ff-header__course-item:hover,
.ff-header__link-wrap:hover .ff-header__link > a {
    color: var(--color-primary);
}
.ff-header__course-count {
    color: var(--color-body);
    transition: 0.3s;
}
.ff-header__course-item {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 6px;
    position: relative;
    transition: 0.3s;
}
.ff-header__course-item:hover {
    background-color: #efefef;
}
.ff-header__course-item .ff-header__course-item-inwrap::after {
    content: "";
    width: 7px;
    height: 11px;
    flex-shrink: 0;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/icons/arrow-right-gray.svg);
    top: 7px;
    right: 8px;
    transition: 0.3s;
}
.ff-header__course-item:hover .ff-header__course-item-inwrap::after {
    transform: translateX(10px);
}
.ff-header__burgar-menu {
    width: 30px;
    height: 2px;
    border-radius: 10px;
    position: relative;
    margin: 6px 0;
}
.ff-header__search-close {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 6px;
    cursor: pointer;
}
.ff-header__search-input .ff-header__search-trigger-inwrap::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    background-image: url(../images/icons/search.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.ff-header__dropdown {
    --container-val: 100%;
    width: 100vw !important;
    left: calc(var(--container-val) - 100vw / 2) !important;
    border: none;
}
.ff-header__course-item-inwrap {
    width: 100%;
}
@media (min-width: 992px) {
    .ff-header__link > a {
        font-size: var(--fs-base);
        line-height: calc(var(--fs-base) + 10px);
        text-align: center;
    }
    .ff-header__dropdown {
        --container-val: 465px;
    }
    .ff-header__course-items {
        --gutter-space-menu: 20px;
        margin: 0 calc(-1 * var(--gutter-space-menu));
        max-height: 544px;
        overflow-y: auto;
    }
    .ff-header__course-item {
        padding-left: var(--gutter-space-menu) !important;
        padding-right: var(--gutter-space-menu) !important;
    }
    .ff-header__menu-content {
        height: 100%;
        padding: 32px 40px;
    }
    .ff-header__search-active .ff-header__menu-list,
    .ff-header__search-active .header_search_button,
    .ff-header__search-input {
        display: none;
    }
    .ff-header__course-items::-webkit-scrollbar {
        width: 6px;
        background-color: var(--color-secondary-light);
    }
    .ff-header__course-items::-webkit-scrollbar-thumb {
        background-color: var(--color-secondary);
        border-radius: 10px;
    }
    .ff-header__menu-video {
        height: 170px;
    }
    .ff-header__menu-video img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .ff-header__dropdown-link + .ff-header__dropdown {
        position: absolute;
        padding-top: 22px !important;
        background: #fff;
        display: none;
        visibility: hidden;
        opacity: 0;
        z-index: 111;
    }
    .ff-header__dropdown.show {
        display: block !important;
    }
    .remove-visibility .ff-header__dropdown {
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .remove-visibility .ff-header__dropdown-link > a.category {
        color: var(--color-primary);
    }
    .remove-visibility .ff-header__link-icon svg {
        transform: rotate(180deg);
    }
    .ff-header__dropdown-inwrap {
        max-height: calc(100vh - 83px);
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 1px 3px 1px rgb(0 0 0 / 0.15);
    }
    .ff-header__search-result-list {
        padding-bottom: 56px;
    }
    .ff-header__search-result-list + .ff-header__search-result-btn {
        position: absolute;
        bottom: 0;
        background: #fff;
        width: calc(100% - 18px);
        left: 0;
    }
    .ff-header__search-active .ff-header__last-col {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .ff-header__link > a {
        font-size: var(--fs-text-medium);
        line-height: calc(var(--fs-text-medium) + 10px);
    }
    .ff-header__dropdown {
        --container-val: 554px;
    }
}
.ff-header__dropdown-close {
    width: 36px;
    height: 36px;
    border-radius: 100px;
}
.ff-header__dropdown-close:hover {
    background-color: #efefef;
}
.ff-header__menu-row {
    background-color: #fff;
}
.ff-header__link .dropdown-menu[data-bs-popper] {
    top: unset;
    margin-top: 0 !important;
}
.ff-header__search-input input {
    border: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 5px 30px;
    outline: 0;
    font-size: var(--fs-text-medium);
}
.ff-header__search-input input {
    border: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 5px 30px;
    outline: 0;
    font-size: var(--fs-text-medium);
}
.ff-header__search-active .ff-header__search-input {
    width: 100%;
    display: block;
}
@media (min-width: 320px) and (max-width: 991px) {
    .ff-header__dropdown > .container {
        padding: 0 !important;
    }
    .ff-header__dropdown {
        position: fixed;
        height: 100vh;
        overflow-y: auto !important;
        max-height: unset !important;
        top: 0;
        left: 0 !important;
        transform: translateX(100%);
        transition: 0.3s;
    }
    .ff-header__dropdown.collapse.show {
        transform: translateX(0);
    }
    .ff-header__mobile-trigger {
        width: 24px;
        height: 24px;
        padding: 0 !important;
    }
    .ff-header__inwrap::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        position: absolute;
        left: 0;
    }
    .ff-header__navbar-wrap,
    .ff-header__search-input {
        width: 100%;
        height: 100vh;
        position: fixed !important;
        left: 0;
        top: 0;
        background: #fff;
    }
    .header_search_button {
        margin-left: auto;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
        transition: 0.1s;
    }
    .ff-header__search-input {
        height: auto !important;
        display: block;
        transform: translateY(-101%);
        transition: 0.3s;
        z-index: -111 !important;
        padding: 20px 0 !important;
    }
    .ff-header.ff-header__search-active {
        position: fixed;
        z-index: 9997;
        background: #fff;
        width: 100%;
    }
    .ff-header__search-active .ff-header__search-input,
    .ff-header__search-visible .ff-header__search-input,
    .ff-search__onChange .ff-header__search-input,
    .sticky .ff-header__search-input {
        transform: translateY(0);
        transform: translateY(72px);
        border-top: 1px solid rgb(0 0 0 / 0.1);
    }
    .ff-search__onChange .ff-header__search-input {
        height: calc(100vh - 72px) !important;
    }
    .ff-search__onChange .ff-header__search-results-wrap {
        position: relative;
        box-shadow: none;
        height: calc(100% - 44px);
        flex-grow: 1;
    }
    .ff-header__scroll-active .ff-header__search-input {
        box-shadow: 0 10px 10px #6f6f6f30;
    }
    .ff-header__search-input .ff-header__search-close {
        display: none;
    }
    .ff-header__scroll-active .ff-header__search-input .ff-header__search-close,
    .ff-search__onChange .ff-header__search-input .ff-header__search-close {
        display: flex;
    }
    .ff-header__scroll-active .header_search_button {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: 0.3s;
    }
    .ff-search__onChange .header_search_button,
    .sticky .header_search_button {
        opacity: 0;
        visibility: hidden;
    }
    .ff-header__link > a {
        font-size: calc(var(--fs-text-medium) + 2px);
        line-height: calc(var(--fs-text-medium) + 10px);
        font-weight: 400;
        padding: 12px 16px;
        font-family: Poppins;
        font-size: 14px;
        font-weight: 500;
        line-height: 22px;
        text-align: left;
        color: #3E3E3E;
        padding: 16px;
    }
    .ff-header__dropdown-link--lang {
        margin-top: 8px;
    }
    .ff-header__search-trigger-inwrap {
        position: relative;
    }
    .ff-header__search-input .ff-header__search-trigger-inwrap::before {
        left: 10px;
    }
    .ff-header__search-close {
        right: 8px;
    }
    .ff-header__search-input input {
        border: 1px solid #909090;
        border-radius: 16px;
        padding: 10px 35px;
    }
    .ff-header__navbar-wrap {
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 11111;
    }
    .show.ff-header__navbar-wrap {
        transform: translateX(0);
    }
    .ff-header__dropdown {
        display: block !important;
        overflow: hidden;
    }
    .ff-header__dropdown-item {
        padding: 18px;
    }
    .ff-header__search-wrap {
        margin-right: 8px;
    }
    .ff-header__mobile-navbar-top {
        border-bottom: 1px solid rgb(0 0 0 / 0.1);
        padding: 20px 16px;
    }
    .ff-header__navbar-close-mobile {
        text-align: right;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ff-header__search-trigger {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .ff-header__search-results {
        height: 100% !important;
    }
}
.ff-header__search-results-wrap {
    width: 100%;
    position: absolute;
    z-index: 111111;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 10px #00000029;
}
li.ff-header__search-result a {
    color: var(--color-body);
}
li.ff-header__search-result:last-child {
    border: none;
}
.ff-header__search-result-button {
    width: 100%;
    background-color: #fff;
}
@media (min-width: 1400px) {
    li.ff-header__link-wrap:nth-child(4) {
        margin: 0;
    }
    li.ff-header__link-wrap {
        margin-right: 20px;
    }
}
@keyframes navbarSlide {
    0% {
        transform: translatex(100%);
    }
    100% {
        transform: translatex(0);
    }
}
@keyframes navbarSlideOut {
    0% {
        transform: translatex(0);
    }
    100% {
        transform: translatex(100%);
    }
}
.ff-header__col-logo {
    max-width: 170px;
}
.ff-header__search-results {
    height: 60vh;
    overflow-y: auto;
}
header .ff-header__dropdown-select {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid;
    position: relative;
    color: var(--color-gray);
}
header .ff-dropdown__item.active {
    background: 0 0;
    border-color: var(--color-primary) !important;
}
header .ff-dropdown__item.active span.ff-header__dropdown-select {
    border-color: var(--color-primary);
}
header .ff-dropdown__item.active span.ff-header__dropdown-select::before {
    content: "";
    width: 60%;
    height: 60%;
    position: absolute;
    background: currentColor;
    border-radius: 100px;
    color: var(--color-primary) !important;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
@media (min-width: 320px) and (max-width: 992px) {
    header .ff-dropdown__lang-items {
        width: 100%;
        height: 100vh;
        position: fixed;
        background: #fff;
        top: 0 !important;
        margin: 0 !important;
        border-radius: 0;
        border: none;
        display: block !important;
        transform: translateX(100%);
        transition: transform 0.3s;
    }
    header .show.ff-dropdown__lang-items {
        transform: translateX(0);
    }
    header .ff-header__dropdown-subtitle {
        padding: 8px 16px;
    }
    .ff-header__dropdown-title {
        font-size: var(--fs-block);
        line-height: calc(var(--fs-block) + 8px);
    }
    header .ff-dropdown {
        background-image: url(../images/icons/arrow-right-gray.svg);
    }
}
@media (min-width: 992px) {
    .ff-header__search-results {
        height: 405px;
        overflow-y: auto;
    }
    .ff-header__search-results-wrap {
        overflow: hidden;
    }
    .ff-search__onChange ~ .ff-main::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #000000a8;
        z-index: 11;
    }
}
.ff-search__noresult-card-inwrap {
    height: 100%;
    background: var(--color-primary-light);
    border-radius: 8px;
    padding: 22px var(--spacing-card);
}
.ff-search__noresult-cards {
    margin: 0 -4px;
}
.ff-search__noresult-card {
    height: auto !important;
    padding: 0 4px;
    margin-bottom: 8px;
}
.ff-search__noresult-title {
    font-size: 16px;
}
.ff-search__noresult-card-title {
    font-size: var(--fs-base);
    line-height: calc(var(--fs-base) + 6px);
}
.ff-icon__circle {
    width: 16px;
    height: 16px;
    background-color: var(--color-primary);
    border-radius: 100px;
}
.ff-search__animation-wrap {
    left: 36px;
    overflow: hidden;
    color: var(--color-gray);
}
.ff-search__animation-text-list {
    transform: translateY(0);
    animation: 10s 2s infinite forwards textSlide;
}
.ff-header__search-input input:focus + .ff-search__animation-wrap {
    display: none !important;
}
.ff-search__noresult-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .ff-header__search-result-button {
        width: calc(100% - 18px);
    }
    .ff-header__search-lang > :last-child > * {
        margin: 0 !important;
    }
    .ff-search__noresult {
        padding: 0 40px;
    }
}
@media (min-width: 1200px) {
    .ff-search__noresult {
        padding: 0 80px;
    }
}
@keyframes textSlide {
    0% {
        transform: translateY(0);
    }
    33%,
    4% {
        transform: translateY(-100%);
    }
    37%,
    66% {
        transform: translateY(-200%);
    }
    100%,
    70% {
        transform: translateY(-300%);
    }
}
.ff-header__menu-video {
    padding-top: 56.3%;
}
.ff-header__menu-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
}
/* Remove the right border of the icon container and left border of the input */
.input-group-text.rounded-pill-left {
    border-radius: 50px 0 0 50px;
    border-right: 0;
}

.form-control.rounded-pill-right {
    border-radius: 0 50px 50px 0;
    border-left: 0;
    transition: border-color 0.3s ease-in-out;
}

/* Change the border color to green when the input is focused */
.search-input:focus {
    border-color: green;
    box-shadow: none; /* Remove the default box shadow */
}

/* Style the input group with rounded corners */
.search-group {
    border-radius: 50px;
    border: 2px solid #ccc; /* Default border color */
    display: flex;
    overflow: hidden; /* Ensures the border-radius applies correctly */
    transition: border-color 0.3s ease-in-out;
}

/* Remove default borders from the input and icon container */
.search-group .input-group-text,
.search-group .form-control {
    border: none;
    box-shadow: none;
}

/* Change border color to green when the input is focused */
.search-group:focus-within {
    border-color: #16a6a7;
}

.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.box {
    flex: 0 0 calc(20% - 10px); /* 20% for 5 boxes, minus space for margins */
    margin: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.highlighter {
    width: 5px;
    height: 100%;
    background-color: #ff6b6b;
    position: absolute;
    left: 0;
    top: 0;
}

.box img {
    width: 32px;
    height: 32px;
}

.box-title {
    margin-top: 10px;
    text-align: center;
}

.most-bought {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #282828;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    width: 75%;
    height: 20%;
}

.dropdown-item-checked::before {
    position: absolute;
    right: 0.4rem;
    content: "✓";
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #19d9da24;
}

#load_mobile_category_link {
    max-height: 60vh;
}

.cat-img-bg-primary {
    background-color: #19d9da24;
}

.ff-search__input-overwrite {
    border: none!important;
    padding: 14px 40px!important;
    outline: 0!important;
    font-size: var(--fs-text-medium)!important;
    border-radius: 50px!important;
    background: rgba(242, 242, 242, 1)!important;
}



/* Edit Starts */
.ff-header__categories-btn {
    width: 160px;
    height: 48px;
    padding: 4px 8px;
    border-radius: 8px;
    background: #16A6A7;
    border: none;
    margin-left: 24px;
}
.ff-header__categories-btn:hover {
    background: #128586;
}
.ff-header__categories-text {
    width: 78px;
    height: 22px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    align-self: center;
    margin-left: 5%;
    color: white;
    display: inline!important;
}


/* The Modal (background) */
#categoriesModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    top: 80px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}
/* Modal Content */
.categories-modal-content {
    height: 584px;
    top: 80px;
    padding: 40px 156px 64px 156px;
    /* border-top: 1px solid #f2f2f2; */
    background: white;
}
.categories-modal-header {
    width: 1128px;
    height: 56px;
    padding: 4px 5px 24px 0;
    margin: 0 auto;
}
.categories-modal-header span {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #2e2e54;
}
#categories-modal-courses {
    padding: 0 10px;
    max-width: 1128px;
    margin: 0 auto;
}
.categories-modal-card {
    width: 200px;
    height: 200px;
    margin-bottom: 24px;
    border-radius: 8px;
    padding: 46px 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 16px 0px #0000000a;
    cursor: pointer;
    transition: box-shadow 80ms ease-in;
}
.categories-modal-card:hover {
    box-shadow: 0px 4px 24px 0px #00000029;
}
.categories-modal-card img {
    width: 100.04px;
    height: 70px;
}
.categories-modal-card p {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    color: #3e3e3e;
}
/* Close Button */
#closeCategoriesModal {
    cursor: pointer;
    float: right;
}
.rotate-180 {
    transform: rotate(180deg);
}

.ff-dropdown__text {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #3E3E3E;
    margin-left: 4px;
}

header .ff-dropdown__item-language-icon {
    width: 24px;
    height: 25px;
    margin-top: 10px;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #3E3E3E;
}
header .ff-dropdown__item-labels {
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 42px;
    flex-grow: 1;
}
header .ff-dropdown__item-native {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #3E3E3E;
}
header .ff-dropdown__item-english {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #7E7E7E;
}


.f-dropdown---dark-overwrite:hover {
    background-image: none!important;
}


.ff-dropdown-overwrite:focus,
.ff-dropdown-overwrite:hover {
    background-color: #D4D4D4!important;
}


.ff-dropdown--dark-overwrite:hover {
    background-color: #D4D4D4!important;
    background-image: none!important;
}

.ff-dropdown--dark-overwrite {
    background-image: none!important;
}
header .ff-dropdown {
    width: 94px;
    height: 48px;
    padding: 12px 8px 12px 16px;
    gap: 0px;
    border-radius: 24px;
    background-color: #F2F2F2;
    border: none;
    display: flex;
    align-items: center;
}


header .ff-dropdown__items {
    width: 200px;
    border: none;
    overflow: hidden;
    height: 348px;
    box-shadow: 0px 4px 24px 0px #00000029;
    border-radius: 12px;
    background: #FFFFFF;
}

header .ff-dropdown__item-overwrite.active {
   background: #d0eded!important;
}

.ff-header__dropdown-link--download {
    margin-bottom: 8px;
}
.ff-header__dropdown-link--lang,
.ff-header__dropdown-link--download {
    border-bottom: 1px solid #F2F2F2;
}
.vertical-space
{
    height:8px;
}
.mobile-category:nth-of-type(even) .category-img-container {
    background: #D0EDED;
}
.mobile-category a {
    padding: 0px 16px;
    margin-bottom: 4px;
    color: #252543;
}
.category-img-container {
    width: 72px;
    height: 72px;
    padding: 20px;
    border-radius: 4px;
    background: #CBE5CF;
}
.category-right-block {
    padding: 0 16px;
}

.ff-header__explore-title {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #282828;
    padding: 32px 16px 16px 16px;
}

  .custom-category-agriculture {
    background-color: #E9E5EF;
  }
  .custom-category-personal-finance {
    background-color: #CBE5CF;
  }
  .custom-category-govt-schemes {
    background-color: #D0EDED;
  }
   
  .ff-search__input-overwrite {
    height: 48px;
    border-radius: 24px !important;
    background: #F2F2F2 !important;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #3E3E3E;
}
.ff-search__input-overwrite::placeholder {
    font-family: Poppins;
    font-size: 14px;
    line-height: 22px;
    color: #585876;
    opacity: 1; /* Firefox */
    font-weight: 400;
}
.ff-search__input-overwrite::-ms-input-placeholder {
    font-family: Poppins;
    font-size: 14px;
    line-height: 22px;
    /* Edge 12 -18 */
    color: #585876;
    font-weight: 400;
}
.ff-header__search-trigger-overwrite {
    width: 663px;
}
.ff-header__search-close-overwrite {
    right: 15px;
    display: none;
}
.ff-search__onChange .ff-header__search-close-overwrite {
    display: flex;
}
.ff-search__onChange .ff-search__input-overwrite {
    border: 1px solid #128586 !important;
    background: white !important;
}
.ff-header__search-results-overwrite {
    padding: 8px 0 16px 0 !important;
}
.ff-header__search-result {
    border-bottom: 1px solid #F2F2F2;
    padding: 4px 16px;
}
.ff-header__search-result:hover {
    background: #D0EDED;
}
@media (min-width: 320px) and (max-width: 991px) {
    header .ff-dropdown__item-overwrite {
        border-bottom: 1px solid #F2F2F2;
        gap: 24px;
    }
    .ff-header__search-trigger-overwrite {
        width: 100%;
    }
    .ff-search__onChange .ff-search__input-overwrite::placeholder {
        color: transparent;
    }
    .header_search_button-overwrite {
        opacity: 1;
        visibility: unset;
        transform: none;
    }
    .ff-header__navbar-wrap-overwrite {
        overflow-y: scroll;
        overflow-x: hidden;
    }
}
.ff-header__search-wrap-overwrite {
    border: none;
}
.ff-header__search-wrap-overwrite:hover {
    background: none;
    color: unset;
}
.ff-header__search-active .header_search_button {
    display: none;
}
.ff-header__categories-btn-overwrite {
    width: 146px;
    padding: 12px 16px 12px 24px;
    gap: 4px;
}
@media (min-width: 991px) {
    .ff-header__search-input-overwrite {
        margin-left: 24px;
        margin-right: 12px;
    }
}


.ff-header-overwrite {
    border-bottom: none;
    height: 80px;
    box-shadow: 0px 3px 24px 0px #00000014;
}
.categories-modal-content-overwrite {
    border-top: 1px solid #F2F2F2;
}
.categories-modal-header-overwrite {
    padding: 0 0 24px 0;
}
.close-categories-modal {
    margin-top: 4px;
    margin-right: 5px;
}
.categories-modal-courses {
    padding: 0 !important;
}
.categories-modal-card img {
    width: unset;
}
header .ff-dropdown__item-overwrite:hover,
header .ff-dropdown__item-overwrite:focus {
    background: #D0EDED !important;
}

.ff-header__search-results-overwrite:has(.ff-header__search-result-list) {
	padding-top: 8px !important;
}
.ff-header__search-results-overwrite:not(:has(.ff-header__search-result-list)) {
    /* Your styles here */
    height: auto;
    padding-top: 16px !important;
}
.ff-header__search-results-overwrite h6 {
	padding-left: 16px;
	font-size: 14px;
	color: #696969;
	line-height: 22px;
	font-family: Poppins;
	font-weight: 500;
	text-align: left;
	margin-bottom: 8px !important;
}
.ff-header__search-results-overwrite a {
	font-weight: 500;
	color: #3E3E3E;
	font-family: Poppins;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: left;
}
.ff-header__search-result-overwrite a div {
	font-family: Poppins;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	color: #3E3E3E;
}
.ff-header__search-result-overwrite a div:nth-of-type(2) {
	font-family: Poppins;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.15000000596046448px;
	text-align: left;
	color: #51534F;
}
.ff-header__search-result-btn-overwrite {
	padding-left: 16px;
}
.ff-header__search-result-btn-overwrite a {
	font-family: Poppins;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	text-align: right;
	height: 46px;
	margin-bottom: 16px;
}
.ff-button__plain-arrow-overwrite::after {
	margin-left: 4px;
}

.category-img-container {
    width: 65px!important; /* Increased width */
    height: 65px!important; /* Increased height */
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    padding: 15px!important; /* Adds space around the image */
}

.category-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-img-container-1 {
    background-color: #E9E5EF!important;
}
.category-img-container-2 {
    background-color: #D0EDED!important;
}
.category-img-container-3 {
    background-color: #CBE5CF!important;
}











.custom-accordion .ff-button__plain :hover {
    transform: scaleZ(1.5);
}
.search_item{
	font-size: 10px;
	color: #101011;
    border-color: #A2DBDC;
}
search_item:hover{
	background-color: #16A6A7;
	border-color: #A2DBDC;
}
