.open-button {
    font-size:40px;
    color: #fff;
    background-color: #e9682e;
    text-align: center;
    border-color: white;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    left:0px;
    width: 60px;
    height:60px;
    border-radius:50%;
    z-index: 1000;
  }
 
  
  /* The popup chat - hidden by default */
  .chat-popup {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 60px;
    border: 3px solid #e9682e;
    z-index: 9;
  }
  
  /* Add styles to the form container */
  .form-container {
    color: #191164;
    max-width: 300px;
    padding: 10px;
    background-color: white;
  }
  
  /* Full-width textarea */
  .form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 10px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 100px;
  }
  .form-container input {
  height: 40px;
    width: 100%;
    padding: 15px;
    margin: 5px 0 10px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    
  }
  
  /* When the textarea gets focus, do something */
  .form-container textarea:focus {
    background-color: #ddd;
    outline: none;
  }
  p{
      font-size:16px;
      text-align: center;
  }
  /* Set a style for the submit/send button */
  .form-container .btn {
    background-color: #191164;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */

  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }
 .close {
      font-size: 18px;
      color: white;
  }
   .modal-content {
       z-index: 100;
   }
  .modal-content .btn{
    background-color: #191164;
    border: none;
}

.modal-dialog{
    z-index: 1111;
}
.modal-header{
    height: 200px;
    background-image: url(../img/modal.jpg);
}
.modal-header h4{
    margin-top: 50px;
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.modal-content h3{
    text-align: center;
    color: #191164;
    text-transform: none;
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.modal-content p{
    text-align: center;
    color: #e9682e;
    font-size: 20px;
}