/*
 *	This code was created for Printr B.V. It is open source under the formide-client package.
 *	Copyright (c) 2017, All rights reserved, http://printr.nl
 */

// Make sure the charset is set appropriately
@charset "UTF-8";

* {
   margin: 0;
   padding: 0;
}

html, :root {
	font: $global-font-size "Open Sans", sans-serif;

	color: color(gray, x-dark);

	min-height: 100%;
}

abbr[title] {
  	text-decoration: none;
}

textarea { resize:vertical ; }

.ng-leave,
.ng-show-remove,
.ng-hide-add {
    animation: none;
    display: none;
}

.ng-enter,
.ng-show-add,
.ng-hide-remove {
    animation: none;
}


body {
	position: relative;
	background-color: #F6F6F7;
	transition: filter .3s ease-in-out;
	-moz-osx-font-smoothing: grayscale !important;
    -webkit-font-smoothing: antialiased !important;

	.wrap {
		min-height: 100vh;
	}
}

.sidebar-handle {
	position: fixed;
	right: 1rem;
	top: 1rem;
	z-index: 9999;
	width: 24px;
	height: 24px;
	background-color: rgba(255,255,255,.8);
	border-radius: 99999px;
	padding: 4px;
	text-align: center;
}

ng-viewport,
[ng-viewport] {
  display: block;

  &.ng-enter {
    animation: fadeIn .5s;
  }

  &.ng-leave {
    display: none;
  }
}

.alert-list {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
