.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
  outline: none;
}
.modal-dialog {
  margin: 0;
  height: 100%;
  width: 100%;
}
.modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  height: 100%;
  padding: 10%;
  max-width: 80%;
  text-align: center;
}
.modal-content h2 {
  margin-bottom: 15px;
  font-size: 2em;
}
.modal-content p {
  margin-bottom: 30px;
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 19px;
}
.modal-content p.item-intro {
  margin: 20px 0 30px;
  font-family: Helvetica, Arial, Sans-serif;
  font-style: italic;
  font-size: 19px;
}
.modal-content ul.list-inline {
  margin-bottom: 30px;
  margin-top: 0;
}
.modal-content img {
  margin-bottom: 30px;
}
.close-modal {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.close-modal:hover {
  opacity: 0.3;
}
.close-modal .lr {
  height: 40px;
  width: 1px;
  margin-left: 25px;
  background-color: #222222;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051;
}
.close-modal .lr .rl {
  height: 40px;
  width: 1px;
  background-color: #222222;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052;
}
.modal-backdrop {
  opacity: 0;
  display: none;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 900px)
{
  .modal-dialog {
  margin: 0;
  height: 100%;
  width: 100%;
  }
  .modal-content {
    border-radius: 0;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    height: 100%;
    padding: 10%;
    max-width: 90%;
    text-align: center;
  }
  .modal-content h2 
  {
    margin-bottom: 15px;
    font-size: 1.5em;
  }
  .modal-content p 
  {
    margin-bottom: 30px;
    font-family: Helvetica, Arial, Sans-serif;
    font-size: 14px;
  }
  .img-responsive 
  {
      width: 100%;
      height: 100%;
  }
}


