/* Tebogo */

/* Global START */
.page-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .page-banner h1 {
        color: #FFFFFF;
        opacity: 0.6;
    }

    .page-banner h2 {
        color: #FFFFFF;
    }

    .page-banner p {
        font-family: 'Roboto-Light', sans-serif;
        font-size: 22px;
        line-height: 28px;
        color: #FFFFFF;
        opacity: 0.8;
    }

.p-22 {
    font-family: 'Roboto-Light', sans-serif;
    font-size: 22px;
    line-height: 28px;
}

.p-25 {
    font-family: 'Roboto-Light', sans-serif;
    font-size: 28px;
    line-height: 34px;
}

.p-32 {
    font-family: 'Roboto-Light', sans-serif;
    font-size: 32px !important;
}

.text-black {
    color: #000000 !important;
}

.text-light {
    font-family: 'Roboto-Light', sans-serif;
}

.p-relative {
    position: relative !important;
}

section.section {
    padding: 70px 0px;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    color: #FFFFFF;
    border: none;
    outline: none;
    font-family: 'Roboto-Medium', sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

    .btn:hover {
        color: #000000;
    }

.primary-btn {
    background-color: #000000;
}

    .primary-btn:hover {
        background-color: var(--btn-light-bg);
    }

.primary-outline-btn {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .primary-outline-btn:hover {
        background-color: #000000;
        color: #FFFFFF;
    }

.secondary-btn {
    background-color: var(--firstrand-purple);
}

    .secondary-btn:hover {
        background-color: var(--btn-light-bg);
    }

.light-btn {
    color: #000000;
    background-color: var(--btn-light-bg);
}

    .light-btn:hover {
        color: #FFFFFF;
        background-color: #000000;
    }

.link-text-btn {
    background-color: transparent;
    color: #000000;
    text-decoration: underline;
    font-family: 'Roboto-Light', sans-serif;
}

    .link-text-btn.white {
        color: #FFFFFF;
    }

.btn-transparent {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
}

    .btn-transparent:hover {
        color: var(--firstrand-blue);
    }

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 5px; /* width of the entire scrollbar */
    display: none;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
    background: #F6F6F6; /* color of the tracking area */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background-color: var(--firstrand-purple); /* color of the scroll thumb */
    border-radius: 10px; /* roundness of the scroll thumb */
    border: 1px solid #F6F6F6; /* creates padding around scroll thumb */
}

.float-unset {
    float: unset !important;
}
/* Global END */

/* Login START */
.login-register-section {
    background-color: var(--grey-bg-color);
}

    .login-register-section .login-register-holder {
        min-height: 100vh;
    }

.login-register-holder .login-register-bg {
    background-image: url('../images/resources/Create-your-account.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
}

    .login-register-holder .login-register-bg .login-register-bg-content {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

        .login-register-holder .login-register-bg .login-register-bg-content .login-register-bg-logos {
            display: flex;
            justify-content: space-between;
            margin-top: 100px;
        }

            .login-register-holder .login-register-bg .login-register-bg-content .login-register-bg-logos img {
                width: 100%;
                max-width: 200px;
                height: auto;
                padding: 0px 20px;
            }

.login-register-holder .login-register-contents {
    width: 50%;
    display: flex;
    align-items: center;
}

    .login-register-holder .login-register-contents h1 {
        color: var(--dark-grey-text);
        font-size: 30px;
        font-family: 'Roboto-Medium', sans-serif;
        margin-bottom: 35px;
    }

.login-register-contents form label {
    color: #5E6977;
    font-size: 13px;
    font-family: 'Roboto-Medium', sans-serif;
}

.login-register-contents form input {
    border: 1px solid #DEDEDF;
    border-radius: 4px;
    padding: 10px 20px;
}

    .login-register-contents form input:focus {
        outline: none !important;
        box-shadow: none;
        border: 1px solid var(--firstrand-blue);
    }

.login-register-contents form ::placeholder {
    color: #BCC3C9;
    opacity: 1; /* Firefox */
}

.login-register-contents form ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #BCC3C9;
}

.login-register-contents form .password-toggle-icon, .profile-update-modal-form form .password-toggle-icon {
    cursor: pointer;
    float: right;
    margin-right: 10px;
    margin-top: -29px;
}

.login-register-contents form.was-validated .password-toggle-icon, .profile-update-modal-form form.was-validated .password-toggle-icon {
    margin-right: 25px;
}

.login-register-contents form .password-toggle-icon i, .profile-update-modal-form form .password-toggle-icon i {
    font-size: 18px;
    line-height: 1;
    opacity: 0.6;
    transition: color 0.3s ease-in-out;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

    .login-register-contents form .password-toggle-icon i:hover, .profile-update-modal-form form .password-toggle-icon i:hover {
        opacity: 1;
    }

    .login-register-contents form .password-toggle-icon i.password-eye, .profile-update-modal-form form .password-toggle-icon i.password-eye {
        background-image: url('../images/resources/svgs/eye.svg');
        background-size: cover;
        width: 18px;
        height: 18px;
        display: block;
    }

    .login-register-contents form .password-toggle-icon i.password-eye-slash, .profile-update-modal-form form .password-toggle-icon i.password-eye-slash {
        background-image: url('../images/resources/svgs/eye-slash.svg');
        background-size: cover;
        width: 18px;
        height: 18px;
        display: block;
    }

.login-register-contents form .forgot-password {
    text-align: right;
    color: #2185D0;
    font-size: 14px;
    margin-top: -5px;
    text-decoration: underline;
}

.login-register-contents form .remember-me {
    position: relative;
    color: #000000CC;
}

    .login-register-contents form .remember-me .remember-me-text {
        position: absolute;
        left: 18px;
        top: -2px;
        min-width: 100px;
    }

.login-register-contents form .submit-button {
    width: unset;
    min-width: 150px;
}

    .login-register-contents form .submit-button:hover {
        background-color: var(--firstrand-blue);
        color: #FFFFFF;
    }

.login-register-contents form .signup-link {
    color: #000000CC;
    text-align: center;
    font-size: 14px;
}

.login-register-contents form a {
    color: #2185D0;
    text-decoration: underline;
}

.login-register-contents form p {
    color: #707070;
    font-size: 12px;
    margin-top: -5px;
}

.login-register-contents form .form-checkbox {
    width: 17px;
    height: 17px;
    margin-right: 5px;
    margin-left: -24px;
    cursor: pointer;
}

.login-register-contents form .form-check-label {
    color: var(--dark-grey-text);
    font-size: 14px;
    line-height: 18px;
    margin-top: 0px;
}
/* Login END */

/* Profile Creation START */
.profile-create-banner {
    background-color: var(--firstrand-blue);
}
/* Profile Creation END */

/* Grant Application START */
.foundation-grants-page-inner.application .page-inner-header h2, .form-title {
    font-size: 18px;
    color: #5E6977;
    font-family: 'Roboto-Medium', sans-serif;
    margin-bottom: 0px;
}

.foundation-grants-page-inner.application .page-inner-content {
}

/* Hide the default checkbox */
input[type="checkbox"].yesno-checkbox {
    display: none;
}

/* Create a custom checkbox */
.custom-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    line-height: 1.2;
    font-size: 14px;
    margin-right: 25px;
}

    .custom-checkbox::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 5px;
        border: 2px solid #E1E8EE;
        border-radius: 6px;
        vertical-align: middle;
        background-color: #fff;
        transition: background-color 0.3s, border-color 0.3s;
    }

/* Style the checkbox when it's checked */
input[type="checkbox"].yesno-checkbox:checked + .custom-checkbox::before {
    background-color: #FFFFFF;
    border-color: var(--firstrand-blue-light);
}

.custom-checkbox::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 7px;
    left: 10px;
    transform: translate(-50%, -50%) scale(0);
    color: var(--firstrand-blue-light);
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s;
}

