/* CSS

1: Core styles
2: Typography
3: Header and footer
3: Layout
5: Social
6: Forms + pagination
7: Icons

Blue  295073
Rust  a62d2d
Yellow  f29f05
Red   f23838
*/

/**********************/
/* 1:  CORE STYLES  */
/**********************/



* {
    box-sizing: border-box;
  }
  .hidden {
    display: none;
  }
  
  body {
    margin: 0;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    width: 100%;
    display: block;
    min-height: 100vh;
    background-image: url(../img/web.jpg);
    background-position: center top;
    background-repeat: repeat;
  }
  
  a {
    color: #2e2e2e;
  }
  
  a:hover,
  a.on,
  p.credit a:hover {
    color: #a62d2d;
  }
  
  nav a:hover,
  article.summary a:hover p
  {
    color: #295073;
  }

  
  
  /**********************/
/* 2:   TYPOGRAPHY    */
/**********************/


body {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 100%; /* 16px */
    color: #ddd;
  }
  
  a {
    text-decoration: none;
  }
  
  h1 {
    font-size: 1.8em;
  }
  
  h1, h2 {
    font-weight: 600;
    margin: 0 0 0.14em 0;
  }
  
  p {
    margin: 0 0 1em 0;
  }
  
  .date, p.credit, p.member {
    font-size: 0.7rem;
  }
  
  p.credit {
    text-transform: uppercase;
  }
  
  p.credit a {
    font-weight: bold;
    color: inherit;
  }
  
  article.summary p {
    line-height: 1em;
  }
  
  nav li {
    font-weight: 600;
    line-height: 0.8em;
  } 
  

  /**********************/
/* 3: HEADER + FOOTER */
/**********************/
.header {
  position: absolute;
  /* background-color: red; */
  
  width: 100%;
  left:0;
  top:0;
  z-index: 1;
  padding: 15px;
}
  
.header-main{
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 4px;
}
  
  .header .logo{
    max-width: 1800px;
    max-width: 750px;
    display: block;
    margin-left: 20%;
    margin-right: auto;
   }

   .header-container{
    
   
    max-width: 1170px;
    margin: auto;
}
 
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

a{
  text-decoration: none;
}
/*header*/

body.hidden-scrolling{
  overflow: hidden;
}
*{
  margin:0;
  box-sizing: border-box;
}

.header-container{
  max-width: 1170px;
  margin: auto;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

a{
  text-decoration: none;
}
/*header*/

.header {
  position: absolute;
  /* background-color: red; */
  
  width: 100%;
  left:0;
  top:0;
  z-index: 3;
  padding: 15px;
}
.header-main{
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 4px;
}


.header .logo{
 
 max-width: 1800px;
 max-width: 750px;
 display: block;
 margin-left: auto;
 margin-right: auto;

 


}

.header .logo a{
  font-size: 30px;
  text-transform: capitalize;
  color: #e91e63;
}

.header .img{
  max-width: 200px;
}
.header .nav-menu{
  padding: 0 15px
}

.header .menu > .menu-item{
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a{
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu > .menu-item > a .plus{
display: inline-block;
height: 12px;
width: 12px;
position: relative;
margin-left: 5px ;
pointer-events: none;

}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
  content:'';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
  background-color: #e91e63;
}


.header .menu > .menu-item > a .plus:after{
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu > .sub-menu > li > a:hover,
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
  color: #e91e63;
}

.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  transform-origin: top;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #e91e63;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu {
  transition: all 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transform: none;

}
.header .menu > .menu-item-has-children:hover > a .plus:after{
  transform: translate(-50%, -50%)rotate(0deg);
  transition: all 0.3s ease;

}
.header .menu >  .menu-item > .sub-menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%)rotate(0deg);
  transition: all 0.3s ease;
}



.modal.active{

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1); 
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 100;
  background-color: white;
  width: 300px;
  max-width: 300px;
}




}

.header .menu > .menu-item > .sub-menu > .menu-item {
  display:block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
display: block;
padding: 10px 20px;
font-size: 16px;
font-weight: 600px;
color:#000000;
transition: all 0.3s ease;
text-transform: capitalize;
}

.header .open-nav-menu{
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
        display: block;
        height: 3px;
        width: 24px;
        background-color: #000;
        position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing:border-box;
}
.header .open-nav-menu span:before{
  top:-7px;
}
.header .open-nav-menu span:after{
  top: 7px;
}

