@keyframes bubbleAnimation {
  0% {
    transform: translateY(0px);
    background-color: #6cad96;
  }

  28% {
    transform: translateY(-7px);
    background-color: #9ecab9;
  }

  44% {
    transform: translateY(0px);
    background-color: #b5d9cb;
  }
}

#agentAssistContainer {
  display: flex;
  flex: 1;
}

.agent-assist-cont {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */

  .folder-search-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #000000b3;

  .slright-btn-cont{
  float: left;
  position: absolute;
  left: 0;
  top: 9px;
  }

    .folder-search {
  width: 292px;
  display: flex;
  justify-content: center;
  margin: 4px;

      .search-box {
  padding: 5px;
  border: 1px solid rgb(255, 255, 255);
  float: left;
  width: 100%;
  height: 29px;
  /* background: #fff; */
  outline: 0;
  border-radius: 3px 0 0 3px;
      }

      .search-btn {
  background: #c7ccdc;
  color: white;
  border: 1px solid #80808042;
  border-left: none;
  cursor: pointer;
  width: 38px;
  border-radius: 0 3px 3px 0;
      }
    }
  ;
  position: relative;
  }

  .agent-assist-res-cont {
  white-space: pre-line;
  padding: 5px;
  font-size: 11px;
  font-family: Menlo, Cascadia Code, Consolas, Liberation Mono, monospace;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  width: 100%;

    .res-cont {
  display: flex;
  flex-direction: column;
  padding: 5px;
  /* box-shadow: rgb(0 0 0 / 80%) 0px 0.0625em 1em 0px,
				rgb(0 0 0 / 34%) 0px 0.125em 1em,
				rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset; */

      .header-search {
  background-color: #fae5e5 !important;
      }

      .header {
  height: auto;
  max-height: 60px;
  display: flex;
  background-color: #e9f8ff;
  justify-content: space-between;
  /* margin-bottom: 5px; */
  color: black;
  line-height: normal;
  padding: 3px;
  gap: 12px;
  align-items: flex-start;

        .subject {
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 182px;
  overflow: hidden;
  line-height: 20px;
        }

        .time {
  line-height: 20px;
        }

        .button {
  display: flex;
  cursor: pointer;
  gap: 2px;
        }
  svg {
          fill: black;
        }
  /* flex-grow: 1; */
  border-radius: 3px;
      }

      .content {
  padding: 5px;
      }
  border: 1px solid #cccccca3;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }
  border: 1px solid #dae0e5;
  height: auto;
  flex: 1;
  }

  .type-bubble-cont {
  white-space: normal;

    .type-bubble {
  /* background-color: #E6F8F1; */
  /* padding: 7px 16px; */
  /* -webkit-border-radius: 20px; */
  /* -webkit-border-bottom-left-radius: 2px; */
  -moz-border-radius: 20px;
  -moz-border-radius-bottomleft: 2px;
  /* border-radius: 20px; */
  /* border-bottom-left-radius: 2px; */
  display: inline-block;

      .typo-text {
  padding-right: 10px;
      }

      .typing {
  align-items: center;
  display: flex;
  height: 17px;
      }

      .typing .dot {
  animation: bubbleAnimation 1.8s infinite ease-in-out;
  background-color: #6cad96;
  border-radius: 50%;
  height: 7px;
  margin-right: 4px;
  vertical-align: middle;
  width: 7px;
  display: inline-block;
      }

      .typing .dot:nth-child(1) {
  animation-delay: 200ms;
      }

      .typing .dot:nth-child(2) {
  animation-delay: 300ms;
      }

      .typing .dot:nth-child(3) {
  animation-delay: 400ms;
      }

      .typing .dot:nth-child(4) {
  animation-delay: 700ms;
      }

      .typing.dot:
  last-child {
        margin-right: 0;
      }
    }
  }
;
  width: 100%;
}
