body {
  background: linear-gradient(#ffffff, #151540);
  font-family: Verdana,Arial,Helvetica,sans-serif;
  overflow-y: hidden;
}

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.2);
}

.title {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1%;
  margin-bottom: 1%;
}

.chat {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  height: 74%;
  padding: 2%;
  overflow:auto;
}

.messages div {
  padding: 2% 2%;
  border-radius: 12px;
}

.userText {
    color: white;
    font-family: Helvetica;
    font-weight: normal;
    text-align: right;
    font-size: 140%;
}

.userText span {
    display: inline-block;
    background: #5ca6fa;
    padding: 3%;
    border-radius: 8px;
    border-bottom-right-radius: 2px;
    max-width: 85%;
}

.botText {
    color: #151540;
    font-family: Helvetica;
    font-weight: normal;
    text-align: left;
    font-size: 140%;
}

.botText span {
    display: inline-block;
    background: #e0e0e0;
    padding: 3%;
    border-radius: 8px;
    border-bottom-left-radius: 2px;
    max-width: 85%;
}


.actions {
  display: flex;
  position: relative;
  padding-left: 1%;
  width: 92%;
  height: 10%;
  background-color: white; 
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #aaa;
  border-radius: 12px;
}

.actions input{
  display: flex;
  font-size: 160%;
  width: 100%;
  height: 100%;
  outline: none;
  border: 1px solid white;
}

.input {
  background: white;
}
.micpng {
  height: 100%;  
}

.mic {
  margin-top: 10%;
  height: 80%;
}

.speakcontent {
  display: none;
  left: 8.8%;
  bottom: 0.9%;
  font-size: 160%;
  position: fixed;
  background: #333;
  color: lime;
  padding-left: 2%;
  padding-right: 2%;
  width: 77.5%;
  height: 12%;
  border-radius: 13px;
}


/* width */
::-webkit-scrollbar {
  width: 0px;
}




                      /* TRANSLATE CSS */

.User-Translate {
  display: none;
}
.AI-Translate {
  display: none;
}

.select-user {
  font-size: 1.5em;
  font-weight: bolder
  border-radius: 3px;
  border:none;
  color: #151540; 
  padding: 10px 30px 10px 10px; 
  background: white;
}
.select-AI {
  display: none;
}

.response {
  display: none; 
}




/* QUESTION CHOICES IN RS*/

.questionChoices {
  color: white;
  background: #5ca6fa;
  font-family: Helvetica;
  font-weight: normal;
  font-size: 100%;
  text-align: left;
}