.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin-left: 15px;
  margin:0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.header .close-nav-menu img{
  width: 16px;
}

.header .menu-overlay{
  position: fixed;
  z-index: 999;
  background-color: rgba(0,0,0,0.5);
  left:0;
  top:0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .menu-overlay.active{
  visibility: visible;
  opacity: 1;
}

/* responsive */
@media(max-width: 991px){
 .header .nav-menu{
  position: fixed;
  right: -280px;
  /* visibility: hidden; */
  width: 280px;
  height: 100%;
  top: 0;
  overflow-y: auto;
  background-color: #222222;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.5s ease;
 }
 .header .nav-menu.open{
  visibility: visible;
  right: 0px ;
 }
 .header .menu > .menu-item {
  display: block;
  margin:0;
 }
 .header .menu > .menu-item-has-children > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
 .header .menu > .menu-item > a{
  color: #ffffff;
  padding: 12px 15px;
  border-bottom: 1px solid #333;
 }
 .header .menu > .menu-item:first-child > a{
  border-top: 1px solid #333;
 }
 .header .menu > .menu-item > a .plus:before,
 .header .menu > .menu-item > a .plus:after{
  background-color: #ffffff;
 }
 .header .menu > .menu-item-has-children.active > a .plus:after{
         transform: translate(-50%, -50%) rotate(0deg);
 }
 .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: 0 0 5px rgb(82, 82, 82);
    transform-origin: top;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top:auto;
    max-height: 0;
    overflow: hidden;

 }
 .header .menu > .menu-item > .sub-menu > .menu-item > a{
  padding: 12px 45px;
  color: #ffffff;
  border-bottom: 1px solid #333;
 }
 .header .close-nav-menu, 
 .header .open-nav-menu{
  display: flex;
 }


 .header .menu > .menu-item > .sub-menu > .sub-menu {
  width: 100%;
  position: relative;
  opacity: 1;
  visibility: visible;
  border: none;
  background-color: transparent;
  box-shadow: 0 0 5px rgb(82, 82, 82);
  transform-origin: top;
  transform: translateY(0px);
  padding: 0px;
  left: auto;
  top:auto;
  max-height: 0;
  overflow: hidden;

}
 
}

.header .menu > .menu-item > .sub-menu > a{
  display: block;
  padding: 12px 45px;
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
  



}





.header .menu > .menu-item > .sub-menu > .sub-menu > li > a{

  display: block;
  padding: 12px 20px;
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu > .menu-item > .sub-menu > .sub-menu-right {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  border-top: 3px solid #e91e63;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 0 5px rgb(82, 82, 82);
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
  
}



.header .menu li:hover > .sub-menu > .sub-menu-right {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
}

.sub-menu > .menu-item > a .plus:before,
.sub-menu > .menu-item > a .plus:after{
  content:'';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}


.header .menu > .menu-item > .sub-menu > .sub-menu {
  left:100%;
  top: 0;
}


.member-menu {
  color: #999;
  padding: 0 .2em;
  min-height: 1.6em;
  font-size: 0.9rem;
  border-bottom: 1px solid #999;
}
 
footer {
    clear: both;
    font-size: 0.8rem;
    text-align: right;
    color: #a39f9c;
    padding: 1rem 0;
  }


  /**********************/
/* 4:    LAYOUT       */
/**********************/



.container {

    margin: 0 auto 0 auto;
    max-width: 80%;
    
  } 

  

  .main_image img {
      
    margin-top: 300px;
    width: 94%;
    height: auto;
    border-radius: 3px;
   
    }

  .image_blur {

  -webkit-filter: blur(8px);
  filter: blur(8px);

  }

#sub-content-wrapper{
  padding: 1px;
  overflow: hidden;
  color: #ddddd2;
  
  
}

.widget-content{
  display: block;
  text-align: center;
}

.post-content{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  padding: 10px 10px ;
  
}

.image{
  text-align: center;
  margin-top: 20px;
  
}

.chapter_title {

  display: block;
 
}

.post-title  {

  display: block;
}

p.credit{
  color: #295073;
}

#textwidget {
   text-align: center;
}

