/*--------------------------------------------------------------
  >> : Login Form
--------------------------------------------------------------*/
  #loginform label {
    font-weight: 600;
    margin-bottom: 10px;
  }

  #loginform .login-sub-actions label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
    font-weight: normal;
  }

  #loginform .login-sub-actions label input {
    margin-right: 7px;
    height:30px !important;
    width:30px !important;
    border-radius: 50px;
    overflow: hidden;
  }


  .login-sub-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

  #loginform #wp-submit {
    width: 100% !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
  }

  #loginform p:not(:last-child) {
    margin-bottom: 30px;
  }

  .icon-input {
    position:relative;
  }

  .icon-input svg {
      position:absolute;
      top:50%;
      -webkit-transform:translateY(-50%);
          -ms-transform:translateY(-50%);
              transform:translateY(-50%);
      left:15px;
      height:20px;
      width:20px;
  }
  .icon-input svg.passwordview {
      left:unset;
      right:15px;
      cursor:pointer;
  }

   #AppMain .icon-input input {
      padding-left:40px !important;
      padding-right:40px !important;
  }

  .col-login {
    padding-right: 140px;
  }

  .login-break {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }

  .login-break:before,
  .login-break:after {
      content:'';
      height:1px;
      width:50%;
      background:#F0F0F0;
      display:block;
  }

  .login-break p {
      background:#fff;
      padding:0px 20px;

  }

  .loginalts {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }

  .loginalts button {
      border:none;
      padding:15px 20px;
      border-radius:50px;
      background:#F8F8F8;
      display:-webkit-box;
      display:-ms-flexbox;
      display:flex;
      -webkit-box-align:center;
          -ms-flex-align:center;
              align-items:center;
      margin:0 10px;
      -webkit-transition:all 300ms ease;
      -o-transition:all 300ms ease;
      transition:all 300ms ease;
  }
  .loginalts button:hover {
      background:#d9e2ef;
      -webkit-transition:all 300ms ease;
      -o-transition:all 300ms ease;
      transition:all 300ms ease;
  } 

  .loginalts button img {
      margin-right:10px;
      height:20px;
      width:20px;
  }

  .login-signup {
    border-top:1px solid #F0F0F0;
    text-align:center;
  }
  .login-signup a{
    color: var(--color-blue);
  }

  .featured-card {
    height: 80vh;
    display: block;
    position: relative;
    padding: 2em;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 75px;
  }

.featured-card:before,
.featured-card:after {
  content:'';
  height:200px;
  width:100%;
  display:block;
  position:absolute;
  left:0;
  z-index:1;
}

.featured-card:before {
  top:0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.6)), to(rgba(0,0,0,0)));
  background: -o-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}
.featured-card:after {
  bottom:0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.6)), to(rgba(0,0,0,0)));
  background: -o-linear-gradient(bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.featured-card img.featuredimg {
    height:100%;
    width:100%;
    -o-object-fit:cover;
       object-fit:cover;
    position:absolute;
    left:0;
    top:0;
}

[data-section="featured-posts"] [data-card-style="feed"] {
  width: 50%;
  padding: 0;
}

span.award,
.award-info {
    position:relative;
    z-index:2;
}

span.award {
    color:#fff;
}
span.award svg {
    margin-right:7px
}

.award-info {
    position:absolute;
    bottom:2em;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    color:#fff;
}
.award-info img {
    height:60px;
    border-radius:30px;
}
.award-info p {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    padding-left:10px;
}
.award-info p a {
    width:100%;
    text-decoration:none;
}

.award-info span {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}

.award-info svg {
    width:15px;
    margin-right:5px;
}

  @media (max-width:  992px) {

    .col-login {
      padding-right: initial
    }

  }


/*--------------------------------------------------------------
  >> : Create Landing Page
--------------------------------------------------------------*/
  .row-create-cards .col {
    margin-bottom: var(--bs-gutter-x);
  }

  .row-create-cards .card-body {
    padding: 1.25rem 1.5rem;
  }



/*--------------------------------------------------------------
  >> : Create Post Inner
--------------------------------------------------------------*/
  
  .create-post-inner .form-element:not(:last-child) {
    /*margin-bottom: 2rem;*/
  }


/*--------------------------------------------------------------
  >> : Feed
--------------------------------------------------------------*/


#quickpost {
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: #fff;
}

#quickpost img {
  height:50px;
  margin-right:10px;
  border-radius:25px;
}

.shortcut-post {
    background:#fff;
    border-radius:0px 0px 5px 5px;
}

.shortcut-post div {
    padding:10px 20px;
    width:calc(100% - 30px);
    margin:auto;
    border-top:1px solid #f2f3ef;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-pack:distribute;
        justify-content:space-around;
}
.shortcut-post div a {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    font-size:0.9em;
}

.shortcut-post div a svg {
    height:18px;
    width:18px;
    margin-right:7px;
}

.feedFilter {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}


.feedFilter ul {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  list-style: none;
  float:left;
  padding: 0;
  margin-bottom: 0px;
}

.feedFilter ul button {
  all:unset;
  font-weight:500;
  opacity:33%;
  padding-right:20px;
  cursor:pointer;
}

.feedFilter ul button.active,
.feedFilter ul button:hover {
  opacity:1;
}

.feedFilter p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}


.feedFilter label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  margin-bottom: 0px !important;
  margin-right:3px !important;
  white-space: nowrap;
}

.feedFilter select#sort {
  padding:0;
  margin:0;
  background:none;
  border:none;
  color:#000;
  font-weight:500;
  border-radius:0;
  font-size:1em;
}

#trovenFeedLoadMore {
  margin-bottom:20px;
}

.filter-buttons button {
  font-size: 90%;
  margin-right: 10px;
}
/*--------------------------------------------------------------
  >> : My Account
--------------------------------------------------------------*/


.backend-title {
    border-bottom:1px solid #F0F0F0;
    padding:1em 0;
}

.backend-form .col {
    margin-top:20px;
}