/* Display a tick mark when the checkbox is checked */
input[type="checkbox"].yesno-checkbox:checked + .custom-checkbox::after {
    content: "\2714"; /* Unicode for tick mark */
    transform: translate(-50%, -50%) scale(1);
}

.file-input-container, .social-link-container, .doc-file-input-container {
    margin-top: 10px;
    position: relative;
}

.add-file-holder, .add-social-holder, .trustee-fields-link-holder {
    text-align: right;
    margin-top: 7px;
}

.file-input-container .is-invalid ~ .invalid-feedback, .doc-file-input-container .is-invalid ~ .invalid-feedback, .was-validated .file-input-container :invalid ~ .invalid-feedback {
    position: absolute;
    width: calc(100% - 39px);
    min-height: 100%;
    border: 2px solid red;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    left: -2px;
    top: -4px;
    padding-top: 5px;
    padding-left: 15px;
    padding-bottom: 5px;
    background-color: #FFFFFF;
    align-items: center;
    display: flex;
}

.fileInputWrapper .add-file-link, .add-file-holder .add-file-link, .add-social-holder .add-social-link, .trustee-fields-link-holder .trustee-fields-link {
    color: var(--firstrand-blue-light);
    font-family: 'Roboto-Medium', sans-serif;
    font-size: 12px;
    border: none;
    box-shadow: none;
    padding: 0px;
    background-color: #FFFFFF;
}

.fileInputWrapper {
    position: relative;
}

    .fileInputWrapper .add-file-link {
        position: absolute;
        right: 0px;
        bottom: -28px;
    }

.file-input-container .removeButton, .social-link-container .removeButton, .trustee-holder .removeButton {
    color: #F6985F;
    font-family: 'Roboto-Medium', sans-serif;
    font-size: 12px;
    border: none;
    box-shadow: none;
    padding: 0px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0px;
    bottom: -30px;
}

.search-container .search-box {
    position: relative;
}

    .search-container .search-box .search-icon {
        position: absolute;
        right: 3px;
        top: 2px;
        cursor: pointer;
        border-left: 1px solid #E1E8EE;
        height: calc(100% - 4px);
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #FFFFFF;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

        .search-container .search-box .search-icon img {
            width: 16px;
            height: 16px;
        }

.grant-form-buttons-holder {
    float: right;
}

.search-container .results {
    border-radius: 6px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

    .search-container .results .result-item {
        cursor: pointer;
        padding: 7px 15px;
        font-size: 14px;
        border-bottom: 1px solid #F2F2F2;
    }

        .search-container .results .result-item:hover {
            background-color: var(--btn-light-bg);
        }

/* Remove arrows on the number input */
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
/* Grant Application END */

/* Dashboard Sidebar START */
#replaceAvatarModal .modal-content, #cropModal .modal-content {
    max-width: 600px;
}

#replaceAvatarModal input {
    color: #FFFFFF;
}

.sidebar {
    padding: 50px 0px;
    background-color: #1B1C1D;
    color: #FFFFFF;
    min-height: 100vh;
}

    .sidebar .avatar-container {
        margin: 0px 20px;
    }

    .sidebar h1 {
        font-size: 18px;
        font-family: 'Roboto-Regular', sans-serif;
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0px 20px;
    }

    .sidebar ul.sidebar-menu {
        padding: 0px;
        list-style: none;
    }

        .sidebar ul.sidebar-menu li a {
            padding: 15px 20px;
            color: #FFFFFF;
            font-size: 14px;
            font-family: 'Roboto-Medium', sans-serif;
            display: block;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.35s ease;
            -webkit-transition: all 0.35s ease;
            -moz-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
        }

            .sidebar ul.sidebar-menu li a.active {
                background-color: var(--firstrand-blue);
            }

            .sidebar ul.sidebar-menu li a.sidebar-global-navlink {
                background-color: #2E2F30;
            }

                .sidebar ul.sidebar-menu li a.sidebar-global-navlink.first {
                    border-top: 1px solid var(--firstrand-blue);
                    margin-top: 30px;
                }

                .sidebar ul.sidebar-menu li a.sidebar-global-navlink.last {
                    border-bottom: 1px solid var(--firstrand-blue);
                    margin-bottom: 20px;
                }

            .sidebar ul.sidebar-menu li a:hover {
                background-color: #FFFFFF;
            }

            .sidebar ul.sidebar-menu li a:hover {
                color: #000000;
            }

.item-number {
    background-color: #F0142F;
    color: #FFFFFF;
    width: 35px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 12px;
    line-height: 12px;
}

.avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #788993;
    border: 3px solid #788993;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initials {
    text-align: center;
    font-size: 50px;
    line-height: 50px;
}

.edit-icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .edit-icon i {
        font-size: 16px;
        color: #000;
    }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 0px;
    text-align: center;
    background-color: var(--firstrand-blue);
    color: #FFFFFF;
    border: none;
    box-shadow: 1px 2px 3px #00000019;
}

    .modal-content h2 {
        color: #FFFFFF;
        font-size: 42px;
        font-family: 'Roboto-Light', sans-serif;
    }

    .modal-content a.modal-text-link {
        color: #FFFFFF;
        text-decoration: underline;
    }

    .modal-content .modal-otp input {
        background-color: #FFFFFF;
    }

    .modal-content .modal-otp form .btn {
        background-color: #000000;
        color: #FFFFFF;
    }

        .modal-content .modal-otp form .btn:hover {
            background-color: #FFFFFF;
            color: #000000;
        }

@media only screen and (min-width: 767px) {
    .modal-content .modal-otp form .btn {
        width: 35%;
    }
}

.close {
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    text-align: right;
    margin-top: -12px;
    width: 40px;
    justify-content: end;
    align-items: center;
    display: flex;
    margin-left: auto;
    font-family: 'Roboto-Light', sans-serif;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
    }

.initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #788993;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #fff;
}

.modal-content input {
    font-family: 'Roboto-Regular', sans-serif;
}

.modal-close-text {
    font-size: 16px;
    font-family: 'Roboto-Regular', sans-serif;
    box-shadow: none;
    border: none;
    outline: none;
    background-color: transparent;
    color: #FFFFFF;
}

.sidebar-trigger {
    display: none;
}
/* Dashboard Sidebar END */

/* Notification Strip START */
.notification-strip {
    position: relative;
    display: flex;
    width: 100%;
    font-size: 16px;
}

    .notification-strip .notification-strip-title {
        padding: 8px 25px;
        color: #FFFFFF;
        text-align: center;
        font-family: 'Roboto-Regular', sans-serif;
        min-width: 20%;
    }

    .notification-strip .notification-strip-sub-title {
        color: #000000;
        padding: 8px 25px;
    }

        .notification-strip .notification-strip-sub-title a {
            color: #000000;
            text-decoration: underline;
        }

.approved-profile-status {
    background-color: rgba(51, 186, 2, 0.18);
}

    .approved-profile-status .notification-strip-title {
        background-color: #33BA02;
    }

.saved-profile-status {
    background-color: rgba(237, 192, 3, 0.2);
}

    .saved-profile-status .notification-strip-title {
        background-color: #EDC003;
    }

.create-profile-status {
    background-color: rgba(255, 0, 196, 0.18);
}

    .create-profile-status .notification-strip-title {
        background-color: #FF00C4;
    }

.amend-profile-status {
    background-color: rgba(255, 127, 0, 0.18);
}

    .amend-profile-status .notification-strip-title {
        background-color: #FF7F00;
    }

.pending-profile-status {
    background-color: rgba(1, 167, 255, 0.18);
}

    .pending-profile-status .notification-strip-title {
        background-color: #01A7FF;
    }

.declined-profile-status {
    background-color: rgba(255, 0, 0, 0.18);
}

    .declined-profile-status .notification-strip-title {
        background-color: #FF0000;
    }

.notification-strip-holder {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    position: relative;
}

    .notification-strip-holder .notification-strip-description {
        background-color: #FFFFFF;
        padding: 40px 20px;
    }

        .notification-strip-holder .notification-strip-description.application-notifi-strip-descr {
            padding-left: 20px !important;
        }

        .notification-strip-holder .notification-strip-description .notification-strip-description-inner {
            max-width: 880px;
        }
