*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}

:root{
    --bg-color-pink: #fdf1ef;
    --body-color: #efefef;
    --navDark-color: #1876f2;
    --bg-color: #fff;
    --myBlue-color: #38c2d9;
}

.dark-theme{
    --body-color: #0a0a0a;
    --navDark-color: #000;
    --bg-color: #000;
    --myBlue-color: #000;
}

.font-colors{
    --main-color-black: #000;
    --main-color-white: #ffff;
    --contain-color-1: #626262;
    --contain-color-2: #9a9a9a;
}

body{
    background-color: var(--body-color);
    transition: background 0.3s;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navDark-color);
    padding: 3px 3%;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--myBlue-color);
}

.logo{
    width: 160px;
    margin-right: 45px;
    background-color: var(--myBlue-color);
}

.nav-left, .nav-right{
    display: flex;
    align-items: center;
    background-color: var(--myBlue-color);
}

.nav-left ul li{
    list-style: none;
    display: inline-block;
    background-color: var(--myBlue-color);
}

.nav-left ul li img{
    width: 15px;
    margin: 0 10px;
    background-color: var(--myBlue-color);
}

.nav-user-icon img{
    width: 40px;
    border-radius:50%;
    cursor: pointer;
    background-color: var(--myBlue-color);
}

.nav-user-icon{
    margin-left: 15px;
    background-color: var(--myBlue-color);
}

.search-box{
    background: var(--bg-color);
    width: 150px;
    height: 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color:  var(--bg-color);

}

.search-box img{
    width: 15px;
    background-color:var(--bg-color);

}

.search-box input{
    width: 100%;
    background: transparent;
    padding: 10px;
    outline: none;
    border: 0;
}

.online{
    position: relative;
    
}

.online::after{
    contain: '';
    width: 7px;
    height: 7px;
    border: 1px solid var(--bg-color);
    border-radius: 50%;
    background: #41db51;
    position:absolute;
    top: 0;
    right: 0;
}

.user-status-circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #41db51;
    border: 2px solid #a1ffaa;
    bottom: 0;
    right: 0;
    position: absolute;
  }

.container{
    display:flex;
    justify-content: space-between;
    padding: 0px 0%;
    background-color: var(--bg-color-pink);
}

.left-sidebar{
    flex-basis: 20%;
    position: sticky;
    top: 70px;
    align-self: 0;
    padding: 5px;
    border-radius: 0px;
    color: var(--bg-color);
    background: var(--myBlue-color);
}
.right-sidebar{
    flex-basis: 20%;
    position: sticky;
    top: 70px;
    align-self: 0;
    padding: 5px;
    border-radius: 0px;
    color: var(--bg-color);
    background: var(--myBlue-color);
}

.main-content{
    flex-basis: 100%; 
    transform: translateX(0px); 
}

.imp-links a, .shortcut-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: rgb(201, 0, 140);
    width: fit-content;
    background-color: var(--myBlue-color);

}

.imp-links a img{
    width: 20px;
    margin-right: 15px;
    background-color: transparent;
}

.imp-links a:last-child{
    background-color: var(--myBlue-color);

}

.imp-links{
    background-color: var(--myBlue-color);
}

.shortcut-links a img{
    width: 30px;
    border-radius: 65px;
    margin-right: 15px;    
    background-color: var(--bg-color);
}

.shortcut-links p{
    margin: 25px 0;
    background-color: var(--myBlue-color);
}

.sidebar-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    background-color: var(--myBlue-color);
}

.right-sidebar h4{
    font-weight: 600;
    font-size: 12px;
    background-color: var(--myBlue-color);
}

.sidebar-title a {
    text-decoration: none;
    color: rgb(201, 0, 140);
    font-size: 12px;
    background-color: var(--myBlue-color);
}

.event{
    display: flex;
    font-size: 16px;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: var(--myBlue-color);
}

.left-event{
    font-size: 12px;
    border-radius: 10px;
    height: 55px;
    width: 85px;
    margin-right: 15px;
    padding-top: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px var(--myBlue-color);
}

.event p{
    font-size: 12px;
    color: rgba(201, 0, 141, 0.603);
    background-color: var(--myBlue-color);
    width: -5%;
}

.event a{
    font-size: 14px;
    text-decoration: none;
    color:#2b5b5f;
}

.left-event span{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    color: var(--bg-color);
    background-color: var(--myBlue-color);
    font-size: 12px;
    padding: 10px 0;
}

.sidebar-ads{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
}

