.box-comicstrip{
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.box-comicstrip-wrap{
  margin-top: 20px;
  margin-bottom: 10px;
}

.box-comicstrip:hover a::before{
  opacity: 0.3;
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
}

.box-comicstrip img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comicstrip-load-more,.comicstrip-back-blog {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}
.btn-load-more-comicstrip,.btn-comicstrip-back-blog{
  border: 1px solid #000;
  background: #000;
  font-size: 14px;
  padding: 5px 20px;
  width: auto;
  float: none;
  display: inline-block;
  color: #fff;
  border-radius: 5px;

}
a.btn-back-comic {
    padding: 5px;
    background: #f0f0f0;
    color: #d63031;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
}
a.btn-back-comic:hover{
    color: #fff;
  background: #d63031;
}
.box-comicstrip a {
    display: block;
    width: 100%;
    height: 100%;
}
.comicstrip-title{
  text-align: center;
}
.box-view-comicstrip{
  text-align: center;
}
.comicstrip-title h1{
  font-weight: bold;
  margin-bottom: 30px;
}

.comicstrip-content{
  position: relative;
  width: 100%;
  height: 100%;

}
.comicstrip-btn{
  display: none;
}
.activeButton .comicstrip-btn{
  position: fixed;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 15px;
  background: #f0f0f0;
  color: #d63031;
  font-size: 20px;
  font-weight: bold;
}
.activeButton .comicstrip-btn:hover{
  color: #fff;
  background: #d63031;
}
.activeButton .comicstrip-prev{
  left: 9%;
}
.activeButton .comicstrip-next{
  right: 37%;
}
@media(max-width: 991px){
  .activeButton .comicstrip-prev{
    left: 15px;
  }
  .activeButton .comicstrip-next{
    right: 15px;
  }
  .comicstrip-back-blog{
    margin-top: 0;
  }
}