#image-dropzone {
    height: 100px;
    border: 2px dashed;
    border-color: var(--bs-gray);
    position: relative;
    transition: all .4s ease;
}

#image-dropzone p {
    margin-bottom: 0;
    height: 100%;
    line-height: 92px;
}

#image-dropzone input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

#image-dropzone p.on-hover {
    display: none;
}

#image-dropzone.hovered {
    background-color: var(--bs-blue);
    color: var(--bs-white);
    border-width: 4px;
}

#image-dropzone.hovered p.on-normal {
    display: none;
}

#image-dropzone.hovered p.on-hover {
    display: block;
}

#image-dropzone img.preview {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#load-backdrop {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    background-color: #6c757d87;
    text-align: center;
}

#load-backdrop.enabled {
    display:block;
}

#load-backdrop > i {
    font-size: 100px;
    display: inline-block;
    margin-top: calc(50vh - 50px);
    color: white;
    opacity: 0.7;
}

#create-card .url {
    margin-top: 25px;
    padding: 5px;
    background: var(--bs-gray);
    color: var(--bs-white);
    cursor: pointer;
}

#card-ready .url {
    padding: 10px;
    background-color: var(--bs-gray);
    color: var(--bs-white);
    cursor: pointer;
    margin-top: 25px;
}

.h-100vh {
    height: 100vh!important;
}

input, textarea {
    color: var(--bs-white) !important;
}