@font-face {
    font-family: 'AdelleSansARA-Light';
    src: url('assets/fonts/AdelleSansARA-Light.eot');
    src: url('assets/fonts/AdelleSansARA-Light.eot?#iefix') format('embedded-opentype'), url('assets/fonts/AdelleSansARA-Light.woff2') format('woff2'), url('assets/fonts/AdelleSansARA-Light.woff') format('woff'), url('assets/fonts/AdelleSansARA-Light.ttf') format('truetype'), url('assets/fonts/AdelleSansARA-Light.svg#AdelleSansARA-Light') format('svg');
}

@font-face {
    font-family: 'AdelleSansARA-Regular';
    src: url('assets/fonts/AdelleSansARA-Regular.eot');
    src: url('assets/fonts/AdelleSansARA-Regular.eot?#iefix') format('embedded-opentype'), url('assets/fonts/AdelleSansARA-Regular.woff2') format('woff2'), url('assets/fonts/AdelleSansARA-Regular.woff') format('woff'), url('assets/fonts/AdelleSansARA-Regular.ttf') format('truetype'), url('assets/fonts/AdelleSansARA-Regular.svg#AdelleSansARA-Regular') format('svg');
}

@font-face {
    font-family: 'AdelleSansARA-Semibold';
    src: url('assets/fonts/AdelleSansARA-Semibold.eot');
    src: url('assets/fonts/AdelleSansARA-Semibold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/AdelleSansARA-Semibold.woff2') format('woff2'), url('assets/fonts/AdelleSansARA-Semibold.woff') format('woff'), url('assets/fonts/AdelleSansARA-Semibold.ttf') format('truetype'), url('assets/fonts/AdelleSansARA-Semibold.svg#AdelleSansARA-Semibold') format('svg');
}

@font-face {
    font-family: 'AdelleSansARA-Bold';
    src: url('assets/fonts/AdelleSansARA-Bold.eot');
    src: url('assets/fonts/AdelleSansARA-Bold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/AdelleSansARA-Bold.woff2') format('woff2'), url('assets/fonts/AdelleSansARA-Bold.woff') format('woff'), url('assets/fonts/AdelleSansARA-Bold.ttf') format('truetype'), url('assets/fonts/AdelleSansARA-Bold.svg#AdelleSansARA-Bold') format('svg');
}

html,
body {
    height: 100%;
}

