/* Public View CSS */
.custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.custom-form > *:not(:first-child) {
    margin-top: 3rem;
}
.bang-amp-bonsomer .custom-form > *:not(:first-child) {
    margin-top: 1rem;
}
.custom-form label {
    font-size: 12.5px;
    margin-bottom: 0;
}
#file-drop-area {
    align-self: stretch;
    transition: border .3s;
}
#file-drop-area label {
    display: flex;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    flex-wrap: wrap;
}
#file-drop-area label > span {
    color: var(--global--color-accent-secondary);
    border-bottom: 1px solid currentColor;
    font-weight: 700;
    transition: border-bottom .3s;
}
#file-drop-area label > span:hover {
    border-bottom: 1px solid transparent;
}
#file-list {
    display: none;
    padding: 1rem 0;
}
#file-list > .holder {
    display: flex;
    align-items: center;
}
#file-list > .holder:not(:first-child) {
    margin-top: 1rem;
}
#file-list > .holder > .file-icon {
    width: 15px;
    margin-right: 10px;
}
#file-list > .holder > .file-title {
    display: none;
    white-space: nowrap;
    font-weight: 700;
    color: var(--global--color-main);
}
#file-list > .holder > .file-cancel {
    width: 15px;
    cursor: pointer;
}
#file-list > .holder > .file-bin {
    width: 11px;
    cursor: pointer;
    margin-left: auto;
}
.bang-amp-bonsomer .custom-form path {
    fill: var(--global--color-main) !important;
}
.bang-amp-bonsomer .custom-form a {
    text-decoration: none !important;
}
.progress-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 1px;
    background-color: var(--global--color-main);
    margin: 0 30px 0 0;
    width: 100%;
}
progress.progress-bar {
    border: none;
    height: 3px;
    background-color: var(--global--color-accent-secondary);
}
.send-contact-form {
    padding: 5px 60px !important;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--global--color-main) !important;
}
.bang-amp-bonsomer .send-contact-form {
    background-color: var(--global--color-accent-secondary) !important; 
}

.custom-form > div { width: 100%; }

.custom-form > div > input,
.custom-form > div > textarea {
    font-size: inherit;
    border-width: 0 0 1px 0 !important;
    border-style: solid !important;
    border-color: var(--global--color-text) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    padding: .5rem 0;
    margin: 0;
    height: auto;
}

.custom-form > div > input::placeholder { color: var(--global--color-text); }

.custom-form > div > textarea { min-height: 8rem; }

.custom-form > div > input + label {
    display: block;
    transform: translateY(-3.5rem);
    transition: all .3s ease-in-out;
}

.custom-form > div > input:placeholder-shown + label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.8rem);
}

.custom-form > .apply-field { margin-top: 1rem; }

.custom-form .notification {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
}

.custom-form .notification.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.custom-form .notification.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media only screen and (max-width: 37.4375em) {
    #file-drop-area label {
        justify-content: flex-start;
    }
}