/* ===========================================================
   FUNDER LOGIN + REGISTER — NFA
   File: assets/css/funder.css
   ============================================================ */

/* ─── Shared: Topbar ─── */
.funder-login-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eaed;
}
.funder-reg-topbar{
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 100px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eaed;
}

.funder-login-topbar__back,
.funder-reg-topbar__back {
    display: flex;
    align-items: center;
    gap: 15px;
	padding:0 11px 0 15px;
    font-size: 16px;
	letter-spacing:1px;
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.funder-login-topbar__back:hover,
.funder-reg-topbar__back:hover {
    color: #0a1f3c;
}

/* ─── Shared: Button states ─── */
.funder-login-form__submit.is-loading .btn-text,
.funder-reg-footer__submit.is-loading .btn-text {
    display: none;
}

.funder-login-form__submit .btn-loader,
.funder-reg-footer__submit .btn-loader {
    display: none;
}

.funder-login-form__submit.is-loading .btn-loader,
.funder-reg-footer__submit.is-loading .btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loader svg {
    animation: nfa-spin 0.8s linear infinite;
}

@keyframes nfa-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ─── Shared: Error / success states ─── */
.funder-login-form__group.has-error .funder-login-form__input,
.funder-reg-field.has-error .funder-reg-field__input,
.funder-reg-field.has-error .funder-reg-field__select {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

.funder-login-form__group.has-success .funder-login-form__input,
.funder-reg-field.has-success .funder-reg-field__input,
.funder-reg-field.has-success .funder-reg-field__select {
    border-color: #38a169 !important;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.08) !important;
}

.funder-reg-section.has-error {
/*     outline: 2px solid #e53e3e; */
    outline-offset: -2px;
	border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

/* ─── Server messages ─── */
.funder-login-server-msg,
.funder-reg-server-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.funder-login-server-msg.msg--error,
.funder-reg-server-msg.msg--error {
    display: block;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
}

.funder-login-server-msg.msg--success,
.funder-reg-server-msg.msg--success {
    display: block;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
	margin-top:15px;
    color: #276749;
}

.funder-login-server-msg a,
.funder-reg-server-msg a {
    color: inherit;
    font-weight: 600;
}


/* ================================================================
   LOGIN PAGE
================================================================ */
.funder-login-page {
/*     min-height: 100vh; */
    background-color: #F9FAFB;
    display: flex;
    flex-direction: column;
}

.funder-login-topbar__btn {
    display: inline-block;
    padding: 20px 32px;
    background-color: #FF3E03;
    color: #ffffff;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
	line-height:var(--lh-normal);
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.funder-login-topbar__btn:hover {
    background-color: #c94c18;
    color: #ffffff;
}

.funder-login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.funder-login-card {
    background: #ffffff;
	border-radius: 12px;
	border: 1.252px solid var(--f-3-f-3-f-5, #F3F3F5);
    padding: 40px;
    width: 100%;
    max-width: 540px;
}

.funder-login-card__title {
    color: #0A0A0A;
    text-align: center;
    margin: 0 0 12px;
}

.funder-login-card__subtitle {
    font-size: var(--fs-16);
	font-weight:var(--fw-400);
    color: #5F5F5F;
    text-align: center;
    line-height: var(--lh-150);
    margin: 0 0 32px;
	letter-spacing:0;
}

.funder-login-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.funder-login-form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 34px;
}

.funder-login-form__label {
	font-size: var(--fs-16);
	font-weight:var(--fw-400);
    color: #0A0A0A;
    margin-bottom: 8px;
}
.funder-password{
	margin-bottom:24px !important;
}

.funder-login-form__input {
	border:none;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: var(--fs-16);
	font-weight:var(--fw-400);
	line-height:var(--lh-125);
    color: #6A7282;
    background: #F3F3F5;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.funder-login-form__input::placeholder {
    color: #6A7282;
}

.funder-login-form__input:focus {
    border-color: #1a3a6b;
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.funder-login-form__error {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 5px;
    min-height: 16px;
    display: block;
}

/* Input wrap (password eye) */
.funder-login-form__input-wrap {
    position: relative;
}

.funder-login-form__eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.funder-login-form__eye .eye-closed {
    display: none;
}

.funder-login-form__submit {
	padding:12px 16px;
    background-color: #003B86;
    color: #ffffff;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    text-transform: uppercase;
	line-height:var(--lh-normal);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.funder-login-form__submit:hover:not(:disabled) {
    background-color: #0e2550;
}

.funder-login-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.funder-login-form__register {
    text-align: center;
    font-size: var(--fs-18);
	font-weight:var(--fw-400);
	line-height:var(--lh-166);
	letter-spacing:-0.15px;
    color: #666666;
    margin: 32px 0 0;
	letter-spacing:-0.312px;
}

.funder-login-form__register a {
	font-size:var(--fs-20);
	font-weight:var(--fw-400);
	line-height:var(--lh-normal);
    color: #003B86;
    text-decoration: none;
}

.funder-login-form__register a:hover {
    text-decoration: underline;
}

/* ================================================================
   REGISTER PAGE
================================================================ */
.funder-reg-page {
    min-height: 100vh;
    background-color: #F9FAFB;
    display: flex;
    flex-direction: column;
}

.funder-reg-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-18);
	font-weight:var(--fw-400);
	line-height: var(--lh-166);
	letter-spacing:-0.15px;
    color: #6A7282;
}

.funder-reg-topbar__login {
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
	line-height:139.07%;
    color: #0A0A0A;
    text-decoration: none;
    padding: 10px 20px;
    border: 1.252px solid rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    transition: all 0.2s;
}

.funder-reg-topbar__login:hover {
    background: #1a3a6b;
    color: #ffffff;
}

.funder-reg-main {
    flex: 1;
    padding: 65px 20px 60px;
    display: flex;
    justify-content: center;
}

.funder-reg-wrap {
    border-radius: 12px;
border: 1.252px solid #F3F3F5;
background: #FFF;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 1680px;
}

.funder-reg-wrap__title {
    color: #003B86;
}

.funder-reg-wrap__stage {
    font-size: var(--fs-18);
	font-weight:var(--fw-400);
	line-height:var(--lh-166);
	letter-spacing:-0.15px;
    color: #6A7282;
}

.funder-reg-wrap__note {
    font-size: var(--fs-16);
	font-weight:var(--fw-400);
	line-height:var(--lh-125);	
    color: #6A7282;
}

/* Section */
.funder-reg-section {
    border-radius: 10px;
border: 1.4px solid #F3F3F5;
background: #FFF;
    border-radius: 6px;
    padding: 24px 24px 24px;
/*     margin-bottom: 32px; */
}

.funder-reg-section--terms {
    background: #f7f8fa;
}

.funder-reg-section__title {
/*     font-size: 16px;
    font-weight: 700; */
    color: #0A0A0A;
}
.funder-reg-industries-title{
	margin-bottom:12px !important;
}

.funder-reg-section__note {
    font-size: var(--fs-16);
	font-weight:var(--fw-400);
	line-height:var(--lh-125);
    color: #6A7282;
}

/* Row */
.funder-reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.has-checkboxes {
  padding: 24px 24px 4px;
}

.funder-reg-row:last-child {
    margin-bottom: 0;
}

/* Field */
.funder-reg-field {
    display: flex;
    flex-direction: column;
}

.funder-reg-field__label {
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
	line-height:var(--lh-166);
	letter-spacing:-0.15px;
    color: #0A0A0A;
}

.funder-reg-field__input,
.funder-reg-field__select {
    border: 1.5px solid #dde2ea;
    border-radius: 8px;
    padding: 16px;
    font-size: var(--fs-14);
	font-weight:var(--fw-400);
	line-height:var(--lh-normal);
    color: #6A7282;
    background: #F3F3F5;
	border: 1px solid rgba(0, 0, 0, 0.00);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.funder-reg-field__input:focus,
.funder-reg-field__select:focus {
    border-color: #1a3a6b;
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.funder-reg-field__error {
    font-size: 12px;
    color: #e53e3e;
	margin-top:5px;
    margin-bottom: 12px;
    min-height: 16px;
    display: block;
}

/* Select wrapper */
.funder-reg-field__select-wrap {
    position: relative;
}

.funder-reg-field__select-wrap::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><g opacity='0.5'><path d='M4 6L8 10L12 6' stroke='%23717182' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/></g></svg>");
    background-repeat: no-repeat;
    pointer-events: none;
}

.funder-reg-field__select-wrap::after {
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}

.funder-reg-field__select-wrap.active::after {
    transform: translateY(-50%) rotate(180deg);
}
.funder-reg-field__select {
    appearance: none;
    width: 100%;
    padding-right: 30px;
}

/* File upload */
.funder-reg-field__upload-wrap {
    position: relative;
}

.funder-reg-field__file {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 2;
}

.funder-reg-field__upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.00);
    border-radius: 8px;
    padding: 16px;
    background: #F3F3F5;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.funder-reg-field__upload-label:hover {
    border-color: #1a3a6b;
}

.upload-placeholder {
    font-size: var(--fs-14);
	font-weight:var(--fw-400);
	line-height:var(--lh-normal);
    color: #6A7282;
/*     white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Checkbox grids */
.funder-reg-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.funder-reg-checkbox-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.funder-reg-checkbox-grid--1col {
    grid-template-columns: 1fr;
}

.funder-reg-checkbox-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.funder-reg-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: #333333;
}

.funder-reg-checkbox input[type="checkbox"] {
    display: none;
}

.funder-reg-checkbox__box {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
/*     border: 1.5px solid #b0bac8;
    border-radius: 3px;
    background: #ffffff; */
	border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.10);
background: #F3F3F5;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funder-reg-checkbox input[type="checkbox"]:checked+.funder-reg-checkbox__box {
    background: #1a3a6b;
    border-color: #1a3a6b;
}

.funder-reg-checkbox input[type="checkbox"]:checked+.funder-reg-checkbox__box::after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) translateY(-1px);
}

