/* Sticky Footer Layout - Keeps footer at bottom even with little content */
html {
    height: 100%;
}

body.lang-ar {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-container {
    flex: 1;
    padding: 16px;
    width: 100%;
}

/* Posts Page Specific Layout Improvements */
.posts-page-container {
    max-width: 1249px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
}

.posts-page-container h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
}

.posts-content-wrapper {
    min-height: 400px;
    padding: 20px 0;
}

.main-header {
    z-index: 3;
}
.home-header-patt-1 {
    height: 35px;
}
.main-header .main-links a {
    color: #fff;
    font-weight: 500;
    padding-bottom: 15px;
    padding-inline: 5px;
    padding-top: 5px;
    transition: 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    font-size: 14px;
    height: 62px;
}
.main-header .main-links a.yellow {
    color: var(--yellow);
}
/* Navbar Icons - Make visible and white on hover */
.main-header .main-links a img,
.main-header .main-links a figure img,
.main-header .main-links figure img {
    width: 20px;
    opacity: 0.7;
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
    /* Make icons visible with a subtle tint - they'll be white on hover */
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(2000%)
        hue-rotate(60deg) brightness(0.5);
}

.main-header .main-links a:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px 10px 00 0;
    transition: 0.4s;
}

.main-header .main-links a:hover:before {
    height: 100%;
    background-color: var(--main-color);
}

/* Icons turn fully white on hover - only the icons, not the entire link */
.main-header .main-links a:hover img,
.main-header .main-links a:hover figure img,
.main-header .main-links a:hover .main-link__fig img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.main-header .main-links a span {
    top: 0;
    transition: 0.4s;
}

.main-header .main-links a:hover span {
    top: 5px;
    color: #fff;
}

.main-header .main-links a.yellow:hover span {
    color: var(--yellow);
}
.btn-0 {
    background: transparent;
    border: 0;
}
.header-icon,
.header__search-form {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    background-color: transparent;
    border: 1px solid #fff;
    transition: 0.4s;
    color: #fff;
    font-size: 10px;
    position: relative;
}
.main-header .cart-icon-link,
.header__search-form .header-search-icon {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
}
.header__search-form .header-search-icon {
    padding: 0;
    background-image: url(../images/search.svg);
}
.main-header .cart-icon-link {
    background-image: url(../images/head-cart-icon.svg);
    background-size: 15px;
}
.header__search-form .header-search-icon {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 27px;
    height: 27px;
}
.header-icon img,
.header__search-form .header-search-icon img {
    width: 16px;
}
.header__search-form.active {
    width: 190px;
    border-radius: 30px;
}
.header-icon:hover,
.header__search-form:not(.active):hover {
    background-color: var(--main-color-soft);
    border-color: var(--main-color-soft);
}
.header-search__input::placeholder {
    font-weight: 200;
    color: #fff;
}
.header-search__input {
    border: 0;
    font-size: 11px;
    padding-inline-start: 10px;
    padding-inline-end: 30px;
    width: 100%;
    background-color: transparent;
    color: #fff;
    font-weight: 200;
    caret-color: var(--yellow);
}
.main-header .header-right .lang-switcher-link {
    padding-bottom: 1px;
    font-size: 11px;
}
.main-header .cart-icon-link img {
    width: 14px;
}
.main-header .cart-icon-link span {
    background: var(--main-color-soft);
    width: 15px;
    height: 15px;
    font-size: 8px;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: 0;
    text-align: center;
    font-weight: bold;
    transition: 0.4s;
    padding-bottom: 1px;
}
.lang-en .main-header .cart-icon-link span {
    left: auto;
    right: 0;
}
.main-header .cart-icon-link:hover span {
    background-color: #fff;
    color: var(--main-color);
}
.header-right__user-login-btn {
    background-color: transparent;
    border-radius: 30px;
    height: 30px;
    padding-inline: 12px;
    border: 0;
}
.header-right__user-login-btn:hover {
    background-color: var(--main-color);
}
.header-right__user-login-btn:before {
    content: "";
    background-image: url("../images/user-color.svg") !important;
    background-repeat: no-repeat !important;
    background-size: 17px 17px !important;
    background-position: center !important;
    width: 17px;
    height: 17px;
    transition: filter 0.4s ease;
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(2000%)
        hue-rotate(60deg) brightness(0.4);
}
/* Login button icon turns white on hover - ensure it works with !important */
.header-right__user-login-btn:hover:before {
    filter: brightness(0) invert(1) !important;
}
.soft-bg-hover:hover {
    background-color: var(--main-color-soft);
}
.main-header .header-right,
.header-projects-btn {
    position: relative;
    top: 4px;
}
.header-projects-btn {
    height: 34px;
    display: flex;
    align-items: center;
    padding-inline: 20px;
}
.header-projects-btn:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}
.main-header .crncy-menu,
.mnu-container {
    position: absolute;
    top: calc(100% + 30px);
    left: -45px;
    width: 150px;
    padding-top: 20px;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}
.lang-en .main-header .crncy-menu {
    left: auto;
    right: -45px;
}
.mnu--list a:before,
.mnu--list a:after {
    content: none !important;
}
.crncy-menu__list,
.mnu--list {
    box-shadow: 0px 5px 15px #262d3314;
    border-radius: 5px;
    padding-block: 8px;
}
.main-header .mnu--list a {
    height: auto;
}
.header-right__crncy:hover .crncy-menu,
.dropdown-inside:hover .mnu-container {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.header-right__crncy:hover .header-right__crncy-label {
    background-color: rgb(255 255 255 / 20%);
}
.header-right__crncy:hover .header-right__crncy-label:before {
    transform: scaleY(-1);
}
header.transparent-header
    .header-right__crncy:hover
    .header-right__crncy-label:before {
    filter: invert(1);
}
header.transparent-header
    .header-right__crncy:hover
    .header-right__crncy-label {
    color: #fff;
}
.crncy-menu__list a,
.mnu--list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5157;
    font-weight: 200;
    padding: 8px 12px;
    transition: 0.4s;
}
.crncy-menu__list a img,
.mnu--list a img {
    border-radius: 3px;
}
.crncy-menu__list li.active a,
.mnu--list li.active a {
    font-weight: 500;
}
.crncy-menu__list li.active a,
.crncy-menu__list li a:hover,
.mnu--list li.active a,
.mnu--list li a:hover {
    color: var(--main-color) !important;
}

/* Ensure span text inside links stays green on hover */
.crncy-menu__list li a:hover span,
.mnu--list li a:hover span {
    color: var(--main-color) !important;
}

.crncy-menu__list li a:hover,
.mnu--list li a:hover {
    background: rgba(85, 107, 47, 0.18);
    /* Green shade instead of purple - text stays green */
}
.crncy-menu__list li a span:after {
    content: "";
    display: inline-flex;
    padding-inline-start: 7px;
    background: url("../images/check-blue.svg") no-repeat;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    opacity: 0;
}
.crncy-menu__list li.active a span:after {
    opacity: 1;
}
.crncy-label-arrow,
.mnu-arrow {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid white;
    margin-inline: auto;
    display: block;
}
.header-right__crncy-label {
    width: 60px;
    height: 30px;
    justify-content: center;
    gap: 3px;
    font-weight: 600;
}
.section-title-46 {
    font-size: 40px;
    font-weight: 600;
}
.section-title-60 {
    font-size: 50px;
}

.projects-section .box {
    padding-inline-start: 50px;
    border-radius: 60px;
}
.section-title-35 {
    font-size: 35px;
    font-weight: 600;
}
.arrows .arrow-slider {
    border: 2px solid #fff;
    background-color: transparent;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}
.bold-i {
    font-weight: bold !important;
}
.arrows.purple-arrows .arrow-slider {
    border: 2px solid var(--main-color);
    min-width: 40px;
    min-height: 40px;
}
.arrows .arrow-slider:hover {
    border-width: 4px;
}
.project-item {
    box-shadow: 0px 3px 6px #00000029;
}

.project-item .project-item__label-box {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 500;
}
.lang-en .project-item .project-item__label-box {
    right: auto;
    left: 10px;
}
.project-item__label-box .fig-label {
    text-align: center;
    border-radius: 5px;
    background: var(--purple);
    min-width: 60px;
    height: 22px;
    padding-inline: 7px;
    padding-bottom: 3px;
    font-weight: 600;
    color: #fff;
}
.project-item__label-box .fig-label.green {
    background: #00bf8d;
}
.project-item__label-box .fig-label.red {
    background: #e82e56;
}
.project-item__label-box .fig-label.yellow {
    background: var(--yellow);
    color: #fff;
}
.amount-box .--amount-btn {
    background: url(../images/plus.svg) no-repeat;
    border: 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100% !important;
    background-position: center center !important;
}
.amount-box .--dec-btn {
    background: url(../images/minus.svg) no-repeat;
}
input.no-arr::-webkit-inner-spin-button,
input.no-arr::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    text-align: center;
}
.amount-box .--amount-val {
    width: 45px;
    height: 26px;
    border-radius: 10px;
    border: 1px solid #d9dadb;
    padding-bottom: 3px;
}
.btn-double-text {
    background-color: var(--purple);
    color: #fff;
    height: 28px;
    min-width: 100px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 3px;
}
.btn-double-text,
.btn-double-text:before,
.btn-double-text:after {
    position: relative;
    transition: 0.4s;
}
.btn-double-text:before {
    content: attr(text);
}
.btn-double-text:after {
    content: attr(on-hover);
    top: -100%;
    position: absolute;
}
.btn-double-text:before {
    top: 0;
}
.btn-double-text:hover:after {
    top: 7%;
}
.btn-double-text:hover:before {
    top: -100%;
}
.btn-double-text:hover {
    background: var(--main-color);
}
.project-item__foot,
.person-item__foot {
    padding-block: 6px 8px;
    border-top: 1px solid #d9dadb;
    min-height: 43px;
}
.project-details-section .--tags-box .custom-label {
    padding-bottom: 2px;
}
#share-link {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.normal-share-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: 0.4s;
    border: 0;
    background-color: transparent;
}
.normal-share-btn:hover {
    background-color: var(--soft);
}
.tippy-box[data-theme="main-theme"] {
    background: var(--main-color);
    font-size: 10px;
    font-weight: 500;
    box-shadow: 0px 5px 15px #262d332b;
    border-radius: 5px;
}
[customize-css="white"] .tippy-box {
    background: #fff;
}
[customize-css="white"] .tippy-arrow {
    box-shadow: 3px -7px 15px 3px #262d332b;
    color: #fff;
}
[customize-css="white"] .tippy-content {
    box-shadow: 0px 5px 15px #0000001a;
    background: #fff;
    color: var(--main-color);
    font-weight: 300;
    text-align: center;
    min-width: 150px;
    padding: 20px 10px;
    border-radius: 5px;
}

