<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*.fortune-wheel__wrap {
    display: flex;
    align-items: center;
}*/

.question__after-send {
	display: none;
}

.question__after-send h2 {
	margin-bottom: 26px;
}

.question__before-send h2 {
	margin-bottom: 26px;
}

.question__before-send h3 {
	margin-bottom: 20px;
}

/*.fortune-wheel .outer-circle {
    filter: drop-shadow(0px 0px 3px rgba(0,0,0, .2));
}*/

.fortune-wheel .inner-circle {
    filter: drop-shadow(0px 1px 4px rgba(0,0,0, .2));
}

.fortune-wheel .wheel-indicator {
	filter: drop-shadow(-16px 0px 12px rgba(0,0,0, .2));
}

.fortune-wheel .slice {
	transform-style: preserve-3d;
}

text{
    fill: #fff;
}

text tspan:nth-child(n+3) {
	display: none;
}
#chart{
    max-width:500px;
    max-height:500px;
    width: 100%;
    height: 100%;
}
#question{
    position: absolute;
    width:400px;
    height:500px;
    top:0;
    left:520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#question h1{
    font-size: 50px;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#spin_button {
    display: flex;
    height: 52px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #4285F4;
    cursor: pointer;
    outline: none;
    color: #FFF;
    text-align: center;
    /* Form/Buttons-Nav-Links_bold (â€”1280) */
    font-size: 18px;
    font-family: Roboto;
    line-height: 18px;
    border: none;
}

.chartholder .infinite-rotate:not(stop-rotate) {
  animation: 60s linear 0s normal none infinite running rot;
  -webkit-animation: 60s linear 0s normal none infinite running rot;
}

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

@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}</pre></body></html>