/*
BWA css 
*/

.bwa-header{
    display: flex;
    align-items: center;
    background-color: rgba(35,50,116,0.35);
}
.bwa-header .bwa-column{
    display: inline-block;
    float: left;
}
.bwa-header .bwa-column-first{
    width: 120px;
    height: 120px;
    text-align: center;
}
.bwa-header .bwa-column-second{
    margin-left: 90px;
}
.bwa-header .bwa-column .icon{
    font-size: 110px;
    color: #fff;
}
.bwa-header-title{
    font-size: 60px;
    margin-bottom: 0px;
}
.bwa-column-first.editorial{
    background-color: rgba(35,50,116,1);
}

@media only screen and (max-width: 767px){
    .bwa-header .bwa-column-second {
        margin-left: 20px;
    }
    .bwa-header-title {
        font-size: 45px;
    }
}
@media only screen and (max-width: 479px){
    .bwa-header .bwa-column-first{
        width: 100px;
        height: 100px;
    }
    .bwa-header .bwa-column .icon{
        font-size: 90px;
    }
    .bwa-header .bwa-column-second {
        margin-left: 10px;
    }
    .bwa-header-title {
        font-size: 35px;
    }
}
@media only screen and (max-width: 350px){
    .bwa-header-title {
        font-size: 25px;
    }
}



.bwa-controls{
    max-width: 1500px;
    margin: 0 auto;
}

.bwa-controls .bwa-selector {
    font-size: 1rem;
    display: inline-block;
    margin: 1.5em 1.5em 1.5em 0;
    width: 350px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}
.bwa-controls .bwa-verse-selector.bwa-selector{
    width: 150px;
}
.bwa-controls .bwa-selector::before {
    position: absolute;
    content: '\f063';
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    color: #747474;
    right: 5px;
    top: calc(50% - 0.5em);
    font-weight: 900;
}
.bwa-controls .bwa-selector.active::before {
    transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  font-size: 18px;
  color: #747474;
  padding: 5px 15px 5px 10px;
  text-align: left;
  pointer-events: none;
  user-select: none;
  visibility: visible;
  min-height: 20px;
}
.bwa-controls .bwa-selector.active .sel__placeholder {
  visibility: hidden;
}
.sel__placeholder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.2em 0.5em;
  content: attr(data-placeholder);
  visibility: hidden;
}
.bwa-controls .bwa-selector.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
    position: absolute;
    top: calc(100% + 1px);
    /* left: -4px; */
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(116, 116, 116, 0.3);
    border-left: 1px solid rgba(116, 116, 116, 0.3);
    border-right: 1px solid rgba(116, 116, 116, 0.3);
    -webkit-box-shadow: 2px 2px 5px 0px rgba(161,15,43,0.3);
    -moz-box-shadow: 2px 2px 5px 0px rgba(161,15,43,0.3);
    box-shadow: 2px 2px 5px 0px rgba(161,15,43,0.3);
    z-index: 100;
}
.bwa-controls .bwa-selector.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}
.bwa-book-selector .sel__box{
    width: 700px;
}
.bwa-controls .bwa-book-selector.bwa-selector.active .sel__box {
  display: flex;
}

.sel__box__options {
    display: list-item;
    font-size: 18px;
    color: #747474;
    padding: 5px;
    user-select: none;
}
.sel__box__options::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-size: 1em;
    margin-left: 15px;
    display: none;
    font-weight: 900;
    color: #a10f2b;
}
.sel__box__options.selected::after {
  display: inline;
}
.sel__box__options:hover {
  background-color: #ebedef;
}

.bwa-book-selector .sel__box__options, .bwa-book-selector .sel__placeholder{
    text-transform: uppercase;
}

/* ----- Select Box Black Panther ----- */
.bwa-controls .bwa-selector {
  border-bottom: 1px solid rgba(35,50,116,0.35);
}
.sel--black-panther {
  z-index: 3;
}
/* ----- Select Box Superman ----- */
.sel--superman {
/*   display: none; */
  z-index: 2;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.list-loading{
    position: absolute;
    font-size: 0;
    top: 50%;
    left: 50%;
}
.list-loading-bar{
    display: inline-block;
    animation: loading 1s ease-in-out infinite;
    width: 4px;
    height: 18px;
    margin-right: 3px;
    border-radius: 4px;
    background-color: rgba(35,50,116,1);
}
.list-loading-bar:nth-child(1) {
  animation-delay: 0s; }

.list-loading-bar:nth-child(2) {
  animation-delay: .09s; }

.list-loading-bar:nth-child(3) {
  animation-delay: .18s; }

.list-loading-bar:nth-child(4) {
  animation-delay: .27s; }

@-webkit-keyframes loading {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  20% {
    -ms-transform: scale(1, 2.2);
    -webkit-transform: scale(1, 2.2);
    transform: scale(1, 2.2); }
  40% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes loading {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  20% {
    -ms-transform: scale(1, 2.2);
    -webkit-transform: scale(1, 2.2);
    transform: scale(1, 2.2); }
  40% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-ms-keyframes loading {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  20% {
    -ms-transform: scale(1, 2.2);
    -webkit-transform: scale(1, 2.2);
    transform: scale(1, 2.2); }
  40% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-o-keyframes loading {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  20% {
    -ms-transform: scale(1, 2.2);
    -webkit-transform: scale(1, 2.2);
    transform: scale(1, 2.2); }
  40% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes loading {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  20% {
    -ms-transform: scale(1, 2.2);
    -webkit-transform: scale(1, 2.2);
    transform: scale(1, 2.2); }
  40% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }


#bwa-content{
    max-width: 1500px;
    margin: 50px auto;
    min-height: 200px;
}
#bwa-main{
    font-family: verdana;
}
#bwa-content #bwa-main .next-chapter, #bwa-content #bwa-main .prev-chapter {
    /*display: none;*/
    background: #fff;
    padding: 11px 16px 9px;
    height: 46px;
    width: 46px;
    border: 1px solid #dddcda;
    z-index: 99;
    position: fixed;
    top: 52%;
}
#bwa-content #bwa-main .next-chapter{
    right: 5px;
}
#bwa-content #bwa-main .prev-chapter {
    left: 5px;
}

