#welcometext {
  font-size: 10rem;
  color: #000000;
}

.rpv-default-layout__sidebar ,
.rpv-default-layout__toolbar{
  display: none;
}

#endingtext {
  font-size: 8rem;
  color: #000000;
}

.blast {
  opacity: 1;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.blast:hover {
  color: #1b84ff;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@media (max-width: 768px) {
  #welcometext {
    font-size: 8rem;
  }
  #endingtext {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  #welcometext {
    font-size: 6rem;
  }
  #endingtext {
    font-size: 4rem;
  }
}

@media (max-width: 375px) {
  #welcometext {
    font-size: 4rem;
  }
  #endingtext {
    font-size: 3rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-text {
  animation: fadeIn 2s forwards;
}

@keyframes fadeInDelay {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-text-delayed {
  animation: fadeInDelay 3s;
}
/* #custompadding {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
} */

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 576px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

.right-menu-items {
  border-radius: 100%;
}

#rightSideBarInner {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.right-sidebar.closed {
  background-color: #292b2c;
  max-width: 0px;
  width: 0px;
  overflow: hidden;
  padding: 0px;
  height: 70vh;
  top: 48%;
  right: -2px;
  transform: translate(0, -50%);
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

.right-sidebar.opened {
  max-width: 110px;
  width: 110px;
  padding: 2rem 0.75rem;
  height: 70vh;
  top: 48%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 100;
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
}

.right-sidebar .business-title {
  width: 110px;
}

.floating-sidebar-button {
  bottom: 20px;
  right: 5px;
}

.betty-ai-icon {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.accounts-icons {
  padding: 0px 10px;
}

#chat-container {
  min-height: fit-content;
}

/* @media screen and (min-width: 425px) {
  #chat-container {
    min-height: fit-content;
  }
} */

.typing-animation {
  position: relative;
}
.typing-animation span {
  content: "";
  -webkit-animation: blink 1.5s infinite;
  animation: blink 1.5s infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 10px;
  width: 10px;
  background: #3b5998;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.typing-animation span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  margin-left: 15px;
}
.typing-animation span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin-left: 30px;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

@keyframes blink {
  0% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

#gauge-component7 {
  width: 300px;
  margin: auto;
}

#gauge-component7 svg {
  overflow: visible;
}

@media screen and (max-width: 576px) {
  #gauge-component7 {
    width: 200px;
  }
}

.btn-icons {
  font-size: 20px;
}

.__floater .__floater__body [data-test-id="button-primary"] {
  background-color: #1b84ff !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
}

.__floater .__floater__body [data-test-id="button-back"] {
  color: #1b84ff !important;
}

label.choose-crping-file input {
  background: #fff;
  color: #21c175;
  padding: 7px 6px;
  border-radius: 8px;
  border: dashed 1px #c5cbc8;
  margin-bottom: 10px;
  /* min-width: 220px; */
  font-size: 15px;
}