.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #29d;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

/* ------------------------------------------------------*/

body {
  padding-top: 15px;
  background-color: #fff;
  padding-bottom: 30px;
}

html {
  position: relative;
}

html, body {
  height: 100%;
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px; /* Set the fixed height of the footer here */
  line-height: 30px; /* Vertically center the text there */
  background-color: #333;
}


.movie_thumb {
    margin: 5px 0px 10px 0px;
    width: 150px;
    text-decoration: none;
    position: relative;
    display: block;
    border-radius: 5px;
}
.tv_show_status {
    color: #fff;
	  background-color: #007bff !important;
    font-weight: bold;
    font-size: 0.875rem;
    border-radius: 0px 0px 5px 5px;
	text-align: center;
}


.index_item {
  margin-bottom: 10px;
}
.index_item, .index_item h2 {
    text-align: center;
}
.index_item h2 {
    /*overflow: auto;*/
    font-size: 13px;
}

a {
	text-decoration: underline;
}
a:visited {
	color: #003063;
}
a:hover {
	text-decoration: none;
}


.header a {
  text-decoration: none;
  color: #212529;
}
.header img {
  width: 44px;
  vertical-align: top;
}
.header h3 {
  display: inline;
  position: relative;
  left: 10px;
  margin-bottom: 0;
  font-weight: 700;
  text-decoration: none;
  color: #212529;
}
.header h3 sup {
  font-size: 1rem;
}
@media (min-width: 576px) and (max-width: 767px) {
  .header img {
    width: 40px;
  }
  .header h3 {
    font-size: 1.20rem;
    left: 5px;
    top: 5px;
  }
  .header h3 sup {
    font-size: 0.7rem;
  }
}


/*.quality span {
	display: block;
	text-align: center;
	margin: 0 auto;
}*/


/* BEGIN Quality Icons */
.quality_cam {
    background: url("/images/link_qualities.gif") no-repeat 0px 0px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
}
.quality_ts {
    background: url("/images/link_qualities.gif") no-repeat 0px -32px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
}
.quality_dvd {
    background: url("/images/link_qualities.gif") no-repeat 0px -64px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
}
.quality_hd {
    background: url("/images/link_qualities.gif") no-repeat 0px -96px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
}
.quality_unknown {
    background: url("/images/link_qualities.gif") no-repeat 0px -128px;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
}
/* END Quality Icons */


footer {
  background: rgba(0, 0, 0, 0.95);
  text-align: center;
  color: #fff;
  font-size: 12px;
}
footer.fixed-bottom {
  z-index: 1000000;
}
footer div {  
  padding-left: 2px;
  padding-right: 2px;
}
.bottom-space {
  height: 108px;
}
@media (min-width: 768px) {
  footer {
    font-size: 16px;
  }
  footer div {
    width: 75%;
    margin: 0 auto;
  }
  
  .bottom-space {
    height: 72px;
  }
}



.card-header .accordion-toggle:after {
    font-family: 'FontAwesome';
    content: "\f078";
    float: right;
}
.card-header .accordion-toggle.collapsed:after {
    content: "\f054";
}


@media (max-width: 575px) {
  .menu {
    margin: 10px 0 10px 0;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
	.menu {
		padding: 0;
	}
}


@media (max-width: 767px) {
	.card-body {
		padding: 0;
	}
}


a.list-group-item-action:visited {
  color: #495057;
}
a.list-group-item-action:hover {
  background-color: #f5f5f5;
}

a.list-group-item-action .episode_title {
  text-decoration: underline;
  color: #007bff;
}
a.list-group-item-action:visited .episode_title {
  color: #003063;
}
a.list-group-item-action:hover .episode_title {
  text-decoration: none;
}

.list-group-item-action .episode_versions {
  float: right;
  margin-top: 3px;
}


.row.no-gutters {
  margin-right: 0;
  margin-left: 0;

  & > [class^="col-"],
  & > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}


.rounded {
  border-radius: 5px 5px 5px 5px;
}