

#messages {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  color: white;
}

#recorder {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 10px;
  width: auto;
  background: rgba(0, 0, 0, 0.7);
  max-width: 1000px;
  margin: auto;
  color: #f3f3f3 !important;
  z-index: 10000;
}

.focus {
  border: 1px solid black !important;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.p-1 {
  padding: 10px;
}

.py-1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

#recorder #commands {
  display: none;
}

#recorder.open {
  position: fixed;
  height: 600px;
}

#recorder.open .abutton-close,
#recorder.open .abutton-commands {
  display: none;
}

#recorder .abutton-close,
.abutton-commands {
  display: block;
}

#recorder.open .abutton-colapse {
  display: block;
}

#recorder .abutton-colapse {
  display: none;
}

#recorder.open #recording-box {
  border-bottom: 0.4px solid #7d7d7d;
  padding-bottom: 8px;
}

#recorder.open #commands {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
}

.command-item {
  border-bottom: 0.4px solid #7d7d7d;
}

.command-item .title {
  margin: 0;
  margin-bottom: 5px;
  padding: 0;
  font-size: 1rem;
  color: white;
  font-weight: 300;
}

.command-item-name {
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0;
  margin: 4px 0;
}

.command-item-name::after {
  content: ":";
}

.command-item-description {
  font-size: 0.9rem;
  padding: 0;
  margin: 4px 0;
  font-weight: 400;
  color: #6a6a6a;
}

.d-flex {
  display: flex;
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.gap-5 {
  gap: 40px;
}

.rounded {
  border-radius: 50% !important;
}

.hidden {
  display: none;
}

p {
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}


.abutton {
  padding: 8px;
  border-radius: 4px;
  border: 0.4px;
  cursor: pointer;
  margin-top: 0px !important;
}

.abutton-commands {
  background-color: #e10974;
  color: #fefefe;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 13px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}

.divider {
  border-color: #c1c1c1;
}

.abutton-close,
.abutton-colapse {
  background-color: transparent !important;
  border-radius: 50%;
  border: 0.4px solid #c1c1c1;
  color: #c1c1c1;
}

.notactive {
  background: rgba(255, 255, 255, 0.4) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.color-secondary {
  color: #e5e5e5;
}

.color-light {
  color: #fefefe;
}

.bold {
  font-weight: bold;
}

.sm-hide {
  display: block;
}

.commands-text {
  display: inline-block;
}

.abutton.active {
  color: #f3f3f3 !important;
}


.abutton-mic {
  /* background: linear-gradient(-45deg, #ee7752, #7fd24d, #23a6d5, #23d5ab); */
  background: #e10974;
  animation: gradient 5s ease infinite;
  background-size: 200% 200%;

}

.sm-block {
  display: none;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.enumeration {
    position: absolute;
    bottom: -5px;
    right: auto;
    left: auto;
    background-color: #000;
    color: #fff;
    padding: 2px 2px !important;
    border-radius: 1px;
    font-size: 14px !important;
    z-index: 10000;
}

.enumeration.relative {
	position:relative;
}

.enumeration.show {
    display: inline-block;
}

.command-button {
    line-height: 20px;
    border: 2px solid white;
    outline: none;
    padding: 5px;
    border-radius: 5px;
}


.active > .pulse-ring {
    content: '';
    width: 40px;
    height: 40px;
    background: #189BFF;
    border: 5px solid #189BFF;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 13px;
    animation: pulsate infinite 1.5s;
}

.pulse-ring.delay{
	// animation-delay: 1s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}



/* For phones (portrait and landscape) */
@media only screen and (max-width: 480px) {

  /* Your CSS styles for phones here */
  .sm-hide,
  .md-hide {
    display: none;
  }

  .commands-text {
    display: none;
  }

  p {
    font-size: 0.8rem;
  }

  .small {
    font-size: 0.7rem !important;
  }
}

/* For tablets (portrait and landscape) */
@media only screen and (min-width: 481px) and (max-width: 768px) {

  /* Your CSS styles for tablets here */
  .md-hide {
    display: none;
  }

  p {
    font-size: 0.9rem;
  }

  .small {
    font-size: 0.8rem !important;
  }
}

/* For laptops and desktops */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* Your CSS styles for laptops and desktops here */

  p {
    font-size: 1rem;
  }

  .small {
    font-size: 0.8rem !important;
  }
}

/* For large screens and monitors */
@media only screen and (min-width: 1025px) {
  /* Your CSS styles for large screens and monitors here */

  p {
    font-size: 1.1rem;
  }

  .small {
    font-size: 0.8rem !important;
  }
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #7d7d7d;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8d8d8d;
  cursor: pointer;
}
