/* reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* reset end */

/* default class */
.container {
    max-width: 1315px;
    margin: 0 auto;
    overflow: auto;
}

.clr {
    clear: both;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.logo {
    max-height: 100px;
    max-width: 255px;
    margin-top: 15px;
    margin-bottom: 6px;
}

.btn{
    
}

#mobileNav {
    display: none;
}

#desktopNav{
    display:block;
}

#tabletNav {
    display: none;
}

/* default class end */
.logo_section {
    float: left;
    width: 20%;
}

.inner_nav {
    float: left;
    width: 80%;
    text-align: center;
}


.profile_section {
    float: left;
    text-align: right;
    width: 10%;
    margin-top: 17px;
}

.profile_pic {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 6px;
}


.profile_name {
    float: right;
}

.ico {
    margin: 16px 79px;
    cursor: pointer;
}

.left_section {
    float: left;
    width: 25%;
    background: #f0f2f5;
}

.middle_section {
    float: left;
    width: 48%;
    margin: 0 13px;
}

.right_section {
    float: left;
    width: 25%;
}

.my-1{
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-3 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mx-1{
    margin-left: 10px;
    margin-right: 10px;
}

.mx-2 {
    margin-left: 20px;
    margin-right: 20px;
}

.mx-3 {
    margin-left: 30px;
    margin-right: 30px;
}

.ml-1{
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.mr-1{
    margin-right: 10px;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.py-1{
    padding-top: 10px!important;
    padding-bottom: 10px!important;
}

.py-2 {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}

.py-3 {
    padding-top: 30px!important;
    padding-bottom: 30px!important;
}

.px-1{
    padding-left: 10px!important;
    padding-right: 10px!important;
}

.px-2 {
    padding-left: 20px!important;
    padding-right: 20px!important;
}

.px-3 {
    padding-left: 30px!important;
    padding-right: 30px!important;
}

.top_bg {
    background: #fff;
    padding: 6px;
}

.icon_img {
    float: left;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 9px;
}

.bg_primary {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    background: #fff;
    padding: 6px;
}

.story {
    height: 200px;
    width: 100px;
    margin: 6px 0;
    border-radius: 9px;
}

.share_input {
    height: 43px;
    width: 100%;
    padding: 9px;
    font-size: 15px;
}

.upload-container{
    display: flex;
    justify-content: space-around;
}

.upload-photo{
    cursor: pointer;
}

/* trending products */

.trending-catalog {
    width: 133px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    margin: 6px;
    border-radius: 6px;
}

.trending-catalog small{
    display: block;
}

.product_img {
    height: 125px;
    width: 133px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.trending-data-info{
    padding: 6px 10px;
    padding-bottom: 11px;
}

.btn-cart{
    background: #fff;
    border: 1px solid gray;
    padding: 6px;
    margin: 6px;
    border-radius: 6px;
    cursor: pointer;
}

.trending-wrap{
    display: flex;
    overflow-y: hidden;
    overflow-x: scroll;
}

/* trending products end */

/* posts */

.info{
    display: flex;
    justify-content: space-between;
}

.content{
    display: flex;

}

.content-img{
    margin-top: 6px;
}

.post-picture{
    max-height: 600px;
    max-width: 600px;
}

.post-wrap{
    margin: 7px;
}

#like{
    color: blue;
}

#love{
    color: red;
}

.post-interaction{
    display: flex;
    justify-content: space-around;
}

.post-interaction div{
    cursor: pointer;
}

.post-comment-dis{
    display: flex;
    flex-direction: column;
}

.comment-body{
    background: #F0F2F5;
    padding: 9px;
    border-radius: 9px;
    margin-right: 9px;
}

.comment-replier{
    display: flex;
    height: 30px;
}

.comment-giver{
    display: flex;
}

.comment-giver input{
    width: 100%;
    border: none;
    background: #F0F2F5;
    padding: 9px;
    border-radius: 14px;
}

.comment-floating-react {
    position: relative;
}

.floating-react {
    display: flex;
    position: absolute;
    left: 496px;
    top: 66px;
    background: #ffffff;
    padding: 9px;
    padding-left: 16px;
    padding-right: 14px;
    border-radius: 20px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.floating_love {
    margin-top: 5px;
    margin-right: 4px;
}

/* posts end */

