@charset "UTF-8";
/*	jAlert version 4.5.1 - Made with love by Versatility Werks (http://flwebsites.biz) - MIT Licensed */

html,body {
	min-height: 100%;
}

.ja_wrap {
	padding: 0px;
	margin: 0px;
	text-align: center;
	position: fixed;
	z-index: 99999;
	overflow-y: auto;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.ja_wrap.ja_wrap_white {
	background: rgba(255,255,255,.75);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#BFFFFFFF', EndColorStr='#BFFFFFFF')";
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#BFFFFFFF', EndColorStr='#BFFFFFFF');
	zoom: 1!important;
}

.ja_wrap.ja_wrap_black {
	background: rgba(0,0,0,.75);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#BF000000', EndColorStr='#BF000000')";
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#BF000000', EndColorStr='#BF000000');
	zoom: 1!important;
}

body.ja_blur > *:not(.ja_wrap) {
	-webkit-filter: blur(5px) grayscale(.7);
	filter: blur(5px) grayscale(.7);
}

/*		jAlert	*/
.jAlert	{
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	text-align: left;
	word-wrap: break-word;
	background: white;
	border-radius: 5px;
	max-width: 96%;
	margin: 2% auto;
	margin-top: 100px;
	margin-bottom: 100px;
	display: inline-block;
	-webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
}

/*	INSIDE WRAPPER (RELATIVE IN CASE THERE IS POSITION: ABSOLUTE CONTENT WITHIN	*/
.jAlert > div {
	position: relative;
}

.jAlert.ja_setheight > div {
	height: 100%;
}

/* 	SIZES		*/
.ja_xsm{ width: 250px; }
.ja_sm{ width: 350px; }
.ja_md{ width: 550px; }
.ja_lg{ width: 850px; }
.ja_xlg{ width: 1200px; }
.ja_full{ width: 100%; }
.ja_auto{ width: auto; }

/*		CLOSE BTN	*/
.ja_close{
	position: absolute;
	top: 3px;
	right: 3px;
	border-radius: 5px;
	background: #F3F3F3;
	color: #555555;
	padding: 5px 10px 5px 10px;
	cursor: pointer;
	font-weight: bold;
	z-index: 99999;
}

.ja_close_round, .ja_close_round_white {
	border-radius: 50%;
	background: #e0e0e0;
	color: #232323;
	padding: 5px 7px;
	right: 10px;
	top: 6px;
	border: 0px;
	line-height: 13px;
	font-size: 18px;
}

.ja_default .ja_close_round, .ja_default .ja_close_round_white {
	color: #FFFFFF;
	background: rgba(0, 0, 0, 0.3) none repeat scroll 0% 0%;
}

.ja_close_alt {
	border-radius: 50%;
	background: #D51C1C;
	color: rgb(255, 255, 255);
	top: -16px;
	right: -18px;
	border: 1px solid rgb(55, 55, 55);
	padding: 3px 8px 1px 7px;
}

.ja_close:hover {
	background: #d4d4d4;
}

.ja_close_alt:hover{
	background: #DF2020;
}

.ja_close_round:hover, .ja_close_round:active {
	color: #FFFFFF;
	background: rgba(0,0,0,.5);
}

.ja_close_round_white:hover, .ja_close_round_white:active {
	background: white;
}

/*		TITLE		*/
.ja_noTitle .ja_body {
	border-radius: 5px;
}

.ja_noTitle .ja_close_round {
	right: -11px;
	top: -11px;
	background: rgba(0, 0, 0, 0.7) none repeat scroll 0% 0%;
}

.ja_noTitle .ja_close_round:hover {
	background: black;
}

.ja_noTitle .ja_close_round_white {
	background: #e0e0e0;
	color: #232323;
}

.ja_noTitle .ja_close_round_white:hover  {
	 background: white;
 }

.ja_title {
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	text-align:center;
}

.ja_title > div {
	color: #505050;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 20px 10px 20px;
}

/*		THEMES	*/
.ja_default { background: #E0E0E0; }
.ja_green { background: #326B29; }
.ja_dark_green { background: #006D00; }
.ja_yellow { background: #FFFF54; }
.ja_gray { background: #616161; }
.ja_dark_gray { background: #424242; }
.ja_brown { background: #945117; }
.ja_black {	background: #232323; }
.ja_blue { background: #006090; }
.ja_dark_blue { background: #024986; }
.ja_red { background: #971821; }
.ja_dark_red { background: #A20000; }
.ja_pink { background: #5F2091; }

.ja_default > div {
	color: #505050 !important;
}

.ja_yellow .ja_title > div {
	color: #636300 !important;
}

.ja_green .ja_title > div,
.ja_dark_green .ja_title > div,
.ja_gray .ja_title > div,
.ja_brown .ja_title > div,
.ja_dark_gray .ja_title > div,
.ja_black .ja_title > div,
.ja_blue .ja_title > div,
.ja_dark_blue .ja_title > div,
.ja_red .ja_title > div,
.ja_pink .ja_title > div,
.ja_dark_red .ja_title > div {
	color: white !important;
}

/*	 CONTENT WRAP	*/
.ja_body {
	background: white;
	color: #616161;
	padding: 20px;
	-moz-user-select: text;
	-khtml-user-select: text;
	-webkit-user-select: text;
	-o-user-select: text;
	user-select: text;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	font-size:16px;
}

.ja_setheight .ja_body {
	height: 100%;
	height: calc(100% - 40px);
}

/*		CONTENT	*/
.ja_media_wrap {
	position: relative;
	text-align: center;
}

.ja_iframe {
	width: 100%;
	border: 0px;
	display: none;
	border: 0px;
}

.ja_video {
	width: 100%;
	height: 0px;
	padding-bottom: 65%;
	position: relative;
	display: none;
}

.ja_video iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
}

.ja_img {
	max-width: 100%;
	display: inline-block;
	display: none;
}

/*		Full Screen		*/
.ja_fullscreen {
	width: 100%;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	min-width: 100%;
	min-height: 100%;
	border-radius: 0px;
	margin-top: 0px !important;
}

.ja_fullscreen .ja_title {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.ja_fullscreen .ja_body {
	height: 100%;
}

.ja_fullscreen .ja_close_round {
	right: 5px;
	top: 5px;
}

/*  	BTNS 	*/
.ja_btn_wrap {
	text-align: center;
	position: relative;
	display: block;
	margin-top: 10px;
	margin-bottom: -10px;
}

.ja_btn_wrap.optBack {
  background: #f3f3f3;
  margin-top: 25px;
  margin: 25px -20px -20px -20px;
  padding: 5px 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ja_btn, .ja_btn:link, .ja_btn:visited, .ja_btn:active {
  margin-top: 3px;
  padding: 3px 10px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
}

@media (max-width: 450px) {
	.ja_btn {
		width: 90%;
	}
}

.ja_btn:hover {
	text-decoration: none;
}

.ja_btn_default, .ja_btn_default:link, .ja_btn_default:visited {
  color: #575757;
  background: #f3f3f3;
}

.ja_btn_default:hover {
	background: #FBFBFB;
}

.ja_btn_default:active {
 	background: #EEE;
}

.ja_btn_green, .ja_btn_green:link, .ja_btn_green:visited {
	background: #00A000;
	color: white;
}

.ja_btn_green:hover {
	background: #2EB71F;
}

.ja_btn_green:active {
	background: #259818;
}

.ja_btn_red, .ja_btn_red:link, .ja_btn_red:visited {
	background: #B90808;
	color: white;
}

.ja_btn_red:hover {
	background: #D62828;
}

.ja_btn_red:active {
	background: #9F2020;
}

.ja_btn_brown, .ja_btn_brown:link, .ja_btn_brown:visited {
	background: #945117;
	color: white;
}

.ja_btn_brown:hover {
	background: #D0734E;
}

.ja_btn_brown:active {
	background: #444444;
}

.ja_btn_gray, .ja_btn_gray:link, .ja_btn_gray:visited {
	background: #616161;
	color: white;
}

.ja_btn_gray:hover {
	background: #494949;
}

.ja_btn_gray:active {
	background: #444444;
}

.ja_btn_blue, .ja_btn_blue:link, .ja_btn_blue:visited {
	background: #006090;
	color: white;
	font-weight: bold;
}

.ja_btn_blue:hover {
	background: #0896E9;
}

.ja_btn_blue:active {
	background: #056FAD;
}

.ja_btn_pink, .ja_btn_pink:link, .ja_btn_pink:visited {
	background: #5F2091;
	color: white;
	font-weight: bold;
}

.ja_btn_pink:hover {
	background: #502D6D;
}

.ja_btn_pink:active {
	background: #056FAD;
}

/*			LOADER		*/
@-moz-keyframes ja-loader {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes ja-loader {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

@keyframes ja-loader {
  0% {
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

/* :not(:required) hides this rule from IE9 and below */
.ja_loader:not(:required) {
  -moz-animation: ja-loader 1500ms infinite linear;
  -webkit-animation: ja-loader 1500ms infinite linear;
  animation: ja-loader 1500ms infinite linear;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  -moz-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  -webkit-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  display: inline-block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin: 1.5em;
  overflow: hidden;
  text-indent: 100%;
}

/* No padding option */
.ja_no_pad .ja_body {
	padding: 0px;
}

.ja_no_pad .ja_loader {
	margin: 40px 0px;
}