/*--------------------------------------------------------------
  >> : Feed Card
--------------------------------------------------------------*/


[data-card-style="feed"] {
  padding:15px;
  background:#fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 30px;
}

[data-card-style="feed"] .blog-image-wrapper {
  width:30%;
  aspect-ratio: 4 / 5;
}

[data-card-style="feed"] .blog-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card-content {
  padding: 15px 15px 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 70%;
}

.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position:relative;
  list-style: none;
  padding: 0;
  overflow:hidden;
  width:-webkit-fit-content;
  width:-moz-fit-content;
  width:fit-content;
  margin-bottom: 0px;
}

.post-meta ul:before {
  content:'';
  position:absolute;
  height:1px;
  width:100%;
  border-top:1px dashed #d9d9d9;
  top:50%;

}

.edit-func .btn {
  padding:7px !important;
  background:none;
  border:none;
}

.post-meta ul li a, .post-meta ul li p {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7em;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px !important;
}

.post-meta ul li:nth-child(1) {
  background: #000;
  color: #fff;
}

.post-meta ul .post-meta-country {
  background: #31D996;
  color: #000;
  margin-left:20px;
}

.post-meta-green {
  background: #31D996 !important;
  color: #000 !important;
}

.post-meta-black {
  background: #000;
  color: #fff;
}

.post-meta ul .post-meta-category {
  background: var(--color-blue);
  margin-left:20px;
}

#trovenFeed .simple-post .comment-content-wrapper {
    background: #f7f7f7;
}


.post-meta ul li a:hover, .post-meta ul li p:hover {
  text-decoration:underline;
}
.post-meta ul li:nth-child(1) a:hover {
  color:#fff !important;
}

.post-meta ul li:nth-child(2) a:hover {
  color:#000 !important;
}

.post-meta span {
  margin-left: 15px;
  color: #000000a3;
}

.card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}

.edit-menu {
  position: absolute;
  background: #F4F4F4;
  padding: 10px;
  opacity:0;
  pointer-events:none;
}

.edit-menu a {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-decoration: none;
}

button.card-func {
  border:none;
  outline:none;
  color:#C7C7C7;
  background: #F7F7F7;
}

.card-inner {
  width: 100%;
}

.card-body {
  padding: 20px 0px;
}

.card-body h2 {
  font-size:1.4em;
  font-weight:500;
  margin-bottom: 10px;
}

.card-body h2 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.card-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.card-foot .author {
  position: relative;
  padding-left: 55px;
}

.card-foot .author img {
  height:40px;
  width:40px;
  border-radius:20px;
  margin-right:10px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.author a {
  text-decoration:none;
  float: ;
}

.card-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-foot ul {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  list-style:none;
  padding:0;
}

ul.interactions a {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  text-decoration:none;
  font-weight:500;
}

ul.interactions li {
  margin-left:20px;
}

ul.interactions li svg {
  margin-right: 4px;
}

.plog-image-wrapper {
  width: 30%;
  aspect-ratio: 4 / 5;
  display:
  -ms-grid;
  display:
  grid;
  -ms-grid-columns: 1 10px 1;
  grid-template-columns: repeat(2, 1);
  gap: 10px 10px;
  position: relative;
}

.plog-image-wrapper a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


.plog-image-wrapper img {
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
  height:100%;
}

.plog-image-wrapper div:nth-child(1) {
  -ms-grid-column: 1;
      grid-column-start: 1; 
  -ms-grid-column-span: 2; 
  grid-column-end: 3; 
  -ms-grid-row: 1; 
      grid-row-start: 1; 
  -ms-grid-row-span: 1; 
  grid-row-end: 2; 
}

.plog-image-wrapper div:nth-child(2) {
  -ms-grid-column: 1;
      grid-column-start: 1; 
  -ms-grid-row: 2; 
      grid-row-start: 2; 
  -ms-grid-row-span: 0; 
  grid-row-end: 2; 
}

.plog-image-wrapper div:nth-child(3) {
  -ms-grid-column: 2;
      grid-column-start: 2; 
  -ms-grid-column-span: 1; 
  grid-column-end: 3; 
  -ms-grid-row: 2; 
      grid-row-start: 2; 
  -ms-grid-row-span: 0; 
  grid-row-end: 2; 
  position:relative;
  overflow:hidden;
}

.plog-image-wrapper div:nth-child(3) span {
  position:absolute;
  height:100%;
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  background:#00000052;
  -webkit-backdrop-filter:blur(1px);
          backdrop-filter:blur(1px);
  color:#fff;
  font-weight:500;
}

[data-card-style="feed"] .video-wrapper {
  width:30%;
  aspect-ratio: 4 / 5;
}

[data-card-style="feed"] .video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-wrapper {
  position:relative;
}

.video-wrapper span {
  position:absolute;
  height:100%;
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  color:#fff;
}
.video-wrapper span svg {
  height:40px;
  width:40px;
  stroke-width:1px;
  -webkit-transition:opacity 300ms ease-in-out;
  -o-transition:opacity 300ms ease-in-out;
  transition:opacity 300ms ease-in-out;
}

.video-card:hover .video-wrapper span svg {
  opacity:0;
  -webkit-transition:opacity 300ms ease-in-out;
  -o-transition:opacity 300ms ease-in-out;
  transition:opacity 300ms ease-in-out;
}

.simple-post .post-meta ul li:last-of-type {
  margin-left:0;
}


.simple-post .card-content {
  padding:15px;
}


.intro-post .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro-post .author a:first-of-type {
  font-weight: 500;
  margin-right: 4px;
}

.intro-post .author a:last-of-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro-post .author img {
  height: 60px;
  width: 60px;
  border-radius: 30px;
}

.intro-post .author span {
  font-size: 1.6em;
  padding: 0px 5px;
}

.intro-post .card-content, .intro-post .card-body {
  padding: 0;
  width: 100%;
}

.intro-post .author span img {
  -webkit-animation-name: wave-animation;
          animation-name: wave-animation;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 70% 70%;
      -ms-transform-origin: 70% 70%;
          transform-origin: 70% 70%;
}

@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: rotate( 0.0deg);
            transform: rotate( 0.0deg)
  }

  10% {
    -webkit-transform: rotate(14.0deg);
            transform: rotate(14.0deg)
  }

  20% {
    -webkit-transform: rotate(-8.0deg);
            transform: rotate(-8.0deg)
  }

  30% {
    -webkit-transform: rotate(14.0deg);
            transform: rotate(14.0deg)
  }

  40% {
    -webkit-transform: rotate(-4.0deg);
            transform: rotate(-4.0deg)
  }

  50% {
    -webkit-transform: rotate(10.0deg);
            transform: rotate(10.0deg)
  }

  60% {
    -webkit-transform: rotate( 0.0deg);
            transform: rotate( 0.0deg)
  }

  100% {
    -webkit-transform: rotate( 0.0deg);
            transform: rotate( 0.0deg)
  }
}

