@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, ul, li, a, input, button{
    font-family: Lato, sans-serif;
    color: #414141; 
    text-decoration: none;
    list-style: none;
}



h1, h2{

    color: #005DFD;
    font-size: 23px;
    font-weight: 700;
}

span.subtext{
    font-size: 16px;
    font-weight: 200;
    color: #4141419f;
    margin-top: 5px;
}

span.titleParagraph{
    font-size: 18px;
    font-weight: 700;
    pointer-events: none;
}

p.verseParagraph{
    font-size: 12px;
    font-weight: 200;
    margin-top: 5px;
    line-height: 1.5;
    pointer-events: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
   
}

/* styling main conteiner */

.conteiner--main{
    max-width: 100vw;
    min-width: 300px;
    height: 100vh;
    display: flex;
    /* flex: 1; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
}

/* styling left conteiner */
.conteiner__left{
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 360px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background-color: #005DFD;
    padding: 40px 20px;
    z-index: 30;
    transition: all 0.5s ease;
}

.conteiner__left img{
    width: 100%;
    height: 100%;

}

.left--text{
    display: flex;
    flex-direction: column;
}

p.left--verse{
    color: #fff;
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}

span.left--bookVerse{
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    margin-top: 48px;
    text-align: center;
}


.left--icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 60px;
    

}

span.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: transparent;
    border-radius: 100%;
    margin-right:10px ;
    transition: all 0.3s ease; 
    cursor: pointer;
}

i.fi{
    pointer-events:none;
}

span.icon:hover{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #005DFD;
    background-color: #fff;
    border-radius: 100%;
    margin-right:10px ;
}

.close{
    display: flex ;
    position: absolute;
    top: 40px;
    right: 20px;
}

/* styling noverse conteiner */
.conteiner__noVerse{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    max-width: 400px;
}

img.noVerse {
    max-width: 340px;
    /* margin-top: -10px; */

}

.txt__noVerse{
    text-align: center;
}

/* styling right conteiner */

.conteiner__main--right{
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    /* justify-content: space-around; */
    margin-left: 380px;
}

.right--verses{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
}

.conteiner__content{
    height: 80%;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    margin-right: 2px;
}

.conteiner__content::-webkit-scrollbar{
    width: 10px;
    
}
.conteiner__content::-webkit-scrollbar-thumb{
    background: #005dfd55;
    border-radius: 5px;
    transition: 0.5s;
}

.conteiner__content::-webkit-scrollbar-thumb:hover{
    background: #005DFD;
    
}

/* .conteiner__content::-webkit-scrollbar-track{
    background: #005dfd8e;
} */


li.verse{
    display: block;
    border: 1.5px solid #005dfd8e;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px;
    max-width: 400px;
    min-width: 100%;
    /* background-color: #005DFD; */
}

.activeVerse {
    border: 1.5px solid transparent;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px;
    color: #fff;
    max-width: 400px;
    min-width: 100%;
    background-color: #005DFD;

}
/* styling btn conteirner */

.right--btns{
    position: absolute;
    /* width: 86%; */
    bottom: 40px;
    display: flex;
    justify-content: start;
    flex-wrap: wrap-reverse;
    margin-top: 40px;
}

.btn--primary{
    background-color: #005DFD;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.btn--primary:hover{
    background-color: #005dfd8e;

}

.btn--secundary{    
    background-color: transparent;
    border: 1.5px solid #005dfd8e;

    border-radius: 5px;
    color: #005DFD;
    padding: 12px 24px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease; 
}

.btn--secundary:hover{  
    background-color: #005dfd8e;
    border: 1.5px solid transparent;
    color: #fff;

}

@media screen and (max-width:670px){
    .conteiner__left{
        display: none;
        width: 100vw;
        height: 100vh;
    }

    .conteiner__main--right{
        margin: 0px 5px;
    }

    .conteiner__noVerse {
        width: 80%;
    }

    .left--icons{
        width: 100%;
        display: flex;
        justify-content: center;
        left: 0px;
    }

    /* span.icon{
        color: #005DFD;
        background-color: #fff;
    } */
}

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

    .right--text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }


    .conteiner__noVerse{

        display: flex;
        justify-content: center;
    }

    img.noVerse {
        max-width: 300px;
    }

    .right--btns{
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 20px;
        width: 100%;
        bottom: 40px;
        padding-top: 40px;
    }

    .btn--secundary{ 
        width: 100%;
        margin: 0px 0px 5px 0px ;  
    }

    .btn--primary{ 
        width: 100%;
        /* margin: 0px 0px 5px 0px ;   */
    }

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


}