/* Colors & fonts */
:root {
    --purple1: #a685e2;
    --purple2: #6155a6;
    --logo:#955ba5;
    --grey: #C3C3D8;

    --font:'Quicksand', sans-serif;
    --fontheading:'Lobster', sans-serif;
}
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
body {
  font-family:var(--font);
}
/* scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #8080808a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background:  linear-gradient(45deg, var(--logo), var(--purple1));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background:  var(--logo);
}

/*===================== navbar =======================================*/

.navbar {
    /* transition: all 0.4s; */
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
    font-size: 23px;
}
.nav-logo{
  width: 35px
}

.dropdown-toggle::after {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    display: none;
}
.nav-dropdown-img{
  width: 35px;
}
.notification-img{
  width: 35px;
}
.notification-dropdown-menu{
  left: -155px;
}
.profile-dropdown-menu {
    left: -110px;
}
.navbar {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: var(--purple1);
}

.details-container{
  margin-top: 8rem!important;
}

/*============================= profile section ============================*/
.profile-wrapper{
  margin-top: 7rem!important;
}
.profile-card{
  box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.profile-img{
  border-radius: 50%;
    width: 200px;
    align-self: center;
    margin-top: 25px;
}
.profile-list-item{
  border: 0;
}

/*========================= edit form ============================== */
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem transparent;
}
.form-control:focus{
  box-shadow: none !important;
    border-color: var(--purple1) !important;
}
.postInput::-webkit-input-placeholder {
  font-family:'Quicksand', sans-serif;
}
.postInput:-ms-input-placeholder {
  font-family: 'Quicksand', sans-serif;
}
.postInput:-moz-placeholder {
  font-family: 'Quicksand', sans-serif;
}
.postInput::-moz-placeholder {
  font-family: 'Quicksand', sans-serif;
}
.input-file {
   visibility: hidden;
    position: absolute;
  }
.input-group-text i, .profile-list-item i{
  color: var(--purple1);
}
.btn-upload-profile{
  background: var(--purple1);
  border-radius: 6px 0 0 6px;
  color: white;
}
.btn-upload-profile:hover{
    color: white;
    background: var(--logo);
}
.btn-edit-form, .btn-edit, .home-post-btn{
    background:linear-gradient(45deg, var(--logo), var(--purple1));
    color: #fff;
    /* float: right; */
}
.btn-edit, .home-post-btn{
  padding: 8px 20px;
  border-radius: 25px;
}
.btn-edit:hover, .home-post-btn:hover{
  border:1px solid var(--purple1);
  color: var(--purple1);
  background: transparent;
}
.btn-edit-form:hover {
    -webkit-box-shadow: 0 5px 20px -7px rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 5px 20px -7px rgba(0, 0, 0, 0.9) !important;
    top: -2px;
    color: #fff;
}
.float-left{
  float: left !important;
}
/*=============================== posts =================================== */

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--purple1) !important;
    background-color: #fff;
    border-color: transparent !important;
    border-bottom: 2px solid #a685e2 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6 !important;
    margin-bottom: 30px !important;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: transparent;
    background-color: #a685e229;
}
.nav-tabs .nav-link {
    color: #9c9c9c !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.listing-horizontal{
  -webkit-box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 7px;
    position: relative;
}

.post-img{
    width: 200px;
    height: 285px;
    margin-right: 10px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
}
.listing-horizontal .status {
    font-size: 12px;
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 0px;
    padding: 5px 30px;
    background: var(--purple1);
    border-radius: 0 30px 30px 0;
    color: #fff;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.post-content{
  width: 100%;
}
.post-tittle{
  color:var(--purple1);
}

.post-content p{
  line-height: 1.7;
  color: #333333;
}
.description{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.checked {
  color: orange;
}
.text-end{
  text-align: end;
}
.details-btn {
  border-color: var(--purple1);
    padding: 7px;
    border-radius: 25px;
    color: var(--purple1);
    width: 150px;
}
.details-btn:hover{
  background: linear-gradient(45deg, var(--logo), var(--purple1));
  color: #fff;
}
@media (max-width: 767.98px){
.post-img{
    width: 100%;
    height: 250px;
    margin-right: 0;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0px;
}
}


/*========================== footer =========================================*/
.footer-area {
    padding: 120px 0px 60px;
    background: linear-gradient(45deg, var(--logo), var(--purple1));
}
.footer-heading{
  color: #fff;
}
.footer-contect-wrapper p{
  color: #d0d0d0;
    width: 85%;
}
.footer-list li{
margin: 7px;
}
.footer-list li a{
  color: #d0d0d0;
}
.footer-list li a:hover{
  color: #fff;
  text-decoration: none;
}
.contact-list li{
  margin: 7px;
  color: #fff;
}
.footer-contect-wrapper span i{
  color: #d0d0d0;
}
.footer-contect-wrapper span i:hover{
  color: #fff;
}
.copyright{
  justify-content: center;
  margin-top: 55px;
  color: #fff;
}