/* Notification Strip END */

/* Dashboard START */
.dashboard-row {
    display: flex;
}

    .dashboard-row .sidebar {
        width: 20%;
    }

    .dashboard-row .dashboard-body {
        width: 80%;
    }

.getting-started-block-holder {
    width: 95%;
    margin-left: 5%;
    max-width: 900px;
    position: relative;
}

.getting-started-block {
    position: absolute;
    right: 20px;
    top: 0px;
    background-color: var(--firstrand-blue);
    padding: 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #FFFFFF;
}

    .getting-started-block.grants {
        background-color: #5E707A;
    }

    .getting-started-block .getting-started-block-title {
        font-size: 25px;
        line-height: 30px;
        font-family: 'Roboto-Light', sans-serif;
    }

    .getting-started-block p {
        font-size: 18px;
        font-family: 'Roboto-Light', sans-serif;
    }

.modal-dialog.getting-started-modal, .modal-dialog.getting-started-modal .modal-content {
    width: 1500px;
}

.dashboard-banner {
    background-color: #788993;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

    .dashboard-banner.dashboard {
        min-height: 430px;
    }

    .dashboard-banner .dashboard-banner-content {
        width: 95%;
        margin-left: 5%;
        max-width: 900px;
        color: #FFFFFF;
    }

        .dashboard-banner .dashboard-banner-content h1 {
            font-size: 34px;
            font-family: 'Roboto-Regular', sans-serif;
            margin-top: -50px;
        }

    .dashboard-banner.dashboard .dashboard-banner-content h1 {
        margin-top: 80px;
    }

.dashboard-body-content {
    width: calc(95% - 20px);
    margin-right: 20px;
    margin-left: 5%;
    max-width: 880px;
    background-color: #FFFFFF;
    box-shadow: 1px 2px 3px #00000019;
    margin-bottom: 70px;
    border-radius: 10px;
    padding: 50px 20px;
    margin-top: -120px;
    overflow: hidden;
}

.user-profile-details {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

    .user-profile-details .user-details {
        margin-left: 12px;
    }

        .user-profile-details .user-details .user-namesurname {
            font-size: 20px;
            color: #5E6977;
            font-family: 'Roboto-Medium', sans-serif;
        }

        .user-profile-details .user-details .user-email {
            color: #5E6977;
            font-size: 16px;
        }

        .user-profile-details .user-details .user-change-profile {
            font-size: 13px;
            color: #5E6977;
            font-family: 'Roboto-Medium', sans-serif;
            text-decoration: underline;
            cursor: pointer;
        }

.dash-call-action-block {
    padding: 30px;
    border-radius: 12px;
    color: #FFFFFF;
    text-align: center;
}

.dash-getting-started-block {
    background-color: var(--firstrand-blue);
}

.dash-register-profile-block {
    background-color: var(--dark-grey-text);
}

.dash-call-action-block .dash-call-action-block-title {
    font-size: 25px;
    line-height: 30px;
    font-family: 'Roboto-Light', sans-serif;
}

.dash-call-action-block p {
    font-size: 18px;
    font-family: 'Roboto-Light', sans-serif;
}

.dash-who-can-apply {
    padding: 10px 25px;
    background-color: #E1E8EE;
    font-size: 25px;
    color: var(--dark-grey-text);
    font-family: 'Roboto-Light', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-update-modal-form form .profile-modal-form-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: start;
    justify-content: center;
    text-align: left;
}

    .profile-update-modal-form form .profile-modal-form-content .form-control {
        min-width: 200px;
    }

.profile-update-modal-form form label {
    color: #FFFFFF;
}

.profile-update-modal-form form .profile-modal-form-content .btn {
    text-align: center;
    padding: 11px 25px;
    max-width: 180px;
    margin-top: 37px;
    font-size: 14px;
}

.my-applications, .about-our-foundations {
    box-shadow: 1px 2px 3px #00000019;
    border-radius: 6px;
    overflow: hidden;
}

    .my-applications .my-applications-title, .about-our-foundations .about-our-foundations-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--dark-grey-text);
        color: #FFFFFF;
        font-size: 18px;
        font-family: 'Roboto-Medium', sans-serif;
        padding: 15px 20px;
    }

    .my-applications .my-applications-content, .about-our-foundations .about-our-foundations-content {
        padding: 15px 20px;
    }

        .my-applications .my-applications-content .my-application-item {
            display: flex;
            align-items: center;
            margin-bottom: 7px;
        }

            .my-applications .my-applications-content .my-application-item .my-application-item-thumbnail {
                width: 25%;
                position: relative;
            }

                .my-applications .my-applications-content .my-application-item .my-application-item-thumbnail .item-number-round {
                    position: absolute;
                    left: -12px;
                    top: calc(50% - 12px);
                    width: 24px;
                    height: 24px;
                    background-color: #F0142F;
                    color: #FFFFFF;
                    font-size: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                }

            .my-applications .my-applications-content .my-application-item .my-application-item-title {
                width: calc(75% - 10px);
                margin-left: 10px;
                color: #5E6977;
                font-size: 14px;
                line-height: 16px;
                font-family: 'Roboto-Medium', sans-serif;
            }

.my-applications-amend {
    border: 1px solid #F2F2F2;
    box-shadow: 1px 2px 3px #00000019;
    padding: 0px 20px 20px;
}

