
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Disable text selection and copy */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Disable tap highlight on mobile/tablet */
  -webkit-tap-highlight-color: transparent;
  /* Disable iOS touch callout menu */
  -webkit-touch-callout: none;
}

/* Remove focus outline/border on all interactive elements */
*:focus,
*:active,
button:focus,
button:active,
input:focus,
input:active,
a:focus,
a:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
body {
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#app {
  width: 100%;
  height: 100vh;
}

.audio-view[data-v-56885e0d] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252227;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-container[data-v-56885e0d] {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.visualizer__container[data-v-56885e0d] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visualizer[data-v-56885e0d] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}
.visualizer__bar[data-v-56885e0d] {
  width: 8px;
  height: 8px;
  background-color: #08b6dd;
  margin: 0 4px;
  border-radius: 4px;
  animation: visualizerBar-data-v-56885e0d 1.2s linear infinite;
}
.visualizer__bar[data-v-56885e0d]:nth-child(1),
.visualizer__bar[data-v-56885e0d]:nth-child(7) {
  animation-delay: 0s;
}
.visualizer__bar[data-v-56885e0d]:nth-child(2),
.visualizer__bar[data-v-56885e0d]:nth-child(6) {
  animation-delay: 0.3s;
}
.visualizer__bar[data-v-56885e0d]:nth-child(3),
.visualizer__bar[data-v-56885e0d]:nth-child(5) {
  animation-delay: 0.6s;
}
.visualizer__bar[data-v-56885e0d]:nth-child(4) {
  animation-delay: 0.9s;
}
@keyframes visualizerBar-data-v-56885e0d {
0%, 100% {
    height: 8px;
}
50% {
    height: 48px;
}
}
.close-button[data-v-56885e0d] {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.close-button[data-v-56885e0d]:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
.close-button[data-v-56885e0d]:active {
  transform: scale(0.95);
  background-color: rgba(255, 255, 255, 0.3);
}
.close-icon[data-v-56885e0d] {
  fill: white;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.answers-view[data-v-c65bacfe] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F0F6F7;
  overflow: hidden;
  isolation: isolate;
}
.answers-container[data-v-c65bacfe] {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  overflow: auto;
  z-index: 1;
}
.question-text[data-v-c65bacfe] {
  text-align: center;
  color: #252227;
  font-size: 24px;
  font-weight: 500;
  margin: 16px 0 24px 0;
  padding: 0 16px;
}
.answers-wrapper[data-v-c65bacfe] {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.answer-button[data-v-c65bacfe] {
  position: relative;
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  margin: 12px;
  background-color: #d0dfe2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 24px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 500;
  color: #252227;
  width: 50vw;
  min-height: 56px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 175ms ease, border-color 175ms ease;
  -webkit-transition: background-color 175ms ease, border-color 175ms ease;
  -moz-transition: background-color 175ms ease, border-color 175ms ease;
  -o-transition: background-color 175ms ease, border-color 175ms ease;
}
.answer-button[data-v-c65bacfe]:hover {
  background-color: #c0d0d2;
}
.answer-button[data-v-c65bacfe]:active {
  background-color: #b0c0c2;
}
.answer-button--selected[data-v-c65bacfe] {
  border-color: #252227;
}
.answer-button[data-v-c65bacfe]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.visuals[data-v-c65bacfe] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.wave[data-v-c65bacfe] {
  position: absolute;
  width: 100%;
}
.wave--top[data-v-c65bacfe] {
  top: -20%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.wave--bottom[data-v-c65bacfe] {
  bottom: -10%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.loading-bar[data-v-c65bacfe] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(37, 34, 39, 0.1);
  z-index: 9999;
  overflow: hidden;
}
.loading-bar__progress[data-v-c65bacfe] {
  height: 100%;
  background-color: #252227;
  animation: loading-progress-data-v-c65bacfe 1.5s ease-in-out infinite;
  -webkit-animation: loading-progress-data-v-c65bacfe 1.5s ease-in-out infinite;
  -moz-animation: loading-progress-data-v-c65bacfe 1.5s ease-in-out infinite;
  -o-animation: loading-progress-data-v-c65bacfe 1.5s ease-in-out infinite;
}
@keyframes loading-progress-data-v-c65bacfe {
0% {
    width: 0%;
    margin-left: 0%;
}
50% {
    width: 50%;
    margin-left: 25%;
}
100% {
    width: 0%;
    margin-left: 100%;
}
}
@-webkit-keyframes loading-progress-data-v-c65bacfe {
0% {
    width: 0%;
    margin-left: 0%;
}
50% {
    width: 50%;
    margin-left: 25%;
}
100% {
    width: 0%;
    margin-left: 100%;
}
}
@-moz-keyframes loading-progress-data-v-c65bacfe {
0% {
    width: 0%;
    margin-left: 0%;
}
50% {
    width: 50%;
    margin-left: 25%;
}
100% {
    width: 0%;
    margin-left: 100%;
}
}
@-o-keyframes loading-progress-data-v-c65bacfe {
0% {
    width: 0%;
    margin-left: 0%;
}
50% {
    width: 50%;
    margin-left: 25%;
}
100% {
    width: 0%;
    margin-left: 100%;
}
}

.face-container[data-v-506876c0] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #252227;
}
#face-canvas[data-v-506876c0] {
  display: block;
  width: 100%;
  height: 100%;
}

/* Dev Refresh Button */
.dev-refresh-btn[data-v-506876c0] {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 0;
  line-height: 1;
}
.dev-refresh-btn[data-v-506876c0]:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.dev-refresh-btn[data-v-506876c0]:active {
  transform: scale(0.95);
}

.battery-status[data-v-822291d2] {
  width: 300px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  align-items: center;
  padding: 8px 0;
  z-index: 1;
  transition: transform 400ms ease;
  will-change: transform;
}
.battery-status--visible[data-v-822291d2] {
  transform: translate(-50%, 0%);
}
.battery-status__icon[data-v-822291d2] {
  width: 38px;
  height: 38px;
}
.battery-status__icon path[data-v-822291d2] {
  fill: #fff;
}
.battery-status__wrapper[data-v-822291d2] {
  width: 100%;
  position: relative;
  margin: 0px 8px;
}
.battery-status__percentage[data-v-822291d2] {
  color: #fff;
  font-size: 16px;
}
.battery-status__track[data-v-822291d2] {
  background-color: #034959;
  border-radius: 8px;
  width: 100%;
  height: 8px;
}
.battery-status__filled[data-v-822291d2] {
  background-color: #08b6dd;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  transition: width 0.3s ease;
}
.battery-status--medium .battery-status__track[data-v-822291d2] {
  background-color: #593b03;
}
.battery-status--medium .battery-status__filled[data-v-822291d2] {
  background-color: #dd9208;
  box-shadow: 0px 0px 20px 3px #dd9208;
}
.battery-status--low .battery-status__track[data-v-822291d2] {
  background-color: #941605;
}
.battery-status--low .battery-status__filled[data-v-822291d2] {
  background-color: #dd2108;
  box-shadow: 0px 0px 20px 3px #dd2108;
}

.daytime-btn[data-v-dd225f70] {
  width: 72px;
  height: 72px;
  transform: translate(-32px, 96px);
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #0796b6;
  box-shadow: 1px 3px 15px rgb(0 0 0 / 30%);
  transition: transform 400ms ease;
  will-change: transform;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.daytime-btn--visible[data-v-dd225f70] {
  transform: translate(-32px, -32px);
}
.daytime-btn__icon[data-v-dd225f70] {
  fill: #fff;
  width: 48px;
  height: 48px;
}
.daytime-btn[data-v-dd225f70]:active {
  transform: translate(-32px, -32px) scale(0.95);
}
