/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  https://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width:94%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.remodal ul{
	padding:15px;
	margin:0;
	width:100%;
}
	.remodal li{
		font-size:90%;
		width:46%;
		margin: 0 1%;
		padding-bottom:0;
		display:inline-block;
		list-style:none;
		text-align:center;
		font-weight: bold;
	}

	.remodal ul a{
		display:block;
		padding: 20px 0;
		border-top:1px solid #d7d7d7;
		font-size: 110%;
		letter-spacing:0;
		font-weight:400;
	}
	
		/*.remodal ul a:before{
			  font-family:  "Font Awesome 5 Free";
			  content: "\f105";
			margin-left:0.7em;
			padding-right:0.5em;
			font-weight:900;
			}*/
	
	.remodal li a:hover{
		background: #fceed4;
	}
	
.remodal_icon{
	padding-top:50px;
	text-align:left;
}

	.remodal_icon img{
		width:130px;
	}

	.remodal_icon span{
		display: block;
		float:right;
		font-size:250%;
		line-height:82px;
	}

	.remodal_icon span a:nth-of-type(1){color:#495a7e;}
	.remodal_icon span a:nth-of-type(2){color:#5fa1d4;margin-left:5px;}

	.remodal_icon span a:hover{color:#138d89;}