.vue-advanced-cropper {
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-height: 100%;
  max-width: 100%;
  direction: ltr;
}

.vue-advanced-cropper__stretcher {
  pointer-events: none;
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.vue-advanced-cropper__image {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  -webkit-transform-origin: center;
  transform-origin: center;
  max-width: none !important;
}

.vue-advanced-cropper__background, .vue-advanced-cropper__foreground {
  opacity: 1;
  background: #000;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.vue-advanced-cropper__foreground {
  opacity: 0.5;
}

.vue-advanced-cropper__boundaries {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

.vue-advanced-cropper__cropper-wrapper {
  width: 100%;
  height: 100%;
}

.vue-advanced-cropper__image-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}

.vue-advanced-cropper__stencil-wrapper {
  position: absolute;
}

.vue-rectangle-stencil {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vue-rectangle-stencil__preview {
  position: absolute;
  width: 100%;
  height: 100%;
}

.vue-rectangle-stencil--movable {
  cursor: move;
}

.vue-preview {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.vue-preview--fill {
  width: 100%;
  height: 100%;
  position: absolute;
}

.vue-preview__wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}

.vue-preview__image {
  pointer-events: none;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform-origin: center;
  transform-origin: center;
  max-width: none !important;
}

.vue-circle-stencil {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: move;
}

.vue-circle-stencil__preview {
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
}

.vue-circle-stencil--movable {
  cursor: move;
}

.vue-simple-handler {
  display: block;
  background: #fff;
  height: 10px;
  width: 10px;
}

.vue-line-wrapper {
  background: 0 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vue-line-wrapper--north, .vue-line-wrapper--south {
  height: 12px;
  width: 100%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vue-line-wrapper--north {
  top: 0;
  cursor: n-resize;
}

.vue-line-wrapper--south {
  top: 100%;
  cursor: s-resize;
}

.vue-line-wrapper--east, .vue-line-wrapper--west {
  width: 12px;
  height: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}

.vue-line-wrapper--east {
  left: 100%;
  cursor: e-resize;
}

.vue-line-wrapper--west {
  left: 0;
  cursor: w-resize;
}

.vue-line-wrapper--disabled {
  cursor: auto;
}

.vue-handler-wrapper {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}

.vue-handler-wrapper__draggable {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vue-handler-wrapper--west-north {
  cursor: nw-resize;
}

.vue-handler-wrapper--north {
  cursor: n-resize;
}

.vue-handler-wrapper--east-north {
  cursor: ne-resize;
}

.vue-handler-wrapper--east {
  cursor: e-resize;
}

.vue-handler-wrapper--east-south {
  cursor: se-resize;
}

.vue-handler-wrapper--south {
  cursor: s-resize;
}

.vue-handler-wrapper--west-south {
  cursor: sw-resize;
}

.vue-handler-wrapper--west {
  cursor: w-resize;
}

.vue-handler-wrapper--disabled {
  cursor: auto;
}

.vue-draggable-area {
  position: relative;
}

.vue-bounding-box {
  position: relative;
  height: 100%;
  width: 100%;
}

.vue-bounding-box__handler {
  position: absolute;
}

.vue-bounding-box__handler--west-north {
  left: 0;
  top: 0;
}

.vue-bounding-box__handler--north {
  left: 50%;
  top: 0;
}

.vue-bounding-box__handler--east-north {
  left: 100%;
  top: 0;
}

.vue-bounding-box__handler--east {
  left: 100%;
  top: 50%;
}

.vue-bounding-box__handler--east-south {
  left: 100%;
  top: 100%;
}

.vue-bounding-box__handler--south {
  left: 50%;
  top: 100%;
}

.vue-bounding-box__handler--west-south {
  left: 0;
  top: 100%;
}

.vue-bounding-box__handler--west {
  left: 0;
  top: 50%;
}

.vue-preview-result {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 100%;
  width: 100%;
}

.vue-preview-result__wrapper {
  position: absolute;
}

.vue-preview-result__image {
  pointer-events: none;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform-origin: center;
  transform-origin: center;
  max-width: none !important;
}

.vue-simple-line {
  background: 0 0;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
  border-color: rgba(255, 255, 255, 0.3);
  border-width: 0;
  border-style: solid;
}

.vue-simple-line--north, .vue-simple-line--south {
  height: 0;
  width: 100%;
}

.vue-simple-line--east, .vue-simple-line--west {
  height: 100%;
  width: 0;
}

.vue-simple-line--east {
  border-right-width: 1px;
}

.vue-simple-line--west {
  border-left-width: 1px;
}

.vue-simple-line--south {
  border-bottom-width: 1px;
}

.vue-simple-line--north {
  border-top-width: 1px;
}

.vue-simple-line--hover {
  opacity: 1;
  border-color: #fff;
}
.vue-simple-line {
  border-color: rgba(255, 255, 255, 0.8);
}

.vue-simple-handler {
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  border: none;
  background: white;
  height: 8px;
  width: 8px;
  opacity: 0.5;
}
.vue-simple-handler--hover {
  opacity: 1;
}

.vue-circle-stencil__preview {
  border: solid 2px rgba(255, 255, 255, 0.8);
}
.vue-circle-stencil .vue-simple-line {
  border-color: rgba(255, 255, 255, 0.3);
}
.vue-circle-stencil .vue-simple-handler--west-north, .vue-circle-stencil .vue-simple-handler--east-south, .vue-circle-stencil .vue-simple-handler--west-south, .vue-circle-stencil .vue-simple-handler--east-north {
  opacity: 0.5;
}
.vue-circle-stencil .vue-simple-handler--hover {
  opacity: 1;
}

.vue-circle-stencil__preview:after, .vue-circle-stencil__preview:before,
.vue-rectangle-stencil__preview:after,
.vue-rectangle-stencil__preview:before {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.vue-circle-stencil__preview:after,
.vue-rectangle-stencil__preview:after {
  border-left: dashed 1px white;
  border-right: dashed 1px white;
  width: 33%;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 0;
}
.vue-circle-stencil__preview:before,
.vue-rectangle-stencil__preview:before {
  border-top: dashed 1px white;
  border-bottom: dashed 1px white;
  height: 33%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.vue-circle-stencil--moving .vue-rectangle-stencil__preview:after, .vue-circle-stencil--moving .vue-rectangle-stencil__preview:before,
.vue-circle-stencil--moving .vue-circle-stencil__preview:after,
.vue-circle-stencil--moving .vue-circle-stencil__preview:before, .vue-circle-stencil--resizing .vue-rectangle-stencil__preview:after, .vue-circle-stencil--resizing .vue-rectangle-stencil__preview:before,
.vue-circle-stencil--resizing .vue-circle-stencil__preview:after,
.vue-circle-stencil--resizing .vue-circle-stencil__preview:before,
.vue-rectangle-stencil--moving .vue-rectangle-stencil__preview:after,
.vue-rectangle-stencil--moving .vue-rectangle-stencil__preview:before,
.vue-rectangle-stencil--moving .vue-circle-stencil__preview:after,
.vue-rectangle-stencil--moving .vue-circle-stencil__preview:before,
.vue-rectangle-stencil--resizing .vue-rectangle-stencil__preview:after,
.vue-rectangle-stencil--resizing .vue-rectangle-stencil__preview:before,
.vue-rectangle-stencil--resizing .vue-circle-stencil__preview:after,
.vue-rectangle-stencil--resizing .vue-circle-stencil__preview:before {
  opacity: 0.7;
}
.vue-circle-stencil--moving .vue-simple-handler, .vue-circle-stencil--resizing .vue-simple-handler,
.vue-rectangle-stencil--moving .vue-simple-handler,
.vue-rectangle-stencil--resizing .vue-simple-handler {
  opacity: 1;
}

.vue-circle-stencil--moving .vue-simple-handler, .vue-circle-stencil--resizing .vue-simple-handler,
.vue-rectangle-stencil--moving .vue-simple-handler,
.vue-rectangle-stencil--resizing .vue-simple-handler {
  opacity: 1;
}

.cropper__lightbox {
	background: rgba(0, 0, 0, .90);
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 10vh;
}
.gpfup__cropper__topbar {
	display: flex;
	position: absolute;
	top: 20px;
	width: 100%;
	left: 0;
	padding: 0 20px;
	box-sizing: border-box;
	gap: 20px;
}
.gpfup__cropper_count {
	color: #fff;
	text-align: center;
	line-height: 35px;
	flex: 1;
}
.vue-advanced-cropper__background {
	background: transparent;
}
.cropper {
	width: 100%;
	height: 100%;
}
.cropper__lightbox button {
	font-size: 16px;
	background: #56488f;
	padding: 10px 30px;
	border: 0;
	border-radius: 2px;
	color: white;
}
@media (max-width: 450px) {
.gpfup__cropper__topbar {
		flex-wrap: wrap;/* Stack buttons on very small screens */
}
.cropper__lightbox button {
		flex: 1;
}
.cropper__lightbox button.gpfup__crop,
	.cropper__lightbox button.gpfup__cancel {
		padding: 10px; /* Reduce padding for smaller screens */
		margin: 0;
}
.cropper__lightbox button.gpfup__rotate_left,
	.cropper__lightbox button.gpfup__rotate_right {
		max-width: 60px;
}
}
button.gpfup__crop {
	right: 20px;
	margin-left: auto
}
button.gpfup__cancel {
	background: #666;
	left: 20px;
}
.vue-handler-wrapper--south,
.vue-handler-wrapper--north {
	cursor: ns-resize;
}
.vue-handler-wrapper--west,
.vue-handler-wrapper--east {
	cursor: ew-resize;
}
.vue-handler-wrapper--east-north,
.vue-handler-wrapper--west-south {
	cursor: nesw-resize;
}
.vue-handler-wrapper--east-south,
.vue-handler-wrapper--west-north {
	cursor: nwse-resize;
}

/*.vue-advanced-cropper__area[style] {*/
/*    transition: all .3s ease-in-out !important;*/
/*}*/
.gpfup__cropper--transition-enter {
	opacity: 0;
}
.gpfup__cropper--transition-enter-active {
	transition: opacity .3s ease-out;
}
.gpfup__cropper--transition-enter-to {
	opacity: 1;
}
.gpfup__cropper--transition-leave-active {
	transition: opacity .3s ease-out;
}
.gpfup__cropper--transition-leave-to {
	opacity: 0;
}


/* Replace text with icons */
.cropper__lightbox .gpfup__rotate_left,
.cropper__lightbox .gpfup__rotate_right {
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	color: white;
}
.cropper__lightbox .gpfup__rotate_left {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M12 4V2.2L9 4.8l3 2.5V5.5c3.6 0 6.5 2.9 6.5 6.5 0 2.9-1.9 5.3-4.5 6.2v.2l-.1-.2c-.4.1-.7.2-1.1.2l.2 1.5c.3 0 .6-.1 1-.2 3.5-.9 6-4 6-7.7 0-4.4-3.6-8-8-8zm-7.9 7l1.5.2c.1-1.2.5-2.3 1.2-3.2l-1.1-.9C4.8 8.2 4.3 9.6 4.1 11zm1.5 1.8l-1.5.2c.1.7.3 1.4.5 2 .3.7.6 1.3 1 1.8l1.2-.8c-.3-.5-.6-1-.8-1.5s-.4-1.1-.4-1.7zm1.5 5.5c1.1.9 2.4 1.4 3.8 1.6l.2-1.5c-1.1-.1-2.2-.5-3.1-1.2l-.9 1.1z\" fill=\"white\" /></svg>");
}
.cropper__lightbox .gpfup__rotate_right {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M15.1 4.8l-3-2.5V4c-4.4 0-8 3.6-8 8 0 3.7 2.5 6.9 6 7.7.3.1.6.1 1 .2l.2-1.5c-.4 0-.7-.1-1.1-.2l-.1.2v-.2c-2.6-.8-4.5-3.3-4.5-6.2 0-3.6 2.9-6.5 6.5-6.5v1.8l3-2.5zM20 11c-.2-1.4-.7-2.7-1.6-3.8l-1.2.8c.7.9 1.1 2 1.3 3.1L20 11zm-1.5 1.8c-.1.5-.2 1.1-.4 1.6s-.5 1-.8 1.5l1.2.9c.4-.5.8-1.1 1-1.8s.5-1.3.5-2l-1.5-.2zm-5.6 5.6l.2 1.5c1.4-.2 2.7-.7 3.8-1.6l-.9-1.1c-.9.7-2 1.1-3.1 1.2z\" fill=\"white\" /></svg>");
}



.gpfup--images-only {}
.gpfup__preview {
		margin: auto 1rem auto 0;
		position: relative;
		display: flex;
        user-select: none;
}
.gpfup__preview img,
	.gpfup__preview-pending {
		width: 48px;
		height: 48px;
		border-radius: 4px;
}
.gpfup__preview img {
		object-fit: cover;
		background-color: rgba( 0, 0, 0, 0.5 );
}
.gpfup__preview-pending {
		background-color: rgba( 0, 0, 0, 0.1 );
		text-align: center;
}
.gpfup__preview-pending svg {
		opacity: 0.5;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
}
.gpfup--images-only .gpfup__preview {
		width: 100px;
}
.gpfup--images-only .gpfup__preview img,
	.gpfup--images-only .gpfup__preview-pending {
		width: 100px;
		height: 100px;
		object-fit: cover;
}
.gpfup--images-only .gpfup__upload-error-icon {
		width: 100px;
		text-align: center;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
}
.gpfup--images-only .gpfup__preview--crop img {
		height: auto;
		object-fit: contain;
}
.gpfup--images-only.gpfup--circle-stencil .gpfup__preview img {
		border-radius: 50%;
}
.gpfup__file-icon svg,
	.gpfup__upload-error-icon svg {
		vertical-align: middle;
}
.gpfup__edit {
		display: none;
		padding: 0;
		background: black;
		border: 0;
		border-radius: 50%;
		cursor: pointer !important;
		position: absolute;
		width: 30px;
		height: 30px;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		opacity: 0.5;
		transition: opacity 0.25s ease-out;
		line-height: 1;
}
.gpfup__edit path {
		fill: white;
}
.gpfup__edit:hover {
		opacity: 1.0;
}
.gpfup__edit:focus {
		outline: 0;
		border: 2px solid #fff;
}
.gpfup__file:hover .gpfup__edit,
	.gpfup__file:focus-within .gpfup__edit {
		display: block;
}
.gpfup__upload-error-icon path:last-child {
		fill: #790000;
}



.gpfup__progress-container {
	/*margin-top: 10px;*/
	/*border-radius: 2px;*/
	overflow: hidden;
	height: 6px;
	width: 100%;
	background: rgba( 0, 0, 0, 0.05 );
	position: absolute;
	left: 0;
	bottom: 0;
}

/**
* Classes for <transition>
* https://vuejs.org/v2/guide/transitions.html#Transition-Classes
*/
.gpfup__progress-container--fade-leave-active {
	transition: opacity .25s, height .25s, margin .25s;
}
.gpfup__progress-container--fade-leave-to {
	opacity: 0;
	/*height: 0;*/
	/*margin-top: 0;*/
}
.gpfup_progress {
	transition: width .5s linear;
	height: 100%;
	background: #3498db;
}


.gpfup__drag-handle {
	display: flex;
	width: 1rem;
	margin-right: 0.8rem;
	margin-left: -0.2rem;
}
.gpfup--dragging .gpfup__drag-handle {
	pointer-events: none;
}
.gpfup__drag-handle:before {
	content: "";
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 100 100%27 width=%2725%27 height=%2725%27%3E%3Crect y=%2710%27 x=%2725%27 width=%2712%27 height=%2710%27 rx=%276%27/%3E%3Crect y=%2710%27 x=%2760%27 width=%2712%27 height=%2712%27 rx=%276%27/%3E%3Crect y=%2745%27 x=%2725%27 width=%2712%27 height=%2712%27 rx=%276%27/%3E%3Crect y=%2745%27 x=%2760%27 width=%2712%27 height=%2712%27 rx=%276%27/%3E%3Crect y=%2780%27 x=%2725%27 width=%2712%27 height=%2712%27 rx=%276%27/%3E%3Crect y=%2780%27 x=%2760%27 width=%2712%27 height=%2712%27 rx=%276%27/%3E%3C/svg%3E%0A");
	background-size: contain;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	font-size: 1.4rem;
	margin: auto 0;
	cursor: grab;
}
.gpfup__drag-handle--disabled {
	pointer-events: none;
	opacity: .15;
}


.gpfup__file {
	padding: 1rem;
	display: flex;
	position: relative;
}
.gpfup__file.ghost * {
	opacity: 0;
}
.gpfup__file.sortable-drag {
	border: 0 !important;
	width: auto;
}
.gpfup__file.sortable-drag .gpfup__progress-container,
.gpfup__file.sortable-drag .gpfup__delete {
	opacity: 0;
	pointer-events: none;
}
.gpfup__file:not(:last-of-type) {
	border-bottom: 1px solid rgba( 0, 0, 0, 0.15 );
}
.gpfup__filesize {
	color: #999;
}
.gpfup__file-actions {
	display: flex;
	margin: auto 0;
}
.gpfup__files .gpfup__delete,
.gpfup__files .gpfup__delete:hover {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	margin-left: auto;
	cursor: pointer;
	padding: 0.2rem;
	background-color: transparent;
	border: 0;
	border-radius: 50%;
}
.gpfup--strict .gpfup__delete svg {
	fill: #333;
}
.gpfup--strict .gpfup__delete {
	background-color: transparent !important;
}
.gpfup__file-info {
	flex: 1;
	margin: auto 1rem auto 0;
	line-height: 1.2;
    user-select: none;
	/* Forces truncated text to be correctly truncated with flexbox. See: https://css-tricks.com/flexbox-truncated-text/ */
	min-width: 0;
}
.gpfup__filename {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.gpfup__filesize,
.gpfup__file-error {
	margin-top: 0.3rem;
}



.gpfup__file-error {
	color: #790000;
	white-space: initial;
}
.gpfup--sortable .gpfup__file--has-error {
	padding-left: 2.6rem;
}


.gpfup__droparea {
	background: rgba( 0, 0, 0, 0.02 );
	border-radius: 2px;
	border: 1px dashed rgba( 0, 0, 0, 0.15 );
	text-align: center;
	position: relative;
	z-index: 1;
	color: #666;
	transition: all 0.25s ease-out;
	display: flex;
	width: 100%;
	height: 6rem;
	padding: 1rem;
}
.gpfup--has-files .gpfup__droparea {
	border-top: 0;
}
.gpfup__droparea > div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 100%;
}
.gpfup__droparea--over {
	background: rgba( 0, 0, 0, 0.06 );
	border-color: rgba( 0, 0, 0, 0.3 );
	color: #333;
}
.gpfup__droparea--over .gpfup__select-files-container {
	display: none;
}



.gpfup * {
	box-sizing: border-box;
}

/* https://github.com/SortableJS/Vue.Draggable/issues/815#issuecomment-600637288 */
.gpfup--dragging * {
	cursor: grabbing !important;
}
.gpfup__files {
	margin: 0;
	list-style: none;
	border-radius: 2px;
	border: 1px solid rgba( 0, 0, 0, 0.10 );
	position: relative;
	box-shadow: 0 2px 2px rgba( 0, 0, 0, 0.05 );
	z-index: 2;
	margin-bottom: -1px;
	padding: 0;
}
.gv-edit-entry-wrapper ul[id^="gform_multifile_messages_"] li.gfield_validation_message {
	display: none;
}


/*# sourceMappingURL=gp-file-upload-pro.css.map*/