.ogs-v2-image-uploader {
    display: flex;
    width: 100%;
}

.ogs-v2-image-uploader input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.ogs-v2-image-uploader-preview {
    display: none;
    height: 100px;
    width: 100px;
    background-color: #899094;
}

.ogs-v2-image-uploader-preview img {
    object-fit: cover;
}

.ogs-v2-image-uploader-close-button {
    position: absolute;
    top: -7.5px;
    right: -7.5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--COLOR_PRIMARY);
    line-height: 1em;
    color: var(--COLOR_DEFAULT);
    z-index: 1;
}

.ogs-v2-image-uploader-add-button {
    display: flex;
}

.ogs-v2-image-uploader-add-button span {
    color: var(--COLOR_INFO);
    pointer-events: none;
    font-weight: bold;
}

.ogs-v2-image-uploader-add-button img {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.ogs-v2-image-uploader.active .ogs-v2-image-uploader-add-button {
    display: none;
}

.ogs-v2-image-uploader.active .ogs-v2-image-uploader-preview {
    display: flex;
}