@keyframes wave-animation {
  0% {
    -webkit-transform: rotate( 0.0deg);
            transform: rotate( 0.0deg)
  }

  10% {
    -webkit-transform: rotate(14.0deg);
            transform: rotate(14.0deg)
  }

  20% {
    -webkit-transform: rotate(-8.0deg);
            transform: rotate(-8.0deg)
  }

  30% {
    -webkit-transform: rotate(14.0deg);
            transform: rotate(14.0deg)
  }

  40% {
    -webkit-transform: rotate(-4.0deg);
            transform: rotate(-4.0deg)
  }

  50% {
    -webkit-transform: rotate(10.0deg);
            transform: rotate(10.0deg)
  }

  60% {
    -webkit-transform: rotate( 0.0deg);
            transform: rotate( 0.0deg)
  }

  100% {
    -webkit-transform: rotate( 0.0deg);
            transform: rotate( 0.0deg)
  }
}





/*--------------------------------------------------------------
  >> : Explore
--------------------------------------------------------------*/
.page-template-template-explore-frontend.menu-shown .frontend .map-search > .col:first-child {
    padding-top:76px;
}


.map-search.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.map-wrap {
  height: 100vh;
  overflow: hidden;
  padding-right: 0px !important;
}

/*.frontend .map-wrap {
  height: calc(100vh - 76px);
}*/

#map {
  height: 100%;
  width: 100%;
}


.map-search.row .col-6{
  height: 100%;
  overflow: hidden;
}

.explore-results {
  height: calc(100% - 250px);
  overflow-y: scroll;
  padding-right: calc(var(--bs-gutter-x) * .5);
}

.frontend .explore-results {
    height: calc(100vh - 300px);
}

.marker {
  background: #31D996;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  font-size: 75%;
}

.mapboxgl-popup {
  max-width: 200px;
}
.mapboxgl-popup-content {
  text-align: center;
  font-family: inherit, sans-serif;
}

.mapboxgl-popup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.mapboxgl-popup-content img {
  height:100px;
  aspect-ratio:4 / 5;
  margin-right:10px;
  -o-object-fit:cover;
     object-fit:cover;
}
.mapboxgl-popup-content h3 {
  text-align:left;
  margin-bottom:0px;
  font-weight:400;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(49, 217, 0, 0.7);
            box-shadow: 0 0 0 0 rgba(49, 217, 0, 0.7);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(9, 217, 150, 0);
            box-shadow: 0 0 0 10px rgba(9, 217, 150, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(9, 217, 150, 0);
            box-shadow: 0 0 0 0 rgba(9, 217, 150, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(49, 217, 0, 0.7);
            box-shadow: 0 0 0 0 rgba(49, 217, 0, 0.7);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(9, 217, 150, 0);
            box-shadow: 0 0 0 10px rgba(9, 217, 150, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(9, 217, 150, 0);
            box-shadow: 0 0 0 0 rgba(9, 217, 150, 0);
  }
}
.explore-search {
  margin-bottom:30px;
}
.explore-search .select2-container--default .select2-selection--multiple {
    border-radius:0px;
    padding:20px;
    font-size:1em;
    line-height:1em;
    font-family:var(--body-font-family) !important;
}

.explore-search .select2-container--default.select2-container--disabled .select2-selection--multiple {
    background:#fff;
    cursor:not-allowed
}

.explore-search .col:nth-child(1) {
    padding-right:0px !important;
}

.explore-search .col:nth-child(2) {
/*    padding-right:0px !important;*/
    padding-left:0px !important;
}

.explore-search .col:nth-child(3) {
    padding-left:0px !important;
}


.explore-search .col:nth-child(2) .select2-container--default .select2-selection--multiple {
    border-left:1px solid transparent;
/*    border-right:1px solid transparent;*/
}

.explore-search .select2-container {
    width: 100% !important;
    height: 65px;
    overflow: hidden;
}

.explore-search .select2-container--default.select2-container--focus .select2-selection--multiple {
    border:1px solid #dadefb;
    color:#000 !important;
    background:#f2f3fa;
}

.explore-search .col:nth-child(3) button {
    height:100%;
    width:100%;
    display:block;
    outline:1px solid #ced4da;
    outline-offset:-1px;
    border:7px solid #fff;
    background:var(--color-bg-green);
    color:#fff;
}


.explore-search .col:nth-child(3) button:disabled {
    background:#ced4da !important;
}

.explore-search .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background:none;
    height:auto;
    padding-left: 0px !important;
    padding-right: 17px !important;
    padding-top: 0px;
    margin-top: 0px;
}

.explore-search .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    width:auto;
    padding:0;
    height: 100%;
    background: none;
    right: 0px;
    left: unset;
}

.explore-search .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height:1em;
    font-size: 1.3em;
    padding-bottom: 0px;
    color: #000;
    font-weight: 500;
    padding-bottom: 5px;
}

.explore-search .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    line-height: 1.3em;
    font-size: 1em;
}


#trovenFeed {
  padding-top: 0;
  position: relative;
}

