/* info bulle */

#info{
    background-color: #8b744a;
    color: white;
}

#info > div{
    padding-bottom: 40px;
}

#info  .owl-dots .owl-dot{
    margin-bottom: 0;
}

#info .owl-dots .owl-dot.active {
    background-color: #ffff01;
}

#info .owl-controls{
    padding: 0;
    top: auto;
    bottom: 0;
}


#info  .close{
    display: none;
}

#info p{
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    font-size: 1.6rem;
/*    margin: 0;*/
}

#info a{
    color: white;
    text-decoration: none;
    padding: 25px 25px 25px 25px;

    display: flex;
    justify-content: center;
}

#info a > div
{
    align-self: center;
}


@media (min-width: 767px) {

    #info {
        z-index: 999;
        opacity: 0;
        position: absolute;
        max-width: 250px;
/*        border-radius: 10px;*/
        border-radius: 50%;
/*        bottom: 20px;
        right: 0px;*/
        transition: transform 2s cubic-bezier(0, 1, 0.5, 1);
    }

    #info p:last-child
    {
        margin:0 !important;
    }

    #info .owl-controls,
    #info p {
        font-size: 16px;
    }

    .byebye #info {
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
    }

    #info .close {
        width: 25px;
        height: 25px;
        border: 3px solid white;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        right: 15px;
        cursor: pointer;
        background: transparent url(../img/svg/croix_w.svg) no-repeat center;
    }
}

@keyframes pulse_animation {
    0% { transform: scale(1); }
    10% { transform: scale(1); }
    20% { transform: scale(1); }
    30% { transform: scale(1); }
    45% { transform: scale(1.05); }
    50% { transform: scale(1); }
    65% { transform: scale(1); }
    70% { transform: scale(1.05); }
    80% { transform: scale(1); }
    90% { transform: scale(1); }
    100% { transform: scale(1); }
}

.pulse {
    animation-name: pulse_animation;
    animation-duration: 2000ms;
    transform-origin:70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.popup-title
{
    font-size: 19px;
    margin-bottom: 8px;
    text-align: center;
}

