body {
	font-size:1em;
} 

#wrap-hamburger {
    position: fixed;
    top: 15px;
    right: 15px;
}

/* DISPLAY NON READSPEAKER */
#readspeaker_button1 {
}

.btnMinus:active, .btnPlus:active, .btnRefresh:active {
    background: #00CCCC !important;
    text-shadow: 0 0 10px #333;
}
.btnMinus:not(:active),.btnPlus:not(:active),.btnRefresh:not(:active) {
    /* now keep red background for 1s */
    -moz-transition: all 1s ease-in;
    /* WebKit */
    -webkit-transition: all 1s ease-in;
    /* Opera */
    -o-transition: all 1s ease-in;
    /* Standard */
    transition: all 1s ease-in;

    text-shadow: 0 0 10px #333;
}
.highlight {
    background: #00CCCC !important;
    text-shadow: 0 0 10px #333;
}

#wrapTip {
    font-family: 'Fira Sans', sans-serif;
    display: none;
    background-color: #000;
    color: #fff;
    padding: 15px;
    font-size: 15px;
    line-height: 15px;
    position: fixed;
    z-index: 1000;
    top: 15px;
    left: 15px;
    border-radius: 15px;
}


/**
 * WE USE ICON FONTAWESOME

 * Toggle Switch Globals
 *
 * All switches should take on the class `c-hamburger` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 64px;
  height: 64px;
    border-radius: 50%;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
          transition: background 0.3s;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 28px;
  left: 18px;
  right: 18px;
  height: 4px;
  background: white;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
}

.c-hamburger span::before {
  top: -10px;
}

.c-hamburger span::after {
  bottom: -10px;
}

/**
 * Style 1
 *
 * Rotating hamburger icon (rot), that simply rotates 90 degrees when activated.
 * Nothing too fancy, simple transition.
 */
.c-hamburger--rot {
  background-color: #28aadc;
}

