.chatbot-frame iframe {
        overflow-x: hidden;
        overflow-y: hidden;
        color: #588d96 !important;
      }

      .flyout__header {
        position: relative;
        width: 100%;
        height: 40px;
        background-color: #52D3C0;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        display: none;
      }

      .flyout__heading {
        color: black;
        font-size: 15px;
        font-family: "Source Code Pro", sans-serif;
        margin: auto;
        font-weight: 600;
      }

      .flyout,
      .flyout__close,
      .flyout__close:before,
      .flyout__close:after,
      .flyout__content {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -o-transform-origin: center;
        transform-origin: center;
        z-index: 1000;
      }

      /* Flyout */

      .flyout {
        position: fixed;
        right: 10px;
        bottom: 125px !important;
        display: inline-block;
        padding: 15px;
        width: 95%;
        max-height: 700px;
        z-index: 1000;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        max-width: 80px;
      }

      .flyout.is-active {
        max-width: 500px;
        height: 60%;
      }

      @media (max-width: 768px) {
        .flyout.is-active {
          height: 80%;
        }
      }

      .flyout.is-active:after {
        opacity: 0;
      }

      .flyout.is-active .flyout__header {
        display: block;
        display: flex;
        text-align: center;
      }

      /* Flyout control */

      .flyout__open {
        position: absolute;
        top: 0;
        right: 3px;
        z-index: 1001;
      }

      .flyout__open .icon {
        position: relative;
        z-index: 1;
        display: block;
        width: 80px;
        height: 80px;
        border-radius: 0%;
        /*background-color: #a3c5c9;*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: 90%;
        background-image: url('https://uniri.hr/wp-content/themes/uri.core/assets/uri_bot_avatar.png');
        /*border: 1px solid white;*/
        /*box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);*/
        cursor: pointer;
        -webkit-transition: all 0.15s ease-in-out;
        -moz-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
      }

      .flyout__header .icon {
        position: absolute;
        z-index: 1;
        display: block;
        width: 45px;
        height: 60px;
        border-radius: 0%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        background-image: url('https://uniri.hr/wp-content/themes/uri.core/assets/uri_bot_avatar_f.png');
        cursor: pointer;
        left: 0;
        bottom: 0;
      }

      .flyout__open .icon:before {
        position: absolute;
        top: -3px;
        left: -3px;
        z-index: 1;
        /*display: block;*/
        display: none;
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 0%;
        background-color: #fd555c;
        border: 1px solid white;
      }

      .flyout__open .text {
        position: absolute;
        right: 55px;
        top: 9px;
        width: 98px;
        padding: 14px 16px 14px;
        border-radius: 0px;
        background-color: #a3c5c9;
        font-family: 'Verdana', 'Calibri', 'Arial', 'sans-serif';
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 0.5px;
        color: black;
        -webkit-transition: all 0.15s ease-in-out;
        -moz-transition: all 0.15s ease-in-out;
        -o-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        cursor: pointer;
      }

      .flyout__open:hover .icon {
        transform: scale(1.05);
      }

      .flyout__open:hover .text {
        width: 102px;
      }

      .flyout__close {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 40px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        cursor: pointer;
      }

      .flyout__close:before,
      .flyout__close:after {
        position: absolute;
        top: 21px;
        right: 10px;
        content: '';
        opacity: 0;
        display: block;
        width: 20px;
        height: 2px;
        margin-top: -2px;
        background-color: black;
        border-radius: 0px;
      }

      .flyout__close:before {
        transform: rotate(45deg);
      }

      .flyout__close:after {
        transform: rotate(-45deg);
      }

      .flyout:not(.is-active) .flyout__close:hover {
        transform: translateY(-1px);
      }

      .flyout:not(.is-active) .flyout__close:hover ~ .flyout__content {
        transform: translateY(-1px);
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1),
          0 10px 40px rgba(0, 0, 0, 0.05);
      }

      .flyout.is-active .flyout__open {
        display: none;
      }

      .flyout.is-active .flyout__close:before,
      .flyout.is-active .flyout__close:after {
        opacity: 1;
      }

      .flyout__content {
        display: none;
      }

      .flyout__content iframe {
        visibility: hidden;
        opacity: 0;
        border: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
      }

      .flyout.is-active .flyout__content {
        display: block;
        position: relative;
        overflow: hidden;
        clear: both;
        margin: 0 0 -40px 0;
        padding: 0;
        max-height: 10000px;
        height: 100%;
        width: 100%;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        box-shadow: 0 10px 32px 0 rgba(95, 95, 95, 0.15);
      }

      .flyout.is-active .flyout__content iframe {
        opacity: 1;
        visibility: visible;
      }

      .ac-pushbutton div {
        white-space: normal !important;
      }