@media only screen and (max-width: 1600px){
    .bwa-controls {
        max-width: 1300px;
    }
    #bwa-content {
        max-width: 1300px;
    }
}
@media only screen and (max-width: 1425px){
    .bwa-controls {
        max-width: 1100px;
    }
    #bwa-content {
        max-width: 1100px;
    }
}
@media only screen and (max-width: 1225px){
    .bwa-controls {
        max-width: 100%;
        margin: 0 75px;
    }
    #bwa-content {
        max-width: 100%;
        margin: 50px 75px;
    }
}
@media only screen and (max-width: 990px){
    .bwa-controls {
       margin: 0 45px;
    }
}
@media only screen and (max-width: 767px){
    .bwa-controls {
        margin: 0 40px;
    }
    #bwa-content {
        margin: 25px 40px;
    }
    #bwa-content #bwa-main .next-chapter, #bwa-content #bwa-main .prev-chapter {
        padding: 4px 9px 6px;
        height: 32px;
        width: 32px;
    }
    .bwa-book-selector .sel__box {
        width: 450px;
    }
    .sel__box__options {
        font-size: 14px;
        padding: 1px;
    }
}
@media only screen and (max-width: 500px){
    .bwa-controls .bwa-book-selector.bwa-selector.active .sel__box {
        display: flex;
    }
    .bwa-book-selector .sel__box {
        width: 340px;
    }
    .sel__box__options {
        /*font-size: 12px;*/
        /*padding: 0px;*/
    }
    #bwa-content #bwa-main .next-chapter{
        right: 0px;
    }
    #bwa-content #bwa-main .prev-chapter {
        left: 0px;
    }
}
@media only screen and (max-width: 400px){
    .bwa-controls {
        margin: 0 10px;
    }
    #bwa-content {
        margin: 25px 40px;
    }
    #bwa-content #bwa-main .next-chapter, #bwa-content #bwa-main .prev-chapter {
        top: 65%;
        padding: 2px 7px 4px;
        height: 28px;
        width: 28px;
    }
}
@media only screen and (max-width: 355px){
    .bwa-chapter-selector .sel__box, .bwa-book-selector .sel__box {
        width: 315px;
    }
    .bwa-controls .bwa-selector {
        font-size: 0.9rem;
        width: 315px;
    }
}


#bwa-text h2{
    font-size: 32px;
}
#bwa-text span, #bwa-text p{
    color: #333;
}
#bwa-text span:not(.versenumber):not(.reaf-arrows){
    margin-right: 5px;
}
#bwa-text span.versenumber{
    color: #888;
}
#bwa-text span.versenumber sup{
    font-size: 12px;
    bottom: 0.9ex;
}
#bwa-text span.verse-highlight{
    color: rgba(82,130,200,1);
    font-weight: 700;
}


.page-template-bwa #tatsu-header-wrap.stuck .tatsu-header.default-hidden.sticky{
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
    border-style: hidden !important;
}
.page-template-bwa #tatsu-header-wrap.stuck .tatsu-header.sticky-hidden{
    visibility: visible !important;
    height: inherit !important;
    opacity: inherit !important;
    border-style: inherit !important;
}
.page-template-bwa #tatsu-header-wrap.stuck{
    position: absolute !important;
}
.page-template-bwa h3{
    font-size: 24px;
}

#bwa-text .ref-list{
    display: none;
    position: absolute;
    z-index: 999;
    padding: 15px 10px 0 10px;
    background-color: #fff;
    border-color: rgb(221, 220, 218);
    border-style: solid;
    border-width: 1px;
    box-shadow: rgba(173, 169, 164, 0.25) 3px 3px 6px 0px;
}
#bwa-text .ref-list .ref-list-arrow1{
    position: absolute;
    top: -20px;
    left: 51%;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgb(221, 220, 218);
    margin-left: -10px;
}
#bwa-text .ref-list .ref-list-arrow2{
    position: absolute;
    top: -19px;
    left: 51%;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgb(255, 255, 255);
    margin-left: -10px;
}
#bwa-text .ref-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 300px;
    min-width: 300px;
    text-align: center;
}
#bwa-text .ref-list ul li{
    cursor: pointer;
}
#bwa-text .ref-list ul p{
    text-align: left;
}
#bwa-text .ref-list ul p .list-loading{
   top: auto;
}

