/* universal level 0 ///////////////////////////////////////////////////////////////////////////*/
* {
    word-break: break-word;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-color: hsl(0, 0%, 75%) hsl(0, 0%, 90%);
    scrollbar-width: thin;
}

*:focus {
    outline: none;
}

input[type="file"] {
    display: none;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

textarea,
input {
    font-family: inherit;
    font-size: inherit;
}

::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    background: hsl(0, 0%, 90%);
}

.scrollBarBorderRadiusR::-webkit-scrollbar {
    border-radius: 0px 10px 10px 0px;
}

.scrollBarBorderRadiusB::-webkit-scrollbar {
    border-radius: 0px 0px 10px 10px;
}

.scrollBarBorderRadiusAll::-webkit-scrollbar {
    border-radius: 10px
}

.scrollBarBorderRadiusNone::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 75%);
    border-radius: 100px;
    border: 4px solid transparent;
    background-clip: content-box;
    min-height: 15px;
    min-width: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 65%);
}

:root {
    --niceTextShadow:
        0px 0px 0.5px black,
        0px 0.75px 0.5px black,
        0px -0.75px 0.5px black,
        0.75px 0px 0.5px black,
        -0.75px 0px 0.5px black,
        -0.75px -0.75px 0.5px black,
        -0.75px 0.75px 0.5px black,
        0.75px -0.75px 0.5px black,
        0.75px 0.75px 0.5px black;

    --blue: #005eff;
    --green: #00cc03;
    --red: #ff3333;
    --orange: #ff7919;
    --yellow: #ffc400;
    --brown: #995e33;
    --lightBlue: #00beff;
    --purple: #8600ff;
    --pink: #ff6681;

    --bodyZoomRatio: 1;
    --bodyHeaderHeight: 50px;
    --addressBarHeight: 0px;
}

.uncover {
    visibility: visible;
}

.cover {
    visibility: hidden;
}

.disabled {
    pointer-events: none;
}

.hide {
    display: none !important;
}

.limit1Line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    flex-shrink: 1;
}

body {
    font-size: 16px;
    color: black;
    font-family: Helvetica;
    overflow-y: scroll;
    overflow-x: hidden;
    min-width: 500px;
    min-height: calc(100vh / var(--bodyZoomRatio) - var(--addressBarHeight));
    background-color: hsl(0, 0%, 95%);
    zoom: var(--bodyZoomRatio)
}

/* universal level 1////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.bh_homePageImg {
    height: 25px;
    width: 25px;
    margin-right: 3px;
    margin-left: 12px;
    transition: transform 0.3s;
}

.bh_homePageText {
    font-size: 18px;
    line-height: 1;
}

.bh_homePage {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.bh_homePageLink {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    /* padding-left: 10px; */
    justify-content: center;
    height: 100%;
}

.bh_homePageLink:hover .bh_homePageImg {
    transform: rotate(360deg);
}

.bh_floatRightCompact {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.bh_floatRightCompact>* {
    margin-right: 10px;
}

.bh_floatRightCompact>*:last-child {
    margin-right: 0px;
}

.bh_floatRight {
    display: flex;
    align-items: center;
}

.bh_part {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bold;
    position: relative;
    padding: 5px 10px 5px 5px;
    background: hsl(0, 0%, 90%);
    border-radius: 100px;
    color: black;
    text-decoration: none;
    font-size: 15px;
}

.bh_visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 5px;
    background: hsl(0, 0%, 80%);
    width: 25px;
    height: 25px;
    border-radius: 100px;
}

.bh_part_bibleBooks .bh_visual {
    padding: 3px;
}


.bh_part:hover .bh_visual,
.bh_partActive .bh_visual,
.bh_searchIcon:hover {
    background-color: black;
    color: white;
    fill: white
}

.bodyHeader {
    z-index: 2;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    height: var(--bodyHeaderHeight);
    background: white;
    box-shadow: 0 0 3px hsl(0deg 0% 80%);
    display: flex;
    justify-content: space-between;
    min-width: 500px;
}

.bh_search {
    display: flex;
    align-items: center;
    background: hsl(0, 0%, 90%);
    border-radius: 100px;
    height: 35px;
    overflow: hidden;
}

.bh_floatLeft {
    display: flex;
    align-items: center;
}

.bh_searchInput {
    height: 100%;
    border: 0px;
    background: none;
    /* background: red; */
    font-size: 15px;
    padding-left: 10px;
    flex-grow: 1;
    width: 150px;
    padding-left: 10px;
}

.bh_searchIcon {
    margin-left: 5px;
}

.bh_menuIcon {
    font-size: 25px;
    border-radius: 100px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: gray;
    display: none;
}

.bh_menuIcon:hover,
.bh_menuIconActive {
    color: black;
}

.bh_menuIconActive+.bh_floatRightCompact {
    display: flex
}

.SDActionIcon {
    background-color: hsl(0, 0%, 80%);
    border: 100px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: white;
}

.SDActionIcon:hover {
    background-color: black;
}

.SDpopUpWrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
    overflow-Y: scroll;
    padding: 20px 0;
}

.SDpopUp {
    background: white;
    border-radius: 10px;
    width: 450px;
}



.SDpu_headerPart {
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    line-height: 1;
    border-bottom: 1px solid hsl(0, 0%, 80%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.SDpu_button {
    background-color: gray;
    border-radius: 100px;
    font-weight: bold;
    color: white;
    padding: 10px 15px;
    line-height: 1;
}

.SDpu_button:hover {
    background-color: black;
}

.SDpu_responsePart {
    padding: 10px;
    display: flex;
    justify-content: space-between;
}