.errorModal {
	position: relative !important;
	/* width: min-content;
	height: fit-content; */
    overflow-y: hidden !important;
	min-width: 350px !important;
	max-width: 400px !important;
	left: auto !important;
    margin: auto !important;
	top: 25vh !important;
}

.overlay {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	background-color: rgba(#000, 0.85);
	transition: opacity .2s;
	z-index: 1000;
  }

.uploader-cover {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	background-color: rgba(0,0,0,.85);
	transition: opacity .2s;
	z-index: 2610;
}

.uploader-cover.-visible {
	display: block;
}
.uploader-cover.-fade-in {
	opacity: 1;
}
.uploader-cover .centered {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -75px;
	margin-left: -100px;
	width: 200px;
	height: 150px;
}
.uploader-cover .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 150px;
	/* fill: #35b2b6; */
}
.uploader-cover .icon.-muted {
	opacity: 0.3;
}
.uploader-cover .coverup {
	position: absolute;
	width: 200px;
	bottom: 0;
	height: 0;
	left: 50%;
	margin-left: -100px;
	overflow: hidden;
	transition: height 0.1s;
}
.uploader-cover .coverup .icon {
	top: -150px;
	transition: top 0.1s;
}
.uploader-cover .coverup.-indeterminate .icon {
	animation-name: indeterminateIcon;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-direction: alternate;
}
.uploader-cover .text {
	position: absolute;
	width: 300px;
	height: 50px;
	margin-left: -50px;
	top: 170px;
	text-align: center;
	color: #fff;
}
.uploader-cover .text .percentage {
	font-size: 30px;
}
.uploader-cover .text .percentage.-hidden {
	display: none;
}
.uploader-cover .message {
	display: block;
}
.uploader-cover .message.-hidden {
	display: none;
}
.uploader-cover .close {
	color: white;
	position: fixed;
	left: 40px;
	top: 20px;
	cursor: pointer;
	font-size: 13px;
	opacity: 0.5;
	user-select: none;
	transition: opacity 0.2s;
}
.uploader-cover .close:before {
	content: '×';
	top: 0;
	left: -20px;
	position: absolute;
	font-weight: bold;
	font-size: 18px;
	line-height: 1;
}
.uploader-cover .close:hover {
	opacity: 1;
}

@keyframes indeterminateIcon {
	from {
		opacity: 1;
   }
	to {
		opacity: 0.2;
   }
}


.modal-wrap {
    display: none;
    opacity: 0;
    background-color: rgba(0,0,0,.6)
}