#bwa-text span.refs:after{
    position: relative;
    margin: 0 3px;
    content: '\f362';
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    color: rgba(57,169,31,1);
    font-weight: 600;
    cursor: pointer;
}
#bwa-text span.lexs:after{
    position: relative;
    margin: 0 3px;
    content: '\f0ca';
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    color: rgba(35,50,116,1);
    font-weight: 600;
    cursor: pointer;
}

#bwa-text span.notes:after, #bwa-notes span.notes:before{
    position: relative;
    margin: 0 3px;
    content: '\f249';
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    color: rgba(255,0,4,1);
    font-weight: 100;
    cursor: pointer;
}
#bwa-notes span.notes{
    font-weight: 600;
    cursor: pointer;
}
#bwa-notes span.notesclose{
    color: rgba(255,0,4,1);
    float: right;
    cursor: pointer;
}

.cleaner-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0,0,0,0);
    display: none;
}
.audiogen-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0, 0, 0 , 0.35);
    display: none;
}
.share-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0,0,0,0);
    display: none;
}
.comment-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0, 0, 0 , 0.35);
}
.edit-note-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0, 0, 0 , 0.35);
}
.edit-verse-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0, 0, 0 , 0.05);
}
.edit-chapter-title-overlay, .edit-refs-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0, 0, 0 , 0.35);
}
.edit-intro-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background-color: rgba(0, 0, 0 , 0.35);
}
.add-one-ref-overlay, .edit-one-ref-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000000;
    background-color: rgba(0, 0, 0 , 0.55);
}

#bwa-notes{
    border-top: 1px solid rgba(255,0,4,1);
    margin-top: 50px;
}
#bwa-notes .note{
    display: none;
    margin-top: 30px;
    color: #555;
}


#bwa-user-menu{
    position: fixed;
    width: 500px;
    /* left: 38%; */
    margin-left: calc(50% - 250px);
    bottom: -10px;
    font-size: 16px;
    z-index: 10000000;
}
#bwa-listen-menu{
    display: none;
    position: fixed;
    width: 400px;
    /* left: 38%; */
    margin-left: calc(50% - 200px);
    bottom: -10px;
    font-size: 16px;
    z-index: 100000000;
}
#bwa-share-panel{
    display: none;
    width: 250px;
    position: absolute;
    z-index: 1300000000;
    box-shadow: rgba(173, 169, 164, 0.25) 3px 3px 6px 0px;
}
#bwa-edit-menu{
    display: none;
    position: fixed;
    width: 900px;
    /* left: 38%; */
    margin-left: calc(50% - 450px);
    bottom: -10px;
    font-size: 16px;
    z-index: 110000000;
}
.bwa-menu-list{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
    overflow: hidden;
    text-align: center;
}
li.bwa-menu-item{
    width: 25%;
    display: table-cell;
    font-size: 20px;
    font-weight: 700;
    border-right: 1px solid rgba(82,130,200,1);
    border-top: 1px solid rgba(82,130,200,1);
    border-bottom: 1px solid rgba(82,130,200,1);
    padding: 6px 0;
    text-decoration: none;
    vertical-align: middle;
    overflow: hidden;
    background-color: #fff;
    /* background-image: -webkit-linear-gradient(#cfcfcf 0%, #b2b7ce 100%); */
    /* background-image: linear-gradient(#cfcfcf 0%, #b2b7ce 100%); */
    /* text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66); */
    /* box-shadow: inset 0 3px 0 rgba(255,255,255,0.5), 0 3px 6px rgba(0, 0, 0, 0.5); */
    /* border-radius: 5%; */
    margin-right: 10px;
    color: rgba(82,130,200,1);
    cursor: pointer;
    font-weight: 100;
}
li.bwa-menu-item.fontsizer{
    width: 12.5%;
    padding: 20px 0;
}
li#bwa-fontminus{
    font-size: 16px;
}
#bwa-listen-menu li.bwa-menu-item{
    width: 33%;
}
#bwa-listen-menu #bwa-listener-play{
    display: none;
}
#bwa-edit-menu li.bwa-menu-item{
    width: 25%;
}
#bwa-edit-menu #bwa-edit-intro{
    width: 75%;
}
@media (hover: hover) {
    li.bwa-menu-item:hover {/*oHover*/
       /*background-image: -webkit-linear-gradient(#cfcfcf 0%, #8d9ad3 100%); */
       /*background-image: linear-gradient(#cfcfcf 0%, #8d9ad3 100%); */
       background-color: rgba(35,50,116,1);
   }   
}
li.bwa-menu-item:active,  li.bwa-menu-item.activated{/*onClick*/
    /*background-image: -webkit-linear-gradient(#233274 0%, #d0cfcf 100%); */
    /* background-image: linear-gradient(#233274 0%, #d0cfcf 100%); */
    /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 3px 6px rgba(35, 50, 116, 0.50); */
    background-color: rgba(82,130,200,1);
    color: #fff;
}
li.bwa-menu-item:first-child, #bwa-listener-play{
    border-left: 1px solid rgba(82,130,200,1);
}
li.bwa-menu-item:last-child{
    border-right: 1px solid rgba(82,130,200,1);
    margin-right: 0px;
}
li.bwa-menu-item i{
    /*font-weight: 100;*/
}
li.bwa-menu-item a{
    color: rgba(82,130,200,1);
    width: 100%;
    display: block;
    height: 100%;
}
#bwa-edit-menu li.bwa-menu-item a{
    color: rgba(27,123,63,1);
}
@media (hover: hover) {
    li.bwa-menu-item:hover a{
        color: #fff;
    }
    #bwa-edit-menu li.bwa-menu-item:hover a{
        color: #fff;
    }
}
li.bwa-menu-item:active a, li.bwa-menu-item.activated a, #bwa-edit-menu li.bwa-menu-item:active a, #bwa-edit-menu li.bwa-menu-item.activated a{
    color: #fff;
}
.bwa-menu-item .bwa-menu-text{
    display: block;
    /*margin-top: 10px;*/
    font-size: 16px;
}
.dog-stack .icon-stack-1x {
    font-size: 0.6em;
}
.context-hint{
    display: none;
    position: fixed;
    width: 500px;
    margin-left: calc(50% - 250px);
    bottom: 59px;
    font-size: 18px;
    z-index: 1000000000;
    text-align: center;
    padding: 3px;
    background-color: #fff;
    border: 1px solid #233274;
}
@media only screen and (max-width: 800px){
    #bwa-edit-menu {
        width: 100%;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 500px){
    #bwa-user-menu, #bwa-listen-menu {
        width: 100%;
        margin: 0 auto;
    }
    .context-hint {
        font-size: 16px;
    }
}
@media only screen and (max-width: 425px){
    li.bwa-menu-item {
        font-size: 18px;
    }
    li#bwa-fontminus {
        font-size: 14px;
    }
    .bwa-menu-item .bwa-menu-text{
        font-size: 14px;
    }
}    
@media only screen and (max-width: 374px){
    li.bwa-menu-item {
        font-size: 16px;
    }
    .bwa-menu-item .bwa-menu-text{
        font-size: 12px;
    }
    li#bwa-fontminus {
        font-size: 12px;
    }
    .dog-stack .icon-stack-1x{
        font-size: 0.5em;
    }
    .context-hint {
        font-size: 14px;
    }
}
@media only screen and (max-width: 330px){
    li.bwa-menu-item {
        font-size: 15px;
    }
    .bwa-menu-item .bwa-menu-text{
        font-size: 11px;
    }
    li#bwa-fontminus {
        font-size: 12px;
    }
    .dog-stack .icon-stack-1x{
        font-size: 0.5em;
    }
}

