/*--------------------------------------------------------------
    >> : Revised Profile CSS
--------------------------------------------------------------*/

.user-profile-details-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
[data-section="profile-header"] .user-profile-details-wrapper > .row {
    margin-top: 20px;
}
.author-name,
.user-profile-stats {
    justify-content: center;
}
[data-section="profile-header"] .user-profile-stats ul {
    justify-content: center;
    margin-top: 20px;
}
.author-profile-share {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    float: right;
}
.author-profile-share:hover {
    background-color: var(--color-blue);
    color: #fff;
    cursor: pointer;
}
.author-profile-share svg {
    margin-right: 0;
    position: relative;
    top: -3px;
}
.user-profile-more-details-wrapper {
    display: flex;
    justify-content: center;
}
/* .user-profile-more-details-wrapper .user-profile-socials {
    margin-top: 20px;
} */
.user-profile-more-details-wrapper ul.author-contact-info {
    gap: 20px;
}
.user-profile-more-details-wrapper ul.author-contact-info li {
    margin-right: 0;
}
.user-profile-bio-wrapper {
    max-width: 750px;
    margin: 20px auto;
    text-align: center;
}
.user-niche-category {
    text-align: center;
}
#user_niche_category + .select2-container--default .select2-selection--single {
    border-radius: 20px;
    border: 1px solid #ced4da;
    min-height: 53px;
}
#user_niche_category + .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 53px;
}
#user_niche_category + .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
.profile-tooltip {
    position: relative;
    display: inline-block;
}
.profile-tooltip .tooltiptext {
    visibility: hidden;
    width: 205px;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px 20px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    margin-left: -103px;
    opacity: 0;
    transition: opacity 0.3s;
    line-height: 1.4;
}
.profile-tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
}
.profile-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.user-niche-category {
    color: #929292;
}
.user-niche-category .niche-divider {
    font-size: 1.25rem;
}
h2.tab-title {
    border-bottom: 0;
}



/* .profile-scrollable-wrapper [data-feed-card-container] {
    flex-wrap: nowrap;
    gap: 24px;
    overflow-y: scroll;
}

.profile-scrollable-wrapper .col-load-more {
    margin-top: 30px;
}
.profile-scrollable-wrapper .col-post-filters {
    display: none;
} */


.author-specialties {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.author-specialties > li {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}
/* .author-specialties > li:hover {
    background-color: var(--color-blue);
    color: #fff;
} */
.profile-testimonials {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.profile-testimonials > * {
    width: calc( 100% / 3 - 24px);
}
.profile-testimonials .profile-testimonial-card {
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    min-width: 490px;
}
.profile-testimonials .profile-testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-testimonials .profile-testimonial-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-testimonials .profile-testimonial-body {
    margin-top: 10px;
    text-align: justify;
}
.profile-testimonials .profile-testimonial-body p::before,
.profile-testimonials .profile-testimonial-body p::after {
    display: inline;
    position: relative;
    font-size: 1.3rem;
}
.profile-testimonials .profile-testimonial-body p::before {
    content: open-quote;
}
.profile-testimonials .profile-testimonial-body p::after {
    content: close-quote;
}
.profile-testimonial-body a:hover > * {
    color: #555;
}
.profile-testimonial-footer {
    margin-top: 20px;
    color: #999;
}
.trips-booked {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.trips-booked > * {
    width: calc( 100% / 3 - 24px);
}
.trip-booked-card {
    display: flex;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #eee;
}
.trip-booked-img {
    width: 30%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}
.trip-booked-description {
    width: 70%;
    padding: 30px;
}
.trip-booked-description .desc-place {
    font-weight: 500;
}
.trip-booked-description .desc-text {
    color: #999;
    font-size: 1rem;
}
#specialties + .select2-container--default .select2-selection--multiple {
    min-height: 42px;
    padding: 0 10px 5px;
}
#specialties + .select2-container--default .select2-selection--multiple .select2-search__field {
    height: 32px !important;
    line-height: 32px;
}


/** Scrollable Trips*/
.profile-scrollable-wrapper .data-card-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-y: scroll;
}
.profile-scrollable-wrapper .data-card-wrapper::-webkit-scrollbar {
    display: none;
}
.profile-scrollable-wrapper .posts-scrollable {
    position: relative;
}
.profile-scrollable-wrapper .posts-scrollable .posts-previous,
.profile-scrollable-wrapper .posts-scrollable .posts-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    display: block;
}
.profile-scrollable-wrapper .posts-scrollable .posts-previous:hover,
.profile-scrollable-wrapper .posts-scrollable .posts-next:hover {
    cursor: pointer;
}
.profile-scrollable-wrapper .posts-scrollable .posts-previous {
    background: url('../../assets/icons/chevron-left.svg') no-repeat center center;
    background-size: cover;
    left: -50px;
}
.profile-scrollable-wrapper .posts-scrollable .posts-next {
    background: url('../../assets/icons/chevron-right.svg') no-repeat center center;
    background-size: cover;
    right: -50px;
}
.profile-scrollable-wrapper .posts-scrollable .scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 80px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(247, 248, 251, 0)), color-stop(80%, rgba(218, 218, 218, 1)));
    background: -o-linear-gradient(left, rgba(247,248,251,0) 0%, rgba(218, 218, 218, 1) 80%);
    background: linear-gradient(90deg, rgba(247, 248, 251, 0) 0%, rgba(218, 218, 218, 1) 80%);
}
.profile-scrollable-wrapper [data-card-style="feed"] {
    min-width: 745px;
    margin-bottom: 0;
}


.review-content {
    margin-bottom: 100px;
}


@media (max-width: 1580px) {
    .profile-scrollable-wrapper .posts-scrollable .posts-previous, 
    .profile-scrollable-wrapper .posts-scrollable .posts-next {
        transform: none;
        top: -70px;
    }
    .profile-scrollable-wrapper .posts-scrollable .posts-previous {
        left: auto;
        right: 40px;
    }
    .profile-scrollable-wrapper .posts-scrollable .posts-next {
        right: 0;
    }
}
@media (max-width: 1200px) {
    .trips-booked > *,
    .profile-testimonials > * {
        width: calc(100% / 2 - 24px);
    }
    .trip-booked-img {
        width: 40%;
    }
    .trip-booked-description {
        width: 60%;
    }
}
@media (max-width: 992px) {
    [data-section="profile-header"] .cover-button {
        top: auto !important;
    }
}
@media (max-width: 767px) {
    .trips-booked > *,
    .profile-testimonials > * {
        width: 100%;
    }
    .profile-scrollable-wrapper [data-card-style="feed"] {
        min-width: 100%;
    }
}




/*****************/

body:not(.role-travel_agent):not(.role-administrator) .frontend-sidebar-main-menu > ul > li.forum,
body:not(.role-travel_agent):not(.role-administrator) .backend-sidebar-main-menu > ul > li.forum {
    display: none !important;
}
body:not(.role-travel_agent):not(.role-administrator) .menu-off-canvas-frontend-container #menu-item-670 {
    display: none;
}