#trovenFeedLoadMore:before {
  content: '';
  position: relative;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  width: 0px;
  height: 0px;
  left: 0px;
  bottom: 0px;
  border-radius: 50%;
  background: none;
  z-index: 9;
  opacity: 0;
  -webkit-animation: spinner-infinite 1s linear forwards;
          animation: spinner-infinite 1s linear forwards;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

#trovenFeed.uploading #trovenFeedLoadMore:before {
  opacity: 1;
  -webkit-animation: spinner-infinite 1s linear infinite;
          animation: spinner-infinite 1s linear infinite;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

#trovenFeed.no-more-posts .col-load-more button {
  display: none;
}

#trovenFeed.no-more-posts .col-load-more:after {
  content: attr(data-all-posts);
}

.filter-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
}

.filter-dropdown p {
    margin: 0;
}

.filter-dropdown select {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    padding: 5px 14px !important;
    margin-left: 5px;
}

.filter-buttons button {
    font-size: 90%;
}


[data-action="delete-permanent"],
[data-action="restore-post"] {
    display: none;
}

[data-status="trash"] [data-action="delete-permanent"],
[data-status="trash"] [data-action="restore-post"]{
    display: block;
}


[data-action="delete"] {
    display: block;
}

[data-status="trash"] [data-action="edit"],
[data-status="trash"] [data-action="delete"],
[data-status="trash"] [data-action="report"] {
    display: none;
}

.map-wrap h1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom:0px;
}

/*--------------------------------------------------------------
  >> : Blog Single
--------------------------------------------------------------*/
.single-blog {
  padding: 0;
}

.blog-hero {
  height: 100vh;
  position: relative;
  background: var(--color-black);
  padding: 0;
  margin-bottom: 5em;
}

.backend .blog-hero {
  height: 75vh;
}

.frontend .blog-hero {
  min-height: 100vh;
}

.blog-hero * {
  color: #fff;
}

.blog-hero .row {
  height: 100%;
  padding: 0;
}

.blog-hero img {
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-hero p:after,
.card-body p:after {
    content:'...';
}
 
.blog-hero p,
.blog-hero p * {
  color: #ffffff !important;
}

.blog-hero p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-hero .col {
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.blog-hero .col:first-of-type {
  /*width: fit-content;*/
  /*flex: unset;*/
}

.blog-hero .col:last-of-type {
  /* flex: 1; */
  -webkit-box-flex: 1.5;
      -ms-flex-positive: 1.5;
          flex-grow: 1.5;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 4em;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-hero .col:first-of-type img {
  height: 100%;
  width:100%;
  -o-object-fit:cover;
     object-fit:cover;
}

.blog-hero .col:last-of-type .col-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-hero h1 {
  font-size:3em;
  font-weight:500;
  width:80%;
  margin:0.6em 0;
}
.blog-hero p {
  width:60%;
}

.hero-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.hf-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hf-inner .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right:20px;
}

.hf-inner span {
  margin-right:20px;
}

.hf-inner a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hf-inner .author img {
  height:50px;
  width:50px;
  margin-right:10px;
  border-radius:30px;
}

.blog-hero a:hover {
  color: var(--color-light-green);
}

.blog-hero .post-meta a {
  color:#000 !important;
}
.blog-hero .post-meta .post-meta-category a {
  color:#fff !important;
}

.blog-hero .post-meta li:nth-child(1) {
  background:#fff;
}

.blog-hero .post-meta ul li:nth-child(1) a:hover {
  color:#000 !important;
}

.blog-hero .post-meta span {
  color:#fff;
}

body.single-post .blog-hero .col:first-of-type {
  display: none;
}

body.single-post .blog-hero {
  min-height: unset !important;
  height: auto !important;
  padding-top: 80px;
  margin-bottom: 0;
}

body.single-post .blog-hero .col-inner,
body.single-post .blog-hero .col-inner div {
  width: 100%;
}

body.single-post .hero-foot {
  margin-top: 20px;
}



.editor-content,
.editor-list {
  width: 60%;
  margin: 0 auto;
}

.editor-content p,
.editor-list ul,
.editor-list ol {
  margin-bottom: 30px;
}

.editor-content a {
  text-decoration: underline;
  color: var(--color-blue);
}

.editor-content.editor-header h2,
.editor-content.editor-header h3,
.editor-content.editor-header h4,
.editor-content.editor-header h5,
.editor-content.editor-header h6 {
  margin: 1em 0 .5em 0 !important;
}

.editor-image,
.editor-grid .item {
  position:relative;
}

.editor-image,
.editor-carousel,
.editor-grid {
  margin: 5em 0;
}

.editor-image img {
  width: 100%;
  height: auto;
}

.editor-carousel.owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.editor-carousel.owl-carousel .owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #000000;
}

.editor-carousel .owl-item .item {
    height: auto !important;
}


span.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background:#0000007a;
  -webkit-backdrop-filter:blur(3px);
          backdrop-filter:blur(3px);
  padding: 5px 10px;
  color:#fff;
}

.editor-carousel span.image-caption {
    /* position: relative; */
    /* background: none; */
    /* color: var(--color-black); */
    padding: 10px;
    width: 100%;
    /* font-size: 90%; */
    line-height: 1.5;
    display: inline-block;
}

.editor-grid span.image-caption {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.editor-carousel .owl-nav {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
}

.editor-carousel .owl-item {
/*  aspect-ratio:1 / 1;*/
}

.editor-carousel .owl-item .item {
  height:100%;
  width:100%;
}

.editor-carousel .owl-item img {
  height:100%;
  width:100%;
  -o-object-fit:cover;
     object-fit:cover;
  -o-object-position:center;
     object-position:center;
}

.editor-carousel .owl-nav button {
  background: #ffffff !important;
  height:40px;
  width:40px;
  pointer-events: all !important;
  border-radius:20px;
  -webkit-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.editor-carousel .owl-nav button:hover {
  -webkit-transform:scale(1.1);
      -ms-transform:scale(1.1);
          transform:scale(1.1);
  -webkit-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}


.vlog-hero {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: 70px;
  padding-bottom: 70px;
}

.vlog-hero h1 {
  margin-bottom: 30px;
}

.vlog-hero .post-meta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.vlog-hero .post-meta span {
  color: var(--color-white);
}

.vlog-hero .post-meta ul li:nth-child(1) {
  background: var(--color-white);
  color: var(--color-black);
}

.vlog-hero .hf-inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px
}

.vlog-hero .video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin: 20px 0;
}

