:root {
    --orange0: #ffcd98;
    --orange1: #fd9727;
    --orange2: #ff4d07;
    --orange_gradient: linear-gradient(90deg, var(--orange1) 0%, var(--orange2) 100%);
    --dark-gray: #5d5d5d;

    --blue: #61d9ff;
    --green: #52aa33;
}

body {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none !important;
}

small {
    font-size: 10pt;
    text-align: end;
}

footer {
    background-color: var(--orange1);
    color: #fff;
    display: flex !important;
    justify-content: center;
    padding: 30px;
}

footer a {
    text-decoration: none;
    margin: 10px 20px;
    color: #fff;
}

.pointer {
    cursor: pointer;
}

.fll-text-orange {
    color: var(--orange1);
}

.fll-text-orange2 {
    color: var(--orange2);
}

a:hover {
    color: var(--orange2);
}

.fll-bg-orange-gradient {
    background: linear-gradient(90deg, var(--orange1) 0%, var(--orange2) 100%) !important;
}

.fll-bg-orange {
    background: var(--orange1) !important;
}

.fll-bg-orange2 {
    background: var(--orange2) !important;
}

.fll-text-blue {
    color: var(--blue) !important;
}

.fll-bg-blue {
    background: var(--blue) !important;
}

.fll-bg-gray {
    background: var(--dark-gray) !important;
}

nav {
    font-weight: 600;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.02em;
}

.nav-link .fll-active {
    color: var(--orange1);
}

.nav-item {
    margin-left: 10px;
    margin-right: 10px;
}

.nav-brand img {
    height: 45px;
}

.fll-btn-outline-disable {
    align-items: flex-start;
    padding: 8px 16px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--dark-gray);
    color: var(--dark-gray);
    box-sizing: border-box;
    border-radius: 24px;
    text-align: center;
    outline: none;
    line-height: 19px;

    -webkit-transition: background 300ms ease-out;
    -moz-transition: background 300ms ease-out;
    -o-transition: background 300ms ease-out;
    transition: background 300ms ease-out;
}


.fll-btn-outline {
    align-items: flex-start;
    padding: 8px 16px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--orange1);
    color: var(--orange1);
    box-sizing: border-box;
    border-radius: 24px;
    text-align: center;
    outline: none;
    line-height: 19px;

    -webkit-transition: background 300ms ease-out;
    -moz-transition: background 300ms ease-out;
    -o-transition: background 300ms ease-out;
    transition: background 300ms ease-out;
}

.fll-btn-outline:hover {
    background: var(--orange1);
    border: 1px solid var(--orange1);
    color: #fff;
    text-decoration: none;
}

.fll-btn-disable {
    padding: 10px 20px !important;

    background: linear-gradient(90deg, var(--dark-gray) 0%, var(--dark-gray) 100%);
    border-radius: 24px;

    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    outline: none;
    text-decoration: none;

    -webkit-transition: background 300ms ease-out;
    -moz-transition: background 300ms ease-out;
    -o-transition: background 300ms ease-out;
    transition: background 300ms ease-out;
}

.fll-btn {
    padding: 10px 20px !important;

    background: linear-gradient(90deg, var(--orange1) 0%, var(--orange2) 100%);
    border-radius: 24px;

    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    outline: none;
    text-decoration: none;

    -webkit-transition: background 300ms ease-out;
    -moz-transition: background 300ms ease-out;
    -o-transition: background 300ms ease-out;
    transition: background 300ms ease-out;
}

.fll-btn-lg {
    padding: 15px 25px !important;
    font-size: 18px !important;
    border-radius: 32px !important;
}

.fll-btn:hover {
    background: linear-gradient(90deg, var(--orange2) 0%, var(--orange1) 100%);
    text-decoration: none;
}

.nav-item .dropdown-menu {
    min-width: auto !important;
}

.fll-search-bar {
    border-top: solid 1px #ddd;
    font-weight: 500 !important;
}

.fll-search-bar div ul li a {
    text-transform: uppercase;
}

.fll-search-bar form div i {
    font-size: 14pt;
    margin-right: 10px;
}

.fll-search-bar form div {
    display: flex;
    border: solid 2px #ccc;
    padding: 10px 0px 10px 15px;
    border-radius: 50px;
    width: 220px;
}

.fll-search-bar form input {
    outline: none;
    border: none;
    width: 100%;
}

.fll-section-image-container {
    height: calc(100vh - 170px);
    background-position: left;
    background-size: cover;
}

.fll-section-data-container {
    display: flex;
    align-items: center;
}
.fll-section-data-container-margin {
    margin-left: 30px !important;
}

