/* Profile page styles */


.user-info {
    text-align: center;
    margin-top: 55px;
}

.cover-picture-container {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    margin-top: 53px;
}

.cover-picture {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.no-followers-msg {
    color: red;
}

.profile-picture {
    border-radius: 50%;
    height: 180px;
    width: 180px;
    object-fit: cover;
}

.profile-username-title {
    color: green;
    letter-spacing: 5px;
    /*font-family: questrial;*/
    font-size: 26px;
}

.comments-by-user {
}

.follow-message-area {
    color: red;
    font-size: 12px;
}

.settings-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.followers, .following {
    display: inline-block;
    margin: 7px;
    cursor: pointer;
    user-select: none;
}

.followers-popup, .following-popup {
    overflow: auto;
}

.followers-popup h3, .following-popup h3 {
    margin: 10px 0 0 0;
    padding-bottom: 10px;
    text-align: center;
    font-size: 14px;
    color: #363636;
    letter-spacing: 1px;

    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #bebebe;
}

.follower-list-container, .following-list-container {
    height: 90%;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

@media screen and (min-width: 768px) {
  .nav-link {
      padding: .5rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .nav-link {
      padding: .5rem 4rem;
  }
}

.nav-tabs{
  background: #00c1600d;
    border-radius: 5px 5px 0 0;
}
.nav-tabs {
    border-bottom: 2px solid #00c160;
}
.nav-tabs .nav-link{
    font-size: 20px;
    font-weight: 500;
}
.nav-tabs .nav-link:hover {
    background: #00c160;
}
.nav-tabs .nav-link.active{
  color: #ffffff;
    background-color: #00c1605c;
    border-color: #dee2e6 #dee2e6 #badcd2;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 3px solid #00c160;
}
