
.dropper {
	display:block;
}
.imagev1 {
	display:none;
}
.imagebox
{
	margin:var(--lt-padding-half) 0;
	display:block;
	color: #257885;
	font-size: 16px;
	text-align: center;
	background-color: #ffebae;
	position: relative;
	padding: 40px 20px;
	margin-bottom: 15px;
	border-radius: 5px;
}
.imagebox.has-advanced-upload
{
	outline: 2px dashed #257885;
	outline-offset: -10px;

	-webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
	transition: outline-offset .15s ease-in-out, background-color .15s linear;
}
.is-dragover .imagebox,
.imagebox.is-dragover
{
	outline-offset: -20px;
	outline-color: #257885;
	background-color: #fff5d7;
}
.has_image .imagebox,
.imagebox.has_image {
	background-color: var(--litsy-content-bg-color);
	outline-color: #25788533;
	padding:20px;
	padding-bottom:0;
}
.box__dragndrop,
.box__icon
{
	display: none;
}
.imagebox.has-advanced-upload .box__dragndrop
{
	display: inline;
}
.imagebox.has-advanced-upload .box__icon
{
	width: 100%;
	height: 60px;
	fill: #257885;
	display: block;
	margin-bottom: 40px;
}

.imagebox.is-uploading .box__input,
.imagebox.is-success .box__input,
.imagebox.is-error .box__input
{
	animation-name: loading_pulse_opacity;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}
.box__input label {
	font-weight: 400;
	cursor:pointer;
	xdisplay: none;
}

.box__uploading,
.box__success,
.box__error
{
	display: none;
}
.imagebox.is-uploading .box__uploading,
.imagebox.is-success .box__success,
.imagebox.is-error .box__error
{
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;

	-webkit-transform: translateY( -50% );
	transform: translateY( -50% );
}
.box__uploading
{
	font-style: italic;
}
.box__success
{
	-webkit-animation: appear-from-inside .25s ease-in-out;
	animation: appear-from-inside .25s ease-in-out;
}
@-webkit-keyframes appear-from-inside
{
	from	{ -webkit-transform: translateY( -50% ) scale( 0 ); }
	75%		{ -webkit-transform: translateY( -50% ) scale( 1.1 ); }
	to		{ -webkit-transform: translateY( -50% ) scale( 1 ); }
}
@keyframes appear-from-inside
{
	from	{ transform: translateY( -50% ) scale( 0 ); }
	75%		{ transform: translateY( -50% ) scale( 1.1 ); }
	to		{ transform: translateY( -50% ) scale( 1 ); }
}
.dropper .generic_file_icon {
	display: none;
	font-size: 90px;
	margin-bottom: var(--lt-padding);
}
.box__restart,
.box__upload,
.has_image .box__bottombuttons {
	display:none;
	xmargin-top:-100px;
}
.has_image .box__cancel {
	margin-right:30px;
}
.avatar_create .has_image .box__cancel {
	margin-right:0;
}

.box__file
{
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.box__file + label
{
	max-width: 80%;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
}
.box__file + label:hover strong,
.box__file:focus + label strong,
.box__file.has-focus + label strong
{
	color: #d33a32;
	text-decoration: underline;
}
.box__file:focus + label,
.box__file.has-focus + label
{
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}
.box__file + label *
{
	/* pointer-events: none; */ /* in case of FastClick lib use */
}
.has_image .box__file + label {
	display:none; /* don't show file name */
}

.no-js .box__file + label
{
	display: none;
}

.no-js .box__button
{
	display: block;
}
.box__button
{
	font-weight: 700;
	color: #e5edf1;
	xbackground-color: #39bfd3;
	display: block;
	padding: 8px 16px;
	margin: 40px auto 0;
}
.box__button:hover,
.box__button:focus
{
	background-color: #0f3c4b;
}
.img-upload-container {
	xmargin-top: 10px;
}
.img-upload-container img {
	height: 300px;
	width: 300px;
	box-shadow: 0 0px 0 2px rgba(0,0,0,0.2);
	border-radius: var(--lt-border-radius);
	border: 2px solid rgba(0,0,0,0.1);
	background: #fff;
	object-fit: cover;
	max-width: 100%;
	/*
	width: 100%;

	height: calc(100vw - 460px);
	*/
}
#LT_LB2020_content .img-upload-container img {
	max-height: 250px;
}
@media (min-width:768px) {
	.img-upload-container img {
		height: 520px;
		width: 520px;
	}
}
.box__upload {
	display:none;
}

.lt2 .dropper .btn.btn-default:hover,
.lt2 .dropper a.btn.btn-default:hover {
	background-color: var(--lt-sidebar-background-color);
}

#img-upload2 {
	display: none;
	object-fit:contain;
}



.has_image .dropper_button_area {
	padding-bottom: calc(var(--lt-padding) * 1.5);
}

.dropper_extra_controls {
	display:none;
	text-align: left;
	color: var(--lt-text-color);
	background: var(--lt-tint-light-9);
	padding: var(--lt-padding-half);
	xborder: 1px solid var(--lt-border-color);
	border-radius: var(--lt-border-radius);
	margin-top: var(--lt-padding);
}
.has_image .dropper_extra_controls {
	display:block;
}
.dropper_extra_controls .alert {
	margin-top: var(--lt-padding-half);
}
form.is-uploading {
	opacity: 0.25;
	pointer-events: none;
	user-select: none;
	transition:500ms opacity;
}


