/* ------------------------------------------------------------------------------
@name: Chat Bot Custom
@description: Override Chat Bot
--------------------------------------------------------------------------------- */

.dolphin-chat-icon, .dolphin-chat-notification {
    z-index: 7;
    opacity: 0;
    transform: translateY(100%);
    transition: all .5s ease;
  }

  .dolphin-chat-icon{
    right: 24px;
  }

  .show-chat-bot .dolphin-chat-icon, .show-chat-bot .dolphin-chat-notification {
    opacity: 1;
    transform: translateY(0);
    transition: all .75s ease;
  }


  .dolphin-message-box .message-input {
    width: 100%;
    white-space: nowrap;
    padding-top: 20px;
    padding-bottom: 10px;
  }
