.field {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    margin: 15px 0;
    width: 100%;
    text-align: left;
}

.field__value {
    background-color: white;
    margin: 0;
    padding: 15px 15px 2px 15px;
    font-size: 14px;
    width: 100%;
    border: 1px solid #ccc;
    resize: none;
}

.field__value::placeholder {
    color: transparent;
}

.field__placeholder {
    -webkit-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-property: color, top, font-size;
    transition-property: color, top, font-size;
    color: #999;
    font-size: .875em;
    text-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white;
    pointer-events: none;
    position: absolute;
    top: 2px;
    left: 0;
    overflow: hidden;
    padding: 0 17px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.field__value:not([disabled]):not(:focus):placeholder-shown ~ .field__placeholder {
    top: 10px;
    font-size: 1em;
    white-space: normal;
}

.field__value:focus ~ .field__placeholder{
    color: #2F80ED;
}

.field__value:focus{
    outline: none !important;
    border:1px solid #2F80ED;
}

.field_required .field__placeholder::after {
    content: "*";
    font-size: 1.4em;
    line-height: .7em;
    left: 4px;
    position: relative;
    top: 4px;
}

.fezar-form_disabled {
    pointer-events: none;
    opacity: .5;
}

.file-input-only-one .file-input .input-group-btn {
    width: 18%;
}

.file-input-only-one .file-input .file-caption-name {
    min-width: 100px;
}

.file-input-only-one .file-input .image-upload-controls {
    display: inline-block;
}

.file-input-only-one .file-input .image-upload-controls {
    width: auto;
}

.error {
    color: #ff0000;
}

.notes_file {
    color: #999999;
    font-size: 12px;
}

input.error, select.error, textarea.error {
    border-color: #ff0000;
}

.form-control.error:focus {
    border-color: #ff0000;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 0, 0, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 0, 0, 0.6);
}

.container_stage_box .single-button {
    margin-right: 10px;
}

.button-download-request {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 50px;
    background-color: #afffcd;
    cursor: pointer;
}

.button-download-request:hover:not(:disabled) {
    background-color: #cdffe1;

}

button:disabled {
    color: inherit;
    background-color: #e6e6e6;
    cursor: none;
}