/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2025 | 12:27:01 */
.wrapper {
/*     background: white; */
/*     padding: 32px; */
/*     border-radius: 16px; */
/*     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
/*     width: 420px; */
/*     text-align: center; */
}
.upload {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 78px 20px;
    cursor: pointer;
    transition: all 0.2s;
	position: relative;
    background-color: #f8f7fc;
    text-align: center;
    max-width: 500px;
}
.upload:hover {
            border-color: #7B68EE;
            background: #f5f0ff;
        }

        .upload.dragover {
            border-color: #7B68EE;
            background: #f5f0ff;
            transform: scale(1.02);
        }
.upload input[type="file"] {
    display: none;
}
input[type="file"] {
    margin: 15px 0;
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.upload__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
}
.upload__file-text {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 28px;
    color: #333;
	margin-bottom: 0 !important;
}
.bold {
    font-weight: 600;
}
.browse {
    color: #7B68EE;
    text-decoration: underline;
    cursor: pointer;
}
.upload__file-subtext {
    font-size: 12px;
    line-height: 20px;
    color: rgba(60, 60, 66, 0.6);
    margin: 0;
}
.preview {
    display: none;
    padding: 16px;
    border-radius: 12px;
    position: relative;
    animation: fadeIn 0.3s ease;
}
.preview__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f5ff;
    border-radius: 12px;
    padding: 26px 29px;
}
.preview__wrap .preview__name {
    font-weight: 600;
    color: #333;
    text-align: left;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    display: block;
}
.preview__wrap .preview__size {
    color: #777;
    font-size: 13px;
    margin-top: 2px;
    text-align: left;
    display: block;
}
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6a5ae0;
    font-size: 16px;
    font-weight: 500;
    margin: 28px 0;
    display: none;
}
.preview__action {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.preview__action button, .success__buttons button{
	flex: 1;
}
button.cancel {
    background: #eee;
    color: #555;
}
.success {
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}
.success .icon {
    margin-bottom: 12px;
}
.success h3 {
    margin: 0 0 12px;
    color: #333;
    font-size: 20px;
    line-height: 28px;
	margin-top: 0 !important;
}
.success p {
    margin: 0 0 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}
.success strong {
    color: #7B68EE;
}
.success__buttons {
    display: none;
    justify-content: center;
    gap: 12px;
}
button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .file__progress {
            height: 4px;
            background: #eee;
            border-radius: 2px;
            margin-top: 12px;
            overflow: hidden;
        }

        .file__progress .bar {
            height: 100%;
            background: #7B68EE;
            width: 0%;
            transition: width 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loader {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #6a5ae0;
            font-size: 16px;
            font-weight: 500;
            margin: 28px 0;
            display: none;
        }

        .loader::before {
            content: "";
            width: 22px;
            height: 22px;
            border: 3px solid #d9d6fb;
            border-top-color: #6a5ae0;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .preview__info {
            font-size: 16px;
            line-height: 28px;
            font-weight: 600;
            color: #3C3C42;
            margin: 28px 0;
			text-align: center;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        #status {
            margin-top: 16px;
            font-size: 14px;
            color: #555;
            min-height: 20px;
        }
button.cancel:hover {
            background: #ddd;
	color: #555;
        }