.bulb-content{
    font-size:14px;
 
    box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    border-radius:10px;
    z-index:999;
    color:#fff;
    padding:20px;
    text-align:center;
    animation:fadeInLefter 250ms linear;
    opacity:0;
    animation-fill-mode:forwards;
    animation-delay:250ms;
    cursor:pointer;
z-index: 99;
    position: fixed;
    bottom:15px;
    left:15px;
   
    
    padding-top: 30px;
  
    
}

@media(max-width:992px){
    .bulb-content{
width:100% !important;
height: auto !important;
position: fixed;
bottom:0;
left:0;

    }
}

@keyframes fadeInLefter{
    from{
        opacity:0;
        transform:translate(-50px,0)}
    
    to{
        opacity:1;
        transform:translate(0,0)}
}

.bulb-content .toper-close{
    position:absolute;
    right:5px;
    top:5px;
    font-size:1.2rem;
    
}

.bulb-content p{
    font-size:0.8rem;	
}

.bulb-content b{
    font-size:0.9rem}

.bulb-content a{
    text-decoration:underline;
    color:#fff;}