.verse-marked{
    border-radius: 20px 0px 20px 0px;
    background-image: -webkit-linear-gradient(-100deg, rgb(255 252 150 / 45%), rgb(255 252 150 / 85%));
    background-image: linear-gradient(-100deg, rgb(255 252 150 / 45%), rgb(255 252 150 / 85%));
    padding: 0 10px;
}
#bwa-text span.verse-fav:after{
    position: relative;
    margin: 0 3px;
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    color: rgba(234,107,53,1);
    font-weight: 100;
    /*cursor: pointer;*/
}

#favs-controller{
    cursor: pointer;
}
.favs-mini-panel {
    position: fixed;
    /* top: 230px; */
    bottom: 5%;
    left: -10px;
    border-radius: 0;
    z-index: 12000;
    -webkit-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
}
.favs-mini-panel.mini-panel-open{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.favs-btn {
    cursor: pointer;
    width: 80px;
    height: 70px;
    padding: 5px 5px 5px 15px;
    background-color: rgba(244, 244, 244, 1);
    border-color: rgba(234,107,53,0.25);
}
.favs-btn i {
    color: rgba(234,107,53,1);
    font-size: 20px;
    /*margin-left: 5px;*/
}
.favs-qty{
    display: block;
    font-size: 17px;
    margin-top: 5px;
}

.favs-container{
    max-width: 1500px;
    margin: 50px auto; 
}
.favs-listing{
    display: flex;
    flex-wrap: wrap;
}
.fav-card{
    padding: 0 20px;
    margin: 20px 0;
    max-width: calc((100% / 3) - 1rem);
    min-width: calc((100% / 3) - 1rem);
}
.fav-content{
    box-shadow: 0px 5px 10px 0px rgba(117, 119, 124, 0.1);
    height: 100%;
    padding: 10px;
}
.fav-preview p{
    margin-bottom: 15px;
}
.fav-actions{
    border-top: 1px solid #ddd;
    padding: 10px 0;
}
.fav-actions .fav-go-to{
    display: inline-block;
    float: left;
    margin-bottom: 10px
}
.fav-actions .fav-delete{
    display: inline-block;
    float: right;
    margin-bottom: 10px;
    cursor: pointer;
}
.fav-actions .fav-delete i{
    margin-right: 5px;
}
@media only screen and (max-width: 991px){
    .favs-mini-panel {
        bottom: 9%;
    }
    .favs-btn i {
        font-size: 16px;
    }
    .favs-qty {
        font-size: 13px;
    }
    .favs-btn {
        width: 48px;
        height: 60px;
    }
    .fav-card {
        padding: 0 20px;
        margin: 20px 0;
        max-width: calc((100% / 2) - 1rem);
        min-width: calc((100% / 2) - 1rem);
    }
}
@media only screen and (max-width: 550px){
    .fav-card {
        max-width: calc((100% / 1) - 1rem);
        min-width: calc((100% / 1) - 1rem);
    }
}

#edit-controller{
    cursor: pointer;
}
.edit-mini-panel {
    position: fixed;
    /* top: 230px; */
    bottom: 25%;
    right: -10px;
    border-radius: 0;
    z-index: 12000;
    -webkit-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
}
.edit-mini-panel.mini-panel-open{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.edit-btn {
    cursor: pointer;
    width: 80px;
    height: 70px;
    padding: 5px 15px 8px 10px;
    background-color: rgba(231, 252, 227, 1);
    border-color: rgba(27,123,63,1);
}
.edit-btn i {
    color: rgba(27,123,63,1);
    font-size: 24px;
    /*margin-left: 5px;*/
}
@media only screen and (max-width: 991px){
    .edit-mini-panel {
        bottom: 35%;
    }
    .edit-btn i {
        font-size: 18px;
    }
    .edit-btn {
        width: 48px;
        height: 60px;
    }
}

#audioplayer, #audioplayer2{
    display: none !important;
}

