/***====== banner-artist =====***/
.banner-artist {
    padding-top: var(--section-gap-md);
    padding-bottom: var(--section-gap-md);
}
.swiper-container-horizontal {
    position: relative;
}
/*** masonry-gallery ***/

span.no-image {
    background: #FFFFFF33;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(16px);
}
.masonry-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
}
.masonry-gallery .cover-img {
    width: 26%;
}
.masonry-gallery .cover-img .no-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    min-height: 210px;
    max-height: 216px;
}
.swiper-slide.no-cursor {
    pointer-events: none;
}
.masonry-gallery .swiper-images {
    width: calc(74% - 8px);
    overflow: hidden;
    min-height: 100%;
    height: auto;
}
.swiper-images-container .swiper-pagination, .init-pagination-fraction {
    opacity: 0;
}
.swiper-images-container .swiper-button-next, .swiper-images-container .swiper-button-prev{
display: none;
}
.masonry-gallery .cover-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    min-height: 210px;
    max-height: 100%;
    max-height: 216px;
    object-fit: cover;
}
.masonry-gallery .swiper-images .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.masonry-gallery .swiper-images .swiper-slide {
    height: calc((100% - 8px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.masonry-gallery .swiper-images .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 105px;
    max-height: 100%;
}
.ms-n1 {
    margin-left: -.25rem !important;
}
.me-n1 {
    margin-right: -.25rem !important;
}
.videoplay {
    max-width: 205px;
    max-height: 105px;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    object-fit: cover;
}
.video-box {
    position: relative;
    cursor: pointer;
}
.video-box video {
    width: 100%;
    border-radius: 8px;
}
/* video-popup */
.btn-play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--color-secondary);
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
}
.close-media-popup {
    position: absolute;
    top: 0;
    right: -40px;
    font-size: 42px;
    color: white;
    cursor: pointer;
    font-weight: 100;
    font-family: var(--font-main);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    background: transparent!important;
    color: var(--color-secondary);
    border: none!important;
}
.media-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}
.swiper.media-popup-swiper {
    width: 100%;
    overflow: hidden;
}
.media-popup img , .media-popup video {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    height: auto;
    border-radius: 8px;
    display: block;
}
.swiper-container-horizontal .swiper-button-prev, .swiper-container-horizontal .swiper-button-next {
    background-color: var(--color-bg-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}
.swiper-container-horizontal .swiper-button-prev, .swiper-container-horizontal .swiper-container-rtl .swiper-button-next {
    background-image: url(/media/icons/arrow-left.svg);
    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-container-horizontal .swiper-button-next, .swiper-container-horizontal .swiper-container-rtl .swiper-button-prev {
    background-image: url(/media/icons/arrow-right.svg);
    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
}

/** audio-wrapper **/
.audios_swiper-container {
    height: calc((48px * 4) + (8px * 3));
    overflow: hidden;
}
.audios_swiper-container .swiper-slide {
    height: calc((100% - 24px) / 4) !important;
}
.audio-player {
    display: flex;
    align-items: center;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-bg-secondary);
    border-radius: 30px;
    padding: 8px;
    width: 100%;
    height: 48px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.audio-player.play-on {
    border-color: var(--color-secondary-2)!important;
}
.audio-player .play-btn {
    background: var(--color-secondary);
    color: var(--color-bg-secondary);
    border: none;
    width: 28px;
    padding: 0;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 28px;
    transition: all 0.2s ease;
}
.audio-player .play-btn:hover {
    background: var(--color-secondary-2);
}
.audio-player .track-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: calc(50% - 52px);
}
.audio-player .track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 50%;
}
.audio-player .track-title {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    width: calc(100% - 32px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.audio-player .waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 22px;
    gap: 2px;
}
.audio-player .bar {
  /* width: 2px; */
    width: .095rem;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: all 0.15s ease;
}
.audio-player .time, .audio-player .duration {
    opacity: 1;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    width: 36px;
    text-align: right;
}
/***====== END banner-artist =====***/

/***====== START content-wrapper =====***/
/*** card-profile ***/
.profile__title h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    text-align: left;
    margin: 0 4px 0 0;
    text-transform: capitalize;
}
.profil__subtitle h3 {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-align: left;
    margin: 0;
}
.profil__subtitle {
    margin-top: -.5rem;
}
.item-info {
    padding: 4px 12px;
    background: var(--color-bg-secondary-1);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    text-align: center;
}
.item-info img {
    height: 16px;
    width: auto;
    object-fit: contain;
    margin-right: 6px;
    display: inline-block;
    top: -2px;
}
.item-info span, .item-badge span {
    display: inline-block;
}
.item-badge {
    border: 1px solid #FFFFFF5E;
    padding: 10px 16px;
    border-radius: 40px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}
