/home2/mshostin/carnival.ms-hostingladz.com/public/assets/scss/plugins/uppy.scss
@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/variables";
@import "node_modules/bootstrap/scss/mixins";

/**
* General Uppy styles that apply to everything inside the .Uppy container
*/
/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/
/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/
/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
@keyframes "uppy-StatusBar-ProgressStripes" {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 64px 0;
	}
}
@keyframes "uppy-StatusBar-spinnerAnimation" {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes "uppy-Dashboard-fadeIn" {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes "uppy-Dashboard-fadeOut" {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes "uppy-Dashboard-slideDownAndFadeIn" {
	from {
		transform: translate3d(-50%, -70%, 0);
		opacity: 0;
	}
	to {
		transform: translate3d(-50%, -50%, 0);
		opacity: 1;
	}
}
@keyframes "uppy-Dashboard-slideDownAndFadeIn--small" {
	from {
		transform: translate3d(0, -20%, 0);
		opacity: 0;
	}
	to {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}
@keyframes "uppy-Dashboard-slideUpFadeOut" {
	from {
		transform: translate3d(-50%, -50%, 0);
		opacity: 1;
	}
	to {
		transform: translate3d(-50%, -70%, 0);
		opacity: 0;
	}
}
@keyframes "uppy-Dashboard-slideUpFadeOut--small" {
	from {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	to {
		transform: translate3d(0, -20%, 0);
		opacity: 0;
	}
}
@keyframes "uppy-ScreenCapture-icon--blink" {
	0% {
		fill: #2275d7;
	}
	50% {
		fill: #939393;
	}
	100% {
		fill: #2275d7;
	}
}
.uppy-Root {
	box-sizing: border-box;
	font-family: $font-family-sans-serif;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: left;
	position: relative;
	color: $body-color;
	* {
		box-sizing: inherit;
		&:before {
			box-sizing: inherit;
		}
		&:after {
			box-sizing: inherit;
		}
	}
	[hidden] {
		display: none;
	}
	[aria-label][role~="tooltip"] {
		position: relative;
		&::before {
			transform: translate3d(0, 0, 0);
			-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
			will-change: transform;
			opacity: 0;
			pointer-events: none;
			transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
			position: absolute;
			box-sizing: border-box;
			z-index: 10;
			transform-origin: top;
			background-size: 100% auto !important;
			content: "";
		}
		&::after {
			transform: translate3d(0, 0, 0);
			-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
			will-change: transform;
			opacity: 0;
			pointer-events: none;
			transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
			position: absolute;
			box-sizing: border-box;
			z-index: 10;
			transform-origin: top;
			background: rgba(17, 17, 17, 0.9);
			border-radius: 4px;
			color: #ffffff;
			content: attr(aria-label);
			font-size: var(--microtip-font-size, 13px);
			font-weight: var(--microtip-font-weight, normal);
			text-transform: var(--microtip-text-transform, none);
			padding: .5em 1em;
			white-space: nowrap;
			box-sizing: content-box;
		}
		&:hover {
			&::before {
				opacity: 1;
				pointer-events: auto;
			}
			&::after {
				opacity: 1;
				pointer-events: auto;
			}
		}
		&:focus {
			&::before {
				opacity: 1;
				pointer-events: auto;
			}
			&::after {
				opacity: 1;
				pointer-events: auto;
			}
		}
	}
	[role~="tooltip"][data-microtip-position|="top"] {
		&::before {
			background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
			height: 6px;
			width: 18px;
			margin-bottom: 5px;
			transform: translate3d(-50%, 0, 0);
			bottom: 100%;
			left: 50%;
		}
		&::after {
			margin-bottom: 11px;
			transform: translate3d(-50%, 0, 0);
			bottom: 100%;
			left: 50%;
		}
		&:hover {
			&::before {
				transform: translate3d(-50%, -5px, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="top"] {
		&:hover {
			&::after {
				transform: translate3d(-50%, -5px, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="top-left"] {
		&::after {
			transform: translate3d(calc(-100% + 16px), 0, 0);
			bottom: 100%;
		}
		&:hover {
			&::after {
				transform: translate3d(calc(-100% + 16px), -5px, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="top-right"] {
		&::after {
			transform: translate3d(calc(0% + -16px), 0, 0);
			bottom: 100%;
		}
		&:hover {
			&::after {
				transform: translate3d(calc(0% + -16px), -5px, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position|="bottom"] {
		&::before {
			background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
			height: 6px;
			width: 18px;
			margin-top: 5px;
			margin-bottom: 0;
			transform: translate3d(-50%, -10px, 0);
			bottom: auto;
			left: 50%;
			top: 100%;
		}
		&::after {
			margin-top: 11px;
			transform: translate3d(-50%, -10px, 0);
			top: 100%;
			left: 50%;
		}
		&:hover {
			&::before {
				transform: translate3d(-50%, 0, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="bottom"] {
		&:hover {
			&::after {
				transform: translate3d(-50%, 0, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="bottom-left"] {
		&::after {
			transform: translate3d(calc(-100% + 16px), -10px, 0);
			top: 100%;
		}
		&:hover {
			&::after {
				transform: translate3d(calc(-100% + 16px), 0, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="bottom-right"] {
		&::after {
			transform: translate3d(calc(0% + -16px), -10px, 0);
			top: 100%;
		}
		&:hover {
			&::after {
				transform: translate3d(calc(0% + -16px), 0, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="left"] {
		&::before {
			bottom: auto;
			left: auto;
			right: 100%;
			top: 50%;
			transform: translate3d(10px, -50%, 0);
			background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
			height: 18px;
			width: 6px;
			margin-right: 5px;
			margin-bottom: 0;
		}
		&::after {
			bottom: auto;
			left: auto;
			right: 100%;
			top: 50%;
			transform: translate3d(10px, -50%, 0);
			margin-right: 11px;
		}
		&:hover {
			&::before {
				transform: translate3d(0, -50%, 0);
			}
			&::after {
				transform: translate3d(0, -50%, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-position="right"] {
		&::before {
			bottom: auto;
			left: 100%;
			top: 50%;
			transform: translate3d(-10px, -50%, 0);
			background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
			height: 18px;
			width: 6px;
			margin-bottom: 0;
			margin-left: 5px;
		}
		&::after {
			bottom: auto;
			left: 100%;
			top: 50%;
			transform: translate3d(-10px, -50%, 0);
			margin-left: 11px;
		}
		&:hover {
			&::before {
				transform: translate3d(0, -50%, 0);
			}
			&::after {
				transform: translate3d(0, -50%, 0);
			}
		}
	}
	[role~="tooltip"][data-microtip-size="small"] {
		&::after {
			white-space: initial;
			width: 80px;
		}
	}
	[role~="tooltip"][data-microtip-size="medium"] {
		&::after {
			white-space: initial;
			width: 150px;
		}
	}
	[role~="tooltip"][data-microtip-size="large"] {
		&::after {
			white-space: initial;
			width: 260px;
		}
	}
	&:not(.uppy-size--md) {
		.uppy-StatusBar-additionalInfo {
			display: none;
		}
	}
}
.UppyIcon {
	max-width: 100%;
	max-height: 100%;
	fill: currentColor;
	display: inline-block;
	overflow: hidden;
}
.uppy-u-reset {
	-webkit-appearance: none;
	line-height: 1;
	padding: 0;
	margin: 0;
	border: 0;
	color: inherit;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	background: none;
	border: medium none currentColor;
	border-collapse: separate;
	border-image: none;
	border-radius: 0;
	border-spacing: 0;
	box-shadow: none;
	clear: none;
	cursor: auto;
	display: inline;
	empty-cells: show;
	float: none;
	font-family: inherit;
	font-size: inherit;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-stretch: normal;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	left: auto;
	letter-spacing: normal;
	list-style: none;
	margin: 0;
	max-height: none;
	max-width: none;
	min-height: 0;
	min-width: 0;
	opacity: 1;
	outline: medium none invert;
	overflow: visible;
	overflow-x: visible;
	overflow-y: visible;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-shadow: none;
	text-transform: none;
	top: auto;
	transform: none;
	transform-origin: 50% 50% 0;
	transform-style: flat;
	transition: none 0s ease 0s;
	unicode-bidi: normal;
	vertical-align: baseline;
	visibility: visible;
	white-space: normal;
	z-index: auto;
}
.uppy-c-textInput {
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
	padding: 6px 8px;
	background-color: #fff;
	&:focus {
		border-color: rgba(34, 117, 215, 0.6);
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.15);
	}
}
.uppy-size--md {
	.uppy-c-textInput {
		padding: 8px 10px;
	}
	.uppy-c-btn-primary {
		padding: 13px 22px;
	}
	.uppy-c-btn-link {
		padding: 13px 18px;
	}
	.uppy-c-btn--small {
		padding: 8px 10px;
		border-radius: 2px;
	}
	.uppy-Informer {
		p {
			font-size: 14px;
			line-height: 1.3;
			max-width: 500px;
			padding: 10px 20px;
		}
	}
	.uppy-StatusBar {
		height: 46px;
	}
	.uppy-StatusBar-content {
		padding-left: 15px;
	}
	.uppy-StatusBar-statusSecondaryHint {
		margin-right: 8px;
	}
	.uppy-StatusBar-actionBtn {
		font-size: 11px;
	}
	.uppy-StatusBar.is-waiting {
		.uppy-StatusBar-actionBtn--upload {
			padding: 13px 22px;
			width: auto;
		}
	}
	.uppy-ProviderBrowser-viewType--grid {
		li.uppy-ProviderBrowserItem {
			width: 33.3333%;
		}
	}
	.uppy-Provider-authTitle {
		font-size: 20px;
	}
	.uppy-Provider-breadcrumbs {
		margin-bottom: 0;
	}
	.uppy-ProviderBrowser-headerBar {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
	}
	.uppy-DashboardItem-previewInnerWrap {
		// box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
	}
	.uppy-DashboardItem.is-error {
		.uppy-DashboardItem-progressIndicator {
			width: 28px;
			height: 28px;
		}
	}
	.uppy-DashboardItem.is-complete {
		.uppy-DashboardItem-progressIndicator {
			width: 22px;
			height: 22px;
		}
	}
	.uppy-DashboardItem-progressIndicator {
		width: 55px;
		height: 55px;
	}
	.uppy-DashboardItem-action--copyLink {
		width: 16px;
		height: 16px;
		padding: 0;
		&:focus {
			border-radius: 3px;
		}
	}
	.uppy-DashboardItem-action--edit {
		width: 16px;
		height: 16px;
		padding: 0;
		&:focus {
			border-radius: 3px;
		}
	}
	.uppy-DashboardItem-action--remove {
		z-index: 1002;
		position: absolute;
		top: -8px;
		right: -8px;
		width: 18px;
		height: 18px;
		padding: 0;
		&:focus {
			border-radius: 50%;
		}
	}
	.uppy-DashboardItem {
		position: relative;
		display: block;
		float: left;
		margin: 5px 15px;
		padding: 0;
		width: calc(33.333% - 15px - 15px);
		height: 215px;
		border-bottom: 0;
	}
	.uppy-DashboardItem-preview {
		width: 100%;
		height: 140px;
	}
	.uppy-DashboardItem-fileInfoAndButtons {
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
		padding: 0;
		padding-top: 9px;
	}
	.uppy-Dashboard-FileCard-label {
		font-size: 14px;
	}
	.uppy-Dashboard-FileCard-actions {
		height: 65px;
	}
	.uppy-Dashboard-inner {
		min-height: auto;
	}
	.uppy-Dashboard-AddFiles-info {
		position: absolute;
		bottom: 25px;
		left: 0;
		right: 0;
		padding-top: 30px;
		padding-bottom: 0;
	}
	.uppy-Dashboard-browseBtn {
		font-size: 15px;
		width: auto;
		margin: auto;
		margin-top: 15px;
		margin-bottom: 15px;
		padding: 13px 44px;
	}
	.uppy-Dashboard-AddFiles-list {
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: center;
		justify-content: center;
		max-width: 600px;
		overflow-y: visible;
		margin-top: 15px;
		padding-top: 0;
		-ms-flex: none;
		flex: none;
	}
	.uppy-DashboardTab {
		display: inline-block;
		width: initial;
		margin-bottom: 10px;
		border-bottom: none;
		svg {
			width: 30px;
			height: 30px;
		}
	}
	.uppy-DashboardTab-btn {
		width: 86px;
		margin-right: 1px;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 10px 3px;
		border-radius: 5px;
		svg {
			margin-right: 0;
		}
	}
	.uppy-DashboardTab-name {
		font-size: 11px;
		line-height: 15px;
		margin-top: 8px;
		margin-bottom: 0;
	}
	.uppy-DashboardContent-bar {
		height: 50px;
		padding: 0 15px;
	}
	.uppy-DashboardContent-title {
		font-size: 14px;
		line-height: 50px;
		max-width: 300px;
	}
	.uppy-DashboardContent-back {
		font-size: 14px;
	}
	.uppy-DashboardContent-addMore {
		font-size: 14px;
		width: auto;
		height: auto;
		margin-right: -8px;
		svg {
			width: 11px;
			height: 11px;
		}
	}
	.uppy-DashboardContent-addMoreCaption {
		display: inline;
	}
	.uppy-Dashboard-files {
		padding-top: 10px;
	}
	.uppy-Dashboard-AddFiles-title {
		font-size: 25px;
		margin-top: 5px;
		font-weight: 400;
		text-align: center;
		max-width: 480px;
		button {
			font-weight: 400;
		}
	}
	.uppy-Dashboard-note {
		font-size: 15px;
		line-height: 1.35;
		max-width: 600px;
	}
	.uppy-DashboardItem-previewIcon {
		width: 38px;
		height: 38px;
	}
	.uppy-Dashboard-upload {
		width: 60px;
		height: 60px;
	}
	.uppy-Dashboard-uploadCount {
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-size: 9px;
	}
	.uppy-Url-input {
		margin-bottom: 20px;
	}
	.uppy-Url-importButton {
		padding: 13px 30px;
	}
	.uppy-Webcam-button {
		width: 60px;
		height: 60px;
	}
	.uppy-ScreenCapture-videoContainer {
		max-width: 100%;
	}
	.uppy-ScreenCapture-button {
		width: 60px;
		height: 60px;
	}
}
[data-uppy-theme="dark"] {
	.uppy-c-textInput {
		background-color: $border-color;
		border-color: $border-color;
		color: $body-color;
		&:focus {
			border-color: #525252;
			box-shadow: none;
		}
	}
	.uppy-c-btn-primary {
		color: $body-color;
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
	}
	.uppy-c-btn-link {
		color: $body-color;
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
		&:hover {
			color: #939393;
		}
	}
	.uppy-Informer {
		p {
			background-color: $border-color;
		}
	}
	.uppy-StatusBar {
		background-color: $light;
		&:before {
			background-color: $border-color;
		}
		&:not([aria-hidden=true]).is-waiting {
			background-color: $light;
			border-top: 1px solid $border-color;
		}
	}
	.uppy-StatusBar-content {
		color: $body-color;
	}
	.uppy-StatusBar-statusPrimary {
		color: $body-color;
	}
	.uppy-StatusBar-statusSecondary {
		color: #bbb;
	}
	.uppy-StatusBar.is-waiting {
		.uppy-StatusBar-actions {
			background-color: $light;
		}
		.uppy-StatusBar-actionBtn--upload {
			background-color: $primary;
			&:hover {
				background-color: $primary;
			}
		}
	}
	.uppy-StatusBar-actionCircleBtn {
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
	}
	.uppy-StatusBar-actionBtn--retry {
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
	}
	.uppy-StatusBar-actionBtn--uploadNewlyAdded {
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
	}
	.uppy-ProviderBrowser-viewType--grid {
		li.uppy-ProviderBrowserItem--noPreview {
			.uppy-ProviderBrowserItem-inner {
				background-color: rgba(234, 234, 234, 0.2);
			}
			svg {
				fill: rgba(255, 255, 255, 0.8);
			}
		}
		button.uppy-ProviderBrowserItem-inner {
			box-shadow: 0 0 0 3px rgba(170, 225, 255, 0.7);
		}
	}
	.uppy-ProviderBrowser-viewType--list {
		background-color: $light;
		li.uppy-ProviderBrowserItem {
			color: $body-color;
		}
		.uppy-ProviderBrowserItem-fakeCheckbox {
			&:focus {
				border-color: rgba(2, 186, 242, 0.7);
				box-shadow: 0 0 0 3px rgba(2, 186, 242, 0.2);
			}
		}
	}
	.uppy-ProviderBrowserItem-fakeCheckbox {
		background-color: $light;
		border-color: #939393;
	}
	.uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
		background-color: $border-color;
	}
	.uppy-DashboardContent-panelBody {
		background-color: $light;
	}
	.uppy-Provider-authTitle {
		color: #cfcfcf;
	}
	.uppy-Provider-breadcrumbs {
		color: $body-color;
		button {
			&:focus {
				background-color: $border-color;
			}
			color: $body-color;
		}
	}
	.uppy-ProviderBrowser-user {
		color: $body-color;
	}
	.uppy-ProviderBrowser-header {
		border-bottom: 1px solid $border-color;
	}
	.uppy-ProviderBrowser-headerBar {
		background-color: $light;
	}
	.uppy-ProviderBrowser-search {
		background-color: $light;
	}
	.uppy-ProviderBrowser-searchInput {
		background-color: $light;
		color: $body-color;
		&:focus {
			background-color: $border-color;
		}
	}
	.uppy-ProviderBrowser-userLogout {
		&:focus {
			background-color: $border-color;
		}
		color: $body-color;
	}
	.uppy-ProviderBrowser-list {
		background-color: $light;
	}
	.uppy-ProviderBrowser-footer {
		background-color: $light;
		border-top: 1px solid $border-color;
	}
	.uppy-DashboardItem-previewLink {
		&:focus {
			box-shadow: inset 0 0 0 3px #016c8d;
		}
	}
	.uppy-DashboardItem-name {
		color: $body-color;
	}
	.uppy-DashboardItem-status {
		color: #bbb;
	}
	.uppy-DashboardItem-action {
		color: #cfcfcf;
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
		&:hover {
			color: $body-color;
		}
	}
	.uppy-DashboardItem-action--remove {
		color: #525252;
		&:hover {
			color: $border-color;
		}
	}
	.uppy-DashboardItem {
		border-bottom: 1px solid $border-color;
	}
	.uppy-Dashboard-FileCard-preview {
		background-color: $border-color;
		border-bottom: 0;
	}
	.uppy-Dashboard-FileCard-info {
		background-color: $light;
	}
	.uppy-Dashboard-FileCard-label {
		color: $body-color;
	}
	.uppy-Dashboard-FileCard-actions {
		border-top: 1px solid $border-color;
		background-color: $light;
	}
	.uppy-Dashboard-inner {
		background-color: $light;
	}
	.uppy-Dashboard-AddFiles {
		border-color: $border-color;
	}
	.uppy-Dashboard-browse {
		color: $primary;
		&:hover {
			border-bottom: 1px solid $primary;
		}
		&:focus {
			border-bottom: 1px solid $primary;
		}
	}
	.uppy-DashboardTab {
		border-bottom: 1px solid $border-color;
	}
	.uppy-DashboardTab-btn {
		color: $body-color;
		&:hover {
			background-color: $border-color;
		}
		&:active {
			background-color: #525252;
		}
		&:focus {
			background-color: #525252;
		}
	}
	.uppy-DashboardContent-bar {
		background-color: $light;
		border-bottom: 1px solid $border-color;
	}
	.uppy-DashboardContent-title {
		color: $body-color;
	}
	.uppy-DashboardContent-back {
		&:focus {
			background-color: $border-color;
		}
		color: $primary;
	}
	.uppy-DashboardContent-addMore {
		&:focus {
			background-color: $border-color;
		}
		color: $primary;
	}
	.uppy-Dashboard-AddFilesPanel {
		background-color: $border-color;
	}
	.uppy-Dashboard-dropFilesHereHint {
		color: #bbb;
		border-color: $primary;
		background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%2302BAF2' fill-rule='nonzero'/%3E%3C/svg%3E");
	}
	.uppy-Dashboard-AddFiles-title {
		color: $gray-500;
	}
	.uppy-Dashboard-note {
		color: #cfcfcf;
	}
	.uppy-Url {
		background-color: $light;
	}
	.uppy-Webcam-button {
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
	}
	.uppy-Webcam-title {
		color: $body-color;
	}
	.uppy-ScreenCapture-buttonContainer {
		background-color: $light;
		border-top: 1px solid $border-color;
	}
	.uppy-ScreenCapture-button {
		&:focus {
			outline: none;
			box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
		}
		&::-moz-focus-inner {
			border: 0;
		}
	}
}
.uppy-c-btn {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	font-family: inherit;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	transition-property: background-color, color;
	transition-duration: 0.3s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	&:not(:disabled) {
		&:not(.disabled) {
			cursor: pointer;
		}
	}
	&::-moz-focus-inner {
		border: 0;
	}
}
.uppy-c-btn-primary {
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 4px;
	background-color: #2275d7;
	color: #fff;
	&:hover {
		background-color: #1b5dab;
	}
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
	}
}
.uppy-c-btn-link {
	font-size: 14px;
	line-height: 1;
	padding: 10px 15px;
	border-radius: 4px;
	background-color: transparent;
	color: #525252;
	&:hover {
		color: $border-color;
	}
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
	}
}
.uppy-c-btn--small {
	font-size: 0.9em;
	padding: 7px 16px;
	border-radius: 2px;
}
.uppy-Informer {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	text-align: center;
	opacity: 1;
	transform: none;
	transition: all 250ms ease-in;
	z-index: 1005;
	p {
		display: inline-block;
		margin: 0;
		padding: 0;
		font-size: 12px;
		line-height: 1.4;
		font-weight: 400;
		padding: 6px 15px;
		background-color: $border-color;
		color: #fff;
		border-radius: 18px;
		max-width: 90%;
	}
	span {
		line-height: 12px;
		width: 13px;
		height: 13px;
		display: inline-block;
		vertical-align: middle;
		color: #525252;
		background-color: #fff;
		border-radius: 50%;
		position: relative;
		top: -1px;
		left: 3px;
		font-size: 10px;
		margin-left: -1px;
		&:hover {
			cursor: help;
		}
		&:after {
			line-height: 1.3;
			word-wrap: break-word;
		}
	}
}
.uppy-Informer[aria-hidden=true] {
	opacity: 0;
	transform: translateY(350%);
	transition: all 300ms ease-in;
	z-index: -1000;
}
.uppy-StatusBar {
	display: -ms-flexbox;
	display: flex;
	position: relative;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	background-color: #fff;
	z-index: 1001;
	transition: height .2s;
	&:before {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		height: 2px;
		background-color: $body-color;
	}
	&:not([aria-hidden=true]).is-waiting {
		background-color: #fff;
		height: 65px;
		border-top: 1px solid $body-color;
	}
	&:not(.is-waiting) {
		.uppy-StatusBar-actionBtn--upload {
			background-color: transparent;
			color: #2275d7;
		}
	}
}
.uppy-StatusBar[aria-hidden=true] {
	overflow-y: hidden;
	height: 0;
}
.uppy-StatusBar.is-complete {
	.uppy-StatusBar-progress {
		background-color: $primary;
	}
	.uppy-StatusBar-statusIndicator {
		color: $primary;
	}
}
.uppy-StatusBar.is-error {
	.uppy-StatusBar-progress {
		background-color: #e32437;
	}
	.uppy-StatusBar-statusIndicator {
		color: #e32437;
	}
}
.uppy-StatusBar-progress {
	background-color: #2275d7;
	height: 2px;
	position: absolute;
	z-index: 1001;
	transition: background-color, width .3s ease-out;
}
.uppy-StatusBar-progress.is-indeterminate {
	background-size: 64px 64px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 75%, transparent 75%, transparent);
	animation: uppy-StatusBar-ProgressStripes 1s linear infinite;
}
.uppy-StatusBar.is-preprocessing {
	.uppy-StatusBar-progress {
		background-color: #f6a623;
	}
	.uppy-StatusBar-spinner {
		fill: #f6a623;
	}
}
.uppy-StatusBar.is-postprocessing {
	.uppy-StatusBar-progress {
		background-color: #f6a623;
	}
	.uppy-StatusBar-spinner {
		fill: #f6a623;
	}
}
.uppy-StatusBar.is-waiting {
	.uppy-StatusBar-progress {
		display: none;
	}
	.uppy-StatusBar-actions {
		width: 100%;
		position: static;
		padding: 0 15px;
		background-color: $light;
	}
	.uppy-StatusBar-actionBtn--upload {
		font-size: 14px;
		width: 100%;
		padding: 15px 10px;
		color: #fff;
		background-color: $primary;
		line-height: 1;
		&:hover {
			background-color: #189c38;
		}
	}
}
.uppy-StatusBar-content {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 1002;
	padding-left: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: $border-color;
	height: 100%;
}
.uppy-StatusBar-status {
	line-height: 1.4;
	font-weight: normal;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	padding-right: 0.3em;
}
.uppy-StatusBar-statusPrimary {
	font-weight: 500;
	line-height: 1;
}
.uppy-StatusBar-statusSecondary {
	margin-top: 1px;
	font-size: 11px;
	line-height: 1.2;
	display: inline-block;
	color: $border-color;
	white-space: nowrap;
}
.uppy-StatusBar-statusSecondaryHint {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	line-height: 1;
}
.uppy-StatusBar-statusIndicator {
	position: relative;
	top: 1px;
	color: #525252;
	margin-right: 7px;
	svg {
		vertical-align: text-bottom;
	}
}
.uppy-StatusBar-actions {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	z-index: 1004;
}
.uppy-StatusBar-actionCircleBtn {
	line-height: 1;
	cursor: pointer;
	margin: 3px;
	opacity: 0.9;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
		border-radius: 50%;
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		opacity: 1;
	}
	svg {
		vertical-align: bottom;
	}
}
.uppy-StatusBar-actionBtn {
	display: inline-block;
	vertical-align: middle;
	font-size: 10px;
	line-height: inherit;
	color: #2275d7;
}
.uppy-StatusBar-actionBtn--retry {
	height: 16px;
	border-radius: 8px;
	margin-right: 6px;
	background-color: #ff4b23;
	line-height: 1;
	color: #fff;
	padding: 1px 6px 3px 18px;
	position: relative;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		background-color: #f92d00;
	}
	svg {
		position: absolute;
		top: 3px;
		left: 6px;
	}
}
.uppy-StatusBar-actionBtn--uploadNewlyAdded {
	padding-right: 3px;
	padding-left: 3px;
	padding-bottom: 1px;
	border-radius: 3px;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
	}
	&::-moz-focus-inner {
		border: 0;
	}
}
.uppy-StatusBar-details {
	line-height: 12px;
	width: 13px;
	height: 13px;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	background-color: #939393;
	border-radius: 50%;
	position: relative;
	top: 0;
	left: 2px;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	cursor: help;
	&:after {
		line-height: 1.3;
		word-wrap: break-word;
	}
}
.uppy-StatusBar-spinner {
	animation-name: uppy-StatusBar-spinnerAnimation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	margin-right: 10px;
	fill: #2275d7;
}
.uppy-ProviderBrowser-viewType--grid {
	ul.uppy-ProviderBrowser-list {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 6px;
		&::after {
			content: '';
			-ms-flex: auto;
			flex: auto;
		}
	}
	li.uppy-ProviderBrowserItem {
		width: 50%;
		position: relative;
		margin: 0;
		&::before {
			content: '';
			padding-top: 100%;
			display: block;
		}
	}
	li.uppy-ProviderBrowserItem--selected {
		img {
			opacity: 0.85;
		}
		svg {
			opacity: 0.85;
		}
	}
	li.uppy-ProviderBrowserItem--noPreview {
		.uppy-ProviderBrowserItem-inner {
			background-color: rgba(147, 147, 147, 0.2);
		}
		svg {
			fill: rgba(0, 0, 0, 0.7);
			width: 30%;
			height: 30%;
		}
	}
	button.uppy-ProviderBrowserItem-inner {
		border-radius: 4px;
		overflow: hidden;
		position: absolute;
		top: 7px;
		left: 7px;
		right: 7px;
		bottom: 7px;
		text-align: center;
		width: calc(100% - 14px);
		height: calc(100% - 14px);
		&:focus {
			outline: none;
			box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.9);
		}
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 4px;
		}
	}
	.uppy-ProviderBrowserItem-fakeCheckbox {
		position: absolute;
		top: 16px;
		right: 16px;
		width: 26px;
		height: 26px;
		background-color: #2275d7;
		border-radius: 50%;
		z-index: 1002;
		opacity: 0;
		&:after {
			width: 12px;
			height: 7px;
			left: 7px;
			top: 8px;
		}
	}
	.uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
		opacity: 1;
	}
}
.uppy-size--lg {
	.uppy-ProviderBrowser-viewType--grid {
		li.uppy-ProviderBrowserItem {
			width: 25%;
		}
	}
	.uppy-DashboardItem {
		margin: 5px 15px;
		width: calc(25% - 15px - 15px);
		height: 190px;
	}
	.uppy-DashboardItem-preview {
		height: 120px;
	}
}
.uppy-ProviderBrowser-viewType--list {
	background-color: #fff;
	li.uppy-ProviderBrowserItem {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		padding: 7px 15px;
		margin: 0;
	}
	.uppy-ProviderBrowserItem-fakeCheckbox {
		margin-right: 15px;
		height: 17px;
		width: 17px;
		border-radius: 3px;
		background-color: #fff;
		border: 1px solid #cfcfcf;
		&:focus {
			border: 1px solid #2275d7;
			box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
			outline: none;
		}
		&::after {
			opacity: 0;
			height: 5px;
			width: 9px;
			left: 3px;
			top: 4px;
		}
	}
	.uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
		background-color: #2275d7;
		border-color: #2275d7;
		&::after {
			opacity: 1;
		}
	}
	.uppy-ProviderBrowserItem-inner {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		padding: 2px;
		&:focus {
			outline: none;
			text-decoration: underline;
		}
		img {
			margin-right: 8px;
			max-width: 20px;
			max-height: 20px;
		}
		svg {
			margin-right: 8px;
			max-width: 20px;
			max-height: 20px;
		}
	}
}
.uppy-ProviderBrowserItem-fakeCheckbox {
	position: relative;
	cursor: pointer;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	&::after {
		content: '';
		position: absolute;
		cursor: pointer;
		border-left: 2px solid $body-color;
		border-bottom: 2px solid $body-color;
		transform: rotate(-45deg);
	}
}
.uppy-DashboardContent-panelBody {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex: 1;
	flex: 1;
}
.uppy-Provider-auth {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-ms-flex: 1;
	flex: 1;
	color: #939393;
}
.uppy-Provider-error {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-ms-flex: 1;
	flex: 1;
	color: #939393;
}
.uppy-Provider-loading {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-ms-flex: 1;
	flex: 1;
	color: #939393;
}
.uppy-Provider-empty {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-ms-flex: 1;
	flex: 1;
	color: #939393;
	color: #939393;
}
.uppy-Provider-authIcon {
	svg {
		width: 100px;
		height: 75px;
		margin-bottom: 15px;
	}
}
.uppy-Provider-authTitle {
	font-size: 17px;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 30px;
	padding: 0 15px;
	max-width: 500px;
	text-align: center;
	color: $border-color;
}
.uppy-Provider-breadcrumbs {
	-ms-flex: 1;
	flex: 1;
	color: #525252;
	font-size: 12px;
	margin-bottom: 10px;
	text-align: left;
	button {
		display: inline-block;
		line-height: inherit;
		padding: 4px;
		border-radius: 3px;
		&:focus {
			outline: none;
			background-color: #eceef2;
		}
		&::-moz-focus-inner {
			border: 0;
		}
		&:hover {
			color: #1b5dab;
			text-decoration: underline;
			cursor: pointer;
		}
	}
}
.uppy-Provider-breadcrumbsIcon {
	display: inline-block;
	color: #525252;
	vertical-align: middle;
	margin-right: 4px;
	line-height: 1;
	svg {
		width: 13px;
		height: 13px;
		fill: #525252;
	}
}
.uppy-ProviderBrowser {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1;
	flex: 1;
	font-size: 14px;
	font-weight: 400;
	height: 100%;
}
.uppy-ProviderBrowser-user {
	margin: 0 8px 0 0;
	font-weight: 500;
	color: $border-color;
	&:after {
		content: '\00B7';
		position: relative;
		left: 4px;
		color: #939393;
		font-weight: normal;
	}
}
.uppy-ProviderBrowser-header {
	z-index: 1001;
	border-bottom: 1px solid $body-color;
	position: relative;
}
.uppy-ProviderBrowser-headerBar {
	padding: 7px 15px;
	background-color: $light;
	z-index: 1001;
	color: $border-color;
	line-height: 1.4;
	font-size: 12px;
}
.uppy-ProviderBrowser-headerBar--simple {
	text-align: center;
	display: block;
	-ms-flex-pack: center;
	justify-content: center;
	.uppy-Provider-breadcrumbsWrap {
		-ms-flex: none;
		flex: none;
		display: inline-block;
		vertical-align: middle;
	}
}
.uppy-ProviderBrowser-search {
	width: 100%;
	background-color: #fff;
	position: relative;
	height: 30px;
	margin-top: 10px;
	margin-bottom: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.uppy-ProviderBrowser-searchIcon {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 16px;
	z-index: 1002;
	color: #bbb;
}
.uppy-ProviderBrowser-searchInput {
	width: 100%;
	height: 30px;
	background-color: transparent;
	outline: 0;
	font-family:$font-family-sans-serif;
	font-size: 12px;
	line-height: 1.4;
	border: 0;
	margin: 0 8px;
	padding-left: 27px;
	z-index: 1001;
	border-radius: 4px;
	&:focus {
		outline: 0;
		background-color: #f4f4f4;
	}
	&:-ms-input-placeholder {
		color: #939393;
		opacity: 1;
	}
	&::placeholder {
		color: #939393;
		opacity: 1;
	}
}
.uppy-ProviderBrowser-searchClose {
	position: absolute;
	width: 22px;
	height: 22px;
	padding: 6px;
	right: 12px;
	top: 4px;
	z-index: 1002;
	color: #939393;
	cursor: pointer;
	&:hover {
		color: $border-color;
	}
	svg {
		vertical-align: text-top;
	}
}
.uppy-ProviderBrowser-userLogout {
	cursor: pointer;
	line-height: inherit;
	color: #2275d7;
	padding: 4px;
	border-radius: 3px;
	&:focus {
		outline: none;
		background-color: #eceef2;
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		color: #1b5dab;
		text-decoration: underline;
	}
}
.uppy-ProviderBrowser-body {
	-ms-flex: 1;
	flex: 1;
	position: relative;
}
.uppy-ProviderBrowser-list {
	-ms-flex: 1;
	flex: 1;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-spacing: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.uppy-ProviderBrowserItem-inner {
	cursor: pointer;
	font-weight: 500;
	font-size: 13px;
}
.uppy-ProviderBrowser-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	height: 65px;
	border-top: 1px solid $body-color;
	padding: 0 15px;
	button {
		margin-right: 8px;
	}
}
.uppy-DashboardItem-previewInnerWrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 3px;
	&:after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.65);
		display: none;
		z-index: 1001;
	}
}
.uppy-DashboardItem-previewLink {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1002;
	&:focus {
		box-shadow: inset 0 0 0 3px #76abe9;
	}
}
.uppy-DashboardItem-preview {
	img.uppy-DashboardItem-previewImg {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: translateZ(0);
		border-radius: 3px;
	}
	position: relative;
}
.uppy-DashboardItem-progress {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1002;
	color: #fff;
	text-align: center;
	width: 120px;
	transition: all .35 ease;
}
.uppy-DashboardItem-progressIndicator {
	display: inline-block;
	width: 38px;
	height: 38px;
	opacity: 0.9;
	cursor: pointer;
	&:focus {
		outline: none;
		svg.UppyIcon-progressCircle {
			.bg {
				fill: #76abe9;
			}
		}
		svg.retry {
			fill: #76abe9;
		}
	}
	&::-moz-focus-inner {
		border: 0;
	}
}
svg.UppyIcon-progressCircle {
	width: 100%;
	height: 100%;
	.bg {
		stroke: rgba(255, 255, 255, 0.4);
		opacity: 0;
	}
	.progress {
		stroke: #fff;
		transition: stroke-dashoffset .5s ease-out;
		opacity: 0;
	}
	.play {
		stroke: #fff;
		fill: #fff;
		opacity: 0;
		transition: all 0.2s;
		display: none;
	}
	.cancel {
		fill: #fff;
		opacity: 0;
		transition: all 0.2s;
	}
	.pause {
		stroke: #fff;
		fill: #fff;
		opacity: 0;
		transition: all 0.2s;
		display: none;
	}
	.check {
		opacity: 0;
		fill: #fff;
		transition: all 0.2s;
	}
}
svg.UppyIcon.retry {
	fill: #fff;
}
.uppy-DashboardItem.is-complete {
	.uppy-DashboardItem-progress {
		transform: initial;
		top: -9px;
		right: -8px;
		left: initial;
		width: auto;
		display: block;
	}
	.uppy-DashboardItem-progressIndicator {
		width: 18px;
		height: 18px;
		opacity: 1;
		cursor: default;
	}
	.progress {
		stroke: $primary;
		fill: $primary;
		opacity: 1;
	}
	.check {
		opacity: 1;
	}
}
.uppy-DashboardItem.is-inprogress {
	.uppy-DashboardItem-progress {
		display: block;
	}
	.bg {
		opacity: 1;
	}
	.progress {
		opacity: 1;
	}
	.pause {
		opacity: 1;
	}
	.cancel {
		opacity: 1;
	}
	.uppy-DashboardItem-previewInnerWrap {
		&:after {
			display: block;
		}
	}
	&:not(.is-resumable) {
		.uppy-DashboardItem-action--remove {
			display: none;
		}
	}
}
.uppy-DashboardItem.is-error {
	.uppy-DashboardItem-progress {
		display: block;
	}
	.uppy-DashboardItem-progressIndicator {
		width: 18px;
		height: 18px;
	}
	.uppy-DashboardItem-previewInnerWrap {
		&:after {
			display: block;
		}
	}
}
.uppy-DashboardItem.is-paused {
	svg.UppyIcon-progressCircle {
		.pause {
			opacity: 0;
		}
		.play {
			opacity: 1;
		}
	}
}
.uppy-DashboardItem.is-noIndividualCancellation {
	.uppy-DashboardItem-progressIndicator {
		cursor: default;
	}
	.cancel {
		display: none;
	}
}
.uppy-DashboardItem.is-processing {
	.uppy-DashboardItem-progress {
		opacity: 0;
	}
}
.uppy-DashboardItem.is-resumable {
	.pause {
		display: block;
	}
	.play {
		display: block;
	}
	.cancel {
		display: none;
	}
}
.uppy-DashboardItem-fileInfo {
	padding-right: 5px;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
}
.uppy-DashboardItem-name {
	font-size: 12px;
	line-height: 1.3;
	font-weight: 500;
	margin-bottom: 4px;
	word-break: break-all;
	word-wrap: anywhere;
}
.uppy-DashboardItem-status {
	font-size: 11px;
	line-height: 1.3;
	font-weight: normal;
	color: $border-color;
}
.uppy-DashboardItem-statusSize {
	display: inline-block;
	vertical-align: bottom;
	text-transform: uppercase;
}
.uppy-DashboardItem-sourceIcon {
	display: none;
	vertical-align: bottom;
	color: #bbb;
	&:not(:first-child) {
		position: relative;
		margin-left: 14px;
	}
	svg {
		max-width: 100%;
		max-height: 100%;
		display: inline-block;
		vertical-align: text-bottom;
		overflow: hidden;
		fill: currentColor;
		width: 11px;
		height: 12px;
		* {
			max-width: 100%;
			max-height: 100%;
			display: inline-block;
			vertical-align: text-bottom;
			overflow: hidden;
			fill: currentColor;
			width: 11px;
			height: 12px;
		}
	}
}
.uppy-DashboardItem-action {
	cursor: pointer;
	color: #939393;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		opacity: 1;
		color: $light;
	}
}
.uppy-DashboardItem-action--remove {
	color: $light;
	opacity: 0.95;
	&:hover {
		opacity: 1;
		color: #000;
	}
}
.uppy-Dashboard {
	&:not(.uppy-size--md) {
		.uppy-DashboardItem-actionWrapper {
			display: -ms-flexbox;
			display: flex;
			-ms-flex-align: center;
			align-items: center;
		}
		.uppy-DashboardItem-action {
			width: 22px;
			height: 22px;
			padding: 3px;
			margin-left: 3px;
			&:focus {
				border-radius: 3px;
			}
		}
		.uppy-DashboardItem-preview {
			-ms-flex-negative: 0;
			flex-shrink: 0;
			-ms-flex-positive: 0;
			flex-grow: 0;
			width: 50px;
			height: 50px;
		}
	}
}
.uppy-DashboardItem {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid $body-color;
	padding: 10px;
	padding-right: 0;
}
.uppy-size--xl {
	.uppy-DashboardItem {
		width: calc(20% - 15px - 15px);
		height: 210px;
	}
	.uppy-DashboardItem-preview {
		height: 140px;
	}
}
.uppy-DashboardItem-fileInfoAndButtons {
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-right: 8px;
	padding-left: 12px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.uppy-DashboardItem-actionWrapper {
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.uppy-DashboardItem-errorDetails {
	line-height: 12px;
	width: 13px;
	height: 13px;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	background-color: #939393;
	border-radius: 50%;
	position: relative;
	top: 0;
	left: 2px;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	cursor: help;
	&:after {
		line-height: 1.3;
		word-wrap: break-word;
	}
}
.uppy-Dashboard-FileCard {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1005;
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	border-radius: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	.uppy-DashboardContent-bar {
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}
	.uppy-Dashboard-FileCard-actions {
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
}
.uppy-Dashboard-FileCard-inner {
	height: 100%;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
	min-height: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}
.uppy-Dashboard-FileCard-preview {
	height: 60%;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 1;
	flex-shrink: 1;
	min-height: 0;
	border-bottom: 1px solid $body-color;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	img.uppy-DashboardItem-previewImg {
		max-width: 90%;
		max-height: 90%;
		object-fit: cover;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		border-radius: 3px;
		box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
	}
}
.uppy-Dashboard-FileCard-info {
	height: 40%;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 30px 20px 20px 20px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.uppy-Dashboard-FileCard-fieldset {
	font-size: 0;
	border: 0;
	padding: 0;
	max-width: 640px;
	margin: auto;
	margin-bottom: 12px;
}
.uppy-Dashboard-FileCard-label {
	display: inline-block;
	vertical-align: middle;
	width: 22%;
	font-size: 12px;
	color: #525252;
}
.uppy-Dashboard-FileCard-input {
	display: inline-block;
	vertical-align: middle;
	width: 78%;
}
.uppy-Dashboard-FileCard-actions {
	height: 55px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	border-top: 1px solid $body-color;
	padding: 0 15px;
	background-color: $light;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.uppy-Dashboard-FileCard-actionsBtn {
	margin-right: 10px;
}
.uppy-transition-slideDownUp-enter {
	opacity: 0.01;
	transform: translate3d(0, -105%, 0);
	transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.uppy-transition-slideDownUp-enter.uppy-transition-slideDownUp-enter-active {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.uppy-transition-slideDownUp-leave {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.uppy-transition-slideDownUp-leave.uppy-transition-slideDownUp-leave-active {
	opacity: 0.01;
	transform: translate3d(0, -105%, 0);
}
.uppy-Dashboard--modal {
	z-index: 1001;
	.uppy-Dashboard-overlay {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 1001;
	}
	.uppy-Dashboard-inner {
		z-index: 1002;
		position: fixed;
		top: 35px;
		left: 15px;
		right: 15px;
		bottom: 15px;
		border: none;
	}
	.uppy-Dashboard-AddFiles {
		border-color: #cfcfcf;
	}
}
.uppy-Dashboard--modal[aria-hidden=true] {
	display: none;
}
.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose {
	>.uppy-Dashboard-inner {
		animation: uppy-Dashboard-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1);
	}
	>.uppy-Dashboard-overlay {
		animation: uppy-Dashboard-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
	}
}
.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing {
	>.uppy-Dashboard-inner {
		animation: uppy-Dashboard-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1);
	}
	>.uppy-Dashboard-overlay {
		animation: uppy-Dashboard-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
	}
}
.uppy-Dashboard-isFixed {
	overflow: hidden;
	height: 100vh;
}
.uppy-Dashboard-inner {
	position: relative;
	background-color: $card-bg;
	max-width: 100%;
	max-height: 100%;
	outline: none;
	border: 1px dashed $border-color;
	border-radius: 5px;
}
.uppy-Dashboard-innerWrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	opacity: 0;
}
.uppy-Dashboard--isInnerWrapVisible {
	.uppy-Dashboard-innerWrap {
		opacity: 1;
	}
}
.uppy-Dashboard-close {
	display: block;
	position: absolute;
	top: -33px;
	right: -2px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.9);
	font-size: 27px;
	z-index: 1005;
	&:focus {
		outline: none;
		color: #8cb8ed;
	}
	&::-moz-focus-inner {
		border: 0;
	}
}
.uppy-Dashboard-AddFiles {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	position: relative;
	text-align: center;
}
[data-uppy-drag-drop-supported="true"] {
	.uppy-Dashboard-AddFiles {
		// margin: 7px;
		// height: calc(100% - 14px);
		// border-radius: 3px;
		// border: 1px dashed #dfdfdf;
	}
}
.uppy-Dashboard-AddFilesPanel {
	.uppy-Dashboard-AddFiles {
		border: none;
		height: calc(100% - 14px - 40px);
	}
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: $light;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	z-index: 1005;
	border-radius: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}
.uppy-Dashboard-AddFiles-info {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: auto;
	display: none;
}
.uppy-size--height-md {
	.uppy-Dashboard-AddFiles-info {
		display: block;
	}
}
[data-uppy-num-acquirers="0"] {
	.uppy-Dashboard-AddFiles-info {
		margin-top: 0;
	}
	.uppy-Dashboard-AddFiles-title {
		text-align: center;
	}
}
.uppy-Dashboard-browse {
	cursor: pointer;
	color: rgba(34, 117, 215, 0.9);
	&:focus {
		outline: none;
		border-bottom: 1px solid #2275d7;
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		border-bottom: 1px solid #2275d7;
	}
}
.uppy-Dashboard-browseBtn {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 8px;
	margin-bottom: 5px;
	width: 100%;
}
.uppy-Dashboard-AddFiles-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1;
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 2px;
	padding: 2px 0;
	width: 100%;
}
.uppy-DashboardTab {
	width: 100%;
	text-align: center;
	border-bottom: 1px solid $body-color;
	svg {
		width: 23px;
		height: 23px;
		vertical-align: middle;
	}
}
.uppy-DashboardTab-btn {
	width: 100%;
	height: 100%;
	cursor: pointer;
	border: 0;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #525252;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 15px;
	line-height: 1;
	text-align: center;
	&:focus {
		outline: none;
		background-color: #eceef2;
	}
	&::-moz-focus-inner {
		border: 0;
		border: 0;
	}
	&:hover {
		background-color: #f1f3f6;
	}
	&:active {
		background-color: #eceef2;
	}
	svg {
		max-width: 100%;
		max-height: 100%;
		display: inline-block;
		vertical-align: text-top;
		overflow: hidden;
		transition: transform ease-in-out .15s;
		margin-right: 10px;
	}
}
.uppy-DashboardTab-name {
	font-size: 14px;
	font-weight: 500;
}
.uppy-Dashboard-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.uppy-DashboardContent-bar {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	height: 40px;
	width: 100%;
	padding: 0 10px;
	z-index: 1004;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	border-bottom: 1px solid $body-color;
	background-color: $light;
}
.uppy-DashboardContent-title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 12px;
	line-height: 40px;
	font-weight: 500;
	width: 100%;
	max-width: 170px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow-x: hidden;
	margin: auto;
}
.uppy-DashboardContent-back {
	background: none;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: inherit;
	line-height: 1;
	padding: 0;
	margin: 0;
	border: 0;
	color: inherit;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 400;
	cursor: pointer;
	color: #2275d7;
	padding: 7px 6px;
	margin-left: -6px;
	&:focus {
		outline: none;
		background-color: #eceef2;
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		color: #1b5dab;
	}
}
.uppy-DashboardContent-addMore {
	background: none;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: inherit;
	line-height: 1;
	padding: 0;
	margin: 0;
	border: 0;
	color: inherit;
	border-radius: 3px;
	font-weight: 500;
	cursor: pointer;
	color: #2275d7;
	width: 29px;
	height: 29px;
	padding: 7px 8px;
	margin-right: -5px;
	&:focus {
		outline: none;
		background-color: #eceef2;
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		color: #1b5dab;
	}
	svg {
		vertical-align: baseline;
		margin-right: 4px;
	}
}
.uppy-DashboardContent-addMoreCaption {
	display: none;
}
.uppy-DashboardContent-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: whitesmoke;
	overflow: hidden;
	z-index: 1005;
	border-radius: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1;
	flex: 1;
}
.uppy-Dashboard--isAddFilesPanelVisible {
	.uppy-Dashboard-files {
		filter: blur(2px);
	}
}
.uppy-Dashboard-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 12%;
}
.uppy-Dashboard-progressBarContainer.is-active {
	z-index: 1004;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.uppy-Dashboard-filesContainer {
	position: relative;
	overflow-y: hidden;
	margin: 0;
	-ms-flex: 1;
	flex: 1;
	&:after {
		content: '';
		display: table;
		clear: both;
	}
}
.uppy-Dashboard-files {
	margin: 0;
	padding: 0 0 10px 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-flex: 1;
	flex: 1;
}
.uppy-Dashboard-dropFilesHereHint {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	visibility: hidden;
	position: absolute;
	top: 7px;
	right: 7px;
	bottom: 7px;
	left: 7px;
	padding-top: 90px;
	border: 1px dashed #2275d7;
	border-radius: 3px;
	z-index: 2000;
	text-align: center;
	background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%232275D7' fill-rule='nonzero'/%3E%3C/svg%3E");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: $border-color;
	font-size: 16px;
}
.uppy-Dashboard.uppy-Dashboard--isDraggingOver {
	.uppy-Dashboard-dropFilesHereHint {
		visibility: visible;
	}
	.uppy-DashboardContent-bar {
		opacity: 0.15;
	}
	.uppy-Dashboard-files {
		opacity: 0.15;
	}
	.uppy-Dashboard-progressindicators {
		opacity: 0.15;
	}
	.uppy-Dashboard-AddFiles {
		opacity: 0.03;
	}
}
.uppy-Dashboard-dropFilesIcon {
	display: none;
	margin-bottom: 15px;
}
.uppy-size--md.uppy-size--height-md {
	.uppy-Dashboard-dropFilesIcon {
		display: block;
	}
}
.uppy-Dashboard-AddFiles-title {
	font-size: 17px;
	line-height: 1.35;
	font-weight: 500;
	color: #000;
	margin-top: 15px;
	margin-bottom: 5px;
	text-align: left;
	padding: 0 15px;
	width: 100%;
	button {
		font-weight: 500;
	}
}
.uppy-Dashboard-note {
	font-size: 14px;
	line-height: 1.25;
	text-align: center;
	color: $border-color;
	max-width: 350px;
	margin: auto;
	padding: 0 15px;
}
a.uppy-Dashboard-poweredBy {
	display: inline-block;
	text-align: center;
	font-size: 11px;
	color: #939393;
	text-decoration: none;
	margin-top: 8px;
}
.uppy-Dashboard-poweredByIcon {
	stroke: #939393;
	fill: none;
	margin-left: 1px;
	margin-right: 1px;
	position: relative;
	top: 1px;
	opacity: 0.9;
	vertical-align: text-top;
}
.uppy-DashboardItem-previewIcon {
	width: 25px;
	height: 25px;
	z-index: 100;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	svg {
		width: 100%;
		height: 100%;
	}
}
.uppy-DashboardItem-previewIconWrap {
	height: 76px;
	max-height: 75%;
	position: relative;
}
.uppy-DashboardItem-previewIconBg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1px);
}
.uppy-Dashboard-upload {
	position: relative;
	width: 50px;
	height: 50px;
	.UppyIcon {
		position: relative;
		top: 1px;
		width: 50%;
	}
}
.uppy-Dashboard-uploadCount {
	position: absolute;
	top: -12px;
	right: -12px;
	background-color: $primary;
	color: #fff;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	line-height: 16px;
	font-size: 8px;
}
.uppy-DragDrop-container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 7px;
	background-color: #fff;
	cursor: pointer;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	max-width: 100%;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
	}
	&::-moz-focus-inner {
		border: 0;
	}
}
.uppy-DragDrop-inner {
	margin: 0;
	text-align: center;
	padding: 80px 20px;
	line-height: 1.4;
}
.uppy-DragDrop-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.uppy-DragDrop-arrow {
	width: 60px;
	height: 60px;
	fill: #e0e0e0;
	margin-bottom: 17px;
}
.uppy-DragDrop--is-dragdrop-supported {
	border: 2px dashed #adadad;
}
.uppy-DragDrop--isDraggingOver {
	border: 2px dashed #2275d7;
	background: $body-color;
	.uppy-DragDrop-arrow {
		fill: #939393;
	}
}
.uppy-DragDrop-label {
	display: block;
	font-size: 1.15em;
	margin-bottom: 5px;
}
.uppy-DragDrop-browse {
	color: #2275d7;
	cursor: pointer;
}
.uppy-DragDrop-note {
	font-size: 1em;
	color: #adadad;
}
.uppy-FileInput-container {
	margin-bottom: 15px;
}
.uppy-FileInput-btn {
	background: none;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: inherit;
	line-height: 1;
	padding: 0;
	margin: 0;
	border: 0;
	color: inherit;
	font-family: sans-serif;
	font-size: 0.85em;
	padding: 10px 15px;
	color: #14457f;
	border: 1px solid #14457f;
	border-radius: 8px;
	cursor: pointer;
	&:hover {
		background-color: #14457f;
		color: #fff;
	}
}
.uppy-ProgressBar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	z-index: 10000;
	transition: height .2s;
}
.uppy-ProgressBar[aria-hidden=true] {
	height: 0;
}
.uppy-ProgressBar-inner {
	background-color: #2275d7;
	box-shadow: 0 0 10px rgba(34, 117, 215, 0.7);
	height: 100%;
	width: 0;
	transition: width 0.4s ease;
}
.uppy-ProgressBar-percentage {
	display: none;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}
.uppy-Url {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex: 1;
	flex: 1;
}
.uppy-Url-input {
	width: 90%;
	max-width: 650px;
	margin-bottom: 15px;
}
.uppy-Url-importButton {
	padding: 13px 25px;
}
.uppy-Webcam-container {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column;
}
.uppy-Webcam-videoContainer {
	width: 100%;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	overflow: hidden;
	background-color: $border-color;
	text-align: center;
	position: relative;
}
.uppy-Webcam-video {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.uppy-Webcam-video--mirrored {
	transform: scaleX(-1);
}
.uppy-Webcam-buttonContainer {
	width: 100%;
	height: 75px;
	border-top: 1px solid $body-color;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 20px;
}
.uppy-Webcam-button {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #e32437;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
	}
	&::-moz-focus-inner {
		border: 0;
	}
	svg {
		width: 30px;
		height: 30px;
		max-width: 100%;
		max-height: 100%;
		display: inline-block;
		vertical-align: text-top;
		overflow: hidden;
		fill: currentColor;
	}
	&:hover {
		background-color: #d31b2d;
	}
}
.uppy-Webcam-button--picture {
	margin-right: 12px;
}
.uppy-Webcam-permissons {
	padding: 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	height: 100%;
	-ms-flex: 1;
	flex: 1;
	p {
		max-width: 450px;
		line-height: 1.3;
		text-align: center;
		line-height: 1.45;
		color: #939393;
		margin: 0;
	}
}
.uppy-Webcam-permissonsIcon {
	svg {
		width: 100px;
		height: 75px;
		color: #bbb;
		margin-bottom: 30px;
	}
}
.uppy-Webcam-recordingLength {
	position: absolute;
	right: 20px;
	color: $border-color;
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.uppy-Webcam-title {
	font-size: 22px;
	line-height: 1.35;
	font-weight: 400;
	margin: 0;
	margin-bottom: 5px;
	padding: 0 15px;
	max-width: 500px;
	text-align: center;
	color: $border-color;
}
.uppy-ScreenCapture-container {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column;
}
.uppy-ScreenCapture-videoContainer {
	width: 100%;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	overflow: hidden;
	background-color: $border-color;
	text-align: center;
	position: relative;
}
.uppy-ScreenCapture-video {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	outline: 0;
}
.uppy-ScreenCapture-buttonContainer {
	width: 100%;
	height: 75px;
	border-top: 1px solid $body-color;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 20px;
	background-color: #fff;
}
.uppy-ScreenCapture-button {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	&:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
	}
	&::-moz-focus-inner {
		border: 0;
	}
	&:hover {
		background-color: #d31b2d;
	}
	svg {
		width: 30px;
		height: 30px;
		max-width: 100%;
		max-height: 100%;
		display: inline-block;
		vertical-align: text-top;
		overflow: hidden;
		fill: currentColor;
	}
}
.uppy-ScreenCapture-button--submit {
	background-color: #2275d7;
	margin-left: 12px;
	&:hover {
		background-color: #1f69c1;
	}
	&:disabled {
		background-color: #939393;
		cursor: default;
		&:hover {
			background-color: $body-color;
		}
	}
}
.uppy-ScreenCapture-title {
	font-size: 22px;
	line-height: 1.35;
	font-weight: 400;
	margin: 0;
	margin-bottom: 5px;
	padding: 0 15px;
	max-width: 500px;
	text-align: center;
	color: $border-color;
}
.uppy-ScreenCapture-icon--stream {
	position: absolute;
	right: 0;
	top: 0;
	margin: 1rem;
	z-index: 1;
	svg {
		fill: #939393;
	}
}
.uppy-ScreenCapture-icon--streamActive {
	svg {
		animation: uppy-ScreenCapture-icon--blink 1s cubic-bezier(0.47, 0, 0.75, 0.72) infinite;
	}
}
.uppy-ScreenCapture-button--video {
	color: #fff;
	background: #e32437;
	&:hover {
		background-color: #bc1828;
	}
}
@media only screen and (min-width: 820px) {
	.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose {
		>.uppy-Dashboard-inner {
			animation: uppy-Dashboard-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
		}
	}
	.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing {
		>.uppy-Dashboard-inner {
			animation: uppy-Dashboard-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
		}
	}
	.uppy-Dashboard-inner {
		width: 750px;
		height: 550px;
	}
	.uppy-Dashboard--modal {
		.uppy-Dashboard-inner {
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15);
		}
	}
	.uppy-Dashboard-close {
		font-size: 35px;
		top: -10px;
		right: -35px;
	}
}