.fll-project-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;

    background: #ffffff;
    border: 1px solid #bac3d9;
    box-sizing: border-box;
    border-radius: 8px;

    overflow: hidden;

    padding: 0 !important;
}

.fll-project-card-image {
    background-position: center;
    background-size: cover;
    min-height: 120px;
    width: 100%;
}

.fll-project-card-body {
    padding: 15px;
}

.fll-project-description {
    font-size: 10pt;
}

.fll-project-card-user {
    display: flex;
    align-items: center;
}

.fll-project-card-user img {
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

.fll-project-card-user span {
    margin-left: 10px;
    font-size: 10pt;
}

.fll-project-donation {
    font-size: 10pt;
    margin-top: 10px;
}

.fll-project-progress {
    position: static;
    width: 100%;
    height: 6px;
    background: rgba(186, 195, 217, 0.4);
    border-radius: 16px;
    margin: 17px 0px;
}

.fll-project-progress div {
    background: linear-gradient(89.99deg, var(--orange1) 45.24%, #ff5109 100%);
    border-radius: 16px;
    height: 100%;
}

.fll-project-card-indicators {
    display: flex;
    justify-content: space-between;
}

.fll-project-card-indicators small {
    text-transform: uppercase;
    color: #929db8;
    font-size: 8pt;
}

.fll-project-card-indicators span {
    font-size: 12pt;
    font-weight: 700;
}

.fll-project-card-indicator-left {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.fll-project-card-indicator-left span span {
    font-weight: 400;
    color: #929db8;
}

.fll-project-card-indicator-right {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.slck-prev,
.slck-next {
    cursor: pointer;
    transition: all 300ms;
    transform: scale(1);
}

.slck-prev:hover,
.slck-next:hover {
    color: var(--orange0);
    transform: scale(1.1);
}

.fll-how-image {
    height: 100%;
    width: 100%;
    background-position: top;
    background-size: cover;
}

.timeline {
    margin: 0 auto;
    margin-top: 20px;
    padding: 15px;
}

.item-container {
    margin-bottom: 10px;
    position: relative;
    display: flex;
}

.item-icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--orange1);
}

.item-icon span {
    color: var(--orange1);
    margin: 0 auto;
    font-size: 22pt;
}

.item-line {
    top: 0;
    left: 30px;
    width: 0;
    height: calc(100% - 50px);
    border: 1px dashed var(--orange1);
    margin: 0 auto;
}

.item-content {
    padding: 0 1rem 0 2rem;
}
.item-content p {
    color: #aaa;
    font-weight: 300;
}

.fll-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10% 0;
}

.fll-img-wrapper img {
    width: 80%;
}

.fll-section-video span {
    outline: none;
    background-color: #00000000;
    color: #dddddd90;
    border: none;
    cursor: pointer;
    position: absolute;
}

#fll-btn-play {
    left: calc(50% - 10vh);
    top: calc(50% - 10vh);
    font-size: 10vh;
}

#fll-btn-pause {
    right: 10%;
    bottom: 10%;
}

.fll-section-video {
    position: relative;
}

.fll-profile-img-container {
    margin: auto auto;
}

.fll-profile-img {
    width: 180px;
    height: 180px;
    max-width: 180px;
    max-height: 180px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 100px;
    margin: auto auto;
}

.fll-profile-img-sm {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    overflow: hidden;
    border-radius: 35px;
    background-position: center;
    background-size: cover;
}

.fll-profile-header {
    display: flex;
    justify-content: space-between;
}

.fll-bottom-border {
    border-bottom: solid 1px #ccc;
    min-height: 1px;
    height: 1px;
}

.fll-top-bottom-border {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.fll-dinamic-border {
    border-bottom: solid 1px #ccc;
    border-right: none;
}

.fll-text-green {
    color: var(--green);
}

.fll-badge-outline {
    border-radius: 50px;
    font-size: 8pt;
    padding: 6px 10px;
    border: 1px solid #aaa;
    color: #aaa;
    margin-right: 9px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.fll-project-img {
    border-radius: 10px;
    height: calc(100vh - 300px);
    width: 100%;
    background-size: cover;
    background-position: center;
}

.fll-sm-step {
    font-size: 12pt;
    margin-left: 10px;
}

.nav-link {
    color: #aaa;
    font-weight: 400;
}

.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #fff #fff #999 !important;
}

.nav-tabs .nav-link:hover {
    color: #495057;
    background-color: #fff;
    border-color: #fff #fff var(--orange1) !important;
}

.fll-document-thumb {
    width: 100px;
    height: 50px;
    max-height: 50px;
    max-width: 100px;
    border-radius: 3px;
}

.fll-td-documents {
    font-size: 10pt;
}

.fll-td-documents-thumb {
    max-width: 120px;
}

.fll-folow-up-container {
}
.fll-folow-up-card {
    background: #f4f5f8;
    border-radius: 8px;
}

.fll-folow-up-header {
    display: flex;
    padding: 20px 20px 0 20px;
}

.fll-folow-up-header-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 10px;
}