.ma-form-sammary {
    width: 100%;
    font-size: 14px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

    .ma-form-sammary .ma-form-sammary-row {
        display: flex;
    }

        .ma-form-sammary .ma-form-sammary-row:last-child {
            border: 1px solid #E8E8E8;
        }

        .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-column {
            width: 50%;
            padding: 8px 10px;
            border: 1px solid #E8E8E8;
            border-bottom: none;
        }

        .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-main-title-column {
            background-color: #000000;
            color: #FFFFFF;
            font-family: 'Roboto-Medium', sans-serif;
        }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-main-title-column:first-child {
                border-right: none;
            }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-main-title-column.pending {
                background-color: #01A7FF;
            }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-main-title-column.approved {
                background-color: #33BA02;
            }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-main-title-column.declined {
                background-color: #FF0000;
            }

        .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-title-column {
            font-family: 'Roboto-Medium', sans-serif;
            background-color: #f8f8f8;
            border-right: none;
            border-top-color: #FFFFFF;
        }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-title-column.pending {
                background-color: rgba(1, 167, 255, 0.18);
                color: #01A7FF;
            }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-title-column.approved {
                background-color: rgba(51, 186, 2, 0.18);
                color: #33BA02;
            }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-title-column.declined {
                background-color: rgba(255, 0, 0, 0.18);
                color: #FF0000;
            }

        .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-column-full {
            width: 100%;
            padding: 8px 10px;
        }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-column-full .ma-form-sammary-subhead {
                font-family: 'Roboto-Medium', sans-serif;
                margin-bottom: 6px;
            }

            .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-column-full ul {
                list-style: none;
                padding-left: 0px;
                margin-bottom: 0px;
            }

                .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-column-full ul li {
                    position: relative;
                    padding-left: 20px;
                }

                    .ma-form-sammary .ma-form-sammary-row .ma-form-sammary-column-full ul li:before {
                        content: "";
                        width: 14px;
                        height: 14px;
                        background-image: url('../images/resources/link-Icon.png');
                        background-size: cover;
                        position: absolute;
                        left: 0px;
                        top: 3px;
                    }

.about-our-foundations .about-our-foundations-content img {
    max-width: 200px;
    margin: auto;
    display: block;
}

.about-our-foundations .about-our-foundations-content p {
    font-size: 12px;
    color: var(--dark-grey-text);
    font-family: 'Roboto-Light', sans-serif;
}

.dash-focus-areas h3, .dash-available-grands h3 {
    color: var(--dark-grey-text);
    font-size: 18px;
    font-family: 'Roboto-Medium', sans-serif;
}

.dash-focus-areas h4 {
    font-size: 16px;
}

.dash-focus-areas p {
    color: var(--dark-grey-text);
    font-size: 12px;
    font-family: 'Roboto-Light', sans-serif;
}

.dash-divider-line {
    width: 100%;
    height: 1px;
    background-color: #BDC6CF;
    margin: 30px 0px 20px;
}

.dash-focus-areas .focus-area-item .focus-area-item-content {
    padding: 10px;
}

    .dash-focus-areas .focus-area-item .focus-area-item-content h4 {
        color: var(--dark-grey-text);
        font-size: 11px;
        font-family: 'Roboto-Medium', sans-serif;
        margin-bottom: 0px;
    }

.dash-focus-areas .light-btn {
    min-width: 160px;
}

.dash-available-grands .foundation-grant-item .grant-item-thumbnail .grant-item-availability {
    font-size: 14px;
}

.dash-available-grands .foundation-grant-item .grant-item-content h4 {
    font-size: 16px;
    color: #1E282E;
    font-family: 'Roboto-Light', sans-serif;
}

.dash-available-grands .foundation-grant-item .grant-item-content p {
    font-size: 12px;
}

.modal-backdrop.show {
    z-index: 0;
}

.modal-dialog, .modal-content {
    max-width: 100%;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.modal-header .btn-close {
    color: #FFFFFF;
    background-image: none;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Roboto-Light', sans-serif;
}

    .modal-header .btn-close:focus, .modal-header .btn-close:active {
        outline: none;
        box-shadow: none;
    }

.modal-header {
    border: none;
}
/* Dashboard END */

/* Edit My Profile START */
.edit-warning {
    display: flex;
    width: 100%;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 2px solid #FF0000;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 1px 2px 3px #00000019;
}

    .edit-warning .edit-warning-title {
        color: #FF0000;
        font-size: 16px;
        margin-right: 20px;
    }

    .edit-warning .edit-warning-content {
        font-size: 13px;
        color: #5E6977;
        font-family: 'Roboto-Medium', sans-serif;
    }

.edit-profile-form {
    position: relative;
    margin-top: 40px;
}

    .edit-profile-form .edit-profile-form-border {
        position: absolute;
        top: 0px;
        left: -3.5rem;
        width: calc(100% + 7rem);
        height: 1px;
        background-color: #EBF0F5;
    }

    .edit-profile-form .edit-profile-form-title {
        font-size: 12px;
        color: #5E6977;
        font-family: 'Roboto-Medium', sans-serif;
        padding: 15px 0px;
    }

    .edit-profile-form .form-group > .row {
        padding: 3px 0px;
        border-top: 1px solid #EBF0F5;
    }

    .edit-profile-form label {
        margin-top: 0px;
    }

    .edit-profile-form .submit-button-holder {
        text-align: right;
    }
/* Edit My Profile END */

/* Organisation Profile START */
.table-title {
    color: #5E6977;
    font-size: 18px;
    font-family: 'Roboto-Medium', sans-serif;
}

    .table-title img {
        float: right;
        max-width: 25px;
        height: auto;
    }

    .table-title .btn {
        float: right;
    }

.organisation-information-table table {
    width: 100%;
}

    .organisation-information-table table tr {
        border-top: 1px solid #EBF0F5;
    }

        .organisation-information-table table tr.no-border {
            border-top: none;
        }

    .organisation-information-table table thead tr {
        border-top: none;
    }

        .organisation-information-table table thead tr th {
            color: #5E6977;
            font-size: 12px;
            font-family: 'Roboto-Medium', sans-serif;
        }

    .organisation-information-table table tbody tr th, .organisation-information-table table tbody tr td {
        font-size: 14px;
        color: #595d61;
        font-family: 'Roboto-Light', sans-serif;
    }

    .organisation-information-table table tr th, .organisation-information-table table tr td {
        padding: 10px 5px;
    }

.organisation-information-table .organisation-location .operating-address-title, .organisation-information-table .organisation-location .postal-address-title {
    padding: 10px 5px;
    border-bottom: 1px solid #EBF0F5;
    color: #5E6977;
    font-size: 12px;
}

.organisation-information-table table tbody tr td:nth-child(2) {
    text-align: right;
    padding: 10px 15px;
}

.organisation-information-table .organisation-location .postal-address-title {
    border-top: 1px solid #EBF0F5;
}

.organisation-information-table .organisation-location .operating-address-input, .organisation-information-table .organisation-location .postal-address-input {
    font-size: 14px;
    color:var(--light-grey-text);
    font-family: 'Roboto-Light', sans-serif;
    padding: 10px 5px;
}

.organisation-information-table .organisation-documents .organisation-documents {
    font-size: 18px;
    color: #5E6977;
    font-family: 'Roboto-Medium', sans-serif;
    margin-bottom: 15px;
}

.organisation-information-table .organisation-documents ul {
    padding: 0px;
    list-style: none;
}

    .organisation-information-table .organisation-documents ul li {
        margin-top: 7px;
    }

        .organisation-information-table .organisation-documents ul li img {
            max-width: 15px;
        }

    .organisation-information-table .organisation-documents ul li {
        color: #5E6977;
        font-size: 14px;
        font-family: 'Roboto-Medium', sans-serif;
    }

        .organisation-information-table .organisation-documents ul li span.file-size {
            color: var(--light-grey-text);
            font-family: 'Roboto-Light', sans-serif;
        }
/* Organisation Profile END */

/* My Applications START */
.dashboard-body-content .page-inner-header {
    background-color: #FFFFFF !important;
}

.dropdown-menu {
    padding: 0px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 999999;
}

.dash-inner-body .my-applications-holder .application-item {
    border-top: 1px solid #E1E8EE;
}

    .dash-inner-body .my-applications-holder .application-item:first-child {
        border-top: none;
    }

    .dash-inner-body .my-applications-holder .application-item:last-child {
        border-bottom: 1px solid #E1E8EE;
    }



.accordion-button:hover, .accordion-button:not(.collapsed) {
    background-color: #EEF2F4;
}

.dash-inner-body .my-applications-holder .application-item .notification-strip-holder {
    box-shadow: none;
    border-bottom: 3px solid #E1E8EE;
}

.dash-inner-body .my-applications-holder .application-item:last-child .notification-strip-holder {
    border-bottom: none;
}

.dash-inner-body .my-applications-holder .my-applications-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 20px 0px 10px;
}

.dash-inner-body .my-applications-holder {
    margin-bottom: 50px;
}

    .dash-inner-body .my-applications-holder.no-applications {
        padding: 20px;
    }

        .dash-inner-body .my-applications-holder.no-applications h2 {
            font-size: 18px;
            color: #5E6977;
            font-family: 'Roboto-Medium', sans-serif;
        }

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-thumb-title {
        width: 55%;
        display: flex;
        align-items: center;
    }

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-content {
        display: flex;
        align-items: center;
        width: 45%;
        justify-content: space-between;
    }

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-thumb {
        width: 30%;
        margin-right: 20px;
    }

    .dash-inner-body .my-applications-holder .my-applications-item > div {
        padding: 10px;
    }

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-title {
        width: 70%;
    }

        .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-title h2 {
            font-size: 16px;
            line-height: 20px;
            color: #5E6977;
            font-family: 'Roboto-Medium', sans-serif;
            margin-bottom: 0px;
        }

        .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-title p {
            color: #BDC6CF;
            font-size: 14px;
            margin-bottom: 0px;
        }

            .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-title p span.ai-foundation-name {
                color: #5E6977;
            }

            .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-title p span.ai-foundation-applications {
                color: var(--light-grey-text);
            }

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-type {
        width: 45%;
        color: var(--dark-grey-text);
        font-size: 14px;
    }

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-status {
        width: 45%;
        color: var(--dark-grey-text);
        font-size: 14px;
        text-align: center;
    }

        .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-status span {
            border-radius: 30px;
            padding: 8px 20px;
        }

span.status-saved {
    background-color: rgba(237, 192, 3, 0.2);
}

span.status-pending {
    background-color: rgba(1, 167, 255, 0.2);
}

span.status-approved {
    background-color: rgba(51, 186, 2, 0.2);
}

span.status-amend {
    background-color: rgba(255, 127, 0, 0.2);
}

span.status-declined {
    background-color: rgba(255, 0, 0, 0.2);
}

.dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-bell {
    width: 10%;
    color: var(--dark-grey-text);
}

    .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-bell img {
        max-width: 29px;
    }
/* My Applications END */

/* Account Settings START */
.user-gredentials-holder {
    border-radius: 6px;
    box-shadow: 1px 2px 3px #00000019;
    padding: 10px;
    margin-bottom: 10px;
}

    .user-gredentials-holder .user-gredential-title {
        color: #5E6977;
        font-size: 13px;
    }

    .user-gredentials-holder .user-gredential-input {
        color: #5E6977;
        font-size: 13px;
        font-family: 'Roboto-Bold', sans-serif;
    }

    .user-gredentials-holder .user-gredential-change-btn {
        text-align: right;
    }

        .user-gredentials-holder .user-gredential-change-btn a {
            font-size: 14px;
        }

            .user-gredentials-holder .user-gredential-change-btn a:hover {
                color: #000000;
                background-color: #BDC6CF;
            }
/* Account Settings END */

/* About START */
.page-banner.about-banner {
    background-image: url('../images/about/About-banner.jpg');
}

.about-foundations-section {
    text-align: center;
}

.foundation-divisions-section {
    background-color: var(--grey-bg-color);
    position: relative;
}

    .foundation-divisions-section .division-holder {
        text-align: center;
        max-width: 325px;
        position: relative;
    }

    .foundation-divisions-section .division-holder-divider {
        position: absolute;
        right: calc(50% + 0.5px);
        bottom: 70px;
        background-color: #C1C1C1;
        width: 1px;
        height: 215px;
    }

    .foundation-divisions-section .division-holder .division-logo img {
        max-width: 200px;
        height: auto;
        margin-bottom: 20px;
    }

    .foundation-divisions-section .division-holder .division-text {
        color: var(--light-grey-text);
        margin-bottom: 25px;
    }

    .foundation-divisions-section .division-holder .division-button {
    }

.getting-started-section {
    background-color: var(--firstrand-blue);
    color: #FFFFFF;
}

    .getting-started-section h2 {
        color: #FFFFFF;
    }

.getting-started-block-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

    .getting-started-block-row .get-started-block {
        width: calc(20% - 10px);
        padding-right: 15px;
        margin-bottom: 45px;
    }

        .getting-started-block-row .get-started-block:nth-child(5) {
            padding-left: 50px;
            padding-right: 0px;
            width: calc(20% + 40px);
        }

        .getting-started-block-row .get-started-block:nth-child(9) {
            padding-left: 50px;
            width: calc(20% + 50px);
        }

        .getting-started-block-row .get-started-block .get-started-block-inner {
            padding: 25px 20px 0px;
            color: #FFFFFF;
            position: relative;
            margin-top: 30px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            height: 100%;
        }

        .getting-started-block-row .get-started-block:nth-child(5) .get-started-block-inner {
            background-color: transparent;
            border: 1px dashed #FFFFFF;
        }

        .getting-started-block-row .get-started-block:nth-child(9) .get-started-block-inner {
            background-color: transparent;
            border: 1px dashed #FFFFFF;
        }

        .getting-started-block-row .get-started-block .get-started-block-inner img.get-started-block-arrow {
            position: absolute;
            width: 65px;
            height: auto;
            top: calc(50% - 16px);
            left: -66px;
        }

        .getting-started-block-row .get-started-block .g-start-number {
            background-color: #FFFFFF;
            color: #000000;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -45px auto 20px auto;
            font-family: 'Roboto-Bold', sans-serif;
        }

        .getting-started-block-row .get-started-block h3 {
            font-size: 25px;
            font-family: 'Roboto-Medium', sans-serif;
        }

        .getting-started-block-row .get-started-block p {
            font-size: 14px;
        }

        .getting-started-block-row .get-started-block a {
            padding-right: 20px;
            padding-left: 20px;
            min-width: 120px;
        }

            .getting-started-block-row .get-started-block a.primary-outline-btn {
                border-color: #FFFFFF;
                color: #FFFFFF;
            }

                .getting-started-block-row .get-started-block a.primary-outline-btn:hover {
                    border-color: #DCE3E8;
                    background-color: #DCE3E8;
                    color: #000000;
                }



































/* About END */

/* Firstrand Foundation START */
.firstrand-foundation-banner {
    background-image: url('../images/firstrand-foundation/banners/FirstRand-foundation-banner.jpg');
}

.firstrand-empowerment-foundation-banner {
    background-image: url('../images/firstrand-empowerment-foundation/banners/firstrand-empowerment-foundation-banner.jpg');
}

.foundations-slider-section {
    background-color: var(--grey-bg-color);
}

    .foundations-slider-section .foundation-slider-holder {
        position: relative;
    }

.foundation-slider, .page-start-section {
    margin-top: -150px;
}

    .foundation-slider .slide-item {
        box-shadow: 1px 2px 3px #00000019;
        border-radius: 6px;
        padding: 100px 25px;
        background-color: #FFFFFF;
        min-height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .foundation-slider .slide-item .slide-image img {
            width: 100%;
            max-width: 200px;
            margin: auto;
            margin-bottom: 30px;
        }

        .foundation-slider .slide-item .slide-text {
            color: #5E6977;
        }

            .foundation-slider .slide-item .slide-text p:last-child {
                margin-bottom: 0px;
            }

            .foundation-slider .slide-item .slide-text p span {
                font-family: 'Roboto-Medium', sans-serif;
            }

.slick-prev, .slick-next {
    display: none !important;
}

.slick-prev-btn, .slick-next-btn {
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0px;
    position: absolute;
    top: calc(50% - 20px);
}

.slick-prev-btn {
    left: -50px;
}

.slick-next-btn {
    right: -50px;
}

    .slick-prev-btn img, .slick-next-btn img {
        width: 40px;
    }

.slick-dots {
    bottom: -40px;
}

    .slick-dots li button::before {
        opacity: 1;
        color: #86939E;
        font-size: 7px;
    }

    .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #358ED7;
        font-size: 10px;
    }

.strategy-section {
    background-color: #DCE3E8;
}

.focus-areas-section {
    background-color: var(--grey-bg-color);
}

.focus-area-item {
    height: 100%;
    background-color: #FFFFFF;
    position: relative;
    border-radius: 6px;
    box-shadow: 1px 2px 3px #00000019;
    overflow: hidden;
}

    .focus-area-item .focus-area-item-thumbnail {
        position: relative;
        overflow: hidden;
    }

    .focus-area-item img {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        transition: all 0.35s ease;
        -webkit-transition: all 0.35s ease;
        -moz-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
    }

    .focus-area-item:hover img {
        transform: scale(1.1) rotate(2deg);
    }

    .focus-area-item .focus-area-item-content {
        padding: 40px 40px 100px;
        text-align: center;
        background-color: #FFFFFF;
        z-index: 1;
        position: relative;
    }

        .focus-area-item .focus-area-item-content h3 {
            font-family: 'Roboto-Medium', sans-serif;
            font-size: 18px;
            color: var(--dark-grey-text);
            margin-bottom: 15px;
        }

        .focus-area-item .focus-area-item-content p {
            font-size: 16px;
            color: var(--light-grey-text);
            margin-bottom: 30px;
        }

        .focus-area-item .focus-area-item-content .secondary-btn {
            position: absolute;
            bottom: 40px;
            left: calc(50% - 71px);
            min-width: 142px;
            text-align: center;
        }

.trustees-holder {
    text-align: center;
    padding-top: 40px;
}

.pdf-downloads-list {
    padding: 0px;
    list-style: none;
}

    .pdf-downloads-list li {
        margin-bottom: 10px;
    }

        .pdf-downloads-list li a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            line-height: 20px;
            color: var(--light-grey-text);
        }

            .pdf-downloads-list li a img {
                max-width: 25px;
                margin-right: 10px;
                transition: all 0.35s ease;
                -webkit-transition: all 0.35s ease;
                -moz-transition: all 0.35s ease;
                -o-transition: all 0.35s ease;
            }

            .pdf-downloads-list li a:hover img {
                margin-right: 18px;
            }