@media (min-width: 1240px) {
    .container {
    max-width: 800px;
    transition: all 1.5s ease-in-out;

    }

    .member-menu{
      text-align: left;
    }
    

    .modal.active{

      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1); 
      transition: 200ms ease-in-out;
      border: 1px solid black;
      border-radius: 10px;
      z-index: 100;
      background-color: white;
      width: 200px;
      max-width: 200px;
    }

  
  
  

  }
  
  .grid {
    display: grid;
    grid-gap: 2em;
  }
  
  .grid {
    display: grid;
    margin: 0 auto 2em auto;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .chapter_title {

    display: block;
    width: 0px;
    margin-top: 50px;
  }



  @media (min-width: 860px) {
    main.article,
    .admin-article {
      display: grid;
      grid-gap: 2em;   
      grid-template-columns: auto ;
      margin-bottom: 2em;}
    
  }
     

@media (min-width: 860px) {
   
    .admin-article {
      display: grid;
      grid-gap: 2em;   
      margin-bottom: 2em;}
    

      .chapter_title {

        display: block;
        width: 300px;
        margin-top: 0px;
      }
    
    }

article.detail img{

  margin-bottom: 0rem;
  max-width: 3em ;
  border-radius: 100px;
}
  
article.summary img {
    margin-bottom: 0.5em;
  }
  
  article.summary img:hover {
    filter: brightness(1.1);
  }
  
  article.summary p {
    margin: 0 0 0.6em 0;
  }
  
  .date {
    display: block;
    margin: 0 0 1.2em 0;
  }
  
  .text h1 {
    margin-bottom: .5em;
  }
  
  .text .content {
    margin: 0 0 1em 0;
    line-height: 1.5em;
  }
  

  

  /* ComicNav Base start */

#content-column, #textwidget, .page-info {
   
  color:#ddddd2
}






a {
  text-decoration: none;

  
  color: rgb(158, 122, 3);}

  

.main_image {
  color: rgb(252, 251, 251);
 

}
   



.clear{
  clear:both
}

#content-wrapper{
  display: block;
  
}

.First-img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 300px;
  text-align: center;
} 

.clear{
  clear:both
}
.widget-content{
  display: block;
  text-align: center;
}

 

#sidebar-under-comic{
 display: block;
 
}
div{
  display: block;
}

.clear {
  margin-bottom: 30px;
}
div{
  display: block;
}

#comic-foot{
  display: block;
}


table#comic-nav-wrapper{
  background-color: #000000;
}

table#comic-nav-wrapper{
  width: auto ;
  background: #333;
  border: 0;
  border-collapse: collapse;
  margin: 6px auto;
  border: solid 1px #000;
  border-radius: 5px;
  padding: 3px;
  display: inline-block;}

tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;}

td.comic-nav {
  border: 0;
  display: inline-block;
  padding: 0 10px;}

.comic-dropdown-widget form{ width: 180px;
margin: 0 auto;

}

.article-grid-container{
  display: grid;
  grid-template-columns: auto auto auto ;
  
}


.article-grid-container > div {
  text-align: center;
  padding: 20px 0;

}

.comic-nav-left{
  font-size:40px;
  display: block;
  margin-top: 700px;
  transform: scale(-1, 1);
  color: #cfbb85;
  z-index: 3;

}

.comic-nav-right{
  font-size:40px;
  display: block;
  margin-top: 700px;
  transform: scale(1, -1);
  color: #cfbb85;


}


  

.clear{
  clear:both}


/* ComicNav Base end */


/**********************/
/* 5:    COMMENT      */
/**********************/




.form-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}


.form-group .title {
  display: flex;
  align-items: center;
}

.form-group .title h2{
  font-size: 21px;
  font-weight: 600;
}

.form-group .title .tags{
  max-width: 10px ;
  height: auto;
}

.form-group.content {
  margin: 10px 0;
  
}

.form-group .content p{
  font-size: 21px;

}

.form-group .content ul{
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  margin: 12px 0px ;
  border: 1px solid #a6a6a6;
  font-size: 15px;
}

.form-group img{
  max-width: 100%;
}

#comicbar-wrapper{
  height: 100px;
}

#tags {
  padding: 5px;
    margin-bottom: 10px;
}

.panel-default {
  border-color: #ddd;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
  border-color: #b4b1b1;
}