.funder-reg-checkbox__label {
    font-size:var(--fs-18);
	font-weight:var(--fw-500);
	line-height:var(--lh-normal);
	text-transform:capitalize;
	color:#0A0A0A;
}

/* Terms checkbox */
.funder-reg-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.funder-reg-terms input[type="checkbox"] {
    display: none;
}

.funder-reg-terms__box {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 1.5px solid #b0bac8;
    border-radius: 3px;
    background: #ffffff;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    position: relative;
}

.funder-reg-terms input[type="checkbox"]:checked+.funder-reg-terms__box {
    background: #1a3a6b;
    border-color: #1a3a6b;
}

.funder-reg-terms input[type="checkbox"]:checked+.funder-reg-terms__box::after {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) translateY(-1px);
}

.funder-reg-terms__text {
    font-size: var(--fs-18);
	font-weight:avr(--fw-400);
/* 	line-height:var(--lh-166); */
	letter-spacing:-0.15px;
    color: #0A0A0A;
}

/* Footer */
.funder-reg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.funder-reg-footer__login {
	display:flex;
	gap:12px;
    font-size: var(--fs-16);
	font-weight:var(--fw-400);
	line-height:var(--lh-125);
    color: #6A7282;
    margin: 0;
}

.funder-reg-footer__login a {
    color: #003B86;
    font-weight: var(--fw-400);
	line-height:var(--lh-125);
    text-decoration: none;
}

