	.modal {
  display: none; 
  position: fixed;
  z-index: 100 !important; 
  padding-top: 100px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  left: 10%;
  padding: 0;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@media only screen and (max-width: 992px) {
		  .modal-content {
			left: 1%;
		 }
		}

@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.close, .closex {
  color: white;
  float: right;
  font-size: 45px;
  font-weight: bold;
}

.close:hover,
.close:focus,
.closex:hover,
.closex:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #000f1f;
  color: white;
}

.modal-body {padding: 25px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}	
.lebl {
	padding-left: 15px;
	font-size: 1.3em;
}