html,
body {
	overflow: hidden;
	height: 100%;
}

.app {
	width: 100%;
	height: 100%;
	display: flex;
}

.drawing-cursor {
	 cursor:crosshair;
}

.moving-cursor {
	 cursor:move;
}

.drag-cursor {
	cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.dragging-cursor {
	cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
.rotating-cursor .transform-handle.transform-ne, 
.rotating-cursor .transform-handle.transform-n, 
.rotating-cursor .transform-handle.transform-nw, 
.rotating-cursor .transform-handle.transform-e, 
.rotating-cursor .transform-handle.transform-w, 
.rotating-cursor .transform-handle.transform-se, 
.rotating-cursor .transform-handle.transform-s, 
.rotating-cursor .transform-handle.transform-sw {
    cursor: alias;
}
.tutorial {
	position: absolute;
	width: 100%;
	height: 100%;
}

.tutorial-layer-controls {
	background-image: url("/images/tutorial/Insert.svg");
	position: absolute;
    top: 84px;
    width: 210px;
    height: 448px;
    z-index: 1;
    display: none;
}

.tutorial-layer-order-controls {
	background-image: url("/images/tutorial/Layers.svg");
	position: absolute;
    top: 184px;
    width: 360px;
    height: 102px;
    z-index: 1;
    display: none;
}

.tutorial-settings {
	background-image: url("/images/tutorial/Canvas.svg");
	position: absolute;
    top: 284px;
    width: 355px;
    height: 162px;
    z-index: 1;
    display: none;
}

.tutorial-floating-toolbar {
	background-image: url("/images/tutorial/Options.svg");
	position: absolute;
    top: 10px;
    left: 110px;
    height: 72px;
    width: 619px;
    z-index: 1;
    display: none;
}

.tutorial-canvas-toolbar {
	background-image: url("/images/tutorial/Selection-Icons.svg");
	position: absolute;
    top: 434px;
    left: 541px;
    height: 40px;
    width: 124px;
    z-index: 1;
    display: none;
}

.tutorial-canvas-rotate-icon {
	background-image: url("/images/tutorial/Rotate.svg");
	position: absolute;
    top: 434px;
    left: 623px;
    height: 40px;
    width: 42px;
    z-index: 1;
    display: none;
}

.tutorial-box-element {
	background-image: url("/images/tutorial/Selection.svg");
	position: absolute;
    top: 177px;
    left: 402px;
    height: 248px;
    width: 401px;
    z-index: 1;
  	display: none;
}

.key {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: #e8e8e8;
    display: inline-block;
    margin: 0 2px;
    min-width: 26px;
    padding: 1px 8px;
    text-align: center;
    white-space: nowrap;
}

.u-no-bullets {
	list-style-type: none;
}

.toolbar {
	position: relative;
	z-index: 1;
	flex: 0 0 100px;
	align-items: stretch;
	background: #000;
	user-select: none;
}

.workspace {
	flex: 1 1 auto;
	align-items: stretch;
	background: #f2f2f2;
	height:100%;
}

.guide-line{
	position: absolute;
	opacity: 0.2;
    outline: 1px #ffffff solid;
    border: 1px #000000 dashed;
    pointer-events: none;
}
.guide-line.vertical{
	left: 0;
	height: 0px;
	width: 9000px;
	border-width: 1px 0 0 0;
}
.guide-line.horizontal{
	top: 0;
	height: 9000px;
	width: 0px;
	border-width: 0 0 0 1px;
}

.toolbar-logo {
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.colour-picker-widget,
.floating-toolbar {
	position: absolute;
	top: 10px;
	left: 110px;
	background: #000;
	color: #c1c1c1;
	font-size: 14px;
	border-radius: 8px;
	display: flex;
	align-items: stretch;
	min-height: 72px;
}

.colour-picker-widget .handle,
.floating-toolbar .handle {
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.handle > svg{
	cursor: move;
}

.floating-toolbar .tools {
	display: flex;
	align-items: stretch;
}

.floating-toolbar .tools > * {
	border-left: 1px solid #464646;
}

.colour-picker {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	position: relative;
	cursor: pointer;
}

.colour-picker-label {
	padding: 12px 0 6px;
	user-select: none;
}

.colour-picker-value {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	border-radius: 2px;
	overflow: hidden;
}

.font-picker {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	cursor: pointer;
	position: relative;
}

.font-picker-label {
	padding: 12px 0 8px;
	user-select: none;
}

.font-picker-value {
	font-size: 16px;
	user-select: none;
}

.font-style {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	cursor: pointer;
	position: relative;
}

.font-style-label {
	padding: 12px 0 8px;
	user-select: none;
}

.font-align {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	cursor: pointer;
	position: relative;
}

.font-align-label {
	padding: 12px 0 6px;
	user-select: none;
}

.font-align-controls {
	border: white 1px solid;
    border-radius: 3px;
    background: white;
    display: flex;
}

.font-align-controls .font-align-button {
	color: #ffffff;
	background: #000000;
	padding: 5px 0px;
    margin: 1px 1px 1px;
}

.font-align-controls .font-align-button.selected {
	color: #000000;
	background: #ffffff;
}

.slider {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
}

.slider-label {
	padding: 12px 0 18px;
	user-select: none;
}

.slider-widget {
	width: 74px;
	position: relative;
	overflow: visible;
}


.rotation-input {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
}

.rotation-input-label {
	padding: 12px 0 6px;
	user-select: none;
}

.rotation-input-widget {
	display: flex;
	line-height: 16px;
	background: white;
    color: #000;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 18px;
}

.rotation-input-widget input{
	width: 60px;
    border: 0;
    background: #fff;
    color: #191919;
    font-size: 14px;
    vertical-align: baseline;
}

.rotation-input-widget span{
	font-size: 20px;
	vertical-align: bottom;
}

.font-size-label {
	padding: 12px 0 13px;
}

.font-size-input {
	text-align: right;
    border: none;
    background: none;
    color: #c1c1c1;
	padding: 1px;
    margin: 6px 0px 0px -25px;
    font-size: 12px;
    line-height: normal;
    width: 40px;
}

.font-size-input-wrapper {
	font-size:12px;
	user-select: none;
}

.font-size-input-wrapper input {
	user-select: text;
}

.font-size-input-wrapper input:focus,
.font-size-input-wrapper input:hover {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
}

input[type=range]::-ms-tooltip {
	display: none;
}

.slider-widget-handle {
	-webkit-appearance: none;
	position: absolute;
	width: 72px;
	height: 2px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
}

.slider-widget-handle::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background:#fff;
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius:6px;
}

.slider-widget-handle::-moz-range-thumb {
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius:6px;
}

input[type="range"]::-ms-thumb {
	width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius:6px;
    background: #fff;
    border: 0;
}

input[type="range"]::-ms-track {
    background: #fff;
    border: 0;
    height: 2px;
    color: transparent
}

input[type="range"]::-ms-fill-lower {
    background: transparent;
    border: 0;
}

input[type="range"]:focus::-ms-fill-lower {
    background: transparent;
    border: 0;
}

input[type="range"]::-ms-fill-upper {
    background: transparent;
    border: 0;
}

@supports (-ms-ime-align:auto){
	.slider-widget-handle{
		top: -5px;
		height:12px;
		background: transparent;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.slider-widget-handle{
		top: -20px;
		height:12px;
		box-sizing: content-box;
		background: transparent;
		border: 0;
		box-shadow: none;
	}
}

.canvas {
	position: relative;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.canvas,
.canvas * {
	user-select: none;
}

.canvas-drawing {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.canvas-selected-layer,
.canvas-selected-layers {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.canvas-selected-layer > svg ,
.canvas-selected-layers > svg {
	position: absolute;
}

.canvas-selected-toolbar {
	position: absolute;
	transform: translate(-50%, 0%);
    display: flex;
    background-color: #000;
    border-radius: 4px;
}

.canvas-selected-toolbar button.uifw-button.primary {
	background-color: #000;
	border-color: #313131;
	padding: 4px;
}

.canvas-selected-toolbar button.uifw-button.primary:hover {
	transform: none;
}

.canvas-selected-toolbar .canvas-selected-toolbar-rotation {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 5px;
}

.canvas-transform-layer button,
.canvas-rotate-layer button {
	position: relative;
}

.canvas-transform-layer button.toggled::after,
.canvas-rotate-layer button.toggled::after {
	content: '';
    border-bottom: 3px solid #1DD1A1;
    width: 50%;
    position: absolute;
    bottom: -1px;
    left: 25%;
    border-radius: 4px;
}

.toolbar-save-controls {
	position: absolute;
	bottom: -1px;
	left: 100px;
	background: #313131;
	padding: 20px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	text-align: center;
	width:300px;
	display: flex;
    min-height: 200px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.toolbar-save-controls-title {
	color: #c0c0c0;
	margin: 7px;
	font-size: 16px;
}

.toolbar-save-controls-description {
	font-size: 13px;
	padding: 0px 5px 10px;
	margin: 5px 0px 10px;
}

.toolbar-save-controls-top-button {
	width: 220px;
	font-size: 16px!important;
	height: 50px!important;
	line-height:50px!important;
}

.toolbar-save-controls-bottom-button {
	width: 220px;
	font-size: 14px;
	font-weight: normal;
	height: 50px;
	border-width: 1px;
	margin-top :10px;
	line-height: 34px;
}

.save-ui-download {
	margin-top:20px;
}

.save-ui-download-link img {
	border: 1px solid #8B8B8B;
	border-radius: 3px;
}

.toolbar-canvas-resize-controls {
	position: absolute;
	top: -1px;
	left: 100px;
	background: #313131;
	padding: 20px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	text-align: left;
}

.toolbar-canvas-resize-controls-title {
	color: #c0c0c0;
	margin: 0;
}

.toolbar-canvas-resize-controls-description {
	font-size: 13px;
}

.toolbar-canvas-resize-controls-inputs {
	display: flex;
	align-items: center;
}

.toolbar-canvas-resize-controls-seperator {
	color: #7d7d7d;
	width: 32px;
	text-align: center;
	font-size: 30px;
	font-family: monospace;
}

.toolbar-canvas-resize-controls-input {
	background: white;
	color: #8c8c8c;
	border-radius: 3px;
	padding: 10px;
}

.toolbar-canvas-resize-controls-input-title {
	font-size: 9px;
}

.toolbar-canvas-resize-controls-input-body {
	display: flex;
	line-height: 16px;
}

.toolbar-canvas-resize-controls-input-body input {
	width: 60px;
	border: 0;
	background: #fff;
	color: #191919;
	font-size: 14px;
	vertical-align: baseline;
}

.toolbar-canvas-resize-controls-input-body span {
	font-size: 11px;
	vertical-align: bottom;
}

.toolbar-settings,
.toolbar-save,
.toolbar-layer-order,
.toolbar-layers,
.toolbar-tutorial {
	color: #8B8B8B;
	text-align: center;
	height: 100px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-direction: column;
}

.toolbar-save {
	position: absolute;
	right: 0px;
	left: 0px;
	bottom: 0px;
}

.toolbar-settings.active,
.toolbar-layer-order.active,
.toolbar-layers.active,
.toolbar-save.active,
.toolbar-tutorial.active,
.font-picker.active {
	background: #313131;
}

.toolbar-settings > span,
.toolbar-layers > span, 
.toolbar-layer-order > span,
.toolbar-save > span,
.toolbar-tutorial > span {
	margin-top:10px;
	user-select: none;
	font-size: 13px;
}

.layer-order-controls,
.toolbar-layer-controls {
	position: absolute;
	top: -1px;
	left: 100px;
	width: 110px;
	background: #313131;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;	
}

.layer-order-controls {
	padding: 10px;
	width: auto;
	max-height: 60vh;
	overflow: auto;
}

.toolbar-layer-controls > div {
	height: 112px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.layer-control-icon {
	width: 70px;
	height: 70px;
	border-radius: 100%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.layer-control-label {
	padding-top: 6px;
	user-select: none;
	font-size:14px;
}

.colour-picker-widget-screen {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.insert-icon-options,
.insert-image-options {
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 100px);
	height: 100%;
	background: #313131;
	box-sizing: border-box;
	margin-left:100px;
	padding: 10px;
	z-index: 2;
}

.insert-icon-options-before,
.insert-icon-options-after,
.insert-image-options-before,
.insert-image-options-after,
.insert-icon-options-error,
.insert-image-options-error {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: start;
	flex-direction: column;
	height: 100%;
	width: 100%;
	text-align: center;
}

.insert-icon-options-after-wrapper,
.insert-image-options-after-wrapper { 
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	flex-basis: 50%;
    max-width: 600px;
}

.insert-image-options-content,
.insert-icon-options-content {
	width: 99%;
    height: 92%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
    margin: 10px;
    position: relative;
}

.insert-image-options-after .insert-image-options-content,
.insert-icon-options-after .insert-icon-options-content {
	background: #fff;
}

.insert-icon-options-topbar,
.insert-image-options-topbar {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.insert-image-options-back-button,
.insert-icon-options-back-button,
.insert-image-options-upload-button {
	height: 50px;
	margin: 10px;
	border-width: 1px;
	padding: 0px 20px;
	font-size: 16px;
    font-weight: normal;
    line-height: 50px;
}

.insert-image-options-separator {
	color: #c0c0c0;
	margin-top: 10px;
}

.insert-image-options-before .insert-image-options-content > div,
.insert-icon-options-before .insert-icon-options-content > div {
	padding: 20px;
	width: 40%;
	min-width: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.upload-image, .insert-icon-options-before .icon-search-wrapper {
	margin-bottom: 140px;
}


.upload-image .uifw-file-upload-field {
	display: flex;
}

.uifw-stroke-button.inverted {
    color: #EAEAEA;
    border-color: #EAEAEA;
}

.icon-title,
.unsplash-title, .unsplash-title a {
	font-size: 22px;
	color: #EAEAEA;
	text-decoration: none!important;
}

.icon-input,
.icon-search,
.unsplash-input, 
.unsplash-search {
	position: relative;
	text-align: center;
	font-size: 25px;
	width: 100%;
	border-radius:4px;
}

.icon-search,
.unsplash-search {
	padding: 20px;
	height: 100%;
	max-height: 65px;
	border: 0;
}

.icon-search-title,
.unsplash-search-title {
	position: absolute;
    top: 10px;
    left: 15px;
    z-index: 2;
    font-size: 10px;
    color: #c0c0c0;
}

.icon-search-icon,
.unsplash-search-icon {
	font-size: 26px;
    color: #c0c0c0;
    height: 26px;
    width: 26px;
    position: absolute;
    z-index: 2;
    font: normal normal normal 26px/1 FontAwesome;
    top: 12px;
    right: 10px;
}

.insert-icon-options-after .icon-search,
.insert-image-options-after .unsplash-search {
	font-size: 16px;
    text-align: left;
    padding: 25px 50px 15px 15px;
	max-height: 50px;
}


.insert-image-options-after .unsplash-input {
	width: 58%;
}

.insert-image-options-after .insert-image-options-upload-button {
	width:50%%;
}

.icon-logo-dark,
.unsplash-logo-dark {
	position: absolute;
	top:25%;
	right: 20px;
	z-index: 4;
}

.icon-logo-light,
.unsplash-logo-light {
	padding: 0 15px;
}

.unsplash-gallery {
	columns: 4;
    padding: 0px 20px;
    border-radius: 4px;
    background-color: #fff;
}

.unsplash-wrapper {
	overflow: auto;
	width:100%;
}

.icon-gallery-title,
.unsplash-gallery-title {
	margin: 20px 0px 0px;
    font-size: 32px;
    font-weight:normal;
}

.icon-gallery-count,
.unsplash-gallery-count {
    margin: 5px auto 10px;
}

.unsplash-gallery-item {
	position: relative;
    text-align: center;
    transform: translateZ(0);
}

.unsplash-gallery-image {
	margin: 5px auto;
	width: 100%;
	cursor: pointer;
}

.unsplash-gallery-item-link {
	position: absolute;
    bottom: 14px;
    width: auto;
    text-align: center;
    background: rgba(0,0,00,.5);
    padding: 5px 7px;
    color: white;
    display: block;
    opacity: 0;
    text-decoration: none!important;
    font-size: 11px;
    font-weight: 300;
    border-radius: 3px;
    left: 5px;
}

.unsplash-gallery-item:hover .unsplash-gallery-item-link{
	opacity: 1;
}

.unsplash-button {
	font-size: 18px;
    padding: 20px;
    margin: 40px;
    height: 60px;
    color: #3C77FF;
    font-weight: normal;
    border-color: #3C77FF;
    border-radius: 7px;
    border-width: 1px;
}

.unsplash-button:hover{
	color:#ffffff;
	background: #3C77FF;
}

.unsplash-page-divider {        
    padding: 0 20px;        
    text-align: center;
    margin: 10px;
}

.unsplash-page-divider:before,
.unsplash-page-divider:after{
    content: '';    
    width: 45%;    
    height: 1px;
    margin: 0 10px;
    background: #ccc;  
    display: inline-block;
    vertical-align: middle;   
}

.unsplash-error-title, .unsplash-error-message,
.icon-error-title, .icon-error-message {
	color: #EAEAEA;
}

.font-family-options-controls{
	position: absolute;
	top: 72px;
	left: -1px;
	background: #313131;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.font-family-options-wrapper{
	overflow: hidden;
	margin: 10px;
	border-radius: 4px;
}

.font-family-options {
	overflow-y: scroll;
	max-height: 220px;
	height: auto;
	background-color: #fff;
}

.font-family-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	color: #000;
	height: 40px;
	font-size: 16px;
	margin: 0px 10px;
	text-decoration: none!important;
	border-bottom: 1px solid #c0c0c0;
	white-space: nowrap;
}

.font-family-option svg {
	color: #3A76FF;
}

.font-family-option:last-child {
	border-bottom:none;
}

.font-family-options-input {
	background: white;
	color: #8c8c8c;
	border-radius: 3px;
	padding: 10px;
	margin: 10px;
}

.font-family-options-input-title {
	font-size: 10px;
}

.font-family-options-input-body {
	display: flex;
	line-height: 16px;
}

.font-family-options-input-body input {
	border: 0;
	background: #fff;
	color: #191919;
	font-size: 14px;
	vertical-align: baseline;
}


.font-style-options-controls{
	position: absolute;
	top: 72px;
	left: -1px;
	background: #313131;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.font-style-options-wrapper{
	overflow: hidden;
	margin: 10px;
	border-radius: 4px;
}

.font-style-options {
	overflow-y: auto;
	max-height: 220px;
	height: auto;
	background-color: #fff;
}

.font-style-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	color: #000;
	height: 40px;
	font-size: 16px;
	margin: 0px 10px;
	text-decoration: none!important;
	border-bottom: 1px solid #c0c0c0;
	white-space: nowrap;
	min-width: 150px;
}

.font-style-option svg {
	color: #3A76FF;
}

.font-style-option:last-child {
	border-bottom:none;
}

.layer-order-control {
	box-sizing: border-box;
	width: 240px;
	border: 1px solid #464646;
	border-radius: 5px;
	padding: 9px;
	display: flex;
	align-items: center;
	background: #181818;
	color: #fff;
	font-size: 14px;
}

.layer-order-control + .layer-order-control {
	margin-top: 5px;
}

.layer-order-control.drag-target {
	visibility: hidden;
}

.layer-order-control.drag-helper{
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 2;
	opacity: 0.4;
}

.layer-order-control .icon {
	display: block;
	width: 27px;
	height: 27px;
	background: #fff;
}

.layer-order-control .label {
	display: block;
	padding-left: 9px;
}

.transform-handle.transform-ne,
.transform-handle.transform-n,
.transform-handle.transform-nw,
.transform-handle.transform-e,
.transform-handle.transform-w,
.transform-handle.transform-se,
.transform-handle.transform-s,
.transform-handle.transform-sw {
	cursor: grab;
}


.text-layer-editor {
	position: absolute;
	box-sizing: border-box;
	border: 1px dashed #000;
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	color: #000;
	resize: none;
	overflow: hidden;
	line-height: 1;
	padding: 2px;
}

.colour-picker-widget-screen {
	background: rgba(0, 0, 0, 0);
}

.colour-picker-widget {
	left: 110px;
	top: 90px;
}

.colour-picker-widget .picker {
	border-left: 1px solid #464646;
	padding: 10px;
}

.colour-picker-widget .pallet {
	padding: 5px;
	border-left: 1px solid #464646;
	display: flex;
	flex-wrap: wrap;
	height: 170px;
	box-sizing: content-box;
	align-content: start;
	width:80px;
}

.pallet-value-none,
.pallet-value-colour {
	width: 30px;
	height: 30px;
	margin: 5px;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	cursor: pointer;
}

.hex-input {
    width: 70px;
    position: absolute;
    border: none;
    border-radius: 1px;
    padding: 5px;
    bottom: 15px;
    right: 10px;
    background-color: #353535;
	color: #797979;
}

.border-colour-picker-input-2,
.colour-picker-input-2 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.icon-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
	overflow: auto;
	width:100%;
}

.icon-load-more{
	font-size: 18px;
    padding: 20px;
    margin: 40px;
    height: 60px;
    color: #3C77FF;
    font-weight: normal;
    border-color: #3C77FF;
    border-radius: 7px;
    border-width: 1px;
}

.icon-list-item {
	display: inline-block;
	width: 10%;
	margin: 5px;
	border-radius: 2px;
	padding: 5px;
	border: 1px solid transparent;
	cursor: pointer;
	zoom: 1;
	vertical-align: middle;
}

.icon-list-item:hover {
	background: #ECF0F3;
    border-color: #BEC3C7;
}

.icon-list-item > svg {
	width: 100%;
	height: 100%;
}

.icon-list-item-link {
    left: 15px;
    position: absolute;
    top: 15px;
    width: auto;
    text-align: center;
    padding: 5px 7px;
    color: #000;
    display: block;
    opacity: 0;
    text-decoration: none!important;
    font-size: 11px;
    font-weight: 300;
    border-radius: 3px;
    left: 5px;
    transition: all 0.1s ease;
    pointer-events: none;
}

.icon-list-item:hover .icon-list-item-link{
	opacity: 1;
}

.drag-select-area {
	position: absolute;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid #666;
	border-radius: 2px;
}

.horizontal-scrollbar {
	position: absolute;
	right: 0;
	bottom : 0;
	overflow: auto;
}

.vertical-scrollbar {
	position: absolute;
	bottom : 0;
	right: 0;
	overflow: auto;
}

.horizontal-scrollbar > div,
.vertical-scrollbar > div {
	width: 1px;
	height: 1px;
}

.uifw-stroke-button i.uifw-icon {
	vertical-align: baseline;
}

::-ms-clear {
    display: none;
}

.scrollable {
	cursor: pointer;
}

.zoom-toolbar {
	position: absolute;
	left: 120px;
	bottom: 20px;
	border-radius:4px;
	background: #000;
	color: #fff;
	display: flex;
	user-select: none;
}

.zoom-toolbar-btn-zoom-out,
.zoom-toolbar-btn-zoom-to,
.zoom-toolbar-btn-zoom-in {
	padding: 9px 12px;
	border-radius: 4px;
	border-width: 1px;
	border-style: solid;
	border-color: #272727 #323232 #323232 #272727;
	cursor: pointer;
}

.zoom-toolbar-btn-zoom-out,
.zoom-toolbar-btn-zoom-in {
	padding: 2px;
}

.zoom-toolbar-btn-zoom-out svg,
.zoom-toolbar-btn-zoom-in svg {
	display: block;
}

.zoom-toolbar-btn-zoom-to {
	flex: 1;
	white-space: nowrap;
}

.zoom-toolbar-btn-zoom-to svg {
	vertical-align: top;
}

.zoom-toolbar-btn-zoom-in {
	padding: 2px;
}

.zoom-to-options {
	position: absolute;
	left: 157px;
	bottom: 20px;
	padding: 3px;
	border: 1px solid #242626;
	border-radius: 6px;
	box-shadow: 0 0 2px #7e8282;
	background: linear-gradient(#717475, #414143);
	color: #fff;
	user-select: none;
	z-index: 2;
}

.zoom-to-option {
	position: relative;
	padding: 0 18px;
	margin: 4px 0;
	cursor: pointer;
}

.zoom-to-option:hover {
	opacity: 0.8;
}

.zoom-to-option svg {
	display: none;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0%, -50%);
}

.zoom-to-option.active svg {
	display: inline;
}

.zoom-to-option-separator {
	padding: 0 18px;
	margin: 4px 0;
	color: #8b8c8d;
}

@media screen and (min-device-width: 320px) and (max-device-width: 480px),
screen and (min-device-height: 320px) and (max-device-height: 480px),
screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	.slider-widget-handle::-webkit-slider-thumb {
		width: 30px;
		height: 30px;
		border-radius: 30px;
		border: none;
		background: #2d2d2d url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><circle  cx="6" cy="6" r="6" fill="#ffffff" /></svg>') center center no-repeat;

	}
}

@media screen and (min-device-width: 320px) and (max-device-width: 480px),
screen and (min-device-height: 320px) and (max-device-height: 480px),
screen and (min-device-width : 768px) and (max-device-width : 1024px){
	.horizontal-scrollbar,
	.vertical-scrollbar {
		background: #fff;
	}

	.horizontal-scrollbar::-webkit-scrollbar ,
	.vertical-scrollbar::-webkit-scrollbar {
		-webkit-appearance: none;
		width: 10px;
		height: 10px;
	}

	.horizontal-scrollbar::-webkit-scrollbar-thumb ,
	.vertical-scrollbar::-webkit-scrollbar-thumb {
		border-radius: 4px;
		background-color: rgba(0,0,0,.5);
		-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
	}
}