.page-bg-grey {
    background-color: var(--grey-bg-color);
}

.page-start-section .page-start-section-inner {
    background-color: #FFFFFF;
    box-shadow: 1px 2px 3px #00000019;
    margin-bottom: 70px;
    border-radius: 10px;
}

    .page-start-section .page-start-section-inner .page-inner-header, .dashboard-body-content .page-inner-header {
        padding: 10px 20px;
        background-color: #EDEBEB;
        border-bottom: 1px solid #EBF0F5;
        min-height: 66px;
    }

        .page-start-section .page-start-section-inner .page-inner-header .foundation-single-title h1 {
            font-size: 22px;
            font-family: 'Roboto-Medium', sans-serif;
            color: var(--dark-grey-text);
            margin-bottom: 0px;
            text-align: left;
        }

    .page-start-section .page-start-section-inner.foundation-grants-page-inner .page-inner-header {
        background-color: #FFFFFF;
    }

.page-inner-header-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .page-inner-header-holder .back-button {
        display: flex;
        align-items: center;
        font-size: 18px;
        color: #5E6977;
        font-family: 'Roboto-Medium', sans-serif;
        width: 110px;
        min-height: 45px;
        transition: all 0.35s ease;
        -webkit-transition: all 0.35s ease;
        -moz-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
    }

        .page-inner-header-holder .back-button:hover {
            margin-left: -10px;
        }

        .page-inner-header-holder .back-button img {
            width: 22px;
            margin-right: 7px;
            transition: all 0.35s ease;
            -webkit-transition: all 0.35s ease;
            -moz-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
        }

    .page-inner-header-holder:hover .back-button img {
        margin-right: 15px;
    }

    .page-inner-header-holder .back-button div {
        margin-top: 2px;
    }