.funder-reg-footer__login a:hover {
    text-decoration: underline;
}

.funder-reg-footer__submit {
    padding:16px 32px;
    background: #003B86;
    color: #ffffff;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
	line-height:var(--lh-normal);
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.funder-reg-footer__submit:hover:not(:disabled) {
    background: #0e2550;
}

.funder-reg-footer__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.funder-login-form__error:empty ,
.funder-reg-field__error:empty{
    display: none !important;
}
.funder-reg-input-error{
	margin-bottom:unset !important;
}
#err-terms_accept{
	margin-left: 25px;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
    .funder-reg-wrap {
        padding: 24px 16px;
    }

    .funder-reg-row {
        grid-template-columns: 1fr;
    }

    .funder-reg-checkbox-grid,
    .funder-reg-checkbox-grid--3col {
        grid-template-columns: 1fr 1fr;
    }

    .funder-reg-checkbox-grid--2col {
        grid-template-columns: 1fr;
    }

    .funder-reg-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .funder-reg-footer__submit {
        width: 100%;
        justify-content: center;
    }

    .funder-login-card {
        padding: 30px 20px 24px;
    }

    .funder-reg-page .funder-reg-topbar,
    .funder-reg-page .funder-login-topbar {
        padding: 12px 16px !important;
    }
}