.online-list{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.online-list .online img{
    width: 40px;
    border-radius: 50%;    
}

.online-list .online{
    width: 40px;
    border-radius: 50%;    
    margin-right: 15px;
}

.online-list .online::after{
    top: unset;
    bottom: 5px;  
    content: " ";
    background-color: rgb(81, 255, 0);
    color: red;
    font-weight: bold;
}

.story-gallery{
    display:flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.story{
    flex-basis: 1%;
    top: 0px;
    width: 0%;
    padding: 10%;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 0 0 7px 7px;
}

.story img{
    position: center;
    width: 50px;
    border-radius: 50%;
    top: 10%;
    left: 10px;
    border: 2px solid #3a3dff;
}

.story p{
    position: absolute;
    bottom: 0px;
    width: 10%;
    text-align: left;
    color: var(--bg-color);
    font-size: 8px;
}

.story1{
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5)),url(images/status-1.png);

}

.story2{
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5)),url(images/status-2.png);

}
.story3{
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5)),url(images/status-3.png);

}
.story4{
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5)),url(images/status-4.png);

}
.story5{
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5)),url(images/status-5.png);
}

.story.story1 img{
    top: unset;
    left: 50%;
    bottom: 40%;
    transform: translateX(-50%);
    border: 0;
    width: 10px;
}

.write-post-container{
    width: 106%;
    background:  var(--bg-color);
    border-radius: 6px;
    padding: 5px;
    color: #626262;
}

.user-profile{
    display: flex;
    align-items: center;
}

.user-profile img{
    width: 15%;
    border-radius: 50%;
    margin-right: 10px;
}

.user-profile p{
    margin-bottom: -5px;
    font-weight: 500;
    color: #626262;
}

.user-profile small{
    font-size: 12px;
}

.user-profile small img{
    width: 6%;
    border-radius: 50%;
    margin-right: 10px;
}

.post-input-container{
    padding-left: 55px;
    padding-top: 20px;
}

.post-input-container textarea{
    width: 100%;
    border: 0;
    outline: 0;
    border-bottom: 1px solid  var(--bg-color);
    background: transparent;
    resize: none;
}

.add-post-links{
    display: flex;
    margin-top: 10px;
}

.add-post-links a{
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #626262;
    margin-right: 30px;
    font-size: 13px;
}

.add-post-links a img{
    width: 20px;
    margin-right: 10px;
}

.post-container{
    width: 100%;
    background: var(--bg-color);
    border-radius: 3px;
    padding: 0px -10px 0px 10px;
    color: #626262;
    margin: 20px 0;
}

.user-profile span{
    font-size: 13px;
    color: #9a9a9a;
    padding: 0px -10px 0px 10px;
}

.post-text{
    color: #9a9a9a;;
    margin: 15px 10px;
    font-size: 15px;
}

.post-text span{
    color:#ff0000;
    font-weight: 500;

}

.post-text a{
    color: #1876f2;
    text-decoration: none;
}

.post-img{
    width: 100%;
    border-radius: 4px;
    margin-bottom: 5px;
}

.post-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activity-icon div img{
    width: 18px;
    margin-right: 10px;
}

.activity-icon div{
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
}

.post-profile-icon{
    display: flex;
    align-items: center;
}

.post-profile-icon img{
    width: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

.post-row a{
    color:#626262;

}

.post-row a img{
    width: 5px;
    height: 10px;
    border-radius: 20%;
    margin-right: 20px;
    margin-top: 0px;
}

.load-more-btn{
    display: block;
    margin: auto;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #9a9a9a;
    color:#626262;
    background: transparent;
    border-radius: 4px;
}

.footer{
    text-align: center;
    color:#9a9a9a;
    padding: 10px 0 20px;
    font-size: 13px;
}

.settings-menu{
    position: absolute;
    width: 40%;
    max-width: 350px;
    background: var(--bg-color);
    box-shadow: 0 0  10px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    overflow: hidden;
    top: 100%;
    right: 0%;
    max-height: 0;
    transition: max-height 0.3s;
}

.settings-menu-height{
    max-height: 450px;
}

.user-profile a{
    font-size: 12px;
    color: #1876f2;
    text-decoration: none;
}

.settings-menu-inner{
    padding: 20px;
}

.settings-menu-inner hr{
    border: 0;
    height: 1px;
    background: #9a9a9a;
    margin: 15px 0;
}

.settings-links{
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.settings-links .setting-icon{
    width: 38px;
    margin-right: 10px;
    border-radius: 50%;
}

.settings-links a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #626262;
}

#dark-btn{
    
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--myBlue-color);
    width: 20px;
    border-radius: 15px;
    padding: 2px 3px;
    cursor: pointer; 
    display: flex;
    transition: padding-left 0.5s, background 0.5s;

}

#dark-btn span{
    
    width: 10px;
    height: 10px;
    background: var(--bg-color);
    border-radius: 50%;
    display: inline-block;
}

#dark-btn.dark-btn-on{
    
    padding-left: 23px;
    background: #3a3dff;
    
}













