.vlog-hero .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
  >> : Community Page
--------------------------------------------------------------*/

.community-filter .button {
  margin-right: 15px;
}

.community-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top:30px;
}
.community-user-image {
  width: 80px;
  margin-right:20px;
}

.community-user-image img {
  width:100%;
  aspect-ratio: 1 / 1;
  border-radius:50px;
}

.community-user-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.community-user-mutual {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  width:100%;
}

.community-user-mutual img {
  height:25px;
  width:25px;
  border-radius:20px;
  border:2px solid #f7f8fb;
  display:block;
  -o-object-fit: cover;
     object-fit: cover;
}

.community-user-mutual img:nth-child(2) {
  margin-left:-10px;
  z-index:1;
}
.community-user-mutual img:nth-child(3) {
  margin-left:-10px;
  z-index:2;
}

.community-user-mutual div {
  height:25px;
  width:25px;
  background:#155eb3;
  color:#fff;
  font-size:0.8em;
  font-weight:500;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  border-radius:20px;
  margin-left:-10px;
  z-index:2;
  margin-right:10px;
  border:2px solid #f7f8fb;
}

.community-info-head {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  margin-bottom:10px;
}

.community-info-head h3 {
  font-size:1.3em;
  font-weight:500;
  margin:0 20px 0 0;
}

.community-info-head span {
  font-size:0.9em;
  color:#6d6d6d;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.community-info-head span svg {
  height:25px;
  width:18px;
  margin-right:4px;
}

.community-actions button {
  border:none;
  padding:10px 15px;
  border-radius:20px;
  background:#FBEAEC;
  -webkit-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.community-actions button:hover {
  background:#E6CFD2;
}


.community-actions button.block {
  color:#D6293E;
}


/*--------------------------------------------------------------
  >> : Comment Card
--------------------------------------------------------------*/

  .comment-card {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
  }

  .comment-card .comment-card {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .comment-author-img {
    position: absolute;
    top: 8px;
    left: 0;
    width: 40px;
    height: 40px;
  }

  .comment-author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }

  .comment-content {
  }

  .comment-content-wrapper {
    padding: 16px;
    border-radius: 10px;
    background: #ffffff;
  }

  .comment-card .interactions {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 10px;
  }

  .comment-card .interactions li:first-child {
    margin-left: 0;
  }

  .comment-card [data-comment-liked] span:not(.like-count) {
    display: none;
  }

  .comment-card [data-comment-liked] .like-count {
    margin-left: 5px;
  }

  .comment-card [data-comment-liked] .like-count:before {
    content: '(';
  }

  .comment-card [data-comment-liked] .like-count:after {
    content: ')';
  }

  .comment-card [data-comment-liked="0"] .not-liked {
    display: block !important;
  }

  .comment-card [data-comment-liked="1"] .liked {
    display: block !important;
  }

  .comment-card [data-comment-liked="1"] * {
    color: var(--color-blue);
  }

  .post-comments {
    padding-top:  70px !important;
  }

  .logged-in-as,
  .comment-reply-title {
    display: none;
  }


  .comment-form {
    margin-bottom: 35px;
  }

  .comment-form input[type="submit"] {
    border-radius: 50px;
    background: transparent !important;
    color: initial !important;
    border: 1px solid #d7d7d7 !important;
    padding: 12px 16px;
  }

  .comment-form-wrapper {
    position: relative;
  }

  .comment-form-wrapper > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .comment-form-wrapper .comment-respond {
    padding-left: 55px;
  }

  .comment-form-comment > label {
    display: none;
  }

  .comment-form-wrapper .form-submit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    margin: 0;
  }

  .comment-form-wrapper textarea {
    vertical-align: middle;
    width: 100%;
    background: #f7f7f7;
    padding: 12px;
    border-color: #ececec;
    border-radius: 10px;
  }

  .comment-cards {
    margin-top: 35px;
  }


  .post-comments [data-card-style="feed"] {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .post-comments  [data-card-style="feed"] .blog-image-wrapper {
    width: 100%;
  }

  .post-comments .card-content {
    padding: 15px 0 !important;
  }


/*--------------------------------------------------------------
  >> : Notifications
--------------------------------------------------------------*/
  ul.notification-list {
    padding: 0;
    list-style: none;
    margin: 0;
  }

  ul.notification-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 5px;
  }

  ul.notification-list li img {
    width: 50px;
    height: 49px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-right: 15px;
    border-radius: 30px;
  }

  ul.notification-list li span.timestamp {
    font-size: 80%;
    line-height: 1;
    width: 100%;
    opacity: 0.7;
  }

  ul.notification-list li span.message {
    width: 100%;
    display: block;
  }

  ul.notification-list li span.message a {
    color: var(--color-blue);
    font-weight: 500;
  }

  [data-section="notifications-list"] {
    padding-top: 0px;
  }

  [data-section="notifications-list"] .h4 {
    margin-bottom:20px;
    font-size:1.2em;
    font-weight:500;
  }

  [data-section="notifications-list"] .h4:last-of-type {
    margin-top:20px;
  }

  [data-section="notifications-list"] .notification-list [data-read="1"] {
    opacity:0.7;
  }

/*--------------------------------------------------------------
  >> : Backend Specific
--------------------------------------------------------------*/

.backend .filter-dropdown select,
.feed-orderby {
  background: none !important;
  border: none !important;
  padding:0px !important;
  border-radius:0 !important;
  color:#212529 !important;
  font-size:1em !important;
  cursor:pointer;
}

[data-post-liked="1"] svg,
[data-post-bookmarked="1"] svg {
  fill: #212529;
}

