/*
PU
*/
div.comic-gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 140px;
}

div.comic_reader{
	width: 100%;
  	height: auto;
  	text-align:center;
  	margin:0 auto;
}

div.comic-gallery:hover {
  border: 1px solid #777;
}

div.comic-gallery img {
  width: 100%;
  height: auto;
}

div.comic-desc {
  padding: 2px;
  text-align: center;
}

.comic-responsive {
	padding: 0 6px;
	float: left;
	/* width: 24.99999%;*/
	display: block;
}

@media only screen and (max-width: 700px) {
  .comic-responsive {
    /*width: 49.99999%;*/
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .comic-responsive {
    width: 100%;
  }
}

.comic-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*
spinner
*/

.jxxxg-spinner-loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid rgb(247, 106, 12);
  border-bottom: 16px solid rgb(247, 106, 12);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*
Modal
*/
/* The Modal (background) */
.jxxxg-spinner-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.jxxxg-spinner-content {
	background-color: transparent;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	/*border: 1px solid #888;*/
	width: 80%; /* Could be more or less, depending on screen size */
	display: flex;
	justify-content: center;
}
