.search-funding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sp-filters {
    padding-top: 45px;
    margin-bottom: 50px;

    border-bottom: 1px solid #d4d4d4;

    text-align: center;
}

.sp-filters label {
    display: inline-block;
    margin-bottom: 45px;

    color: #000;
    font-weight: bold;

    vertical-align: middle;
}
.sp-filters label span {
    display: inline-block;
    margin-right: 15px;
}

.sp-filters input, .sp-filters select {
    padding: 10px;

    border-radius: 5px;
    border: 1px solid #d2d2d2;
    outline: none;
}
.sp-filters input {
    padding-right: 40px;
}
.sp-filters select {
    margin-right: 20px;

    vertical-align: middle;

    text-transform: none;
}

.filter-name-block {
    display: inline-block;
    margin-right: 35px;
    margin-bottom: 45px;

    position: relative;
    vertical-align: middle;
}
.filter-name-block:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -7px;

    position: absolute;
    top: 50%;
    right: 18px;

    border: 2px solid #ced0da;
    border-radius: 50%;
}
.filter-name-block:after {
    content: '';
    display: block;
    position: absolute;
    right: 16px;
    top: 24px;
    border-width: 0;
    background: #ced0da;
    width: 6px;
    height: 2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

@media only screen and (max-width:560px) {
    .sp-filters {
        padding-top: 0;
    }
    .sp-filters label.filter-sp-cat, .sp-filters label.filter-sp-type {
        display: none;
    }
    .sp-filters label {
        margin-bottom: 20px;
    }
    .filter-name-block {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .filter-name-block input {
        display: block;
        width: 100%;

        box-sizing:border-box;
    }
}

@media only screen and (max-width:560px) {
    .sp-filters label {
        display: block;
        text-align: left;
    }
    .sp-filters label span {
        min-width: 40px;
    }
}
    
/* --------------------------------------------------
    
    TABLE
    
-------------------------------------------------- */


.supported-project-table {
    width: 100%;

    position: relative;

    margin-bottom: 50px;
}

.supported-project-table.loading {
    opacity: 0.6
}

.supported-project-table.loading:before {
    content: '';
    display: block;
    height: 30px;
    width: 30px;
    margin-left: -15px;

    background-image: url(../images/loader-black.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    

    position: absolute;
    left: 50%;
    top: 0;
}
.no-svg .supported-project-table.loading:before {
    background-image: url(../images/loader-black.gif);
}


.supported-project-table .t-head {
    color: #fe131a;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 45px;
}
.supported-project-table .t-head span {
    display: block;
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;

    float: left;

    box-sizing:border-box;
}
.supported-project-table .t-body {
    list-style: none;
    padding: 0;
    margin: 0;
}
.supported-project-table .t-body li {
    background-color: #fafafa;
    border-bottom: 15px solid #fff;
}
.supported-project-table .t-body li:after {
    content: '';
    display: block;
    clear: both;
}
.supported-project-table .t-body li > span {
    display: block;
    width: 25%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 20px;

    float: left;

    box-sizing:border-box;
    text-transform: capitalize;

    border: none;
}
.supported-project-table .t-body span.name, .supported-project-table .t-head span.name {
    width: 35%;
}
.supported-project-table .t-body span.amount, .supported-project-table .t-head span.amount {
    width: 15%;
}
.supported-project-table .t-body span.amount {
    text-align: right;
}
.supported-project-table .t-body span.category {
    text-transform:none;
}
.supported-project-table .t-body li > span span {
    display: none;
    margin-right: 20px;
    font-weight: bold;
    color: #fe131a;
}

.supported-project-table .t-foot {
    font-size: 18px;
}

.supported-project-table .t-foot .amount-total {
    float: right;
    padding-right: 20px;
}


@media only screen and (max-width:850px) {
    .supported-project-table .t-body span.name, .supported-project-table .t-head span.name {
        width: 35%;
    }
    .supported-project-table .t-body span.amount, .supported-project-table .t-head span.amount {
        width: 15%;
    }
}
@media only screen and (max-width:600px) {
    .supported-project-table .t-head {
        display: none;
    }
    .supported-project-table .t-body li > span, .supported-project-table .t-body span.name, .supported-project-table .t-body span.amount {
        width: 100%;

        float: none;
        text-align: left;
    }
    .supported-project-table .t-body li > span.sub-tab {
        display: none;
    }
    .supported-project-table .t-body li.opened > span.sub-tab {
        display: block;
    }

    .supported-project-table .t-body span.name {
        position: relative;
        padding-right: 35px;

        cursor: pointer;
    }
    .supported-project-table .t-body span.name:before {
        content: '';
        display: block;
        width: 11px;
        height: 2px;
        margin-top: -1px;

        background-color: #fe131a;

        position: absolute;
        right: 10px;
        top: 50%;
    }
    .supported-project-table .t-body span.name:after {
        content: '';
        display: block;
        width: 2px;
        height: 10px;
        margin-top: -5px;

        background-color: #fe131a;

        position: absolute;
        right: 14px;
        top: 50%;
    }
    .supported-project-table .t-body .opened span.name:after {
        display: none;
    }
    .supported-project-table .t-body li > span span {
        display: inline-block;
    }
}

/* --------------------------------------------------
    
    FUNNEL CAROUSEL
    
-------------------------------------------------- */

.carousel-container {
    margin-top: -50px;
    padding-top: 53px;
    padding-bottom: 25px;

    text-align: center;
}

.carousel-container h2 {
    font-size: 26px;
    color: #000;
}

.funnel-carousel {
    width: 100%;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 40px;

    white-space: nowrap;
}
.funnel-carousel:before, .funnel-carousel:after {
    content: '';
    display: none;
    width: 0;
	height: 0;
    border-top: 10px solid transparent;
    border-right: 11px solid #fe131a;
    border-bottom: 10px solid transparent;

    position: absolute;
    top: 132px;
}
.funnel-carousel:before {
    left: -20px;
}
.funnel-carousel:after {
    right: -20px;
    transform: rotate(180deg);
}

.funnel-carousel .viewport {
    width: 100%;
    height: 283px;
    overflow: hidden;
    position: relative;
}
.funnel-carousel .overview {
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
}

.funnel-carousel .scrollbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.funnel-carousel .scrollbar .track {
    height: 6px;
    position: relative;
    background-color: rgb(208, 208, 208);
}
.funnel-carousel .scrollbar .thumb {
    height:6px;
    width:25px;
    background-color: #fe131a;

    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -5px;
}

.funnel-carousel .carrousel-item {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    white-space: normal;

    font-size: 0;
}

.funnel-carousel .carrousel-item:after {
    content: '';
    display: block;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;

    background-color: rgba(0,0,0,0.4);
}
.funnel-carousel .carrousel-item:last-child {
    margin-right: 0;
}

.funnel-carousel .carrousel-item:hover:after {
    background-color: rgba(254, 19, 26, 0.9);
}

.funnel-carousel .carrousel-item a > span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;

    padding-left: 35px;
    padding-right: 35px;

    font-size: 18px;
    color: #fff;


    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    text-align: center;
}
.carousel-scroll-container {
    margin-bottom: 50px;
    text-align: center;
}
.carousel-container .scroll-btn, .carousel-scroll-container .scroll-btn {
    position: relative;
    bottom: 0;

    color: #242424;
}
.carousel-container .scroll-btn:before, .carousel-container .scroll-btn:after, .carousel-scroll-container .scroll-btn:before, .carousel-scroll-container .scroll-btn:after {
    background-color: #242424;
}

.sp-carrousel-container {
    padding-top: 25px;
}

.sp-carrousel-container h2 {
    font-size: 26px;
    color: #000;
}
.center-content {
    text-align: center;
}

/* --------------------------------------------------
    
    FINANCEMENTS
    
-------------------------------------------------- */

.funnel-carousel-intro {
    margin-top: -20px;
    margin-bottom: 50px;
    text-align: center;
}

.funnel-carousel-intro.align-left {
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
}

.financial-bloc {
    max-width: 410px;

    padding-left: 280px;
    margin-bottom: 100px;
    margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}
.financial-bloc:after {
    content: '';
    display: block;
    clear: both;
}

.financial-bloc img {
    display: inline-block;
    margin-left: -280px;

    float: left;
}
.financial-bloc h2 {
    margin-bottom: 30px;

    font-size: 22px;
    line-height: 25px;

    color: #fe131a;
    font-weight: normal;
}
.financial-bloc span {
    display: block;
    margin-bottom: 25px;

    color: #354052;
    font-size: 14px;
}
.financial-bloc a {
    font-size: 14px;
}

.all-criteria {
    text-align: center;
}.all-criteria {
    text-align: center;
}
.all-criteria a {
    font-size: 14px;
    line-height: 14px;
}
.financial-bloc a.red-button {
    padding: 18px;
}
.financial-bloc .button-mention {
    display: block;
    padding: 15px;
    font-style: italic;
    background-color: #d9d9d9;
    margin-top: 10px;
}

@media only screen and (max-width:550px) {
    .financial-bloc {
        max-width: 100%;
        padding-left: 0;

        text-align: center;
    }
    .financial-bloc img {
        margin-left: 0;
        margin-bottom: 30px;

        float: none;
    }
}


.single-funding-bloc {
    max-width: 100%;

    /* padding-left: 280px; */
    margin-bottom: 100px;
    margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}
.single-funding-bloc:after {
    content: '';
    display: block;
    clear: both;
}

.single-funding-bloc p img {
    float: left;
    /* max-width: 100%; */
    width: 40%;
    /* margin-right: 30px; */
    padding-right: 30px;
    /* padding: 0 10px 10px 0; */
    /* background: red; */
}

@media only screen and (max-width:600px) {
    .single-funding-bloc p img {
        float: none;
        width: 100%;
        padding: 0px;
        margin: 0px !important;
    }

}

/* .single-funding-bloc-content p{
    float:right;
} */

.single-funding-bloc-content::after{
    content: '';
    display: block;
    clear: both;
}

.single-funding-bloc-content h2 {
    padding-top: unset;
    margin-bottom: 30px;

    font-size: 22px;
    line-height: 25px;

    /* color: #fe131a; */
    font-weight: normal;
}

.single-funding-bloc-content a {
    font-size: 14px;
}

.single-funding-bloc a.red-button {
    padding: 18px;
}
.single-funding-bloc .button-mention {
    display: block;
    text-align: center;
    padding: 15px;
    font-style: italic;
    background-color: #d9d9d9;
    margin-top: 10px;
}

/* --------------------------------------------------
    
    FUNNEL QUESTIONS
    
-------------------------------------------------- */


.funnel-question-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.funnel-question-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;

    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;

    font-size: 16px;
    text-align: center;
}
.funnel-question-container h1 {
    color: #fff;
}

.funnel-question-container .page-header-infos a {
    display: block;
    max-width: 405px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;

    color: #fff;
    border: 1px solid #afaaaf;
    border-radius: 2px;

    transition-property: background-color;
    transition-duration: 0.2s;
}
.funnel-question-container .page-header-infos a:hover {
    border-color: #fe131a;
    background-color: #fe131a;
}


.children-blocs {
    color: #fff;
}
.children-blocs .child {
    display: none;
}

/* --------------------------------------------------
    
    QUESTION SECTION FUNNEL
    
-------------------------------------------------- */

.question-item.child-item {
    display: none;
}



@media only screen and (max-width:1000px) {
    .funnel-question-cover img {
        display: none;
    }
    .funnel-question-container {
        position: relative;
        padding-bottom: 100px;
    }

}

@media only screen and (max-width:800px) {
    .simple-cover a.back-parent-btn {
        top: 70px;
    }

}

@media only screen and (max-width:590px) {
    .funnel-question-container {
        display: block;
        white-space: normal;
    }
    .funnel-question-container .page-header-infos a {
        margin-left: auto;
        margin-right: auto;
    }

}


.content.sp-carrousel-container {
    margin-bottom: 50px;
}