li.bwa-menu-item.waiting{
    cursor: not-allowed !important;
    background-image: -webkit-linear-gradient(#cfcfcf 0%, #da8383 100%) !important;
    background-image: linear-gradient(#cfcfcf 0%, #da8383 100%) !important;
}
.bwa-menu-item.waiting a{
    cursor: not-allowed !important;
}

.error{
    text-align: center;
    top: 50%;
    position: absolute;
    left: 35%;
    color: red;
    font-size: 24px;
    padding: 20px;
    background-color: #fff;
}


/*Framed and comparator BWA*/
.page-template-bwa_compare_frame #tatsu-header-container, .page-template-bwa_compare_frame #tatsu-footer-container{
    display: none !important;
}
.page-template-bwa_compare_frame  #bwa-content {
    margin: 25px 40px 70px;
}

.page-template-bwa_comparator .bwa-header .bwa-column-first {
    width: 80px;
    height: 80px;
}
.page-template-bwa_comparator .bwa-header .bwa-column .icon {
    font-size: 75px;
}
.page-template-bwa_comparator .bwa-header .bwa-column-second {
    margin-left: 30px;
}
.page-template-bwa_comparator .bwa-header-title {
    font-size: 50px;
}

.bwa-compare-type-btn{
    position: absolute;
    right: 10%;
    background-color: #233274;
    color: #fff;
    padding: 10px;
    margin-top: -52px;
    cursor: pointer;
}
.bwa-compare-type-btn a{
    color: #fff;
    font-size: 20px;
    margin-left: 15px;
}
.bwa-compare-container{
    max-width: 1800px;
    margin: 0px auto 50px;
}
.bwa-compare-bible{
    width: 50%;
    float: left;
    display: inline-block;
    padding: 5px;
    text-align: center;
}
.bwa-compare-bible.b-3{
    display: none;
}
.bwa-bible-selector{
    /*text-align: center;*/
}
.bwa-bible-frame{
    text-align: center;
}

.bwa-bible-selector {
    font-size: 1rem;
    display: inline-block;
    margin: 10px 0;
    width: 300px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}
.bwa-bible-selector::before {
    position: absolute;
    content: '\f063';
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    color: #747474;
    right: 20px;
    top: calc(50% - 0.5em);
    font-weight: 900;
}
.bwa-bible-selector.active::before {
    transform: rotateX(-180deg);
}
.bwa-bible-selector.active .sel__placeholder {
  visibility: hidden;
}
.bwa-bible-selector.active .sel__placeholder::before {
  visibility: visible;
}
.bwa-bible-selector.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}
.bwa-bible-selector .sel__box__options, .bwa-bible-selector .sel__placeholder{
    text-transform: uppercase;
}
/* ----- Select Box Black Panther ----- */
.bwa-bible-selector {
  border-bottom: 1px solid rgba(35,50,116,0.35);
}


@media only screen and (max-width: 600px){
    #be-themes-back-to-top {
        bottom: 65px;
        right: 0px;
        z-index: 999999999;
        /*display: none !important;*/
    }
}

.bible-landing{
    padding: 50px 0px;
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid #233274;
}
.bible-landing-row{
    margin-bottom: 40px;
    clear: both;
    overflow:hidden;
}
.bible-landing .bible-search{
    /*max-width: 500px;*/
}
span.landing-label{
    text-transform: uppercase;
    color: rgba(35,50,116,1);
}
span.landing-label i{
    font-size: 22px;
}
span.landing-label a{
    color: rgba(35,50,116,1);
}
span.landing-label a:hover{
    color: rgba(47,113,194,1);
}
#bible-search input{
    min-width: 250px;
    border: 1px solid rgba(35,50,116,1);
    background-color: #fff;
    border-radius: 0;
    padding: 10px;
}
#bible-search{
    display: inline-block;
    margin-left: 20px;
}
#bible-search button{
    background: rgba(35,50,116,1);
    color: #ffffff;
    padding: 12px;
    margin: 0px 0 0 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    position: absolute;
}
#bible-search button i{
    margin-left: 10px;   
}
.bible-link{
    display: inline-block;
    float: left;
    width: 20%;
}
.bible-docs .left-docs{
    float: left;
    display: inline-block;
    width: 50%;
}
.bible-docs .right-docs{
    float: left;
    display: inline-block;
    width: 50%;
}
.bible-docs h5{
    font-size: 22px;
    border-bottom: 1px solid rgba(35,50,116,1);
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: rgba(35,50,116,1);
}
.bible-docs ul{
    list-style: square;
}
.bible-docs ul li::before {
  content: "\25A0";  
  color: rgba(35,50,116,1);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 22px;
}
.bible-docs ul li a{
    color: rgba(35,50,116,1);
}
.bible-docs ul li a:hover{
    color: rgba(47,113,194,1);
}

