body {
	background-color: #eceef4;
    color: #3e5561;
}

.feed-container {
	width: 80%;
	max-width: 1400px;
	margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 16px;
}

@media (max-width: 800px){
    .feed-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0px;
    }

    .view-campaign-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 40px;
        background-color: #338aed;
        color: #fff;
        z-index: 10;
        text-align: center;
        padding: 12px;
    }
}

/*----------Feed Container-----------------*/

.feed-container .user-feed-container {
    width: 60%;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 800px){
    .feed-container .user-feed-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 8px;
    }

    .feed-container .campaign {
        margin-top: 0;
    }
}

/*---------- Not Found ----------*/
.user-feed-container .feed-not-post {
    width: 100%;
    background-color: white;
    border-radius: 8px;
    border: solid 1px #d8dae1;
    vertical-align: top;
    height: auto;
    display: inline-block;
}

/*----------------Main Post----------------*/

.user-feed-container .feed-post {
    width: 100%;
    background-color: white;
    border-radius: 8px;
    border: solid 1px #d8dae1;
    vertical-align: top;
    height: auto;
    display: inline-block;
    position: relative;
}

.feed-post .hide-my-post {
    position: absolute;
    bottom: 32px;
    right: 24px;
}

.hide-my-post .hide-selfie-text {
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.campaign .campaign-card {
    padding: 8px;
}

.feed-post .feed-user-details {
    position: relative;
    padding-left: 76px;
    display: block;
}

.feed-user-details .feed-user-image-container {
    width: 60px;
    height: 60px;
    margin-top: 16px;
    margin-left: 24px;
    display: inline-block;
    position: absolute;
    transform: translate(-150%,-0%);
}

.feed-user-image-container .feed-user-image {
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.feed-user-details-text {
    padding: 16px 16px 8px 8px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.feed-user-details-text .feed-user {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.feed-user .feed-user-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.43;
    text-align: left;
    color: #3e5561;
    display: inline;
}

.feed-user .feed-user-caption {
    font-size: 16px;
    line-height: 1.43;
    text-align: left;
    color: #3e5561;
    margin-left: 8px;
    display: inline;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.feed-user-details-text h6 {
    font-size: 14px;
    line-height: 1.33;
    text-align: left;
    color: #9cadb5;
}

.feed-post .feed-post-text {
    font-size: 16px;
    line-height: 1.43;
    text-align: left;
    color: #3e5561;
    display: block;
    margin: 8px 16px;
    margin-top: 0;
    word-wrap: break-word;
}

.feed-post-text a {
    color: #337ab7;
}

.feed-post-text a:hover {
    color: #23527c;
}

.feed-post-text b {
    font-weight: 500;
}

.feed-post .feed-review {
    padding: 4px 16px; 
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 60px
}

.feed-review .rating {
  width: 52px;
  height: 20px;
  border-radius: 20px;
  padding: 2px 4px;
  display: inline-block;
  position: absolute;
  left: 8px;
}

.rating .star {
  width: 12px;
  height: 12px;
  object-fit: contain;
  margin-right: 2px;
}

.rating .rating-value {
  font-size: 12px;
  font-weight: normal;
  text-align: left;
  font-weight: bold;
}

.feed-review p {
    display: inline-block;
    text-overflow: ellipsis;
    margin-left: 8px;
}

.feed-post .post-image-container {
    width: 100%;
}

.feed-post .feed-post-image-container {
    position: relative;
}

.paytm video::-webkit-media-controls-fullscreen-button {
    display: none;
}

.feed-post-image-container .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}

.feed-post-image-container .feed-post-image {
    width: 100%;
    overflow: hidden;
}

.feed-post-image-container .feed-post-video {
    width: 100%;
    height: 400px;
    background-color: black;
    overflow: hidden;
}

.feed-post-image-container .play-button {
    position: absolute;
    width: 88px;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: solid 2px #fff;
}

.feed-post .feed-merchant {
    padding: 8px;
    overflow: hidden;
    display: block;
    position: relative;
}

.feed-merchant a {
    color: #3e5561;
}

.feed-merchant .feed-merchant-logo-container {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: inline-block;
}

.feed-merchant .feed-merchant-logo {
    width: 50px;
}

.feed-merchant .feed-merchant-details {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    color: #3e5561;
    margin-left: 4px;
}

.feed-merchant-details h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.43;
    text-overflow: ellipsis;
}

.feed-merchant-details h5 {
    font-size: 16px;
    line-height: 1.43;
    text-overflow: ellipsis;
}

.feed-merchant-details h6 {
    font-size: 12px;
    line-height: 1.43;
    text-overflow: ellipsis;
    color: #9cadb5;
}

.feed-merchant-details p {
    font-size: 14px;
    line-height: 1.33;
}

.feed-post hr {
    margin: 0;
    height: 1px;
    background-color: #d8dae1;
    border-top: 0px solid #d8dae1;
}

.feed-post .feed-post-icons {
    display: flex;
    height: 40px;
    position: relative;
}

.feed-post-icons .feed-icon-values {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.14;
    text-align: left;
    color: #637e8c;
    margin-right: 16px;
}

.feed-post-icons .feed-post-like,
.feed-post-icons .feed-post-comment, 
.feed-post-icons .feed-post-share {
    margin: 4px;
    margin-left: 16px;
}

.feed-post-icons .follow {
    font-size: 14px;
    line-height: 1.43;
    color: #fff;
    border-radius: 4px;
    background-color: #338aed;
    font-weight: 500;
    padding: 4px 12px;
    position: absolute;
    right: 16px;
    top: 6px;
}
 
hr.comment-nav:after { 
  content: '\005E'; 
  display: inline-block; 
  position: relative; 
  top: -16px; 
  left: 144px; 
  padding: 0 3px; 
  background: none; 
  color: #d8dae1; 
  font-size: 32px; 
}

.feed-post .comments {
    width: 100%;
}
.comments .comment {
    position: relative;
    padding-left: 56px;
}

.comments .comment {
    position: relative;
    padding-left: 40px;
}

.comment .comment-user-image-container {
    width: 40px;
    height: 40px;
    margin-top: 12px;
    margin-left: 12px;
    display: inline-block;
    position: absolute;
    transform: translate(-112%,-0%);
    overflow: hidden;
}

.comment-user-image-container .comment-user-image {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
}

.comment-user-image-container .comment-merchant-image {
    width: 40px; 
    height: 40px;
}

.comment .comment-user-details-text {
    padding: 8px 16px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.comment-user-details-text .comment-user {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.comment-user .comment-user-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.43;
    text-align: left;
    color: #3e5561;
    display: inline;
}

.comment-text a {
    color: #338aed;
    font-weight: 700;
}

.comment-user .comment-user-caption {
    font-size: 14px;
    line-height: 1.43;
    text-align: left;
    color: #3e5561;
    margin-left: 8px;
    display: inline;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.comment-user-details-text h5 {
    font-size: 14px;
    line-height: 1.33;
    text-align: left;
    margin: 8px 0;
}

.comment-user-details-text h6 {
    font-size: 12px;
    line-height: 1.33;
    text-align: left;
    color: #9cadb5;
}

@media (max-width: 800px){
    .user-feed-container .feed-post {
        width: 97%;
        margin: 8px auto;
    }

    .user-feed-container .posts {
        margin: 0 8px;
    }

    .campaign .campaign-card {
        margin-bottom: 0;
    }

    .feed-post-image-container .feed-post-video  {
        height: 300px;
    }

    .feed-post .hide-my-post {
        bottom: 12px;
    }
    
    .hide-my-post .hide-selfie-text {
        font-size: 12px;
    }
}

/*------More posts-------*/

.user-feed-container .more-posts {
    background-color: #fff;
    border: 1px solid #d8dae1;
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
}

.more-posts span {
    font-weight: normal;
}

@media (max-width: 800px) {
    .user-feed-container .more-posts {
        margin: 8px;
    }
}

/*-------Gap---------*/

.feed-container .gap {
    width: 4%;
    display: inline-block;
}

@media (max-width: 800px) {
  .feed-container .gap {
        display: none;
    }
}

/*-------Sidebar---------*/

.feed-container .sidebar{
    width: 36%;
    display: inline-block;
}

.sidebar .participate {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    background-color: #338aed;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.sidebar .app-links {
    margin: 8px;
}

.sidebar .app-links img {
    width: 32%;
    height: 40px;
}

.merchant-side-card .recent-places {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 8px;
}

.user-recent-places .merchant {
    position: relative;
    display: block;
}

.merchant-side-card hr {
    border-top: 0px solid #d8dae1;
}

.merchant-side-card hr:last-child {
    display: none;
}

@media (max-width: 800px) {
    .feed-container .sidebar {
        width: 100%;
        display: block;
    }
}
