form label,
form span {
    margin-top: auto;
    margin-bottom: auto;
    padding: 0.5rem;
}

.file-image,
.file-image-concessionario {
    display: inline-block;
    position: relative;
    padding: 0.5rem;
}

.file-image input {
    position: absolute;
    overflow: hidden;
    opacity: 0;
    width: 0;
}

.file-image .reset,
.file-image-concessionario .reset {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, .8);
    z-index: 1000;
}

.file-image .reset:before,
.file-image-concessionario .reset:before {
    content: '\d7';
    font: normal normal 40px/39px sans-serif, Arial;
    color: #FFF;
}

.file-image .image,
.file-image-concessionario .image {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    width: 150px;
    height: 150px;
    border: 1px solid #dbdbdb;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.file-image .image:before,
.file-image .image:after,
.image:before,
.image:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    font: normal normal 14px sans-serif, Arial;
    line-height: 0;
    color: #ababab;
    text-align: center;
}

.file-image .image:before {
    content: "+";
    font-size: 100px;
    margin-top: -20px;
}

.file-image .image:after {
    content: "Aggiungi altre foto";
    margin-top: 30px;
}

.file-image .reset {
    display: none
}

.file-image input:not([title=""])~.reset {
    display: block
}

.file-image input:not([title=""])~.image {
    border: 0 none;
}

.file-image input:not([title=""])~.image:before,
.file-image input:not([title=""])~.image:after {
    display: none
}

.loader {
    color: #fff;
    position: fixed;
    box-sizing: border-box;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: 999999
}

.loader:after,
.loader:before {
    box-sizing: border-box;
    display: none
}

.loader.is-active {
    background-color: rgba(0, 0, 0, .85);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.loader.is-active:after,
.loader.is-active:before {
    display: block
}

@keyframes rotation {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(359deg)
    }
}

@keyframes blink {
    0% {
        opacity: .5
    }

    to {
        opacity: 1
    }
}

.loader[data-text]:before {
    position: fixed;
    left: 0;
    top: 50%;
    color: currentColor;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    width: 100%;
    font-size: 14px
}

.loader[data-text=""]:before {
    content: "Loading"
}

.loader[data-text]:not([data-text=""]):before {
    content: attr(data-text)
}

.loader[data-text][data-blink]:before {
    animation: blink 1s linear infinite alternate
}

.loader-default[data-text]:before {
    top: calc(50% - 63px)
}

.loader-default:after {
    content: "";
    position: fixed;
    width: 48px;
    height: 48px;
    border: 8px solid #fff;
    border-left-color: transparent;
    border-radius: 50%;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    animation: rotation 1s linear infinite
}

.loader-default[data-half]:after {
    border-right-color: transparent
}

.loader-default[data-inverse]:after {
    animation-direction: reverse
}