@media (max-width: 480px) {

    .funder-reg-checkbox-grid,
    .funder-reg-checkbox-grid--3col {
        grid-template-columns: 1fr;
    }

    .funder-reg-topbar__right span {
        display: none;
    }
}
@media  only screen and (max-width:1599px){
	.funder-reg-topbar{
		padding: 30px 20px !important;
	}
	.funder-login-topbar__back, .funder-reg-topbar__back{
		padding:0;
	}
	.funder-login-topbar{
		padding:20px;
	}
	.funder-login-main{
		    padding: 85px 20px;
	}
}
@media only screen and (max-width:1366px){
	.funder-reg-main{
		    padding: 40px 20px 60px;
	}
	.funder-reg-wrap{
		padding: 30px;
	}
	.funder-reg-section{
		padding: 20px;
	}
	.funder-login-main{
		    padding: 75px 20px;
	}
	.has-checkboxes {
    padding: 20px 20px 4px;
}
}
@media only screen and (max-width:1024px){
	.funder-reg-section{
		margin-bottom: 20px;
	}
	.funder-login-main{
		    padding: 65px 20px;
	}
}
@media only screen and (max-width:767px){
	    .funder-reg-wrap{
        padding: 20px;
    }
	    .funder-reg-main {
        padding: 30px 15px 60px;
    }
	.funder-reg-row{
		margin-bottom: 15px !important;
	}
	.funder-reg-row:last-child{
		margin-bottom: unset !important;
	}
	.funder-reg-row{
		grid-template-columns: 1fr;
    gap: 15px;
	}
	    .funder-login-main {
        padding: 50px 20px;
    }
}
@media only screen and (max-width:480px){
	    .funder-reg-wrap {
        padding: 15px;
    }
	    .funder-reg-section {
        padding: 15px;
    }
	.funder-reg-field__input, .funder-reg-field__select{
		    padding: 13px;
	}
	.funder-login-topbar{
		flex-direction:column;
		justify-content:flex-start;
		align-items:flex-start;
		gap:20px;
	}
	    .funder-login-main {
        padding: 30px 20px;
    }
		.has-checkboxes {
    padding: 15px 15px 4px;
}
	.funder-reg-field__error{
		margin-bottom: 5px;
	}
}
@media only screen and (max-width:375px){
	.funder-reg-wrap{
		padding:10px;
	}
	    .funder-reg-section {
        padding: 10px;
    }
}
/* ================================================================
   NFA FUNDER APPLICATION – Document Upload & Confirmations
================================================================ */

/* Document upload area (distinct from logo upload) */
.funder-reg-field__upload-wrap--doc .funder-reg-field__upload-label {
    background: #f8f9fa;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    min-height: 60px;
}

.funder-reg-field__upload-wrap--doc .funder-reg-field__upload-label:hover {
    border-color: #0a0a0a;
    background: #f0f0f0;
}

.funder-reg-field__upload-wrap--doc .upload-placeholder {
    font-size: 14px;
    color: #888;
    flex: 1;
}

.funder-reg-field__upload-wrap--doc .upload-placeholder.has-file {
    color: #0a0a0a;
    font-weight: 500;
}

/* Full-width field variant */
.funder-reg-field--full {
    grid-column: 1 / -1;
}

/* Optional label text */
.funder-reg-field__label-optional {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-left: 4px;
}

/* Confirmations section */
/* .funder-reg-section--confirmations {
    border-left: 3px solid #0a0a0a;
} */

.funder-reg-confirmations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.funder-reg-confirmations-list .funder-reg-field__error {
    margin-top: -8px;
    margin-left: 27px;
    display: block;
}
.funder-reg-row-field{
	display:block !important;
}

/* ── Select2 credit range multiselect override ── */
.funder-reg-credit-ranges-select + .select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--multiple {
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
/*     min-height: 48px; */
    padding:16px !important;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #0a0a0a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(10,10,10,0.08);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 3px 8px 3px 6px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 !important;
}
/* .select2-container .select2-search--inline .select2-search__field{
	height:0 !important;
} */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255,255,255,0.75);
    margin-right: 0;
    font-size: 14px;
    line-height: 1;
    order: -1;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background: transparent;
    color: #fff;
}
/* Search input inside the multiple select */
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    font-size: 14px;
    color: #374151;
/*     margin-top: 4px; */
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    outline: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #0a0a0a;
    box-shadow: 0 0 0 2px rgba(10,10,10,0.08);
}
.select2-dropdown {
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    overflow: hidden;
}
.select2-results__option {
    padding: 8px 12px;
    cursor: pointer;
}
.select2-results__option--highlighted {
    background-color: #0a0a0a !important;
    color: #fff !important;
}
.select2-results__option[aria-selected=true] {
    background-color: #f3f4f6;
    color: #374151;
}
.funder-reg-field.has-error .select2-container--default .select2-selection--multiple {
    border-color: #e53e3e;
}
.funder-reg-field.has-success .select2-container--default .select2-selection--multiple {
    border-color: #38a169;
}

.select2-selection__choice__display { color:#000 !important; margin-right:10px !important; }
ul.select2-selection__rendered { display:inline-flex !important; gap:10px !important; }

.select2-container--default .select2-selection--multiple{
    display: flex !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
	height:auto !important;
	min-height:auto !important;
	display:flex !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
	top:15% !important;
}