#lightbox {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    background: rgba(0,0,0,.9);;
    text-align:center;
    overflow: auto;
}

#lb-container{

  background-color:#ECECEC;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  padding: 0px;
  max-height: 900px;

}

.logo{
  width: 50px;
  float: left;
  margin-top: 5px;
  margin-left: 10px;
  border-radius: 100%;
  background-color: #fff;
  border: 3px solid #fff;
}
.pg-header{
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #222;
  color: #E2E2E2;
  font-family: 'Anton';
  letter-spacing: 3px;
  min-height: 60px;
  padding: 10px;
}

.lb-head-text{
  font-family: arial;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 1px;
}

.lb-photo{
  width:50%;


}
.bio{
  margin: 0px;
}
#char-container{
  height: 500px;
  padding:10px;
  margin-bottom: 5px;
}

.description{
  color: #000;
  float: left;
  padding: 2px 10px 2px 10px;
  width: 50%;
  text-align: left;
  margin: 0px;

}
p{
  margin-top: 5px;
  margin-bottom: 5px;
}
 .img-thumb{
  width: 100%;
  display: block;
  border: 10px solid #222;
  float:left;
  border-top: 0px;
}
.code-name{
  margin: 0;
  font-size: x-large;
  background-color: #222;
  min-height:60px;
  color: rgb(240, 239, 239  );
  line-height: 60px;
  width:100%;

}
.issue-name{
  font-size: 16px;
  list-style-type: none;
}

.exit{
  width:100%;
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
  height: 40px;
}
.exit-img{
  width:20%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
@media only screen and (max-width: 450px) {
  .pg-header{
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #222;
  color: #E2E2E2;
  font-family: 'Anton';
  letter-spacing: 3px;
  height: 60px;
  padding: 10px;
  font-size: 30px;
}
.code-name{
  font-size: 20px;
}
.lb-head-text{
  visibility: hidden;
}

}
/*Loader to denote that information is coming soon*/
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