.bible-landing-export-row{
    padding-top: 30px;
    border-top: 1px solid #233274;
}

@media only screen and (max-width : 1200px) {
    .bible-link{
        width: 33%;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width : 1024px) {
    .comparator-link{
        display: none;
    }
    .bible-link{
        width: 50%;
    }
}
@media only screen and (max-width : 550px) {
    .bible-link{
        width: 100%;
        margin-bottom: 20px;
    }
    .bible-docs .left-docs{
        width: 100%;
    }
    .bible-docs .right-docs{
        width: 100%;
    }
    .bible-docs ul{
        margin-bottom: 0;
    }
}
@media only screen and (max-width : 479px) {
    #bible-search input {
        min-width: 200px;
        width: 200px;
    }
}
@media only screen and (max-width : 350px) {
    #bible-search input {
        min-width: 150px;
        width: 150px;
    }
}

.searchtitle{
    padding: 0 20px;
}

#comment-controller, #edit-note-controller,
#edit-chapter-title-controller, #edit-intro-controller,
#edit-refs-controller, #add-one-ref-controller,
#edit-one-ref-controller{
    display: none;
    position: fixed;
    background-color: #fff;
    width: 500px;
    left: 50%;
    margin-left: -250px;
    padding: 25px;
    top: 10%;
    border: 2px solid rgba(82,130,200,1);
    text-align: center;
    font-size: 16px;
    z-index: 10000000000;
}
#edit-note-controller, #edit-intro-controller{
    width: 800px;
    margin-left: -400px;
}
#edit-verse-controller{
    display: none;
}
#add-one-ref-controller, #edit-one-ref-controller{
    z-index: 100000000000;
}
div[aria-label="Enlace bíblico - Auto-Generator"]{
    z-index: 100000000000 !important;
}
#comment-controller .comment-btn, #edit-note-controller .edit-note-btn,
#edit-verse-controller .edit-verse-btn, #edit-chapter-title-controller .edit-chapter-title-btn,
#edit-intro-controller .edit-intro-btn, #edit-refs-controller .edit-refs-btn,
#edit-refs-controller .edit-refs-delete-all-btn, #edit-refs-controller .add-ref-btn,
#add-one-ref-controller .add-one-ref, #edit-one-ref-controller .edit-one-ref-btn{
    font-size: 16px;
    padding: 10px;
    color: #fff;
    background-color: rgba(82,130,200,1);
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
#edit-note-controller .edit-note-btn, #edit-verse-controller .edit-verse-btn,
#edit-chapter-title-controller .edit-chapter-title-btn, #edit-intro-controller .edit-intro-btn,
#edit-refs-controller .edit-refs-btn, #add-one-ref-controller .add-one-ref, #edit-one-ref-controller .edit-one-ref-btn{
    background-color: rgba(27,123,63,1);
}
#comment-controller .comment-btn:hover{
    background-color: rgba(47,113,194,1);
}
#edit-note-controller .edit-note-btn:hover, #edit-verse-controller .edit-verse-btn:hover,
#edit-chapter-title-controller .edit-chapter-title-btn:hover, #edit-intro-controller .edit-intro-btn:hover,
#edit-refs-controller .edit-refs-btn:hover, #add-one-ref-controller .add-one-ref:hover, #edit-one-ref-controller .edit-one-ref-btn:hover{
    background-color: rgba(144, 205, 133, 1);
}
#edit-refs-controller .edit-refs-delete-all-btn{
    background-color: rgba(162,28,38,1);
}
#edit-refs-controller .edit-refs-delete-all-btn:hover{
    background-color: rgba(255,0,4,1);
}
#edit-refs-controller .add-ref-btn{
    background-color: rgba(82,130,200,1);
}
#edit-refs-controller .add-ref-btn:hover{
    background-color: rgba(35,50,116,1);
}
#comment-controller .comment-btn i, #edit-note-controller .edit-note-btn i,
#edit-verse-controller .edit-verse-btn i, #edit-chapter-title-controller .edit-chapter-title-btn i,
#edit-intro-controller .edit-intro-btn i, #edit-refs-controller .edit-refs-btn i,
#edit-refs-controller .edit-refs-delete-all-btn i, #edit-refs-controller .add-ref-btn i{
    margin-left: 10px;
}
#comment-controller .comment-modal-title, #edit-note-controller .edit-note-title,
#edit-chapter-title-controller .edit-chapter-title-title, #edit-intro-controller .edit-intro-title,
#edit-refs-controller .edit-refs-title{
    font-weight: initial;
    color: rgba(82,130,200,1);
}
#edit-note-controller .edit-note-title, #edit-chapter-title-controller .edit-chapter-title-title,
#edit-intro-controller .edit-intro-title, #edit-refs-controller .edit-refs-title{
    color: rgba(27,123,63,1);
}
#comment-controller .comment-modal-title i, #edit-note-controller .edit-note-title i,
#edit-chapter-title-controller .edit-chapter-title-title i, #edit-intro-controller .edit-intro-title i,
#edit-refs-controller .edit-refs-title i{
     margin-right: 10px;
}
#comment-controller .comment-modal-about, #edit-note-controller .edit-note-about,
#edit-chapter-title-controller .edit-chapter-title-about, #edit-intro-controller .edit-intro-about,
#edit-refs-controller .edit-refs-about{
    font-size: 16px;
    line-height: 26px;
    font-style: italic;
}
#comment-controller .comment-modal-about .comment-modal-about-entry{
    font-style: initial;
    font-weight: 600;
    font-size: 26px;
}
#comment-controller .comment-modal-form{
    line-height: 24px;
    margin-bottom: 10px;
}
#comment-controller .comment-modal-consent{
    line-height: 18px;
    font-size: 14px;
    margin: 10px 0;
}
.comment-close, .edit-note-close, .edit-chapter-title-close, .edit-intro-close, .edit-refs-close, .add-ref-close, .edit-one-ref-close{
    font-size: 28px;
    position: absolute;
    top: -10px;
    right: -10px;
    color: rgba(82,130,200,1);
    background-color: #fafafa;
    border-radius: 50%;
    cursor: pointer;
}
#comment-controller .form_messages, #edit-note-controller .form_messages,
#edit-verse-controller .form_messages, #edit-chapter-title-controller .form_messages,
#edit-intro-controller .form_messages, #edit-refs-controller .form_messages{
    margin-top: 10px;
    font-size: 18px;
}
#comment-controller .form_messages .errors, #edit-note-controller .form_messages .errors,
#edit-verse-controller .form_messages .errors, #edit-chapter-title-controller .form_messages .errors,
#edit-intro-controller .form_messages .errors, #edit-refs-controller .form_messages .errors{
    color: rgba(255,0,4,1);
}
#comment-controller .form_messages .successes, #edit-note-controller .form_messages .successes,
#edit-verse-controller .form_messages .successes, #edit-chapter-title-controller .form_messages .successes,
#edit-intro-controller .form_messages .successes, #edit-refs-controller .form_messages .successes{
    color: rgba(57,169,31,1);
}
#edit-chapter-title-controller p, #edit-refs-controller p{
    margin-bottom: 0px;
}
#edit-refs-controller p.versetoeditrefs{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}
#edit-refs-controller p.refstoeditrefs{
    text-decoration: underline;
}
#edit-chapter-title-controller p.current-title{
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 20px;
}
#edit-chapter-title-controller form input{
    margin-bottom: 15px;
}
#edit-refs-controller .versetoeditcurrentrefs{
    list-style: none;
    margin-top: 10px;
}
#edit-refs-controller .versetoeditcurrentrefs li{
    font-weight: 600;
}
#edit-refs-controller .versetoeditcurrentrefs i{
    cursor: pointer;
    margin-left: 5px;
}
#edit-refs-controller .versetoeditcurrentrefs i.fa-pencil-alt{
        color: rgba(35,50,116,1);
}
#edit-refs-controller .versetoeditcurrentrefs i.fa-trash{
        color: rgba(162,28,38,1);
}