.fll-folow-up-user {
    padding-left: 5px;
}

.fll-folow-up-user p {
    margin: 0;
}

.fll-folow-up-user small {
    top: -5px;
    position: relative;
}

.fll-folow-up-likes {
    display: flex;
    align-items: center;
}

.fll-folow-up-message {
    display: flex;
    padding: 10px 20px 0 20px;
    border-bottom: 1px solid #bac3d966;
}

.fll-folow-up-comment {
    padding: 20px;
}

.fll-folow-up-comment input {
    padding: 10px;
    background-color: #fff;
    color: #333;
    outline: none;
    border-radius: 5px;
    border: none;
    width: 100%;
}

.fll-folow-up-comments {
    display: flex;
    padding: 0 20px 20px 20px;
}

.fll-project-info {
    background: #ffffff;
    box-shadow: 0px 0px 20px #e4e7ee;
    border-radius: 8px;
}

.fll-project-info-header {
    padding: 20px;
}

.fll-project-info-header h3 small {
    font-size: 0.5em;
}

.fll-text-upper {
    text-transform: uppercase;
}

.fll-see-all {
    color: var(--orange1);
}

.fll-see-all:hover {
    color: var(--orange2);
}

.fll-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d7dfd0;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.fll-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--orange2);
}

.fll-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--orange2);
    cursor: pointer;
}

.fll-card-default,.fll-card-primary,.fll-card-danger,.fll-card-success,.fll-card-warning,.fll-card-orange{
    border-radius: 10px;
    padding: 10px;
}

.fll-card-default{
    border:1px solid rgb(217, 202, 197);
    background-color: rgb(244, 235, 232);
}

.fll-card-orange{
    background-color: var(--orange2);
    color: #fff;
}

.fll-card-warning{
    background-color: var(--orange1);
    color: #fff;
}

.fll-card-gradient{
    background-color: var(--orange-gradient);
    color: #fff;
}


















@media (min-width: 992px) {
    .fll-nav-margins {
        margin-left: 85px;
        margin-right: 85px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fll-search-bar {
        padding-left: 85px !important;
        padding-right: 85px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .fll-section-data-container-margin {
        margin: 90px !important;
    }

    .fll-dinamic-border {
        border-right: solid 1px #ccc;
        border-bottom: none;
    }

    .timeline {
        margin: 0 auto;
        margin-left: 70px;
        margin-top: 20px;
        padding: 15px;
    }
}

.fll-btn-donate-type {
    padding: 10px;
    background: rgb(244, 235, 232);
    transform: scale(1);
    color: rgb(117, 96, 85);
    box-shadow: 3px 3px 5px rgb(255, 255, 255);
    outline: none;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    margin: 10px;
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;

    transition: all 0.5s;
}
.fll-btn-donate-type img {
    width: 50px;
}

.fll-btn-donate-type span {
    font-size: 8pt;
    margin-top: 9px;
    width: 100%;
}

.fll-btn-donate-type:hover {
    color: rgb(231, 231, 231);
    box-shadow: 5px 5px 10px rgb(180, 180, 180);
    transform: scale(1.2);
    background: var(--orange_gradient);
    border: 1px solid rgb(234, 78, 0);
    z-index: 1;
}

.opacity-25{
    opacity: 50%;
}
.opacity-50{
    opacity: 50%;
}
.opacity-75{
    opacity: 50%;
}


/* Custom Scroll bar to Zelliz elements */

.fll-scroll{
    margin-bottom: 5px;
    padding-bottom: 5px !important;
}

.fll-scroll::-webkit-scrollbar-track{
    background-color: #7c7c7c15;
}

.fll-scroll::-webkit-scrollbar{
    transition: 500ms all;
    top: -5px;
    right: -5px;
    width: 7px;
    height: 7px;
    background-color: rgba(153, 153, 153, 0.151);
    margin: 5px;
    border-radius: 10px;
}
.fll-scroll::-webkit-scrollbar-thumb{
    background-color: rgba(53, 53, 53, 0.219);
    border-radius: 10px;
}
