/**********************/
/* 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);
}

/*icon style*/

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-item-trigger .wdt-hotspot-item-icon .wdt-content-icon-wrapper .wdt-content-icon span{color: var(--wdtPrimaryColor);font-size: var(--wdtFontSize_Ext);}

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-item-trigger{background: none;}

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-item-active .wdt-hotspot-item-trigger,  .wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-item-active .wdt-hotspot-item-trigger:hover{border: none;background: none;}

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-item-trigger:hover .wdt-hotspot-item-icon .wdt-content-icon-wrapper .wdt-content-icon span{color: var(--wdtTertiaryColor);} 

/*bopx*/
    
.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-holder .tippy-box{background-color: var(--wdtTertiaryColor);margin-top: 14px;margin-left: 4px;}

.wdt-cus-hotspot-section-with_image-and_content .tippy-arrow{color: var(--wdtTertiaryColor);transform: translate(0px,0px) !important;}


.wdt-cus-hotspot-section-with_image-and_content .tippy-box[data-placement^=right]>.tippy-arrow:before{left: -18px;border-width: 0px 18px 18px 0;}

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-holder .tippy-box .tippy-content{padding: 30px 50px 30px 50px;}

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-holder .tippy-box .tippy-content h5{font-size: var(--wdtFontSize_H3);color: var(--wdtAccentTxtColor);font-weight: var(--wdtFontWeight_Base);margin: 0;}

.wdt-cus-hotspot-section-with_image-and_content .wdt-hotspot-holder .tippy-box .tippy-content p{font-size: var(--wdtFontSize_Ext);color: var(--wdtAccentTxtColor);font-weight: var(--wdtFontWeight_Base);} 
   
/*title font size*/

.wdt-cus-hotspot-section-heading .wdt-heading-holder > *:last-child{font-size: var(--wdtFontSize_H6);}

/* .wdt-cus-hotspot-section-heading .wdt-heading-holder .wdt-heading-subtitle-wrapper{color: var(--wdtPrimaryColor);} */

.wdt-cus-hotspot-section-heading .wdt-heading-holder .wdt-heading-title-wrapper{margin-bottom: 40px;}

.elementor-element.wdt-cus-hotspot-section-heading{margin-bottom: 54px;}



/* Hotspot new icon with content style */

.wdt-icon-with-content-section .wdt-hotspot-holder [data-tippy-root]{z-index: 9 !important;}

.wdt-icon-with-content-section .wdt-hotspot-item-trigger .wdt-hotspot-item-default{font-size: 15px;}

.wdt-icon-with-content-section .wdt-hotspot-item-trigger {background-color: transparent;border-radius: 50%;padding: 3px;}

.wdt-icon-with-content-section .wdt-hotspot-holder div:not(.wdt-hotspot-item-holder) .tippy-box .tippy-content{background-color: rgba(var(--wdtBodyBGColorRgb), 0.3);box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.01);-webkit-backdrop-filter: saturate(180%) blur(20px);backdrop-filter: saturate(180%) blur(20px);border-radius: 15px;overflow: hidden;}

.wdt-hotspot-holder div:not(.wdt-hotspot-item-holder) .tippy-box .tippy-content span.wdt-hotspot-icon{display: none;}

.wdt-icon-with-content-section .wdt-hotspot-holder div:not(.wdt-hotspot-item-holder) .tippy-box .tippy-content span.wdt-hotspot-icon{display: block;}

.wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content h5{font-size: calc(var(--wdtFontSize_H3) - 4px);margin-top: 12px;margin-bottom: 8px;}

.wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content p{color: var(--wdtSecondaryColor);}

.wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon span {font-size: 40px;}

.wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon {width: 76px;height: 76px;border-radius: 50%;background: var(--wdtBodyBGColor);display: flex;align-items: center;justify-content: center;}

.wdt-icon-with-content-section .wdt-hotspot-holder div#tippy-2 .tippy-box .tippy-content .wdt-content-icon{background: var(--wdtSecondaryColor);}

/* .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box{border-radius: 15px;overflow: hidden;} */

.wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon span i {display: flex;}

.wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content{padding: 30px;padding-right: 100px;}

/* .wdt-icon-with-content-section .wdt-hotspot-item-active .wdt-hotspot-item-trigger:before {
    content: '';
    position: absolute;
    background: transparent;
    border-left: 1px solid var(--wdtBodyBGColor);
    border-bottom: 1px solid var(--wdtBodyBGColor);
    right: 20px;
    bottom: 9px;
    width: 130px;
    height: 100px;
    z-index: -1;
} */

