/* Scoped styles for Elastic Slider */

/* Keyframes */
@-webkit-keyframes animation{from{opacity:0; -webkit-transform:scale(1.2) rotateX(45deg);transform:scale(1.2) rotateX(45deg);} to{ }}
@keyframes animation{from{opacity:0; transform:scale(1.2) rotateX(45deg);} to{ }}

.slider {
    -webkit-animation: animation ease 1s;
    animation: animation ease 1s;
    animation-delay: .8s;
    animation-fill-mode: backwards;
    
    margin: 0 auto;
    position: relative;
    /* width and height set by Elementor controls */
    max-width: 100%;
    
    perspective: 1000px;
    transition: ease-in-out .2s;
    display: flex;
    justify-content: center;
}

.slider div p {
    /* color and font set by Elementor controls */
    position: absolute;
    /* bottom set by Elementor controls */
    font-size: 22px; 
    width: 100%;
    text-align: center;
    margin: 0;
    pointer-events: none;
}

.slide img { 
    text-align: center;
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* object-fit set by Elementor control */
    -webkit-user-drag: none;
    user-drag: none;
    -moz-user-drag: none; 
    border-radius: 2px;
    pointer-events: none;
}

.slide {
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    
    position: absolute;
    /* height and width set by Elementor controls */
    
    /* Default styles - Overriden by Elementor controls */
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.3);
    background: #fcfcfc;
    
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    
    text-align: center;
    
    /* Default borders - overriden by Elementor controls */
    border-style: solid;
    border-color: #ffffff;
    border-top-width: 12px;
    border-right-width: 12px;
    border-left-width: 12px;
    border-bottom-width: 55px;
    
    box-sizing: border-box;
    border-radius: 5px;
    
    cursor: grab;
}

.slide:active {
    cursor: grabbing;
}