/* Scss Document */
/**/
/* screen resolutio*/
/* mixin start*/
.chat {
  background-color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  bottom: 10px;
  padding: 10px;
  position: fixed;
  right: 10px;
  z-index: 999; }
  .chat .chat-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .chat .chat-icon img {
      max-width: 60px; }
    .chat .chat-icon .text {
      font-size: 1em;
      color: #000;
      padding-left: 10px; }

.visible {
  opacity: 1;
  visibility: visible; }

@media only screen and (max-width: 767px) {
  .chat {
    display: none; } }