.filters-holder {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    color: var(--light-grey-text);
    font-size: 14px;
}

    .filters-holder.grey {
        color: var(--dark-grey-text);
        justify-content: unset;
    }

.page-start-section .page-start-section-inner .page-inner-header .foundation-filter {
    margin-left: auto;
    font-family: 'Roboto-Medium', sans-serif;
}

    .page-start-section .page-start-section-inner .page-inner-header .foundation-filter button, .page-start-section .page-start-section-inner .page-inner-header .focus-area-filter button, .dashboard-body-content .page-inner-header button {
        border-radius: 6px;
        border: 2px solid #E1E8EE;
        color: #5E6977;
        font-size: 14px;
        display: inline-block;
        background-color: #FFFFFF;
        overflow: hidden;
        position: relative;
        padding: 10px 45px 10px 10px;
        min-width: 150px;
        text-align: left;
        font-family: 'Roboto-Regular', sans-serif;
    }

        .page-start-section .page-start-section-inner .page-inner-header .foundation-filter button.grey {
            background-color: #EDEBEB;
            border-color: var(--light-grey-text);
        }

.page-start-section .page-start-section-inner .page-inner-header button:after {
    position: absolute;
    right: 10px;
    top: calc(50% - 4px);
}

.page-start-section .page-start-section-inner .page-inner-header .foundation-filter button:hover, .page-start-section .page-start-section-inner .page-inner-header .focus-area-filter button:hover {
    font-size: 14px !important;
}

.page-start-section .page-start-section-inner .page-inner-header ul.dropdown-menu {
    border: 2px solid #E1E8EE;
    border-radius: 6px;
    padding: 0px;
    overflow: hidden;
}

.dropdown-item {
    padding: 10px 15px;
}

    .dropdown-item.active, .dropdown-item:active {
        background-color: var(--firstrand-purple);
    }