.panel-default>.panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;}

.panel-heading {
  padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-body{
  padding: 15px;
  color:#333;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;}


form button.submit, button {

    background: #4CAF50;
    color:white;
    border:none;
    cursor: pointer;
    padding: 10px 20px;
    

}

button.reply{
    background: orange;
}

.comment { 
  padding: 1em;
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 2rem;
  border-radius: 8px;

}

.comment_content {
  height: 300px ;
}

.form-control-name{

  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  margin-top: 10px;
  opacity: 0.9;
  resize:vertical;
  color: rgb(187, 187, 187);
  border-width: 3px;
  border-color:  rgb(46, 46, 46);
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  background-clip: padding-box;
  font-size: 15px;
  letter-spacing: -0.5px;
  box-shadow: 1px 1px 1px 1px rgb(39, 39, 39) inset;
  padding: 5px 5px;
  background-color: #0a0a0a;
}

.form-control-comment {
  display: block;
  width: 100%;
  height: 200px;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  margin-top: 10px;
  opacity: 0.9;
  resize:vertical;
  color: rgb(187, 187, 187);
  border-width: 3px;
  border-color:  rgb(46, 46, 46);
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  background-clip: padding-box;
  font-size: 15px;
  letter-spacing: -0.5px;
  box-shadow: 1px 1px 1px 1px rgb(39, 39, 39) inset;
  padding: 5px 5px;
  background-color: #0a0a0a;
}

#section3{
  display: block;
  width: 560px;
}

button.reply{
    background: orange;
}
/**********************/
/* 6: MODALS           */
/**********************/


.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0); 
  transition: 200ms ease-in-out;
  border: 1px solid #ced4da;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 300px;
  max-width: 300px;}
 
  .form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    margin-top: 10px;
}

  .modal.active{
  transform: translate(-50%, -50%) scale(1); 
  border: 1px solid #ced4da;
  width: 400px;
  height: 300px;
  max-width: 90%;
  }

.modal-header {
    padding:  10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ced4da;
    color: #295073;
}

.modal-header .title{
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #295073;
    border: 3px solid #295073;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: .2em .5em;
}

.narrow
 {
    max-width: 500px;
    margin: 0 auto;}




.modal-body{
    padding:10px 15px;
    color: #000;
    
}

#password_reset {
  margin: 3px;
  color: #295073;
  font-weight: bolder;
}

#password_reset:hover {
  color:#a62d2d;
}

#alert {
  color:#a62d2d;
    font-weight: bolder;
    margin-top: 6px;
}


#overlay{
    
    position:fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    
}

#overlay.active{
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: 1;
    pointer-events: all;
}

form button.submit, button {
    background: #eaeaea;
    color: #295073;
    border: 2px solid #ced4da;
    cursor: pointer;
    padding: 10px 20px;
    float: right;

}


/**********************/
/* 7: ICONS           */
/**********************/

@font-face {
  font-family: 'icons';
  src: url('../font/icons/icons.eot?29469745');
  src: url('../font/icons/icons.eot?29469745#iefix') format('embedded-opentype'),
  url('../font/icons/icons.woff2?29469745') format('woff2'),
  url('../font/icons/icons.woff?29469745') format('woff'),
  url('../font/icons/icons.ttf?29469745') format('truetype'),
  url('../font/icons/icons.svg?29469745#icons') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: none;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu:before { content: '\f0c9'; } 
.icon-search:before { content: '\e803'; } 
.icon-comment:before { content: '\e800'; } 
.icon-comment-empty:before { content: '\f0e5'; } 
.icon-heart:before { content: '\e801'; } 
.icon-heart-empty:before { content: '\e802'; } 

/* Same styles as .btn 
   Repeated here as adding them to existing .btn class 
   can prevent rules for button being processed. */
input[type=file]::-webkit-file-upload-button {
  color: #fff;
  background: #295073;
  display: inline-block;
  width: min-content;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: .1rem .5rem;
  line-height: 1.5;
  vertical-align: middle;
  text-transform: uppercase;
}
input[type=file]::file-selector-button {
  color: #fff;
  background: #295073;
  display: inline-block;
  width: min-content;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: .1rem .5rem;
  line-height: 1.5;
  vertical-align: middle;
  text-transform: uppercase;
}