/**********************/
/* Hotspot trigger animations*/
/**********************/


/* Animations */

@-webkit-keyframes wdt-soft-beat
{
    from
    {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    to
    {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}
@keyframes wdt-soft-beat
{
    from
    {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    to
    {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

@-webkit-keyframes wdt-expand
{
    0%
    {
        -webkit-transform: scale(.5);
                transform: scale(.5);

        opacity: 1;
    }
    to
    {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);

        opacity: 0;
    }
}
@keyframes wdt-expand
{
    0%
    {
        -webkit-transform: scale(.5);
                transform: scale(.5);

        opacity: 1;
    }
    to
    {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);

        opacity: 0;
    }
}

@keyframes ripple
{
    0%
    {
        transform: scale(1);

        opacity: .8;
    }
    45%
    {
        transform: scale(1.75);

        opacity: 0;
        border-width: 10;
    }
}

/* Soft Beat */

.wdt-hotspot-soft-beat
{
    -webkit-animation: wdt-soft-beat .7s infinite alternate;
            animation: wdt-soft-beat .7s infinite alternate;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
}

/* Expand */

.wdt-hotspot-expand:before
{
    -webkit-animation: wdt-expand 2s infinite;
            animation: wdt-expand 2s infinite;
}

.wdt-hotspot-expand:before
{
    position: absolute;
    z-index: -1;

    width: 100%;
    height: 100%;

    content: '';

    opacity: 0;
    border-radius: inherit;
    background-color: inherit;
}

/* Overlay */

.wdt-hotspot-overlay
{
    -webkit-transition: opacity .2s;
         -o-transition: opacity .2s;
            transition: opacity .2s;
;

    opacity: .7;
}
.wdt-hotspot-item-active .wdt-hotspot-overlay
{
    opacity: 1;
}

/* Ripple */

.wdt-hotspot-ripple:before
{
    -webkit-animation: ripple 3s ease-out infinite;
            animation: ripple 3s ease-out infinite;
}

.wdt-hotspot-ripple:before
{
    position: absolute;
    z-index: -1;

    width: 100%;
    height: 100%;

    content: '';

    opacity: 0;
    border-width: 2px;
    border-style: solid;
    border-color: inherit;
    border-radius: inherit;
}

.wdt-hotspot-item-active .wdt-hotspot-item-trigger.wdt-hotspot-ripple:before
{
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
}

/**********************/
/* Tooltip animations*/
/**********************/

/* Scale */
.tippy-box[data-animation=scale][data-placement*=top]
{
    transform-origin: bottom;
}
.tippy-box[data-animation=scale][data-placement*=bottom]
{
    transform-origin: top;
}
.tippy-box[data-animation=scale][data-placement*=left]
{
    transform-origin: right;
}
.tippy-box[data-animation=scale][data-placement*=right]
{
    transform-origin: left;
}
.tippy-box[data-animation=scale][data-state=hidden]
{
    transform: scale(.5);

    opacity: 0;
}

/* Perspective */
.tippy-box[data-animation=perspective][data-placement^=top]
{
    transform-origin: bottom;
}
.tippy-box[data-animation=perspective][data-placement^=top][data-state=visible]
{
    transform: perspective(700px);
}
.tippy-box[data-animation=perspective][data-placement^=top][data-state=hidden]
{
    transform: perspective(700px) translateY(8px) rotateX(60deg);
}
.tippy-box[data-animation=perspective][data-placement^=bottom]
{
    transform-origin: top;
}
.tippy-box[data-animation=perspective][data-placement^=bottom][data-state=visible]
{
    transform: perspective(700px);
}
.tippy-box[data-animation=perspective][data-placement^=bottom][data-state=hidden]
{
    transform: perspective(700px) translateY(-8px) rotateX(-60deg);
}
.tippy-box[data-animation=perspective][data-placement^=left]
{
    transform-origin: right;
}
.tippy-box[data-animation=perspective][data-placement^=left][data-state=visible]
{
    transform: perspective(700px);
}
.tippy-box[data-animation=perspective][data-placement^=left][data-state=hidden]
{
    transform: perspective(700px) translateX(8px) rotateY(-60deg);
}
.tippy-box[data-animation=perspective][data-placement^=right]
{
    transform-origin: left;
}
.tippy-box[data-animation=perspective][data-placement^=right][data-state=visible]
{
    transform: perspective(700px);
}
.tippy-box[data-animation=perspective][data-placement^=right][data-state=hidden]
{
    transform: perspective(700px) translateX(-8px) rotateY(60deg);
}
.tippy-box[data-animation=perspective][data-state=hidden]
{
    opacity: 0;
}

/* shift-away */
.tippy-box[data-animation=shift-away][data-state=hidden]
{
    opacity: 0;
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top]
{
    transform: translateY(10px);
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom]
{
    transform: translateY(-10px);
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left]
{
    transform: translateX(10px);
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right]
{
    transform: translateX(-10px);
}

/* shift-toward */
.tippy-box[data-animation=shift-toward][data-state=hidden]
{
    opacity: 0;
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=top]
{
    transform: translateY(-10px);
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=bottom]
{
    transform: translateY(10px);
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=left]
{
    transform: translateX(-10px);
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=right]
{
    transform: translateX(10px);
}

/* Others */

.wdt-hotspot-holder
{
    position: relative;
}

.wdt-hotspot-holder .wdt-hotspot-repeater-item
{
    position: absolute;
}

.wdt-hotspot-item-trigger
{
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    padding: 10px;

    -webkit-transition: var(--wdt-elementor-base-transition);
            transition: var(--wdt-elementor-base-transition);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);

    border-color: var(--wdt-elementor-color-primary);
    border-radius: 0;
    background-color: var(--wdt-elementor-color-primary);
}

.wdt-hotspot-item-active .wdt-hotspot-item-trigger
{
    border-color: var(--wdt-elementor-color-secondary);
    background-color: var(--wdt-elementor-color-secondary);
}

.wdt-hotspot-item-trigger > *:not(:last-child)
{
    margin: 0 10px 0 0;
}

/* Hotspot Item Default */

.wdt-hotspot-item-trigger div[class*="wdt-hotspot-item-"]
{
    line-height: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    -webkit-transition: var(--wdt-elementor-base-transition);
            transition: var(--wdt-elementor-base-transition);

    color: var(--wdt-elementor-color-white);
}

.wdt-hotspot-item-active .wdt-hotspot-item-trigger .wdt-hotspot-item-default
{
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

/* Tool Tip */

.wdt-hotspot-item-tooltip
{
    display: none;
    visibility: hidden;
}

.wdt-hotspot-holder .tippy-box
{
    padding: 0;

    border-radius: 0;
    background: transparent;
}
.wdt-hotspot-holder .tippy-box .tippy-content
{
    padding: 20px;

    border-radius: 0;
}

.wdt-hotspot-holder .tippy-box .tippy-content h5
{
    line-height: 1;

    margin: 0 0 15px;

    -webkit-transition: var(--wdt-elementor-base-transition);
            transition: var(--wdt-elementor-base-transition);
}

.wdt-hotspot-holder .tippy-box .tippy-content p
{
    margin: 0;

    -webkit-transition: var(--wdt-elementor-base-transition);
            transition: var(--wdt-elementor-base-transition);
}

 
/*----*****---- << New Style >> ----*****----*/

.wdt-hotspot-holder { display: flex; }
.wdt-hotspot-holder > div { flex: 1; }



.wdt-hotspot-holder > div.left-container, .wdt-hotspot-holder > div.right-container { 
    display: flex ; flex-direction: column; gap: 20px; justify-content: space-around; z-index: 1; }

/* Left Container */
.wdt-hotspot-holder > div.left-container { text-align: left; }

/* Center Container */
.wdt-hotspot-holder > div.center-container { flex-grow: 2; padding: 0 5%; position: relative; }
.wdt-hotspot-holder > div.center-container .hotspots img { height: 100%; width: 100%; object-fit: cover; object-position: center; }

.wdt-hotspot-holder .wdt-hotspot-item-trigger div[class*="wdt-hotspot-item-"] {
    color: var(--wdtPrimaryColor);
}
.wdt-hotspot-holder .wdt-hotspot-item-trigger {
    padding: 2px; border-radius: var(--wdtRadius_Full); -webkit-border-radius: var(--wdtRadius_Full);
    background-color: transparent; border: 1px solid currentColor; color: var(--wdtPrimaryColor); }
.wdt-hotspot-holder .wdt-hotspot-item-trigger .wdt-content-icon-wrapper,
.wdt-hotspot-holder .wdt-hotspot-item-trigger .wdt-content-icon { display: inline-flex; }
.wdt-hotspot-holder .wdt-hotspot-item-trigger span { display: inline-flex; }

/* Right Container */


/* Hotspot Content */
.wdt-hotspot-holder svg.wdt-hotspot-svg {
    --stroke-color: var(--wdtPrimaryColor);
}

.wdt-hotspot-holder .wdt-hotspot-content-group {
    padding: clamp(1.25rem, 0.8333rem + 0.8681vw, 1.875rem);
    /* Min-20 & Max-30 */
    background: var(--wdtAccentTxtColor);
    color: var(--wdtHeadAltColor);
    border-radius: var(--wdtRadius_2X);
    -webkit-border-radius: var(--wdtRadius_2X);
    -moz-border-radius: var(--wdtRadius_2X);
    position: relative;
    border: 1px solid var(--wdtBorderColor);
    -webkit-border: 1px solid var(--wdtBorderColor);
}
.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-contetn-warpper {
    display: flex;
    gap: .5em;
    align-items: baseline;
    margin-bottom: 10px;
}
.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-tooltip{
    margin-bottom:clamp(0.9375rem, 0.5796rem + 0.5587vw, 1.25rem);
}
.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-btn-wrap > a {
    color: var(--wdtHeadAltColor);
    font-family: var(--wdtFontTypo_Base);
    font-weight: var(--wdtFontWeight_Base);
    text-transform: capitalize;
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);

}
.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-btn-wrap > a:after {
    content: '';
    position: relative;
    display: inline-block;
    background-color: currentColor;    
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 100 100' style='enable-background:new 0 0 100 100;' xml:space='preserve'%3E%3Cpath d='M2.5,55.7c0,0.3,0.2,0.5,0.5,0.5c0.1,0,0.1,0,0.2,0c5.4-2.1,10.9-2.5,15.8-2.6C36.4,90,72.7,69.3,97.5,50 C74.4,32,41.1,12.8,22.7,39.9C45.4,39,70,48.1,70,48.1S17.2,43,2.8,48.8c-0.2,0.1-0.3,0.3-0.3,0.5L2.5,55.7z'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 100 100' style='enable-background:new 0 0 100 100;' xml:space='preserve'%3E%3Cpath d='M2.5,55.7c0,0.3,0.2,0.5,0.5,0.5c0.1,0,0.1,0,0.2,0c5.4-2.1,10.9-2.5,15.8-2.6C36.4,90,72.7,69.3,97.5,50 C74.4,32,41.1,12.8,22.7,39.9C45.4,39,70,48.1,70,48.1S17.2,43,2.8,48.8c-0.2,0.1-0.3,0.3-0.3,0.5L2.5,55.7z'%3E%3C/path%3E%3C/svg%3E");
    mask-size: 100%;
    -webkit-mask-size: 100%;
    mask-position: center;
    -webkit-mask-position: center;
    width: 22px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    height: 22px;
    transform: translateX(0px);
    transition:transform 0.3s linear;
    -webkit-transition:transform 0.3s linear;
 
}
.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-btn-wrap > a:hover:after {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
}
.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-btn-wrap > a:hover{
    color: rgba(var(--wdtTertiaryColorRgb),0.7)
}


.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-title-label {
    font-size: clamp(1.125rem, 0.9579rem + 0.5559vw, 1.625rem);
    /* Min-18 & Max-26 */
    margin: 0;
    text-transform: capitalize;
}

.wdt-hotspot-holder .wdt-hotspot-content-group .wdt-subtitle-label {
    font-size: clamp(0.875rem, 0.7917rem + 0.1736vw, 1rem);
    /* Min-14 & Max-16 */
    margin: 0;
}
@media (min-width: 768px) {
    .wdt-hotspot-holder .wdt-hotspot-item-trigger .wdt-hotspot-item-icon span.wdt-hotspot-numb { display: none; }
    .wdt-hotspot-holder .wdt-hotspot-content-group .wdt-hotspot-numb{ display: none; }
    .wdt-hotspot-holder > div.left-container, .wdt-hotspot-holder > div.right-container { padding: 0 clamp(0rem, -1.4583rem + 3.0382vw, 2.1875rem); }
}
@media (max-width: 767px) {
.wdt-hotspot-holder { display: grid ; grid-template-columns: 1fr 1fr; gap: 20px; }
.wdt-hotspot-holder > div.center-container { grid-column: 1 / 3; order: 1; padding: 0; }
.wdt-hotspot-holder > div.left-container { order: 3; }
.wdt-hotspot-holder .wdt-hotspot-content-group { padding-top: 70px; }
.wdt-hotspot-holder > div.right-container { text-align: left; order: 2; }
.wdt-hotspot-holder svg.wdt-hotspot-svg { display: none; }
.wdt-hotspot-holder .wdt-hotspot-item-trigger .wdt-hotspot-item-icon .wdt-content-icon-wrapper { display: none; }
.wdt-hotspot-item-icon .wdt-hotspot-numb { width: 25px; height: 25px; position: relative;  top: 0; left: 0; }
.wdt-hotspot-numb { width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: var(--wdtRadius_Full); 
   -webkit-border-radius: var(--wdtRadius_Full); position: absolute; top: 23px; left: 20px; background: var(--wdtPrimaryColor); color: var(--wdtHeadAltColor); }
}
@media (max-width: 479px) {
.wdt-hotspot-holder { grid-template-columns: 1fr; }
.wdt-hotspot-holder > div.center-container { grid-column: 1; }
}