/*$notie-color-success: #57BF57 !default;
$notie-color-warning: #D6A14D !default;
$notie-color-error: #E1715B !default;
$notie-color-info: #4D82D6 !default;
$notie-color-neutral: #A0A0A0 !default;
$notie-color-text: #FFFFFF !default;
$notie-color-background: #FFFFFF !default;

$notie-font-size-small: 18px !default;
$notie-font-size-big: 24px !default;
$notie-breakpoint: '(max-width: 600px)' !default;
$notie-content-width: 900px !default;
$notie-transition: all 0.3s ease !default;

$notie-date-arrow-up: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDI4bDEwLTEwIDEwIDEweiIgZmlsbD0id2hpdGUiLz48cGF0aCBkPSJNMCAwaDQ4djQ4aC00OHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=' !default;
$notie-date-arrow-down: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIwbDEwIDEwIDEwLTEweiIgZmlsbD0id2hpdGUiLz48cGF0aCBkPSJNMCAwaDQ4djQ4aC00OHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=' !default;

$notie-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);*/
@mixin notie-box-shadow(0px 0px 10px 0px rgba(0, 0, 0, 0.5)) {
	-o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.notie-transition {
	-moz-transition: all 0.3s ease !default;
	-webkit-transition: all 0.3s ease !default;
  transition: all 0.3s ease !default;
}

.notie-background-success {
	background-color: #57BF57;
}
.notie-background-warning {
	background-color: #D6A14D;
}
.notie-background-error {
	background-color: #E1715B;
}
.notie-background-info {
	background-color: #4D82D6;
}

#notie-alert-outer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999999;
	height: auto;
	width: 100%;
	display: none;
	text-align: center;
	cursor: pointer;
	font-size: 18px !important;
	/*@include notie-box-shadow(0px 0px 10px 0px rgba(0, 0, 0, 0.5));
	@media #{'(max-width: 600px)'} {
		font-size: 18px !important;
	}*/
}
#notie-alert-inner {
	padding: 20px;
  display: table-cell;
}
#notie-alert-content {
	max-width: 900px !important;
	margin: 0 auto;
}
#notie-alert-text {
	color: #FFFFFF;
}

#notie-confirm-outer {
	@extend #notie-alert-outer;
	cursor: default;
}
#notie-confirm-inner {
	box-sizing: border-box;
  width: 100%;
  padding: 20px;
  display: block;
  cursor: default;
	background-color: #4D82D6;
}
#notie-confirm-text {
	color: #FFFFFF;
}
#notie-confirm-text-yes {
	color: #FFFFFF;
}
#notie-confirm-text-no {
	color: #FFFFFF;
}
#notie-confirm-yes {
  float: left;
  height: 50px;
  line-height: 50px;
  width: 50%;
  cursor: pointer;
  background-color: #57BF57;
}
#notie-confirm-no {
	@extend #notie-confirm-yes;
	float: right;
  background-color: #E1715B;
}
#notie-confirm-background {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999980;
	height: 100%;
	width: 100%;
	display: none;
	background-color: #FFFFFF;
	opacity: 0;
}


/* INPUT */

#notie-input-outer {
	@extend #notie-alert-outer;
	cursor: default;
}
#notie-input-inner {
	@extend #notie-confirm-inner;
}
#notie-input-field {
	display: block;
	box-sizing: border-box;
	height: 55px;
	width: 100%;
	text-align: center;
	outline: 0;
	border: 0;
	background-color: #FFFFFF;
	font-family: inherit;
  font-size:18px !important;
	@media #{'(max-width: 600px)'} {
		font-size: 18px !important;
	}
}
#notie-input-background {
	@extend #notie-confirm-background;
}
#notie-input-yes {
	@extend #notie-confirm-yes;
}
#notie-input-no {
	@extend #notie-confirm-no;
}
#notie-input-text {
	color: #FFFFFF;
}
#notie-input-text-yes {
	color: #FFFFFF;
}
#notie-input-text-no {
	color: #FFFFFF;
}

#notie-select-outer {
	@extend #notie-alert-outer;
	top: auto;
	bottom: 0;
	cursor: default;
}
#notie-select-inner {
	@extend #notie-confirm-inner;
}
#notie-select-background {
	@extend #notie-confirm-background;
}
#notie-select-text {
	color: #FFFFFF;
}
#notie-select-choices {
	background-color: #57BF57;
}
.notie-select-choice {
	@extend #notie-select-choices;
  height: 50px;
  line-height: 50px;
  color: #FFFFFF;
  cursor: pointer;
}
#notie-select-cancel {
	height: 60px;
  line-height: 60px;
	color: #FFFFFF;
	cursor: pointer;
	background-color: #A0A0A0;
}

#notie-date-outer {
  @extend #notie-alert-outer;
  background-color: #4D82D6;
  color: #FFFFFF;
  cursor: default;
}
#notie-date-inner {
  margin: 0 auto;
  max-width: 900px !important;
  padding-left: 10px;
  padding-right: 10px;
}
#notie-date-background {
	@extend #notie-confirm-background;
}
.notie-date-up {
  height: 50px;
  float: left;
  width: 33.333333%;
  cursor: pointer;
}
.notie-date-arrow {
  height: 40px;
  width: 40px;
  background-size: 40px 40px;
  margin: 0 auto;
  margin-top: 5px;
}
.notie-date-arrow-up {
  @extend .notie-date-arrow;
  background-image: url(#{'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDI4bDEwLTEwIDEwIDEweiIgZmlsbD0id2hpdGUiLz48cGF0aCBkPSJNMCAwaDQ4djQ4aC00OHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4='});
}
.notie-date-arrow-down {
  @extend .notie-date-arrow;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIwbDEwIDEwIDEwLTEweiIgZmlsbD0id2hpdGUiLz48cGF0aCBkPSJNMCAwaDQ4djQ4aC00OHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=');
}
.notie-date-down {
  @extend .notie-date-up;
}
.notie-date-text {
  height: 50px;
  line-height: 50px;
  float: left;
  width: 33.333333%;
}

#notie-date-yes {
  float: left;
  width: 50%;
  height: 50px;
  line-height: 50px;
  color: #FFFFFF;
  background-color: #57BF57;
  cursor: pointer;
}
#notie-date-no {
  @extend #notie-date-yes;
  background-color: #E1715B;
}
