/* CSS Document */
.hb-chatbot-page {
  font-family: var(--font-family);
  color: var(--base-font-color);
  font-size: var(--font16);
  display: flex;
  /* justify-content: space-between; */
  height: 100%;
  min-height: 100vh;
  background: var(--page-bg);
}
.hb-chatbot-page .select-input {
  border: 1px solid #E8E8E8;
  height: 40px;
  width: 100%;
  border-radius: 6px;
}
.hb-chatbot-page .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-top: 0px;
  font-size: var(--font16);
  color: #000000;
  font-weight: 500;
}
.hb-chatbot-page .checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.hb-chatbot-page .checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 3px;
  outline: 1px dashed #D4D3D3;
  transition: all 0.2s ease;
}
.hb-chatbot-page .checkbox:hover .checkmark {
  background: #f4f4f5;
  transition: all 0.2s ease;
}
.hb-chatbot-page .checkbox input:checked ~ .checkmark {
  background: #636363;
  outline: 0px solid rgb(95, 126, 240);
  border: 1px solid #636363;
}
.hb-chatbot-page .checkbox input[type=radio] ~ .checkmark {
  border-radius: 50%;
}
.hb-chatbot-page .checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.hb-chatbot-page .checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}
.hb-chatbot-page .chatbot-sidepanel {
  width: 300px;
  min-width: 300px;
  /*border-right: 1px solid #D1D5DB;*/
  padding:0;
  background: var(--side-panel-bg);
  position:relative;
}
.hb-chatbot-page .chatbot-sidepanel .brand-cnt {
  padding: 10px;
}
.hb-chatbot-page .chatbot-sidepanel h2 {
  color: #000000;
  font-size: var(--font34);
  font-weight: 500;
  margin: 0px 0 20px;
  padding: 10px 0 0;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list {
  padding-right: 5px;
  height: calc(100vh - 70px);
  overflow: auto;
  margin: 20px 0 50px;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list h4 {
  font-size: var(--font24);
  font-weight: 500;
  color: #000000;
  margin: 0;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list ul {
  list-style-type: none;
  display: flex;
  flex-flow: column;
  gap: 0;
  padding-left: 0;
  margin: 20px;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list ul li {
  border: 1px solid #3B3B3B;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 20px;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list  ul li a,
.hb-chatbot-page .chatbot-sidepanel .mode-list  a.add-custom-topic{
  color: #D4D3D3;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius:6px;
  position:relative;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list .refresh{
  position: absolute;
  top: 10px;
  right: 20px;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list ul li a .topic-title {
  font-size: var(--font26);
  color: var(--base-font-color);
  line-height: 30px;
  font-weight: 700;
  padding-bottom: 20px !important;
  position: relative;
  padding-right: 40px;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list ul li a .topic-title em {
  font-weight: 600;
  display: block;
  font-style: normal;
  font-size: var(--font18);
  line-height: normal;
}
/* .hb-chatbot-page .chatbot-sidepanel .mode-list ul li a .topic-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #FEC419;
  display: block;
  position: absolute;
  left: 0;
  bottom: 10px;
} */
.hb-chatbot-page .chatbot-sidepanel .mode-list ul li a .option-desc {
  color: #707070;
  font-size: var(--font16);
  line-height: 22px;
  font-weight: 500;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list ul li a:hover,
.hb-chatbot-page .chatbot-sidepanel .mode-list a.add-custom-topic:hover {
  background: #2e2e2e;
}
.hb-chatbot-page .chatbot-sidepanel .mode-list ul li a.selected {
  background: #2e2e2e;
}
.hb-chatbot-page .chatbot-content-panel {
  width: calc(100% - 0px);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-header {
  height: 91px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner {
  width: 100%;
  margin: auto;
  height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 17px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt h1 {
  text-align: left;
  margin: 10px 15px;
  font-size: var(--font24);
  line-height: 24px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt h1 span {
  display: inline;
  font-size: var(--font16);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content {
  height: calc(100vh - 200px);
  overflow: auto;
  width: 80%;
  padding: 0 25px;
  margin: auto;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
  font-size: var(--font16);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li {
  padding: 15px;
  display: flex;
  gap: 15px;
  position: relative;
    flex-wrap:wrap;
  /* padding-bottom: 40px; */
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .profile-pic {
  width: 30px;
  height: 30px;
  border: 1px solid #404040;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background:#000;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .profile-pic img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li.system-side .profile-pic img{
	min-width:38px;	
}

.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li p {
  margin: 0 0 10px;
  color: #d7d7d7;
  font-weight: 400;
  font-size: var(--font16);
  line-height: 24px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .user-statement {
  width: calc(100% - 70px);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt {
  width: calc(100% - 70px);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .info-text {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .info-text p {
  margin-bottom: 0;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .chart-box {
  width: calc(100% - 20px);
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 10px;
  background:#333;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .chart-box img {
  max-width: 100%;
  height: auto;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .search-table-wrapper {
  width: calc(100% - 20px);
  margin: 5px 0;
  background: #000000;
  padding: 10px;
  border-radius: 10px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .search-table-wrapper .table-scroll-cnt {
  max-height: 250px;
  width: 100%;
  overflow: auto;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .search-table-wrapper .table-scroll-cnt table.search-content-table th {
  background: #404040;
  color: #d0d0d0;
  font-weight: 600;
  font-size: var(--font14);
  padding: 5px;
  height: 30px;
  text-transform: capitalize;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .system-response-cnt .response-details .search-table-wrapper .table-scroll-cnt table.search-content-table td {
  font-size: var(--font16);
  font-weight: 300;
  color: var(--base-font-color);
  padding: 5px;
  background: #000000;
  border-bottom: 1px solid #1e1e1e;
  min-width:160px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .chat-title {
  color: var(--base-font-color);
  font-weight: 500;
  font-size: var(--font18);
  display: flex;
  align-items: center;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .chat-title .date {
  color: #808080;
  font-size: var(--font12);
  font-weight: 400;
  margin: 0 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li .chat-title .date::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #666666;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li.system-side {
  background:#1E1E1E;
  border-radius: 15px;
  border: 1px solid #1E1E1E;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li.system-side.chart-data{
  border-radius: 0 0 15px 15px;
  margin-top: -16px;
  padding-left: 65px;
  margin-bottom: 12px;
  padding-bottom: 25px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li.system-side.chart-data .extra-info-buttons{
  margin-bottom:20px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt {
  display: flex;
  flex-flow: column;
  min-height: calc(100% - 80px);
  padding: 0 20px;
  overflow: auto;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt h1 {
  color: var(--base-font-color);
  font-size: var(--font32);
  line-height: normal;
  text-align: center;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt h1 span {
  display: block;
  font-size: var(--font18);
  color: #808080;
  font-weight: 500;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks {
  width: 80%;
  padding: 0 25px;
  margin: auto;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks h3 {
  margin: 0 0 10px;
  color: var(--base-font-color);
  font-size: var(--font22);
  font-weight: 500;
  text-align: center;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks ul {
  display: flex;
  margin: 0;
  padding: 25px;
  gap: 10px;
  justify-content: center;
  list-style-type: none;
  /*background: #ffffff;*/
  background: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  flex-wrap: wrap;
}
.predefined-suggestion-blocks.empty{
  display:none !important;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks ul li {
  /*background: #f1f1f4;*/
  padding: 0;
  border-radius: 10px;
  width: calc(100%);
  color: #e0e0e0;
  font-size: var(--font16);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks ul li .suggestion-question {
  background: #000000;
  padding: 15px;
  border-radius: 15px;
  margin: 0;
  text-align: center;
  cursor:pointer;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks ul li .suggestion-question:hover {
  background: #2e2e2e;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-main-cnt .predefined-suggestion-blocks ul li .suggestion-question a {
  text-decoration: none;
  color: var(--base-font-color);
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt {
  display: flex;
  flex-direction: column;
  padding: 10px 20px 0;
  width: calc(80% - 55px);
  padding: 15px 25px 0;
  margin: auto;
  position: relative;
  left: -15px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .dialog-link {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  align-items: center;
  height: 30px;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper {
  border: 0px solid #E7E7E7;
  border-radius: 15px;
  display: flex;
  padding: 5px 20px;
  gap: 5px;
  width: calc(100% - 10px);
  align-items: center;
  height: 50px;
  background: #000000;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper .side-btn {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper .side-btn a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #2E2E2E;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper .side-btn a:hover {
  background: #404040;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper input {
  border: none;
  width: calc(100% - 100px);
  height: 40px;
  background: #000000;
  color: #e4e2e1;
  font-size: var(--font18);
}
.modal-container{
  position:relative;
}
.progress-bar {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: end;
  justify-content: center;
  background: rgb(83, 90, 100);
}
.refresh-loader {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 9;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  background: rgb(83, 90, 100);
  filter: opacity(0.9);
  flex-direction: column;
}
#upload-form .loader-wrapper{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(83, 90, 100);
  filter: opacity(0.9);
  flex-direction: column;
  width: 80%;
  padding: 0 10%;
}
#upload-form .loader{
  width: 70px;
  height: 70px;
  display: inline-block;
  position: relative;
  margin-top:20px;
}
#upload-form .loader::after, #upload-form .loader::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: animloader14 2s linear infinite;
          animation: animloader14 2s linear infinite;
}
#upload-form .loader::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes animloader14 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes animloader14 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper .side-btn button{
  background:transparent;
  border:0;
  cursor:pointer;
}
.button-loader {
  display: flex;
  gap: .25rem;
}
.button-loader > div {
  width: .8rem;
  height: .8rem;
  background-color: white;
  border-radius: 50%;
  animation: 1.2s infinite ease-in-out load;
}

.button-loader  div:nth-child(1) {
 animation-delay: -0.32s;
}
.button-loader  div:nth-child(2) {
 animation-delay: -0.16s;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3.5rem;
}
@keyframes load {
0%,80%,100%{
  transform: scale(0);
}
40% {
  transform: scale(1);
}
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner.search-result-wrapper .chat-main-cnt .search-result-content .conversation-cnt ul li.system-side.chart-data .extra-info-buttons{
  text-align:right;
}
@keyframes blink {
  0% {
      background-color: #007bff; /* Initial background color - blue */
  }
  50% {
      background-color: #0056b3; /* Target background color for blinking - darker blue */
  }
  100% {
      background-color: #007bff; /* Back to initial background color */
  }
}

.blinking {
  animation: blink 1s linear infinite;
  pointer-events:none;
}
.hb-chatbot-page .chatbot-content-panel .chatbot-content-inner .chat-input-cnt .input-wrapper :focus {
  border: none;
  outline: none;
}
.hb-chatbot-page .chatbot-sidepanel .footer-links{
  position: absolute;
  bottom: 15px;
  left: 0;
  width: calc(100% - 50px);
  padding: 0 25px;
}
.hb-chatbot-page .chatbot-sidepanel .footer-links a{
  color:white;
  text-decoration:none;
  font-size:18px;
  position: relative;
  font-weight: 500;
}
/* .hb-chatbot-page .chatbot-sidepanel .footer-links a:after{
  content: "";
  width: 38px;
  height: 2px;
  background: #FEC419;
  display: block;
  position: absolute;
  left: 0;
  bottom: -7px;
} */
.feedback-button{
    display: flex;
    align-items: center;
	width:100%;
	padding-left:60px;
	gap:10px;
}
.feedback-button .radio_group{
 /* width: 25px;
  height: 32px;
  margin: 5px;*/
  position: relative;
  text-align: center;
  line-height: 32px;
  font-size:18px;
  display: block;
    width: 32px;
    height: 32px;
}

.feedback-button label,
.feedback-button .radio_group label{
	width: 34px;
    height: 34px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #2E2E2E;
}
.feedback-button label:hover{
	   /* background: #404040;	*/
}

.feedback-button label img,
.feedback-button .radio_group label img{
	width:20px;
	height:20px;
}
.feedback-button .radio_group input[type="radio"]{
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0;
  padding: 0;
  z-index: 1;
  cursor: pointer;
}
.feedback-button .radio_group input[type="radio"] + label{
  color: #95a5a6;
 /* width: 100%;
  height: 100%;*/
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
/*  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(.95);
  transform-origin: top;
  transition:all 0.3s ease;*/
}
.feedback-button .radio_group input[type="radio"]:checked + label{
  background-color:#0067ff;
  /*transform: scale(1);*/
}
#view-csv-popup .modal-container{
  width:1000px;
}
.modal-container .form-group textarea.form-control{
  min-height:150px;
  height:auto;
}
#feedback-popup.modal .modal-container{
  height:auto;
}
#feedback-popup.modal #feedback-form .form-group{
  display: flex;
  padding:0;
}
#feedback-popup.modal #feedback-form .form-group .form-control{
  width: 100%;
  margin: 0;
  padding: 25px;
  resize: none;
  font-size: 16px;
  border-radius: 5px;
}
#feedback-popup.modal #feedback-form .form-group .form-control + input[type="radio"] {
  display:none;
}
#datalimit-popup.modal .modal-container{
  height:auto;
}
#uplad-popup .modal-container,
#uplad-popup .modal-container .modal-content,
#datalimit-popup .modal-container .modal-content{
  height:auto;
}
#uplad-popup .modal-container .upload-cnt{
  height:100px;
}

/* Add more styles as needed */
.csv-data-table{
  width: 100%;
  padding:80px 25px 40px;
  background-color: #222;
  color: #fff;
}
/* table.dataTable{
  width:100% !important;
} */
table.dataTable thead th{
  text-transform:capitalize;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #fff;
}
.connect-btn.absolute{
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #fff;
  left: 0;
  right: 0;
  padding: 0 20px;
}
.radio-buttons{
  padding:20px 0;
  display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.radio-buttons input[type="radio"] {
  display: none;
}

.radio-buttons label {
  cursor: pointer;
  position: relative;
  font-size:16px;
  /*padding-left:40px;*/
  background:#404040;
  padding:5px 15px;
  border-radius:5px;
}
.radio-buttons label:hover{
	background:#505050;
}

.radio-buttons label::before {
  /*content: "";
  position: absolute;
  width:20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color 400ms ease;*/
}

.radio-buttons label::after {
  /*content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #0067ff;
  border: 2px solid #0067ff;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  transition: transform 400ms ease;*/
}
.radio-buttons input[type="radio"]:checked + label{
	background:#212121;
}

.radio-buttons input[type="radio"]:checked + label::before {
  border-color: #0067ff;
}

.radio-buttons input[type="radio"]:checked + label::after {
  transform: translateY(-50%) scale(0.55);
}


input:-internal-autofill-selected {
	background-color:#404040 !important;
}

@keyframes Header_shake-notification {
    0% {
        transform: scaleX(1)
    }

    2.5%,5% {
        transform: scale3d(.9,.9,.9) rotate(-1deg)
    }

    12.5%,17.5%,22.5%,7.5% {
        transform: scale3d(1.05,1.05,1.05) rotate(1deg)
    }

    10%,15%,20% {
        transform: scale3d(1.05,1.05,1.05) rotate(-1deg)
    }

    25%,to {
        transform: scaleX(1)
    }
}


.Header_shake-notification {
  animation-iteration-count: infinite;
  animation-name: Header_shake-notification;
  animation-duration: 3.5s;
  animation-fill-mode: both;
  animation-delay: 0;
  animation-play-state: running;
}
/*# sourceMappingURL=hb-chatbot.css.map */
