/* Common style */

.wdt-artist-item .wdt-artist-social-icons a::before,
.wdt-artist-item .wdt-artist-social-icons a::after {
    display: none;
}

.wdt-artist-item .wdt-artist-social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
}

.wdt-artist-item .wdt-artist-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--wdtFontSize_Ext);
    width: 2em;
    height: 2em;
    color: rgba(var(--wdtLinkColorRgb), 0.6);
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: var(--wdtRadius_Full);
    -webkit-border-radius: var(--wdtRadius_Full);
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item .wdt-artist-social-icons a i {
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    width: 1em;
    height: 1em;
}

.wdt-artist-item .wdt-artist-social-icons a i::before {
    margin: 0;
    width: 1em;
    height: 1em;
}

.wdt-artist-item .wdt-artist-social-icons a:hover,
.wdt-artist-item .wdt-artist-social-icons a:focus {
    color: var(--wdtAccentTxtColor);
    border-color: var(--wdtPrimaryColor);
    background-color: var(--wdtPrimaryColor);
}

.wdt-dark-bg .wdt-artist-item .wdt-artist-social-icons a {
    color: rgba(var(--wdtAccentTxtColorRgb), 0.6);
}

.wdt-dark-bg .wdt-artist-item .wdt-artist-social-icons a:hover,
.wdt-dark-bg .wdt-artist-item .wdt-artist-social-icons a:focus {
    color: var(--wdtPrimaryColor);
    border-color: var(--wdtAccentTxtColor);
    background-color: var(--wdtAccentTxtColor);
}

/*  */