@media only screen and (max-width: 900px){
    #comment-controller, #edit-note-controller, #edit-chapter-title-controller, #edit-intro-controller, #edit-refs-controller{
        width: 400px;
        margin-left: -200px;
        top: 2%;
        padding: 10px;
    }
    #comment-controller textarea{
        height: 100px;
    }
    #comment-controller .form_messages, #edit-note-controller .form_messages, #edit-chapter-title-controller .form_messages,
    #edit-intro-controller .form_messages, #edit-refs-controller .form_messages{
        font-size: 16px;
    }
    #comment-controller .comment-modal-consent{
        line-height: 16px;
        font-size: 12px;
        margin: 5px 0;
    }
    #comment-controller .comment-modal-about .comment-modal-about-entry {
        font-size: 22px;
        margin-bottom: 10px;
    }
    #comment-controller .comment-modal-about, #edit-note-controller .edit-note-about,
    #edit-chapter-title-controller .edit-chapter-title-about, #edit-intro-controller .edit-intro-about,
    #edit-refs-controller .edit-refs-about{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }   
}
@media only screen and (max-width: 450px){
    #comment-controller, #edit-note-controller, #edit-chapter-title-controller, #edit-intro-controller, #edit-refs-controller{
        width: 340px;
        margin-left: -170px;
        top: 2%;
        padding: 10px;
        font-size: 14px;
    }
    #comment-controller textarea{
        height: 80px;
    }
    #comment-controller .form_messages, #edit-note-controller .form_messages,
    #edit-chapter-title-controller .form_messages, #edit-intro-controller .form_messages,
    #edit-refs-controller .form_messages{
        font-size: 14px;
    }
    #comment-controller .comment-modal-consent{
        line-height: 15px;
        font-size: 11px;
    }
    #comment-controller .comment-btn, #edit-note-controller .edit-note-btn,
    #edit-chapter-title-controller .edit-chapter-title-btn, #edit-intro-controller .edit-intro-btn,
    #edit-refs-controller .edit-refs-btn, #edit-refs-controller .edit-refs-delete-all-btn,
    #edit-refs-controller .add-ref-btn{
        font-size: 14px;
    }
}
@media only screen and (max-width: 374px){
    #comment-controller, #edit-note-controller, #edit-chapter-title-controller, #edit-intro-controller, #edit-refs-controller{
        width: 300px;
        margin-left: -150px;
        top: 2%;
        padding: 5px;
        font-size: 12px;
    }
    #comment-controller .form_messages, #edit-note-controller .form_messages, 
    #edit-chapter-title-controller .form_messages, #edit-intro-controller .form_messages,
    #edit-refs-controller .form_messages{
        font-size: 12px;
    }
    #comment-controller .comment-modal-consent{
        line-height: 14px;
        font-size: 10px;
    }
    #comment-controller .comment-btn, #edit-note-controller .edit-note-btn,
    #edit-chapter-title-controller .edit-chapter-title-btn, #edit-intro-controller .edit-intro-btn,
    #edit-refs-controller .edit-refs-btn, #edit-refs-controller .edit-refs-delete-all-btn,
    #edit-refs-controller .add-ref-btn{
        font-size: 13px;
    }
    #comment-controller .comment-modal-about .comment-modal-about-entry {
        font-size: 18px;
    }
    #comment-controller .comment-modal-about, #edit-note-controller .edit-note-about,
    #edit-chapter-title-controller .edit-chapter-title-about, #edit-intro-controller .edit-intro-about,
    #edit-refs-controller .edit-refs-about{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }    
}

