#create-project .form-holder {
    display: flex;
    flex: 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#create-project {
    padding: 50px 30px;
}

#create-project input,
#create-project select {
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    width: 100%;
    border: 1px solid black;
}

#create-project .field {
    width: 100%;
}

#create-project .field.half {
    width: 49%;
}

#create-project textarea {
    width: 100%;
    height: 200px;
    border: 1px solid black;
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

/* #create-project input[type="file"] {
    display: none;
} */

#create-project .photos-preview img {
    width: 100%;
    max-width: 150px;
}

#create-project .photos-preview {
    display: flex;
    flex: 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    width: 100%;
    border: 1px dashed var(--secondary);
    border-width: 3px;
    margin-bottom: 15px;
    cursor: pointer;
}

#create-project .photos-preview p {
    width: 100%;
    text-align: center;
}

.carbon-emission-subtotal {
    background-color: var(--darken-primary);
    display: flex;
    width: 35%;
    flex: 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 35px;
    border-radius: 1000px;
    margin-left: auto;
    margin-bottom: 20px;
}

.carbon-emission-subtotal i {
    font-size: 50px;
    color: var(--primary-color);

}

.carbon-emission-subtotal .carbon-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;

}

.carbon-emission-subtotal .carbon-name {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

#create-project .summary {
    text-align: right;
}

#create-project .summary input[type="submit"] {
    background-color: var(--primary-color);
    width: 35%;
    color: white;
    display: inline;
    margin-left: auto;
}