.wdt-artist-item .wdt-artist-title h5 a {
    display: inline;
    background: var(--wdt-link-hover-bg);
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item .wdt-artist-title h5 a:hover,
.wdt-artist-item .wdt-artist-title h5 a:focus {
    background-size: var(--wdt-link-hover-bg-size);
}

.wdt-artist-item .wdt-artist-button a {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    font-size: var(--wdtFontSize_Base);
    background-color: transparent;
    color: var(--wdtLinkColor);
    padding: 0;
    margin: 10px 0 0;
    position: relative;

    background: var(--wdt-button-hover-bg);
}

.wdt-artist-item .wdt-artist-button a:hover,
.wdt-artist-item .wdt-artist-button a:focus {
    animation: var(--wdt-button-hover);
    -webkit-animation: var(--wdt-button-hover);
}

.wdt-artist-item .wdt-artist-button a::after {
    content: '\e801';
    font-family: "wdt-alt-icons";
    font-size: 1.65em;
    width: auto;
    height: 1em;
    display: flex;
    align-items: center;
}

.wdt-dark-bg .wdt-artist-item .wdt-artist-button a {
    color: var(--wdtAccentTxtColor);
}

.wdt-artist-item .wdt-artist-image img {
    filter: var(--wdt-image-default-style);
    -webkit-filter: var(--wdt-image-default-style);
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item:hover .wdt-artist-image img {
    filter: var(--wdt-image-hover-style);
    -webkit-filter: var(--wdt-image-hover-style);
}



/* Artist style - 1 */

.wdt-artist-item.wdt-type-1 {
    height: 100%;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-start {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-group-1 {
    width: 100%;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-group-2>div:not(:last-child) {
    margin-bottom: 20px;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-group-2 .wdt-artist-sub-group>div:not(:last-child) {
    margin-bottom: 8px;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-group-2>div.wdt-artist-social-icons {
    margin: 30px 0 60px;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-group-2 {
    width: 100%;
    padding: 30px;
    padding-bottom: clamp(1.25rem, 0.5rem + 3.75vw, 5rem);
    /* 80 - 20 */
    background-color: transparent;
    flex-grow: 1;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item.wdt-type-1 .wdt-artist-category {
    font-size: var(--wdtFontSize_Base);
    font-weight: var(--wdtFontWeight_Alt);
    font-family: var(--wdtFontTypo_Alt);
    line-height: var(--wdtLineHeight_Alt);
    text-transform: capitalize;
    color: rgba(var(--wdtHeadAltColorRgb), 0.65);
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1 .wdt-artist-category {
    color: rgba(var(--wdtAccentTxtColorRgb), 0.65);
}

.wdt-artist-item.wdt-type-1 .wdt-artist-title h5 {
    font-size: calc(var(--wdtFontSize_H6) + 2px);
    margin: 0;
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1 .wdt-artist-title h5,
.wdt-dark-bg .wdt-artist-item.wdt-type-1 .wdt-artist-title h5 a {
    color: var(--wdtAccentTxtColor);
}

.wdt-artist-item.wdt-type-1 .wdt-artist-description {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 300px;
}

.wdt-artist-item.wdt-type-1 .wdt-artist-group-1 .wdt-artist-image,
.wdt-artist-item.wdt-type-1 .wdt-artist-group-1 .wdt-artist-image img {
    height: 100%;
    object-fit: cover;
}

/* Product template */

.wdt-product-tabs .wdt-artist-item.wdt-type-1 .wdt-artist-start {
    flex-direction: row;
}

.wdt-product-tabs .wdt-artist-item.wdt-type-1 .wdt-artist-group-2 {
    background-color: var(--wdtSecondaryColor);
    padding: 30px;
}

/* Carousel 1 */

.swiper-slide:nth-child(2n) .wdt-artist-item.wdt-type-1 .wdt-artist-start {
    flex-direction: column-reverse;
}

.wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div {
    position: absolute;
    top: -186px;
    margin: 0;
    left: 10%;
}

.wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-next {
    left: auto;
    right: 10%;
}

/* Hover */

.wdt-artist-item.wdt-type-1:hover .wdt-artist-group-2 {
    background-color: var(--wdtSecondaryColor);
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-group-2 {
    background-color: var(--wdtSecondaryColor);
    color: var(--wdtBodyTxtColor);
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-category {
    color: rgba(var(--wdtHeadAltColorRgb), 0.65);
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-title h5, 
.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-title h5 a,
.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-button a {
    color: var(--wdtHeadAltColor);
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-social-icons a {
    color: rgba(var(--wdtHeadAltColor),1);
    transition-duration: 0.25s;
    -webkit-transition-duration: 0.25s;
}

.wdt-dark-bg .wdt-artist-item.wdt-type-1:hover .wdt-artist-social-icons a:hover {
    color: var(--wdtAccentTxtColor);
    border-color: var(--wdtPrimaryColor);
    background-color: var(--wdtPrimaryColor);
    transition-duration: 0.6s;
    -webkit-transition-duration: 0.6s;
}

@media only screen and (min-width:1541px) {
    .wdt-artist-holder:has(.wdt-artist-item.wdt-type-1) .wdt-column:nth-child(2n) .wdt-artist-start {
        flex-direction: column-reverse;
    }
}

@media only screen and (min-width:1025px) and (max-width:1540px) {
    .wdt-artist-holder:has(.wdt-artist-item.wdt-type-1) .wdt-column:nth-child(3n-1) .wdt-artist-start {
        flex-direction: column-reverse;
    }

    .wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div {
        top: -176px;
    }
}

@media only screen and (max-width:1280px) {
    .wdt-artist-item.wdt-type-1 .wdt-artist-group-2>div.wdt-artist-social-icons {
        margin: 30px 0 30px;
    }

    .wdt-product-tabs .wdt-artist-item.wdt-type-1 .wdt-artist-start {
        flex-direction: column;
    }

    .wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div {
        top: -160px;
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .wdt-artist-holder:has(.wdt-artist-item.wdt-type-1) .wdt-column:nth-child(2n) .wdt-artist-start {
        flex-direction: column-reverse;
    }

    .wdt-product-tabs .wdt-artist-item.wdt-type-1 .wdt-artist-start {
        flex-direction: column;
    }

    .wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div {
        top: -85px;
        left: 50%;
        transform: translateX(-150%);
    }

    .wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-next {
        left: auto;
        right: 50%;
        transform: translateX(150%);
    }
}

@media only screen and (max-width:767px) {
    .wdt-artist-item.wdt-type-1 .wdt-artist-group-2 {
        padding-bottom: 30px;
    }

    .wdt-artist-item.wdt-type-1 .wdt-artist-group-2>div.wdt-artist-social-icons {
        margin: 20px 0;
    }

    .wdt-artist-item .wdt-artist-button a {
        margin-top: 0;
    }

    .wdt-product-tabs .wdt-artist-item.wdt-type-1 .wdt-artist-start {
        flex-direction: row;
    }

    .wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div {
        top: -70px;
        left: 50%;
        transform: translateX(-150%);
    }

    .wdt-artist-holder.wdt-carousel-holder:has(.wdt-type-1) .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-next {
        left: auto;
        right: 50%;
        transform: translateX(150%);
    }
}

@media only screen and (max-width:479px) {
    .wdt-artist-item.wdt-type-1 .wdt-artist-group-2 {
        padding: 20px;
    }

    .wdt-product-tabs .wdt-artist-item.wdt-type-1 .wdt-artist-start {
        flex-direction: column;
    }
}



/* Artist style - 2 */

.wdt-artist-item.wdt-type-2 .wdt-artist-start {
    padding-bottom: 30px;
}

.wdt-artist-item.wdt-type-2 .wdt-artist-image img {
    margin: 0;
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item.wdt-type-2 .wdt-artist-social-icons {
    height: 0px;
    opacity: 0;
    margin: 12px 0;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item.wdt-type-2 .wdt-artist-category {
    font-size: var(--wdtFontSize_Base);
    font-family: var(--wdtFontTypo_Alt);
    font-weight: var(--wdtFontWeight_Alt);
    line-height: var(--wdtLineHeight_Alt);
    text-transform: capitalize;
    color: rgba(var(--wdtHeadAltColorRgb), 0.65);
}

.wdt-artist-item.wdt-type-2 .wdt-artist-title h5 {
    font-size: calc(var(--wdtFontSize_H6) + 2px);
    margin: 0;
}

.wdt-artist-item.wdt-type-2 .wdt-artist-group>div:not(:last-child) {
    margin-bottom: 6px;
}

.wdt-dark-bg .wdt-artist-item.wdt-type-2 .wdt-artist-title h5,
.wdt-dark-bg .wdt-artist-item.wdt-type-2 .wdt-artist-title h5 a {
    color: var(--wdtAccentTxtColor);
}

.wdt-dark-bg .wdt-artist-item.wdt-type-2 .wdt-artist-category {
    color: rgba(var(--wdtAccentTxtColorRgb), 0.6);
}

.wdt-artist-holder:has(.wdt-type-2) .wdt-column-wrapper.wdt-snap-scroll-enabled~.wdt-snap-scroll-pagination {
    margin-top: 15px;
}

/* Hover */

.wdt-artist-item.wdt-type-2:hover .wdt-artist-image img {
    height: 300px;
    margin-top: -30px;
}

.wdt-artist-item.wdt-type-2:hover .wdt-artist-social-icons {
    height: 30px;
    opacity: 1;
    margin: 27px 0;
}

@media only screen and (min-width:1281px) {
    .elementor-widget-spacer+.elementor-widget-wdt-artist:has(.wdt-type-2) {
        display: flex;
        width: 100%;
    }

    .elementor-widget-spacer+.elementor-widget-wdt-artist:has(.wdt-type-2) .elementor-widget-container {
        height: auto;
        flex-grow: 1;
    }

    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder:has(.wdt-type-2),
    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder:has(.wdt-type-2)>div,
    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder .wdt-artist-item.wdt-type-2 {
        height: 100%;
    }

    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder .wdt-artist-item.wdt-type-2 .wdt-artist-start {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder .wdt-artist-item.wdt-type-2 .wdt-artist-image {
        flex-grow: 1;
    }

    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder .wdt-artist-item.wdt-type-2 .wdt-artist-image img {
        height: 100%;
    }

    .elementor-widget-spacer+.elementor-widget-wdt-artist .wdt-artist-holder .wdt-artist-item.wdt-type-2:hover .wdt-artist-image img {
        height: calc(100% + 30px);
    }
}

@media only screen and (max-width:767px) {
    .wdt-artist-item.wdt-type-2 .wdt-artist-image img {
        height: 250px;
    }

    .wdt-artist-item.wdt-type-2:hover .wdt-artist-image img {
        height: 224px;
        margin-top: -20px;
    }

    .wdt-artist-item.wdt-type-2 .wdt-artist-start {
        padding-bottom: 20px;
    }

    .wdt-artist-item.wdt-type-2:hover .wdt-artist-social-icons {
        margin: 20px 0;
    }
}



/* Artist style - 3 */

.wdt-artist-item.wdt-type-3 {
    display: grid;
    grid-template-columns: 1fr 1.13fr;
    gap: 40px;
    padding: 60px 50px 60px 70px;
    border: 1px solid var(--wdtBorderColor);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--wdt-image-default-style);
    -webkit-filter: var(--wdt-image-default-style);
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery a:hover img {
    filter: var(--wdt-image-hover-style);
    -webkit-filter: var(--wdt-image-hover-style);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery > *:nth-child(3n) {
    grid-column: 1 / span 2;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery a {
    position: relative;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery a::after {
    content: '';
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    opacity: 0;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
    z-index: 1;

    background-color: var(--wdtSecondaryColor);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M55.25,37V26.68H44.75V37H34.25V47.34h10.5V57.68h10.5V47.34h10.5V37Z'/%3E%3Cpath d='M86.75,16.35V11.19H81.5V6H76.25V.85H23.75V6H18.5v5.17H13.25v5.16H8V68h5.25v5.16H18.5v5.17h5.25V83.5h42V93.83H71V99H86.75V88.67H81.5V83.5H76.25V78.34H81.5V73.17h5.25V68H92V16.35ZM81.5,57.68H76.25v5.16H71V68H65.75v5.16H34.25V68H29V62.84H23.75V57.68H18.5v-31h5.25V21.52H29V16.35h5.25V11.19h31.5v5.16H71v5.17h5.25v5.16H81.5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M55.25,37V26.68H44.75V37H34.25V47.34h10.5V57.68h10.5V47.34h10.5V37Z'/%3E%3Cpath d='M86.75,16.35V11.19H81.5V6H76.25V.85H23.75V6H18.5v5.17H13.25v5.16H8V68h5.25v5.16H18.5v5.17h5.25V83.5h42V93.83H71V99H86.75V88.67H81.5V83.5H76.25V78.34H81.5V73.17h5.25V68H92V16.35ZM81.5,57.68H76.25v5.16H71V68H65.75v5.16H34.25V68H29V62.84H23.75V57.68H18.5v-31h5.25V21.52H29V16.35h5.25V11.19h31.5v5.16H71v5.17h5.25v5.16H81.5Z'/%3E%3C/svg%3E");
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery a:hover::after {
    opacity: 1;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--wdtPrimaryColor);
    opacity: 0;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
    z-index: 1;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-media-group .wdt-artist-gallery a:hover::before {
    opacity: 0.4;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding: 40px 0px;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group > div {
    width: 100%;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group .wdt-artist-description {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group .wdt-artist-detail-sub-group {
    padding: 30px 0;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group .wdt-artist-detail-sub-group>div:not(:last-child) {
    margin-bottom: 20px;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group .wdt-artist-name-location-group>div:not(:last-child) {
    margin-bottom: 8px;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-image img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: var(--wdtRadius_Full);
    -webkit-border-radius: var(--wdtRadius_Full);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-title h5 {
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    /* Min-20 & Max-24 */
    margin: 0;
}

.wdt-artist-item.wdt-type-3 .wdt-artist-detail-group .wdt-artist-location {
    color: rgba(var(--wdtHeadAltColorRgb), 0.65);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-social-icons a {
    width: 1em;
    height: 1em;
    border: none;
    font-size: var(--wdtFontSize_Base);
    color: rgba(var(--wdtLinkColorRgb), 0.6);
    background-color: transparent;
    border-radius: var(--wdtRadius_Zero);
    -webkit-border-radius: var(--wdtRadius_Zero);
}

.wdt-artist-item.wdt-type-3 .wdt-artist-social-icons a:hover {
    color: var(--wdtPrimaryColor);
    background-color: transparent;
}

@media only screen and (min-width:1281px) and (max-width:1540px) {
    .wdt-artist-item.wdt-type-3 {
        padding: 40px;
    }

    .wdt-artist-item.wdt-type-3 .wdt-artist-detail-group {
        padding: 20px 0px;
    }
}

@media only screen and (min-width:1025px) and (max-width:1280px) {
    .wdt-artist-item.wdt-type-3 {
        padding: 30px;
        gap: 30px;
    }

    .wdt-artist-item.wdt-type-3 .wdt-artist-detail-group {
        padding: 20px 0px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .wdt-artist-item.wdt-type-3 {
        padding: 25px;
        gap: 25px;
    }

    .wdt-artist-item.wdt-type-3 .wdt-artist-detail-group {
        padding: 10px 0px;
    }
}

@media only screen and (max-width:479px) {
    .wdt-artist-item.wdt-type-3 {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wdt-artist-item.wdt-type-3 .wdt-artist-media-group {
        order: 1;
    }

    .wdt-artist-item.wdt-type-3 .wdt-artist-detail-group {
        padding: 20px 0px;
        order: 2;
    }
}









/* Popup */

.artist-popup-container {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: none;
    overflow-y: auto;
}

.artist-popup-inner {
    background: #fff;
    max-width: 1100px;
    margin: 50px auto;
    padding: clamp(2.5rem, 0rem + 5.2083vw, 6.25rem) clamp(1.875rem, 0.4207rem + 4.8577vw, 6.25rem);
    border-radius: var(--wdtRadius_2X);
    position: relative;
}

.artist-popup-close {
    position: absolute;
    top: clamp(0.625rem, 0.4172rem + 0.694vw, 1.25rem);
    right: clamp(0.625rem, 0.4172rem + 0.694vw, 1.25rem);
    border: none;
    background: var(--wdtHeadAltColor);
    border-radius: var(--wdtRadius_Full);
    cursor: pointer;
    padding: 0;
    height: clamp(2.5rem, 2.2922rem + 0.694vw, 3.125rem);
    width: clamp(2.5rem, 2.2922rem + 0.694vw, 3.125rem);
    color: white;
    font-size: 0px;
    z-index: 9999;
    transition: var(--wdt-Ad-Transition), color 0.05s linear;
    -webkit-transition: var(--wdt-Ad-Transition), color 0.05s linear;
    margin: 0;
}

.artist-popup-close:hover {
    background-color: var(--wdtPrimaryColor);
    color: var(--wdtHeadAltColor);
    z-index: 5;
}

.artist-popup-close:before,
.artist-popup-close:after {
    content: "";
    height: clamp(0.9375rem, 0.8336rem + 0.347vw, 1.25rem);
    width: 2px;
    background-color: currentcolor;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: var(--wdt-Ad-Transition), background-color 0.05s linear;
    -webkit-transition: var(--wdt-Ad-Transition), background-color 0.05s linear;
}

.artist-popup-close:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.artist-popup-close:hover:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.artist-popup-close:hover:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

@media screen and (max-width:1280px) {
    .artist-popup-inner {
        max-width: 850px;
    }
}

@media screen and (max-width:1024px) {
    .artist-popup-inner {
        max-width: 700px;
    }
}

@media screen and (max-width:767px) {
    .artist-popup-inner {
        max-width: clamp(25rem, 4.0941rem + 69.6864vw, 37.5rem);
    }
}

@media screen and (max-width:479px) {
    .artist-popup-inner {
        max-width: clamp(18.75rem, 1.7926rem + 77.5194vw, 25rem);
    }
}