
/*** T3SB identifier: identifier123 */

        .bubble{
            background-color: white;
            border: 2px solid var(--bs-warning);
            -moz-border-radius: 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px;
            bottom: 0px;
            display: none;
            left: 50%;
            margin-bottom: 25px;
            margin-left: -125px;
            padding: 0px;
            position: fixed;
            text-align: center;
            width: 240px;
            z-index: 100;
        }
        .bubble p {
          margin: 8px;
      }
      .bubble strong{
          font-weight: bold;
      }
      .bubble:before,
      .bubble:after {
          bottom: -9px;
          border: solid 12px transparent;
          border-bottom: 0;
          border-top-color: #fff;
          content: "\0020";
          display: block;
          height: 0;
          left: 42%;
          overflow: hidden;
          position: absolute;
          width: 0;
          z-index: 101;  
      }
      .bubble:before {
          bottom: -12px;
          border-top-color: var(--bs-warning);
          z-index: 99;
      }
      a.bubble-close{
        background-color: var(--bs-warning-border-subtle);
          border-radius: 50rem;
          color: var(--bs-primary);
          cursor: pointer;
          float: right;
          line-height: 20px;
          width: 24px;
          height: 24px;
          margin-right: -12px;
          margin-top: -12px;
          padding: 0;
          text-decoration: none;
        border: 2px solid var(--bs-warning);
      }
    