.c-hamburger--rot span {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

/* active state, i.e. menu open */
.c-hamburger--rot.is-active {
  background-color: #166888;
}

.c-hamburger--rot.is-active span {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger--htx {
  background-color: #000;
}

.c-hamburger--htx span {
  -webkit-transition: background 0s 0.3s;
          transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  -webkit-transition-property: top, -webkit-transform;
          transition-property: top, transform;
}

.c-hamburger--htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
          transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #000;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

/**
 * Style 3
 *
 * Hamburger to left-arrow (htla). Hamburger menu transforms to a left-pointing
 * arrow. Usually indicates an off canvas menu sliding in from left that
 * will be close on re-click of the icon.
 */
.c-hamburger--htla {
  background-color: #32dc64;
}

.c-hamburger--htla span {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

.c-hamburger--htla span::before {
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform 0.3s, width 0.3s, top 0.3s;
          transition: transform 0.3s, width 0.3s, top 0.3s;
}

.c-hamburger--htla span::after {
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.3s, width 0.3s, bottom 0.3s;
          transition: transform 0.3s, width 0.3s, bottom 0.3s;
}

/* active state, i.e. menu open */
.c-hamburger--htla.is-active {
  background-color: #18903c;
}

.c-hamburger--htla.is-active span {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-hamburger--htla.is-active span::before,
.c-hamburger--htla.is-active span::after {
  width: 50%;
}

.c-hamburger--htla.is-active span::before {
  top: 0;
  -webkit-transform: translateX(38px) translateY(4px) rotate(45deg);
      -ms-transform: translateX(38px) translateY(4px) rotate(45deg);
          transform: translateX(38px) translateY(4px) rotate(45deg);
}

.c-hamburger--htla.is-active span::after {
  bottom: 0;
  -webkit-transform: translateX(38px) translateY(-4px) rotate(-45deg);
      -ms-transform: translateX(38px) translateY(-4px) rotate(-45deg);
          transform: translateX(38px) translateY(-4px) rotate(-45deg);
}

/**
 * Style 4
 *
 * Hamburger to right-arrow (htra). Hamburger menu transforms to a
 * right-pointing arrow. Usually indicates an off canvas menu sliding in from 
 * right that will be close on re-click of the icon.
 */
.c-hamburger--htra {
  background-color: #ff9650;
}

.c-hamburger--htra span {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

.c-hamburger--htra span::before {
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s, width 0.3s, top 0.3s;
          transition: transform 0.3s, width 0.3s, top 0.3s;
}

.c-hamburger--htra span::after {
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: -webkit-transform 0.3s, width 0.3s, bottom 0.3s;
          transition: transform 0.3s, width 0.3s, bottom 0.3s;
}

/* active state, i.e. menu open */
.c-hamburger--htra.is-active {
  background-color: #e95d00;
}

.c-hamburger--htra.is-active span {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-hamburger--htra.is-active span::before,
.c-hamburger--htra.is-active span::after {
  width: 50%;
}

.c-hamburger--htra.is-active span::before {
  top: 0;
  -webkit-transform: translateX(-8px) translateY(4px) rotate(-45deg);
      -ms-transform: translateX(-8px) translateY(4px) rotate(-45deg);
          transform: translateX(-8px) translateY(4px) rotate(-45deg);
}

.c-hamburger--htra.is-active span::after {
  bottom: 0;
  -webkit-transform: translateX(-8px) translateY(-4px) rotate(45deg);
      -ms-transform: translateX(-8px) translateY(-4px) rotate(45deg);
          transform: translateX(-8px) translateY(-4px) rotate(45deg);
}


/* MENU LIQUIDO */ 

#menuLiquido {
    display: none;
    position:fixed;
    top: 15px;
    right: 97px;
    z-index: 1000;
}

#menuLiquido ul {
    list-style-type: none;
    margin: 0;
    line-height: 0;
    padding: 0;
    background: transparent;
}

#menuLiquido li {
    margin: 0 18px 0 0;
    float: left;
    font-size: 24px;
    display: block;
    width: 64px;
    height: 64px;
    cursor: pointer;
}
#menuLiquido li a {
    background: rgba(0,0,0,.8);
    border-radius: 50%;
    display: block;
    width: 64px;
    height: 64px;
    text-align: center;
}



#menuLiquido li a i {
    padding-top: 19px;
}

#menuLiquido li.last-li {
    margin: 0 0 0 0;
}

a.asset {
	color: #fff;
	background-color: red;
}

#menuLiquido li a {
    color: #fff;
    padding: 0;
    margin: 0;
}

#readspeaker_button1{
	bottom: 20px;
    margin: 40px 10px 10px;
    position: fixed;
    right: 20px;
}
.rsbtn_btnlabel {
    display: none !important;
}
.insert_chapter_embed {
	/*display:none;*/
}

/* SVG ridimensionamento 
@media screen and (max-width: 860px) {
    
    *[src$=".svg"]:not(.svgAbnormal) {
        width: 100% !important;
    }
    .svgAbnormal {
        width: 30% !important;
    }

}
*/

@media screen and (max-width: 767px) {
    
    #wrap-hamburger {
        position: fixed;
        top: 10px;
        right: 10px;
    }

    #menuLiquido {
        right: 10px;
        top: 68px;    
    }

    #menuLiquido li {
        font-size: 18px;
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 0 10px 0;
        float: none;
    }
    #menuLiquido li a {
        background: rgba(0,0,0,.8);
        border-radius: 50%;
        display: block;
        width: 48px;
        height: 48px;
        text-align: center;
    }
    #menuLiquido li a i {
        padding-top: 15px;
    }
    
    .c-hamburger {
      width: 48px;
      height: 48px;
    }
    
    .c-hamburger span {
      top: 22px;
      left: 9px;
      right: 9px;
      height: 2px;
    }

    .c-hamburger span::before,
    .c-hamburger span::after {
      height: 2px;
    }

    .c-hamburger span::before {
      top: -8px;
    }

    .c-hamburger span::after {
      bottom: -8px;
    }

    
}


@media screen and (max-width: 420px) {
    

}




