﻿input.image-upload {
    visibility: hidden;
    width: 0;
    height: 0
}

.drag-box {
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.drag-box.is-dragover::after {
    box-shadow: inset 0.5rem 0.5rem 6rem #7380a1;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
}

.drag-box .drag-box-text {
    position: absolute;
    z-index: 999;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 45%;
    text-align: center;
    width: 80%;
    font-size: 20px;
    color: #7380a1;
    mix-blend-mode: normal;
}

.drag-box.empty-drag-box {
    background-color: #c5cad6;
    min-height: 213px;
    margin-bottom: 12px;
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px;
}