.gform_wrapper .butler-upload .ginput_container_fileupload input, 
.gform_wrapper .butler-upload .ginput_container_fileupload span {
    display: unset;
}

.ginput_preview_list, .ginput_preview_list * {
    display: block !important;
}


.butler-upload {
    position: unset;
    padding-left: inherit;
}

.butler-upload label:before {
    content: unset;
}

.butler-upload span.gfield_fileupload_filename {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #4A4A4A;
}

.butler-upload .gform_delete_file  .dashicons.dashicons-trash {
    color: #d42d27;
    font-size: 24px;
}

/* preloader */
#gravity-butler-preloader {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

p.notice {
    display: block;
    padding: 10px 0 10px 25px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left;
}

p.notice.success {
    color: #008000;
    background-image: url(/wp-content/plugins/gravity-butler/assets/img/success.svg);
}

p.notice.validation-required {
    color: #D79510;
    background-image: url(/wp-content/plugins/gravity-butler/assets/img/warning.svg);
}

p.notice.empty-value {
    color: #d42d27;
    background-image: url(/wp-content/plugins/gravity-butler/assets/img/error.svg);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 