
body{
  background-color: azure;
}

select,#myForm ,#open-button{
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  font-size: .875rem !important;
  font-weight: 400 !important;
  letter-spacing: .16px !important;
  line-height: 1.4 !important;
}
* {box-sizing: border-box;}

/* The popup form - hidden by default */
.form-popup {
  position: fixed;
  width: 520px;
  height: 100%;
  right: 0;
  overflow: hidden;
  z-index: 9;
}

#uploadimage{
  position: absolute;
  width: 100%;
  opacity: .5;
  height: 100%;
  padding-bottom: 42px;
  display:none;
  padding-top: 47px;
  z-index: 9;
}
#head{
  position:relative;
  width: 100%;
  background-image: linear-gradient(300deg,#05d5ff,#53f);
  
  height: 47px;
}
#logo{
  width: 30px;
  position: absolute;
  left: 13px;
  height: auto;
  top: 10px;
}
#head #chatbotName{
  color:white;
  position:absolute;
  left:55px;
  top: 16px;
  font-weight: bold;
}
.fa-bell-o{
  top: 13px;
  position:absolute;
  right:55px;
  font-size:20px;
  cursor: pointer;
  color:white;
}

.badge {
  position: absolute;
    top: -9px;
    right: -9px;
    padding: 2px 5px;
    border-radius: 50%;
    background: #048604c2;
    color: white;
    font-size: 60%;
    font-family: cursive;
}
.fa-bell-slash-o{
  top: 13px;
  position:absolute;
  right:55px;
  font-size:20px;
  cursor: pointer;
  color:white;
  display: none;
}
.notification-panel{
  box-shadow: 0 0 4px 0 rgba(0,0,0,.25);
  height: calc(100% - 89px);
  background-color: #e4e4e4;
  position: absolute;
  z-index: 9;
  right: -65%;
  top: 47px;
  width: 60%;
  overflow-y: scroll;
  padding: 5px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.notification-panel::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE and Edge */
.notification-panel {
  -ms-overflow-style: none;
  overflow-x: hidden;
  scrollbar-width: none;
}
.notify{
  width: 100%;
  background-color: white;
  padding: 5px;
  overflow-wrap: break-word;
  margin-bottom: 5px;
  cursor: pointer;
}
.notify .title{
  font-weight: bold;
  padding-right: 20px;
}
.notify .body{
  font-size: 10px;
}
.notify img{
  float: right;
  height: 35px; 
  width: 35px
}
.notify .reqdiv5{
  margin-top: -8px;
  padding-right: 0px;
}
.fa-bars{
  top: 13px;
  position:absolute;
  right:17px;
  font-size:20px;
  cursor: pointer;
  color:white;
}
#output_area{
  position:relative;
  width: 100%;
  height: calc(100% - 89px);
  overflow-y: scroll;
  padding:10px;
}
#preferences{
  padding:5px;
  box-shadow: 0 0 4px 0 rgba(0,0,0,.25);
  height: calc(100% - 89px);
  background-color: #e4e4e4;
  position: absolute;
  z-index: 9;
  right: -65%;
  top: 47px;
  width: 60%;
}
.settings-container{
    background-color: white;
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 5px;
}

.switch{
  float:right;
}

#logout{
  position: absolute;
  bottom: 20px;
  right: 20px;
  border: none;
  outline: none;
}
#logout{
  cursor: pointer;
  text-align: center;
  line-height: 29px; 
  outline: none;
  background: white;
  color: #757575;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
  border-radius: 2px;
  
}
#logout img{
position: absolute;
width: 30px;
left: 0;
}
#logout div{
  width: 100px;
  padding-left: 21px;
}
#footer{
  height: 40px;
  width: 100%;
  float: left;
  background-color: white;
}
#footer div{
  width: 100%;
  float: left;
  padding-right: 130px;
}
#text{
  background: transparent;
  outline: none;
  border-bottom-left-radius: 20px; 
  border: none;
  width: 100%;
  padding-left: 12px;
  padding-top: 11px;
  padding-bottom: 12px;
  color:black;
}
#footer input[type="file"] {
    display: none;
}
#attachment{
  bottom: 12px;
  right: 108px;
  position: absolute;
  width: 20px;
  cursor: pointer;
  transform: rotate(20deg);
}
#microphone{
  outline: none;
  border: none;
  background: transparent;
  cursor:pointer;
  bottom: 8px;
  right: 79px;
  position: absolute;
}
#mic{
  font-size:18px;
  color: grey;
}
#myBtn{
  cursor: pointer; 
  line-height: 1;
  background-color: #248A52; 
  outline: none;
  font-size:.750rem;
  padding: 6px 10px;
  border: none;
  border-radius: 10px;
  color:white;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.ticontainer{
   line-height:1;
}
/*typing animation effect*/
.tidot {
    -webkit-animation: mercuryTypingAnimation 1.5s infinite ease-in-out;
    border-radius: 50%;
    display: inline-block;
    height: 5px;
    margin-right: 4px;
    width: 5px;
    background-color: white;
}