/*--------------------------------------------------------------
  >> : Frontend Specific
--------------------------------------------------------------*/
.filter-dropdown p {
  font-size:1em;
}
.frontend .feed-orderby {
  padding:0px !important;
}


/*--------------------------------------------------------------
  >> : Frontend Community
--------------------------------------------------------------*/

.featured-members {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.featured-member {
  width: 49%;
  background: #fff;
  position: relative;
  display: block;
}

.featured-member:hover {
  color: initial;
}

.featured-members-badge {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

.fm-cover {
  height: 170px;
  width: 100%;
}

.fm-cover img {
  width:100%;
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
}

.fm-thumb {
  height: 180px;
  width: 180px;
  display: block;
  margin: -90px auto 0 auto;
}
.fm-thumb img {
  height:100%;
  width:100%;
  -o-object-fit:cover;
     object-fit:cover;
  border-radius:100px;
  border:10px solid #fff;
}

.fm-info {
  text-align: center;
}

.fm-info h2 {
  font-size:1.5em;
  margin: 10px 0px;
}

.fm-info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 58px;
}

.fm-info p:after {
  content: '...';
}

.fm-info ul {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  margin-bottom:30px;
  padding: 0px 40px;
}
.fm-info ul li {
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  font-size:2em;
}

.fm-info ul li span {
  display:block;
  width:100%;
  font-size:14px;
}

/*--------------------------------------------------------------
  >> : Search Modal
--------------------------------------------------------------*/

#search-modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: calc(100% - 80px);
  top: 0;
  right: 0;
  z-index: 9999;
  background: #fffffff2;
  padding: 3%;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  opacity:0;
  pointer-events:none;
  -webkit-transition:all 400ms ease-in-out;
  -o-transition:all 400ms ease-in-out;
  transition:all 400ms ease-in-out;
}

#search-modal.opened {
  opacity:1;
  pointer-events:all;
  -webkit-transition:all 400ms ease-in-out;
  -o-transition:all 400ms ease-in-out;
  transition:all 400ms ease-in-out;
}

.modal-inner {
  width: 100%;
}

.modal-inner .h2 {
  margin-bottom:40px;
}

button.close-search {
  margin-bottom:50px;
  border:none;
  background:none;
  font-size:1.3em;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
button.close-search svg {
  height:40px;
  width:40px;
  stroke-width:1px;
}

.search-info input[type="text"] {
  width:100%;
  height:30px;
  padding:30px;
  border-radius:50px;
  border:1px solid #dbdbdb;
  margin-bottom:20px;
}

/*--------------------------------------------------------------
  >> : Create Modal
--------------------------------------------------------------*/

#createPostModal .modal-content,
#reportPostModal .modal-content {
    border-radius: 30px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: none !important;
}

#createPostModal .modal-header,
#reportPostModal .modal-header {
    padding: 30px;
}

#createPostModal .modal-body,
#reportPostModal .modal-body {
    padding: 30px;
}

#reportPostModal input[type="text"],
#reportPostModal textarea {
    padding:10px;
    outline: none;
    padding: 15px 15px;
    display: inline-block;
    -webkit-appearance: unset;
    background: #fff;
    width: 100%;
    color: #495057;
    background-color: #fff;
    height: auto;
    line-height: unset;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 0.9em;
    border: 1px solid #d7d7d7;
    border-radius: 50px;
    margin-top:10px;
}

#reportPostModal textarea {
    border-radius:10px;
}


#createPostModal .select-featured-image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

#createPostModal .select-featured-image {
    width: 27.5%;
    margin: unset;
}

#createPostModal .featured-image-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
}

#createPostModal .featured-image-info button {
    margin-left: 10px;
}

#createPostModal [type="submit"] {
    float: right;
}

/*--------------------------------------------------------------
  >> : My Stories
--------------------------------------------------------------*/

.page-template-template-my-stories .col-post-filters {
    padding:30px 0px;
}

.frontend .post-meta span,
.page-template-template-explore .backend .post-meta span {
    display: none;
}

/*--------------------------------------------------------------
  >> : Gigs
--------------------------------------------------------------*/
.page-template-template-frontend-gigs [data-section="featured-posts"] {
    background:var(--color-black);
    padding:0px !important;
}

.page-template-template-frontend-gigs [data-section="featured-posts"] .container-fluid {
    padding:0px !important;
}

.page-template-template-frontend-gigs [data-section="featured-posts"] [data-card-style="feed"] {
    margin-bottom:0px;
    padding:0px !important;
    background:none;
}

.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] img.wp-post-image {
    height:50vh !important;
}

.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"]:nth-child(1) > div {
    height:50vh;
}

.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content {
    padding:3em !important;
}


.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content h2,
.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content p,
.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content,
.page-template-template-frontend-gigs [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content span {
    color:#fff !important;
}

.frontend .post-meta span {
    display: none;
}
.page-template-template-frontend-gigs [data-section="featured-posts"] .post-meta ul li:nth-child(1) {
    background:#fff;
    color: #000;
}

.page-template-template-frontend-gigs [data-section="featured-posts"] .post-meta ul li a {
    color:#000 !important;
}
.post-meta-category a, .post-meta-category p {
    color:#fff !important;
}

.page-template-template-frontend-gigs #AppMain textarea {
    border-radius:0px !important;
}

.page-template-template-frontend-gigs [data-feed-card-container] {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}


[data-section="gigs-search-grid"] [data-card-style="feed"] {
    margin:0px !important;
    padding:0px;
    width:50%;
    
}

[data-section="gigs-search-grid"] [data-card-style="feed"] .card-content {
    padding:30px;
    border-bottom:1px solid #F2F6F5
}

.page-template-template-frontend-gigs .col-load-more {
  margin-top:30px;
}

.featured-gig-title{
  font-size: 1.4em !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}

@media (max-width: 993px) {
  .clear_search_x{
    top: 8px !important;
    right: 25px !important;
  }
}

@media (max-width: 576px) {
  .card-head .btn-group .gig-btn-apply{
    bottom: 20px;
    right: 25px;
  }
}
.featured-gig-title p{
  font-size: unset !important;
}