.item-badge img {
    height: 24px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
    display: inline-block;
}
/*** END card-profile ***/
/*** about-profile ****/
.card-detail {
    padding: 2rem;
    margin: 1.5rem 0;
    background: var(--color-main);
    backdrop-filter: blur(16px);
    border-radius: 24px;
}
.subtitle_wicon, .subtitle_wicon span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: left;
}
.subtitle_wicon span {
    line-height: 25px;
}
.subtitle_wicon img {
    height: 24px;
    width: auto;
}
.subtitle_wicon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    margin-bottom: 1rem;
}
.card-detail__title .subtitle_wicon {
    margin-bottom: 0;
}
.artist-description, .artist-description p {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    transition: all .3s linear;
}
.btn__toggle {
    padding: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 24px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    outline: 0;
    gap: 8px;
    box-shadow: none;
    margin-top: 1rem;
}
.btn__toggle i {
    font-size: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}
.summary-btn__toggle {
    display: none;
}
/*** equipment-profile ***/
.equipment-profile .material-summary {
    display: grid;
    column-gap: 1rem;
    row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
}
.equipment-profile .summary h4, .equipment-profile .summary h5 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
}
.equipment-profile .summary ul li, .equipment-profile .summary ul {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
}
.equipment-profile .summary ul {
    padding-left: 1rem;
    margin-bottom: 0;
}
/*** events-profile **/
.event-box {
    overflow: hidden;
    background: var(--color-bg-secondary);
    border-radius: 8px;
}
.event-box .thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.event-box .text {
    padding: .5rem 1rem;
}
.event-box .text h3 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}
.event-box .text .date, .event-box .text .location {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
}
.event-box .type {
    position: absolute;
    top: 8px;
    left: 8px;
}
.event-box .type ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
}
.event-box .type ul li {
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    background: #FFFFFF99;
    padding: 4px 7px;
    border-radius: 20px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 11px;
    line-height: 100%;
    color: var(--color-bg-main);
}
.event-box:not(.no-hover):hover .text {
    transform: translateY(-48px);
    opacity: 1;
    background: var(--color-bg-secondary);
}
.event-box:not(.no-hover):hover .text .desc {
    opacity: 1;
    visibility: visible;
    transform: translateY(48px);
}
.event-box .text .desc {
    width: calc(100% - 2rem);
    padding: .5rem 0 0;
    height: 48px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 1rem;
    transform: translateY(10px);
    transition: transform .3s linear;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.events-profile__swiper .swiper-button-prev, .events-profile__swiper .swiper-button-next,
.reviews-profile__swiper .swiper-button-prev1, .reviews-profile__swiper .swiper-button-next1 {
    background-color: var(--color-secondary-2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-top: 0;
    transform: translateY(0);
    top: -44px;
    background-size: 18px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 10;
    cursor: pointer;
}
.swiper-button-next1.swiper-button-disabled, .swiper-button-prev1.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}
.events-profile__swiper .swiper-button-next, .events-profile__swiper .swiper-container-rtl .swiper-button-prev,
.reviews-profile__swiper .swiper-button-next1,  .reviews-profile__swiper .swiper-container-rtl .swiper-button-prev1  {
    right: 0;
    background-image: url(/media/icons/arrow-right-dark.svg);
}
.events-profile__swiper .swiper-button-prev, .events-profile__swiper .swiper-container-rtl .swiper-button-next,
.reviews-profile__swiper .swiper-button-prev1, .reviews-profile__swiper .swiper-container-rtl .swiper-button-next1 {
    left: inherit;
    right: 40px;
    background-image: url(/media/icons/arrow-left-dark.svg);
}

.events-profile__swiper .swiper-container-horizontal {
    position: relative;
    overflow: hidden;
}
.events-profile__swiper {
    position: relative;
}
/*** reviews-profile ***/
.reviews-profile .subtitle_wicon {
    gap: 0;
}
.subtitle_wicon .total-score {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding-right: 1rem;
    margin-right: 1rem;
    position: relative;
}
.subtitle_wicon .total-score .score {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    text-align: left;
    color: var(--color-secondary-2);
}
.subtitle_wicon .total-score:after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    border-right: 1px solid #FFFFFF4D;
}
.swiper-reviews-container {
    height: calc((156px * 3) + 24px);
    overflow: hidden;
    position: relative;
}
.swiper-reviews-container .swiper-slide {
    height: calc((100% - 8px) / 3) !important;
}
.item-review {
    height: 156px;
    background: var(--color-bg-secondary-1);
    border-radius: 16px;
    padding: 16px;
}
.item-review span.review-author {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
} 
.item-review .review-title , .item-review .score.number{
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0px;
}
.item-review .review-info.gap-3 {
    gap: .75rem !important;
}
.item-review .score.rating i {
    font-size: 14px;
    margin-left: 1px;
}
.item-review .score.rating {
    margin-left: 8px;
}
.item-review .comment-text, .item-review .comment-text p {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.item-review .review-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 10px;
}
.reviews-profile__swiper .swiper-scrollbar {
    background: rgba(255, 255, 255, .1);
    opacity: 1 !important;
}
.swiper-scrollbar {
    background: rgba(255, 255, 255, .1)!important;
}
.swiper-scrollbar-drag {
    background: rgba(255, 255, 255, .5)!important;
}
/*** detail-recommendations ***/
section.detail-recommendations {
    background: var(--color-bg-main);
    background: linear-gradient(0deg, #350080, #350080), linear-gradient(180deg, rgba(23, 0, 61, 0) 0%, rgba(23, 0, 61, 0.2) 100%);
}
#detail_artist {
    background: linear-gradient(180deg, #37057C 0%, #280161 100%);
    padding-bottom: 0;
}
.detail-recommendations h2.h2-sm {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    margin: 0;
}
.content-wrapper {
    margin-bottom: 1rem;
}
@media (min-width: 1200px) {
    section.detail-recommendations.section-py-lg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
/** availability **/
#availability-calendar .ui-datepicker-inline, 
#calendar-popup .ui-datepicker-inline {
    width: 100% !important;
    border: none !important;
    background: var(--color-main);
    color: var(--color-secondary);
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}
#calendar-popup .ui-datepicker-inline {
    background: var(--color-bg-secondary);
}
#availability-calendar .ui-datepicker .ui-datepicker-header,
#calendar-popup .ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
    background: var(--color-main);
    color: var(--color-secondary);
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    border: none;
}
#calendar-popup .ui-datepicker .ui-datepicker-header {
    background: var(--color-bg-secondary);
}
#availability-calendar .ui-datepicker th, 
#calendar-popup .ui-datepicker th {
    padding: .25rem;
    text-align: center;
    border: 0;
    color: var(--color-secondary);
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
#availability-calendar .ui-datepicker td,
#calendar-popup .ui-datepicker td {
    border: 0;
    padding: 0;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none!important;
    background: transparent!important;
    font-weight: 400!important;
    color: var(--color-secondary)!important;
    font-family: var(--font-main)!important;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
}
#availability-calendar .ui-state-disabled,
#calendar-popup .ui-state-disabled {
    cursor: pointer !important;
    pointer-events: all;
}
#availability-calendar .ui-state-disabled.reserved-date,
#calendar-popup .ui-state-disabled.reserved-date  {
    opacity: 1 !important;
    text-decoration: none;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    opacity: .5;
    -ms-filter: "alpha(opacity=50)";
    background-image: none;
    text-decoration: line-through;
}
.ui-state-disabled.reserved-date  {
    background: #E5138080!important;
    background: transparent!important;
    opacity: 1 !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: none !important;
    background: var(--color-secondary-2) !important;
    color: var(--color-main) !important;
    border-radius: 4px;
}
.ui-datepicker-calendar td a:hover {
    background: var(--color-main) !important;
    color: var(--color-secondary-2) !important;
    border-radius: 4px;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: var(--color-main) !important;
    color: var(--color-secondary-2) !important;
    border-radius: 4px;
}
#availability-calendar .ui-datepicker .ui-datepicker-prev,
#calendar-popup .ui-datepicker .ui-datepicker-prev {
    top: 1px;
    left: 1px;
    cursor: pointer;
}
#availability-calendar .ui-datepicker .ui-datepicker-prev span,
#calendar-popup .ui-datepicker .ui-datepicker-prev span {
    background-image: url(/media/icons/chevron-back.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
#availability-calendar .ui-datepicker .ui-datepicker-next,
#calendar-popup .ui-datepicker .ui-datepicker-next {
    top: 1px;
    right: 1px;
    cursor: pointer;
}
#availability-calendar .ui-datepicker .ui-datepicker-next span,
#calendar-popup .ui-datepicker .ui-datepicker-next span {
    background-image: url(/media/icons/chevron-forward.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background: transparent!important;
    border: none!important;
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved, #availability-calendar .ui-state-disabled.reserved-date.end-reserved,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved, #calendar-popup .ui-state-disabled.reserved-date.end-reserved {
    background: #E5138080!important;
    background: transparent!important;
     
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved .ui-state-default, #availability-calendar .ui-state-disabled.reserved-date.end-reserved .ui-state-default,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved .ui-state-default, #calendar-popup .ui-state-disabled.reserved-date.end-reserved .ui-state-default {
    border-radius: 50%;
    background: var(--color-secondary-1) !important;
    background: transparent!important;
    position: relative;
    z-index: 1;
}
#availability-calendar .ui-state-disabled.reserved-date:not(.start-reserved):not(.end-reserved) .ui-state-default,
#calendar-popup .ui-state-disabled.reserved-date:not(.start-reserved):not(.end-reserved) .ui-state-default {
    position: relative;
    z-index: 1;

}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved ,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved {
    border-radius: 50% 0 0 50%;
    background: transparent!important;
    position: relative;
}
#availability-calendar .ui-state-disabled.reserved-date.end-reserved,
#calendar-popup .ui-state-disabled.reserved-date.end-reserved {
    border-radius: 0 50% 50% 0;
    background: transparent!important;
    position: relative;
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved.end-reserved,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved.end-reserved {
    border-radius: 50%;
    position: relative;
}
#availability-calendar .ui-state-disabled.reserved-date:not(.start-reserved):not(.end-reserved),
#calendar-popup .ui-state-disabled.reserved-date:not(.start-reserved):not(.end-reserved) {
    position: relative;
}
#availability-calendar .ui-state-disabled.reserved-date:not(.start-reserved):not(.end-reserved):after,
#calendar-popup .ui-state-disabled.reserved-date:not(.start-reserved):not(.end-reserved):after {    
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 100%;
    height: 30px;
    border-radius: 0;
    background: #E5138080!important;
    z-index: 0;
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved:after, 
#availability-calendar .ui-state-disabled.reserved-date.end-reserved:after,
#availability-calendar .ui-state-disabled.reserved-date.start-reserved.end-reserved:after,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved:after, 
#calendar-popup .ui-state-disabled.reserved-date.end-reserved:after,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved.end-reserved:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-secondary-1) !important;
    z-index: 0;
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved:before, 
#availability-calendar .ui-state-disabled.reserved-date.end-reserved:before,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved:before, 
#calendar-popup .ui-state-disabled.reserved-date.end-reserved:before {
    content: "";
    position: absolute;
    left: -1px;
    right: inherit;
    width: 50%;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: #E5138080!important;
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved.end-reserved:before, 
#calendar-popup .ui-state-disabled.reserved-date.start-reserved.end-reserved:before {
    display: none;
}
#availability-calendar .ui-state-disabled.reserved-date.start-reserved:before,
#calendar-popup .ui-state-disabled.reserved-date.start-reserved:before {
    right: -1px;
    left: inherit;
}
#availability-calendar .ui-datepicker td,
#calendar-popup .ui-datepicker td {
    border-width: 3px 0 3px 0 !important;
    border-width: 0!important;
    border-style: solid !important;
    border-color: transparent !important;
    width: 32px!important;
    height: 32px!important;
}
.ui-datepicker-multi .ui-datepicker-group table {
    border-collapse: collapse!important;
}

