
/* body css */
body{
    margin:0;
    box-sizing: border-box;
   
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;

    background-color:white;
}



/* scroll bar */
::-webkit-scrollbar{
    width:4px;
}
::-webkit-scrollbar-thumb{
    background-color:blue;
    border-radius:2000px;
}



.web-views{
    width:100%;
    height:100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}


/* ask question seciton */
.ask-question{
    position: fixed;
    bottom:20px;
    right:20px;
}
.ask-question .panel{
    padding:5px;
    /* width:45px; */
    height:40px;
    background-color:blue;
    box-shadow: 0px 6px 108px 0px rgba(0, 11, 226, 0.446);
    border-radius:10000px;
    display:flex;
    justify-content:center;
    align-items: center;
    gap:10px;
}
.ask-question .panel .content{
    background-color:rgba(255, 255, 255, 0.356);
    border-radius:100000px;
    width:40px;
    height:40px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.ask-question .panel .content span{
    font-size:20px;
}

.ask-question .panel .text{
    color:white;
    font-size:14px;
    font-weight:500;
    padding-right:10px;
}