.featured-gig-title{
  font-size: 1.5em;
}

.featured-gig-ul .edit-func{
  position: relative !important;
}

.gig-details-text{
  width: fit-content;
  text-align: center;
  text-decoration: underline !important;
  color: blue;
  font-size: 20px;
}

.gig-more-details-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
  >> : Stories
--------------------------------------------------------------*/

.page-template-template-frontend-stories [data-section="featured-posts"] {
    background:var(--color-black);
    padding:0px !important;
}

.page-template-template-frontend-stories [data-section="featured-posts"] .container-fluid {
    padding:0px !important;
}

.page-template-template-frontend-stories [data-section="featured-posts"] [data-card-style="feed"] {
    margin-bottom:0px;
    padding:0px !important;
    background:none;
}

.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] img.wp-post-image {
    height:50vh !important;
}

.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"]:nth-child(1) > div {
    height:50vh;
}

.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content {
    padding:3em !important;
}


.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content h2,
.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content p,
.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content,
.page-template-template-frontend-stories [data-section="featured-posts"] .col-featured-cards-grid [data-card-style="feed"] .card-content span {
    color:#fff !important;
}

.frontend .post-meta span {
    display: none;
}
.page-template-template-frontend-stories [data-section="featured-posts"] .post-meta ul li:nth-child(1) {
    background:#fff;
}

.page-template-template-frontend-stories [data-section="featured-posts"] .post-meta ul li a {
    color:#000 !important;
}

#AppMain .col-frontend-search-filters .col {
    padding:0px;
    
}

#AppMain .col-frontend-search-filters input,
#AppMain .col-frontend-search-filters select {
    width:100%;
    height:100%;
    border-radius:0px !important;
    padding:18px 30px !important;
    background: #fff !important;
}

#AppMain .col-frontend-search-filters select {
    border:1px solid #dadefb !important;
    border-left:0px !important;
}

.col-frontend-search-filters .select2-container--default .select2-selection--multiple {
    border-radius:0px !important;
    padding:30px;
    font-size:1em;
    line-height:1em;
    font-family:var(--body-font-family) !important;
}

.col-frontend-search-filters .select2-container--default.select2-container--disabled .select2-selection--multiple {
    background:#fff;
    cursor:not-allowed
}

.col-frontend-search-filters .col:nth-child(1) {
    padding-right:0px !important;
}

.col-frontend-search-filters .col:nth-child(2) {
    padding-right:0px !important;
    padding-left:0px !important;
}

.col-frontend-search-filters .col:nth-child(3) {
    padding-left:0px !important;
}


.col-frontend-search-filters .col:nth-child(2) .select2-container--default .select2-selection--multiple {
    border-left:1px solid transparent;
    border-right:1px solid transparent;
}

.col-frontend-search-filters .select2-container {
    width: 100% !important;
}

.col-frontend-search-filters .select2-container--default.select2-container--focus .select2-selection--multiple {
    border:1px solid #dadefb;
    color:#000 !important;
    background:#f2f3fa;
}



.col-frontend-search-filters .col:nth-child(4) .select2-container--default .select2-selection--multiple {
  border-left:0px !important;
}

.col-frontend-search-filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background:none;
    height:auto;
    padding-left: 0px !important;
    padding-right: 17px !important;
    padding-top: 0px;
    margin-top: 0px;
}

.col-frontend-search-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    width:auto;
    padding:0;
    height: 100%;
    background: none;
    right: 0px;
    left: unset;
}

.col-frontend-search-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height:1em;
    font-size: 1.3em;
    padding-bottom: 0px;
    color: #000;
    font-weight: 500;
    padding-bottom: 5px;
}

.col-frontend-search-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    line-height: 1.3em;
    font-size: 1em;
}


.page-template-template-frontend-stories #AppMain textarea {
    border-radius:0px !important;
}

.page-template-template-frontend-stories [data-feed-card-container] {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}


[data-section="stories-search-grid"] [data-card-style="feed"] {
    margin:0px !important;
    padding:0px;
    width:50%;
    
}

[data-section="stories-search-grid"] [data-card-style="feed"] .card-content {
    padding:30px;
    border-bottom:1px solid #F2F6F5
}

.page-template-template-frontend-stories .col-load-more {
  margin-top:30px;
}

[data-card-style="advert"] {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width:50%;
    position:relative;
}

[data-card-style="advert"] .card-content {
    width:70%;
    position:relative;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding-right:20%
} 

[data-card-style="advert"] .blog-image-wrapper {
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:70%;
}

.advert-card-content .card-inner .button-block{
  display: flex;
  justify-content: center;
}

.advert-card-content{
 width: 100% !important; 
 padding: 0 30% !important;
}

[data-card-style="advert"] .blog-image-wrapper img {
  height:100%;
  width:100%;
  -o-object-fit:contain;
     object-fit:contain;
}

[data-card-style="advert"] .advert-gig-container img {
  height:100%;
  width:100%;
  -o-object-fit:cover !important;
     object-fit:cover !important;
}

[data-card-style="advert"] img {
    opacity:0.5;
}


/* Contact */
.contact-socials ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/*Page builder*/

.icon-wrap {
    padding: 30px;
    text-align:center;
}

.icon-wrap img {
    height:50px;
    width:50px;
    margin-bottom:20px;
}

.step-wrap {
    height:100%;
    background:#fff;
    padding:30px;
    position:relative;
    text-align:center;
}

.step-wrap span {
    height:50px;
    width:50px;
    background:var(--color-blue);
    position:relative;
    color:#fff;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    font-size:1.2em;
    margin:0 auto;
    margin-top:-30px;
    -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
            transform:translateY(-50%);
}
    

[data-section="step-section"] .row:nth-child(2) {
    position:relative;
}

[data-section="step-section"] .row:nth-child(2):after {
    content:'';
    position:absolute;
    top:50%;
    height:1px;
    width:80%;
    border-top:1px dashed var(--color-blue);
    z-index:-1;
}