/*** availability-modal ***/
.modal-backdrop.show {
    background: linear-gradient(180deg, rgba(41, 0, 98, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(8px);
    opacity: .8;
    opacity: .9 !important;
}
.modal-content {
    background: var(--color-bg-secondary);
    border: none;
    border-radius: 0;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.modal-header {
    border: none;
    margin: 0;
    position: relative;
    border-radius: 0;
    padding: 1rem 1.5rem;
}
.modal-header .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    font-size: 42px;
    font-weight: 100;
    font-family: 'Sora', sans-serif;
    opacity: 1;
    background: transparent;
    padding: 0;
    margin: 0;
}
.modal-header .subtitle_wicon {
    margin-bottom: 0;
}
.modal-body {
    padding: 1.5rem;
}
/****/

.modal .modal-content {
    background: #FFFFFF1A;
    border: 1px solid;
    /* border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); */
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(32px);
    width: 100%;
    border-radius: 32px;
    padding: 1rem 2rem;
}
.modal .modal-footer, .modal .modal-header {
    border: none;
    text-align: center;
}
.modal .modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    width: 100%;
}
.modal .modal-body {
    text-align: center;
    padding: 1.5rem 1rem;
}
.modal .modal-body p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
}
.modal .modal-header {
    border-bottom: 1px solid #ffffff33;    
    padding: 1rem 1rem 1.5rem;
}
.modal .modal-footer {
    padding: .75rem 0;
}
#calendar-popup .ui-datepicker-inline {
    background: transparent!important;
}
#calendar-popup .ui-datepicker .ui-datepicker-header {
    background: transparent !important;
}
.modal-header .subtitle_wicon {
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
}
.modal-title .subtitle_wicon span {
    line-height: 1;
    font-size: 32px;
}
.modal-title .subtitle_wicon span {
    line-height: 1;
    font-size: 28px;
}
.modal-header .subtitle_wicon img {
    display: none;
}
@media  (max-width: 992px) {
    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
        font-size: 12px;
    }
    #availability-calendar .ui-datepicker .ui-datepicker-header, #calendar-popup .ui-datepicker .ui-datepicker-header {
        font-size: 12px;
    }
    #availability-calendar .ui-datepicker th, #calendar-popup .ui-datepicker th {
        font-size: 12px;
    }
}
@media  (max-width: 992px) and (min-width:576px) {
    .modal .modal-dialog {
        max-width: 800px;
        width: calc(90% - 30px);
    }
    .modal-body {
        padding: 1rem 1rem;
    }
    .modal-header .btn-close {
        font-size: 36px;
    }
}
@media (max-width: 576px) {
    #calendar-popup .ui-datepicker-multi .ui-datepicker-group {
        width: 100%;
        float: none;
    }
    .modal .modal-dialog {
        width: calc(100% - 32px);
    }
}
/*** sidebar ***/
.row.sidebar-fixed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.sidebar-fixed .right-column {
    position: relative;
}
.sidebar {
    position: sticky;
    top: 100px; 
    width: 100%; 
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: calc(100% - 100px);
}
.sidebar::-webkit-scrollbar {
    scrollbar-width: thin; 
    width: 0px;
    scrollbar-color: rgba(255, 255, 255, 0.0) transparent; 
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.sidebar-content {
    background: var(--color-bg-secondary);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.sidebar-title {
    backdrop-filter: blur(16px);
    position: relative;
    left: 0px;
    right: 0px;
    top: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    z-index: 0;
    opacity: 1;
    background: var(--color-bg-secondary-1);
    padding: 16px 16px 32px;
    border-radius: 24px 24px 0px 0px;
    transition: opacity 0.3s ease-out, transform 0.4s linear;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.sidebar-title .h3 {
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    font-family: var(--font-main);
    margin: 0;
    text-align: left;
}
.sidebar-title img {
    width: 24px;
    height: 24px;
}
.sidebar .booking-fee {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
}
.sidebar .booking-fee .price {
    color: var(--color-secondary-2);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: normal;
    vertical-align: bottom;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.sidebar .booking-fee .price small {
    font-size: 16px;
    line-height: 100%;
    margin-left: 8px;
}
.sidebar .booking-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
}
.sidebar .btn__wrap .btn {
    padding: 15px 20px;
    line-height: 20px;
    width: 100%;
}
.swiper.my-offers-swiper {
    height: calc((96px * 3) + 24px);
    overflow: hidden;
    position: relative;
}
.my-offers-swiper .swiper-slide {
    height: calc((100% - 24px) / 3) !important;
}
.sidebar .form-check.check-offer {
    background: var(--color-main);
    padding: 14px 14px 14px 24px;
    border-radius: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    flex-direction: row;
    position: relative;
    height: 96px;
}
.sidebar .form-check.check-offer .h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin: 0 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.sidebar .form-check.check-offer p {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.form-check.check-offer .form-check-input[type=radio] {
    border-radius: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    float: none;
    margin: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.form-check.check-offer .custom-check span em {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: var(--color-secondary-1);
    display: block;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    opacity: 0;
    transition: all .3s ease;
}
.form-check.check-offer .form-check-input:checked[type=radio]+span em {
    opacity: 1;
}
.form-check.check-offer .custom-check span {
    border: 3px solid var(--color-secondary-1);
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
    position: relative;
}
.form-check.check-offer span.custom-check {
    display: inline-block;
}
.form-check.check-offer-none {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    flex-direction: row;
    position: relative;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin: 1rem 0 0;
}
.form-check.check-offer-none p {
    margin: 0;
}
.form-check.check-offer-none .form-check-input[type=checkbox] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1;
}
.form-check.check-offer-none .custom-check span {
    border: 2px solid #FFFFFF;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 4px;
    position: relative;
}
.form-check.check-offer-none .custom-check span {
    border: 2px solid #FFFFFF;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 4px;
    position: relative;
}
.form-check.check-offer-none .custom-check span:after {
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    font-feature-settings: normal;
    font-style: normal;
    font-synthesis: none;
    font-variant: normal;
    font-weight: var(--fa-style, 900);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    opacity: 0;
    transition: all .3s ease;
}
.form-check.check-offer-none .form-check-input:checked[type=checkbox]+span:after {
    opacity: 1;
}
/*** devis-success ***/
.devis-success-popup {
    backdrop-filter: blur(32px)!important;
    border-radius: 1rem!important;
    color: rgb(255, 255, 255)!important;
    background: rgba(255, 255, 255, 0.1)!important;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left], div:where(.swal2-icon).swal2-success .swal2-success-fix, div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    opacity: 0!important;
}
.devis-success-title {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 1.4;
    letter-spacing: 0px;
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
}
.devis-success-popup .swal2-icon {
    transform: scale(0.6);
    margin: 2rem auto .25rem;
}
.swal2-actions {
    width: 100%;
    padding: 0 1.5rem;
}
button.swal2-cancel.swal2-styled {
    width: calc(50% - 8px);
    background: var(--color-secondary) !important;
    color: var(--color-main) !important;
    border-color: var(--color-secondary)  !important;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: center;
    padding: .75rem 2rem;
    border-radius: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--color-secondary);
    max-width: calc(50% - 10px);
    width: 100%;
}

button.swal2-cancel.swal2-styled:hover, button.swal2-cancel.swal2-styled:focus {
    background: transparent !important;
    color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}
button.swal2-confirm.swal2-styled {
    background: var(--color-secondary-1) !important;
    color: var(--color-secondary)!important;
    border-color: var(--color-secondary-1) !important;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: center;
    padding: .75rem 2rem;
    border-radius: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--color-secondary);
    max-width: calc(50% - 10px);
    width: 100%;
}
button.swal2-confirm.swal2-styled:hover, button.swal2-confirm.swal2-styled:focus {
    background: var(--color-secondary) !important;
    color: var(--color-secondary-1)!important;
    border-color: var(--color-secondary-1) !important;
}
/***============= responsive =================***/
@media (max-width: 1400px) {
.profile__title h2 {
    font-size: 40px;
}
.profil__subtitle h3 {
    font-size: 24px;
}
.sidebar-title .h3 {
    font-size: 11px;
    line-height: 18px; 
}
.sidebar-title {
    align-items: stretch;
    padding: 12px 12px 24px;
}
.sidebar-content {
    gap: 12px;
}
.sidebar .booking-fee .price {
    font-size: 36px;
    line-height: 42px; 
}
.sidebar .booking-text {
    font-size: 12px;
    line-height: 20px; 
}
.sidebar .form-check.check-offer .h3 {
    font-size: 18px;
}
.sidebar .form-check.check-offer p {
    font-size: 11px;
    line-height: 18px;
}
.sidebar .form-check.check-offer {
    gap: 12px;
    padding: 12px 12px 12px 12px;
}
.form-check.check-offer .custom-check span {
    width: 18px;
    height: 18px; 
}
.form-check.check-offer .custom-check span em {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
}
.form-check.check-offer-none {
    font-size: 14px;
    line-height: 20px;
}
.sidebar .btn__wrap .btn {
    padding: 13px 16px; 
}
.detail-recommendations h2.h2-sm {
    font-size: 32px; 
}
}
@media (max-width: 1200px) {

}
@media (max-width: 992px) {
.banner-artist {
    padding-top: 0;
    padding-bottom: var(--section-gap-sm);
}
.videoplay {
    max-width: 225px; 
}
.audio-player .track-action {
    width: calc(54% - 52px);
}
.audio-player .track-info {
    width: 46%;
}
.audio-player .play-btn {
    width: 24px;
    height: 24px;
}
.profile__title h2 {
    font-size: 36px;
}
.profile__title span.pro svg {
    width: 20px;
    height: 20px;
}
.profil__subtitle h3 {
    font-size: 20px;
    line-height: 28px;
}
.item-badge {
    padding: 8px 8px;
    font-size: 11px;
    line-height: 20px; 
}
.item-badge img {
    height: 18px;
    margin-right: 6px;
    top: -2px;
    position: relative;
}
.card-detail {
    padding: 1.5rem;
    margin: 1rem 0; 
}
.btn-small {
    padding: .25rem .75rem;
}
.subtitle_wicon img {
    height: 22px; 
}
.detail-recommendations h2.h2-sm {
    font-size: 28px;
}
section.detail-recommendations {
    padding-top: 48px;
    padding-bottom: 48px;
}
.sidebar-title img {
    width: 20px;
    height: 20px;
}
    .sidebar-title .h3 {
        font-size: 10px;
        line-height: 18px;
    }
    .sidebar .booking-fee .price {
        font-size: 24px;
        line-height: 40px;
    }
    .sidebar-content {
        gap: 10px;
        padding: 18px;
    }
    .sidebar .form-check.check-offer .h3 {
        font-size: 16px;
    }
    .sidebar .form-check.check-offer p {
        font-size: 10px;
    }
    .sidebar .form-check.check-offer {
        gap: 10px;
        padding: 10px;
    }
    .form-check.check-offer-none {
        font-size: 12px;
    }
    .sidebar .btn__wrap .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    .modal .modal-body {
        padding: 1.5rem 0 .5rem;
    }
    .modal .modal-header {
        padding: .5rem .5rem 1.5rem;
    }
    .modal-title .subtitle_wicon span {
        line-height: 1;
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .swiper-images-container .swiper-scrollbar {
        display: none;
    }
    .masonry-gallery .swiper-images {
        width: 100%;
        overflow: hidden;
        min-height: 100%;
        height: 268px;
        position: relative;
    }
    .masonry-gallery .swiper-images .swiper-slide {
        height: 100% !important; 
    }
    .masonry-gallery .swiper-images .swiper-slide img {
        max-height: 268px;
        border-radius: 16px;
    }
    .video-box video {
        border-radius: 16px;
    }
    .swiper-images-container .swiper-button-next, .swiper-images-container .swiper-button-prev{
        display: block;
        opacity: 0;
        transition: all .2s linear;
    }
    .swiper-images-container:hover .swiper-button-next:not(.swiper-button-disabled), .swiper-images-container:hover .swiper-button-prev:not(.swiper-button-disabled){
        opacity: 1;
    }
    .swiper-images-container:hover .swiper-button-next.swiper-button-disabled, .swiper-images-container:hover .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    }
    .swiper-images-container .swiper-pagination .swiper-pagination-bullet {
        display: none;
    }
    .swiper-images-container .swiper-pagination, .init-pagination-fraction {
        opacity: 1;
        position: absolute;
        right: 20px;
        bottom: 20px;
        width: auto;
        left: inherit;
        background: rgba(255, 255, 255, 0.1);
        padding: 4px 12px;
        border-radius: 24px;
        font-family: var(--color-secondary);
        font-weight: 300;
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        color: #fff;
        z-index: 1;
    }
    .videoplay {
        max-height: 268px;
        max-width: 100%;
    }
    .sidebar-fixed .sidebar {
        position: fixed !important;
        bottom: 0 !important;
        width: 100% !important;
        top: inherit !important;
        z-index: 99;
        left: 0 !important;
        right: 0 !important;
    }
    .sidebar-fixed .sidebar:not(.swip-on) {
        overflow-y: hidden;
    }
    .sidebar-fixed .sidebar .sidebar-title {
        display: none;
    }
    .sidebar .check-offer-list, .sidebar .booking-text {
        height: 0;
        opacity: 0;
        transform: translateY(100px);
        transition: height .2s ease, opacity .2s ease, transform .3s linear;
    }
    .sidebar.swip-on .check-offer-list, .sidebar.swip-on .booking-text {
        height: auto;
        opacity: 1;
        transform: translateY(0px);
    }
    .sidebar-content {
        gap: 8px;
        padding: 20px 16px 16px;
        border-radius: 24px 24px 0 0;
    }
    .sidebar-btn-swip {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 20px;
        padding: 12px 0 8px;
        z-index: 2;
    }
    .sidebar-btn-swip:after {
        content: "";
        position: absolute;
        width: 64px;
        height: 4px;
        top: 8px;
        background: var(--color-bg-secondary-1);
        left: 50%;
        transform: translateX(-50%);
        border-radius: 8px;
    }
    .sidebar .booking-fee .price {
        font-size: 32px;
        line-height: 40px;
    }
    .sidebar .btn__wrap .btn {
        padding: 14px 16px;
        font-size: 16px;
    }
    .page-content {
        padding-top: 0!important;
    }
    .masonry-gallery {
        margin-bottom: 1rem!important;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .audios_swiper-container .swiper-slide {
        height: auto;
    }
    .audios_swiper-container {
        height: auto;
    }
    .swiper-container-horizontal .swiper-button-prev, .swiper-container-horizontal .swiper-button-next {
        width: 40px;
        height: 40px;
        background-size: 18px !important;
        margin-top: -20px;
    }
    .card-detail {
        padding: 1rem;
        margin: 1rem 0;
    }
    .detail-recommendations h2.h2-sm {
        font-size: 24px;
    }
    section.detail-recommendations {
        margin-bottom: 4rem;
    } 
    .modal-title .subtitle_wicon span {
    line-height: 1;
    font-size: 20px;
}
.modal .modal-content {
    border-radius: 24px;
    padding: 1rem 1rem 1rem;
}
.modal .modal-header {
    padding: .5rem .5rem 1.25rem;
}
.modal .modal-body {
    padding: 1rem 0 0;
}
.modal-header .btn-close {
    right: -.5rem;
    top: -.5rem; 
}
.close-media-popup {
    top: 0;
    z-index: 9;
    right: 0; 
}
.media-popup img, .media-popup video {
    max-height: 400px;
}
}
@media (max-width: 576px) {
    .page-wrapper-bottom {
        min-height: 7rem;
        background: var(--color-bg-main);
        background: linear-gradient(0deg, #350080, #350080), linear-gradient(180deg, rgba(23, 0, 61, 0) 0%, rgba(23, 0, 61, 0.2) 100%);
    }
    .card-detail {
        padding: 2rem 1rem;
        margin: 0;
        background: transparent;
        position: relative;
    }
    .card-detail:after {
        content: "";
        position: absolute;
        left: 1rem;
        right: 1rem;
        height: 1px;
        width: calc(100% - 2rem);
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .equipment-profile .material-summary {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        position: relative;
        transition: height .3s linear;
    }
    .equipment-profile .material-summary.expanded {
        overflow: visible;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .profile__title h2 {
        font-size: 32px;
    }
    .profil__subtitle {
        margin-top: 0;
    }
    .item-badge {
        padding: 10px 16px;
        font-size: 10px;
        line-height: 16px;
        text-align: center;
        border-radius: 16px;
        display: flex!important;
        flex-direction: column;
        gap: 8px;
    }
    .item-badge.badge-score {
        color: var(--color-bg-secondary-2);
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        text-align: center;    
        flex-direction: row;
    }
    .item-badge img {
        height: 20px;
        margin: 0;
    }
    .item-badge:not(.badge-score) span {
        max-width: 92px;
    }
    .profile__badges {
        align-items: center;
    }
    .banner-artist {
        padding-bottom: 40px;
    }
    .card-profile {
        margin-bottom: 1.5rem;
    }
    .review-heading {
        gap: 12px;
        margin-bottom: 12px !important;
    }
    /* .item-review .comment-text, .item-review .comment-text p {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    } */
    .item-review {
        min-height: 168px; 
        height: auto;
    }
    .item-review .score.rating {
        margin-left: 0;
    }
    .item-review .review-rating {
        display: flex;
        flex-direction: row-reverse;
        gap: 8px;
        align-items: center;
    }
    .swiper-reviews-container {
        height: calc((168px * 3) + 24px);
    }
    /* .events-profile__swiper .swiper-button-prev, .events-profile__swiper .swiper-button-next { 
        display: none;
    } */
    /* .events-profile__swiper {
        overflow: hidden;
    } */
    .event-box {
        display: flex;
        flex-direction: row;
        min-height: 120px;
        height: 100%;
    }
    .event-box .thumb {
        width: 25%;
    }
    .event-box .text {
        width: 75%;
        transform: none !important;
    }
    .event-box .text h3 {
        font-size: 14px;
    }
    .event-box .text .desc {
        width: 100%;
        height: auto;
        opacity: 1!important;
        visibility: visible!important;
        transform: none!important;
        bottom: inherit;
        position: relative;
        text-overflow: ellipsis;
        display: -webkit-box !important;
        white-space: nowrap;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        padding: .25rem 0 0;
    }
    .event-box .text .date, .event-box .text .location {
        padding: .25rem 0 0;
    }
    .swiper-events-container {
        height: calc((130px * 3) + 24px);
    }
    .audio-player .track-action {
        width: calc(100% - 68px);
    }
    .audio-player .time, .audio-player .duration {
        width: 36px;
        text-align: right;
    }    
    .audio-player .track-info {
        width: 16px;
        flex: auto;
        overflow: hidden;
        position: relative;
        height: 22px;
    }
    .audio-player .waveform {
        gap: 2px;
        width: 100%;
        min-width: 130px;
        position: absolute;
        left: 0;
        transform: none;
        bottom: 0;
    }
    .audio-player .bar {
        opacity: 1 !important;
        width: 2px;
    }
    .close-media-popup {
        top: 0;
        right: 0;
        font-size: 40px; 
        z-index: 9;
    }
    .media-popup-content {
        width: calc(100% - 20px);
    }
    .swiper-images-container .swiper-pagination {
        font-size: 12px;
        line-height: 20px;
    }
    .sidebar .form-check.check-offer {
        padding: 12px;
        height: 80px;
    }
    .swiper.my-offers-swiper {
        height: calc((80px * 2) + 16px);
    }
    .my-offers-swiper .swiper-slide {
        height: calc((100% - 16px) / 2) !important;
    }
}
@media (max-width: 480px) {
    .review-heading {
        gap: 10px;
        margin-bottom: 10px !important;
    }
    .audio-player .time, .audio-player .duration {
        display: none;
    }
    .audio-player .track-action {
        width: calc(100% - 24px);
    }
    .audio-player {
        padding: 4px 16px 4px 4px;
        width: 100%;
        height: 40px;
    }
    .audio-player .play-btn {
        width: 32px;
        height: 32px;
    }
    .audio-player .track-title {
        width: calc(100% - 40px);
        line-height: 14px;
    }
    .audio-player .track-info {
        width: 16px;
    }
    .swiper-container-horizontal .swiper-button-prev, .swiper-container-horizontal .swiper-button-next {
        width: 32px;
        height: 32px;
        background-size: 16px !important;
        margin-top: -16px;
    }
    .btn-play-video {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        line-height: 18px;
    }
    .item-badge {
        padding: 10px 12px; 
    }
    .banner-artist {
        padding-bottom: 32px;
    }
    .card-detail {
        padding: 1.5rem 0; 
    }
    .card-detail:after {
        left: 0;
        right: 0;
        height: 1px;
        width: 100%;
    }
    .event-box .text .desc {
        display: none !important;
    }
    .event-box {
        min-height: 92px;
    }
    .swiper-events-container {
        height: calc((92px * 3) + 24px);
    }
    .event-box .type ul li {
        font-weight: 500;
        font-size: 10px;
    }
    .item-review .score.rating i {
        font-size: 13px;
    }
    .swiper-reviews-container {
        height: calc((182px * 3) + 24px);
    }
    .event-box .text .date, .event-box .text .location {
        padding: .125rem 0 0;
        font-size: 10px;
    }
    .event-box .text h3 {
        font-size: 13px;
    }
    .swiper-images-container .swiper-pagination, .init-pagination-fraction {
        font-size: 12px;
    }
}
/** adjust **/

@media (min-width:768px) {
.masonry-gallery .swiper-images .swiper {
    max-height: 216px;
}
}
@media (min-width: 576px) {
    
.reviews-profile__swiper .swiper-button-next1, .reviews-profile__swiper .swiper-container-rtl .swiper-button-prev1, .reviews-profile__swiper .swiper-button-prev1, .reviews-profile__swiper .swiper-container-rtl .swiper-button-next1 {
    display: none;
}
}
@media (max-width : 576px) {
    .events-profile__swiper .swiper-slide {
    height: calc((100% - 8px) / 2)!important;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .swiper-events-container.swiper-container-multirow {
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
    .event-box {
        min-height: 92px;
        width: 100% !important;
        height: 100%;
    }
    .event-box .thumb img {
    width: 100%;
    height: 92px;
    }
    .subtitle_wicon, .subtitle_wicon span {
    font-size: 18px;
    }
    .swiper-reviews-container .swiper-slide {
    height: 100%;
}
.swiper-reviews-container {
        height: 100% !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    /* overflow: visible; */
    }
       .events-profile__swiper .swiper-scrollbar , .reviews-profile__swiper .swiper-scrollbar {
        opacity: 0 !important;
    }
    .reviews-profile__swiper {
        position: relative;
    }
    .reviews-profile__swiper .swiper-button-prev1, .reviews-profile__swiper .swiper-button-next1, .reviews-profile__swiper .swiper-button-prev1, .reviews-profile__swiper .swiper-container-rtl .swiper-button-next1 {
    margin-top: -9px;
}
}