.chatbot_container {
        font-family: 'Open Sans', sans-serif;
        max-width: 100%;
        height: 100%;
        overflow: hidden;
        margin: auto;
        margin-top: 20px;
        background-color: #fff;
        box-sizing: border-box;
        border-radius: 10px;
        width: 400px;
    }

    .chatbot_icon p span {
        color: black;
    }
ul.chat-window {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  margin-top: 0;
  padding: 20px;
  list-style: none;
  margin: 0;
  box-sizing: border-box;
}
.vertical-align .chatbot_container {
  width: 100%;
  margin: 0px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding-bottom: 10px;
}
.vertical-align {
  display: none;
  padding-bottom: 15px;
}
.vertical-align {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 360px;
  z-index: 999999;
  cursor: pointer;
}
.chatbot_icon {
  background-color: #fff;
  padding: 10px;
  -webkit-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  border: 2px solid #07588c;
}
.chatbot_icon {
  position: fixed;
  bottom: 10px;
  left: 5px;
  border: none;
  background: none; 
}
.chatbot_icon p span {
  width: 100%;
  float: left;
  color: #0e79be !important;
  font-size: 10px;
  font-weight: bold;
}
.chatbot_icon > p a:focus, .chatbot_icon > p a:hover {
  border: none;
  outline-width: 0px;
}
.chatbot_icon > p {
  border: 2px solid #07588c;
  background: #fff;
  border-radius: 20px;
  height:80px;
  width: 80px;
  text-align: center
}
.chatbot_icon > p img {
    margin-bottom: 5px;
    height: auto;
    width: 60px;
    padding: 4px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    border-radius: 100%;
    margin-top: 5px;
}
.chatbot_head p img {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #fff;
  width: 30px;
  height:auto;
  margin: 10px 10px 1px 20px;
}
.closepopup:after {
  transform: rotate(-45deg);
}
.closepopup:before, .closepopup:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.closepopup:before {
  transform: rotate(45deg);
}
.chatbot_head p {
  position: fixed;
  z-index: 9999;
  width: 360px;
  background: #161c20;
  margin-top: 0px !important;
  border-radius: 5px 5px 0 0;
  border-top:0px solid #fff;
  padding: 5px 0;
}
.chatbot_head p span {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
.closepopup {
  position: absolute;
  right: 8px;
  top: 15px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
ul.chat-window > li .text {
  box-sizing: border-box;
  margin-bottom: 15px;
  margin-top: 15px;  
  border-radius: 10px;
  padding: 10px 15px;
  line-height: 1.4;
  font-size: 14px;
}
ul.chat-window > li:first-child {
  white-space: normal;
}
ul.chat-window > li:first-child .text {
  margin-top: 50px !important;
}
ul.chat-window > li.bot .text {
  background-color: rgb(245, 248, 250);
  color: #000;
  float: left;
}
ul.chat-window > li:first-child .text .chart-top-text span {
  display: none;
}
ul.chat-window > li {
  clear: both;
  max-width: 100%;
  box-sizing: border-box;
}
ul.chat-window > li.bot p {
  font-size: 14px;
  color: #000
}
ul.chat-window > li.user {
  float: right;
}
ul.chat-window > li.bot {
  float: left;
}
ul.chat-window > li.user .text {
  background-color: #161c20;
  color: #fff;
}
ul.chat-window > li.options {
    margin-top: 15px;
    list-style: none;
    max-width: 100%;
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}
ul.chat-window > li.options > ul {
  margin-top: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}
ul.chat-window > li.options > ul > li {
  border-radius: 5px;
  padding: 8px 15px;
  border: none;
  display: inline-block;
  cursor: pointer;
  margin-left: 0px;
  margin-bottom: 15px;
  color: #161c20;
  float: left;
  border: 1px solid #161c20;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  text-align: left;
  clear: both;
}
ul.chat-window > li:nth-child(2) > ul > li, ul.chat-window > li:nth-child(7) > ul > li {
  clear: both;
}
span.EndFlow {
  display: inline-block;
  width: auto;
  vertical-align: top;
}
.typing-indicator {
  background-color: #E6E7ED;
  will-change: transform;
  width: auto;
  border-radius: 50px;
  padding: 10px;
  display: table;
  margin: 0;
  margin-left: 10px;
  position: relative;
  -webkit-animation: 2s bulge infinite ease-out;
  animation: 2s bulge infinite ease-out;
}
.typing-indicator::before, .typing-indicator::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -2px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #E6E7ED;
}
.typing-indicator::after {
  height: 10px;
  width: 10px;
  left: -10px;
  bottom: -10px;
}
.typing-indicator span {
  height: 8px;
  width: 8px;
  float: left;
  margin: 0 1px;
  background-color: #9E9EA1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
.vertical-align > .container11 .chatbot_container {
  height: 400px;
}
.typing-indicator span:nth-of-type(1) {
  -webkit-animation: 1s blink infinite 0.3333s;
  animation: 1s blink infinite 0.3333s;
}
.typing-indicator span:nth-of-type(2) {
  -webkit-animation: 1s blink infinite 0.6666s;
  animation: 1s blink infinite 0.6666s;
}
.typing-indicator span:nth-of-type(3) {
  -webkit-animation: 1s blink infinite 0.9999s;
  animation: 1s blink infinite 0.9999s;
}
.closechart {
  padding: 5px 20px;
  position: absolute;
  right: auto;
  top: 0px;
  text-align: right;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  vertical-align: middle;
  width: 100%;
  left: 0px;
  background: #07588c;
  font-weight: bold;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
@-webkit-keyframes blink {
  50% {
    opacity: 1;
  }
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes bulge {
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes bulge {
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
::-webkit-scrollbar {
  width: 10px;
}
*::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
  min-height: 80px;
}
.viagra header .header-middle-section .container > .row {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  min-height: 90px;
}
li.listHopeContent {
  background-color: rgb(245, 248, 250);
  color: #000 !important;
  border: none !important;
  font-weight: normal !important;
  margin:15px 0 25px !important;
  pointer-events: none;
}
.clickShowChatBox {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}
.hope-help {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding: 20px 0 10px;
}
li.no-list {
  clear: none !important;
}
li.no-list {
  margin-left: 15px !important;
}
@media only screen and (min-width:1200px) {
  .vertical-align > .container11 .chatbot_container {
    height:450px;
  }
}
@media only screen and (min-width:1600px) {
  .vertical-align, .chatbot_head p {
    width: 500px;
  }
  ul.chat-window > li .text, ul.chat-window > li.bot p, ul.chat-window > li, ul.chat-window > li p, ul.chat-window > li.options > ul > li {
    font-size: 20px !important;
  }
  .closepopup:before, .closepopup:after {
    height: 30px;
    width: 3px;
  }
  .vertical-align > .container11 .chatbot_container {
    height: 550px;
  }
.chatbot_icon p span {
    font-size: 22px;
    margin-top:5px;
}
 .chatbot_icon > p img {
    margin-bottom: 0;
    height: auto;
    width: 180px;
    padding: 4px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    margin-top: 8px;
} 
.chatbot_icon > p {
    height:190px;
    width: 200px;
}
.closepopup {
    top: 10px;
}
.chatbot_head p img{
	width:40px;
}

}


@media screen and (max-width:1023px) {
.vertical-align {
    width: 100%;
    right: 0;
    top: 28%!important;
    bottom: auto !important;
    height: 72% !important;
    left: 0px;
}
ul.chat-window {
    overflow-y: auto;
}
  .chatbot_head p {
    width: 100%;
  }
  .vertical-align > .container11 .chatbot_container, .container11 {
    height: 100%;
  }
  .viagra header .header-middle-section .container > .row {
    min-height: auto
  }
  main .chatbot_icon {
    bottom: auto;
    top:50%;
	z-index: 9999;
}
}

@media screen and (max-width:767px){
.vertical-align {
    top: 40% !important;
    height: 60% !important;
}
}
@media screen and (max-width:500px){
.vertical-align {
    top: 42% !important;
    height: 58% !important;
}
}
@media screen and (max-width:391px){
.vertical-align {
    top: 58% !important;
    height: 42% !important;
}
  main .chatbot_icon {
    top:40%;
}
}
 @media only screen 
  and (min-device-width: 430px) 
  and (max-device-width: 932px) 
  and (-webkit-min-device-pixel-ratio: 2) 
  and (orientation: landscape)
  {
	  .vertical-align {
    top: 60% !important;
    height:40% !important;
}
main .chatbot_icon {
    top: 60%;
}
  } 


