@charset "UTF-8";
/*@import url(https://fonts.googleapis.com/css?family=Lato:300);
body{
  font-family:Lato;
  background-color: #333;
}
.container {
  color: #ccc;
  text-align: center;
  padding-bottom:50px;
}
.content {
  margin: 0 auto;
}
.content h1 {
  font-size:35px;
  margin-bottom:40px;
}
.sample-img {
  border:5px solid rgba(255,255,255,0.2);
}*/


/* ****************
 * Open modal button (trigger)
 * *************** */
.md-btn-area {
  margin-bottom:50px;
  z-index: 9998;
}
/*.md-btn {
  border: 1px solid #7a7a7a;
  padding: 10px;
  margin: 5px;
  border-radius: 3px;
  cursor: pointer;
  background-color: #666;
  text-shadow: 0 -1px 0 #000;
  -webkit-box-shadow: 0 0 0 1px #222;
  box-shadow: 0 0 0 1px #222;
}*/
.md-btn:hover {
/*  background-color: #6e6e6e; */
  cursor: pointer;
}

/* ****************
 * Modal window
 * *************** */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /*overflow-y: auto;*/
  padding: 2.5%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.2);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  border-radius: 4px;
  background-color: rgba(0,0,0,.8);
  text-shadow:0 1px 0 #333;
  color: #fff;
  text-align: center;
  z-index: 9999;
  overflow: scroll;
}
.modal div {
  text-align: center;
  padding: 24px 0 0;
}

.modal img {
 width: auto!important;
 max-width: 100%;
 max-height: 50vh;
}
.modal h3 {
  letter-spacing: 2px;
}
.modal p {
  margin-bottom: 0;
  text-align: left;
}

/* Second modal window */
.modal.two {
  color:lightblue;
}

/* Close button */
.modal .close {
  position: absolute;
  /*top: 20px;**/
	bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,.0);
  cursor:pointer;
}
.modal .close:before,
.modal .close:after{
  position:absolute;
  top:4px;
  border:1px solid #fff;
  height:30px;
  content:"";
}
.modal .close:before {
  left:19px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal .close:after {
  right:19px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal .close span {
  display:none;
}

/* ****************
 * Background filter (blur)
 * *************** */
.bg-blur {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: url(#blur);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='10');
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}