@-webkit-keyframes mercuryTypingAnimation{
0%{
  -webkit-transform:translateY(0px)
}
28%{
  -webkit-transform:translateY(-7px)
}
44%{
  -webkit-transform:translateY(0px)
}
}

.tidot:nth-child(1){
-webkit-animation-delay:200ms;
}
.tidot:nth-child(2){
-webkit-animation-delay:300ms;
}
.tidot:nth-child(3){
-webkit-animation-delay:400ms;
}



/* resize pop-up according to screen size*/
@media screen and (max-width: 768px){
 .form-popup{
    top: 0;
    left: 0;
    margin-top: 0px;
    margin-left: 0px;
    position: fixed;
    width:100%;
    height:100%;
    border-radius:0px;
    }
    #head{
      border-top-left-radius:0px !important;
      border-top-right-radius: 0px !important;
  
    }
    #footer{
      border-bottom-left-radius: 0px !important;
      border-bottom-right-radius: 0px !important;
  
    }
}
    

/* Hide scrollbar for Chrome, Safari and Opera */
#output_area::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE and Edge */
#output_area {
  -ms-overflow-style: none;
  overflow-x: hidden;
  scrollbar-width: none;
}

.div1{
 width: 100%;
 float: left;
}
.div2{
   width:100%;
  float:left;
}
.div3{
  padding:9px;
  float:left;
  border-radius: 10px 10px 10px 0;
  background-color: white;
  color: black;
  animation: bounce 500ms linear both;
  max-width: 100%;
  overflow-wrap: break-word;
}
.div4{
   float:left;
   border-top: 6px solid white;
   border-right: 7px solid transparent;
}
.div7{
   float:left;
   width:100%;
}
.div5{
  float:left;
  font-size: 9px;
  color: black;
  padding-left: 10px;
}
.div6{
  float: left;
    padding-top: 5px;
    width: 90%;
}

