.projects {
    padding: 2rem 0;
}
.projects .search-container {
    background: #FFFFFF;
    padding: 1rem;
    align-items: center;
    border-radius: 1rem;
}
.projects .project-card {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #0000001A;
    color: #000000;
    border-radius: 1.5rem;
}
.projects .project-card .image-wrapper {
    height: 300px;
    width: 100%;
    position: relative;
}
.projects .project-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
.projects .project-card .image-wrapper .share-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}
.projects .project-card .title {
    background: #F9F9F9;
    font-weight: bold;
    padding: 1rem 2rem;
}
.projects .project-card .project-content {
    padding: 1rem 2rem;
}
.projects .project-card .project-content .custom-progress {
    height: 10px;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #eee;
}
.projects .project-card .project-content .progress-pattern {
    height: 100%;
    background-size: 20px 100%;
    background-repeat: repeat-x;
    transition: width 0.4s ease;
}
.projects .project-card .project-content .pattern-warning {
    background-image: repeating-linear-gradient(
        45deg,
        #FF8100,
        #FF8100 10px,
        #F99C3C 10px,
        #F99C3C 20px
    );
    background-size: 25px 25px;
    animation: wavePattern 1s linear infinite;
}
.projects .project-card .project-content .pattern-primary {
    background-image: repeating-linear-gradient(
        45deg,
        #18C0E6,
        #18C0E6 10px,
        #68DBF6 10px,
        #68DBF6 20px
    );
    background-size: 25px 25px;
    animation: wavePattern 1s linear infinite;
}
.projects .project-card .project-content .pattern-success {
    background-image: repeating-linear-gradient(
        45deg,
        #23AA02,
        #23AA02 10px,
        #45D422 10px,
        #45D422 20px
    );
    background-size: 25px 25px;
    animation: wavePattern 1s linear infinite;
}
@keyframes wavePattern {
    0% {
        background-position: 25px 0;
    }
    100% {
        background-position: 0 0;
    }
}
.quantity-control {
    background: #055E631A;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    border-radius: 50px;
    padding: 0.5rem;
}
.quantity-control .btn {
    width: 35px;
    height: 35px;
    background: #206A7F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}











.awaiting-support {
    border: thin solid #DCDCDC;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    align-items: stretch;
    margin: 2rem 0;
}
.awaiting-support .image {
    height: 100%;
    flex-grow: 1;
}
.awaiting-support .bg-wrapper {
    position: sticky;
    top: 20px;
    height: 500px;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}
.awaiting-support .bg-wrapper img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.awaiting-support .bg-wrapper .share-btn {
    top: 1rem;
    left: 1rem;
    z-index: 10;
}
.awaiting-support .content {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1.5rem;
}
.awaiting-support .content .paragraph-img {
    width: 100%;
    object-fit: cover;
    margin-top: 2rem;
    border-radius: 1rem;
}
.donation-opts {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.donation-opts .arrow {
    min-width: 10px !important;
    min-height: 10px !important;
    z-index: 2;
    cursor: pointer;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donation-opts .arrow.left-arrow {
    left: -1rem;
}
.donation-opts .arrow.right-arrow {
    right: -1rem;
}
.donation-opts .arrow.active, .donation-opts .arrow:hover {
    opacity: 1;
}
.donation-opts .option {
    width: 100%;
    min-width: 180px;
    display: flex;
    justify-content: center;
    border-radius: 1.25rem;
    padding: 0.6rem;
    border: 1px solid #206A7F;
}
.donation-opts .option.small {
    font-size: 14px;
}
.donation-opts .option.active, .donation-opts .option:hover {
    background: #206A7F;
    color: #FFFFFF;
}
