#cb-widget {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 999999;
      font-family: Arial, sans-serif;
    }

   #cb-widget-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 110px;
    background: transparent;
    border: none;
    cursor: pointer;
}
    #cb-widget-toggle{
    animation: float 2s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

    #cb-widget-toggle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
}

    #cb-widget-toggle img:hover {
      transform: scale(1.08);
    }

   #cb-widget-toggle span {
    margin-top: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;

    white-space: nowrap;
    text-align: center;
    display: block;
}

    #cb-widget-panel {
      display: none;
      position: fixed;
      right: 18px;
      bottom: 92px;
      width: 390px;
      height: 720px;
      max-width: calc(100vw - 24px);
      max-height: calc(100vh - 110px);
      background: #ffffff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    }

    #cb-widget-panel.cb-open {
      display: block;
    }

    #cb-widget-close {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.75);
      color: #ffffff;
      cursor: pointer;
      font-size: 24px;
      line-height: 34px;
    }

    #cb-widget-frame {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    @media (max-width: 480px) {
      #cb-widget {
        right: 12px;
        bottom: 12px;
      }

      #cb-widget-panel {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100vw;
        height: 100dvh;
        max-width: 100vw;
        max-height: 100dvh;
        border-radius: 0;
      }

      #cb-widget-toggle {
        width: 58px;
        height: 58px;
      }
    }