body {
    font-family: "AdelleSansARA-Regular";
    display: flex;
    flex-direction: column;
}
/************************* MATERIAL ICONS **********************************/
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(assets/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'), local('MaterialIcons-Regular'), url(assets/fonts/MaterialIcons-Regular.woff2) format('woff2'), url(assets/fonts/MaterialIcons-Regular.woff) format('woff'), url(assets/fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}
/************************* END OF MATERIAL ICONS **********************************/
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.slide-in {
    animation: slideIn 1s forwards;
}

.slide-out {
    animation: slideOut 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
}

.fade-item {
    opacity: 0;
}

    .fade-item.in {
        animation: fadeIn 1s forwards;
    }

::placeholder {
    line-height: 2.5;
}

a:hover, a:active, a:focus {
    text-decoration: none;
    outline: none;
}

.btn:focus {
    box-shadow: none;
}


.btn-primary-green {
    background: #0D8F75;
    color: white;
}

    .btn-primary-green:hover, .btn-primary-green:focus {
        color: white;
        background: rgb(13 143 117 / 80%);
        outline: none;
    }

.btn-primary-blue {
    background: #214570;
    color: white;
}

    .btn-primary-blue:hover, .btn-primary-blue:focus {
        color: white;
        background: rgb(33 69 112 / 80%);
        outline: none;
    }

.btn-light-grey {
    background: #F8F9FA;
    color: #545353;
}

    .btn-light-grey:hover, .btn-light-grey:focus {
        color: #545353;
        background: #ececed;
        outline: none;
    }

.btn-dark-grey {
    background: #d9d9d9;
    color: #214570;
}

    .btn-dark-grey:hover, .btn-light-grey:focus {
        color: #214570;
        background: #cac9c9;
        outline: none;
    }

.btn-white {
    color: black;
    background-color: #ffffff;
    border-color: #ffffff;
}

    .btn-white:hover, .btn-white:focus {
        color: #214570;
        background: white;
        outline: none;
    }

.text-underline {
    text-decoration: underline !important;
}

.font-light {
    font-family: "AdelleSansARA-Light";
}

.font-regular {
    font-family: "AdelleSansARA-Regular";
}

.font-semibold {
    font-family: "AdelleSansARA-Semibold";
}

.font-bold {
    font-family: "AdelleSansARA-Bold";
}

header {
    background-color: #fff;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.1s linear;
    box-shadow: 0 1px 5px rgb(177 177 177 / 16%);
}

    header.opaque {
        background-color: white;
    }

    header .app-logo {
        width: 120px;
    }

    header .navigation {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

        header .navigation ul.controls {
            list-style-type: none;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: flex-end;
            padding: 4px 0;
        }

            header .navigation ul.controls li:last-child {
                display: inline-block;
                border-right: 1px solid rgba(0, 0, 0, 0.12);
            }

            header .navigation ul.controls li i {
                font-size: 13px;
                color: #003b4c;
            }

            header .navigation ul.controls li .material-icons {
                font-size: 18px;
            }

        header .navigation ul.header-actions > li .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
            display: none;
            float: left;
            min-width: 10rem;
            padding: .5rem 0;
            margin: .125rem 0 0;
            font-size: 1rem;
            color: #212529;
            text-align: left;
            list-style: none;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: .25rem;
            border: 0;
            -webkit-border-radius: 0 4px 4px 4px;
            -moz-border-radius: 0 4px 4px 4px;
            border-radius: 0 4px 4px 4px;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
            width: 11rem;
            font-size: .75rem;
            left: auto;
            right: 0;
        }

            header .navigation ul.header-actions > li .dropdown-menu:before {
                position: absolute;
                top: -9px;
                right: 29px;
                content: '';
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-bottom: 9px solid #ffffff;
            }

            header .navigation ul.header-actions > li .dropdown-menu:after {
                position: absolute;
                top: -9px;
                content: '';
                left: 0;
                right: 0;
                height: 20px;
            }

            header .navigation ul.header-actions > li .dropdown-menu.dropdown-menu-right {
                left: 0;
                right: auto;
            }

                header .navigation ul.header-actions > li .dropdown-menu.dropdown-menu-right:before {
                    right: auto;
                    left: 12px;
                }

            header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions {
                margin: 0;
                padding: .8rem 0;
            }

                header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions .header-user-profile {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    margin-bottom: .5rem;
                }

                header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions a {
                    padding: .5rem 1rem;
                    transition: all 0.5s ease;
                    display: flex;
                    align-items: center;
                    font-size: .8rem;
                    font-weight: 400;
                }

                    header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions a:hover {
                        /*     background: #0D8F75;
                        color: white;*/
                    }

        header .navigation ul.header-actions > li:hover .dropdown-menu {
            margin-top: 0;
            display: block;
        }

        header .navigation ul.header-actions > li:focus .dropdown-menu {
            margin-top: 0;
            display: block;
        }

        header .navigation ul.nav-bar {
            width: 100%;
            height: 60px;
            align-items: center;
            justify-content: space-between;
        }

            header .navigation ul.nav-bar .nav-item:not(.action-btns) {
                color: #003b4c;
                padding: 5px 30px;
                border-radius: 20px;
                transition: all 0.3s linear;
            }

                header .navigation ul.nav-bar .nav-item:not(.action-btns) a,
                header .navigation ul.nav-bar .nav-item:not(.action-btns) .btn {
                    color: inherit;
                    font-size: 13px;
                    outline: none;
                }

                header .navigation ul.nav-bar .nav-item:not(.action-btns):hover {
                    background-color: #003b4c;
                    color: white;
                }

                header .navigation ul.nav-bar .nav-item:not(.action-btns) .header-dropdown-menu {
                    position: fixed;
                    top: -500px;
                    right: 0;
                    left: 0;
                    width: 100%;
                    z-index: 10;
                    transition: top 0.3s ease-in-out;
                }

                    header .navigation ul.nav-bar .nav-item:not(.action-btns) .header-dropdown-menu .content {
                        background: white;
                        box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
                    }

                    header .navigation ul.nav-bar .nav-item:not(.action-btns) .header-dropdown-menu .menu-toggler {
                        width: 100%;
                        height: calc(100% - 51px);
                    }

                    header .navigation ul.nav-bar .nav-item:not(.action-btns) .header-dropdown-menu a {
                        color: white;
                    }

                header .navigation ul.nav-bar .nav-item:not(.action-btns):hover .header-dropdown-menu {
                    top: 91px;
                    bottom: 0;
                }

            header .navigation ul.nav-bar .action {
                padding: 10px 50px;
            }

            header .navigation ul.nav-bar .seperator {
                width: 1px;
                height: 60%;
                background: rgba(0, 0, 0, 0.12);
            }

.footer-large .content-1 {
    height: 8px;
    width: 100%;
    background-color: #214570;
}

.footer-large .content-3 {
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
    background-color: #003b4c;
    color: white;
}

    .footer-large .content-3 .nav {
        color: white;
    }

        .footer-large .content-3 .nav a.nav-link {
            color: white;
        }

            .footer-large .content-3 .nav a.nav-link:hover {
                color: #d9d9d9;
            }

            .footer-large .content-3 .nav a.nav-link i {
                font-size: 18px;
            }

:root {
    --tdm-drawer-width: 250px;
    --tdm-drawer-speed: .2s;
    --tdm-drawer-background: #eee;
    --tdm-backdrop-background: rgba(0, 0, 0, .5);
}

drawer-menu,
[data-drawer-backdrop] {
    top: 0;
    right: 0;
    position: fixed;
    display: block;
    display: none;
    height: 100%;
}

[data-drawer] drawer-menu,
[data-drawer] [data-drawer-backdrop] {
    display: block;
}

drawer-menu {
    z-index: 99999;
    margin-right: calc(-1*var(--tdm-drawer-width));
    width: var(--tdm-drawer-width);
    transition: margin-right var(--tdm-drawer-speed);
    background: var(--tdm-drawer-background);
}

[data-drawer-backdrop] {
    z-index: 99998;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    background: var(--tdm-backdrop-background);
    transition-property: opacity, visibility;
    transition-duration: var(--tdm-drawer-speed), 0s;
    transition-delay: 0s, var(--tdm-drawer-speed);
}

[data-drawer="true"] {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

    [data-drawer="true"] [data-drawer-backdrop] {
        visibility: visible;
        opacity: 1;
        transition-property: visibility, opacity;
        transition-duration: 0s, var(--tdm-drawer-speed);
        transition-delay: 0s, 0s;
    }

    [data-drawer="true"] drawer-menu {
        margin-right: 0;
        transition: margin-right var(--tdm-drawer-speed);
    }

[data-drawer-backdrop]:before {
    content: '';
    height: 2rem;
    width: 2rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 2rem;
    display: block;
    margin-top: 1rem;
    margin-right: calc(var(--tdm-drawer-width) + 1rem);
    opacity: .5;
}

.not-found-page {
    position: relative;
}

    .not-found-page:before {
        height: 105vmax;
        width: 105vmax;
        z-index: -4;
    }

    .not-found-page html:before, .not-found-page body:before {
        background: linear-gradient(#233581, #203075);
    }

    .not-found-page html:before, .not-found-page html:after, .not-found-page body:before, .not-found-page body:after {
        content: '';
        background: linear-gradient(#203075, #233581);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .not-found-page .main {
        position: relative;
        z-index: 5;
    }

    .not-found-page p {
        font-size: 18px;
        margin-top: 0;
    }

    .not-found-page h1 {
        font-size: 95px;
        margin: 0;
    }

    .not-found-page button {
        background: linear-gradient(#0D8F75, #003b4c);
        padding: 0 12px;
        border: none;
        border-radius: 20px;
        box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
        outline: none;
        color: #FFF;
        font: 400 16px/2.5 Nunito, 'Varela Round', Sans-serif;
        text-transform: uppercase;
        cursor: pointer;
    }

    .not-found-page .bubble {
        background: linear-gradient(#0D8F75, #003b4c);
        border-radius: 50%;
        box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
        position: absolute;
    }

        .not-found-page .bubble:before, .not-found-page .bubble:after {
            content: '';
            background: linear-gradient(#0D8F75, #003b4c);
            border-radius: 50%;
            box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
            position: absolute;
        }

        .not-found-page .bubble:nth-child(1) {
            top: 15vh;
            left: 15vw;
            height: 22vmin;
            width: 22vmin;
        }

            .not-found-page .bubble:nth-child(1):before {
                width: 13vmin;
                height: 13vmin;
                bottom: -25vh;
                right: -10vmin;
            }

        .not-found-page .bubble:nth-child(2) {
            top: 20vh;
            left: 38vw;
            height: 10vmin;
            width: 10vmin;
        }

            .not-found-page .bubble:nth-child(2):before {
                width: 5vmin;
                height: 5vmin;
                bottom: -10vh;
                left: -8vmin;
            }

        .not-found-page .bubble:nth-child(3) {
            top: 12vh;
            right: 30vw;
            height: 13vmin;
            width: 13vmin;
        }

            .not-found-page .bubble:nth-child(3):before {
                width: 3vmin;
                height: 3vmin;
                bottom: -15vh;
                left: -18vmin;
                z-index: 6;
            }

        .not-found-page .bubble:nth-child(4) {
            top: 25vh;
            right: 18vw;
            height: 18vmin;
            width: 18vmin;
        }

            .not-found-page .bubble:nth-child(4):before {
                width: 7vmin;
                height: 7vmin;
                bottom: -10vmin;
                left: -15vmin;
            }

        .not-found-page .bubble:nth-child(5) {
            top: 60vh;
            right: 18vw;
            height: 28vmin;
            width: 28vmin;
        }

            .not-found-page .bubble:nth-child(5):before {
                width: 10vmin;
                height: 10vmin;
                bottom: 5vmin;
                left: -25vmin;
            }

.services {
    color: #003b4c;
}

.servicesmain {
    min-height: calc(100vh - 65px);
}

.services .filters {
    background-color: #f2f2f2;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .services .filters .btn {
        padding: 8px 18px;
    }
}

.services .kind-of-suppert {
    font-size: 14px;
}

.services .card {
    font-weight: 100;
    border-radius: 1rem;
    border: none;
}

    .services .card .price-details {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 20px;
        padding: 0 10px;
        font-size: 13px;
        border: 1px solid #c9c9c9;
        color: #c9c9c9;
    }

        .services .card .price-details input {
            width: 70%;
            border: none;
            outline: none;
            height: 20px;
            color: #003b4c;
        }

    .services .card .btn {
        font-weight: inherit;
    }

    .services .card .data-item {
        font-size: 12px;
        font-weight: normal;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.services .separator {
    height: 1px;
    width: 100%;
    background-color: #c9c9c9;
}

.services h6 {
    font-size: 14px;
}

.donation-projects {
    color: #003b4c;
}

    .donation-projects .filters {
        background-color: #f2f2f2;
        border-radius: 30px;
    }

@media (max-width: 767px) {
    .donation-projects .filters .btn {
        padding: 8px 18px;
    }
}

.donation-projects .kind-of-suppert {
    font-size: 14px;
}

.donation-projects .share-btn {
    position: absolute;
    top: 56px;
    left: 5px;
}

.donation-projects .card {
    font-weight: 100;
    border-radius: 1rem;
    border: none;
}

    .donation-projects .card .price-details {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 20px;
        padding: 0 10px;
        font-size: 13px;
        border: 1px solid #c9c9c9;
        color: #c9c9c9;
    }

        .donation-projects .card .price-details input {
            width: 70%;
            border: none;
            outline: none;
            height: 20px;
            color: #003b4c;
        }

    .donation-projects .card .btn {
        font-weight: inherit;
    }

    .donation-projects .card .data-item {
        font-size: 12px;
        font-weight: normal;
        text-align: center;
        flex: 0.5;
        padding: 0 10px;
    }

.donation-projects .separator {
    height: 1px;
    width: 100%;
    background-color: #c9c9c9;
}

.donation-projects .separator-vertical {
    align-self: normal;
    width: 2px;
    background-color: #003b4c;
}

.donations .line-with-words .title {
    width: 250px;
    font-size: 20px;
}

.donations .items .card {
    height: 100px;
}

    .donations .items .card .title {
        color: white;
        background: #0d8f75;
        text-align: center;
        font-weight: 100;
        font-size: 12px;
        position: absolute;
        height: 26px;
        padding: 0 10px;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .donations .items .card i {
        color: #cecece;
    }

.donations .card {
    color: #003b4c;
    font-size: 13px;
    border: none;
}

    .donations .card .price-details {
        display: flex;
        align-items: center;
        border-radius: 7px;
        padding: 2px 10px;
        font-size: 13px;
        border: 1px solid #c9c9c9;
        color: #0D8F75;
    }

        .donations .card .price-details input {
            padding-top: 0;
            width: 150px;
            border: none;
            outline: none;
            height: 25px;
        }

    .donations .card .bg-gradient-green {
        background: #068571;
        background: linear-gradient(90deg, #068571 0%, #0D8F75 100%);
    }

    .donations .card .border-rounded-2 {
        border-radius: 5px;
    }

.donations .gift .title {
    font-size: 14px;
}

.donations .gift .amount {
    font-size: 18px;
}

.donations .gift i {
    color: #cecece;
    font-size: 40px;
}

.donations .gift .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donations .gift input {
    border: 0;
    line-height: 30px;
    outline: 0;
    color: #0D8F75;
    width: 100%;
}

    .donations .gift input:focus {
        border-color: #0D8F75 !important;
    }

.donations .separator {
    height: 1px;
    width: 100%;
    background-color: #c9c9c9;
    opacity: 0.5;
}

.all-projects {
    min-height: calc(100vh - 65px);
    color: #003b4c;
    overflow-x: hidden;
}

    .all-projects .filters {
        background-color: #F8F9FA;
        border-radius: 30px;
    }

        .all-projects .filters a {
            padding: 8px 30px;
            font-family: "AdelleSansARA-Semibold";
            font-size: 18px;
            margin: 0 15px;
        }

@media (max-width: 767px) {
    .all-projects .filters .btn {
        padding: 8px 12px;
        margin: 0;
        margin-left: 5px;
        font-size: 16px;
    }
}

.all-projects .kind-of-suppert {
    font-size: 14px;
}

.all-projects .share-btn {
    position: absolute;
    top: 56px;
    left: 5px;
}

.all-projects .card .donut-chart,
.forijat-details .card .donut-chart {
    height: 60px;
    width: 60px;
    position: relative;
}

    .all-projects .card .donut-chart svg,
    .forijat-details .card .donut-chart svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
        background: white;
        border-radius: 50%;
    }

    .all-projects .card .donut-chart circle,
    .forijat-details .card .donut-chart circle {
        fill: white;
        stroke: #0D8F75;
        stroke-width: 32;
        stroke-dasharray: 70 100;
        transition: stroke-dasharray 0.5s ease;
    }

    .all-projects .card .donut-chart .donut-center,
    .forijat-details .card .donut-chart .donut-center {
        color: #214570;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        height: 80%;
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 25% 0;
    }

.all-projects .card .price-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    padding: 0 10px;
    font-size: 13px;
    border: 1px solid #c9c9c9;
    color: #c9c9c9;
}

    .all-projects .card .price-details input {
        width: 70%;
        border: none;
        outline: none;
        height: 30px;
        color: #003b4c;
        font-size: 14px;
    }

.all-projects .card .btn {
    font-weight: inherit;
}

.all-projects .card .data-item {
    font-size: 13px;
    font-weight: 600;
}

.all-projects .separator {
    height: 1px;
    width: 100%;
    background-color: #c9c9c9;
}

.select-box {
    position: relative;
    display: block;
    width: 250px;
    z-index: 1;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 100;
    border-radius: 4px;
    border: solid 1px #c9c9c9;
}

.select-box__current {
    position: relative;
    cursor: pointer;
    outline: none;
}

    .select-box__current:focus + .select-box__list {
        opacity: 1;
        animation-name: none;
    }

        .select-box__current:focus + .select-box__list .select-box__option {
            cursor: pointer;
        }

    .select-box__current:focus .select-box__icon {
        transform: translateY(-50%) rotate(180deg);
        opacity: 0.8;
    }

.select-box__icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 10px;
    opacity: 0.3;
    transition: 0.2s ease;
}

.select-box__value {
    display: flex;
}

.select-box__input {
    display: none;
}

    .select-box__input:checked + .select-box__input-text {
        display: block;
    }

.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 5px 10px;
    background-color: #fff;
}

.select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    animation-name: HideList;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.select-box__option {
    display: block;
    padding: 8px;
    background-color: #fff;
    color: #c9c9c9;
}

    .select-box__option:hover, .select-box__option:focus {
        color: #546c84;
        background-color: #fbfbfb;
    }

@keyframes HideList {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(0);
    }
}

.payment {
    color: #003b4c;
}

    .payment .separator {
        height: 1px;
        width: 100%;
        background-color: #c9c9c9;
    }

    .payment h6.title,
    .payment .user-details {
        font-size: 14px;
    }

    .payment .amount {
        font-size: 20px;
    }

    .payment .card-details {
        font-size: 13px;
    }

        .payment .card-details .card-images .img-container {
            border: 2px solid transparent;
            border-radius: 5px;
        }

        .payment .card-details .card-images .active {
            border: 2px solid #0D8F75;
        }

        .payment .card-details .card-info input {
            border: 0;
            line-height: 30px;
            outline: 0;
            color: #0D8F75;
            font-weight: 100;
            width: 100%;
        }

            .payment .card-details .card-info input:focus {
                border-color: #0D8F75 !important;
            }

.wrapper {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    position: relative;
}

/*select {
    -webkit-appearance: none;
}*/

label {
    margin-bottom: 0;
}

.padding-header {
    padding-top: 130px;
    min-height: calc(100vh - 70px);
}

@media (max-width: 768px) {
    .padding-header {
        padding-top: 50px;
        min-height: calc(100vh - 91px);
    }
}

.text-primary-green {
    color: #0D8F75 !important;
}

.text-primary-blue {
    color: #214570 !important;
}

.text-primary-turquoise {
    color: #0CF5C9 !important;
}

.text-primary-sky {
    color: #1BBDD4 !important;
}

.bg-primary-green {
    background-color: #0D8F75;
}

.bg-primary-blue {
    background-color: #214570;
}

.bg-light-grey {
    background-color: #F2F2F2;
}

.text-pink {
    color: #e699bf;
}

.text-blue {
    color: #629bd9;
}

.text-yellow {
    color: yellow;
}

.card .tilte {
    max-width: 100%;
}

.line-with-words {
    display: flex;
    align-items: center;
}

    .line-with-words .line {
        background: #c9c9c9;
        height: 1px;
        width: 100%;
    }

    .line-with-words .title {
        min-width: max-content;
        padding: 0 10px;
    }

.btn-round-icon {
    padding: 8px 0;
    width: 38px;
    height: 37px;
    font-size: 12px;
    border-radius: 50%;
}

    .btn-round-icon .material-icons {
        font-size: 22px;
    }

.btn:disabled {
    background: #c9c9c9;
    cursor: not-allowed;
}

.bg-image {
    position: absolute;
    width: 100%;
    background-image: url("assets/images/homepage-section-1-bg.png");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}

.gifts {
    color: #003b4c;
}

    .gifts .bg-grey {
        background-color: #f2f2f2;
    }

    .gifts .title {
        font-size: 16px;
    }

    .gifts h6.title {
        font-size: 14px;
    }

    .gifts .item .icon {
        width: 110px;
        transition: all 0.3s ease;
    }

    .gifts .item:hover .icon {
        transform: scale(1.2);
    }

    .gifts .card .number {
        width: 60px;
        height: 60px;
        background: #003b4c;
        box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
        color: white;
        border-radius: 50%;
        padding: 12px 0;
        text-align: center;
        font-size: 24px;
    }

    .gifts .card img {
        width: 280px;
        max-width: 100%;
    }

    .gifts .card .description {
        max-width: 230px;
        font-size: 12px;
    }

/* Create a custom checkbox */
.round-checkbox {
    position: relative;
}

    .round-checkbox .round-check {
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        cursor: pointer;
        height: 24px;
        left: 0;
        position: absolute;
        top: -4px;
        width: 24px;
    }

        .round-checkbox .round-check:after {
            border: 2px solid #0D8F75;
            border-top: none;
            border-right: none;
            content: "";
            height: 6px;
            left: 5px;
            opacity: 0;
            position: absolute;
            top: 7px;
            transform: rotate(-45deg);
            width: 12px;
        }

    .round-checkbox input[type="checkbox"] {
        visibility: hidden;
    }

        .round-checkbox input[type="checkbox"]:checked + .round-check {
            background-color: white;
            border-color: white;
        }

            .round-checkbox input[type="checkbox"]:checked + .round-check:after {
                opacity: 1;
            }

    .round-checkbox.style-filled .round-check:after {
        border: 2px solid white;
        border-top: none;
        border-right: none;
        content: "";
        height: 6px;
        left: 3px;
        opacity: 0;
        position: absolute;
        top: 5px;
        transform: rotate(-45deg);
        width: 12px;
    }

    .round-checkbox.style-filled .round-check {
        border: 2px solid #0D8F75;
        height: 20px;
        top: -1px;
        left: unset;
        right: 0;
        width: 20px;
    }

    .round-checkbox.style-filled input[type="checkbox"]:checked + .round-check {
        background-color: #0D8F75;
        border-color: #0D8F75;
    }


#cart {
    position: relative;
    text-align: center;
}

    #cart .badge {
        font-family: 'AdelleSansARA-Semibold';
        font-size: 12px;
        height: 18px;
        min-width: 18px;
        padding: 2px;
        position: absolute;
        top: -10px;
        right: -10px;
        background: #FFAB00;
        color: white;
        border: 2px solid #fff;
        border-radius: 50%;
    }

.opaque #cart .badge {
    top: -2px;
}

.center-items-vertically {
    display: flex;
    align-items: center;
}

.center-img-fluid {
    position: absolute;
    height: auto;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

    .center-img-fluid.default {
        width: 40%;
    }

.alert {
    border-radius: 16px;
    border: none;
}

.alert-danger {
    color: #E04141;
    background-color: rgb(224 102 65 / 10%);
}

.rangeslider1 {
    position: relative;
    height: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: -12px;
}

    .rangeslider1:before {
        box-sizing: border-box;
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 100px;
        content: "";
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .rangeslider1 .rangeslider-fill-lower {
        background: linear-gradient( 90deg, #0D8F75 0%, #3ba9c9 100%);
        min-width: 38px;
        border-radius: 100px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 4px;
        width: 100% !important;
    }

    .rangeslider1 .rangeslider-thumb {
        box-sizing: border-box;
        background: #0D8F75;
        color: white;
        line-height: 20px;
        height: 18px;
        min-width: 12%;
        text-align: left;
        position: absolute;
        padding-left: 10px;
        touch-action: pan-x;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .rangeslider1.varient-2 .rangeslider-thumb {
        background: white;
        color: #003b4c;
    }

.rangeslider2 {
    position: relative;
    height: 22px;
}

    .rangeslider2:before {
        background: linear-gradient(90deg, #ffe63d 50%, #f25e09 50%);
        height: 7px;
        left: 0;
    }

    .rangeslider2 .rangeslider-fill-lower {
        background: transparent;
    }

    .rangeslider2 .rangeslider-thumb {
        background: white;
        width: 5px;
        height: 11px;
        border-radius: 1px;
        box-shadow: 0 0 4px 0 #000000;
    }

.range-output .output {
    font-size: 14px;
    display: block;
}

.rangeslider3 {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .rangeslider3 .rangeslider-fill-lower {
        background: #F2F2F2;
        border-radius: 7px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 32px;
        width: 100% !important;
    }

    .rangeslider3 .rangeslider-thumb {
        box-sizing: border-box;
        background: #0D8F75;
        color: white;
        line-height: 20px;
        height: 31.5px;
        min-width: 35px;
        text-align: left;
        position: absolute;
        padding: 7px 0 7px 3px;
        touch-action: pan-x;
        border-radius: 7px;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .rangeslider3 .range-output .output {
        font-family: 'AdelleSansARA-Semibold';
        font-size: 16px;
        display: block;
    }

.project-item-details {
    position: relative;
}
    .project-item-details .project-img img {
        border-radius: 12px 12px 0 0;
    }
    .project-item-details .details-content {
        transition: all 0.3s ease;
        border-radius: 4px;
        background-color: #003b4c;
        color: white;
        font-size: 12px;
    }

        .project-item-details .details-content h6 {
            font-size: 12px;
        }

        .project-item-details .details-content .section-1 {
            display: flex;
        }

            .project-item-details .details-content .section-1 .item {
                flex: 0.5;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

                .project-item-details .details-content .section-1 .item .material-icons {
                    font-size: 20px;
                }

            .project-item-details .details-content .section-1 .separator-vertical {
                align-self: normal;
                width: 2px;
                background-color: white;
            }

        .project-item-details .details-content .section-2 {
            background-color: rgba(255, 255, 255, 0.18);
            color: white;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            margin-top: -9px;
        }

.pagination {
    background: #f2f2f2;
    padding: 2px 5px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    width: max-content;
}

    .pagination .page-item {
        margin: 0 3px;
        align-self: baseline;
    }

        .pagination .page-item .page-link:not(.named) {
            color: #003b4c;
            font-size: 13px;
            font-weight: 400;
            background-color: transparent;
            border: none;
            border-bottom: 3px solid transparent;
        }

        .pagination .page-item .named {
            background-color: #0D8F75;
            color: white;
            border-radius: 50%;
            padding: 0;
            margin-top: 2px;
            height: 35px;
            width: 35px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);
            transition: all 0.3s ease;
        }

            .pagination .page-item .named:hover {
                background-color: #018155;
            }

            .pagination .page-item .named i {
                font-size: 13px;
            }

        .pagination .page-item.active .page-link:not(.named) {
            background-color: transparent;
            border-color: transparent;
            border-bottom: 3px solid #0D8F75;
        }

        .pagination .page-item.disabled .page-link {
            background-color: #c9c9c9;
            box-shadow: 0 4px 8px 0 #c9c9c9;
        }



.copy--wrapper {
    width: 100%;
    margin: 0 0 30px 0;
    position: relative;
    background: #eee;
    padding: 0 15px;
    border-radius: 7px;
}

    .copy--wrapper button {
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        margin: auto;
        border: none;
        background: none;
        color: green;
        font-size: 20px;
        cursor: pointer;
    }

        .copy--wrapper button:focus {
            outline: none;
        }

@media (max-width: 767px) {
    .rangeslider3 .rangeslider-thumb {
        min-width: 35px;
    }

    .rangeslider3 .range-output .output {
        font-size: 14px;
    }

    #referenceId {
        color: #000;
    }
}

.fixed-side-menu {
    position: fixed;
    right: 0;
    top: 160px;
    max-width: 250px;
    line-height: 16px;
}

    .fixed-side-menu .title {
        text-align: right;
        color: white;
        width: 110px;
        padding: 10px 0px;
        text-align: center;
        font-size: 13px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.29);
        transition: all 0.3s ease;
    }

    .fixed-side-menu .icon {
        background: white;
        width: 40px;
        padding: 10px 0;
        text-align: center;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.29);
    }

        .fixed-side-menu .icon .round {
            padding: 0px;
            border-radius: 25px;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 16px;
            margin: auto;
            background: #0D8F75;
            color: white;
        }

    .fixed-side-menu .options {
        width: 100%;
        transition: all 0.2s ease-in-out 0.3s;
        position: absolute;
        right: 0;
        top: 36px;
        display: none;
        background-color: white;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.29);
    }

        .fixed-side-menu .options .nav-tabs li {
            padding: 9px;
            font-size: 13px;
            cursor: pointer;
        }

            .fixed-side-menu .options .nav-tabs li a {
                color: #0D8F75;
            }

            .fixed-side-menu .options .nav-tabs li.active {
                background-color: #0D8F75;
                color: white;
            }

                .fixed-side-menu .options .nav-tabs li.active a {
                    color: white;
                }

        .fixed-side-menu .options .tab-content .price-details {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 5px;
            padding: 6px 10px;
            font-size: 13px;
            border: 1px solid #c9c9c9;
            color: #c9c9c9;
        }

            .fixed-side-menu .options .tab-content .price-details input {
                width: 70%;
                border: none;
                outline: none;
                height: 20px;
                color: #003b4c;
            }

        .fixed-side-menu .options .tab-content > .active {
            opacity: 1;
        }

    .fixed-side-menu .hovered {
        display: none;
    }


/***custom style***/
a, a:hover {
    color: #0d8f75
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.btn-link, .btn-link:hover {
    color: #0D8F75
}

.custom_theme_hr {
    position: relative;
    top: 12px;
}

.custom_theme_title {
    background: #fff;
    position: relative;
    width: 165px;
    text-align: center;
    margin: 0 auto;
}

.custom-payment-a {
    width: 55px;
    height: 30px;
}

.custom-payment-a-img {
    width: 55px !important;
}


.custom_answer_span {
    color: #214570;
    font-size: 15px;
}

.qa-wrapper {
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-top: 20px;
}

    .qa-wrapper:last-child {
        border-bottom: 0;
    }

.custom_question, .custom_answer_span {
    font-weight: 600
}

.custom_question_icon {
    color: #b6b6b6;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 35px !important; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    left: 0;
    color: #b6b6b6;
    transform: rotate(0);
}

button.collapsed span.custom_question_icon {
    transform: rotate(180deg);
}

.custom_otp_radius {
    border-radius: 15px;
}

.border_raduis_15 {
    border-radius: 15px
}

.border_radius_right_15 {
    border-radius: 0 15px 15px 0;
}

.border_radius_left_15 {
    border-radius: 15px 0 0 15px;
}
body {
    -webkit-animation: fadeIn 0.5s ease-in;
    animation: fadeIn 0.5s ease-in;
}

.animate-out {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.donation-status .separator {
    height: 2px;
    width: 100%;
    background-color: #214570;
}

.txt-green {
    color: #0D8F75
}

.color-dark-green {
    color: #214570;
}

.project-details {
    font-size: 20px;
}

.donation-status .card .title {
    color: #214570;
}

.donation-status .card h6 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.forijat-details .card h6 {
    color: #214570;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.donation-status .round-checkbox .round-check {
    top: 0;
}

    .donation-status .round-checkbox .round-check::after {
        left: 4px;
        top: 6px;
    }

.donation-status .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Rectangle-277 {
    width: 410px;
    height: 6px;
    background-image: linear-gradient(to right, #0D8F75, #3ba9c9);
}

.gradient-borders {
    height: 4px;
    width: 100%;
    background-image: linear-gradient(to right, #0D8F75, #3ba9c9);
}

.border-primary-green {
    border-color: #0D8F75 !important;
}

.border-primary-blue {
    border-color: #214570 !important;
}

.border-rounded {
    border-radius: 20px;
}

.border-width-2 {
    border-width: 2px !important;
}

.rounded-top-35 {
    border-top-right-radius: 35px !important;
    border-top-left-radius: 35px !important;
}

.rounded-bottom-35 {
    border-bottom-right-radius: 35px !important;
    border-bottom-left-radius: 35px !important;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-6 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.donation-status input[type="number"] {
    border: 0;
    outline: none;
}

.bg-gradient-green {
    background: rgb(6, 133, 113);
    background: linear-gradient(90deg, rgba(6, 133, 113, 1) 0%, rgba(1, 180, 119, 1) 100%);
}

    .bg-gradient-green span {
        opacity: 0.8;
    }

.bg-primary-gradient {
    background: rgb(6, 133, 113);
    background: linear-gradient(to left, #0D8F75 30%, #214570 110%);
    color: #fff;
}

.bg-primary-gradient-2 {
    background: rgb(6, 133, 113);
    background: linear-gradient(to right, #0D8F75 30%, #214570 90%);
    color: #fff;
}

.border-rounded-2 {
    border-radius: 5px;
}

.big-icon {
    font-size: 70px;
    position: absolute;
    left: 20px;
    top: 24px;
}

.login-icon {
    width: 109px;
    height: 109px;
    background-image: linear-gradient(45deg, #068571, #0D8F75);
    border-radius: 50%;
    font-size: 58px;
    color: #fff;
    line-height: 106px;
    margin: auto;
}

.login :not(.verification-inputs) input {
    border: 0;
    line-height: 40px;
    outline: 0;
    color: #214570;
    font-size: 14px;
    width: 90%;
    border: 1px solid #DFE1E5;
    border-radius: 8px;
    padding-right: .75rem;
    padding-left: .75rem;
}

    .login :not(.verification-inputs) input:focus {
        outline: none;
        box-shadow: none;
        border: 1.5px solid #06B085;
    }

.header_bread {
    margin-top: 9rem;
}


.RegisterFormItem label {
    color: #214570;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    margin-right: 20px;
    float: right;
}

.login .card {
    border-radius: 15px;
    border: none;
}

.login .register-link {
    font-size: 14px;
    margin-top: 14px;
}

.login .elipse-bg {
    background: url('../images/login/Ellipse 51.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

    .login .elipse-bg img {
        padding: 17px;
    }

.login a {
    color: #214570;
    text-decoration: underline;
    margin-right: 8px;
}

.txt-dark-green {
    color: #214570
}

.verification-inputs {
    direction: ltr;
}

    .verification-inputs input {
        width: 43px;
        height: 52px;
        text-align: center;
        border: 1px #ddd solid;
        border-radius: 9px;
        outline-color: #0D8F75;
        color: #0D8F75;
    }

        .verification-inputs input::-webkit-outer-spin-button,
        .verification-inputs input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .verification-inputs input[type=number] {
            -moz-appearance: textfield;
        }

.card-gray {
    background-color: #f8f9fa;
    border: 0;
}

/* width */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #0D8F75;
    border-radius: 5px;
}


    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: #12a875;
    }

i.fa.fa-phone.text-primary.mr-2 {
    transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
}

.container.droopmenu-container {
    margin: auto;
}

.donation-projects .card .multi-bg {
    background: linear-gradient(0deg, #214570 20%, white 20%);
}

.login h6,
.login .resend {
    font-size: 12px;
}

    .login .resend i {
        font-size: 10px;
    }

.login h3 {
    font-size: 26px;
}

.verification-page h6,
.verification-page .resend {
    font-size: 14px;
}

    .verification-page .resend i {
        font-size: 11px;
    }

.verification-page h3 {
    font-size: 26px;
}

.verification-page .btn {
    font-weight: 400;
}

.already-donate .removeFromCart {
    width: 80px;
    height: 30px;
    font-family: AdelleSansARA-Regular;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 36px;
    letter-spacing: normal;
    text-align: center;
    color: #c9c9c9;
    border: none;
    background-color: white;
    cursor: pointer;
    outline: none;
}

    .already-donate .removeFromCart:hover,
    .already-donate .removeFromCart:focus {
        color: #214570;
        outline: none;
    }

.already-donate .addedToCart {
    width: 100%;
    height: 37px;
    border-radius: 28px;
    background-color: #c9c9c9;
    color: white;
}

.card .price-details.error {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    padding: 0 10px;
    font-size: 13px;
    border: 1px solid #dc3545;
    color: #dc3545;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loader.card-1 {
        height: 350px;
    }

    .loader.card-2 {
        height: 300px;
    }

    .loader.card-3 {
        height: 250px;
    }

.field-validation-error {
    font-size: 12px;
    color: #f25e09;
}

    .field-validation-error span {
        display: inline-block;
        margin-top: 5px;
    }

.login .field-validation-error {
    width: 90%;
}
/****************************************************************
********************************** MHD ALAA FORIJAT STYLE ********************************
******************************************************************
*/
#forijatFilterDropdowns {
    display: -ms-flexbox;
    display: flex;
}

.forijat-filter-card .card-header {
    position: relative;
    font-family: 'AdelleSansARA-Semibold';
    font-size: 20px;
    border-radius: 16px 16px 0 0;
    color: #fff;
    min-height: 65px;
    background-color: #00726F;
    background-image: url(../images/icons/card-header-bg.svg);
    background-repeat: no-repeat;
    background-position-x: left;
}

    .forijat-filter-card .card-header .forijatLogo {
        position: absolute;
        top: 0;
        background-color: #fff;
        padding: 10px;
        border-radius: 0 0 8px 8px;
    }

    .forijat-filter-card .card-header label {
        padding-right: 130px;
    }

.forijat-filter-card .card-header-no-title {
    position: relative;
    font-family: 'AdelleSansARA-Semibold';
    font-size: 20px;
    border-radius: 16px 16px 0 0;
    color: #fff;
    min-height: 85px;
    background: rgb(6, 133, 113);
    background: linear-gradient(to left, #0D8F75 30%, #214570 110%);
}

    .forijat-filter-card .card-header-no-title .forijatLogo + img {
        position: absolute;
        left: -10px;
        top: 0;
        width: 280px;
    }

.forijat-details .forijat-filter-card {
    box-shadow: 0px 2px 15px 0px rgb(77 77 77 / 10%);
    border-radius: 16px;
}

.forijat-card {
    border-radius: 20px;
}

    .forijat-card .card-body .card-inner-top {
        border-radius: 20px 20px 0 0;
        height: 202px;
        background: #0D8F75;
        background: linear-gradient(to right, #0D8F75, #214570);
    }

        .forijat-card .card-body .card-inner-top > img {
            position: absolute;
            left: 0;
            top: 0;
            clip: rect(0,500px,500px,125px);
            -webkit-transform: rotate( 90deg ) translate(12px, 144px);
            -moz-transform: rotate( 90deg ) translate(12px, 144px);
            -ms-transform: rotate( 90deg ) translate(12px, 144px);
            transform: rotate( 90deg ) translate(12px, 144px);
        }

    .forijat-card .card-body .card-inner-bottom {
        position: relative;
        border-radius: 0 0 20px 20px;
        background: #fff;
    }

        .forijat-card .card-body .card-inner-bottom .forijat-case {
            position: absolute;
            z-index: 5;
            background: #fff;
            padding: 25px;
            width: 90%;
            left: 50%;
            top: -5px;
            transform: translate(-50%, -50%);
            box-shadow: 0 2px 15px rgb(77 77 77 / 10%);
            border-radius: 8px 8px 0 0;
        }

.forijat-bill-number {
    background: #0D8F75;
    min-width: 213px;
    display: inline-flex;
    border-radius: 0 12px 0 28px;
    color: #fff;
    justify-content: space-between;
    align-items: baseline;
}

    .forijat-bill-number label {
        font-family: "AdelleSansARA-Semibold";
        font-size: 13px;
        padding: 10px 15px;
    }

    .forijat-bill-number div {
        float: left;
        background: #00726F;
        padding: 5px 9px;
        margin-left: 10px;
        border-radius: 50%;
        margin-top: 5px;
    }

    .forijat-bill-number img {
        vertical-align: sub;
    }

.forijat-filter {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 8px 35px rgb(0 0 0 / 16%);
    border-radius: 0px 0px 16px 16px;
    z-index: 8;
}

    .forijat-filter .select2-container {
        margin-left: 20px;
        margin-bottom: 20px;
        flex: 1;
    }

        .forijat-filter .select2-container .select2-selection--single {
            height: 45px;
            padding-top: 8px;
            outline: none !important;
        }

            .forijat-filter .select2-container .select2-selection--single:focus {
                box-shadow: 0 0 3px #ccc;
            }

    .forijat-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 11px;
        left: 10px !important;
        color: #545353;
    }

        .forijat-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
            display: none !important;
        }

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 5px;
    outline: none;
}

    .select2-container--default .select2-search--dropdown .select2-search__field:focus {
        box-shadow: 0 0 3px #ccc;
    }

.select2-dropdown {
    z-index: 8 !important;
    border-top: 1px solid #F2F2F2 !important;
}

.select2-container--open .select2-dropdown {
    top: -8px;
    border: 1px solid #F2F2F2 !important;
}

.select2-results__option--selectable {
    border-top: 1px solid #F2F2F2 !important;
    border-bottom: 1px solid #F2F2F2 !important;
}

.furijat-label {
    font-size: 28px;
    font-family: "AdelleSansARA-Semibold";
}

.btn-outline-dark-green {
    color: #214570;
    border-color: #214570;
}

    .btn-outline-dark-green:hover {
        color: #fff;
        border-color: #016886;
        background-color: #016886;
    }

#showFilter img {
    position: absolute;
    right: 10px;
    top: 11px;
}

#hideFilter img {
    position: absolute;
    right: 10px;
    top: 13px;
}
/****************************************************************
********************************** END OF MHD ALAA FORIJAT STYLE ********************************
******************************************************************
*/
.text-black-555 {
    color: #545353;
}

.all-projects .card .data-item .material-icons {
    font-size: 16px;
}

header .navigation ul.controls {
}

.droopmenu-navbar {
    margin-top: 0;
}

.droopmenu-nav {
    background-color: #F2F2F2;
}

.droopmenu-extra li {
    margin-top: -4px;
}

i.hoverddItem {
    position: absolute;
    height: 30px;
    left: 10px;
    right: 10px;
    z-index: -1;
    top: -2px;
    display: none;
    border-bottom: 5px solid #0D8F75;
}

.swiper-slide {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-bottom: 0 !important;
}

:: -webkit-input-placeholder {
    /* Edge */
    color: #c9c9c9;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c9c9c9;
}

::placeholder {
    color: #c9c9c9;
}

.project-img {
    height: 155px;
}

.project-item-details {
    border-radius: 12px;
}

    .project-item-details .details-content .section-1 .item .material-icons {
        font-size: 23px;
    }

.samiBold {
    font-weight: 600
}

.price-details span {
    font-weight: 600
}

.price-details {
    font-size: 11px !important;
}

.MobileBtn {
    width: 100%;
    font-size: 20px;
}

.MaxValueBox {
    position: absolute;
    bottom: 0;
    background: #0D8F75db;
    width: 100%;
    text-align: center;
    padding: 8px;
    color: #fff;
    font-size: 13px;
    display: none;
}

.all-projects .MaxValueBox,
.donation-projects .MaxValueBox {
    width: 91%;
    bottom: 59px;
    border-radius: 8px;
    background: #0D8F75ed;
}

.ShowMaxValueBox {
    display: block;
}

.nav-link {
    padding: 10px;
}

.donation-projects .separator-vertical {
    width: 1px;
}

.login .input-validation-error,
.verification-page .input-validation-error {
    border: 1px #e58494 solid !important;
    background: #fff;
}

.login input.valid,
.verification-page input.valid {
    background: #fff;
    border: 1px #a4d171 solid !important;
}

.btn.addedToCart span.material-icons {
    position: absolute;
    left: 25px;
}

.filters .btn-primary-green {
    box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);
    padding: 8px 30px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: unset;
    right: 0;
    left: auto;
    width: 50px;
    height: 60px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: unset;
    left: 0;
    right: auto;
    width: 50px;
    height: 60px;
}

    .swiper-container-rtl .swiper-button-next::after,
    .swiper-container-rtl .swiper-button-prev::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        position: absolute;
        padding: 16px;
        color: #fff;
        font-size: 30px;
    }

    .swiper-container-rtl .swiper-button-next::after {
        content: "\f053";
    }

.swiper-container-rtl .swiper-button-prev::after {
    content: "\f054";
}

.swiper-button-prev,
.swiper-button-next {
    top: 60%
}

.sponsers-items img {
    width: 145px;
}

.withScroll {
    direction: ltr;
}

.withScrollContent {
    direction: rtl;
}

.ProhectDetailsSubBox .MaxValueBox {
    bottom: -38px;
    width: 95%;
    border-radius: 20px;
    left: 10px;
}

.ProhectDetailsSubBox {
    position: relative;
}

.showInMobile {
    display: none;
}

.droopmenu > li.ddItem > a {
    font-family: "AdelleSansARA-Semibold";
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 17px 30px 44px;
}
/*.droopmenu-brand, .droopmenu > li > a {
    line-height: inherit;
    height: inherit;
}*/
.opaque .droopmenu-container .droopmenu-button span {
    font-size: 15px;
    height: 27px;
    line-height: 23px;
    padding: 0 20px;
}

.dm-nav-brand a img, .droopmenu-brand img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.slider > .container {
    height: 100vh;
}

.slider > .swiper-container img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.home-page .slider .content {
    top: 0;
    transform: unset;
    padding-bottom: unset;
    bottom: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 80px;
}

.home-page .slider .content .carousel-items .description {
    max-width: 442px;
    font-size: 26px;
    margin: 20px auto 30px;
}

.sliderContent {
    margin-top: 30%;
    transform: scale(1);
}

.home-banner--top {
    height: 20px;
    background-color: #01B477;
}

.home-banner--bottom {
    background: #214570;
    background: linear-gradient(to right, #0D8F75 -50%, #214570 100%);
}

.home-banner span {
    position: absolute;
    right: 15px;
    top: 0;
    background: #e06641;
    color: #fff;
    padding: 0 20px 4px;
    border-radius: 0 0 10px 10px;
    line-height: 1.2;
}

.no-projects-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .no-projects-found div {
        font-weight: 600;
    }

    .no-projects-found .btn {
        font-size: 16px;
    }

.round-checkbox .round-check:after {
    top: 6px;
    left: 4px;
}

.modal-content {
    font-size: 13px;
}

/*.modal-title {
    font-size: 18px;
}*/

.account-thankyou {
    font-size: 14px;
}

    .account-thankyou h6 {
        font-size: 15px;
        font-weight: 600;
        text-align: center;
    }

    .account-thankyou .btn-primary-blue {
        font-size: 15px;
    }

.img-holder {
    width: 130px;
    height: 76%;
    display: flex;
    justify-content: center;
}

    .img-holder.placeholder {
        background: #214570;
        height: 100%;
    }

.cart-placeholder-image {
    height: 60px;
    margin-top: 9px;
    margin-left: auto;
    margin-right: 21px;
}

.btn.addedToCart span.material-icons {
    position: absolute;
    left: 25px;
}

.filters .btn-primary-green {
    box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);
}

.card h6 {
    font-weight: 600;
    font-size: 17px;
    line-height: 30px;
}

.all-projects .card h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.droopmenu > li a.droopmenu-button span {
    background: #0D8F75;
    background: linear-gradient(to left, #0D8F75 20%, #214570 105%);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header > div {
    font-weight: unset !important;
}

header .navigation ul.header-actions > li:hover .dropdown-menu {
    width: 200px;
}

header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions {
    padding: 0;
    position: relative;
}

    header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions a {
        border-radius: 0;
        padding: 8px 12px;
        margin: 10px 0;
        font-size: 14px;
    }

    /*   header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions .item-1 {
        background: #f7f7f7;
        color: white;
    }*/

    header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions .item-1:hover {
        background: #f2f2f2;
        /*box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);*/
    }

/*   header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions .item-2 {
        background: #c9c9c9;
        color: white;
    }*/

/*  header .navigation ul.header-actions > li .dropdown-menu .header-profile-actions .item-2:hover {
            background: #929292;
        }*/

.mobile-profile-actions {
    display: none;
}

    .mobile-profile-actions .header-profile-actions {
        padding: .8rem 10px;
        position: relative;
        display: flex;
    }

        .mobile-profile-actions .header-profile-actions a {
            border-radius: 30px;
            padding: 6px 17px;
            margin: 10px;
            font-size: 14px;
            flex: 1;
            display: flex;
        }

        .mobile-profile-actions .header-profile-actions .item-1 {
            background: #0D8F75;
            color: white;
        }

            .mobile-profile-actions .header-profile-actions .item-1:hover {
                background: #1da577;
                box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);
            }

        .mobile-profile-actions .header-profile-actions .item-2 {
            background: #c9c9c9;
            color: white;
        }

            .mobile-profile-actions .header-profile-actions .item-2:hover {
                background: #929292;
            }

header .navigation ul.controls li .material-icons {
    font-size: 22px;
    position: absolute;
}

.close-modal {
    display: none !important;
}

.modal-content {
    border: none;
}

.gifts .background-fixed {
    background-attachment: inherit;
}

img {
    outline: none;
}

.server-error-page .type {
    font-size: 50px;
}

.server-error-page .message {
    font-size: 13px;
    font-weight: 600;
}

.donation-projects .card .header {
    display: flex;
    align-items: center;
}

    .donation-projects .card .header .title {
        flex: 1;
        margin: 0;
    }

    .donation-projects .card .header .item-text {
        font-size: 12px;
        font-weight: 400;
        margin-left: 5px;
    }

    .donation-projects .card .header .item-order {
        background-color: #c9c9c9;
        color: white;
        font-size: 12px;
        padding: 3px 10px;
        min-height: 24px;
        min-width: 40px;
        max-width: 70px;
        text-align: center;
        border-radius: 15px;
    }

.donation-status .separator-vertical.bg-light-grey,
.separator.bg-light-grey {
    background-color: #c9c9c9;
}

.column-1 {
    flex: 82%;
}

.column-2 {
    flex: 10%;
    margin-right: 13px;
}

li.ddItem {
    padding: 0;
    margin: 0 15px;
}

.droopmenu > li {
    margin-top: 0;
}

    .droopmenu > li i {
        top: 0;
        height: 100%;
        bottom: 0;
    }

    .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu,
    .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .container.droopmenu-container {
        background: #f5f5f5;
    }

        .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col {
            border-radius: 20px;
            background: white;
            padding-left: 0;
            padding-right: 0;
            margin: 0 7px;
            width: 160px;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col:hover {
                background: #06B085;
            }

                .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col:hover a {
                    color: white;
                }

span.droopmenu-indicator {
    margin: 0;
}

.zakkah-page .content .title {
    font-size: 45px;
    margin-bottom: 10px;
    color: #214570;
}

.zakkah-page .content .description {
    font-size: 18px;
    color: #0D8F75;
    margin-bottom: 35px;
}


.zakkah-page .content .input-data .input-wrapper {
    border: 2px solid #e1e1e1;
    background: white;
    border-radius: 60px;
    display: flex;
    align-items: center;
    color: #06B085;
    padding: 3px 15px;
    flex: 1;
}


    .zakkah-page .content .input-data .input-wrapper input {
        border: none;
        outline: none;
        color: #1b4f5f;
        background: white;
        font-size: 16px;
        width: 84%;
    }

    /*.zakkah-page .content .input-data-dropdown .input-wrapper {
    border: none;
    padding: 0 !important;
}

    .zakkah-page .content .input-data-dropdown .input-wrapper select {
        border: 2px solid #e1e1e1;
        border-radius: 60px;
        line-height: 0px;
        height: 37px;
        padding: 0 10px;
        outline: none !important;
        box-shadow: none !important;
        cursor: pointer;
        appearance: auto;
        -moz-appearance: auto;
        -webkit-appearance: auto;
    }*/

    .zakkah-page .content .input-data .input-wrapper select {
        width: 100%;
        border: none;
        outline: none !important;
        cursor: pointer;
        color: #214570;
    }

.zakkah-page .content .number {
    font-size: 66px;
    line-height: 70px;
}

.zakkah-page .content .currency {
    font-size: 24px;
}

.zakkah-page .content .add-to-cart-form {
    margin-bottom: 35px;
}

    .zakkah-page .content .add-to-cart-form .cart-ctr {
        justify-content: center;
    }

    .zakkah-page .content .add-to-cart-form .action {
        padding: 16px 100px;
        margin-left: 17px;
        font-size: 18px;
        box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);
    }

    .zakkah-page .content .add-to-cart-form .btn-round-icon {
        padding: 16px 0;
        width: 62px;
        height: 60px;
    }

        .zakkah-page .content .add-to-cart-form .btn-round-icon .material-icons {
            font-size: 32px;
        }

.zakkah-page .content .custom-link {
    text-decoration: underline;
    font-size: 20px;
    font-weight: 600;
    color: #1b4f5f;
}

    .zakkah-page .content .custom-link:hover {
        color: #3588a2;
    }

.zakkah-page .modal-dialog.modal-dialog-centered {
    width: 750px;
    max-width: 95%;
}

.zakkah-page .modal .seperator {
    height: 2px;
    background: #d7d7d7;
    margin: 40px 0;
}

.zakkah-page .modal .modal-content {
    padding: 60px 55px 90px;
    border-radius: 20px;
}

    .zakkah-page .modal .modal-content .title {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 13px;
    }

    .zakkah-page .modal .modal-content .result-amount {
        font-size: 24px;
        display: flex;
        justify-content: space-between;
    }

        .zakkah-page .modal .modal-content .result-amount > span {
            color: #1b4f5f;
        }

    .zakkah-page .modal .modal-content .value .unit {
        font-size: 18px;
    }

    .zakkah-page .modal .modal-content .input-data {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .zakkah-page .modal .modal-content .input-data > h3 {
            font-size: 24px;
            color: #1b4f5f;
            margin-bottom: 15px;
        }

    .zakkah-page .modal .modal-content .input-wrapper {
        border: 2px solid #e1e1e1;
        background: white;
        border-radius: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #06B085;
        padding: 23px 30px;
        font-size: 18px;
        margin-bottom: 50px;
    }

        .zakkah-page .modal .modal-content .input-wrapper input {
            border: none;
            outline: none;
            color: #1b4f5f;
            background: white;
            margin-left: 10px;
            font-size: 20px;
            width: 100%;
        }

    .zakkah-page .modal .modal-content .calculate-action {
        font-size: 22px;
        padding: 11px 100px;
        box-shadow: 0 4px 8px 0 rgba(0, 106, 70, 0.3);
        margin: auto;
    }

.zakkah-details .card {
    padding: 20px 20px 30px;
}

    .zakkah-details .card .title {
        color: #1b4f5f;
        font-size: 14px;
        margin: 0;
    }

    .zakkah-details .card .separator {
        height: 2px;
        background: #d7d7d7;
        margin: 19px 0;
    }

    .zakkah-details .card .amount-wrapper {
        display: flex;
        justify-content: space-between;
        font-size: 18px;
    }
/*
*********************************************************
********************** MHD ALAA ZAKAT STYLE ************************
**********************************************************
*/
.zakkah-page .nav .nav-item {
    flex: 1;
    margin-left: 15px;
}

    .zakkah-page .nav .nav-item:last-child {
        margin-left: 0;
    }

.zakkah-page .nav.nav-pills .nav-link {
    font-weight: 600;
    position: relative;
    color: #214570;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1.4px solid #214570;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

    .zakkah-page .nav.nav-pills .nav-link:focus, .zakkah-page .nav.nav-pills .nav-link:hover {
        outline: none;
        box-shadow: 0 0 2px 5px rgb(0 59 76 / 10%);
    }

    .zakkah-page .nav.nav-pills .nav-link.active:focus, .zakkah-page .nav.nav-pills .nav-link.active:hover {
        outline: none;
        box-shadow: none;
    }

    .zakkah-page .nav.nav-pills .nav-link.active {
        color: #fff;
        background-color: #0D8F75;
        border: 1px solid #0D8F75;
    }

        .zakkah-page .nav.nav-pills .nav-link.active img:first-child,
        .zakkah-page .nav.nav-pills .nav-link img:last-child {
            display: none;
        }

        .zakkah-page .nav.nav-pills .nav-link img:first-child,
        .zakkah-page .nav.nav-pills .nav-link.active img:last-child {
            display: inline;
        }

.nav-zakat-icons {
    position: absolute;
    right: 12px;
}

.zakkah-page .nav .nav-item:last-child span {
    padding-right: 20px;
}

.zakkah-page .summary {
    border-radius: 20px;
    box-shadow: 0px 3px 15px rgb(177 177 177 / 30%);
    border: none;
}

    .zakkah-page .summary .card-header:first-child {
        border-radius: 20px 20px 0 0;
        border: none;
        color: #214570;
        background-color: #F1F1F1;
    }

.zakah-summary-on-mobile {
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
    width: 100%;
}

    .zakah-summary-on-mobile > div {
        box-shadow: 0 -4px 10px rgb(139 139 139 / 45%);
        border-radius: 10px 10px 0 0;
    }

.zakkah-page .content .zakah-summary-on-mobile .number {
    font-family: "AdelleSansARA-Semibold";
    font-size: 24px;
    line-height: 24px;
}

.zakkah-page .content .zakah-summary-on-mobile .currency {
    font-family: "AdelleSansARA-Semibold";
    font-size: 14px;
}

.bg-smoke-white {
    background-color: #F2F2F2 !important;
}

.text-green {
    color: #0D8F75;
}

.text-light-grey {
    color: #A2A2A2;
}

.zakkah-page .tab-content {
    height: 100%;
    background: rgb(242 242 242 / 60%);
    padding: 15px;
    border-radius: 20px;
}

    .zakkah-page .tab-content .card {
        border-radius: 15px;
        box-shadow: 0px 3px 5px rgb(0 0 0 / 10%);
        border: none;
    }

.zakkah-page .content .input-data .input-wrapper input + span {
    font-size: 14px;
    white-space: nowrap;
}

button.close {
    outline: none !important;
}

.zakat-details label {
    color: #545353;
    font-size: 14px;
}

.dropdown-menu.show {
    right: 0;
    left: auto !important;
}

.zakkah-page .card-title {
    color: #214570;
}

.zakkah-page .table th,
.zakkah-page .table td {
    font-size: 12px;
    color: #214570;
}

.zakkah-page .dropdown {
    width: 100%;
}

    .zakkah-page .dropdown a {
        color: #214570;
        display: block;
    }

.zakkah-page .dropdown-toggle::after {
    float: left;
    margin-top: 10px;
}

.border-rounded-15 {
    border-radius: 15px;
}

.line-height-0 {
    line-height: 0 !important;
}

/**************** TOAST CUSTOMIZATION ****************/
.toast-container {
    position: fixed;
    top: 9rem;
    z-index: 999;
}

    .toast-container.toast-container-left {
        left: 1rem;
    }

    .toast-container.toast-container-right {
        right: 1rem;
    }

.toast {
    border: 1px solid #ddd;
    border-radius: 15px;
}

    .toast.toast-success {
        color: #155724;
        background-color: #d4edda;
        border-color: #c3e6cb;
    }

        .toast.toast-success .toast-header {
            color: #155724;
            background-color: #b7dbc0;
        }

    .toast.toast-danger {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }

        .toast.toast-danger .toast-header {
            color: #721c24;
            background-color: #e6b7bb;
        }

    .toast.toast-info {
        color: #0c5460;
        background-color: #d1ecf1;
        border: 1px solid #f5c6cb;
        border-color: #bee5eb;
    }

        .toast.toast-info .toast-header {
            color: #0c5460;
            background-color: #abdbe4;
        }

    .toast.toast-warning {
        color: #856404;
        background-color: #fff3cd;
        border-color: #ffeeba;
    }

        .toast.toast-warning .toast-header {
            color: #856404;
            background-color: #f8e8b5;
        }

/**************** END OF TOAST CUSTOMIZATION ****************/

/*
*********************************************************
********************** END OF MHD ALAA ZAKAT STYLE ************************
**********************************************************
*/
.card-shadow {
    border: none;
    box-shadow: 0px 2px 15px 0px rgb(77 77 77 / 10%);
}

.donation-projects .card .price-details {
    flex: 50%;
    margin-left: 5px;
}

.donation-projects .card .share-slider {
    display: flex;
    align-items: center;
}

.donation-projects .card .share-slider {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.donation-projects .card .rangeslider2 {
    margin-left: 17px;
    margin-top: 1px;
}

.donation-projects .card .share-icon-btn {
    font-size: 22px;
    color: #06B085;
    padding: 0;
    line-height: 0;
}

.modal-content {
    padding: 30px 30px 0;
    border-radius: 15px;
}

.share-modal.popup-modal {
    background: transparent;
}

.share-modal .modal-head {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
}

    .share-modal .modal-head h6 {
        color: #06B085;
        font-size: 24px;
    }

    .share-modal .modal-head .modal-close {
        font-size: 20px;
        margin-left: 15px;
        color: #8d8d8d;
        opacity: 1;
    }

.share-modal .seperator {
    width: 100%;
    height: 2px;
    background: #d7d7d7;
    margin-bottom: 30px;
}

.share-modal .link-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .share-modal .link-label .text {
        font-size: 18px;
        color: #1b4f5f;
    }

    .share-modal .link-label .material-icons {
        font-size: 28px;
        margin-left: 10px;
        color: #8d8d8d;
    }

.share-modal .share-link {
    display: flex;
    align-items: center;
    border: 2px solid #d7d7d7;
    border-radius: 30px;
    margin-bottom: 30px;
}

    .share-modal .share-link input {
        flex: 1;
        margin: 0px 5px;
        height: 28px;
        border: none;
        outline: none;
        color: #8d8d8d;
        font-size: 16px;
    }

    .share-modal .share-link .btn-primary-green {
        padding: 7px 30px;
        font-size: 20px;
    }

.share-modal .social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 33px;
}

    .share-modal .social-icons .btn {
        padding: 5px;
        border-radius: 50%;
        border: 2px solid transparent;
        transition: all 0.3s ease-in;
    }

        .share-modal .social-icons .btn > div {
            width: 64px;
            height: 64px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: all 0.3s ease-in;
        }

            .share-modal .social-icons .btn > div img {
                max-width: 100%;
                max-height: 50%;
            }

    .share-modal .social-icons .watsapp,
    .social-icons .twitter {
        margin-left: 17px;
    }

        .share-modal .social-icons .watsapp:hover {
            border: 2px solid #0ec244;
        }

            .share-modal .social-icons .watsapp:hover > div {
                box-shadow: 0px 0px 3px #0ec244;
            }

    .share-modal .social-icons .twitter:hover > div {
        box-shadow: 0px 0px 3px #2aa3ef;
    }

    .share-modal .social-icons .facebook:hover > div {
        box-shadow: 0px 0px 3px #3d5a96;
    }

    .share-modal .social-icons .watsapp > div {
        background: #0ec244;
    }

    .share-modal .social-icons .twitter:hover {
        border: 2px solid #2aa3ef;
    }

    .share-modal .social-icons .twitter > div {
        background: #2aa3ef;
    }

    .share-modal .social-icons .facebook:hover {
        border: 2px solid #3d5a96;
    }

    .share-modal .social-icons .facebook > div {
        background: #3d5a96;
    }

.all-projects .card .multi-bg {
    position: relative;
}

.all-projects .actions {
    display: flex;
}

    .all-projects .actions .btn-primary-blue {
        flex: 1;
    }

.all-projects .card .multi-bg .btn.rounded-circle {
    padding: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .all-projects .card .multi-bg .btn.rounded-circle .material-icons {
        font-size: 23px;
    }

.all-projects.MolCaseDiv .card .multi-bg {
    height: 180px;
    justify-content: space-between;
}

.forijat-details .share-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 18px 0;
}

    .forijat-details .share-btn-wrapper .share-help {
        padding: 0 20px;
        position: absolute;
        left: 0;
        top: 5px;
        background: #fff;
        color: #0D8F75;
    }

    .forijat-details .share-btn-wrapper .share-icon-btn {
        padding: 0 20px 0 0;
        color: #06B085;
    }

.rangeslider1.varient-2 .rangeslider-thumb {
    line-height: 21px;
    height: 20px;
}

.tiptop {
    position: absolute;
    z-index: 1;
    max-width: 300px;
    padding: 5px 20px;
    font-size: 12px;
    color: #fff;
    background: rgba(27, 79, 95, 0.8);
    border-radius: 5px;
    animation: main 0.3s forwards;
    transform: scaleX(0.5);
}

@keyframes main {
    0% {
        transform: scaleX(0.5);
    }

    100% {
        transform: scaleX(1);
    }
}

.contact-us {
    padding-top: 120px;
    font-size: 24px;
}

    .contact-us .card .banner .logo {
        left: 5%;
        width: 16%;
    }

    .contact-us .card {
        border-radius: 15px;
        border: none;
        overflow: hidden;
        box-shadow: -5px 10px 30px 0 rgba(0, 106, 70, 0.1);
    }

        .contact-us .card .banner {
            position: relative;
            background-color: #e8e7e3;
        }

            .contact-us .card .banner .background-wrapper {
                background: url(/assets/images/backgrounds/contact-img.svg) no-repeat;
                background-size: cover;
                background-position: 0 -140px;
                opacity: 0.7;
                height: 300px;
                overflow: hidden;
            }

                .contact-us .card .banner .background-wrapper img.w-100 {
                    visibility: hidden;
                    margin: -60px 0;
                }

            .contact-us .card .banner .logo {
                position: absolute;
                right: 18%;
                top: 50%;
                transform: translateY(-50%);
                width: 15%;
            }

        .contact-us .card .content .title {
            color: #0D8F75;
            font-size: 1.1em;
            margin-bottom: 26px;
        }

        .contact-us .card .description, .contact-us .card .sub-title, .contact-us .card .col-form-label {
            font-size: 0.67em;
            font-weight: 400;
            color: #1b4f5f;
        }

        .contact-us .card .description {
            margin-bottom: 10px;
        }

        .contact-us .card .sub-title {
            margin-bottom: 24px;
        }

        .contact-us .card .content .separator {
            height: 1px;
            width: 100%;
            background-color: #c9c9c9;
        }

        .contact-us .card .content nav {
            font-size: 16px;
        }

            .contact-us .card .content nav a {
                color: #0D8F75;
                font-size: 22px;
            }

                .contact-us .card .content nav a:hover {
                    color: #016845;
                }

    /*    .contact-us .contact-form {
        margin-bottom: 120px;
    }*/

    .contact-us form input, .contact-us form textarea, .contact-us form select {
        border: 1.5px solid #e1e1e1;
        background: white;
        color: #1b4f5f;
        padding: 19px 20px;
        font-size: 14px;
    }

        .contact-us form input:focus, .contact-us form textarea:focus {
            outline: none;
            box-shadow: none;
            border: 1.5px solid #06B085;
        }

    /*    .contact-us form input, .contact-us form select {
        border-radius: 60px;
    }*/

    .contact-us form select {
        background: transparent;
        padding: 8px 20px 8px 40px;
    }

    .contact-us form textarea {
        border-radius: 15px;
        resize: none;
        height: 160px;
    }

    .contact-us form .submit-btn {
        padding: 9px 80px;
        font-size: 0.63em;
    }

    .contact-us .card .content nav a.twitter-icon {
        font-size: 18px;
    }

        .contact-us .card .content nav a.twitter-icon .fa-twitter {
            color: #00aced;
            font-size: 22px;
        }

        .contact-us .card .content nav a.twitter-icon:hover .fa-twitter {
            color: #54c1ea;
        }

        .contact-us .card .content nav a.twitter-icon:hover span {
            color: #0698d0;
        }

.form-group.required .col-form-label:after {
    content: "*";
    color: #06B085;
}

.contact-us form .form-control.error {
    border: 1.5px solid #dc3545;
}

.contact-us form span.error {
    color: #dc3545;
    font-size: 14px;
}

.gifts {
    color: #1b4f5f;
}

    .gifts .card {
        padding: 40px 0;
        border-radius: 10px;
        border: none;
    }

        .gifts .card img {
            width: 345px;
        }

        .gifts .card .number {
            width: 70px;
            height: 70px;
            padding: 16px 0;
        }

        .gifts .card .title {
            font-size: 28px;
            margin-bottom: 32px;
        }

    .gifts .title.label {
        font-size: 22px;
    }

    .gifts .card .description {
        font-size: 16px;
    }

    .gifts .gift-action {
        background: linear-gradient(90deg, rgba(17,139,119,1) 0%, rgba(1,178,118,1) 100%);
        background-size: 400% 400%;
        border-radius: 50px;
        color: white;
        padding: 16px 80px;
        font-size: 22px;
        font-weight: 600;
        margin: 23px auto 100px;
    }

.card-details-link {
    color: unset;
    max-width: 80%;
}

    .card-details-link:hover, .card-details-link:focus {
        color: unset;
    }

.clickable-wrapper {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-img-fluid {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    user-select: none;
}

.custom-checkbox-square .custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

.custom-checkbox-square .custom-control-label {
    font-family: 'AdelleSansARA-Semibold';
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    display: inline-block;
    color: #6C757D;
    cursor: pointer;
}

    .custom-checkbox-square .custom-control-label::before {
        border-radius: 2px;
        width: 14px;
        height: 14px;
        border: #929292 solid 2px !important;
    }

    .custom-checkbox-square .custom-control-label::before, .custom-checkbox-square .custom-file-label, .custom-select {
        transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .custom-checkbox-square .custom-control-label::before, .custom-checkbox-square .custom-control-label::after {
        top: 4px;
    }

.custom-checkbox-square .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #06B085 !important;
    background-color: #06B085;
}

.custom-checkbox-square .custom-control-input:checked ~ .custom-control-label::after {
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    right: -20.3px;
    width: 6px;
    height: 10px;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none !important;
}

.gift-checkbox-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    .gift-checkbox-wrapper.checked .gift-icon g path {
        fill: #6ea2dc;
    }

.gift-icon {
    margin-top: -9px;
}

.Payment-details-page .payment-info .gift-box {
    background-color: rgb(64 157 160 / 10%);
}

    .Payment-details-page .payment-info .gift-box > label {
        color: #409da0;
    }

    .Payment-details-page .payment-info .gift-box > img {
        width: 15px;
        vertical-align: text-top;
    }

.view-all-link {
    position: relative;
}

.services.all-projects.MolCaseDiv .share-button-wrapper {
    position: absolute;
    z-index: 1;
    top: 57px;
    left: 0;
}

.services.all-projects.MolCaseDiv .btn.rounded-circle.share-help {
    color: #0D8F75;
    background: white;
    align-self: flex-end;
    padding: 5px;
    display: flex;
    align-items: center;
}

.gheras .title {
    max-width: 300px;
    padding: 0;
    min-width: auto;
}

.gheras .sub-title {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0px;
    color: #214570;
    max-width: 745px;
    margin: 0 auto;
    line-height: normal;
    margin-bottom: 125px;
}

.gheras .steps .count {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #214570;
    color: #fff;
    text-align: center;
    overflow: hidden;
    line-height: 70px;
    font-size: 40px;
    margin-bottom: 48px;
}

.gheras .steps h4 {
    color: #0D8F75;
    margin-bottom: 14px;
    line-height: normal;
}

.gheras .steps p {
    font-size: 18px;
    color: #214570;
    line-height: normal;
}

.gheras .steps {
    display: flex;
    margin: 0 -15px;
    margin-bottom: 160px;
}

    .gheras .steps:last-of-type {
        margin-bottom: 70px;
    }

img {
    max-width: 100%;
}

.with--share .text-dark-green span.title {
    max-width: 80%;
}

.with--share .share-help {
    position: absolute;
    left: 13px;
    top: 29px;
}

.copy--wrapper {
    position: relative;
}

    .copy--wrapper input {
        background: transparent;
        border: 0;
        line-height: 40px;
        outline: 0;
        color: #214570;
        font-size: 14px;
        width: 90%;
        border: 1px solid #DFE1E5;
        border-radius: 8px;
        padding-right: .75rem;
        padding-left: .75rem;
    }

    .copy--wrapper button {
        color: #0D8F75;
    }

.user-control-options-wrapper {
    display: flex;
    align-items: center;
}

header .navigation ul.controls {
    width: unset;
    flex: 1;
}

.header-actions li:first-child .icon {
    width: 41px;
    margin-top: 4px;
}

.header-actions li:last-child .icon {
    width: 29px;
}

.replaced-link {
    cursor: pointer;
}

.title-only-modal .modal-title {
    max-width: 300px;
}

.privacy-policy .card {
    border-radius: 15px;
    border: none;
    overflow: hidden;
    box-shadow: -5px 10px 30px 0 rgba(0, 106, 70, 0.1);
}

.privacy-policy .page-title {
    font-size: 36px;
    margin-bottom: 44px;
}

.privacy-policy .content {
    padding-top: 70px;
    padding-bottom: 40px;
}

.privacy-policy .card .content .title {
    color: #0D8F75;
    font-size: 24px;
}

.privacy-policy .card .content .list-title {
    font-size: 24px;
    color: #06B085;
    margin-bottom: 5px;
}

.privacy-policy .card .content .list-sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #2d5d6b;
    margin-right: 20px;
    margin-bottom: 0;
}

.privacy-policy .card .content p {
    font-size: 18px;
    color: #2d5d6b;
    margin-bottom: 24px;
    margin-right: 20px;
}

.privacy-policy .card .content ul {
    margin-bottom: 26px;
    margin-right: 40px;
    padding-right: 28px;
}

    .privacy-policy .card .content ul li {
        font-size: 18px;
        color: #2d5d6b;
    }

.arabic-list-style {
    list-style: none;
    position: relative;
}

    .arabic-list-style > li::before {
        display: inline-block;
        width: 25px;
        position: absolute;
        right: 0;
        text-align: right;
        direction: ltr;
    }

    .arabic-list-style > li:nth-child(1)::before {
        content: ".أ";
    }

    .arabic-list-style > li:nth-child(2)::before {
        content: ".ب";
    }

    .arabic-list-style > li:nth-child(3)::before {
        content: ".ج";
    }

    .arabic-list-style > li:nth-child(4)::before {
        content: ".د";
    }

    .arabic-list-style > li:nth-child(5)::before {
        content: ".ه";
    }

    .arabic-list-style > li:nth-child(6)::before {
        content: ".و";
    }

    .arabic-list-style > li:nth-child(7)::before {
        content: ".ز";
    }

    .arabic-list-style > li:nth-child(8)::before {
        content: ".ح";
    }

    .arabic-list-style > li:nth-child(9)::before {
        content: ".ط";
    }

    .arabic-list-style > li:nth-child(10)::before {
        content: ".ى";
    }

.footer-large .content-3 {
    background-color: #082c36;
    padding: 30px 0;
    font-size: 18px;
}

    .footer-large .content-3 .app-link {
        color: white;
        text-decoration: none;
    }

        .footer-large .content-3 .app-link:hover {
            color: #d9d9d9;
        }

.footer-large .content-4 {
    text-align: center;
    font-size: 16px;
    padding: 15px 0;
    background-color: #0D8F75;
    color: #fff;
}

.payment-privacy-modal h4 {
    color: #144b5a;
}

.payment-privacy-modal ul li,
.payment-privacy-modal p {
    font-size: 16px;
    margin-bottom: 15px;
}

.Payment-details-page .amount-details .title {
    font-size: 24px;
    margin-bottom: 42px;
}

.Payment-details-page .amount-details .amount {
    font-size: 32px;
    margin: 40px 0 30px;
}

.Payment-details-page .amount-details .user-details {
    font-size: 22px;
    margin: 30px 0 43px;
}

    .Payment-details-page .amount-details .user-details > div:first-of-type {
        margin-bottom: 40px;
    }

.Payment-details-page .amount-details .sep-4 {
    margin-bottom: 22px;
}

.payment-details .creditCardForm .heading {
    margin-bottom: 7px;
}

    .payment-details .creditCardForm .heading h4 {
        font-size: 22px;
        color: #31616e;
        margin: 0;
    }

.Payment-details-page div.separator {
    height: 2px;
    background: #e3e3e3;
}

.Payment-details-page .apple-pay {
    width: 100%;
    border-radius: 4px;
    padding: 22px 30px;
}

.donations .Payment-details-page .apple-pay {
    width: 190px;
    padding: 18px 0px;
    margin: 10px auto 0;
}

.payment-details .creditCardForm .sep-1 {
    margin-bottom: 47px;
}

.payment-details .creditCardForm label,
.creditCardForm label {
    color: #214570;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.payment-details .creditCardForm label {
    font-size: 16px;
}

.payment-details .creditCardForm .cvv,
.creditCardForm .cvv {
    width: 120px;
}

.payment-details .creditCardForm .already-member,
.creditCardForm .already-member {
    color: #b8b8b8;
    font-size: 13px;
    margin-bottom: 20px;
}

.payment-details .creditCardForm .expiry-dates,
.creditCardForm .expiry-dates {
    width: 170px;
    max-width: 40%;
}

    .payment-details .creditCardForm .expiry-dates .card-dates,
    .creditCardForm .expiry-dates .card-dates {
        display: flex;
    }

        .payment-details .creditCardForm .expiry-dates .card-dates #expYear,
        .creditCardForm .expiry-dates .card-dates #expYear {
            width: 50%;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            margin-right: -2px;
        }

        .payment-details .creditCardForm .expiry-dates .card-dates #expMonth,
        .creditCardForm .expiry-dates .card-dates #expMonth {
            width: 50%;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

.payment-details .creditCardForm .custom-checkbox-round .custom-control-label,
.creditCardForm .custom-checkbox-round .custom-control-label {
    margin-bottom: 15px;
}

.payment-details .payment {
    margin-bottom: 25px;
}

.payment-details .form-group {
    margin-bottom: 22px;
    position: relative;
}

    .payment-details .form-group .error {
        color: #e0394a;
        font-size: 14px;
    }

    .payment-details .form-group input.error {
        color: #495057;
    }

.creditCardForm .sign-in-options {
    color: #a3a3a3;
    font-size: 11px;
    margin: 0 0 10px;
    font-weight: 700;
}

    .creditCardForm .sign-in-options a {
        text-decoration: underline;
    }

.Payment-details-page .user-details .name {
    margin-right: 30px;
}

.Payment-details-page .payment .card-holder-name,
.fixed-side-menu .payment .card-holder-name {
    text-transform: uppercase;
}

.card-type {
    position: relative;
}

.Payment-details-page .card-icon {
    position: absolute;
    top: 0.9px;
    left: 0px;
    height: 36.6px;
    background: #e8ecef;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: 2px solid #d1d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .65rem 0 0 .65rem;
}

.Payment-details-page .card-icon-image {
    max-height: 70%;
    margin: 9% 8px;
    max-width: 30px;
}

footer .faq-link {
    margin-left: 64px;
}

footer .nav-link {
    padding: 0;
}

footer.footer-large .content-3 .nav a.nav-link i {
    font-size: 22px;
}

footer.footer-large .content-3 {
    font-size: 16px;
}

footer.footer-large .content-4 {
    font-size: 11px;
}


.droopmenu li.ddItem.active > a {
    color: #214570;
}

.droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col.active {
    background: #06B085;
}

    .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col.active a {
        color: white;
    }

.nav-tabs {
    border-bottom: 1.5px solid #dee2e6;
}

/*sass-compiled-section*/
.custom-table {
    padding: 0 5px
}

    .custom-table .tHead {
        font-size: 14px
    }

        .custom-table .tHead .tRow {
            margin-bottom: 15px
        }

    .custom-table .tBody {
        font-size: 14px;
        color: #214570;
        margin-bottom: 5px
    }

        .custom-table .tBody .tRow + .tRow {
            margin-top: 15px
        }

    .custom-table .tRow {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        height: 55px;
        min-width: max-content;
        padding: 0 10px;
        margin: 0 5px 15px;
        box-shadow: -2px 2px 4px 0 rgba(0,106,70,.15)
    }

    .custom-table .tCol {
        padding: 0 5px
    }

.breadcrumb {
    padding: 10px 0;
    margin: 0;
    background: none;
    font-size: 14px
}

    .breadcrumb .breadcrumb-item:not(.active) a {
        color: #0D8F75;
        transition: all .3s linear
    }

        .breadcrumb .breadcrumb-item:not(.active) a:hover {
            color: #0D8F75
        }

    .breadcrumb .breadcrumb-item + .breadcrumb-item {
        display: flex
    }



    .breadcrumb .breadcrumb-item.active span {
        color: #0D8F75;
        text-decoration: underline
    }

.card-with-logo-header {
    border-radius: 15px;
    border: none;
    overflow: hidden;
    box-shadow: -5px 10px 30px 0 rgba(0,106,70,.1)
}

    .card-with-logo-header .banner {
        position: relative;
        background-color: #e8e7e3
    }

        .card-with-logo-header .banner .background-wrapper {
            background: url(/assets/images/backgrounds/molcase.jpg) no-repeat;
            background-size: cover;
            background-position: 0 -140px;
            opacity: .7;
            height: 300px;
            overflow: hidden
        }

        .card-with-logo-header .banner .logo {
            left: 5%;
            width: 16%
        }

        .card-with-logo-header .banner .background-wrapper img.w-100 {
            visibility: hidden;
            margin: -60px 0
        }

        .card-with-logo-header .banner .logo {
            position: absolute;
            right: 18%;
            top: 50%;
            transform: translateY(-50%);
            width: 15%
        }

.home-page .sponsers .sponser-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}


.edit-account-page {
    color: #214570
}

    .edit-account-page input::placeholder {
        color: #214570;
        opacity: .5
    }

    .edit-account-page input:-ms-input-placeholder {
        color: #214570;
        opacity: .5
    }

    .edit-account-page input::-ms-input-placeholder {
        color: #214570;
        opacity: .5
    }

    .edit-account-page .head-section {
        padding-bottom: 45px
    }

    .edit-account-page h4 {
        color: #214570;
        margin-bottom: 0
    }

    .edit-account-page .form-group {
        margin-bottom: 2rem
    }

    .edit-account-page input {
        border-bottom: 1.5px solid #d1d1d1;
        outline: none
    }

    .edit-account-page .actions {
        padding: 30px 0 0
    }

        .edit-account-page .actions .btn {
            padding: 10px 35px;
            border-radius: 30px;
            font-size: 15px;
        }

    .edit-account-page .already-verified {
        background: #f2f2f2;
        border-radius: 30px;
        font-size: 13px;
        color: #214570;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 25px;
        width: 130px;
        max-width: 100%
    }

        .edit-account-page .already-verified .material-icons {
            font-size: 17px;
            color: #0D8F75;
            margin-right: 5px
        }

    .edit-account-page .verify-action {
        padding: 10px 25px;
        width: 130px;
        max-width: 100%
    }

    .edit-account-page span.error {
        color: #dc3545;
        font-size: 14px
    }

    .edit-account-page .info-message {
        font-weight: 100;
        color: #043b4c;
        opacity: .5;
        margin-top: 20px
    }

.donation-links .title {
    color: #214570;
    font-size: 24px
}

.donation-links .card {
    border-radius: 16px
}

    .donation-links .card .label {
        font-size: 16px;
        text-align: center
    }

    .donation-links .card .value {
        font-size: 22px
    }

.donation-links .avatar-wrapper .avatar-icon {
    width: 50px;
    height: 50px;
    background: #fff
}

    .donation-links .avatar-wrapper .avatar-icon img {
        width: 60%;
        margin: auto
    }

.donation-links .img-shadow {
    box-shadow: -5px 10px 20px 0 rgba(0,106,70,.15)
}

.donation-links .custom-table .copy-icon {
    color: #b6b6b6;
    cursor: pointer;
    transition: all .2s linear
}

    .donation-links .custom-table .copy-icon:hover {
        color: #636363
    }

    .donation-links .custom-table .copy-icon .material-icons {
        font-size: 20px
    }

.donation-links .custom-table .tCol:first-child {
    width: 100px;
    min-width: 100px
}

.donation-links .custom-table .tCol:nth-child(2), .donation-links .custom-table .tCol:nth-child(3) {
    width: 160px;
    min-width: 160px;
}

.donation-links .custom-table .tCol:nth-child(4) {
    max-width: 640px;
    min-width: 300px
}

.donation-links .custom-table .tCol .link {
    color: #214570;
    text-decoration: underline
}

    .donation-links .custom-table .tCol .link:hover {
        color: #008fb8
    }

.donation-links .message-box {
    font-size: 14px
}

.shared-links .title {
    color: #214570;
    font-size: 24px
}

.shared-links .card {
    border-radius: 16px
}

    .shared-links .card .value {
        font-size: 22px;
        width: 100px
    }

.shared-links .avatar-icon {
    width: 50px;
    height: 50px;
    background: #fff
}

    .shared-links .avatar-icon img {
        width: 60%;
        margin: auto
    }

.shared-links .img-shadow {
    box-shadow: -5px 10px 20px 0 rgba(0,106,70,.15)
}

.shared-links .custom-table .copy-icon {
    color: #b6b6b6;
    cursor: pointer;
    transition: all .2s linear;
    display: flex;
    align-items: center
}

    .shared-links .custom-table .copy-icon:hover {
        color: #06b085
    }

    .shared-links .custom-table .copy-icon .material-icons {
        font-size: 20px
    }

.shared-links .custom-table .tCol:first-child {
    width: 150px;
    min-width: 150px
}

.shared-links .custom-table .tCol:nth-child(2) {
    width: 470px;
    min-width: 470px
}

.shared-links .custom-table .tCol:nth-child(3), .shared-links .custom-table .tCol:nth-child(4), .shared-links .custom-table .tCol:nth-child(5) {
    width: 100px;
    min-width: 100px
}

.shared-links .custom-table .tCol:nth-child(6) {
    width: 90px;
    min-width: 90px
}

.shared-links .custom-table .tCol .link {
    color: #214570;
    text-decoration: underline
}

    .shared-links .custom-table .tCol .link:hover {
        color: #008fb8
    }

.shared-links .message-box {
    font-size: 14px
}

.personal-page .bg-logo {
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 105px 185px
}

.personal-page .card.bg-logo {
    font-size: 12px
}

    .personal-page .card.bg-logo .btn {
        width: max-content;
        position: absolute;
        bottom: 10px;
        left: 10px;
        border-radius: 10px
    }

    .personal-page .card.bg-logo h6 {
        font-size: 14px
    }

.personal-page img.avatar {
    width: 100px
}

.personal-page .avatar-icon {
    width: 120px;
    height: 120px;
    background: #fff
}

    .personal-page .avatar-icon img {
        width: 60%;
        margin: auto
    }

.personal-page .img-shadow {
    box-shadow: -5px 10px 20px 0 rgba(0,106,70,.15)
}

.personal-page .price-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

    .personal-page .price-item .title {
        font-size: 19px;
        font-weight: 600;
        color: #214570
    }

    .personal-page .price-item .amount {
        font-size: 38px;
        width: 100%;
        text-align: center
    }

.personal-page .data-table .card {
    box-shadow: -2px 2px 4px 0 rgba(0,106,70,.15);
    color: #214570;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 20px 0
}

.personal-page .data-table .item-1, .personal-page .data-table .item-2 {
    width: 25%
}

.personal-page .data-table .item-3 {
    width: 120px
}

.personal-page .data-table .item-4 {
    flex: 1
}

.personal-page .data-table .item-5 {
    width: 80px
}

.personal-page .data-table .item-6 {
    text-align: center;
    position: relative
}

    .personal-page .data-table .item-6 .info-icon {
        font-size: 14px;
        position: absolute;
        right: -15px;
        top: -2px
    }

    .personal-page .data-table .item-6 .text {
        margin-right: 30px
    }

    .personal-page .data-table .item-6.in-active {
        color: #c9c9c9
    }

        .personal-page .data-table .item-6.in-active .info-icon {
            display: none
        }

.personal-page .data-table .header .item-6 {
    margin-right: 60px
}

.personal-page .data-table .date, .personal-page .data-table .desc, .personal-page .data-table .name {
    font-weight: 600;
    font-size: 14px
}

.personal-page .data-table .data .card {
    padding: 21px 0;
    justify-content: center
}

.personal-page a.btn-primary-green {
    color: #fff
}

.personal-page .verify-action {
    font-size: 12px;
    color: #b6b6b6;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all .3s
}

    .personal-page .verify-action .material-icons {
        font-size: 22px
    }

    .personal-page .verify-action:hover {
        color: #0D8F75
    }

.personal-page .card {
    border-radius: 16px
}

.personal-page .donut-chart {
    height: 40px;
    width: 40px;
    position: relative;
    margin: auto
}

    .personal-page .donut-chart svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
        background: #fff;
        border-radius: 50%
    }

    .personal-page .donut-chart circle {
        fill: #bebebe;
        stroke: #0D8F75;
        stroke-width: 32;
        stroke-dasharray: 70 100;
        transition: stroke-dasharray .5s ease
    }

.personal-page .donut-center {
    background: #fff;
    color: #214570;
    font-size: 10px;
    border-radius: 50%;
    position: absolute;
    height: 80%;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 25% 0
}

.personal-page .user-details .avatar {
    border: 3px solid #0D8F75;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff
}

    .personal-page .user-details .avatar img {
        height: 70%;
        width: 70%
    }

.fixed-side-menu .field-validation-error span {
    margin-bottom: 10px;
}

.fixed-side-menu.has-focus .title {
    width: 210px;
}

.fixed-side-menu .icon {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-side-menu.has-focus .icon {
    border-bottom-left-radius: 0;
}

.fixed-side-menu .icon .round {
    height: 16px;
    line-height: 1.4;
}

.fixed-side-menu.varient-2.has-focus .icon {
    text-align: left;
    width: 310px;
    border-bottom-left-radius: 0px;
}

.fixed-side-menu.varient-2.has-focus .hovered {
    padding: 0 20px;
    color: white !important;
    margin-right: auto;
}

    .fixed-side-menu.varient-2.has-focus .hovered span {
        color: white !important;
        display: inline-block;
        margin-top: 5px;
    }

.fixed-side-menu.varient-2 .title {
    display: none;
}

.fixed-side-menu.varient-2.has-focus .icon {
    text-align: left;
    width: 310px;
    border-bottom-left-radius: 0px;
}

.fixed-side-menu.varient-2.has-focus .hovered {
    padding: 0 20px;
    color: white !important;
}

.fixed-side-menu .payment .card-holder-name {
    text-transform: uppercase;
}

.fixed-side-menu .card-icon {
    position: absolute;
    top: 0.9px;
    left: 1px;
    height: 36.6px;
    background: #e8ecef;
    border-right: 2px solid #d1d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .65rem 0 0 .65rem;
}

.fixed-side-menu .card-icon-image {
    max-height: 70%;
    margin: 9% 8px;
    max-width: 30px;
}

.fixed-side-menu {
    max-width: 310px;
    top: 165px;
    z-index: 9;
}

    .fixed-side-menu.has-focus .title {
        width: 270px;
    }

    .fixed-side-menu.varient-2.has-focus .icon {
        width: 310px;
    }

    .fixed-side-menu form input.error {
        border: 1px solid #f25e09;
    }

    .fixed-side-menu form span.error {
        display: none !important;
    }

    .fixed-side-menu .error-box {
        position: relative;
    }

        .fixed-side-menu .error-box input.amount.error ~ .error-border {
            visibility: visible;
        }

    .fixed-side-menu .error-border {
        visibility: hidden;
        content: "";
        position: absolute;
        border: 1px solid #f25e09;
        border-radius: 20px;
        top: -1px;
        bottom: -1px;
        right: -1px;
        left: -1px;
    }

    .fixed-side-menu .amount {
        z-index: 1;
    }

    .fixed-side-menu .price-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .fixed-side-menu .apple-pay {
        margin-bottom: 10px;
    }

    .fixed-side-menu .payment-info-box {
        color: white;
        background: #0d8f75;
        font-size: 12px;
        padding: 10px 15px;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

        .fixed-side-menu .payment-info-box .edit-amount-btn {
            color: inherit;
            font-size: inherit;
            padding: 0;
        }

        .fixed-side-menu .payment-info-box .amount-display {
            font-size: 16px;
            /* margin-right: 20px;*/
        }

#cart_total {
    font-size: 22px;
}

.payment-methods img {
    max-width: 65px;
    margin-left: 5px;
}

.price-details span.error {
    color: #f25e09;
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    right: 0;
    bottom: -21px;
}

.toggle-hide, .creditCardForm .payment-info-box input.error ~ span ~ span .amount-display {
    position: fixed;
    top: -300px;
    z-index: -1;
}

.cart .card.total-amount {
    border-radius: 23px;
}

    .cart .card.total-amount h6 {
        font-weight: 700;
        font-size: 20px;
    }

    .cart .card.total-amount .amount-unit {
        font-size: 24px;
    }

        .cart .card.total-amount .amount-unit #cart_total {
            font-size: 28px;
        }

    .cart .card.total-amount .separator-vertical {
        height: 1px;
        width: 100%;
        margin: 30px 0;
        background-color: #F2F2F2;
    }

    .cart .card.total-amount .btn-primary-blue {
        font-size: 18px;
        font-weight: 600;
        padding: 8px 80px;
        width: max-content;
        margin-right: auto;
    }

.cart.donations .card {
    font-size: 15px;
}

.cart .price-details {
    font-size: 15px !important;
}

.Payment-details-page .payment-info .card-header {
    border-radius: 20px 20px 0 0;
    height: 110px;
}

    .Payment-details-page .payment-info .card-header img {
        position: absolute;
        left: -5px;
        top: -55px;
        clip: rect(55px,500px,165px,0);
    }

.Payment-details-page .payment-info .cart-items {
    list-style: none;
    padding: 0;
    padding: 15px 0 0px;
}

    .Payment-details-page .payment-info .cart-items li {
        display: flex;
        justify-content: space-between;
        font-size: 18px;
    }

        .Payment-details-page .payment-info .cart-items li:not(:last-of-type) {
            margin-bottom: 15px;
        }

        .Payment-details-page .payment-info .cart-items li .item-amount {
            font-size: 22px;
        }

.Payment-details-page .line-with-words.page-title .title {
    font-size: 20px;
    font-weight: 600;
}

.Payment-details-page .line-with-words {
    margin-bottom: 25px;
    margin-top: 15px;
}

    .Payment-details-page .line-with-words .title {
        font-size: 16px;
        font-weight: 600;
        font-family: 'AdelleSansARA-Semibold';
    }

.custom-table {
    padding: 0 5px
}

    .custom-table .tHead {
        font-size: 14px
    }

        .custom-table .tHead .tRow {
            margin-bottom: 15px
        }

    .custom-table .tBody {
        font-size: 14px;
        color: #6C757D;
        margin-bottom: 5px
    }

        .custom-table .tBody .tRow + .tRow {
            margin-top: 15px
        }

    .custom-table .tRow {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        height: 55px;
        min-width: max-content;
        padding: 0 10px;
        margin: 0 5px 15px;
        box-shadow: -2px 2px 4px 0 rgba(0,106,70,.15)
    }

    .custom-table .tCol {
        padding: 0 5px
    }

.breadcrumb {
    padding: 10px 0;
    margin: 0;
    background: none;
    font-size: 14px
}

    .breadcrumb .breadcrumb-item:not(.active) a {
        color: #0D8F75;
        transition: all .3s linear
    }

        .breadcrumb .breadcrumb-item:not(.active) a:hover {
            color: #0D8F75
        }

    .breadcrumb .breadcrumb-item + .breadcrumb-item {
        display: flex
    }



    .breadcrumb .breadcrumb-item.active span {
        color: #0D8F75;
        text-decoration: underline
    }

.card-with-logo-header {
    border-radius: 15px;
    border: none;
    overflow: hidden;
    box-shadow: -5px 10px 30px 0 rgba(0,106,70,.1)
}

    .card-with-logo-header .banner {
        position: relative;
        background-color: #e8e7e3
    }

        .card-with-logo-header .banner .background-wrapper {
            background: url(/assets/images/backgrounds/molcase.jpg) no-repeat;
            background-size: cover;
            background-position: 0 -140px;
            opacity: .7;
            height: 300px;
            overflow: hidden
        }

        .card-with-logo-header .banner .logo {
            left: 5%;
            width: 16%
        }

        .card-with-logo-header .banner .background-wrapper img.w-100 {
            visibility: hidden;
            margin: -60px 0
        }

        .card-with-logo-header .banner .logo {
            position: absolute;
            right: 18%;
            top: 50%;
            transform: translateY(-50%);
            width: 15%
        }

.home-page {
    color: #214570
}

    .home-page .slider {
        background-color: #ffffff;
        height: 90vh;
        position: relative;
    }

        .home-page .slider .background-wrapper {
            background: url(/assets/images/backgrounds/homepage-section-1-bg.png) no-repeat 50% fixed;
            background-size: cover
        }

        .home-page .slider .content {
            position: absolute;
            right: 0;
            left: 0;
            top: 0;
            bottom: 0;
            color: #fff;
        }

            .home-page .slider .content .carousel-items h1 {
                font-size: 50px;
                font-family: "AdelleSansARA-Semibold";
            }

            .home-page .slider .content .carousel-items .btn {
                font-size: 20px;
                font-weight: bold;
                border-radius: 100px;
                transition: all .2s linear;
            }

                .home-page .slider .content .carousel-items .btn:hover {
                    box-shadow: 0 3px 8px 0 rgba(0,0,0,.2)
                }

            .home-page .slider .content .swiper-pagination {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 150px;
                bottom: 60px
            }

                .home-page .slider .content .swiper-pagination .swiper-pagination-bullet {
                    width: 20px;
                    height: 5px;
                    opacity: 1;
                    transform: scale(1);
                    background-color: #AFAFAF;
                    right: 0 !important;
                    border-radius: 50px;
                }

                .home-page .slider .content .swiper-pagination .swiper-pagination-bullet-active {
                    width: 50px;
                    right: 0;
                    background-color: #fff;
                }

    .home-page .card {
        font-weight: 100;
        border: 0;
        border-radius: 25px
    }

        .home-page .card .price-details {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 20px;
            padding: 0 10px;
            font-size: 13px;
            border: 1px solid #c9c9c9;
            color: #c9c9c9;
            flex: 50%;
        }

            .home-page .card .price-details input {
                width: 75%;
                border: none;
                outline: none;
                height: 30px;
                color: #214570;
                font-size: 14px
            }

                .home-page .card .price-details input::-webkit-input-placeholder {
                    padding-top: 4px
                }

                .home-page .card .price-details input::-moz-placeholder {
                    padding-top: 4px
                }

                .home-page .card .price-details input:-ms-input-placeholder {
                    padding-top: 4px
                }

                .home-page .card .price-details input:-moz-placeholder {
                    padding-top: 4px
                }

        .home-page .card .btn {
            font-weight: inherit
        }

        .home-page .card h6 {
            margin: 0;
            font-size: 20px;
            font-family: "AdelleSansARA-Semibold";
        }

        .home-page .card .share-icon-btn {
            font-size: 22px;
            color: #06b085;
            padding: 0;
            line-height: 0
        }

.card .share-icon-btn .material-icons {
    font-size: 22px;
    background-color: #F4F4F4;
    border-radius: 50%;
    padding: 10px;
}

.home-page .content-1 {
    position: relative;
    width: 100%;
    color: #fff;
    background-color: #8c837a;
    background-image: url(/assets/images/backgrounds/footer-bg.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 526px;
}

    .home-page .content-1:before {
        background-color: rgb(13 143 117 / 85%);
        background: linear-gradient( 60deg,#214570 0,#0D8F75 100%);
        opacity: .9;
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%
    }

    .home-page .content-1 > .container {
        padding: 30px 0 10px;
        min-height: 526px;
    }

    .home-page .content-1 .box {
        background-color: hsla(0,0%,100%,.09);
        border-radius: 16px;
        padding: 20px 5px;
        width: 300px;
        max-width: 100%
    }

        .home-page .content-1 .box .icon {
            background: hsla(0,0%,100%,.36);
            color: #214570;
            padding: 7px 0;
            width: 45px;
            height: 45px;
            border-radius: 30px
        }

        .home-page .content-1 .box .title {
            color: #fff;
            font-size: 16px;
        }

        .home-page .content-1 .box .amount {
            font-size: 24px
        }

        .home-page .content-1 .box .currency {
            font-size: 20px
        }

.swiper-slide {
    background-repeat: no-repeat;
    background-position: 50%;
    background-attachment: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-bottom: 0 !important
}

    .swiper-slide > .container {
        position: relative;
        top: 40%
    }

i.fa.fa-phone.text-primary.mr-2 {
    transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg)
}

.edit-account-page {
    color: #214570
}

    .edit-account-page input::placeholder {
        color: #214570;
        opacity: .5
    }

    .edit-account-page input:-ms-input-placeholder {
        color: #214570;
        opacity: .5
    }

    .edit-account-page input::-ms-input-placeholder {
        color: #214570;
        opacity: .5
    }

    .edit-account-page .head-section {
        padding-bottom: 45px
    }

    .edit-account-page h4 {
        color: #214570;
        margin-bottom: 0;
        text-align: center;
    }

    .edit-account-page .form-group {
        margin-bottom: 2rem
    }

    .edit-account-page input {
        border-bottom: 1.5px solid #d1d1d1;
        outline: none
    }

    .edit-account-page .actions {
        padding: 30px 0 0
    }

        .edit-account-page .actions .btn {
            padding: 10px 35px
        }

    .edit-account-page .brdr {
        padding: 10px 35px;
        color: #214570;
        border-color: #214570;
    }

        .edit-account-page .brdr:hover {
            color: #fff;
            background-color: #214570;
            border-color: #214570
        }


    .edit-account-page .already-verified {
        background: #f2f2f2;
        border-radius: 30px;
        font-size: 13px;
        color: #214570;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 25px;
        width: 130px;
        max-width: 100%
    }

        .edit-account-page .already-verified .material-icons {
            font-size: 17px;
            color: #0D8F75;
            margin-right: 5px
        }

    .edit-account-page .verify-action {
        padding: 10px 25px;
        width: 130px;
        max-width: 100%
    }

    .edit-account-page span.error {
        color: #dc3545;
        font-size: 14px
    }

    .edit-account-page .info-message {
        font-weight: 100;
        color: #043b4c;
        opacity: .5;
        margin-top: 20px
    }

.donation-links .title {
    color: #214570;
    font-size: 24px;
    margin-bottom: 1rem;
    margin-right: .8rem;
}

.donation-links .card {
    border-radius: 16px
}

    .donation-links .card .label {
        font-size: 20px;
        text-align: center
    }

    .donation-links .card .value {
        font-size: 28px;
    }

.donation-links .avatar-wrapper .avatar-icon {
    width: 50px;
    height: 50px;
    background: #fff
}

    .donation-links .avatar-wrapper .avatar-icon img {
        width: 60%;
        margin: auto
    }

.donation-links .img-shadow {
    box-shadow: -5px 10px 20px 0 rgba(0,106,70,.15)
}

.donation-links .custom-table .copy-icon {
    color: #b6b6b6;
    cursor: pointer;
    transition: all .2s linear
}

    .donation-links .custom-table .copy-icon:hover {
        color: #636363
    }

    .donation-links .custom-table .copy-icon .material-icons {
        font-size: 20px
    }

.donation-links .custom-table .tCol:first-child {
    width: 100px;
    min-width: 100px
}

.donation-links .custom-table .tCol:nth-child(2), .donation-links .custom-table .tCol:nth-child(3) {
    width: 160px;
    min-width: 160px
}

.donation-links .custom-table .tCol:nth-child(4) {
    max-width: 640px;
    min-width: 300px
}

.donation-links .custom-table .tCol .link {
    color: #214570;
    text-decoration: none;
    font-family: "AdelleSansARA-Semibold";
    color: #0D8F75;
}

    .donation-links .custom-table .tCol .link:hover {
        color: #008fb8
    }

.donation-links .message-box {
    font-size: 14px
}

.shared-links .title {
    color: #214570;
    font-size: 24px;
    margin-bottom: 1rem;
    margin-right: .8rem;
}

.shared-links .card {
    border-radius: 16px
}

    .shared-links .card .label {
        font-size: 16px;
    }

    .shared-links .card .value {
        font-size: 22px;
        width: 100px
    }

.shared-links .avatar-icon {
    width: 50px;
    height: 50px;
    background: #fff
}

    .shared-links .avatar-icon img {
        width: 60%;
        margin: auto
    }

.shared-links .img-shadow {
    box-shadow: -5px 10px 20px 0 rgba(0,106,70,.15)
}

.shared-links .custom-table .copy-icon {
    color: #b6b6b6;
    cursor: pointer;
    transition: all .2s linear;
    display: flex;
    align-items: center
}

    .shared-links .custom-table .copy-icon:hover {
        color: #06b085
    }

    .shared-links .custom-table .copy-icon .material-icons {
        font-size: 20px
    }

.shared-links .custom-table .tCol:first-child {
    width: 150px;
    min-width: 150px
}

.shared-links .custom-table .tCol:nth-child(2) {
    width: 470px;
    min-width: 470px
}

.shared-links .custom-table .tCol:nth-child(3), .shared-links .custom-table .tCol:nth-child(4), .shared-links .custom-table .tCol:nth-child(5) {
    width: 100px;
    min-width: 100px
}

.shared-links .custom-table .tCol:nth-child(6) {
    width: 90px;
    min-width: 90px
}

.shared-links .custom-table .tCol .link {
    /*color: #214570;*/
    text-decoration: none;
    font-family: "AdelleSansARA-Semibold";
    color: #0D8F75;
}

    .shared-links .custom-table .tCol .link:hover {
        color: #008fb8
    }

.shared-links .message-box {
    font-size: 14px
}

.personal-page .bg-logo {
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 105px 185px
}

.personal-page .card.bg-logo {
    font-size: 12px
}

    .personal-page .card.bg-logo .btn {
        width: max-content;
        position: absolute;
        bottom: 10px;
        left: 10px;
        border-radius: 10px
    }

    .personal-page .card.bg-logo h6 {
        font-size: 14px
    }

.personal-page img.avatar {
    width: 100px
}

.personal-page .avatar-icon {
    width: 120px;
    height: 120px;
    background: #fff
}

    .personal-page .avatar-icon img {
        width: 60%;
        margin: auto
    }

.personal-page .img-shadow {
    box-shadow: -5px 10px 20px 0 rgba(0,106,70,.15)
}

.personal-page .price-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

    .personal-page .price-item .title {
        font-size: 19px;
        font-weight: 600;
        color: #214570
    }

    .personal-page .price-item .amount {
        font-size: 28px;
        width: 100%;
        text-align: center
    }

.personal-page .data-table .card {
    box-shadow: -2px 2px 4px 0 rgba(0,106,70,.15);
    color: #214570;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 20px 0
}

.personal-page .data-table .item-1, .personal-page .data-table .item-2 {
    width: 25%
}

.personal-page .data-table .item-3 {
    width: 120px
}

.personal-page .data-table .item-4 {
    flex: 1
}

.personal-page .data-table .item-5 {
    width: 80px
}

.personal-page .data-table .item-6 {
    text-align: center;
    position: relative
}

    .personal-page .data-table .item-6 .info-icon {
        font-size: 14px;
        position: absolute;
        right: -15px;
        top: -2px
    }

    .personal-page .data-table .item-6 .text {
        margin-right: 30px
    }

    .personal-page .data-table .item-6.in-active {
        color: #c9c9c9
    }

        .personal-page .data-table .item-6.in-active .info-icon {
            display: none
        }

.personal-page .data-table .header .item-6 {
    margin-right: 60px
}

.personal-page .data-table .date, .personal-page .data-table .desc, .personal-page .data-table .name {
    font-weight: 600;
    font-size: 14px
}

.personal-page .data-table .data .card {
    padding: 21px 0;
    justify-content: center
}

.personal-page a.btn-primary-green {
    color: #fff
}

.personal-page .verify-action {
    font-size: 12px;
    color: #b6b6b6;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all .3s
}

    .personal-page .verify-action .material-icons {
        font-size: 22px
    }

    .personal-page .verify-action:hover {
        color: #0D8F75
    }

.personal-page .card {
    border-radius: 16px
}

.personal-page .donut-chart {
    height: 40px;
    width: 40px;
    position: relative;
    margin: auto
}

    .personal-page .donut-chart svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
        background: #fff;
        border-radius: 50%
    }

    .personal-page .donut-chart circle {
        fill: #bebebe;
        stroke: #0D8F75;
        stroke-width: 32;
        stroke-dasharray: 70 100;
        transition: stroke-dasharray .5s ease
    }

.personal-page .donut-center {
    background: #fff;
    color: #214570;
    font-size: 10px;
    border-radius: 50%;
    position: absolute;
    height: 80%;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 25% 0
}

.personal-page .user-details .avatar {
    border: 3px solid #dfe1e5;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff
}

    .personal-page .user-details .avatar img {
        height: 70%;
        width: 70%
    }

.personal-page .user-details .user-info {
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .personal-page .user-details .user-info .name {
        font-size: 19px
    }

    .personal-page .user-details .user-info .contacts {
        font-size: 13px
    }

        .personal-page .user-details .user-info .contacts > div {
            display: flex;
            align-items: center
        }

        .personal-page .user-details .user-info .contacts .mobile-number .text {
            text-decoration: inherit;
            color: inherit
        }

        .personal-page .user-details .user-info .contacts .icon-green {
            font-size: 16px;
            color: #0D8F75
        }

        .personal-page .user-details .user-info .contacts .icon-grey {
            font-size: 22px;
            color: #dadbdc
        }



.fixed-side-menu .clickable {
    cursor: pointer
}

.fixed-side-menu .title {
    text-align: right;
    color: #214570;
    background-color: #fff;
    width: 110px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.29);
    transition: all .3s ease
}

.fixed-side-menu .icon {
    background: #21446f;
    width: 40px;
    text-align: center;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

    .fixed-side-menu .icon, .fixed-side-menu .icon .round {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center
    }

        .fixed-side-menu .icon .round {
            border-radius: 25px;
            width: 16px;
            margin: auto;
            font-size: 30px;
            color: #21446f;
            background: #fff;
            padding: 11px;
            height: 16px;
            line-height: 1.4
        }

        .fixed-side-menu .icon .close-icon {
            color: #fff;
            font-size: 14px
        }

.fixed-side-menu .options {
    width: 100%;
    transition: all .2s ease-in-out .3s;
    position: absolute;
    right: 0;
    top: 36px;
    display: none;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 5px 6px 0 rgb(0 0 0 / 15%)
}

    .fixed-side-menu .options .nav-tabs li {
        padding: 9px;
        font-size: 13px;
        cursor: pointer;
        flex: 1;
        text-align: center;
        color: #0D8F75;
        font-weight: 700;
    }

        .fixed-side-menu .options .nav-tabs li:nth-child(1), .fixed-side-menu .options .nav-tabs li:nth-child(2) {
            border-left: 1px solid #ccc;
            margin-bottom: 4px;
        }

        .fixed-side-menu .options .nav-tabs li a {
            color: #0D8F75
        }

        .fixed-side-menu .options .nav-tabs li.active {
            background-color: #0D8F75;
            color: #fff;
            margin-bottom: 0;
        }

            .fixed-side-menu .options .nav-tabs li.active a {
                color: #fff
            }

        .fixed-side-menu .options .nav-tabs li:focus {
            outline: none;
        }

    .fixed-side-menu .options .tab-content .price-details {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 6px;
        padding: 6px 10px;
        font-size: 13px;
        border: 1px solid #c9c9c9;
        color: #c9c9c9;
        border: 1px solid #DFE1E5;
    }

        .fixed-side-menu .options .tab-content .price-details input {
            width: 70%;
            border: none;
            outline: none;
            height: 20px;
            color: #214570
        }

    .fixed-side-menu .options .tab-content > .active {
        opacity: 1;
        max-height: 55vh;
        overflow: auto;
    }

.fixed-side-menu .hovered {
    display: none
}

.fixed-side-menu .field-validation-error span {
    margin-bottom: 10px;
    color: #e0394a;
    font-weight: 500
}

.fixed-side-menu .text-desc {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 10px;
    display: inline-block;
    color: #063f50
}

.fixed-side-menu.has-focus .title {
    width: 270px
}

.fixed-side-menu.has-focus .icon {
    border-bottom-left-radius: 0
}

.fixed-side-menu.has-focus .options {
    display: block
}

.fixed-side-menu.has-focus .hide-hovered {
    display: none
}

.fixed-side-menu.has-focus .hovered {
    display: unset;
    font-size: 12px;
    border-radius: 20px;
}

.fixed-side-menu.varient-2 .title {
    display: none
}

.fixed-side-menu.varient-2 .icon {
    height: 36px;
    background: #21446f;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: all .1s linear
}

.fixed-side-menu.varient-2.has-focus .icon {
    text-align: left;
    width: 310px;
    border-bottom-left-radius: 0
}

.fixed-side-menu.varient-2.has-focus .hovered {
    margin-right: auto;
    padding: 0 20px;
    color: #fff !important
}

    .fixed-side-menu.varient-2.has-focus .hovered span {
        color: #fff !important;
        display: inline-block;
        margin-top: 5px
    }

.text-copied-msg {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
/****************************************************************
********************************** MHD ALAA ABOUT STYLE ********************************
******************************************************************
*/
.about-page {
    overflow: hidden;
}

    .about-page > section {
        position: relative;
        padding: 20px 0 40px;
    }

        .about-page > section:first-child {
            padding: 80px 20px;
        }

        .about-page > section.bg-grey {
            background-color: #F9F9F9;
        }

.about-main {
    background-image: url(../images/aboutpage/about-main/white-plant-vector-xs.svg), url(../images/aboutpage/about-main/green-overlay.svg), url(../images/aboutpage/about-main/plant-bg.jpg);
    background-position: -165px 0, top left, -475px 0;
    background-size: contain, cover, cover;
    background-repeat: no-repeat;
}

    .about-main h1 {
        font-size: 2rem;
    }

    .about-main p {
        font-size: 16px;
    }

    .about-main .about-main-logos img {
        height: 55px;
    }

.about-vision {
    background-image: url(../images/aboutpage/about-vision/bg.svg);
    background-position: right -120px bottom;
    background-repeat: no-repeat;
}

    .about-vision .about-vision-icon {
        position: relative;
        display: inline-block;
    }

        .about-vision .about-vision-icon .dashed-circle {
            position: absolute;
            max-width: initial;
            right: -4px;
            top: -4px;
            width: 83px;
        }

    .about-vision .row .col-12 .about-vision-icon .dashed-line,
    .about-vision .row .col-12 .about-vision-icon .dashed-line-2 {
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        width: 1.5px;
    }

    .about-vision .row .col-12:nth-child(1) .about-vision-icon .dashed-line {
        bottom: -37px;
    }

    .about-vision .row .col-12:nth-child(2) .about-vision-icon .dashed-line-2 {
        bottom: -50px;
    }

    .about-vision .row .col-12:nth-child(2) .about-vision-icon .dashed-line {
        top: -10px;
    }

    .about-vision .row .col-12:nth-child(3) .about-vision-icon .dashed-line {
        top: -9px;
    }

    .about-vision .about-vision-icon .vector-icon {
        width: 75px;
    }

    .about-vision .about-vision-icon + p {
        margin: 25px 0;
        z-index: 1;
        position: relative;
    }

    .about-vision .row .col-12:nth-child(3) .about-vision-icon + p {
        margin-top: 0;
    }

.about-page > section .section-title {
    position: relative;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    z-index: 1;
}

    .about-page > section .section-title span {
        color: #214570;
        background-color: #fff;
        padding: 0 10px;
        display: inline-block;
    }

    .about-page > section .section-title:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #B6B6B6;
        right: 0;
        top: 15px;
        z-index: -1;
    }

.about-page > section.bg-grey .section-title span {
    background-color: #F9F9F9;
}

.about-goals {
    z-index: 1;
}

    .about-goals:after {
        content: '';
        width: 200px;
        height: 495px;
        position: absolute;
        z-index: -1;
        left: -60px;
        top: 150px;
        background-image: url(../images/aboutpage/about-goals/bg.svg);
        background-repeat: no-repeat;
    }

.about-goals-box {
    background-image: url(../images/aboutpage/about-goals/icon.svg);
    background-position: right -5px;
    background-repeat: no-repeat;
    padding-right: 23px;
}

    .about-goals-box h5 {
        color: #123D64;
        font-size: 18px;
    }

    .about-goals-box p {
        font-size: 14px;
    }

.about-features:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -60px;
    background-image: url(../images/aboutpage/about-features/bg.svg);
    background-repeat: no-repeat;
    background-position: right -300px bottom 0px;
}

.about-features .card {
    z-index: 2;
    box-shadow: 0px 2px 15px #b2b2b233;
}

    .about-features .card .feature-title {
        position: relative;
        color: #068571;
        font-size: 16px;
        font-weight: bold;
        background-image: url(../images/aboutpage/about-features/icon.svg);
        background-position: 45px -5px;
        background-repeat: no-repeat;
        margin-top: 30px;
        padding-bottom: 20px;
        min-width: 85px;
        text-align: center;
    }

        .about-features .card .feature-title::before {
            content: '';
            position: absolute;
            right: 11px;
            top: -22px;
            background-color: rgb(239 239 239 / 54%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            z-index: -1;
        }

    .about-features .card .feature-text {
        color: #777777;
        font-size: 14px;
        align-self: center;
        margin-bottom: 0;
    }

.about-donation-key {
    text-align: center;
    margin-bottom: 50px;
}

.donation-key-circle {
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0px 3px 6px #B7B7B729;
}

    .donation-key-circle img {
        width: 40px;
    }

.about-donation-key label {
    font-size: 14px;
    color: #4E4E4E;
}

/*
***************************************************************
********************************** End OF MHD ALAA ABOUT STYLE ********************************
******************************************************************
*/
.form-control,
.input-group-text {
    border: 1px solid #DFE1E5;
    border-radius: .65rem;
}

    .form-control:disabled + .input-group-append span {
        background-color: #e9ecef !important;
        opacity: 1;
    }

.field-validation-valid, .field-validation-valid ~ .input-group-append .input-group-text {
    border-color: #dc3545 !important;
}

.input-group-text {
    padding: 0.375rem .35rem;
}

.border-right-input {
    border-top-right-radius: .65rem !important;
    border-bottom-right-radius: .65rem !important;
}

.border-left-input {
    border-top-left-radius: .65rem !important;
    border-bottom-left-radius: .65rem !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #DFE1E5 !important;
    border-radius: .65rem !important;
}

.form-control:focus {
    border-color: #DFE1E5;
    box-shadow: none;
}

.input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
    padding-left: 0;
}

.all-projects .section-bg {
    background: #FAFAFA;
    position: absolute;
    width: 200%;
    height: 110%;
    border-radius: 52px;
    top: -20px;
    z-index: -1;
}

    .all-projects .section-bg.right-bg {
        left: -100px;
    }

    .all-projects .section-bg.left-bg {
        right: -100px;
    }

.bg-transparency-30 {
    background-color: rgb(255 255 255 / 30%);
}

.border-rounded-top-13 {
    border-top-left-radius: 13px !important;
    border-top-right-radius: 13px !important;
}

.custom-card-header > .replaced-link {
    flex: 1;
    width: 80%;
    outline: none !important;
}

.all-projects h6,
.home-page .card h6 {
    width: 100% !important;
    max-width: 100% !important;
}
/****************************************************************
********************************** MEDIA QUIRIES ********************************
******************************************************************
*/
@media (min-width: 576px) {
    .about-page > section:first-child {
        padding: 120px 0;
    }

    .about-features:after {
        background-position: right -240px bottom 0px;
    }
}

@media (min-width: 576px ) and (max-width:767px) {
    .droopmenu > li a.droopmenu-button span {
        height: 36px;
        padding: 0 30px;
        font-size: 16px;
        line-height: 36px;
    }

    .droopmenu > li.ddItem > a {
        padding: 17px 5px;
    }

    .contact-us .card .banner .background-wrapper {
        background-position: 0 -138px;
        height: 280px;
    }

    .card-with-logo-header .banner .background-wrapper {
        background-position: 0 90%;
        height: 250px
    }
}

@media (min-width: 768px) {

    .forijat-filter-card {
        box-shadow: 0 1px 11px rgb(0 0 0 / 16%);
        border-radius: 16px;
    }

    .gheras .steps img {
        max-width: 500px;
    }

    .gheras .steps p {
        max-width: 380px;
    }

    .gheras .steps h4 {
        max-width: 400px;
    }

    .forijat-filter .select2-container:nth-of-type(3n+0) {
        margin-left: 0 !important;
    }

    .droopmenu-navbar a.droopmenu-brand-mobile {
        position: absolute;
        right: 40px;
        top: 0;
        background: #fff;
        box-shadow: 0 3px 5px rgb(177 177 177 / 16%);
        padding: 5px 20px 30px;
        border-radius: 0 0 30px 30px;
        z-index: 999;
        width: 141px;
        height: 152px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .opaque .droopmenu-navbar a.droopmenu-brand-mobile {
        width: 121px;
        height: 122px;
    }

    .opaque .droopmenu-brand img {
        height: 90px;
    }

    .droopmenu-brand img {
        height: 116px;
    }

    .droopmenu {
        display: flex;
        align-items: center;
    }

        .droopmenu + .droopmenu {
            float: left;
        }

        .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu {
            background: #f5f5f5;
        }

            .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu li a {
                color: #214570;
                border-radius: 20px;
            }

            .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col:hover {
                background: #0D8F75;
            }

                .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col:hover a {
                    color: white;
                }

    li.ddItem {
        padding: 0;
        margin: 0 15px;
    }

    .droopmenu > li {
        margin-top: 0;
    }

        .droopmenu > li i {
            height: 100%;
            width: 100%;
            top: 0;
            bottom: 0;
            right: 0;
        }

    span.droopmenu-indicator {
        margin: 0;
    }

    .droopmenu li ul li a {
        font-weight: 500;
    }

    .droopmenu li.ddItem.active > a > i {
        display: none;
        width: 100%;
        right: 0;
    }

    li.ddItem a:hover > i.hoverddItem {
        display: inline !important;
    }

    footer.footer-large .content-4 {
        font-size: 14px;
    }

    .line-with-words .title {
        font-size: 28px;
        font-weight: 600;
        min-width: max-content;
    }

    .DonationCasesLabel {
        display: none;
    }

    .login input::-webkit-input-placeholder,
    .login input:-moz-placeholder,
    .login input:-ms-input-placeholder {
        color: #214570;
        opacity: 1;
    }

    /*about page*/
    .about-main {
        background-image: url(../images/aboutpage/about-main/white-plant-vector-lg.svg), url(../images/aboutpage/about-main/green-overlay.svg), url(../images/aboutpage/about-main/plant-bg.jpg);
        background-position: -110px 0, top left, top left;
    }

    .about-page.padding-header {
        padding-top: 130px;
    }

    .about-main h1 {
        font-size: 3rem;
    }

    .about-main p {
        font-size: 20px;
    }

    .about-page > section .section-title:before {
        width: 30%;
        right: 50%;
        transform: translate(50%, 50%);
    }

    .about-vision .about-vision-icon .dashed-line,
    .about-vision .about-vision-icon .dashed-line-2,
    .about-vision .about-vision-icon .dashed-circle {
        display: none;
    }

    .about-goals-box h5 {
        font-size: 22px;
    }

    .about-goals-box p {
        font-size: 16px;
        max-width: 200px;
    }

    .about-goals-box {
        margin-bottom: 35px;
    }

    .about-features .card .feature-title::before {
        right: 50%;
        top: -50px;
        transform: translate(50%, 50%);
    }

    .about-features .card {
        height: 100%;
    }

    .about-features:after {
        right: 0;
        bottom: -55px;
        background-position: right -200px bottom 0;
        height: 700px;
        background-size: 500px;
        background-image: url(../images/aboutpage/about-features/bg-lg-green.svg);
    }

    .about-features .card .feature-title {
        background-position: 88px -5px;
    }

    .about-vision .about-vision-icon .vector-icon {
        width: 140px;
    }

    .about-goals:after {
        height: 1112px;
        top: -200px;
        background-image: url(../images/aboutpage/about-goals/bg-lg.svg);
        background-size: 200px;
    }

    .about-vision {
        background-image: url(../images/aboutpage/about-vision/bg-lg.svg);
        background-position: right -350px bottom -250px;
    }

    .about-vision-icon.arrow-lg-1:after {
        content: '';
        width: 200px;
        height: 50px;
        position: absolute;
        left: -100px;
        top: 40px;
        background-image: url(../images/aboutpage/about-vision/left-arrow-up.svg);
        background-repeat: no-repeat;
        background-size: 100px;
    }

    .about-vision-icon.arrow-lg-2:after {
        content: '';
        width: 200px;
        height: 50px;
        position: absolute;
        left: -100px;
        top: 70px;
        background-image: url(../images/aboutpage/about-vision/left-arrow-down.svg);
        background-repeat: no-repeat;
        background-size: 100px;
    }

    .about-vision .row .col-12:nth-child(3) .about-vision-icon + p {
        margin-top: 25px;
    }

    .donation-key-circle {
        width: 80px;
        height: 80px;
        justify-content: center;
    }

        .donation-key-circle img {
            width: 50px;
        }

    .droopmenu-navi {
        padding-right: 175px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .zakkah-page .nav .nav-item:last-child {
        margin-left: 0;
        flex: 1.5;
    }

    .container-md {
        width: 100%;
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .padding-header {
        padding-top: 150px;
    }

    li.ddItem {
        padding: 0px 0px;
    }

    .droopmenu > li > a,
    .droopmenu > li > span {
        padding: 17px 25px;
    }

    .droopmenu > li {
        font-size: 12px;
    }

    header .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .droopmenu > li a.droopmenu-button span {
        height: 36px;
        padding: 0 14px;
        font-size: 16px;
        line-height: 36px;
    }

    .droopmenu > li.ddItem > a {
        padding: 10px 0px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .droopmenu > li.ddItem > a {
        padding: 17px 0 40px;
    }

    .zakkah-page .content .title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .zakkah-page .content .description {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .zakkah-page .content .input-data .input-wrapper input {
        font-size: 14px;
    }

    .zakkah-page .content .number {
        font-size: 50px;
        line-height: 50px;
    }

    .zakkah-page .content .currency {
        font-size: 14px;
    }

    .zakkah-page .content .add-to-cart-form .action {
        padding: 7px 60px;
        margin-left: 9px;
        font-size: 14px;
    }

    .zakkah-page .content .add-to-cart-form .btn-round-icon {
        padding: 9px 0;
        width: 36px;
        height: 34px;
    }

        .zakkah-page .content .add-to-cart-form .btn-round-icon .material-icons {
            font-size: 18px;
        }

    .zakkah-page .content .add-to-cart-form {
        margin-bottom: 8px;
    }

    .zakkah-page .content .custom-link {
        font-size: 14px;
    }

    .zakkah-page .modal-dialog.modal-dialog-centered {
        width: 500px;
    }

    .zakkah-page .modal .modal-content {
        padding: 40px 35px 60px;
    }

        .zakkah-page .modal .modal-content .title {
        }

    .zakkah-page .modal .seperator {
        margin: 14px 0;
    }

    .zakkah-page .modal .modal-content .result-amount {
        font-size: 15px;
    }

    .zakkah-page .modal .modal-content .input-data > h3 {
        font-size: 15px;
    }

    .zakkah-page .modal .modal-content .input-wrapper {
        padding: 9px 30px;
        font-size: 15px;
        margin-bottom: 30px;
    }

        .zakkah-page .modal .modal-content .input-wrapper input {
            font-size: 15px;
        }

    .zakkah-page .modal .modal-content .calculate-action {
        font-size: 15px;
        padding: 7px 70px;
    }

    .share-modal .modal-content {
        transform: scale(0.7);
    }
}

@media (min-width: 992px) {
    .droopmenu-navi {
        padding-right: 140px;
    }

    .droopmenu-navbar a.droopmenu-brand-mobile {
        right: 0;
    }

    .about-page > section {
        padding: 80px 20px;
    }

    .about-main {
        min-height: 880px;
    }

        .about-main .about-main-logos img {
            height: 80px;
        }

    .about-features .card .feature-title {
        background-position: 63% -5px;
    }

    .about-features:before {
        content: '';
        width: 200px;
        height: 1505px;
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: -1000px;
        background-image: url(../images/aboutpage/about-features/bg-lg-white.svg);
        background-repeat: no-repeat;
        background-position: left -740px bottom 0;
        background-size: 1300px;
    }

    .about-vision-icon.arrow-lg-1:after {
        left: -175px;
        background-size: 160px;
    }

    .about-vision-icon.arrow-lg-2:after {
        left: -175px;
        background-size: 160px;
    }

    .opaque .navigation ul.controls {
        padding: 0px 0 !important;
    }

    .opaque .droopmenu > li {
        font-size: 14px;
        margin-top: 0px;
    }

    .opaque .droopmenu-header {
        height: unset;
    }

    .opaque .droopmenu-navi {
        margin-top: 0px;
    }

    .opaque .droopmenu > li > a,
    .opaque .droopmenu > li > span {
        padding: 10px 20px 25px;
    }

    .opaque li.seperator {
        height: 34px;
        margin-bottom: 6px;
    }

    .opaque .droopmenu-extra span {
        height: 32px !important;
        line-height: 32px !important;
        padding: 0px 28px !important;
    }

    .opaque i.hoverddItem {
        left: 0;
        right: 0;
        top: 0px;
    }

    .opaque .droopmenu-navbar {
        margin-top: 0;
    }

    .swiper-slide > .container {
        transform: translate(0, -50%);
    }

    .padding-header {
        padding-top: 130px;
        width: 100%;
        background: transparent url(/assets/images/backgrounds/header-img.svg) left top 130px no-repeat;
        height: 100%;
    }

    .nav-link.nav-link-txt {
        padding-left: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact-us .card .banner .background-wrapper {
        background-position: 0 -100px;
        height: 268px;
    }

    .droopmenu > li > a,
    .droopmenu > li > span {
        padding: 5px 0px;
    }
}

@media (min-width: 1200px) {

    .droopmenu-navi {
        padding-right: 125px;
        margin-top: 14px;
    }

    .about-features .card .feature-title {
        background-position: 60% -5px;
    }

    .about-features:after {
        right: 0;
        bottom: -55px;
        background-position: right -300px bottom 0;
        height: 700px;
        background-size: 650px;
    }

    .about-vision-icon.arrow-lg-1:after {
        left: -210px;
        background-size: auto;
    }

    .about-vision-icon.arrow-lg-2:after {
        left: -210px;
        background-size: auto;
    }
}

@media (max-width: 1199px) {
    .all-projects .section-bg {
        height: 105%;
    }

    .rangeslider1.varient-2 .rangeslider-thumb {
        font-size: 10px;
        line-height: 17px;
        height: 15px;
        width: 29px;
    }

    .privacy-policy .page-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    .privacy-policy .card .content .title {
        font-size: 18px;
    }

    .privacy-policy .card .content .list-title {
        font-size: 20px;
    }

    .privacy-policy .card .content .list-sub-title {
        font-size: 16px;
    }

    .privacy-policy .card .content ul {
        margin-right: 24px;
    }

    .privacy-policy .card .content p {
        font-size: 16px;
    }

    .privacy-policy .card .content ul li {
        font-size: 16px;
    }

    .footer-large .content-3 {
        padding: 8px 0;
        font-size: 14px;
    }

    .footer-large .content-4 {
        font-size: 12px;
        padding: 8px 0;
    }

    .payment-details .creditCardForm .heading,
    .creditCardForm .heading {
        margin-bottom: 15px;
    }

    .payment-details .creditCardForm .already-member,
    .creditCardForm .already-member {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .payment-details .creditCardForm input,
    .creditCardForm input {
        font-size: 13px;
        padding: 5px;
        height: 30px;
    }

    .Payment-details-page .card-icon {
        height: 26px;
    }

    .payment-details .creditCardForm .expiry-dates,
    .creditCardForm .expiry-dates {
        max-width: 50%;
    }

    .payment-details .creditCardForm .cvv,
    .creditCardForm .cvv {
        width: 130px;
    }

    .Payment-details-page .amount-details .title {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .Payment-details-page .amount-details .amount {
        font-size: 20px;
        margin: 25px 0 25px;
    }

    .Payment-details-page .amount-details .user-details {
        font-size: 16px;
        margin: 25px 0 32px;
    }

        .Payment-details-page .amount-details .user-details > div:first-of-type {
            margin-bottom: 25px;
        }

    .payment-details .creditCardForm .custom-checkbox-round .custom-control-label,
    .creditCardForm .custom-checkbox-round .custom-control-label {
        margin-bottom: 10px;
    }

    .payment-details .bg-gradient {
        font-size: 16px;
    }

    .Payment-details-page .card-icon {
        height: 30px;
        top: 0;
        left: 0;
    }

    .donation-links .custom-table .tCol:nth-child(4) {
        max-width: 520px;
        min-width: 300px
    }

    .shared-links .custom-table .tCol:nth-child(2) {
        max-width: 280px;
        min-width: 280px
    }

    .fixed-side-menu .card-icon {
        height: 28.6px;
    }

    .fixed-side-menu .payment-info-box {
        padding: 5px 15px;
        width: auto;
    }

    .home-page .slider .content {
        top: 0;
        transform: unset;
        padding-bottom: unset;
        bottom: 0
    }

        .home-page .slider .content .carousel-items h1 {
            font-size: 50px;
            margin-bottom: 20px
        }

        .home-page .slider .content .carousel-items .description {
            font-size: 16px;
            margin-bottom: 34px
        }
}

@media (max-width: 991px) {
    .sponsers-items img {
        width: 115px;
        margin-bottom: 25px;
        margin-left: 15px;
    }

    .cards-wrapper {
        justify-content: center;
    }

    .privacy-policy .page-title {
        font-size: 30px;
        margin-bottom: 38px;
    }

    .privacy-policy .card .content .title {
        font-size: 18px;
    }

    .privacy-policy .card .content .list-title {
        font-size: 20px;
    }

    .privacy-policy .card .content .list-sub-title {
        font-size: 18px;
    }

    .privacy-policy .card .content ul {
        margin-right: 24px;
    }

    .privacy-policy .card .content p {
        font-size: 18px;
    }

    .privacy-policy .card .content ul li {
        font-size: 18px;
    }

    footer.footer-large .links {
        width: 100%;
    }

    /*.home-page .slider .content {
        position: relative;
        height: unset
    }*/

    .home-page .slider .content h1 {
        text-align: center
    }

    .home-page .slider .content .carousel-items .description {
        font-size: 16px;
    }

    .home-page .slider .content .carousel-items h1 {
        font-size: 32px;
    }

    .home-page .slider .content .carousel-items .sliderContent {
        margin-top: 45px;
        padding: 20px;
        background: transparent;
        color: #fff;
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        top: -130px;
        text-align: center
    }

    .home-page .card {
        font-weight: 100;
        border: 0;
        border-radius: 25px
    }

        .home-page .card .price-details {
            flex: 45%
        }

    .donation-links .avatar-wrapper {
        flex-direction: column
    }

        .donation-links .avatar-wrapper .avatar-icon {
            width: 100px;
            height: 100px
        }

        .donation-links .avatar-wrapper h3 {
            font-size: 38px;
            font-weight: 600
        }

    .donation-links .custom-table .tCol:nth-child(4) {
        max-width: 280px;
        width: 280px;
        min-width: 210px
    }

    .shared-links .avatar-wrapper {
        flex-direction: column
    }

        .shared-links .avatar-wrapper .avatar-icon {
            width: 100px;
            height: 100px
        }

        .shared-links .avatar-wrapper h3 {
            font-size: 38px;
            font-weight: 600;
            text-align: center
        }

    .personal-page .donut-chart {
        margin: unset
    }

    .personal-page .data-table .item-6.in-active .text {
        margin-right: 0
    }

    .personal-page .data-table .item-6:not(.in-active) .data {
        margin-right: 12px
    }

    .personal-page .data-table .date, .personal-page .data-table .desc, .personal-page .data-table .name {
        font-weight: unset !important
    }

    .personal-page .user-details > div {
        flex-wrap: wrap;
        justify-content: center
    }

    .personal-page .user-details .user-info {
        align-items: center;
        margin: 20px 0;
        width: 100%
    }

        .personal-page .user-details .user-info .contacts {
            flex-direction: column
        }
}

@media (max-width: 767px) {
    .close {
        font-size: 30px;
    }

    .all-projects .section-bg {
        height: 103%;
    }

    .fixed-side-menu {
        max-width: 310px;
        top: 100px;
        z-index: 9;
    }

    .subBtns form {
        width: 50%;
    }

    .subBtns button {
        width: 95%;
    }

    .mobile-margin-0 {
        margin: 0;
    }

    .verification-inputs input {
        width: 33px;
        height: 38px;
    }

    .login .card {
        margin: 17px;
        box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
        border: 0;
        background: #fff;
    }

    .login i {
        background: #ffffff00;
        margin-bottom: 0 !important;
    }

    .login :not(.verification-inputs) input[type="text"],
    .login :not(.verification-inputs) input[type="email"] {
    }

    ::-webkit-input-placeholder {
        /* Edge */
        color: fff;
    }

    :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: fff;
    }

    ::placeholder {
        color: fff;
    }

    .login .txt-dark-green {
        color: #ffe082;
    }

    .login .p-5 {
        padding: 1rem 3rem !important;
    }

    .forijat-filter .select2-container {
        width: 49% !important;
        margin-left: 0;
        flex: none;
    }

    .withScrollContent {
        margin-top: 20px;
    }

    .HideMobile {
        display: none;
    }

    .showInMobile {
        display: block;
    }

    .withScrollContent .d-flex {
        display: block !important;
    }

    .withScrollContent .card .d-flex > div:not(.HideMobile) {
        width: 100% !important;
        margin-bottom: 9px;
        display: flex;
        align-items: center;
    }

    span.DonationCasesLabel {
        margin-left: 11px;
        color: #06B085;
        font-weight: 600;
    }

    .btn.addedToCart span.material-icons {
        left: 40px;
    }

    .zakkah-page .text-danger {
        color: #dc3545 !important;
    }

    .HomeCards h6 {
        background: #0D8F75;
        text-align: center;
        padding: 10px;
        color: #fff;
    }

    .HomeCards form {
        margin: 5px 20px 0;
    }

    .MobileBtn a {
        width: 100%;
        font-size: 18px;
        padding: 10px;
    }

    header .container {
        padding: 0;
        height: 100%;
    }

    header .navigation ul.controls {
        display: block;
        margin-bottom: 8px;
        border-bottom: 1px solid #E3E9ED;
    }

        header .navigation ul.controls li:first-child {
            border-right: 0;
            float: right;
        }

    .home-page .slider .content {
        top: 0;
        transform: unset;
        padding-bottom: 0;
        bottom: 0;
    }

    .home-page .slider {
        height: 100vh;
    }

        .home-page .slider .swiper-slide h1 {
            font-size: 32px;
        }

    .swiper-container .btn-white {
        font-size: 16px;
    }

    .home-page .slider .content {
        height: 100vh;
    }

    .droopmenu {
        flex-direction: column;
    }

    .droopmenu-row {
        flex-wrap: wrap;
    }

    .droopmenu > li.droopmenu-mega > ul.droopmenu-megamenu .droopmenu-col {
        margin: 5px 7px;
    }

    .zakkah-page .content .title {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .zakkah-page .content .add-to-cart-form {
        margin-bottom: 15px;
    }

    .zakkah-page .content .center-wrapper {
        padding: 27px 10px 20px;
    }

    .zakkah-page .content .add-to-cart-form .action {
        padding: 20px 50px;
        line-height: 0px;
        margin-left: 10px;
        font-size: 16px;
    }

    .zakkah-page .content .add-to-cart-form .btn-round-icon {
        padding: 13px 0;
        width: 48px;
        height: 46px;
    }

        .zakkah-page .content .add-to-cart-form .btn-round-icon .material-icons {
            font-size: 22px;
        }

    .zakkah-page .modal .modal-content {
        padding: 60px 25px 90px;
    }

        .zakkah-page .modal .modal-content .title {
            font-size: 22px;
        }

        .zakkah-page .modal .modal-content .result-amount {
            font-size: 18px;
            flex-wrap: wrap;
        }

        .zakkah-page .modal .modal-content .input-data > h3 {
            font-size: 18px;
        }

        .zakkah-page .modal .modal-content .input-wrapper {
            padding: 15px 30px;
            font-size: 15px;
            margin-bottom: 20px;
        }

            .zakkah-page .modal .modal-content .input-wrapper input {
                font-size: 18px;
                width: 80%;
            }

        .zakkah-page .modal .modal-content .calculate-action {
            font-size: 18px;
            padding: 10px 70px;
        }

    .zakkah-page .modal .seperator {
        margin: 20px 0;
    }

    .zakkah-page .nav {
        white-space: nowrap;
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }

        .zakkah-page .nav .nav-item {
            flex: unset;
            margin-bottom: 10px;
            margin-left: 0;
            width: 140px;
            display: inline-block;
        }

            .zakkah-page .nav .nav-item:last-child {
                width: 210px;
            }

    .zakkah-page .content .input-data .input-wrapper {
        padding: 4px 10px;
    }

    .zakkah-page .btn-primary-green {
        padding: 5px 15px;
    }

    .share-modal .modal-head {
        margin-bottom: 30px;
    }

        .share-modal .modal-head .modal-close .material-icons {
            font-size: 20px;
        }

        .share-modal .modal-head h6 {
            font-size: 18px;
        }

    .share-modal .link-label .material-icons {
        font-size: 22px;
    }

    .share-modal .link-label .text {
        font-size: 15px;
    }

    /*    .share-modal .share-link {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 5px;
    }*/

    /*     .share-modal .share-link input {
            margin-bottom: 20px;
            border-bottom: 1px solid green;
            font-size: 14px;
        }*/

    .share-modal .share-link .btn-primary-green {
        padding: 7px 13px;
        font-size: 15px;
    }

    .share-modal .social-icons .btn > div {
        width: 44px;
        height: 44px;
    }

    .gifts .card {
        padding: 30px 0;
    }

    .gifts .title.label {
        font-size: 18px;
    }

    .gifts .card img {
        width: 200px;
    }

    .gifts .card .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .gifts .card .description {
        font-size: 14px;
    }

    .gifts .card .number {
        width: 50px;
        height: 50px;
        padding: 10px 0;
        font-size: 20px;
    }

    .gifts .gift-action {
        padding: 10px 50px;
        font-size: 17px;
        font-weight: 600;
        margin: -7px auto 60px;
    }

    .droopmenu + .droopmenu {
        display: none !important;
    }

    .padding-header {
        padding-top: 70px;
    }

    .droopmenu li a .droopmenu-indicator, .droopmenu-vertical .droopmenu li a .droopmenu-indicator {
        height: 80%;
        top: 10px;
    }

    .dm-nav-brand a img, .droopmenu-brand img {
        top: auto;
        height: 50px;
        margin-right: 0;
        margin-right: -50px;
    }

    .droopmenu-header {
        float: none;
        padding: 0 10px;
        height: 60px;
        display: flex;
        justify-content: space-between;
    }

        .droopmenu-header .droopmenu-brand {
            flex: 1;
            text-align: center;
            padding-top: 4px;
        }

        .droopmenu-header div {
            padding-top: 12px;
        }

            .droopmenu-header div img {
                width: 20px;
            }

    .droopmenu-toggle {
        padding-top: 24px;
    }

    .home-page > .slider .swiper-button-prev, .home-page > .slider .swiper-button-next {
        display: none;
    }

    /*.modal-content {
        padding: 0;
    }*/

    .faqs-page {
        font-size: 20px
    }

        .faqs-page .content .title {
            margin-top: 25px;
            margin-bottom: 20px
        }

    .droopmenu > li.ddItem > a {
        padding: 15px 30px;
    }

    li.ddItem {
        padding: 0;
        margin: 0;
    }

    .droopmenu li ul li a {
        border-bottom: none;
        color: #214570;
    }

    .header-actions li:first-child .icon {
        margin-top: -3px;
    }

    .payment-methods img {
        max-width: 63px;
    }

    #showFilter {
        width: 100%;
    }

        #showFilter img {
            right: 6px;
        }

    .user-control-options-wrapper {
        display: block;
    }
}

@media (max-width: 575px) {

    .forijat-filter .select2-container {
        width: 100% !important;
        margin-left: 0;
    }

    header .navigation ul.header-actions > li .dropdown-menu.user-profile {
        display: none;
    }

    .mobile-profile-actions {
        display: block;
    }

    .zakkah-page .nav-item span {
        margin-right: 15px;
    }

    .zakkah-page .nav-item:last-child span {
        margin-right: 0;
    }

    .zakkah-page .table th, .zakkah-page .table td {
        white-space: nowrap;
    }

    .zakkah-page .content .input-data .input-wrapper select + .material-icons {
        margin-left: -13px;
    }

    .contact-us {
        font-size: 20px;
    }

        .contact-us .card .banner .background-wrapper {
            background-position: 0 -68px;
            height: 140px;
        }

    .droopmenu-row {
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .droopmenu .droopmenu-grid-container {
        border: none;
    }

    .privacy-policy .page-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .privacy-policy .card .content .title {
        font-size: 16px;
    }

    .privacy-policy .card .content .list-title {
        font-size: 18px;
    }

    .privacy-policy .card .content .list-sub-title {
        font-size: 16px;
    }

    .privacy-policy .card .content ul {
        margin-right: 22px;
    }

    .privacy-policy .card .content p {
        font-size: 16px;
    }

    .privacy-policy .card .content ul li {
        font-size: 16px;
    }

    .payment-details .cards-logo {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

        .payment-details .cards-logo img {
            margin-top: 10px;
        }

    .footer-large .content-3 {
        padding: 14px 0;
    }

        .footer-large .content-3 .d-flex {
            flex-direction: column;
        }

        .footer-large .content-3 .nav {
            margin-bottom: 10px;
        }

    .footer-large .content-4 {
        padding: 12px 0;
    }

    footer .faq-link {
        margin-left: 0;
    }

    footer.footer-large .links {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .card-with-logo-header .banner .background-wrapper {
        background-position: 0 73%;
        height: 170px
    }

    .card-with-logo-header .banner .logo {
        width: 18%
    }

    .donation-links .avatar-wrapper .avatar-icon,
    .shared-links .avatar-wrapper .avatar-icon {
        width: 120px;
        height: 120px
    }

    .avatar-icon svg {
        margin: 0 auto 0px;
    }

    .cart .card.total-amount .btn-primary-blue {
        margin: auto;
    }

    .Payment-details-page .payment-info .payment-sum {
        margin-bottom: 20px;
    }

    .Payment-details-page .payment-info .cart-items {
        padding: 15px 0 10px;
    }

    .Payment-details-page .payment-info .payment-sum .amount {
        font-size: 26px;
        margin: 0 5px;
    }

    .Payment-details-page .payment-info .payment-sum .unit {
        font-size: 22px;
    }

    .Payment-details-page .payment-info .payment-sum .title {
        font-size: 18px;
    }

    .card-with-logo-header .banner .background-wrapper {
        background-position: 0 73%;
        height: 170px
    }

    .card-with-logo-header .banner .logo {
        width: 18%
    }

    .home-page .slider .content {
        top: 0;
        transform: unset;
        padding-bottom: 0;
        bottom: 0
    }

        .home-page .slider .content .swiper-pagination {
            bottom: 10px
        }

    .home-page .slider .swiper-slide h1 {
        font-size: 32px
    }

    .swiper-container .btn-white {
        font-size: 16px
    }
}

.text_decoration {
    text-decoration: underline
}