.foundation-nav {
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #EBF0F5;
}

    .foundation-nav .foundation-nav-left, .foundation-nav .foundation-nav-right {
        padding: 20px 0px;
        width: 7%;
        text-align: center;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .foundation-nav .foundation-nav-left {
        border-right: 1px solid #DFE9F4;
    }

    .foundation-nav .foundation-nav-right {
        border-left: 1px solid #DFE9F4;
    }

        .foundation-nav .foundation-nav-left img, .foundation-nav .foundation-nav-right img {
            width: 25px;
            opacity: 0.5;
            transition: all 0.35s ease;
            -webkit-transition: all 0.35s ease;
            -moz-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
        }

        .foundation-nav .foundation-nav-left:hover img, .foundation-nav .foundation-nav-right:hover img {
            opacity: 1;
        }

    .foundation-nav .foundation-nav-holder {
        width: 86%;
        height: 100%;
        flex: 1;
        overflow-x: auto;
        white-space: nowrap;
        padding: 13px 20px;
    }

        .foundation-nav .foundation-nav-holder::-webkit-scrollbar {
            height: 5px; /* width of the entire scrollbar */
        }

        .foundation-nav .foundation-nav-holder::-webkit-scrollbar-track {
            background: #F6F6F6; /* color of the tracking area */
        }

        .foundation-nav .foundation-nav-holder::-webkit-scrollbar-thumb {
            background-color: var(--firstrand-purple); /* color of the scroll thumb */
            border-radius: 10px; /* roundness of the scroll thumb */
            border: 1px solid #F6F6F6; /* creates padding around scroll thumb */
        }

        .foundation-nav .foundation-nav-holder nav {
            display: flex;
        }

            .foundation-nav .foundation-nav-holder nav a {
                color: var(--light-grey-text);
                font-size: 14px;
                line-height: 16px;
                font-family: 'Roboto-Medium', sans-serif;
                padding: 10px 15px;
            }

                .foundation-nav .foundation-nav-holder nav a.active {
                    color: var(--dark-grey-text);
                }

.page-start-section .page-start-section-inner .page-inner-content {
    padding: 50px 20px 20px;
}

.focus-area-categories {
    background-color: #EEF2F4;
    padding: 30px 20px;
    margin-top: 40px;
}

    .focus-area-categories h3 {
        color: var(--dark-grey-text);
        font-size: 32px;
        line-height: 34px;
        font-family: 'Roboto-Light', sans-serif;
    }

    .focus-area-categories p {
        color: var(--dark-grey-text);
        font-size: 18px;
    }

    .focus-area-categories .focus-area-category-item img {
        max-width: 70px;
    }

.foundation-knowledge-sharing {
    padding: 40px 0px 10px;
}

    .foundation-knowledge-sharing h3 {
        color: var(--dark-grey-text);
        font-size: 22px;
        margin-bottom: 20px;
    }

    .foundation-knowledge-sharing ul.pdf-downloads-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .foundation-knowledge-sharing ul.pdf-downloads-list li {
            margin-right: 30px;
            margin-left: 10px;
        }

.focus-area-categories .grant-cat-col {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px 20px;
}

    .focus-area-categories .grant-cat-col .focus-area-category-item {
        border-bottom: none !important;
    }
/* Firstrand Foundation END */

/* Grants START */
.foundation-grants-banner {
    background-image: url(../images/grants/banners/grants-banner.jpg);
}

.foundation-grant-item {
    box-shadow: 1px 2px 3px #00000019;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    background-color: #FFFFFF;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

    .foundation-grant-item:hover {
        box-shadow: 2px 3px 9px #00000030;
    }

    .foundation-grant-item .grant-item-thumbnail {
        position: relative;
    }

        .foundation-grant-item .grant-item-thumbnail img {
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
            transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

        .foundation-grant-item .grant-item-thumbnail .grant-item-new {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 4px 10px;
            color: #FFFFFF;
            border-radius: 15px;
            font-size: 12px;
            font-family: 'Roboto-Medium', sans-serif;
            background-color: #F0142F;
        }

        .foundation-grant-item .grant-item-thumbnail .grant-item-availability {
            position: absolute;
            bottom: 0px;
            left: 0px;
            padding: 8px 20px;
            color: #FFFFFF;
            font-size: 16px;
            font-family: 'Roboto-Medium', sans-serif;
        }

            .foundation-grant-item .grant-item-thumbnail .grant-item-availability.available {
                background-color: #1EB524;
            }

            .foundation-grant-item .grant-item-thumbnail .grant-item-availability.not-available {
                background-color: #FF0000;
            }

    .foundation-grant-item:hover img {
        transform: scale(1.1);
    }

    .foundation-grant-item .grant-item-content {
        padding: 30px 20px;
        position: relative;
        background-color: #FFFFFF;
    }

        .foundation-grant-item .grant-item-content h3 {
            font-size: 26px;
            color: #1E282E;
            font-family: 'Roboto-Light', sans-serif;
        }

        .foundation-grant-item .grant-item-content p {
            color: #5F6D75;
            font-size: 14px;
        }

        .foundation-grant-item .grant-item-content .grant-item-categ-list {
            display: flex;
            flex-wrap: wrap;
            width: calc(100% - 40px);
            position: absolute;
            left: 20px;
            bottom: 20px;
            border-top: 1px solid #F7F7F7;
            padding-top: 20px;
        }

            .foundation-grant-item .grant-item-content .grant-item-categ-list .grant-item-categ {
                padding: 5px 12px;
                color: #FFFFFF;
                font-size: 12px;
                font-family: 'Roboto-Medium', sans-serif;
                border-radius: 30px;
                margin-right: 8px;
                margin-bottom: 8px;
            }

.grant-item-categ.geography {
    background-color: #86B995;
}

.grant-item-categ.sector {
    background-color: #0D7DAB;
}

.grant-item-categ.subs {
    background-color: #00A7DF;
}

.grant-item-categ.category {
    background-color: #F6985F;
}

.grant-single .grant-img {
    border-radius: 6px;
    width: 100%;
}

.grant-single p {
    color: #5E6977;
}

.grant-single .grant-item-categ-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #E1E8EE;
    padding-bottom: 20px;
}

    .grant-single .grant-item-categ-list .grant-item-categ {
        padding: 5px 12px;
        color: #FFFFFF;
        font-size: 12px;
        font-family: 'Roboto-Medium', sans-serif;
        border-radius: 30px;
        margin-right: 8px;
        margin-bottom: 8px;
    }

.grant-application-dates-title {
    font-size: 14px;
    font-family: 'Roboto-Medium', sans-serif;
    margin-top: 25px;
    margin-bottom: 5px;
}

.grant-application-dates {
    font-size: 14px;
    color: var(--light-grey-text);
}

    .grant-application-dates span {
        color: #000000;
    }

.grant-detail-divider {
    position: relative;
    margin-top: 70px;
    margin-bottom: 50px;
}

    .grant-detail-divider .grant-detail-line {
        background-color: #E1E8EE;
        height: 1px;
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .grant-detail-divider .grant-detail-arrow-down {
        border-radius: 50%;
        box-shadow: 1px 1px 3px #0000001A;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-top: -25px;
        background-color: #FFFFFF;
        color: #5E6977;
    }

.grant-details .nav-tabs {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 30px;
}

    .grant-details .nav-tabs .nav-item {
        margin: 0px 10px 5px;
    }

        .grant-details .nav-tabs .nav-item button {
            border-radius: 35px;
            border: 2px solid #FFFFFF;
            box-shadow: 1px 2px 3px #00000019;
            min-width: 130px;
            text-align: center;
            color: var(--light-grey-text);
            font-family: 'Roboto-Medium', sans-serif;
        }

            .grant-details .nav-tabs .nav-item button.active {
                color: #000000;
                border-color: #000000;
            }

.grant-details .tab-content {
    margin-bottom: 10px;
}

    .grant-details .tab-content h2 {
        font-size: 18px;
        line-height: 22px;
        font-family: 'Roboto-Medium', sans-serif;
    }
/* Grants END */

/* Terms of Use START */
.terms-inner-content h3 {
    font-size: 18px;
    color: var(--dark-grey-text);
}

.terms-inner-content p, .terms-inner-content li {
    color: var(--light-grey-text);
}

.terms-inner-content ul li ul {
    list-style: disc;
    padding-left: 10px;
}

    .terms-inner-content ul li ul li ul {
        list-style-type: '- ';
    }

.terms-inner-content ul li::marker {
    color: #5A5F65;
}


/* Terms of Use END */

/* Compliance START */
img.contact-icon {
    width: 25px;
    margin-right: 10px;
}

.contacts-divider {
    background-color: #707070;
    width: 100%;
    height: 1px;
    margin: 30px 0px;
}
/* Compliance END */

/* Report Bug START */
.report-bug-title {
    font-family: 'Roboto-Medium', sans-serif;
    color: #5E6977 !important;
}

.report-bug-title-line {
    width: 100%;
    height: 1px;
    background-color: #EBF0F5;
    margin: 20px 0px;
}
/* Report Bug END */

@media only screen and (min-width: 1400px) {
    /* Notification Strip START */
    .notification-strip-holder .notification-strip-description {
        padding-left: 20%;
    }
    /* Notification Strip END */

    /* Firstrand Foundation START */
    .page-start-section .page-start-section-inner .page-inner-header .foundation-filter.inner-foundation-filter {
        margin-right: 70px;
    }

    .foundation-single-title {
        margin-left: 70px;
    }

    .foundation-nav .foundation-nav-left, .foundation-nav .foundation-nav-right {
        cursor: not-allowed;
    }

        .foundation-nav .foundation-nav-left img, .foundation-nav .foundation-nav-right img {
            opacity: 0.15;
        }

        .foundation-nav .foundation-nav-left:hover img, .foundation-nav .foundation-nav-right:hover img {
            opacity: 0.20;
        }
    /* Firstrand Foundation END */
}

@media only screen and (max-width: 1399px) {
    /* Notification Strip START */
    .notification-strip {
        font-size: 14px;
    }

        .notification-strip .notification-strip-title {
            padding: 8px 20px;
            min-width: 25%;
        }

        .notification-strip .notification-strip-sub-title {
            padding: 8px 20px;
        }
    /* Notification Strip END */

    /* Dashboard START */
    .dashboard-row .sidebar {
        width: 25%;
    }

    .dashboard-row .dashboard-body {
        width: 75%;
    }
    /* Dashboard END */
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    /* Notification Strip START */
    .notification-strip-holder .notification-strip-description {
        padding-left: 25%;
    }
    /* Notification Strip END */

    /* Firstrand Foundation START */
    .page-start-section .page-start-section-inner .page-inner-header .foundation-filter.inner-foundation-filter {
        margin-right: 60px;
    }

    .foundation-single-title {
        margin-left: 60px;
    }
    /* Firstrand Foundation END */

    /* About START */
    .getting-started-block-row .get-started-block p {
        font-size: 14px;
    }

    .getting-started-block-row .get-started-block a {
        font-size: 12px;
    }
    /* About END */
}

@media only screen and (max-width: 1199px) {
    /* Notification Strip START */
    .notification-strip .notification-strip-title {
        min-width: 30%;
    }
    /* Notification Strip END */

    /* About START */
    .getting-started-block-row .get-started-block {
        width: calc(33.333% - 10px);
        margin-left: 10px;
    }

        .getting-started-block-row .get-started-block:nth-child(5) {
            padding-left: 40px;
            padding-right: 15px;
            width: calc(33.333% - 10px);
        }

        .getting-started-block-row .get-started-block:nth-child(9) {
            padding-left: 40px;
            padding-right: 15px;
            width: calc(33.333% - 10px);
        }
    /* About END */

    /* Dashboard START */
    .dashboard-row .sidebar {
        width: 30%;
    }

    .dashboard-row .dashboard-body {
        width: 70%;
    }
    /* Dashboard END */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    /* Notification Strip START */
    .notification-strip-holder .notification-strip-description {
        padding-left: 30%;
    }
    /* Notification Strip END */

    /* Firstrand Foundation START */
    .page-start-section .page-start-section-inner .page-inner-header .foundation-single-title h1 {
        font-size: 20px;
    }

    .page-start-section .page-start-section-inner .page-inner-header .foundation-filter.inner-foundation-filter {
        margin-right: 45px;
    }

    .foundation-single-title {
        margin-left: 45px;
    }
    /* Firstrand Foundation END */
}

@media only screen and (max-width: 991px) {
    /* Notification Strip START */
    .notification-strip {
        display: block;
        text-align: center;
    }

        .notification-strip .notification-strip-title {
            padding: 8px 20px;
            min-width: unset;
        }
    /* Notification Strip END */

    /* About START */
    .getting-started-block-row .get-started-block, .getting-started-block-row .get-started-block:nth-child(5), .getting-started-block-row .get-started-block:nth-child(9) {
        width: calc(50% - 10px);
    }

        .getting-started-block-row .get-started-block:nth-child(5), .getting-started-block-row .get-started-block:nth-child(9) {
            padding-left: 0px;
        }
    /* About END */

    /* Login START */
    .login-register-holder .login-register-bg {
        width: 100%;
        padding: 50px 0px;
    }

        .login-register-holder .login-register-bg .login-register-bg-content {
            min-height: unset;
            display: block;
        }

            .login-register-holder .login-register-bg .login-register-bg-content .login-register-bg-logos {
                margin-top: 50px;
            }

    .login-register-holder .login-register-contents {
        width: 100%;
        padding: 50px 0px;
    }
    /* Login END */

    /* Dashboard START */
    .dashboard-row .dashboard-body {
        width: 100%;
        position: relative;
        z-index: 0;
    }

    .dashboard-row .sidebar {
        position: fixed;
        top: 0px;
        left: calc(-100% + 10px);
        z-index: 1;
        max-width: 400px;
        overflow-y: auto;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

        .dashboard-row .sidebar.active {
            width: 100%;
            height: 100%;
            top: 0px;
            left: 0px;
            z-index: 9999999;
        }

    .sidebar::-webkit-scrollbar {
        width: 5px;
        display: none; /* width of the entire scrollbar */
    }

    .sidebar::-webkit-scrollbar-track {
        background: #F6F6F6; /* color of the tracking area */
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: var(--firstrand-purple); /* color of the scroll thumb */
        border-radius: 10px; /* roundness of the scroll thumb */
        border: 1px solid #F6F6F6; /* creates padding around scroll thumb */
    }

    .sidebar-trigger {
        position: fixed;
        left: 20px;
        bottom: 20px;
        cursor: pointer;
        border-radius: 50%;
        background-color: var(--firstrand-blue);
        box-shadow: 1px 2px 3px #00000019;
        z-index: 999999999;
        color: #FFFFFF;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    /* Dashboard END */

    /* Firstrand Foundation START */
    .filters-holder {
        justify-content: space-between;
    }

    .foundation-slider .slide-item {
        min-height: 620px;
        padding: 50px 20px;
    }

    .focus-area-categories .focus-area-category-item {
        padding-bottom: 20px;
        margin: auto;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--light-grey-text);
        max-width: 400px;
    }

    .page-start-section .page-start-section-inner .page-inner-header .foundation-single-title h1 {
        text-align: center;
        margin-top: 12px;
        margin-bottom: 25px;
    }

    .filters-holder.grey {
        justify-content: center;
    }

    .foundation-nav .foundation-nav-left, .foundation-nav .foundation-nav-right {
        width: 10%;
    }

    .foundation-nav .foundation-nav-holder {
        width: 80%;
        padding: 13px 10px;
    }

    .page-start-section .page-start-section-inner .page-inner-header .foundation-filter {
        margin-right: auto;
    }
    /* Firstrand Foundation END */

    /* Foundation Grands START */
    .page-start-section-inner.foundation-grants-page-inner .page-inner-header .page-inner-header-holder .filters-holder {
        display: block;
        text-align: right;
    }

        .page-start-section-inner.foundation-grants-page-inner .page-inner-header .page-inner-header-holder .filters-holder > div:first-child {
            margin-bottom: 10px;
            margin-right: 0px !important;
        }
    /* Foundation Grands END */
}

@media only screen and (max-width: 767px) {
    /* About START */
    .foundation-divisions-section .division-holder-divider {
        display: none;
    }

    .getting-started-block-row .get-started-block, .getting-started-block-row .get-started-block:nth-child(5), .getting-started-block-row .get-started-block:nth-child(9) {
        width: 100%;
        margin-left: 0px;
        padding-right: 0px;
    }

        .getting-started-block-row .get-started-block:nth-child(5), .getting-started-block-row .get-started-block:nth-child(9) {
            margin-top: 20px;
        }

            .getting-started-block-row .get-started-block:nth-child(5) img.get-started-block-arrow, .getting-started-block-row .get-started-block:nth-child(9) img.get-started-block-arrow {
                top: -50px;
                left: calc(50% - 32.5px);
                transform: rotate(90deg);
            }
    /* About END */

    /* Dashboard START */
    .dash-focus-areas .focus-area-item .focus-area-item-content h4 {
        font-size: 14px;
    }

    .dash-available-grands .foundation-grant-item .grant-item-content h4 {
        font-size: 25px;
    }

    .dash-available-grands .foundation-grant-item .grant-item-content p {
        font-size: 14px;
    }
    /* Dashboard START */

    /* My Applications START */
    .dash-inner-body .my-applications-holder .my-applications-item {
        display: block;
    }

        .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-thumb-title {
            width: 100%;
        }

        .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-content {
            width: calc(100% - 20px);
            background-color: #F8F8F2;
            margin: 0px 10px 10px;
        }

            .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-content > div {
                width: 35%;
            }

        .dash-inner-body .my-applications-holder .my-applications-item .my-applications-item-bell {
            display: flex;
            justify-content: end;
            width: 30%;
        }
    /* My Applications END */

    /* Grants START */
    .foundation-grant-item {
        height: unset;
    }
    /* Grants END */

    /* Firstrand Foundation START */
    .slick-prev-btn, .slick-next-btn {
        display: none;
    }

    .page-start-section .page-start-section-inner .page-inner-header .foundation-filter {
        margin-bottom: 10px;
        margin-right: 10px;
    }
    /* Firstrand Foundation END */

    /* Foundation Grands START */
    .page-start-section-inner.foundation-grants-page-inner .page-inner-header .page-inner-header-holder {
        display: block;
    }

        .page-start-section-inner.foundation-grants-page-inner .page-inner-header .page-inner-header-holder .filters-holder > div button {
            max-width: 100%;
            overflow-x: hidden;
        }
    /* Foundation Grands END */
}

@media only screen and (max-width: 575px) {
    /* Dashboard START */
    .user-gredentials-holder .user-gredential-title, .user-gredentials-holder .user-gredential-input, .user-gredentials-holder .user-gredential-change-btn {
        text-align: center;
    }

    .user-gredentials-holder .user-gredential-input {
        margin-bottom: 10px;
    }
    /* Dashboard START */

    /* Edit My Profile START */
    .edit-warning {
        display: block;
    }

        .edit-warning .edit-warning-title {
            margin-right: 0px;
            margin-bottom: 10px;
        }
    /* Edit My Profile END */

    /* Firstrand Foundation START */
    .foundation-slider .slide-item {
        min-height: 700px;
    }
    /* Firstrand Foundation END */
}
