.wc-block-components-product-details__entrepreneur-id,
.wc-block-components-product-details__project-id,
.loading-indicator {
    display: none;
}

.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 179, 136, 0.7);
    color: #f5f5f5;
}

.loaderspin {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: spinrotation 1s linear infinite;
}

@keyframes spinrotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.projectWrapper {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 3rem;
    position: relative;
    margin-bottom: auto;
    background-color: #f5f5f5;
    border-left: 10px solid #00b388;
    padding: 1rem;
}

.info {
    color: #00b388;
    font-size: 0.8rem
}

.info a {
    color: inherit;
    text-decoration: underline;
}

.projectWrapper select {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;

}

.projectWrapper select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;


    >* {
        flex: 1;
    }
}



@media screen and (min-width: 768px) {
    .form_wrapper {
        flex-direction: row;
        gap: 2rem;
    }

    .projectWrapper {
        margin-bottom: 6rem;
    }

}

.rtl .projectWrapper {
    border-right: 10px solid #00b388;
    border-left: 0;
}