.wdt-icon-with-content-section .tippy-box[data-placement^=top]>.tippy-arrow:before
{
    border-left: 1px solid var(--wdtBodyBGColor);
    border-bottom: none;
    left: 0px;
    bottom: -71px;
    width: 1px;
    height: 100px;
}
.wdt-icon-with-content-section .tippy-box[data-placement^=bottom]>.tippy-arrow:before
{
    border-left: 1px solid var(--wdtBodyBGColor);
    border-bottom: none;
    left: 0px;
    bottom: -74px;
    width: 1px;
    height: 100px;
    top: unset;
}

.wdt-icon-with-content-section .tippy-box[data-placement^=top-end]>.tippy-arrow:before
{
    transform-origin: center top;
    position: absolute;
    background: transparent;
    border-left: 1px solid var(--wdtBodyBGColor);
    border-bottom: 1px solid var(--wdtBodyBGColor);
    left: -130px;
    bottom: -70px;
    width: 130px;
    height: 100px;
    z-index: -1;
}
.wdt-icon-with-content-section .tippy-box[data-placement^=bottom-end]>.tippy-arrow:before
{
    border-width: 0;
    border-bottom-color: transparent;
    transform-origin: center bottom;
    transform-origin: center top;
    position: absolute;
    background: transparent;
    border-left: 1px solid var(--wdtBodyBGColor);
    border-top: 1px solid var(--wdtBodyBGColor);
    left: -126px;
    top: -21px;
    width: 130px;
    height: 100px;
    z-index: -1;
}
.wdt-icon-with-content-section .tippy-box[data-placement^=top-start]>.tippy-arrow:before
{
    border-right: 1px solid var(--wdtBodyBGColor);
    border-left: unset;
    border-bottom: 1px solid var(--wdtBodyBGColor);
    width: 100px;
}
.wdt-icon-with-content-section .tippy-box[data-placement^=bottom-start]>.tippy-arrow:before
{
    border-right: 1px solid var(--wdtBodyBGColor);
    border-left: unset;
    top: unset;
    bottom: -78px;
    border-top: 1px solid var(--wdtBodyBGColor);
    width: 100px;
}
.wdt-icon-with-content-section .wdt-hotspot-holder img{width: 100%;}
.wdt-icon-with-content-section .tippy-arrow{width: auto;height: auto;color: transparent;}
.wdt-icon-with-content-section .wdt-hotspot-item-trigger:before,
.wdt-icon-with-content-section .wdt-hotspot-item-trigger:after {
    content: '';
    display: block;
    position: absolute;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    border: 1px solid var(--wdtBodyBGColor);
    border-radius: 50%;
}
.wdt-icon-with-content-section .wdt-hotspot-item-trigger:before{animation: ripple 1.5s linear infinite;}
/* .wdt-hotspot-item-trigger:after{animation: ripple 2s linear 1s infinite;} */

@keyframes ripple{
    0% { transform: scale(1); }
    50% { transform: scale(1.5); opacity:1; }
    100% { transform: scale(2); opacity:0; }
  }


@media only screen and (max-width:1540px)
{
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content{padding-right: 30px;}
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon{width: 60px;height: 60px;}
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon span {font-size: 30px;}
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content{padding: 20px;}
    .wdt-icon-with-content-section .tippy-box[data-placement^=top-end]>.tippy-arrow:before{bottom: -42px;}
    .wdt-icon-with-content-section .tippy-box[data-placement^=top]>.tippy-arrow:before{bottom: -40px;}
}
@media only screen and (max-width:1280px)
{
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon {
        width: 50px;
        height: 50px;
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon span {
        font-size: 20px;
    }
    span.wdt-hotspot-icon
    {
    display: inline-block;
    float:left;
    margin-right: 15px;
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content h5
    {
        display: inline-block;
        margin-top: 0;
        font-size: var(--wdtFontSize_H4);
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content p
    {
        display: inline-block;
    }
}
@media only screen and (max-width:1024px)
{
    .wdt-icon-with-content-section .wdt-hotspot-holder [data-tippy-root]
    {
        z-index: 11 !important;
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder div#tippy-2 .tippy-box .tippy-content .wdt-content-icon
    {
        background: var(--wdtSecondaryColor);
    }
}
@media only screen and (max-width:480px)
{
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon {
        width: 40px;
        height: 40px;
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content .wdt-content-icon span {
        font-size: 16px;
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content {
        padding: 10px;
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder .tippy-box .tippy-content h5 {
        font-size: calc(var(--wdtFontSize_H4) - 4px);
    }
    .wdt-icon-with-content-section .wdt-hotspot-holder [data-tippy-root]
    {
        z-index: 11 !important;
    }
}

/* .wdt-icon-with-content-section .wdt-hotspot-holder div:not(.wdt-hotspot-item-holder) .tippy-box:after {background-color: rgba(var(--wdtBodyBGColorRgb), 1);-webkit-backdrop-filter: blur(11px) brightness(1.1);backdrop-filter: blur(7px) brightness(7);fill-opacity: 7%;content: '';position: absolute;width: 100%;height: 100%;top: 0;left: 0;} */