/*--------------------------------------------------------------
  >> : image Card
  -------------------------------------*/

[data-section="image-card-section"] + [data-section="image-card-section"] {
  padding-top: 0 !important;
  margin-top: -2rem !important;
}

.image-card {
    padding:50px;
    position:relative;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}
.image-card:before {
    content:'';
    height:100%;
    width:100%;
    background:#0000005c;
    display:block;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}

.image-card img {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    -o-object-fit:cover;
       object-fit:cover;
}

.image-card .ic-content {
     position:relative;
    z-index:2;
    color:#fff;
}

.image-card .ic-content h2 {
    font-size:2em;
}


/*--------------------------------------------------------------
  >> : Testimonial Card
  -------------------------------------*/

.testimonial-card {
    margin: 20px;
    background: #f7f8fb;
    border-radius: 10px;
    overflow: hidden;
    text-align:center;
}

.testimonial-card img {
      display: block;
    width: 100px !important ;
    height: 100px;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 50px;
    margin-bottom: -20px;
    -o-object-fit:cover;
       object-fit:cover;
}

.testimonial-card p {
    margin:10px 30px 30px 30px;
}

.testimonial-card p.h4 {
    margin:30px 30px 0px 30px;
}

[data-section="phone-carousel"] .col:nth-child(1) [data-step] {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
}

[data-step] img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0;
    -webkit-transition:all 300ms ease-in-out;
    -o-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
    width: 100%;
    height: 100%;
}

[data-step] li {
  font-size: 1.2em;
  margin-bottom: 10px;
  opacity:0.4;
  -webkit-transition:all 300ms ease-in-out;
  -o-transition:all 300ms ease-in-out;
  transition:all 300ms ease-in-out;
}

/*--------------------------------------------------------------
  >> : Home Phone
  -------------------------------------*/

[data-step="1"] img:nth-child(1), 
[data-step="1"] li:nth-child(1) {
  opacity:1;
}

[data-step="2"] img:nth-child(2),
[data-step="2"] li:nth-child(2)  {
    opacity:1;
}

[data-step="3"] img:nth-child(3),
[data-step="3"] li:nth-child(3)  {
    opacity:1;
}

[data-step="4"] img:nth-child(4),
[data-step="4"] li:nth-child(4)  {
    opacity:1;
}

[data-step="5"] img:nth-child(5),
[data-step="5"] li:nth-child(5)  {
    opacity:1;
}

ul.phone-stepped-animation-list {
    margin-top: 30px;
    padding:0;
    list-style:none;
}

ul.phone-stepped-animation-list li {
    padding-left:30px;
    position:relative;
}

ul.phone-stepped-animation-list li:before {
    content:'';
    height:20px;
    width:20px;
    border-radius:0px !important;
}

ul.phone-stepped-animation-list li:nth-child(1):before {
    background:#33D996 !important;
}
ul.phone-stepped-animation-list li:nth-child(2):before {
    background:#F2E0BC !important;
}
ul.phone-stepped-animation-list li:nth-child(3):before {
    background:#0D19A3 !important;
}
ul.phone-stepped-animation-list li:nth-child(4):before {
    background:#000 !important;
}
ul.phone-stepped-animation-list li:nth-child(5):before {
    background:#c2494d !important;
}

/*--------------------------------------------------------------
  >> : Automated Posts
  -------------------------------------*/
[data-post-meta-automated-post="1"] .author {
    display: none;
}

[data-post-meta-automated-post="1"] .card-foot {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

[data-post-meta-automated-post="1"] .edit-func {
    display: none;
}

.page-template-template-my-stories [data-post-meta-automated-post="1"] {
  display: none;
}


/*--------------------------------------------------------------
  >> : Bigger Pictures
  -------------------------------------*/
  .bp-img img, .bp-img div {
    right: 0;
    width: auto;
    margin: 0 auto;
  }

  .bp-img {
    background: #000;
  }

  .bp-wrap {
    z-index: 9999;
  }


/*--------------------------------------------------------------
  >> : Not Allowed
  -------------------------------------*/
section#not-allowed {
    min-height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


/*--------------------------------------------------------------
  >> : Community Search
  -------------------------------------*/
/*--------------------------------------------------------------
  >> : Community Search
  -------------------------------------*/
#community-search-form {
    position: relative;
    margin-top: -32.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#community-search-form input,
#community-search-form select {
    border-radius: 0 !important;
    height: 65px !important;
    width: 100% !important;
}

#community-search-form button {
    position: absolute;
    right: 7.5px;
    height: calc(100% - 15px);
    aspect-ratio: 1/1;
    border: none;
    border-radius: 0;
    background: var(--color-blue);
    top: 7.5px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#community-search-form button img {
    width: 50%;
}

a.reset-member-search {
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-blue);
    font-weight: 500;
    font-size: 90%;
    margin-top: 5px;
}

/*--------------------------------------------------------------
  >> : Sidebar Feed Cards
  -------------------------------------*/
aside.sidebar.sidebar-right .col > .h3 {
    font-size: 1rem;
}

.sidebar-right [data-card-style="feed"] {
    padding: 0;
    margin-bottom: 40px !important;
}

.sidebar-right .blog-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.sidebar-right .card-content {
    padding: 0;
    padding-top: 15px;
}

.sidebar-right .post-meta ul:before {
    display: none;
}


.profile-pic-alert {
    width: fit-content;
    padding: 12px 16px;
    font-size: 0.9rem;
}


/*--------------------------------------------------------------
  >> : Post Launch
  -------------------------------------*/
.page-template-template-create-blog .create-dropdown,
.page-template-template-edit-blog .create-dropdown,
.page-template-template-create-elog .create-dropdown, 
.page-template-template-edit-elog .create-dropdown, 
.page-template-template-create-plog .create-dropdown,
.page-template-template-edit-plog .create-dropdown, 
.page-template-template-create-vlog .create-dropdown,
.page-template-template-edit-vlog .create-dropdown {
    display: none;
}