[customize-css="without-check"] .tippy-content:before,
[customize-css="white"] .tippy-content:before {
    content: none;
}
.tippy-content:before {
    content: "";
    width: 10px;
    height: 7px;
    background: url(../images/check-white.svg) no-repeat;
    background-size: cover;
    display: inline-block;
    margin-inline-end: 5px;
}
[customize-css="tippy-white-theme"] {
    background: transparent;
}
[customize-css="tippy-white-theme"] .tippy-box {
}
[customize-css="tippy-white-theme"] .tippy-content {
    background: transparent;
    padding: 20px;
    text-align: inherit;
    color: var(--purple);
    font-size: 15px;
    background: #fff;
    box-shadow: 0px 5px 15px #262d3314;
    border-radius: 5px;
    min-width: 200px;
    font-weight: 400;
}
[customize-css="tippy-white-theme"] .tippy-content:before {
    content: none;
}
[customize-css="tippy-white-theme"] .tippy-arrow:before {
    border-bottom-color: #fff !important;
}
.project-body.with-description {
    padding-bottom: 7px;
}
.project-body.with-description .project-item__link-box {
    margin-bottom: 0;
}
.progress-bar {
    width: 100%;
    height: 5px;
    background: #d9dadb;
    border-radius: 3px;
}
.progress-bar .progress-current {
    height: 5px;
    border-radius: 3px;
    background-color: var(--main-color);
}
.progress-val {
    position: absolute;
    bottom: -38px;
    left: -25px;
    background: var(--purple);
    color: #fff;
    font-size: 11px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 50px;
    padding-top: 1px;
    z-index: 1;
    box-shadow: 0px 5px 15px #262d332b;
    pointer-events: none;
    opacity: 0;
    font-weight: 500;
    transition: 0.4s;
}
.lang-en .progress-val {
    left: auto;
    right: -23px;
}
.progress-val:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid var(--purple);
    margin-inline: auto;
    display: block;
    position: absolute;
    top: -5px;
}
.has-progress:hover .progress-val,
.progress-val.active {
    bottom: -33px;
    opacity: 1;
}
.project-item .progress-bar {
    margin-top: 10px;
    margin-bottom: 6px;
}
.project-item .progress-bar ~ .project-item__infos {
    margin-bottom: 7px;
}
.project-item .normal-share-btn {
    margin-top: -4px;
}
.project-item .project-item__desc {
    height: 40px;
}
.project-item .project-body {
    min-height: 185px;
}
.project-item .project-body .title .--title {
    position: relative;
    top: -3px;
}
.projects-section .left .projects-slider {
    padding-inline-end: 10px;
}
.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.stories-section .swiper-slide {
    height: 530px;
    width: 550px;
}
.story-item {
    box-shadow: 0px 3px 95px #00000034;
    height: 100%;
}
.story-item .right-side {
    padding-inline-start: 40px;
    padding-inline-end: 25px;
}
.story-item .left-side {
    border: 1px solid #707070;
}
.story-item__title {
    font-size: 34px;
}
.btn-30.theme {
    background: var(--main-color);
    min-width: 120px;
    justify-content: center;
    height: 37px;
    padding-top: 10px;
}
.stories-section:before,
.stories-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    background: transparent linear-gradient(270deg, #ffffff00 0%, #f6f5ff 100%)
        0% 0% no-repeat padding-box;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.stories-section:after {
    background: transparent linear-gradient(90deg, #ffffff00 0%, #f6f5ff 100%)
        0% 0% no-repeat padding-box;
    left: auto;
    right: 0;
}
.ceo-section .right {
    padding-top: 10px;
    padding-inline-start: 20px;
    min-height: 150px;
}
.--quote-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 170px;
}
.lang-en .--quote-img {
    right: auto;
    left: 0;
}
.foot-col.foot-2 li {
    width: 48%;
}
.foot-col.foot-2 a {
    color: rgb(255 255 255 / 70%);
    transition: 0.4s;
    font-size: 12px;
    padding-block: 4px;
}
.foot-col-3 .foot-contact-info {
    color: rgb(255 255 255 / 85%);
    font-size: 12px;
    line-height: 1.7;
}
.foot-text-followed {
    color: rgb(255 255 255 / 40%);
    margin-top: -25px;
}
.subscribe__btn {
    border-radius: 5px 0px 0px 5px;
    width: 42px;
    height: 40px;
    border: 0;
}

.subscribe__input::placeholder {
    color: #9262ac;
}
.subscribe__input {
    width: 210px;
    height: 40px;
    border: 1px solid #9857ba;
    border-radius: 0 5px 5px 0;
    border-width: 1px 1px 1px 0;
    background: transparent;
    padding-inline-start: 13px;
    font-size: 12px;
    color: #fff;
}
.lang-en .subscribe__input {
    border-width: 1px 0 1px 1px;
    border-radius: 5px 0px 0px 5px;
}
.lang-en .subscribe__btn {
    border-radius: 0px 5px 5px 0px;
}
.cart-modal-body,
.download-report-modal-body,
.basket-modal-body {
    box-shadow: 0px 5px 15px #262d3314;
    width: 260px;
    margin-inline: auto;
    position: relative;
    top: 50px;
    z-index: 11;
}
.download-report-modal-body {
    width: 500px;
}
.download-report-modal-body .box .item:not(:last-of-type) {
    border-bottom: 1px solid #d9dadb;
}
.hover-bg-color {
    background-color: var(--purple) !important;
}
.hover-bg-yellow:hover {
    background-color: var(--yellow) !important;
}
.cart-modal__name {
    color: #4b5157;
}
.cart-modal .btns > * {
    height: 40px;
    font-size: 12px;
    background: var(--purple);
    border: 2px solid var(--purple);
    font-weight: 600;
}
.cart-modal .btns > *:hover,
.cart-modal .btns .--transparent {
    color: var(--purple);
    background: transparent;
}
.cart-modal .btns .--transparent:hover {
    background: var(--purple);
    color: #fff;
}
.fast-donation__fig {
    width: 58px;
    height: 58px;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    background: #fff;
    padding: 13px;
}
.main-link__fig {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-link__fig img {
    transition: all 0.4s ease;
}

.main-header .main-link__kafalat img {
    width: 27px !important;
}
.main-link__donate img {
    width: 15px !important;
}
.floating-donat-btn {
    background: var(--secondary-color);
    padding-inline-end: 20px;
    padding-inline-start: 70px;
    position: fixed;
    bottom: 165px;
    left: 0;
    z-index: 5;
    height: 58px;
    border-radius: 0 50px 50px 0;
    transition: 0.4s;
    width: 200px;
    cursor: pointer;
    z-index: 4;
}
.floating-donat-btn.active {
    cursor: auto;
}
.fast-donation__text {
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 7px;
    font-weight: 600;
}
.floating-donat-btn.active .fast-donation__text {
    display: none;
}
.lang-en .floating-donat-btn {
    border-radius: 50px 0 0 50px;
}
.lang-en .floating-donat-btn {
    left: auto;
    right: 0;
}
.lang-en .fast-donation__fig {
    right: auto;
    left: 0;
}
.floating-donat-btn.active {
    width: 580px;
    padding-inline-start: 40px;
    padding-inline-end: 0;
    padding-top: 40px;
    height: 200px;
    z-index: 11;
}
.floating-donat-btn.active.expand {
    height: 330px;
}
.floating-donat-btn.active .fast-donation__fig {
    right: 35px;
    pointer-events: auto;
    top: -25px;
}
.lang-en .floating-donat-btn.active .fast-donation__fig {
    right: auto;
    left: 35px;
}
.fast-donation__item {
    height: 38px;
    border: 1px solid #fff;
    position: relative;
    padding-inline: 4px;
}
.radio-inner-control {
    position: relative;
}
.radio-inner-control span {
    height: 38px;
    border: 1px solid #fff;
    padding-inline: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.radio-inner-control input {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.fast-donation__item,
.radio-inner-control span {
    transition: 0.4s;
}
.fast-donation__item:hover,
.radio-inner-control:hover span {
    background-color: #fff;
    color: var(--purple);
}

/* Category Filter Items - Beautiful Hover & Active Effects */
.category-filter-link {
    text-decoration: none;
    display: inline-block;
}

.category-filter-item {
    padding: 15px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Hover Effect - Scale & Shadow Animation */
.category-filter-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 24px rgba(85, 107, 47, 0.25);
    border-color: var(--main-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Icon Hover Animation - Gentle Bounce */
.category-filter-item:hover .category-filter-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(85, 107, 47, 0.3));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Text Hover Animation */
.category-filter-item:hover .category-filter-name {
    color: var(--main-color);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Active State - Glow & Border Effect */
.category-filter-item.active {
    background: #ffffff;
    border-color: var(--main-color);
    border-width: 3px;
    box-shadow: 0 0 20px rgba(85, 107, 47, 0.3),
        0 8px 16px rgba(85, 107, 47, 0.15), 0 0 0 2px rgba(85, 107, 47, 0.1);
    transform: translateY(-4px);
    animation: activePulse 2s ease-in-out infinite;
}

/* Active State Icon */
.category-filter-item.active .category-filter-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(85, 107, 47, 0.3));
    transition: all 0.4s ease;
}

/* Active State Text */
.category-filter-item.active .category-filter-name {
    color: var(--main-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Active State Glow Animation - Border Pulse */
@keyframes activePulse {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(85, 107, 47, 0.3),
            0 8px 16px rgba(85, 107, 47, 0.15), 0 0 0 2px rgba(85, 107, 47, 0.1);
        border-color: var(--main-color);
    }
    50% {
        box-shadow: 0 0 30px rgba(85, 107, 47, 0.5),
            0 8px 16px rgba(85, 107, 47, 0.2), 0 0 0 3px rgba(85, 107, 47, 0.2);
        border-color: #6b8538;
    }
}

/* Smooth Transitions for All Elements */
.category-filter-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-filter-name {
    transition: all 0.3s ease;
}

.fast-donation__content {
    visibility: hidden;
    transition: 0.2s;
    opacity: 0;
}
.fast-donation__content .fast-donation__item {
    min-width: 145px;
    white-space: nowrap;
    background-color: transparent;
    padding-bottom: 3px;
}
.fast-donation__content .fast-donation__item:hover {
    color: #fff;
}
.fast-donation__content .fast-donation__item.active {
    background-color: #fff;
    color: var(--secondary-color);
}
.fast-donation-slider .swiper-slide {
    width: auto;
}
.fst-modal-options-box {
    margin-top: 25px;
    padding-inline-end: 30px;
}
.fst-modal-options__left > * {
    width: 100%;
    height: 40px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: #fff;
    transition: 0.4s;
    color: var(--secondary-color);
}
.fst-modal-options__left > *:hover {
    /* color: #fff; */
}
.fst-modal-options__left .btn-cart {
    background: var(--main-color);
    color: #fff;
}
.fst-modal-options .fst-modal-options__right {
    border: 1px solid #d9dadb;
    border-radius: 10px;
    padding: 14px 18px;
    width: 50%;
    padding-bottom: 5px;
}
.fst-modal-options .amount-box .--amount-btn {
    background: url(../images/plus-white.svg) no-repeat;
}
.fst-modal-options .amount-box .--dec-btn {
    background: url(../images/minus-white.svg) no-repeat;
}
.fst-modal-options .--amount-val {
    background: transparent;
    color: #fff;
    border: 0;
}
.fast-donation__content .arrow-slider {
    border-width: 1px;
}
.floating-donat-wrapper .modal-overlay {
    display: none;
    z-index: 3;
}
.floating-donat-btn.active .modal-overlay {
    display: block;
}
.floating-donat-wrapper .floating-donat-btn.active ~ .modal-overlay {
    display: block;
}
.fast-donation__content {
    transition: 0s;
}
.floating-donat-btn.active .fast-donation__content {
    transition-delay: 0.3s;
    visibility: visible;
    opacity: 1;
}
.fast-donation-slider {
    padding-inline-end: 10px;
}
.login-modal .--body,
.user-tabs-modal .--body,
.modal .--body {
    width: 700px;
    z-index: 11;
    margin-inline: auto;
    /* margin-top: 20px; */
    overflow-y: auto;
    max-height: 100vh;
}
.login-modal.modal-full-page,
.modal {
    align-items: center;
    display: flex;
}

.login-modal .right,
.login-right-side {
    width: 300px;
    background: transparent linear-gradient(213deg, #63317d 0%, #481f66 100%) 0%
        0% no-repeat padding-box;
    position: sticky;
    top: 0;
}
.login-left-side {
    width: 400px;
}
.login-input {
    border: 1px solid #d9dadb;
    border-radius: 5px;
    height: 38px;
    width: 100%;
    padding: 5px;
}
.toggle-pass-visibility {
    background-image: url(../images/eye.svg);
    background-size: 18px auto;
    background-position: center center;
    background-repeat: no-repeat;
    width: 30px;
    height: 100%;
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.lang-en .toggle-pass-visibility {
    left: auto;
    right: 10px;
}
.toggle-pass-visibility.active {
    transform: rotate(360deg);
    background-image: url(../images/eye-off.svg);
}
.submit-btn-auth {
    height: 38px;
    font-size: 12px;
    font-weight: 500;
}
.submit-btn-auth:hover {
    background-color: var(--purple);
    color: #fff;
}
.register-form {
    display: none;
}
[opened-modal]:not([opened-modal="fast-donation-modal"]):not([opened-modal=""])
    .floating-donat-btn {
    left: -40%;
}
.lang-en[opened-modal]:not([opened-modal="fast-donation-modal"]):not(
        [opened-modal=""]
    )
    .floating-donat-btn {
    left: auto;
    right: -40%;
}
[opened-modal="fast-donation-modal"] header.main-header {
    z-index: 2;
}
.show-all-btn.with-arrow {
    position: relative;
}
.show-all-btn.with-arrow:after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("../images/left-arrow-long-white.svg") no-repeat;
    background-size: cover;
}

.transparent-header .home-header-patt-1 {
    background-color: transparent;
}
.transparent-header .btn-30:hover .text {
    color: #fff;
}
.header-right__crncy-label:before {
    content: "";
    background: url("../images/chevron-down.svg") no-repeat;
    width: 10px;
    height: 12px;
    background-size: 8px;
    background-position: center;
    transition: 0.4s;
}
header.transparent-header .main-links a,
header.transparent-header .header-projects-btn,
header.transparent-header .header-right__user-login-btn {
    color: var(--main-color);
}

/* Transparent header icons - visible with main color tint */
header.transparent-header .main-links a img,
header.transparent-header .main-links a figure img,
header.transparent-header .main-links figure img {
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(2000%)
        hue-rotate(60deg) brightness(0.4);
}

header.transparent-header .main-links a:before,
header.transparent-header .cart-icon-link span {
    background-color: var(--main-color);
}

/* Icons turn white on hover in transparent header - only the icons */
header.transparent-header .main-links a:hover img,
header.transparent-header .main-links a:hover figure img,
header.transparent-header .main-links a:hover .main-link__fig img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

header.transparent-header .main-links a:hover span,
header.transparent-header .cart-icon-link span,
header.transparent-header .lang-switcher-link:hover,
header.transparent-header .header-right__user-login-btn:hover {
    color: #fff;
}

header.transparent-header .header-icon,
header.transparent-header .header__search-form,
header.transparent-header .header-right__crncy-label {
    border-color: var(--main-color-soft);
    color: var(--main-color);
}
header.transparent-header .main-header .cart-icon-link:hover span {
    background: var(--main-color);
    color: #fff;
}
header.transparent-header .header-right__crncy-label:hover {
    color: #fff;
}
header.transparent-header
    .header-right__crncy:hover
    .header-right__crncy-label {
    background-color: var(--main-color);
}
header.transparent-header .header__search-form .header-search-icon {
    background-image: url(../images/search-color.svg);
}
header.transparent-header .header__search-form .header-search-icon:hover {
    background-image: url(../images/search.svg);
}
header.transparent-header .cart-icon-link {
    background-image: url(../images/shopping-cart-color.svg);
}
header.transparent-header .cart-icon-link:hover {
    background-image: url(../images/shopping-cart.svg);
}
header.transparent-header .header-right__user-login-btn:before {
    background-image: url(../images/user-color.svg) !important;
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(2000%)
        hue-rotate(60deg) brightness(0.4);
    transition: filter 0.4s ease;
}
/* Make icon white on hover - ensure it works */
header.transparent-header .header-right__user-login-btn:hover:before {
    background-image: url(../images/user-color.svg) !important;
    filter: brightness(0) invert(1) !important;
}
header.transparent-header .header-right__crncy-label:before {
    background-image: url(../images/chevron-down-color.svg) !important;
}

.breadcrumb-box .item {
    font-size: 10px;
    color: #262d33;
    font-weight: 300;
}
.breadcrumb-box li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumb-box li:not(:last-of-type):after {
    content: "";
    background: url(../images/bread-arrow.svg) no-repeat;
    width: 10px;
    height: 10px;
}
.lang-en .breadcrumb-box li:not(:last-of-type):after {
    transform: scaleX(-1);
}
.kafalat-centerd-section .--title {
    font-size: 65px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.kafalat-centerd-section .box {
    padding-inline-end: 50px;
    padding-block: 15px;
}
.radio-inner-control input:checked ~ span {
    background-color: #fff;
    color: var(--purple);
}
.kafalat-centerd-section .radio-inner-control span {
    min-width: 65px;
    padding-inline: 40px;
    padding-bottom: 3px;
}
.person-item__country img {
    position: relative;
    top: 2px;
}
.border-gray {
    border: 1px solid #d9dadb;
}
.kafalat-centerd-section .--amount-val {
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 14px;
}
.kafalat-centerd-section .--add-to-cart {
    background: #f6f5ff;
    border-radius: 30px;
    width: 103px;
    height: 31px;
    position: absolute;
    left: 0;
    justify-content: center;
    right: 0;
    margin: auto;
    border: 1px solid #f6f5ff;
    bottom: -15px;
    padding-bottom: 2px;
    font-weight: 600;
}
.lang-en .kafalat-centerd-section .--add-to-cart {
    width: 115px;
}
.kafalat-centerd-section .--add-to-cart img {
    width: 17px;
}
.kafalat-centerd-section .--add-to-cart:hover {
    background-color: var(--purple);
    color: #fff;
}
/* .transparent-input::placeholder {
  color: #939699;
} */
.transparent-input {
    position: relative;
    border-radius: 10px;
    padding: 7px 10px;
    padding-inline-start: 13px;
    background-color: #fff !important;
    border: 1px solid #d9dadb;
    font-size: 14px;
    width: 100%;
    height: 38px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 32px;
}
.iti__country-list {
    text-align: left;
    right: auto;
    left: 0;
    width: 350px;
}
.mobile-number__field {
    text-align: left;
}
.iti__country {
    font-size: 12px;
    padding: 5px 4px;
    unicode-bidi: plaintext;
    text-align: left;
}
.iti__arrow {
    display: none;
}
.iti--separate-dial-code .iti__selected-flag {
    flex-direction: row-reverse;
    background: #fff;
    border-radius: 5px;
}
.iti--separate-dial-code .iti__selected-dial-code {
    margin: 0;
    margin-left: 10px;
    font-size: 12px;
    unicode-bidi: plaintext;
    border-left: 1px solid #d9dadb;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    color: #b2aba6;
}
.iti__flag-box,
.iti__country-name {
    margin-left: 0;
    margin-right: 0;
    margin-left: 5px;
}
.filter-box__search-input {
    background-image: url(../images/search-gray.svg);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 17px;
    padding-inline-end: 26px;
}
.lang-en .filter-box__search-input {
    background-position: calc(100% - 10px) center;
}
.filter-box__lbl {
    font-weight: 500;
}
#select2-country-select-results .select2-results__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select2-results__option {
    font-size: 14px;
}
.filter-box__sorting
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 13px;
}
.lang-ar .selected-country-val2 {
    flex-direction: row-reverse;
}
.selected-country-val2 {
    font-size: 14px;
    color: #4b5157;
    height: 100%;
}
.lang-ar .selected-country-val2 {
    justify-content: end;
}
#country-select ~ .select2 .select2-selection,
.country-select ~ .select2 .select2-selection {
    border: 1px solid #d9dadb;
    border-radius: 10px;
    height: 37px;
}
.country-select.radius-0 ~ .select2 .select2-selection {
    border-radius: 5px;
}
.country-select.normal ~ .select2 .select2-selection {
    border-radius: 5px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    height: 100%;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    right: auto;
    width: 20px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.lang-en
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    left: auto;
    right: 0;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #d9dadb transparent transparent transparent !important ;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-inline-end: 13px !important;
}
.--from-buget,
.--to-buget {
    padding-inline: 5px;
}
.range-slider-rounded .ui-slider-handle {
    border-radius: 50%;
    background: var(--main-color);
    border: 0;
    width: 15px;
    height: 15px;
}
.range-slider-rounded .ui-widget-header {
    background: var(--main-color);
}
.range-slider-rounded.ui-widget.ui-widget-content {
    background: #d9dadb;
    border: 0;
    border-radius: 10px;
    height: 5px;
}
#range-slider {
    direction: rtl;
}
.white-70 {
    color: rgb(255 255 255 / 70%);
}
.--amount-val.--transparent {
    background: transparent;
    border: 0;
}
.person-item__gift-val {
    height: 30px;
    width: 95px;
}
.person-item__gift-val input {
    width: 50%;
}
.person-item__total-lbl {
    top: 5px;
}
.cart-card-btn {
    min-width: 97px;
    padding-inline: 4px;
    display: flex;
    justify-content: center;
    height: 28px;
    transition: 0.4s;
    border-radius: 30px;
    font-weight: 600;
    padding-bottom: 2px;
}
.cart-card-btn:hover {
    background: var(--soft);
}
.tabs-btns > * {
    background: none;
    position: relative;
    font-size: 14px;
    color: #939699;
    text-transform: uppercase;
    padding: 20px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 0;
}
.tabs-btns > *.active {
    color: var(--purple);
}
.tabs-btns > *.active:before {
    content: "";
    width: 100%;
    height: 4px;
    background-color: var(--purple);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
}
.close-normal-modal {
    position: absolute;
    top: 15px;
    left: 15px;
}
.lang-en .close-normal-modal {
    left: auto;
    right: 15px;
}
.submit-user-from-btn {
    background: #b22297;
    min-width: 130px;
    height: 38px;
    border: 1px solid #b22297;
}
.submit-user-from-btn:hover {
    color: #b22297;
    background: transparent;
    border: 1px solid #b22297;
}

.guest-user-form__input input::placeholder {
    color: rgb(147 150 153 / 51%);
}
.guest-user-form__input {
    height: 55px;
    font-size: 15px;
    padding-inline: 25px;
}
.guest-user-form__input,
.border {
    border: 1px solid #d9dadb;
}
.guest-user-form__input-lbl {
    color: rgb(77 43 95 / 50%);
}
.guest-form-foot .submit-user-from-btn {
    min-width: 214px;
    padding-inline: 13px;
}
.results-pagination-box li > * {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    text-align: center;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s;
    color: #262d33;
}
.add-project-item-box .-span {
    padding: 3px;
}
.progress-bar.blue-theme .progress-current {
    background-color: var(--secondary-color);
}
.progress-bar.blue-theme .progress-val {
    background: var(--secondary-color);
}
.progress-bar.blue-theme .progress-val:before {
    border-bottom-color: var(--secondary-color);
}
.results-pagination-box li:not(:last-of-type) > * {
    border-inline-end: 1px solid #d9dadb;
}
.results-pagination-box li > p {
    color: #939699;
}
.results-pagination-box li > a:hover,
.results-pagination-box li.active > a {
    background-color: var(--main-color);
    color: #fff;
}
.kafalat-banner-only .box .img-bg {
    position: absolute;
    right: -40px;
    width: 300px;
    bottom: 0;
    z-index: 0;
}
.lang-en .kafalat-banner-only .box .img-bg {
    right: auto;
    left: -40px;
}
.kafalat-banner-only .box {
    padding-inline-start: 190px;
    padding-block: 50px;
}
.kafalat-banner-only .box .right {
    position: relative;
}
.kafalat-banner-only .box .right .--title {
    margin-bottom: 15px;
}
.kafalat-banner-only .box .right .--desc {
    font-weight: 300;
    line-height: 1.5;
}
.kafalat-banner-only .box .radio-inner-control {
    flex: 1;
    white-space: nowrap;
}
.kafalat-banner-only .box .radio-inner-control span {
    width: 100%;
    position: relative;
}
.kafalat-banner-only .box .radio-inner-control input:checked ~ span:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 8px;
    height: 8px;
    background: url(../images/x-purple.svg) no-repeat center center;
    margin: auto;
}
.kafalat-banner-only .box .radio-inner-control:hover span {
    background: transparent;
    color: #fff;
}
.kafalat-banner-only .box .radio-inner-control:hover input:checked ~ span {
    background: #fff;
    color: var(--purple);
}
[check-all-btn] {
    background: transparent;
    border: 1px solid #00bf8d;
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    font-size: 12px;
    padding-block: 3px;
    transition: 0.4s;
}
[check-all-btn].active {
    background: #e82e56;
    border-color: #e82e56;
}
[check-all-btn] [off],
[check-all-btn].active [on] {
    display: none;
}
[check-all-btn].active [off] {
    display: block;
}
.person-details-section .person-slider-container {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 100%;
}
.person-slider .swiper-slide {
    width: 43px;
}
.person-slider .swiper-slide .item {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.4s;
}
.person-slider .swiper-slide .item.active {
    border-color: #fff;
}
.person-details-section .rec .info_title {
    min-width: 200px;
    padding-inline-end: 20px;
}
.person-details__gift-val {
    width: 130px;
    height: 38px;
}
.person-details__gift-val .no-arr {
    padding-bottom: 3px;
}
.person-details__foot button {
    height: 40px;
    min-width: 119px;
    font-size: 14px;
}
.person-details__cart {
    background: var(--soft);
    border: 1px solid var(--soft);
}
.person-details__cart:hover {
    background: #edecf4 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 15px #0000001a;
    border: 1px solid #edecf4;
}
.person-details-section .left {
    padding-inline-end: 30px;
}
.person-details-options {
    margin-top: -30px;
}
.about-person-section .right {
    padding-inline-start: 50px;
}
.about-person-section .desc {
    line-height: 1.8;
}
.person-details-section .box .right {
    height: 540px;
}
.person-details-section .arrow-slider {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background-color: var(--main-color);
}
.projects-centerd-section .box {
    padding-inline-start: 50px;
}
.img-listing-box-bg {
    position: absolute;
    bottom: 0px;
    left: -200px;
    width: 30%;
    right: 0;
    margin: auto;
}
.lang-en .img-listing-box-bg {
    left: 0;
    right: -200px;
}
.normal-radio-control span {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-block: 3px;
    padding-inline-start: 5px;
    padding-inline-end: 15px;
    border-radius: 30px;
}
.normal-radio-control span:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    transition: 0.4s;
    border-radius: 50%;
}
.normal-radio-control input {
    display: none;
}
.normal-radio-control input:checked ~ span:before {
    border: 6px solid var(--yellow);
    background-color: #fff;
}
.normal-radio-control.-blue span:before,
.normal-radio-control.-purple span:before {
    border-color: #d9dadb;
}
.normal-radio-control.-blue input:checked ~ span:before {
    border-color: var(--secondary-color);
}
.normal-radio-control input:checked ~ span {
    background: rgb(246 245 255 / 20%);
}
.normal-radio-control.-purple input:checked ~ span:before {
    border-color: #b22298;
}
.filter-box__categories .item {
    min-width: 48%;
}
.filter-box__categories .item span {
    width: 100%;
    background-color: rgb(71 31 102 / 50%);
}
.filter-box__categories .item input:checked ~ span {
    background: #471f66;
    color: #fff;
}
.accent-color {
    accent-color: var(--purple);
}
.checkbox-control input {
    display: none;
}
.checkbox-control span {
    position: relative;
    display: flex;
}
.checkbox-control span:before {
    content: "";
    min-width: 18px;
    height: 18px;
    border: 1px solid #d9dadb;
    border-radius: 3px;
    transition: all 0.4s;
}
.checkbox-control input:checked ~ span:before {
    border-color: var(--purple);
    background-color: var(--purple);
    background-image: url(../images/check-white.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(360deg);
}
.project-item.active figure:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00bf8d;
    opacity: 0.6;
}
.project-item.active .project-item__foot {
    justify-content: center;
}
/* .project-item.active .project-item__foot > *:not(.project-item__download-btn) {
  display: none;
} */
.project-item__download-btn {
    top: 2px;
    position: relative;
}
.custom-label {
    min-width: 69px;
    height: 25px;
    padding-inline: 4px;
}

.basket-modal-body {
    width: 380px;
    padding-block: 25px 55px;
    text-align: center;
}
.empty-basket__lbl {
    width: 20px;
    height: 20px;
    padding-bottom: 1px;
}
.empty-basket__link {
    background: #00bf8d;
    width: 100%;
    height: 40px;
    font-size: 13px;
    padding-inline: 10px;
}
.empty-basket-box {
    width: 210px;
}
.empty-basket__link:hover {
    background-color: var(--purple);
    color: #fff;
}
.basket-modal.has-items .basket-modal-body {
    width: 1000px;
    max-width: 100%;
    padding-block: 60px;
    padding-inline-start: 100px;
    padding-inline-end: 80px;
    text-align: inherit;
}
.basket-modal .empty-basket-box {
    display: block;
}
.basket-modal.has-items .empty-basket-box,
.basket-modal .my-basket-box {
    display: none;
}
.basket-modal.has-items .my-basket-box {
    display: block;
}
table {
    background-color: var(--soft);
    border-radius: 10px;
    width: 100%;
    border-collapse: collapse;
    text-align: initial;
}
table thead th {
    font-size: 13px;
    color: var(--main-color);
    padding-block: 14px;
    border-bottom: 1px solid #d9dadb;
    text-align: initial;
    padding-inline: 10px;
}
.basket-table figure {
    width: 63px;
    height: 63px;
}
.basket-table figure img {
    max-width: 100%;
    max-height: 100%;
}
.basket-table .amount-box {
    width: 90px;
    height: 38px;
}
.basket-table .amount-box .--amount-val {
    width: 30px;
}
.basket-table {
    font-size: 13px;
}
table tbody td {
    padding: 10px;
}
table tbody td:first-of-type {
    padding-inline-start: 15px;
}

.radio-switch {
    position: relative;
    width: 90px;
    height: 32px;
    cursor: pointer;
    position: relative;
}
.radio-switch .radio-bg {
    background-color: #ccc;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.radio-switch input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    opacity: 0;
    height: 100%;
    z-index: 2;
}

.radio-switch label {
    position: absolute;
    top: 5px;
    left: 4px;
    width: 22px;
    height: 22px;
    background-color: #f6f5ff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
    transform: translateX(60px);
}

.radio-switch input:checked + label {
    transform: translateX(0);
}

.text-on,
.text-off {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.3s ease;
    font-size: 8px;
    color: #000000;
    pointer-events: none;
    padding-bottom: 3px;
}

.text-on {
    left: 35%;
    opacity: 0;
}

.text-off {
    opacity: 1;
    right: auto;
    left: 10px;
}

.radio-switch input:checked ~ .text-on {
    opacity: 1;
    color: #fff;
}

.radio-switch input:checked ~ .text-off {
    opacity: 0;
}
.radio-switch input:checked ~ .radio-bg {
    background: var(--main-color);
}
.basket-name-td,
.mx-200 {
    max-width: 200px;
}
.basket-table__amount-2 .before-edit-btn,
.basket-table__amount-2 .after-edit-btn {
    width: 30px;
    min-width: 30px;
    height: 30px;
}
.basket-table__amount-2 .after-edit-btn {
    position: absolute;
    left: 0;
}
.lang-en .basket-table__amount-2 .after-edit-btn {
    left: auto;
    right: 0;
}
[sahem-root].active .before-edit-btn,
.basket-table__amount-2 .after-edit-btn {
    opacity: 0;
    transform: scale(0) rotate(360deg);
}
[sahem-root].active .after-edit-btn {
    opacity: 1;
    transform: scale(1) rotate(0);
}
[sahem-root].active .before-edit {
    background-color: var(--main-color);
}
[sahem-root].active .before-edit-amount {
    color: #fff;
}
.bordered-table tbody tr:not(:last-of-type) td {
    border-bottom: 1px solid #d9dadb;
}
.basket-table__amount-2-box {
    border: 1px solid var(--main-color);
    width: 88px;
}
.basket-table__amount-2-box .before-edit-amount {
    padding: 1px;
    padding-inline-start: 12px;
    padding-bottom: 2px;
    width: 100%;
    background: transparent;
    border: 0;
}

.donation-summary-section .upper-box {
    background: transparent linear-gradient(180deg, #63317d 0%, #481f66 100%) 0%
        0% no-repeat padding-box;
    padding-inline-start: 60px;
}
.donation-summary-section .bottom-box {
    margin-top: -5px;
}
.donation-summary-section .bottom-box,
.donation-summary__foot,
.checkout-summary-section .box {
    padding-inline-start: 80px;
    padding-inline-end: 80px;
}
.donation-summary_u-form .--input {
    height: 38px;
}
.donation-summary_u-form .btn-blue,
.donation-summary_u-form .btn-soft {
    padding-inline: 17px;
    color: #fff;
    font-size: 13px;
    height: 38px;
    border: 0;
    background: #00bde9;
}
.donation-summary_u-form .btn-blue:hover {
    background: var(--yellow);
}
.donation-summary_u-form .btn-soft {
    background-color: var(--soft);
    color: var(--main-color);
}
.donation-summary_u-form .btn-soft:hover {
    background-color: var(--main-color-soft);
    color: #fff;
}
.send-mail__btn {
    z-index: 3;
}
.send-mail__btn,
.send-mail__submit {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: var(--purple);
    padding-inline: 15px;
    padding-block: 10px;
    border: 0;
    border-radius: 30px;
    white-space: nowrap;
}
.send-mail__submit {
    padding-inline: 15px;
    /* position: absolute;
  top: 0;
  left: 0; */
    height: 100%;
}
.send-mail__trans {
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 43px;
    position: absolute;
    left: 0;
    top: 0;
}
[send-mail-form].active .send-mail__btn {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}
[send-mail-form].active .send-mail__trans {
    border: 1px solid #d9dadb;
    width: 100%;
    opacity: 1;
    pointer-events: inherit;
}
.send-mail__input::placeholder {
    color: #bcbfc2;
}
[after-send-mail-label] {
    visibility: hidden;
    pointer-events: none;
    height: 40px;
    transition: 0.4s;
    opacity: 0;
    transform: translateX(-100%);
}
[after-send-mail-label].active {
    visibility: visible;
    pointer-events: initial;
    opacity: 1;
    transform: translateX(0);
}
.custom-flex-table__row figure {
    width: 40px;
    min-width: 40px;
}
.custom-flex-table__row figure img {
    max-width: 100%;
}
.custom-flex-table__row {
    padding-block: 8px;
}
.btn-normal {
    background: var(--main-color);
    color: #fff;
    border: 0;
}
.btn-normal.no-hover {
    background: var(--main-color) !important;
    color: #fff !important;
}
.btn-blue {
    background: #00bde9;
    color: #fff;
    border: 0;
}
.btn-white {
    background: #fff;
    color: var(--main-color);
    border: 0;
}
.btn-print,
.btn-normal,
.btn-blue,
.btn-white {
    padding: 10px 20px;
    transition: all 0.4s;
    border-radius: 30px;
}
.btn-print:hover,
.btn-normal:hover {
    background-color: var(--soft);
}
.who-we-are-header .home-header-patt-1 {
    opacity: 0;
}
.who-we-are-section {
    margin-top: -102px;
    height: 650px;
}
.who-we-are-section:before {
    content: "";
    background: transparent linear-gradient(359deg, #63317d00 0%, #481f66 100%)
        0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    z-index: 1;
}
.who-we-are-section .main-img {
    position: absolute;
    top: 0;
    left: 0;
}
.who-we-are-section .title {
    font-size: 80px;
    text-shadow: 0px 5px 9px #4d2b5f4d;
    text-transform: uppercase;
}
.who-we-are-section .stick-line {
    position: absolute;
    top: 100%;
    display: block;
    width: 8px;
    height: 400px;
    border-radius: 10px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.who-we-are-section .stick-line .upper {
    background: #fff;
    height: 80%;
}
.who-we-are-section .stick-line .bottom {
    height: 20%;
    background-color: var(--main-color);
}
.who-details-section .full-half-img {
    border-radius: 10px 0 0 10px;
}
.lang-en .who-details-section .full-half-img {
    border-radius: 0 10px 10px 0;
}
.values-section .item {
    padding: 13px 24px;
    background: #ff926c;
}
.values-section .item:nth-of-type(2) {
    background: #00beea;
}
.values-section .item:nth-of-type(3) {
    background: #63317d;
}
.values-section .item:nth-of-type(4) {
    background: #00bf8d;
}
.values-section .item:nth-of-type(5) {
    background: #481f66;
}
.values-section .item:nth-of-type(6) {
    background: #e82e56;
}
.values-section .box {
    min-width: 500px;
}
.search-results-section .search-title {
    font-size: 42px;
}
.search-results-section .item .--body {
    padding-inline-end: 20px;
}
.search-results-section .item:hover {
    background: #8c8c8c1a;
}
.donation-cart-section .box {
    margin-top: -40px;
}
.donation-cart-section .ppp,
.contact-us-page-wrapper .ppp {
    padding-inline: 70px;
}
.basket-badge {
    width: 20px;
    height: 20px;
    padding-top: 3px;
}
.do-form-row-checkout {
    border: 1px solid #d9dadb;
}
.donation-input-lbl {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}
.donation-input-field {
    border: 1px solid #d9dadb;
    border-radius: 5px;
    transition: 0.4s;
    width: 100%;
    height: 38px;
    padding-inline: 15px;
}
textarea.donation-input-field {
    height: auto;
}
.do-form-group .normal-radio-control span:before {
    border-color: #d9dadb;
}
.do-form-group .normal-radio-control input:checked ~ span:before {
    border-color: #b22298;
}
.do-form-group .country-select ~ .select2 .select2-selection {
    border-radius: 5px;
    height: 38px;
}
.donation-input-field.error {
    border: 1px solid #e82e56;
}
.do-form-group .error-message {
    font-size: 12px;
    color: #e82e56;
}
.donation-cart-section .box3 {
    border-radius: 0 0 10px 10px;
}
.html-table {
    background: transparent;
}
.html-table thead th {
    font-weight: normal;
    border-bottom: 0;
    padding: 0;
}
.html-table tbody td {
    padding-inline: 0 !important;
}
.lang-ar .collect-td-3 {
    text-align: right;
}
.collect-table tbody td {
    padding-block: 20px;
}
.do-form-group .normal-radio-control input:checked ~ span {
    background-color: transparent;
}
.checkout-forms-methods-lbl {
    color: #4b5157;
}
[payment-info-box] {
    display: none;
}
.saved-cards .item input:checked ~ .item-cntnt {
    background: #4d2b5f;
    color: #fff;
    border-color: transparent;
}
.saved-cards .item .item-cntnt {
    padding: 20px 15px 11px 15px;
    text-align: left;
    border: 1px solid #d9dadb;
}
.saved-cards .item .item-cntnt .card-img {
    margin-top: -7px;
}
.checkout-order-summary-mobile {
    display: none;
}
.boxes-section .item {
    background: #471f66;
}
.boxes-section .item figure {
    height: 32px;
}
.dropdown-inside .target:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: -10px;
}
.dropdown-header {
    position: absolute;
    top: 100%;
    width: 150px;
    left: 0%;
    margin: auto;
    padding-top: 10px;
    z-index: -1;
    transform: translate(-24%, 0%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.dropdown-header .content {
    background-color: #fff;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: 1px 1px 7px 1px #e5a20c78;
    max-height: 176px;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
    top: 20px;
    position: relative;
}
.dropdown-inside:hover .dropdown-header,
.dropdown-inside .target:hover ~ .dropdown-header {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.dropdown-inside:hover .dropdown-header .content,
.dropdown-inside .dropdown-header:hover .content,
.dropdown-inside .target:hover ~ .dropdown-header .content {
    visibility: visible;
    opacity: 1;
    top: 0;
}
.iti {
    width: 100%;
}
.don-img-effect {
    position: absolute;
    bottom: 0;
    left: 2%;
    width: 45%;
}
.lang-en .don-img-effect {
    left: auto;
    right: 2%;
}
.main-header .dropdown-header .dropdown-link {
    color: var(--main-color);
    transition: 0.4s;
    font-size: 12px;
    padding: 5px 2px;
}
.main-header .dropdown-header .dropdown-link:before,
.main-header .dropdown-header .dropdown-link:after {
    content: none;
}
.main-header .dropdown-header .dropdown-link:hover {
    background-color: #481f668a;
    color: #fff;
}
[fast-donation-toggle-tab] {
    display: none;
}
.transparent-header .header-search__input,
.transparent-header .header-search__input::placeholder {
    color: #000;
}
.new-centered-banner .left .amm_left-total,
.projects-centerd-section .left .amm_left-total {
    font-size: 26px;
    font-weight: 500;
    width: 100px;
}
.wizard-box .item .num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wiz-barrier {
    flex: 1;
    background-color: #ccc;
    height: 1px;
    position: relative;
    top: -10px;
}
.wizard-box .item.active .num {
    background: var(--main-color);
    color: #fff;
}
.wizard-box .item.active ~ .wiz-barrier {
    /* background: var(--main-color); */
}
.btn-table-normal {
    padding: 5px 15px;
    font-size: 12px;
    background: var(--main-color);
    color: #fff;
    border: 0;
    border-radius: 30px;
}
.btn-table-normal.del {
    background-color: var(--yellow);
}
@-moz-document url-prefix() {
    /* Apply styles only for Firefox */
    body {
        line-height: 1.5;
    }
    .header-projects-btn {
        padding-top: 8px;
    }
    .fast-donation__text {
        padding-bottom: 0px;
    }
    .project-item__label-box .fig-label,
    .btn-double-text {
        padding-bottom: 0;
    }
    .btn-double-text:hover::after {
        top: 8px;
    }
    .swiper-slide .btn-double-text:hover::after {
        top: 16%;
    }
    input[type="number"] {
        -moz-appearance: textfield;
    }
    .kafalat-centerd-section .radio-inner-control span {
        padding-bottom: 0;
    }
    .main-header .cart-icon-link span,
    .main-header .header-right .lang-switcher-link {
        padding-bottom: 0px;
        padding-top: 2px;
    }
}
.new-centered-banner .left .--inc-btn,
.new-centered-banner .left .--dec-btn,
.projects-centerd-section .left .--inc-btn,
.projects-centerd-section .left .--dec-btn {
    width: 23px;
    height: 23px;
    background-size: 18px !important;
}
.new-centered-banner .left .--inc-btn,
.projects-centerd-section .left .--inc-btn {
    background-image: url(../images/plus-white.svg);
}
.new-centered-banner .left .--dec-btn,
.projects-centerd-section .left .--dec-btn {
    background-image: url(../images/minus-white.svg);
}
.new-centered-banner .left,
.projects-centerd-section .left {
    padding: 6px 12px 10px 12px;
    width: 21%;
}
.zakah-latest-calsses .left-row-custom {
    width: 21%;
}
.zakah-latest-calsses .left-row-custom .left {
    width: 100%;
}
.btn-cart-new .white-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.btn-cart-new:hover .white-img {
    opacity: 1;
}
.radio-payment-with-img span {
    background-color: #fff;
    border-radius: 15px;
    width: 100px;
    height: 60px;
    transition: 0.4s;
    border: 3px solid #d9dadb;
    cursor: pointer;
}
.radio-payment-with-img span img {
    width: 70px;
}
.radio-payment-with-img input:checked ~ span {
    border-color: var(--main-color);
}
.new-amount-box .--amount-val {
    border: 0;
    color: #4b5157;
}
.main-centered-section .left__row .amount-box .--amount-val {
    height: 40px;
    line-height: 1;
}
.apply-status-section {
    overflow: hidden;
}
.apply-status-section .box-wrap {
    padding-inline: 55px;
    max-width: 100%;
}
.apply-status-section .head,
.help-type-section .head {
    padding-inline-start: 55px;
}
.apply-status-section .box {
    padding-inline: 60px;
    gap: 140px;
    max-width: 100%;
}
.apply-status-section .box-with-arrows .arrow-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}
.apply-status-section .box-with-arrows .left-arrow {
    right: auto;
    left: 0;
}
.apply-slide-item .--head {
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    padding: 8px;
    display: flex;
    position: relative;
    z-index: 1;
    background: var(--main-color);
}
.apply-slide-item .--head span {
    background: #00bf8d;
    width: 100%;
    height: 100%;
}
.apply-slide-item.active .--head span {
    background: #e82e56;
}
.apply-slide-item:after,
.apply-status-section
    .apply-slider
    .apply-slide-item:not(:first-of-type):before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: calc(50%);
    border: 1px dashed #fff;
}
.apply-status-section
    .apply-slider
    .apply-slide-item:not(:first-of-type):before {
    left: auto;
    right: 1px;
    width: calc(50%);
}
.apply-status-section .apply-slider .apply-slide-item:last-of-type:after {
    content: none;
}
.help-slide-item {
    padding: 70px 70px;
    padding-inline-end: 50px;
}

.help-slide-head span {
    background: #00bf8d;
    padding: 5px 20px;
}
.help-slide-item.active span {
    background: #e82e56;
}
.help-slide-item.active .left,
.help-slide-item.active .middle {
    pointer-events: none;
    opacity: 0.5;
}
.help-slide-item .middle {
    position: absolute;
    left: -20%;
    right: 0;
    margin: auto;
    bottom: 0;
}
.lang-en .help-slide-item .middle {
    right: -20%;
    left: auto;
}
.btn-2 {
    background: var(--purple) 0% 0% no-repeat padding-box;
    border-radius: 30px;
    width: 190px;
    color: #fff;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    border: 0;
}
.soft-btn {
    background: var(--main-color-soft);
}
.soft-btn:hover {
    background-color: var(--main-color);
}
.help-slide-item .left .left-icon-box {
    transform: translate(0, -30px);
}
.help-slide-item .left .btn-2 {
    transform: translate(0, 30px);
}
.help-type-slider {
    /* min-height: 700px; */
    /* max-height: 1100px; */
    /* overflow-y: auto; */
}
.help-type-slider .swiper-slide {
    height: auto !important;
}
/* .help-type-slider::-webkit-scrollbar {
  display: none;
} */
.help-type-section .arrow-slider.unactive {
    opacity: 0.5;
    pointer-events: none;
}
.apply-section-structure .right {
    width: 35%;
}
.apply-section-structure .box {
    gap: 35px;
}
.apply-details-section .right .neddle-box-apply {
    margin-top: -60px;
}
.btn-blue-apply-big {
    background: #00bde9;
    height: 100px;
    border-radius: 100px;
    font-size: 38px;
}
.btn-blue-apply-big:hover {
    background: #9567c6;
}
.apply-wizard-section .box {
    padding: 30px;
}
.apply-wizard-section .item {
    flex: 1;
}
.apply-wizard-section .item .head {
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 50%;
}
.apply-wizard-section .item .head span {
    width: 60px;
    height: 60px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    font-size: 30px;
    color: var(--main-color);
    background: #fff;
    position: relative;
    z-index: 1;
}
.apply-wizard-section .item.active .head {
    border-color: var(--main-color);
    position: relative;
    z-index: 1;
}
.apply-wizard-section .item.active .head span {
    background: var(--main-color);
    color: #fff;
}
.apply-wizard-section .item.finished .head span {
    background: #00bf8d;
    border-color: #00bf8d;
    color: #fff;
}
.apply-wizard-section .item:not(:last-of-type) .head-cntnt:after,
.apply-wizard-section .item:not(:first-of-type) .head-cntnt:before {
    content: "";
    border-top: 1px dashed var(--main-color);
    width: calc(50%);
    position: absolute;
    left: 0;
}
.apply-wizard-section .item:not(:first-of-type) .head-cntnt:before {
    left: auto;
    right: 0;
}
.apply-wizard-section .item.finished .head-cntnt:after,
.apply-wizard-section .item.finished .head-cntnt:before,
.apply-wizard-section .item.active .head-cntnt:before {
    border-style: solid;
    border-width: 1px 0 0 0;
}
.apply-wizard-section .barrier {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
}
.apply-form-table .input-td {
    width: 160px;
    min-width: 160px;
}
.apply-form-table .input-td input {
    background-color: transparent;
    border: 1px solid #d9dadb;
    border-radius: 10px;
    height: 50px;
    text-align: center;
    color: #b6b6b6;
    width: 100%;
    transition: 0.4s;
    pointer-events: none;
}
.apply-form-table .input-td input.active {
    color: #4b5157;
    pointer-events: auto;
}
.apply-form-table .input-td-full {
    width: 100%;
}
.apply-form-table {
    background: transparent;
}
.apply-form-table thead {
    background: var(--main-color);
}
.apply-form-table thead th {
    color: #f6f5ff;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 0;
}
.apply-form-table thead th:first-of-type {
    border-radius: 0 10px 10px 0;
}
.apply-form-table thead th:last-of-type {
    border-radius: 10px 0 0 10px;
}
.apply-td-btns button {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 10px;
}
.apply-td-btns .edit-icon-btn {
    background-color: #00bde9;
}
.apply-td-btns .trash-icon-btn {
    background-color: var(--purple);
}
.apply-form-table tbody tr td {
    padding-inline: 6px;
}
.apply-form-table tbody tr td:first-of-type {
    padding-inline-start: 0 !important;
}
.apply-form-table tbody tr td:last-of-type {
    padding-inline-end: 0 !important;
}
[edit-table-row].active {
    background-image: url(../images/white-check-bold.png) !important;
    background-size: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}
[edit-table-row] img {
    transition: 0.4s ease;
}
[edit-table-row].active img {
    opacity: 0;
    transform: rotate(360deg);
}
.add-new-row-apply-btn {
    border: 1px solid #d9dadb;
    background: transparent;
    height: 50px;
}
.uploader-box {
    border: 1px dashed var(--main-color);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
}
.full-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.opacity-0 {
    opacity: 0;
}
.opacity-5 {
    opacity: 0.5;
}
.btn-apply-add-new-remove,
.btn-apply-add-new-succss {
    height: 42px;
    background: var(--purple);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: 0;
    gap: 5px;
}
.btn-apply-add-new-remove {
    background: #e82e56;
}
.uploader-box .after-upload {
    display: none;
}
.uploader-box.active .after-upload {
    display: block;
}
.uploader-box.active .file-name-target {
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 14px;
    padding: 7px 10px;
    padding-inline-start: 15px;
    color: rgb(255 255 255 / 50%);
    transition: 0.4s;
    cursor: pointer;
}
.uploader-box.active .can-delete .file-name-target {
    cursor: auto;
}
.uploader-box .file-name-target:after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #9567c6;
    transition: 0.4s;
}
.uploader-box.active {
    background: var(--main-color);
    color: #fff;
}
.uploader-box.active .before-upload-box {
    display: none;
}
.ignore-upload-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
    background: url(../images/x-white.svg) no-repeat;
    background-size: 18px;
    background-position: center;
    transition: 0.4s;
    transform: translateX(20px);
}
.uploader-box.style-2 .ignore-upload-btn {
    background-image: url(../images/trash-purple.svg);
    background-color: #fff;
    width: 23px;
    height: 23px;
    background-size: 15px;
    margin-inline-start: -23px;
    transform: translateX(0);
}
.uploader-box.style-2 .choosen-file {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.uploader-box.active .can-delete .ignore-upload-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.uploader-box.style-2 .can-delete .ignore-upload-btn {
    margin-inline-start: 0;
}
.uploader-box.active .can-delete .file-name-target {
    border-color: white;
    color: #fff;
}
.uploader-box.active .can-delete .file-name-target:after {
    background: #00bf8d;
}
.btn-apply-go-next {
    background: #00bde9;
}
.btn-apply-go-next:hover,
.btn-apply-go-prev:hover {
    background: #9567c6;
}
.btn-apply-go-prev.btn-double-text:hover:after {
    top: 10px;
    height: 0;
    background: var(--purple);
}
.uploader-box .appended-files {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: calc(100% - 30px);
}
.uploader-box .appended-files:empty {
    display: none !important;
}
.on-multiple-upload {
    position: absolute;
    top: 0;
    left: 14px;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 2;
    background: #fff;
    padding-top: 0.5px;
    display: none;
}
.lang-en .on-multiple-upload {
    left: auto;
    right: 14px;
}
.uploader-box .before-upload-box {
    align-items: center;
}
.uploader-box .before-upload-box > img {
    width: 29px;
}
.uploader-box.active[multiple] .on-multiple-upload {
    display: flex;
}
.apply-form-1-section .box2 .-left .uploader-box {
    min-height: 100px;
}
.apply-page-2-for .form-box .uploader-box {
    min-height: 124px;
}
.apply-page-2-for .number-field .--bx {
    padding: 0;
    padding-inline-end: 13px;
}
.apply-page-2-for .number-field input {
    border: 0;
    padding-inline: 10px 5px;
}
.apply-3-table-box {
    border-bottom: 1px solid var(--main-color);
}
[commercial-upload-box] {
    display: none;
}
.login-page-section {
    min-height: calc(100vh - 103px);
}
.modal-footer .btn-gray {
    background: #ac9fa0;
    color: #fff;
}
.modal-footer .btn-normal {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-footer .btn-normal:hover {
    color: #fff;
    background: var(--main-color);
}
.modal-footer .btn-gray:hover {
    background: #ac9fa0;
    color: #fff;
}
.veri-digit {
    width: 90px;
    height: 40px;
    border: 1px solid #d9dadb;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
}
.verift-form-submit-btn {
    margin-inline-start: -50px;
    width: 80%;
    justify-content: flex-end;
    gap: 10px;
    padding-inline-end: 10px;
    background: var(--main-color) !important;
}
.family-validation-modal .--body {
    width: 650px;
    border-radius: 30px;
    padding-inline: 50px;
}
.family-validation-modal .btns .btn {
    height: 80px;
    border-radius: 50px;
    font-size: 19px;
}
.family-validation-modal .btns .btn-blue {
    font-size: 25px;
}
.family-validation-modal .close-icon-modal {
    margin-top: 10px;
    margin-inline-start: -30px;
}
.btn-loading {
    pointer-events: none;
    position: relative;
    font-size: 0 !important;
    background: #b9b9b9 !important;
}
.btn-loading:before {
    content: "";
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.--progress-number {
    text-shadow: 1px 1px 1px #fff;
}
.invert-1 {
    filter: invert(1);
}
.prepare-project-table {
    border-collapse: separate;
    border-spacing: 0 20px;
}
.prepare-project-table thead th {
    padding: 30px 10px;
}
.prepare-project-table thead th:first-of-type {
    border-radius: 0 10px 10px 0;
}
.prepare-project-table thead th:last-of-type {
    border-radius: 10px 0 0 10px;
}
.prepare-project-table .td-1,
.gray-5 {
    color: #b4aca4;
}
.prepare-project-table tbody tr td {
    margin-top: 20px;
}
.prepare-project-table .td span {
    padding: 30px 5px;
}
.prepare-project-table tbody tr td {
    padding: 0;
    padding-inline-end: 20px;
}
.prepare-project-table tbody tr td:last-of-type {
    padding-inline-end: 0;
}
.add-project-2-section .step-num {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 160px;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-inline-start: -30px;
}
.add-project-2-section .box-2 .step-num {
    margin-inline-start: -50px;
}
.project-list-item .item-infos .info {
    position: relative;
    padding-inline: 7px;
}
.project-list-item .item-infos .info:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 70%;
    width: 1px;
    background: #bcbfc2;
}
.project-list-item .item-infos .info:first-of-type {
    padding-inline-start: 0;
}
.project-list-item .item-infos .info:last-of-type {
    border: 0;
    padding-inline-end: 0;
}
.project-list-item .item-infos .info:last-of-type:after {
    content: none;
}
.project-list-item .btn {
    height: 36px;
    font-size: 13px;
}
.user-dahsbrd-menu .shape {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--main-color);
}
.dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
}
.user-dahsbrd-menu .content {
    padding: 20px;
    width: 520px;
}
.user-dahsbrd-menu .content .right-sde {
    border-inline-start: 1px solid rgb(255 255 255 / 50%);
    padding-inline-start: 13px;
}
.user-dahsbrd-menu .target {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;

    position: absolute;
    top: 100%;
    right: 0;
}
.lang-en .user-dahsbrd-menu .target {
    right: auto;
    left: 0;
}
.user-dahsbrd-menu:hover .target {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
}
.user-dahsbrd-menu .img-fig {
    border: 2px solid var(--main-color);
}
.main-dashboard-header .side-1 .gray-icon {
    background: #b4aca4;
}
.main-dashboard-header .side-1 .red-icon {
    background: #e82e56;
}
.main-dashboard-header .side-1 .--icon {
    width: 48px;
    height: 48px;
}
.main-dashboard-header .side-1 .gray-icon:hover img {
    transform: rotate(45deg);
}
.create-new-project-btn span {
    background: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 19px;
    width: 260px;
}
.create-new-project-btn img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    opacity: 0;
}
.create-new-project-btn:hover img {
    bottom: 45px;
    opacity: 1;
}
.create-new-project-btn:hover span {
    background: var(--main-color);
    color: #f6f5ff;
}
.notification-box,
.logs-box,
.status-req-box {
    max-height: 500px;
    overflow-y: auto;
}
.notification-btn {
    min-width: 120px;
    padding: 5px;
    color: #fff;
    background: #00bf8d;
    border: 0;
    height: 30px;
    font-weight: 500;
}
.notification-btn.-report {
    background: #fff;
    color: var(--secondary-color);
    font-size: 10px;
}
.pointer-none {
    pointer-events: none;
}
.notification-btn.disabed,
.disabed-btn {
    opacity: 0.5;
    pointer-events: none;
}
.disabed-amount-input,
.disabed-amount-input .--amount-val {
    background: #d9dadb;
    pointer-events: none;
}
.my-pr-tab {
    padding-block: 24px 15px;
    padding-inline: 5px;
}
.my-pr-tab img {
    height: 22px;
    opacity: 0;
}
.my-pr-tab span {
    position: relative;
    top: -20px;
}
.my-pr-tab.active span {
    top: 0;
}
.my-pr-tab.active img {
    opacity: 1;
}
.current-active-btn {
    width: 10px;
    height: 4px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    transition: 0.4s;
    left: 0;
}
.my-projects-tabs {
    border-radius: 30px 30px 0 0;
}

.dashboard-table .btn-header {
    background: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: 0.4s;
}
.dashboard-table .btn-header:hover {
    background: var(--main-color);
    color: #fff;
}
.dashboard-table .btn-header:hover img {
    filter: invert(0.4);
}
.dashboard-table .td-2 {
    width: 400px;
}
.dashboard-table thead th {
    border-bottom: 0;
}
.dash-table-my-projects thead tr:first-of-type td {
    padding-top: 20px;
    padding-bottom: 10px;
}
.sticky-table-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.radius-30-t {
    border-radius: 30px 30px 0 0;
}

.dashboard-table-box-1,
.dashboard-table-box-2,
.dashboard-table-box-3 {
    padding-top: 0;
    max-height: 500px;
    overflow-y: auto;
}
.dashboard-table tbody tr:not(:last-of-type) td {
    border-bottom: 1px solid #d9dadb;
}
.btn-outline {
    transition: 0.4s;
    background: transparent;
    border: 1px solid var(--main-color);
    font-size: 16px;
    font-weight: 600;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    height: 50px;
    color: var(--main-color);
}
.btn-outline:hover {
    background: var(--main-color);
    color: #ffff;
}
.btn-outline:hover img {
    filter: invert(0.5);
}
.my-profile-form-section .img-fig {
    border: 1px solid var(--main-color);
}
.breadcrumb-white .item {
    color: #fff;
}
.my-profile-form-section .-head {
    margin-top: -80px;
}
.update-profile-data-btn {
    height: 38px;
}
.update-profile-data-btn:hover {
    background: #b4aca4;
}
[my-profile-form] .login-input,
[my-profile-form] .field-group {
    transition: 0.4s;
}
[my-profile-form].active .field-group {
    opacity: 0.37;
    pointer-events: none;
}
[my-profile-form].active .user-profile-image {
    pointer-events: none;
}
.wallet-item figure {
    width: 53px;
    padding: 6px;
}
.wallet-item .item-content {
    text-align: left;
}
.wallet-item:hover {
    background: var(--main-color);
    color: #fff;
}
.wallet-item:hover .edit-btn-visa {
    color: #fff;
}
.wallet-item:hover .edit-btn-visa img {
    filter: invert(1) grayscale(1);
}
.add-visa-item-blank {
    height: 199px;
}
.add-project-item-box-with-img {
    min-height: 360px;
}
.add-visa-item .desc {
    opacity: 0.7;
}
.add-visa-item {
    border: 1px solid #481f66b3;
}
.cvv-fields-card-modal .donation-input-field {
    width: 100px;
}
.add-card-modal .modal-body {
    width: 570px;
    max-width: 100%;
}
.close-card-modal {
    position: absolute;
    top: 13px;
    margin-inline-start: -25px;
}
.add-card-modal .btn-normal {
    min-width: 100px;
}
.add-card-modal .btn-normal:hover {
    background: var(--purple);
    opacity: 0.8;
}
.tabs-orphan .selected-btn {
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 50%;
    border-radius: 16px;
    height: 40px;
}
.tabs-orphan button.active:first-of-type ~ .selected-btn {
    left: 50%;
}
.orphan-details-logs .tabs-content {
    margin-top: -15px;
}
.tabs-orph-library .arrows {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
}
.tabs-orph-library .arrows .arrow-slider {
    background: #fff;
}
.tabs-orph-library .arrows .arrow-slider img {
    filter: invert(0.5);
}
.tabs-orph-library .arrows .arrow-slider:hover {
    transform: scale(1.1);
}
.orphan-details-logs .orph-library-slider img,
.orphan-details-logs .tabs-orph-reports,
.logs-box-orph-page {
    height: 600px;
    max-height: 600px;
}
.orphan-details-logs .tabs-orph-reports {
    overflow-y: auto;
}
.normal-table-btns button {
    min-width: 65px;
    height: 32px;
}
.logs-box > .log-item.log-green .log-lbl,
.status-req-item.status-req-green .log-lbl {
    background: #00bf8d;
}
.logs-box > .log-item.log-red .log-lbl,
.status-req-item.status-req-red .log-lbl {
    background: #e82e56;
}
.logs-box > .log-item.log-yellow .log-lbl,
.status-req-item.status-req-yellow .log-lbl {
    background: #e5a20c;
}
.logs-box > .log-item.log-red,
.border-b-red,
.status-req-item.status-req-red {
    border-color: #e82e56 !important;
}
.logs-box > .log-item.log-yellow,
.border-b-yellow,
.status-req-item.status-req-yellow {
    border-color: #e5a20c !important;
}
.border-b-green {
    border-color: #00bf8d !important;
}
.border-b-blue {
    border-color: #00bde9 !important;
}
.border-b-gray {
    border-color: #b2aba6 !important;
}
.my-project-item-mo.border-b-red .btm-2 {
    color: #e82e56;
}
.my-project-item-mo.border-b-green .btm-2 {
    color: #00bf8d;
}
.my-project-item-mo.border-b-yellow .btm-2 {
    color: #e5a20c;
}
.my-project-item-mo.border-b-blue .btm-2 {
    color: #00bde9;
}
.my-project-item-mo.border-b-gray .btm-2 {
    color: #b2aba6;
}
.status-req-item .item-btn {
    min-width: 110px;
    border-radius: 30px;
    height: 38px;
}
.status-req-item.status-req-yellow .item-btn {
    background-color: #e5a20c;
    color: #fff;
}
.range-slide-input {
    border: 0;
    border-radius: 10px;
    width: 100%;
    height: 36px;
}
.circle-progressbar svg {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
}
.circle-progressbar .progress-bar__background {
    fill: none;
    stroke: #e1ddd9;
    stroke-width: 1.8;
}

.circle-progressbar .progress-bar__progress {
    fill: none;
    stroke: #00bf8d;
    stroke-dasharray: 100 100;
    stroke-dashoffset: 50;
    stroke-linecap: round;
    stroke-width: 1.8;
    transition: stroke-dashoffset 0.3s ease-in-out;
}
.circle-progressbar.active:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00bf8d;
    border-radius: 50%;
    background-image: url(../images/check-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
}
.deal-table-body .fig {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.deal-table-body .fig .img {
    max-width: 95%;
    max-height: 95%;
}
.deal-table .table-col-1 {
    width: 60%;
    padding-inline-start: 15px;
}
.deal-table .table-col-2,
.deal-table .table-col-3 {
    width: 20%;
}
.deal-table-body .deal-table-tr {
    padding-block: 10px;
}
.deal-table-body .deal-table-tr:not(:last-of-type) {
    border-bottom: 1px solid #d9dadb;
}
.deal-details-modal .btn-foot {
    height: 38px;
    width: 140px;
}
.deal-details-modal .deal-table-body {
    max-height: 363px;
    overflow-y: auto;
}
.fst-modal-options__right-2 .checkbog-white-blue-color span {
    transition: 0.4s;
    border-radius: 30px;
    font-size: 11px;
    color: #fff;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 27px;
    cursor: pointer;
    font-weight: 600;
}
.fst-modal-options__right-2 .checkbog-white-blue-color input {
    display: none;
}
.fst-modal-options__right-2 .checkbog-white-blue-color :checked ~ span {
    background: #fff;
    color: var(--secondary-color);
}
.fst-modal-options__right-2 .right-2-row-2 {
    border: 1px solid #fff;
    padding-block: 13px;
    padding-inline: 15px;
}
.fst-modal-options__right-2 .right-2-row-2-input {
    border: 0;
    border-bottom: 1px solid #fff;
    font-size: 11px;
    font-weight: 600;
    background: transparent;
    height: 20px;
    padding-bottom: 6px;
    width: 90px;
    color: #fff;
}
.fst-modal-options__right-2 .right-2-row-2-input::placeholder {
    color: #fff;
}
[fast-donation-toggle-tab] [data-type] {
    display: none;
}
.fst-modal-options__right-2 {
    width: 50%;
}
.creating-instq-modal .--body {
    width: 350px;
}
.my-profile-form-section .user-profile-image .user-image {
    display: none;
}
.my-profile-form-section .user-profile-image:before {
    content: attr(data-label);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000006b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.my-profile-form-section .user-profile-image .img-default,
.my-profile-form-section .user-profile-image.has-user-image .user-image {
    display: block;
}
.my-profile-form-section .user-profile-image.has-user-image .img-default {
    display: none;
}
.my-profile-form-section .user-profile-image.has-user-image:before {
    content: none;
}
.my-profile-form-section .user-profile-image.has-user-image:hover:before {
    content: attr(data-label);
}
[mobile-number-new],
[mobile-number-new] ~ .select2 {
    width: 80px !important;
    height: 38px !important;
}
[mobile-number-new],
[mobile-number-new] ~ .select2 .select2-selection__arrow {
    display: none;
}
[mobile-number-new],
[mobile-number-new] ~ .select2-container .select2-selection--single {
    height: 38px !important;
}
[mobile-number-new]
    ~ .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    border: 1px solid #d9dadb !important;
    border-radius: 5px 0 0 5px !important;
    border-right: 0 !important;
}
.con-img-selected {
    border-right: 1px solid #d9dadb !important;
    height: 100%;
    padding-right: 10px;
}
.new-mobile-filed .target-field {
    border-radius: 0 5px 5px 0 !important;
}
.lang-en .new-mobile-filed {
    flex-direction: row-reverse;
}
[mobile-number-new]
    ~ .select2-container.select2-container--default
    .select2-selection--single {
    border: 0 !important;
}
.new-mobile-filed .target-field {
    border-left: 0 !important;
}
.selected-mobile-val2 {
    font-size: 12px;
    color: #b2aba6;
    height: 100%;
}
[mobile-number-new]
    ~ .select2-container.select2-container--default
    .select2-selection--single:hover {
    background-color: rgba(0, 0, 0, 0.01);
}
.payment-method-radio .input {
    opacity: 0;
    cursor: pointer;
}
.payment-method-radio .inner {
    border: 2px solid transparent;
}
.payment-method-radio .input:checked ~ .inner {
    border: 2px solid var(--main-color);
}
.latest-proj-item .btn {
    padding: 10px 35px;
}
.sucess-story-section .tt {
    font-size: 90px;
    line-height: 1.2;
}
.stories-all-section .story-item {
    box-shadow: none;
}
.kaf-banner-section .tt {
    font-size: 90px;
}
.kaf-banner-section .dd:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #fff;
}
.about-kaf-start-section .pppp {
    background: #b4aca4;
    width: 30px;
    height: 30px;
}
.about-kaf-start-section .linne {
    height: 300px;
    width: 2px;
}
.about-kaf-start-section .span-overlay {
    position: absolute;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background: transparent
        linear-gradient(180deg, #f8f8f8 0%, #84848400 73%, #80808000 100%) 0% 0%
        no-repeat padding-box;
    z-index: 1;
    transform: scaleY(-1);
    pointer-events: none;
}
.story-details-section {
    height: 520px;
}
.story-details-section .story-overlay {
    background: #b4aca4 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    border: 1px solid #707070;
}
.succ-2-single-section .cntnt-bx {
    border-radius: 38px;
    opacity: 1;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 60px;
}

.border-red {
    border: 1px solid #e82e56;
}
.remove-wallet-modal .modal-body {
    width: 1000px;
}
.card-active-bg {
    border: 1px solid #7e6193 !important;
}
.input:checked ~ .card-active-bg {
    background-color: var(--main-color);
    color: #fff;
}
.show-custom-footer-all-btn {
    margin-top: -22px;
}
.show-custom-footer-all-btn a {
    border-radius: 0 0 22px 22px;
}
.search-form-active .header-left {
    gap: 10px;
}
.search-form-active .header-left .header-projects-btn {
    font-size: 12px;
    padding-inline: 4px;
}
.floating-item-status {
    position: absolute;
    bottom: 0;
    left: 0;
}
.floating-item-status span {
    border-radius: 60px 60px 0 0;
}
.kaf-feat-section .man-img {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.btn_cart_std {
    border-radius: 60px;
    background-color: #fff;
    color: var(--main-color);
    border: 0;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
}
@media (min-width: 1025px) and (max-width: 1190px) {
    .project-item__foot .btn-double-text {
        min-width: 80px;
        font-size: 10px;
    }
    .project-item__foot .cart-card-btn {
        min-width: 75px;
        font-size: 10px;
    }
}
@media (max-width: 1200px) {
    .search-form-active .header-left .header-projects-btn {
        font-size: 10px;
    }
    .search-form-active .main-header .main-links a {
        min-width: 50px;
        font-size: 11px;
    }
}
@media (min-width: 1500px) {
    .floating-donat-btn {
        width: 240px;
    }
    .fast-donation__text {
        justify-content: center;
        font-size: 22px;
    }
}
@media (min-width: 1100px) {
    .help-type-section .left-arrow,
    .help-type-section .right-arrow {
        transform: rotate(-90deg);
    }
    .help-slide-item {
        overflow: hidden;
    }
}
@media (max-width: 1150px) {
    .main-header .box .header-left {
        gap: 15px;
    }
    .main-header .box .main-links {
        gap: 10px;
    }
    .main-header .header-right,
    .header-right__icons,
    .main-header .icons_lang-box {
        gap: 5px;
    }
    .header__search-form.active {
        width: 160px;
    }
    .project-item figure .--img {
        aspect-ratio: 1/0.55;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .filters-side {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        display: flex;
        align-items: end;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        z-index: -1;
    }
    .filters-side .filter-box__wrapper {
        width: calc(100% - 80px);
        background: #fff;
        box-shadow: 0px 5px 15px #0000001c;
        border-radius: 10px 0 0 0;
        z-index: 11;
        position: relative;
        height: calc(100vh - 86px);
        padding-top: 40px;
        overflow-y: auto;
        padding-bottom: 50px;
        transform: translateY(100vh);
        transition: 0.4s;
    }
    .lang-en .filters-side .filter-box__wrapper {
        border-radius: 0 10px 0 0;
    }
    .filters-side.active {
        opacity: 1;
        visibility: visible;
        z-index: 11;
    }
    .filters-side.active .filter-box__wrapper {
        transform: translateY(0);
    }
    .main-centered-section .--title {
        font-size: 36px;
    }
    .btn-top-filters {
        width: 103px;
        height: 40px;
        background-color: var(--purple) !important;
        color: #fff !important;
    }
    .filters-slider .item span {
        width: 39px;
        height: 39px;
    }
    .filters-slider .item span {
        background: rgb(72 31 102 / 75%);
    }
    .filters-slider .item img {
        max-width: 100%;
    }
    .filters-slider .item.radio-inner-control input:checked ~ span {
        background-color: var(--main-color);
    }
    .filters-slider .swiper-slide {
        width: 39px;
    }
    .top-page-filters-section .arrow-slider {
        position: absolute;
        top: 0;
        left: -10px;
        bottom: 0;
        z-index: 3;
        background-color: #fff;
        box-shadow: 0px 1px 6px #0000001c;
        width: 20px;
        height: 20px;
        border: 0;
        margin: auto;
    }
    .top-page-filters-section .arrow-slider.right-arrow {
        left: auto;
        right: 117px;
    }
    .lang-en .top-page-filters-section .arrow-slider {
        right: -10px;
        left: auto;
        transform: scaleX(-1);
    }
    .lang-en .top-page-filters-section .arrow-slider.right-arrow {
        right: auto;
        left: 117px;
    }
    .main-header {
        background-color: #f6f5ff;
        padding-block: 24px 20px;
        box-shadow: 0px 13px 28px #0000001a;
        border-radius: 0 0 15px 15px;
        position: sticky;
        top: 0;
        z-index: 5;
    }
    .head-search-mo {
        margin-inline-end: 3px;
    }
    .home-header-patt-1 {
        display: none;
    }

    .head-shop-cart-mo span {
        width: 20px;
        height: 20px;
        border: 1px solid var(--main-color);
        padding-top: 0px;
    }
    .floating-search-form {
        position: absolute;
        width: calc(30px);
        top: calc(100% + 14px);
        right: 30px;
        transition: opacity 0.2s, width 0.5s;
        opacity: 0;
        pointer-events: none;
    }
    .floating-search-form input::placeholder {
        color: #bcbfc2;
    }
    .floating-search-form input {
        box-shadow: 0px 3px 26px #00000033;
        color: #000;
        font-size: 13px;
        padding: 10px 20px;
    }
    .floating-search-form.active {
        width: calc(100% - 60px);
        opacity: 1;
        pointer-events: auto;
    }
    .head-search-mo .img.active {
        filter: contrast(3);
    }
    .main-header .box2 .logo {
        position: relative;
        z-index: 1;
    }
    .main-header .box2 .logo:after {
        content: "";
        position: absolute;
        transition: 0.4s;
        background: url(../images/main-logo.svg) no-repeat center center;
        top: 0;
        left: 0;
        width: 56px;
        height: 38.45px;
        background-size: 100% 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    [opened-modal="mobile-menu"] .main-header .box2 .logo {
        z-index: 100;
    }
    [opened-modal="mobile-menu"] .main-header .box2 .logo img {
        opacity: 0;
    }
    [opened-modal="mobile-menu"] .main-header .box2 .logo:after {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu .main-menu-list {
        padding-top: 100px;
        transition: 0.4s;
        transform: translateX(0);
        position: relative;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        /* top: 0; */
        background: transparent;
        right: 0;
        width: 100%;
        visibility: hidden;
        /* opacity: 0; */
        pointer-events: none;
        overflow: hidden;
        transition: 0.4s;
        max-height: calc(100vh);
        overflow-y: auto;
        border-radius: 0 0 15px 15px;
        height: 0;
    }
    .mobile-menu.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        height: 100%;
    }
    .mobile-menu-content {
        background: var(--main-color);
        border-radius: 0 0 15px 15px;
    }
    .mobile-menu .main-menu-list {
        padding-bottom: 30px;
    }
    .more-link-main-menu {
        display: none;
        background: #63317d36;
        padding-block: 10px;
    }
    [btn-mobile-more-links].active img {
        transform: rotate(180deg);
    }
    .main-header .login-link-menu,
    .main-header .crr-link-menu {
        padding-block: 10px;
    }
    .mobile-menu-link {
        background: transparent;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border: 0;
    }
    .mobile-menu-link.normal {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .currency-list-mo .mobile-menu-link.normal:not(button) {
        justify-content: start;
        padding-inline: 35px;
    }
    .donate-withus-mo-link {
        color: var(--yellow);
    }
    .general-sadqat-link-mo {
        color: #b22297 !important;
    }
    .general-sadqat-link-mo:hover {
        background: #fff !important;
    }
    .mobile-menu .main-menu-list.active {
        /* transform: translateX(-100%); */
        display: none;
    }
    .open-menu-mo {
        width: 20px;
        height: 20px;
        background: url(../images/mobile-menu.svg) no-repeat;
        background-size: cover;
        transition: 0.4s;
        z-index: 100;
    }
    .open-menu-mo.active {
        transform: rotate(360deg);
        background-image: url(../images/mobile-menu-active.svg);
    }
    .mobile-menu .modal-overlay {
        height: calc(100vh);
        top: 0;
        z-index: 0;
    }
    .donation-summary-section .upper-box,
    .donation-summary-section .bottom-box {
        padding: 30px 15px;
    }
    .donation-summary__foot {
        padding: 10px 15px;
    }
    .donation-cart-section .ppp {
        padding-inline: 20px;
        padding-top: 26px;
        padding-bottom: 20px;
    }
    .checkout-summary-section .checkout-forms-wrapper {
        padding-inline: 20px;
    }
    .checkout-summary-section .box {
        padding-inline: 10px;
    }
    .text-right-under-num,
    .text-left-under-num {
        font-size: 11px;
    }
    .filters-slider .item span {
        width: auto;
    }
    .normal-mob-filters .radio-inner-control span {
        color: #fff;
        font-size: 14px;
        border: 0;
        height: 40px;
        font-weight: 600;
        background: var(--main-color);
    }
    .normal-mob-filters .radio-inner-control > span {
        padding-inline-start: 24px;
        padding-inline-end: 20px;
        gap: 7px;
        white-space: nowrap;
    }
    .normal-mob-filters .radio-inner-control > span img {
        width: 15px;
    }
    .normal-mob-filters .radio-inner-control input:checked ~ span,
    .normal-mob-filters .radio-inner-control input:checked ~ span span {
        background: var(--yellow);
    }

    /* Mobile-specific adjustments for category filters */
    .category-filter-item:hover {
        transform: translateY(-6px) scale(1.03);
    }

    .category-filter-item:hover .category-filter-icon {
        transform: scale(1.1) rotate(3deg);
    }

    /* Mobile adjustments for posts page layout */
    .posts-page-container {
        padding: 0 15px;
    }

    .content-container {
        padding: 12px;
    }

    .posts-content-wrapper {
        min-height: 300px;
        padding: 15px 0;
    }

    .apply-status-section .head,
    .help-type-section .head,
    .help-type-section .head,
    .help-type-section .head .--inner {
        padding: 0;
        align-items: flex-start;
        gap: 5px;
    }
    .apply-status-section .head img,
    .help-type-section .head img {
        width: 25px;
    }
    .apply-status-section .head .section-title-60,
    .help-type-section .head .section-title-60 {
        font-size: 26px;
    }
    .apply-status-section .box-with-arrows {
        display: flex;
        flex-wrap: wrap;
        justify-content: unset;
    }
    .apply-status-section .box-with-arrows .arrow-slider,
    .help-type-section .arrows .arrow-slider {
        position: relative !important;
        order: -1;
        margin: inherit;
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        margin-bottom: 15px;
    }
    .apply-status-section .box-with-arrows .arrow-slider img,
    .help-type-section .arrows .arrow-slider img {
        width: 13px;
    }
    .apply-status-section .box-with-arrows .left-arrow {
        margin-inline-start: 10px;
    }
    .apply-status-section .box-wrap {
        padding: 0;
    }
    .apply-status-slider-mo .mo-item {
        border-radius: 14px;
        padding: 25px 20px;
        min-height: 200px;
    }
    .is-current {
        display: none;
        margin-bottom: 13px;
    }
    .is-current span {
        background: #00bde9;
        border-radius: 50%;
        width: 5px;
        height: 5px;
    }
    .apply-status-slider-mo .mo-item.active .is-current {
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .apply-status-slider-mo .mo-item.success {
        background: #00bf8d;
    }
    .apply-status-slider-mo .swiper-slide {
        width: 40%;
    }
    .help-type-section .head,
    .help-type-section .head .--inner {
        flex-direction: column;
    }
    .help-slide-item {
        padding: 30px 20px 30px 20px;
    }
    .help-slide-item .help-slide-head {
        justify-content: flex-end;
    }
    .help-slide-item .left .left-icon-box {
        position: absolute;
        right: 20px;
        top: 60px;
    }

    .lang-en .help-slide-item .left .left-icon-box {
        right: auto;
        left: 20px;
    }
    .help-slide-head span {
        font-size: 7px;
        padding: 4px 14px;
    }
    .help-slide-item .section-title-35 {
        font-size: 19px;
    }
    .help-slide-item .left .left-icon-box img {
        width: 28px;
    }
    .help-slide-item .left {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
    .help-slide-item {
        flex-direction: column;
        height: 100%;
    }
    .help-type-slider .swiper-wrapper {
        padding-bottom: 50px;
    }
    .help-slide-item .left .btn-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .help-slide-item .right,
    .help-slide-item .middle {
        width: 100%;
    }
    .help-slide-item .middle {
        position: relative;
        bottom: -30px;
        margin-top: auto;
        margin-bottom: 0;
    }
    .help-type-slider {
        max-height: inherit;
    }
    .help-type-slider .content-desc {
        font-size: 9px;
    }
    .apply-details-section .box {
        flex-direction: column;
        gap: 27px;
    }
    .apply-details-section .right {
        width: 100%;
    }
    .apply-details-section .right .top-box {
        padding: 19px 26px;
    }
    .apply-details-section .right .top-box > div {
        padding: 0;
    }
    .apply-details-section .right .top-box .section-title-46 {
        font-size: 20px;
    }
    .apply-details-section .right .top-box img {
        width: 35px;
    }
    .apply-details-section .section-title-60 {
        font-size: 22px;
    }
    .apply-details-section .accordion-head .btn-2 {
        font-size: 20px;
    }
    .apply-details-section [acc-body] {
        display: none;
    }
    .apply-details-section .btn-blue-apply-big {
        font-size: 24px;
        height: 50px;
        font-weight: 600;
    }
    .apply-wizard-section .box {
        padding: 18px;
        overflow-y: auto;
        border-radius: 14px;
    }
    .apply-wizard-section .item {
        gap: 8px;
        width: 35%;
        min-width: 35%;
    }
    .apply-wizard-section .item .head {
        padding: 3px;
    }
    .apply-wizard-section .item .head span {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .apply-wizard-section .item .desc {
        font-size: 6px;
    }
    .apply-form-1-section .box .right,
    .apply-form-2-section .box .right,
    .apply-form-3-section .box .right {
        display: none;
    }
    .apply-wizard-section .barrier {
        display: none;
    }
    .apply-wizard-section {
        padding-bottom: 15px;
    }
    .apply-section-structure .left .--box-form-1,
    .apply-form-1-section .box2 .--wrapper {
        padding: 30px 24px 35px 24px;
    }
    .apply-section-structure .left .section-title-46,
    .apply-form-1-section .box2 .--wrapper .section-title-46 {
        font-size: 29px;
    }
    .apply-form-1-section .box2 .--wrapper .section-title-46 br {
        display: none;
    }
    .apply-form-1-section .box2 .--wrapper {
        align-items: inherit;
    }
    .btns-box .btn-2 {
        height: 58px;
        font-size: 20px;
    }
    .apply-box-form-title {
        padding: 10px 24px 12px 24px;
    }
    .apply-tr-item {
        width: calc(100% - 10px);
        padding: 14px;
        padding-inline-start: 45px;
        padding-inline-end: 20px;
    }
    .apply-tr_td .btn-2 {
        width: 100%;
        height: 19px;
        font-size: 7px;
        font-weight: 400;
    }
    .apply-tr-item .--edit {
        border: 0;
        background: #00bde9;
        width: 28px;
        height: 28px;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: -10px;
    }
    .lang-en .apply-tr-item .--edit {
        right: auto;
        left: -10px;
    }
    .apply-form-2-section .apply-tr_td-3,
    .apply-form-3-section .apply-tr_td-3 {
        text-align: left;
        padding-inline-start: 8px;
    }
    .apply-form-3-section .apply-tr_td-3 {
        text-align: center;
    }
    .apply-form-3-section .apply-tr_td-3 .btn-2 {
        width: 59px;
    }
    .btn-modal-add-new-apply-mo {
        background: var(--main-color);
        color: #fff;
        border: 0;
        padding: 10px 0;
        font-weight: 400;
    }
    .person-form-col-btn-add {
        order: 99;
    }
    .apply-add-new-row-modal {
        padding-inline: 30px;
    }
    .apply-add-new-row-modal .--body {
        padding-inline: 20px;
    }
    .mobile-form-apply-3 .--box-form-1 {
        padding: 30px 24px 28px 24px !important;
    }
    .uploader-box {
        border-radius: 5px;
    }
}

@media (max-width: 776px) {
    .projects-section .box {
        padding-inline-start: 0;
    }
    .section-title-35 {
        font-size: 30px;
    }
    .projects-section .show-all-btn {
        width: 127px;
        height: 34px;
        background: #ffffff;
        border-radius: 30px;
        color: var(--main-color);
        justify-content: center;
    }
    .show-all-btn.with-arrow {
        font-size: 14px;
        gap: 5px;
    }
    .show-all-btn.with-arrow::after {
        filter: invert(1);
    }
    .stories-section:before,
    .stories-section:after {
        content: none;
    }
    .story-item {
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 10px;
        transition: 0.4s;
    }
    .stories-section .swiper-slide {
        width: 70%;
    }
    .story-item__subtitle {
        font-size: 5px;
    }
    .story-item .right-side {
        padding: 27px 15px;
    }
    .story-item .btn-30 {
        min-width: 100px;
        height: 27px;
        padding-top: 6px;
    }
    .story-item .btn-30 .text {
        font-size: 10px;
    }
    .story-item .stories-btn {
        font-size: 8px;
        height: 20px;
    }
    .story-item__title {
        font-size: 22px;
    }
    .story-item__desc {
        font-size: 14px;
    }
    .stories-section .swiper-slide-active .story-item {
        box-shadow: 0px 3px 46px #00000040;
        /* transform: scale(1); */
    }
    .--quote-img {
        width: 273px;
        right: -30px;
    }
    .lang-en .--quote-img {
        right: auto;
        left: -30px;
    }
    .foot-to-top {
        position: absolute;
        top: -17px;
        right: 30px;
        box-shadow: 0px 3px 6px #00000029;
        width: 34px;
        height: 34px;
        transition: 0.2s;
    }
    [scroll-to-top-btn].active {
        top: -50px;
        opacity: 0;
        pointer-events: none;
    }
    .foot-col.foot-2 li {
        width: 100%;
    }
    .foot-col.foot-2 a,
    .subscribe__input {
        font-size: 14px;
    }
    .subscribe__btn {
        background: #9857ba;
        min-width: 42px;
    }
    .subscribe__input::placeholder {
        color: #e7dbee;
    }
    .foot-text-followed {
        margin-top: 30px;
    }
    .floating-donat-btn {
        bottom: 40px;
        width: 74px;
        height: 74px;
        border-radius: 50% !important;
        padding: 0;
        right: 10px;
    }
    .lang-en .floating-donat-btn {
        right: auto;
        left: 10px;
    }
    .fast-donation__text {
        font-size: 12px;
        width: 100%;
        justify-content: center;
        line-height: 1.1;
        padding-top: 14px;
        font-weight: bold;
    }
    .fast-donation__fig {
        width: 18px;
        height: 18px;
        top: 4px;
        right: 0;
        left: 0;
        margin-inline: auto;
        padding: 0;
        background-color: transparent;
        transition: 0s;
    }
    .fast-donation__fig {
        background-image: url(../images/heart-white.svg);
        background-size: 96% 96%;
        background-repeat: no-repeat;
    }
    .fast-donation__fig img {
        display: none;
    }
    .lang-en .fast-donation__fig {
        right: auto;
        left: 13px;
    }
    .floating-donat-btn.active {
        width: 100%;
        padding-inline-start: 30px;
        height: 280px;
        bottom: 0;
        border-radius: 0 !important;
        right: 0;
    }
    .floating-donat-btn.active.expand {
        height: 480px;
    }
    .fst-modal-options__left {
        flex-direction: row;
    }
    .lang-en .floating-donat-btn.active {
        left: 0;
        right: auto;
    }
    .fast-donation__title-mo {
        line-height: 22px;
    }
    .fast-donation__content .fast-donation__item {
        min-width: 122px;
    }
    .fast-donation__title-box {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-35px);
        transition-delay: 0.3s;
    }
    .floating-donat-btn.active .fast-donation__title-box {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    .floating-donat-btn.active .fast-donation__fig {
        pointer-events: none;
        visibility: hidden;
    }
    .project-item__label-box .fig-label {
        min-width: 74px;
        height: 25px;
        font-size: 12px;
    }
    .project-body .--title {
        font-size: 15px;
    }
    .login-modal .--body {
        flex-direction: column;
    }
    .login-modal .--body .right {
        max-height: 250px;
        position: relative;
        width: 100%;
    }
    .login-modal .--body {
        width: calc(100% - 30px);
        margin-bottom: 10px;
    }
    .login-modal .login-field label {
        font-size: 14px;
    }
    .modal .--body {
        width: 100%;
    }
    .kafalat-centerd-section .box {
        padding: 40px 30px;
    }
    .kafalat-centerd-section .radio-inner-control span {
        min-width: 60px;
        padding-inline: 20px;
    }
    .kafalat-centerd-section .left {
        padding: 15px 10px;
    }
    .kafalat-centerd-section .--add-to-cart {
        font-size: 14px;
        height: 28px;
    }
    .kafalat-centerd-section .--add-to-cart img {
        width: 18px;
    }

    .person-details-section .box .right {
        height: auto;
    }
    .person__main-image {
        height: 295px;
    }
    .person-details-section .person-slider-container {
        position: relative;
        bottom: inherit;
        margin-top: 10px;
        gap: 2px;
        padding-inline: 0;
    }
    .person-slider .swiper-slide .item,
    .person-slider .swiper-slide {
        height: 70px;
        width: 70px;
    }
    .person-slider .swiper-slide .item {
        padding: 5px;
        border-color: #d9dadb;
    }
    .person-slider .swiper-slide .item.active {
        border-color: var(--main-color);
    }
    .person-slider .swiper-slide .item img {
        width: 100%;
        height: 100%;
    }
    .person-details-section .arrow-slider {
        width: 25px;
        height: 25px;
    }
    .person-details-section .left {
        padding-inline: 10px;
    }
    .person-details-section .box .title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .person-details-options {
        margin-top: 30px;
        border-top: 1px solid #d9dadb;
        padding-top: 20px;
    }
    .project-details-options {
        padding-top: 20px;
        border-top: 1px solid #d9dadb;
    }
    .about-person-section .left {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
    .about-person-section .left:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: #b2aba6;
        mix-blend-mode: multiply;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    .user-tabs-modal .--body {
        width: calc(100% - 20px);
    }
    .tabs-modal__head {
        gap: 10px;
    }
    .user-tabs-modal .close-normal-modal {
        top: 7px;
        left: 7px;
    }
    .lang-en .user-tabs-modal .close-normal-modal {
        left: auto;
        right: 7px;
    }
    .user-tabs-modal .register-user-form,
    .user-tabs-modal .guest-user-form {
        padding-inline: 20px;
    }
    .projects-centerd-section .box:before {
        content: none;
    }
    .kafalat-centerd-section .box .right {
        align-self: flex-start;
    }
    .project-item__download-btn {
        top: 2px;
    }

    .basket-modal.has-items .basket-modal-body {
        width: calc(100% - 30px);
        top: 10px;
        padding: 20px;
        height: 100%;
        padding-bottom: 0;
        overflow-y: auto;
        max-height: calc(100vh - 20px);
        border-radius: 10px;
    }
    .table-responsive table thead {
        display: none;
    }
    .table-responsive table,
    .table-responsive tbody,
    .table-responsive table tbody > tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .table-responsive tbody {
        gap: 5px;
    }
    .table-responsive .basket-table td {
        padding: 0;
    }
    .table-responsive .basket-table tr {
        padding: 10px;
        position: relative;
    }
    .basket-table__fig {
        width: 63px;
    }
    .basket-name-td {
        max-width: inherit;
        width: calc(100% - 63px);
        padding-inline-start: 10px !important;
        padding-inline-end: 12px !important;
    }
    .mo-cell-title {
        margin-top: 10px;
        padding-bottom: 4px;
    }

    .basket-table__price-2,
    .basket-table__amount,
    .basket-table__price {
        width: 30%;
        margin-inline-end: 5px !important;
        text-align: center;
    }
    .basket-table__remove {
        position: absolute;
        top: 5px;
        left: 5px;
        z-index: 2;
    }
    .lang-en .basket-table__remove {
        left: auto;
        right: 5px;
    }
    .table-responsive .basket-table tbody tr:not(:last-of-type) {
        border-bottom: 1px dashed #ccc;
    }
    .basket-table__paid {
        width: 100%;
        display: flex;
        justify-content: end;
    }
    .my-basket__foot {
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 3;
        padding: 10px;
    }
    .basket-modal .my-basket__foot {
        position: absolute;
        bottom: 0;
        background: #fff;
        z-index: 3;
        padding: 10px;
        width: 100%;
        right: 0;
    }

    .values-section .box {
        min-width: inherit;
    }
    .mission-section .item {
        padding-block: 20px 40px;
    }
    .who-we-are-section {
        margin-top: 0;
        height: 180px;
    }
    .who-we-are-section .title {
        font-size: 34px;
    }
    .who-we-are-section .stick-line {
        width: 4px;
        height: 150px;
    }
    .who-we-are-section:before {
        content: none;
    }
    .who-details-section .title,
    .who-details-section .title,
    .values-section .title,
    .mission-section .title {
        font-size: 26px;
    }
    .who-details-section .full-half-img {
        border-radius: 10px !important;
    }
    .who-we-are-section .stick-line .bottom {
        height: 0;
    }
    .cart-modal-body {
        padding-bottom: 35px;
    }
    .cart-modal-body figure {
        display: none;
    }
    .cart-modal__title {
        margin-bottom: 10px;
    }
    .cart-modal-body .--content {
        margin-top: -10px;
    }
    .search-results-section .item {
        gap: 15px;
    }
    .search-results-section .item .--body {
        padding: 0;
    }
    .search-results-section .item .--flag {
        margin-bottom: 15px;
    }
    .donation-banner-section {
        margin-top: -10px;
    }

    .donation-cart-section .box1,
    .donation-cart-section .box2,
    .donation-cart-section .box3 {
        border-radius: 10px;
    }
    .donation-cart-section .box2,
    .donation-cart-section .box3 {
        margin-top: 20px;
    }
    .do-form-row-checkout {
        padding: 0;
    }
    .donation-cart-section .box4 {
        padding-bottom: 0;
    }
    .mobile-table-basic-data {
        background-color: transparent;
    }
    .mobile-table-basic-data .basket-name-td .font-11.gray-3 {
        display: none;
    }
    .mobile-table-basic-data figure,
    .mobile-table-basic-data .basket-table__fig {
        width: 60px;
        height: 60px;
    }
    .mobile-table-basic-data td {
        float: right;
    }
    .lang-en .mobile-table-basic-data td {
        float: left;
    }
    .mobile-table-basic-data tr {
        padding-inline: 0 !important;
        display: block !important;
    }
    .mobile-table-basic-data .mo-cell-title {
        display: none !important;
    }
    .mobile-table-basic-data .amount-box {
        width: 90px;
        height: 29px;
    }
    .mobile-table-basic-data .basket-table__price {
        display: none;
    }
    .mobile-table-basic-data .basket-table__price-2 {
        margin-top: 10px;
    }
    .mobile-table-basic-data .basket-table__amount {
        float: left;
        margin-top: 4px;
    }
    .lang-en .mobile-table-basic-data .basket-table__amount {
        float: right;
    }
    .donate-table-summ-box {
        background: transparent;
        flex-direction: column;
    }
    .donate-summ__check-lbl {
        padding-inline: 0;
        order: 2;
    }
    .donation-summary-section .right .right-top .item {
        font-size: 12px;
    }
    .donation-summary-section .right .right-top .item .w-30 {
        width: 42%;
    }
    .contact-us-page-wrapper .ppp {
        padding: 0;
        background: transparent;
    }
    .contact-us-section .right,
    .our-branches-section .ppp,
    .our-bank-section .ppp,
    .our-collect-section .ppp {
        background: #fff;
        padding: 20px;
        border-radius: 20px;
    }
    .our-branches-section .ppp img {
        height: 347px;
    }
    .collect-table thead {
        display: none;
    }
    .contact-us-section .left {
        padding-bottom: 0;
    }
    .collect-table tbody tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #d9dadb;
    }
    .collect-table tbody tr td {
        padding-block: 6px;
    }
    .collect-table tbody tr td:last-of-type {
        padding-bottom: 20px;
    }
    .collect-table tbody tr:not(:first-of-type) {
        padding-top: 18px;
    }
    .checkout-summary-section .box {
        padding-inline: 0;
    }
    .checkout-summary-section .tabs-btns {
        gap: 10px;
        justify-content: center;
    }

    .submit-checkout-from-btn {
        width: 100%;
    }
    .checkout-summary-section .bottom-box {
        padding-bottom: 0;
    }
    .checkout-summary-section .left {
        display: none;
    }
    .checkout-order-summary-mobile {
        display: block;
    }
    .kafalat-banner-only .box .img-bg {
        width: 120px;
        opacity: 0.5;
    }
    .lang-en .kafalat-banner-only .box .img-bg {
        right: auto;
        left: -40px;
    }
    .don-img-effect {
        width: 80%;
    }
    .basket-new-table {
        background: transparent;
    }
    .basket-new-table td {
        order: 99;
    }
    .basket-new-table .basket-table__fig {
        order: 0;
    }
    .basket-new-table .basket-table__amount,
    .basket-new-table .amount-mobile-only {
        order: 1;
    }
    .basket-new-table .amount-box__actions {
        flex-direction: column;
        margin-top: 4px;
    }
    .basket-new-table .amount-box__actions .--amount-btn {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        background-color: var(--main-color);
        border-radius: 6px;
        background-size: 18px !important;
    }
    .basket-new-table .amount-box__actions .--amount-btn.--inc-btn {
        background-image: url(../images/plus-white.svg);
    }
    .basket-new-table .amount-box__actions .--amount-btn.--dec-btn {
        background-image: url(../images/minus-white.svg);
    }
    .basket-new-table .amount-box {
        border: 0;
        width: 26px;
        height: auto;
    }
    .basket-new-table .basket-table__amount,
    .basket-new-table .amount-mobile-only {
        padding-inline-start: 20px !important;
        margin-inline-end: 0px !important;
        width: 47px;
    }
    .basket-new-table .amount-mobile-only {
        pointer-events: none;
        opacity: 0.4;
    }
    .basket-new-table tbody tr:not(:last-of-type) td {
        border-bottom: 0;
    }
    .basket-new-table .basket-name-td {
        max-width: inherit;
        width: calc(100% - 129px);
        padding-inline-start: 10px !important;
        padding-inline-end: 12px !important;
        height: 48px;
        order: 3;
    }
    .basket-new-table .basket-name-td .desc,
    .basket-new-table .tr-with-sahem .basket-table__price,
    .basket-new-table .tr-with-sahem .basket-table__paid {
        display: none;
    }
    .basket-new-table .basket-name-td .flag-with-number {
        display: flex;
        justify-content: start;
        color: #b2aba6;
    }
    .basket-new-table .basket-name-td .title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
    .basket-new-table .basket-table__price-2 {
        position: absolute;
        top: 64px;
        right: 0;
        text-align: right;
        display: flex;
        justify-content: start;
        width: 100%;
        margin: 0;
        padding-inline-start: 140px !important;
        font-size: 12px;
        pointer-events: none;
    }
    .basket-new-table figure,
    .basket-new-table .basket-table__fig {
        width: 82px;
        height: 82px;
    }
    .basket-new-table tr {
        padding-inline: 0 !important;
    }
    .basket-new-table .basket-table__paid {
        order: 4;
        width: 90px;
        padding-top: 6px !important;
    }
    .basket-new-table .basket-table__price {
        width: calc(100% - 95px);
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: end;
        color: var(--main-color);
    }
    .basket-new-table {
        font-size: 12px;
    }
    .basket-new-table .basket-table__price .mo-cell-title {
        margin-top: 0;
        font-weight: normal;
        color: #262d33;
    }
    .basket-new-table .tr-with-sahem .basket-table__amount-2 {
        position: absolute;
        bottom: 10px;
        left: 30px;
        margin: auto;
        width: calc(100% - 166px);
        height: 25px;
    }
    .basket-new-table .basket-table__amount-2-box {
        width: 100%;
        height: 100%;
    }
    .basket-table__amount-2 .before-edit-btn,
    .basket-table__amount-2 .after-edit-btn {
        height: 25px;
        width: 25px;
        min-width: 25px;
    }
    .basket-new-table .basket-table__amount-2-box .before-edit-amount {
        height: 25px;
    }
    .basket-modal .my-basket__foot {
        box-shadow: 0 0 20px 18px rgb(84 84 84 / 9%);
        padding-bottom: 30px;
    }
    .basket-modal .my-basket__foot-total {
        width: 100%;
        justify-content: space-between;
        font-weight: 600;
    }
    .basket-modal .my-basket-box {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    .basket-modal .my-basket-box .table-responsive {
        border-bottom: 0;
    }
    .basket-modal .close-normal-modal {
        position: absolute;
        top: 5px;
        left: 5px;
    }
    .lang-en .basket-modal .close-normal-modal {
        left: auto;
        right: 5px;
    }
    .basket-modal.has-items .empty-basket__link {
        position: fixed;
        bottom: 5px;
        left: 0;
        right: 0;
        margin: auto;
        max-width: fit-content;
        z-index: 11;
    }
    .basket-modal.has-items .basket-modal-body {
        max-height: calc(100vh - 34px);
    }
    .send-mail__trans {
        height: 100%;
    }
    .project-item .project-body {
        min-height: 187px;
    }
    .projects-row-section .project-item .project-body {
        min-height: 195px !important;
    }
    :not(.swiper-slide) > .project-item .project-body {
        min-height: inherit;
    }
    :not(.swiper-slide) > .project-item .project-item__infos {
        margin-bottom: 15px;
    }
    .new-centered-banner .box .right .--title {
        font-size: 60px;
    }
    .new-centered-banner .box .right .--desc {
        font-size: 18px;
    }
    .new-centered-banner .left,
    .projects-centerd-section .left {
        border: 0;
    }
    .new-centered-banner .left .amm_left-total,
    .projects-centerd-section .left .amm_left-total {
        font-size: 40px;
        line-height: 1;
        height: 42px !important;
        width: 110px;
    }
    .new-centered-banner .left .--total-currency,
    .projects-centerd-section .left .--total-currency {
        align-self: end;
        position: relative;
        top: -12px;
    }
    .new-centered-banner .left .--inc-btn,
    .new-centered-banner .left .--dec-btn,
    .projects-centerd-section .left .--inc-btn,
    .projects-centerd-section .left .--dec-btn {
        background-color: #f6f5ff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background-size: 22px !important;
        flex-shrink: 0;
    }
    .new-centered-banner .left .--inc-btn,
    .projects-centerd-section .left .--inc-btn {
        background-image: url(../images/plus-purple.svg);
    }
    .new-centered-banner .left .--dec-btn,
    .projects-centerd-section .left .--dec-btn {
        background-image: url(../images/minus-purple.svg);
    }
    .new-centered-banner .btn-cart-new,
    .projects-centerd-section .btn-cart-new {
        width: 100%;
        height: 40px;
        bottom: -25px;
    }
    .new-centered-banner .box .img-bg {
        display: none;
    }
    .new-centered-banner .box {
        padding: 40px 30px 60px 40px;
    }
    .iti-mobile .iti--container {
        top: 0;
        bottom: 30px;
        position: fixed;
        max-height: 400px;
        left: 0;
        right: 0;
    }
    .saved-cards-box .saved-cards {
        overflow-x: auto;
        display: flex;
        white-space: nowrap;
    }
    [opened-modal="mobile-menu"] .head-shop-cart-mo,
    [opened-modal="mobile-menu"] .head-search-mo {
        display: none !important;
    }
    .payment-methods-mo-options-slider {
        overflow-x: auto;
    }
    .family-validation-modal .--body {
        padding-inline: 20px;
        height: 100vh;
        border-radius: 0;
    }
    .family-validation-modal .close-icon-modal {
        margin-top: 10px;
        margin-inline-start: -10px;
    }
    .family-validation-modal .tt {
        font-size: 28px;
    }
    .family-validation-modal .dd {
        font-size: 20px;
    }
    .family-validation-modal .btns .btn {
        height: 70px;
        border-radius: 50px;
    }

    .font-36-p {
        font-size: 36px;
    }
    .add-project-1-section .mo-item .tt,
    .add-project-1-section .mo-item .dd {
        min-height: 60px;
    }
    .add-project-2-section .step-num {
        display: none;
    }
    .project-list-item .img {
        width: 34px;
    }
    .project-list-item .flag {
        width: 18px;
    }
    .project-list-item {
        padding: 15px 12px;
    }
    .project-list-item .btn {
        height: 24px;
        font-size: 9px;
    }
    .project-list-item .title {
        margin-bottom: 25px;
    }
    .project-list-item .info p {
        font-size: 8px;
        height: 13px;
    }
    .main-dashboard-header .right:before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 112px;
        background: var(--main-color);
    }
    .main-dashboard-header .img-fig {
        background: var(--soft);
        width: 78px;
        height: 78px;
        padding: 5px;
        border: 0;
    }
    .main-dashboard-header .img-fig img {
        height: 100%;
        border: 1px solid var(--main-color);
        border-radius: 50%;
    }
    .main-dashboard-header .target {
        display: none;
    }
    .create-new-project-btn {
        flex-direction: column;
    }
    .create-new-project-btn img {
        bottom: -10px !important;
        opacity: 1;
        position: relative;
    }
    .create-new-project-btn span {
        background-color: var(--main-color-soft) !important;
        color: #fff;
        height: 53px;
        font-size: 20px;
        border: 0;
        z-index: 1;
    }
    .notifications-header-mo figure {
        width: 54px;
        height: 54px;
        margin-top: -27px;
    }
    .notification-item .right-ss {
        width: 100%;
    }
    .notification-box {
        max-height: 350px;
    }
    .dashbrd-logs-head img,
    .dashbrd-status-reqs-head img {
        width: 19px;
    }
    .logs-box,
    .status-req-box {
        max-height: inherit;
        flex-direction: row;
        overflow-x: auto;
    }
    .logs-box > .log-item,
    .status-req-box .status-req-item {
        width: 47%;
        min-width: 47%;
        border-radius: 10px;
        padding: 13px 15px;
        border-bottom: 4px solid #00bf8d;
    }
    .log-item .lg-title,
    .status-req-item .lg-title {
        font-size: 10px;
        margin: 0;
    }
    .log-item .nm,
    .status-req-item .nm {
        color: var(--main-color);
    }
    .log-item .log-left,
    .status-req-item .log-left {
        justify-content: space-between;
    }
    .log-item .log-left .log-lbl,
    .status-req-item .log-left .log-lbl {
        min-width: 38px;
        height: 17px;
        font-size: 6px;
    }
    .log-item .log-left .left-dd,
    .status-req-item .log-left .left-dd {
        font-size: 6px;
    }
    .log-item .log-left-2,
    .status-req-item .log-left-2 {
        align-self: end;
    }
    .log-item .log-left-2 a,
    .status-req-item .log-left-2 a {
        font-size: 8px;
    }
    .status-req-item .item-btn {
        min-width: 60px;
        height: auto;
        padding-block: 5px;
    }
    .my-projects-section .-head img {
        width: 33px;
    }
    .mobile-add-proj-btn {
        font-size: 8px;
        height: 28px;
        min-width: 120px;
        width: 120px;
    }
    .my-projects-section .mobile-box button {
        height: 40px;
    }
    .my-projects-section .mobile-box button.active {
        background: var(--secondary-color);
    }
    .my-project-item-box {
        min-width: 45%;
    }
    .my-project-item-mo {
        border-bottom: 4px solid;
        height: 100%;
    }
    .my-kafalat-section .-head img {
        width: 40px;
    }
    .my-kafalat-section .-head button img {
        width: 14px;
    }
    .my-kafalah-item-mo,
    .my-stq-item-mo {
        width: 60%;
        min-width: 60%;
        color: #262d33;
    }
    .my-kafalah-item-mo figure,
    .my-stq-item-mo figure {
        margin-top: -24px;
    }
    .my-kafalah-item-mo .field-bx:not(:last-of-type):after {
        content: "";
        position: absolute;
        top: 0;
        left: -4px;
        bottom: 0;
        margin: auto;
        width: 0.5px;
        background: #707070;
        height: 20px;
        opacity: 0.6;
    }
    .lang-en .my-kafalah-item-mo .field-bx:not(:last-of-type):after {
        left: auto;
        right: -4px;
    }
    .my-kafalah-item-mo .field-bx:not(:last-of-type) {
        padding-inline-end: 4px;
    }
    .insteq-section .-head .--bx img {
        width: 20px;
    }
    .my-stq-item-mo figure {
        width: 48px;
        height: 48px;
    }
    .my-stq-item-mo .dis-lbl {
        border: 1px solid var(--main-color);
        height: 13px;
        padding-inline: 8px;
        font-size: 6px;
    }
    .my-stq-item-mo .field-bx:not(:last-of-type) {
        border-inline-end: 0.5px solid #70707094;
    }
    .floating-page-options {
        position: fixed;
        bottom: 20px;
        left: 20px;
    }
    .dashbaord-float-options-btn {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        border: 0;
        box-shadow: 0 3px 6px #00000029;
    }
    .options-mobile-modal {
        align-items: end;
    }
    .options-mobile-modal .modal-body {
        background: #b2aba6;
        border-radius: 15px 15px 0 0;
        position: relative;
        transition: 0.4s;
        top: 100%;
    }
    .options-mobile-modal.active .modal-body {
        top: 0;
    }
    .to-reqst-modal-btn {
        height: 26px;
        padding-inline-start: 8px;
        padding-inline-end: 20px;
        min-width: 197px;
        color: #b2aba6;
    }
    .options-mobile-modal .--icon {
        width: 42px;
        height: 42px;
        border: 3px solid #fff;
    }
    .options-mobile-modal .--icon.red-icon {
        background: #e82e56;
    }
    .orphan-header-section .right img {
        width: 13px;
        height: 13px;
    }
    .orphan-header-section .left .row-1 .tt,
    .orphan-header-section .left .row-1 .dd {
        font-size: 8px;
    }
    .orphan-header-section .left .row-1 .dd .font-9 {
        font-size: 6px;
    }
    .orphan-header-section .left .row-2 figure {
        padding: 3px;
    }
    .orphan-header-section .left .row-2 img {
        width: 25px;
    }
    .orphan-header-section .left .row-2 .ttt {
        font-size: 13px;
    }
    .orphan-details-logs .orph-library-slider img {
        height: 400px;
        max-height: 400px;
    }
    .orphan-details-logs .tabs-orph-reports,
    .logs-box-orph-page {
        height: auto;
        max-height: auto;
    }
    .my-profile-header .breadcrumb-container {
        display: none;
    }
    .my-profile-form-section .img-fig .img {
        width: 100px;
        height: 100px;
    }
    .my-profile-form-section .-head {
        margin-top: -55px;
        margin-bottom: 30px;
    }
    .my-profile-form-section .field-group-btn {
        order: -1;
    }
    .wallets-bx .wallet-item,
    .wallets-bx .add-visa-item {
        min-width: 70%;
    }
    .wallets-bx .wallet-item .head {
        padding-bottom: 40px;
    }
    .mo-orp-details-plant {
        width: 60px !important;
    }
    .orp-details-plant-info-mo .tt,
    .orp-details-plant-info-mo .dd {
        font-size: 12px !important;
    }
    .orp-details-plant-info-mo .font-9 {
        font-size: 8px !important;
    }
    .add-project-item-box-with-img {
        min-height: auto;
    }

    .deal-table-body .deal-table-tr:first-of-type {
        border-top: 1px solid #d9dadb;
    }
    .deal-details-modal .deal-table-body {
        max-height: inherit;
        overflow-y: inherit;
    }
    .zakah-latest-calsses .left-row-custom .custm-txt {
        margin-top: 35px;
    }
    .creating-instq-modal .--body {
        width: 250px;
    }
    .sucess-story-section .tt {
        font-size: 50px;
    }
    .succ-2-single-section .cntnt-bx {
        padding: 40px 20px;
    }
    .remove-wallet-modal .wallet-items-stq {
        min-width: 80%;
    }
    .cancel-request-modal .close-card-modal,
    .remove-wallet-modal .close-card-modal,
    .default-close-modal-btn {
        margin-inline-start: 0;
    }
    .show-custom-footer-all-btn {
        margin-top: 10px;
    }
    .show-custom-footer-all-btn a {
        border-radius: 30px;
        padding: 5px 20px 8px 20px;
        font-size: 12px;
    }
    .show-custom-footer-all-btn a img {
        width: 20px;
    }
    .filter-box__budget {
        overflow-x: hidden;
    }
    .overflow-hidden-x {
        overflow-x: hidden;
    }
    .btn-dash-mobile-img-inside img {
        width: 10px;
    }
    .story-details-section {
        height: 100vh;
    }
    .kaf-feat-section .man-img {
        position: relative;
        width: 70%;
        margin-top: -30px;
    }
    .kaf-banner-section .tt {
        font-size: 30px;
    }
    .kaf-banner-section .dd:after {
        width: 70px;
    }
    .about-kaf-start-section .pppp {
        width: 13px;
        height: 13px;
    }
    .exec-lajnalh-section .icon {
        width: 75px;
    }
}
