
.over {
  user-select: none;
  position: fixed;
  width: calc(100% - 0px);
  height: 100vh;
  padding:0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index:+1;
  text-align:center;

  display: flex; /* Center content */
  justify-content: center;
  align-items: center;


}



.over span{
  position: absolute;
  margin:0;
  padding:7px;
  width:calc(100%);
  z-index: +1 !important;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	}

  .confirmation{

    height: auto;
    overflow: auto;
  	margin: auto;
    max-width:500px;
    background-color: #FFF;
    border-radius:20px;
    box-shadow: 0px 30px 50px rgba(0,0,0,0.5);
    color:#000;
    animation: bounce 0.5s;

  }

  .confirmation-header{
    text-align:left;
    padding:25px;
    
  }
  .confirmation-msg{
    padding:25px;
    text-align: left;
    word-wrap: break-word; 
    max-height:70vh; overflow:auto;
  }
  .confirmation-btns{

    width:calc(100%);
    border-top:0px solid #ddd;
    height: auto;
    overflow: auto;
    padding: 0px;

  }
  .confirmation-btn{
    color:#000;
    font-size:14px;
    cursor: pointer;
    float:right;
    padding:20px;
    margin:0px;
    width:calc(50%);
    text-align: center;
    background-color:transparent;
   
  }


  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    60% {
      transform: translateY(-15px);
    }
  }


  

/* DIALOG CHAT */
/* chat bubbles */

.chat-bubble-bg-color{
  /* background-color:#f9f9f9; */
  background: rgb(255,255,255, 0.7);
background: linear-gradient(45deg, rgba(255,255,255,0.8) 0%, rgba(195,226,227,1) 100%);  

}

.chat-bubble{
    display:flex;
    height:auto;
  }
  .chat-bubble-left{

    position:relative;
   margin:5px;
    float:left;
    width:50px;
    height:50px;
    background-color:#ff9900;
    border-radius:50%;
  }

  .chat-bubble-left img {
  max-width: 100%;
  max-height: 100%;

  display: block;
  position: absolute; /* Set image to absolute position */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center image both vertically and horizontally */
}

  .chat-bubble-right{
    flex:1;
    margin:5px;
    width:90%;
    padding:15px;
    background-color:#fff;
    border-radius:10px;
    box-shadow: -1px 5px 5px rgba(0,0,0,0.05);
  }

  .chat-whatsapp-btn-container{
    margin-top:25px;
    height:auto;
    overflow:auto;
  }

  .chat-whatsapp-btn-close{
    cursor: pointer;
    float: right;
    margin-right:15px;
    padding:7px;
    max-width:100px;
    color:#2f2f2f;
    border-radius:5px;
  }

  .chat-whatsapp-btn{
    float:right;
    padding:7px;
    width:130px;
    text-align:center;
    background-color:#32a852;
    color:#fff;
    border-radius:5px;
  }


@media only screen and (max-width: 800px) {

  .confirmation{margin:7px;margin-top:15px;}
  
  .chat-bubble-left{
    width:25px;
    height:25px;
  }
}

/* DIALOG CHAT */



  
  /* Style for the modal */
  /* .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: bounce 0.5s;
  }

  */