@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

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

body{   
    width: 100%;
    overflow-x: hidden;
}

.small-b{
    font-weight: 900;
    color: #787878;
}

.title1{
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #040E26;
}

.title2{
    margin: 0;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #00aeef;
    font-size: 1.5rem;
}

/*Side Bar Starts*/

.side-nav{
    width: 20%;
    height: 100vh;
    overflow-y: auto;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /*background-color: black;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-card{
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    font-size: 22px;
}
.menu-card:hover{
    border: none;
    background: #00aeef;
    color: white;
    border-radius: 20%;
    transition: ease 0.8s;
    cursor: pointer;
}

.nav-link{
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    font-size: 22px;
    color: #000000;
}


.my-popover{
    background-color: #00aeef;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}
/* popover body */
.my-popover .popover-body {
    font-size: 14px;
    padding: 5px 10px;
    color: #ffffff;
    font-weight: 600;
}
/* arrow color */
.my-popover .popover-arrow::before,
.my-popover .popover-arrow::after {
  border-right-color: #00aeef;
}

.menu-card .card-body{
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-list{
    width: 80%;
    height: 100vh;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    background-color: #f9f9f9;
    padding: 4%;
}


/*Side Bar Ends*/
          
.main-container{
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: url(https://polymertubing.in/Shubham_Codes/messanger/assets/images/chat-background.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
}



