/* 00343682*/
.banner-container {
  display: flex;
  background-color: white;
  
  .demo-banner {
    display: flex;
    width: 100%;
    background-color: #E9EFFD;
    padding: 8px;
    color: #1F54C8;
    margin: 0;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      min-width: 20px;
      max-height: 20px;
      border: 2px solid #1F54C8;
      border-radius: 50%;
    }
    .icon::after {
      content: "i";
      font-size: 15px;
      font-weight: 600;
    }

    .alert-message {
      display: flex;
      flex-direction: row;
      margin-left: 10px;
      font-size: 14px;
      .alert-title {
        font-weight: 600;
        padding-right: 5px;
      }
      .alert-description {
        font-weight: 400;
      }
    }
    @media screen and (max-width: 1200px){
      .alert-description {
        display: flex;
        flex-direction: column;
      }
    }
  }
}
/* 00343682 END */