.imgdiv1{
  width: 100%;
    float: left;
}
.imgdiv2{

  
  float:left;
}
.imgdiv3{
  background-color: white;
    float: left;
    width: 100%;
    padding: 9px;
    color: black;
    border-radius:0 0 10px 0;
    margin-top: -4px;
}
.imgdiv2 img{
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.imgfile{
  float: left;
  width:100%;
  border-radius: 10px;
}
.filename{
  width:100%;
  float: left;
  padding: 8px 9px 0 9px;
}

.reqdiv1{
  width:90%;
  padding-top:5px;
  float:right;
  
}
.reqdiv2{
  width: 100%;
    float: right;
}
.reqdiv3{
  padding: 6px 10px 7px;
  float:right;
  background: linear-gradient(120deg, #248A52, #257287);
  color:white;
  border-radius: 10px 10px 0 10px;
  animation: bounce 500ms linear both;
  max-width: 100%;
  overflow-wrap: break-word;
}
.reqdiv7{
  float:right;
  width:100%;
}
.reqdiv4{
  border-left: 5px solid transparent;
  border-top: 4px solid #257287;
}
.reqdiv3::before{
   left: auto;
   right: 0;
   border-right: none;
   border-left: 5px solid transparent;
   border-top: 4px solid #257287;
   bottom: -4px;
   content: '';
   position: absolute;
}

.reqdiv5{
  float:right;
  font-size: 9px;
  color: black;
  padding-right: 4px;
    padding-top: 4px;
}

.opdiv1{
  float:left;
  padding: 5px;
}
.opdiv2{
  padding:9px;
  float:right;
  line-height: 1;
  border-radius:25px;
  font-size: .775rem;
  cursor:pointer;
  background-color: white;
  animation: bounce 500ms linear both;
}
.sdiv1{
  padding-top: 6px;
  float: left;
  width: 85%;
  margin-left: 5%;
}
.sdiv2{
  background-color: white;
  border-radius:5px;
  padding:12px;
  animation: bounce 500ms linear both;

}
.sdiv3{
  padding: 0 0 6px 0;
}
.sdiv4{
  max-height: 55px;
  overflow: hidden;
  padding: 1px 0 0 0;
  margin-bottom: 8px;
}
.maximize{
  position: absolute;
  top: 11px;
  color: #0f62fe;
  right: 11px;
}
.page-extend{
  font-size:.675rem;
  color: #0f62fe;
  cursor:pointer;
}
/* Bounce effect */
@keyframes bounce {
  0% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
/*Audio animation*/
.audio-anim-frame {
  position: absolute;
  right:134px;
  bottom: 0%;
  transform: translateX(-50%) translateY(-50%);
  display: none;
}          
.audio-anim-block {
  display: inline-block;
  width: 4px;
  height: 15px;
}
.audio-anim-block.first-block {
  background-color: blue;
}
.audio-anim-block.second-block {
  background-color: red;
}
.audio-anim-block.third-block {
  background-color: green;
}
.audio-anim-block.fourth-block {
  background-color: yellow;
}            
@keyframes first-block {
  0% {transform: scaleY(1);}
  25% {transform: scaleY(0.6);}
  50% {transform: scaleY(0.4);}
  100% {transform: scaleY(1);}
}           
.audio-anim-block.first-block {
  animation-name: first-block;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}           
@keyframes second-block {
  0% {transform: scaleY(1);}
  25% {transform: scaleY(0.1);}
  50% {transform: scaleY(0.2);}
  100% {transform: scaleY(1);}
}           
.audio-anim-block.second-block {
  animation-name: second-block;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}           
@keyframes third-block {
  0% {transform: scaleY(1);}
  25% {transform: scaleY(0.9);}
  50% {transform: scaleY(0.2);}
  100% {transform: scaleY(1);}
}         
.audio-anim-block.third-block {
  animation-name: third-block;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes fourth-block {
  0% {transform: scaleY(1);}
  25% {transform: scaleY(0.6);}
  50% {transform: scaleY(0.4);}
  100% {transform: scaleY(1);}
}         
.audio-anim-block.fourth-block {
  animation-name: fourth-block;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}


select{
  background-color:white;
}
/* slect option */
.selectoption{
   max-width: 100%;
   outline: none;
   border: none;
}
#microphone,#attachment,#myBtn,#mic,#text,.fa-bars,.fa-bell-o{
  pointer-events: none;
}
/* loading animation */
.loader {
  border: 7px solid #f3f3f3;
  border-radius: 50%;
  border-top: 7px solid #3498db;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  margin-left: -35px;
  margin-top: -35px;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ibm and veracitiz logo on setting page*/ 
#preferences .branding {
  font-size: 18px;
    font-weight: 800;
    background:  linear-gradient(300deg,#05d5ff,#53f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* shake animation  */ 
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.prevention-one__icon-inner img{

  background:white;

}

/* textbox  placeholder color */ 
input[type="text"]::placeholder { /* Firefox, Chrome, Opera */ 
    color: grey; 
} 
  
input[type="text"]:-ms-input-placeholder { /* Internet Explorer 10-11 */ 
    color: grey; 
} 
  
input[type="text"]::-ms-input-placeholder { /* Microsoft Edge */ 
    color: grey; 
} 



/*button div in cards*/
.card_button{
width:100%;
float:left;
}

.card_button button{
 width:30%; 
 margin: 0 1%;
}
/*swipe  cards*/
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: left;
  font-size: 12px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: left;
}

.swiper-pagination-bullet{
  background: #18a2b8;
}

.perfedit{
  height: 32px;
  width: 32px;
}

.form-group {
  margin-bottom: 0.3rem;
}

.form-control {
  padding: 0rem 0rem 0rem 0.2rem;
  font-size: 14px;
  color: inherit;
  background-color: transparent;
}

.form-control:focus {
  color: inherit;
  background-color: transparent;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.swiper-slide div::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE and Edge */
.swiper-slide div {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.table-container{
  background-image: url("../images/uma_side_img.png");
  background-size: 100% 100%;
  position: fixed;
  width: calc(100% - 520px);
  left: 0;
  height: 100%;
}
.table-content{
  background: white;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.table-content .btn-danger{
  position: absolute;
  top:10px;
  right: 10px;
}
.table-content .btn-success{
  position: absolute;
  top:10px;
  right: 110px;
}
.table-content table{
  width:100%;
}

.tab-content{
  padding-top: 10px;
}

.div3 .timer{
  background-color: yellowgreen;
  color: black;
  width: 20px;
  text-align: center;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  bottom: -7px;
  right: -10px;
  padding: 3px;
  font-size: 11px;
}