.lexico-container {
    max-width: 1100px;
    margin: 50px auto;
}
.alphalist{
    margin: 0 25px 30px 25px;
}
.lexico-listing{
    margin: 0 25px 0px 25px;
}
.letter-sep{
    margin: 15px 0 0 0;
}
.lexico-card{
    margin-bottom: 5px;
}
.lexico-list{
    cursor: pointer;
    font-size: 20px;   
}
.lexico-main{
    margin-top: 10px;
    display: none;
    border: 1px solid rgba(35,50,116,1);
    padding: 20px 20px 0 20px;
}
.lexico-title{
    border-bottom: 1px solid rgba(35,50,116,1);
    margin-bottom: 10px;
    font-size: 20px;
    color: rgba(35,50,116,1);
}
.lexico-content{
    line-height: 36px;
    color: rgba(51, 51, 51, 1);
}

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

    #mce-modal-block {
    }

    .mce-window {
        width: auto !important;
        top: 10% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: none !important;
        margin: 0 20px !important;
    }

    .mce-window-head {
        background: #fff !important;
    }

    .mce-window-body {
        background: #fff !important;
    }

    .mce-foot {
    }

    .mce-foot > .mce-container-body {
        padding: 10px !important;
    }

    .mce-foot button {
    }

    .mce-panel {
        max-width: 100% !important;
    }

    .mce-container {
        max-width: 100% !important;
        height: auto !important;
    }

    .mce-container-body {
        max-width: 100% !important;
        height: auto !important;
    }

    .mce-form {
        padding: 10px !important;
    }

    .mce-tabs {
        max-width: 100% !important;
    }

    .mce-tabs .mce-tab, .mce-tabs .mce-tab.mce-active {
    }

    .mce-formitem {
        margin: 10px 0 !important;
    }

    .mce-btn > button {
    }

    .mce-abs-layout-item {
        position: static !important;
        width: auto !important;
    }

    .mce-abs-layout-item.mce-label {
        display: block !important;
    }

    .mce-abs-layout-item.mce-textbox {
        -webkit-box-sizing: border-box !important;
        -moz-box-sizing: border-box !important;
        box-sizing: border-box !important;
        display: block !important;
        width: 100% !important;
    }

    .mce-abs-layout-item.mce-combobox {
        display: flex !important;
    }

    .mce-abs-layout-item.mce-combobox > .mce-textbox {
        -ms-flex: 1 1 auto;
        -webkit-flex: 1 1 auto;
        flex: 1 1 auto;
        height: 29px !important;
    }
}

textarea.verse-editing{
    /*z-index: 1100000000;*/
    font-size: 18px;
    height: 7em;
    /*position: absolute;*/
}
.verse-editing-buttons{
    margin: 0px 0 20px 20px;
}
.verse-editing-btn{
    font-size: 40px;
    margin-right: 10px;
    cursor: pointer;
    background: #fff;
    border: none;
}
.verse-editing-save{
    color: rgba(27,123,63,1);
}
.verse-editing-save:hover{
    color: rgba(57,169,31,1);
}
.verse-editing-close{
    color: rgba(111,23,24,1);
}
.verse-editing-close:hover{
    color: rgba(255,0,4,1);
}


.export-container {
    max-width: 1500px;
    margin: 50px auto;
}
.book-list, .bulk-export-list{
    list-style: none;
    cursor: pointer;
    display:inline-block;
}
.book-list:hover, .bulk-export-list:hover{
    color: rgba(47,113,194,1);
}
.book-export-listing{
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 50px;
}
.bulk-export{
    display: inline-block;
    float: left;
    width: 50%;
}

.mce-container.mce-floatpanel.mce-fixed.mce-menu-align.mce-in{
    z-index: 2247483647 !important;
}