.chapterContent {
    /* background: #ff0; */
    position: absolute;
    /* top: 17px; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    }

.contentWrapper {
    width: auto;
    height: 100%;
}

.epubChapter {
    /*position: absolute;*/

    /*left: 0;*/

    /*column-gap: 0px;*/
    /*opacity: 0;*/
    /*height: 100%;*/
    /*z-index: 0;*/

    /*width: 900px;*/
    /*height: 900px;*/
    /*overflow: scroll;*/
    /*margin-left: 15%;*/

}
.chapterActive{
    opacity: 1;
 	z-index:10;
}

.epubChapter img {
    max-height: 100%;
}

.confirmation-dialog { position: fixed; z-index: 102; display: none; border-radius: 3px; padding: 15px; }
.confirmation-dialog > div { width: 100%; float: left; }
.confirmation-dialog .confirmation-message { margin-bottom: 12px; font-size: 12px; }
.confirmation-dialog .confirmation-buttons > button { width: 48%; border-radius: 25px; padding: 6px; font-size: 12px; font-weight: 600; border: 0; cursor: pointer; }
.confirmation-dialog .confirmation-buttons > button:focus { outline: none; }
.confirmation-dialog .confirmation-confirm { float: right; }
.confirmation-dialog .confirmation-cancel { float: left; }

.__web-inspector-hide-shortcut__ {
  z-index: -1;
}

.rememberPassword {
    border-radius: 0 !important;
    border-style: none !important;
}


/*************************************************************/
/*  Estilos para el resizer de eureka                        */
/*************************************************************/
 
.Resizer {
  background: #000;
  opacity: .2;
  z-index: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}

.Resizer:hover {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.Resizer.horizontal {
  height: 11px;
  margin: -5px 0;
  border-top: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  cursor: row-resize;
  width: 100%;
}

.Resizer.horizontal:hover {
  border-top: 5px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}

.Resizer.vertical {
  width: 11px;
  margin: 0 -5px;
  border-left: 5px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 255, 0);
  cursor: col-resize;
}

.Resizer.vertical:hover {
  border-left: 5px solid rgba(0, 0, 0, 0.5);
  border-right: 5px solid rgba(0, 0, 0, 0.5);
}
.Resizer.disabled {
cursor: not-allowed;
}
.Resizer.disabled:hover {
border-color: transparent;
}