body {
  font-family: "Roboto", sans-serif;
  background: #;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
* {
  font-family: inherit;
}
button {
  font-family: inherit;
  background: transparent;
  border: 0;
  padding: 0 0.7em;
  margin: 0;
  outline: 0;
  border-radius: 2px;
}
button:active {
  border: 0;
}
::-webkit-file-upload-button {
  cursor: pointer;
}
section.page-title {
  text-align: center;
  padding: 1em 0;
}
textarea {
  resize: none;
  box-sizing: border-box;
}
.tts {
  display: flex;
  flex-direction: column;
  width: 25%;
  margin: auto;
  gap: 10px;
}
.tts-text:hover {
  font-weight: bolder;
  transition: 0.1s ease-in-out;
}
.input {
	
}
.input-upload {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.input-upload input {
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}
.normal {
  padding: 0.4rem 1.2rem 0.4rem 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid black;
  color: black;
  background-color: #fff;
  cursor: pointer;
}
.normal:hover {
  background-color: black;
  color: #fff;
  transition: 0.2s ease-in-out;
}
#normal-button:hover {
  background-color: #fff !important;
  color: white !important;
  transition: 0.2s ease-in-out !important;
}
#audio-load-success {
  z-index: 10;
  background: #4493b1;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
* {
  font-family: inherit;
}

section.voices {
	max-width: 1000px;
	
  padding: 2em;
  text-align: center;
  padding-bottom: 0;
}
section.voices .voice-card {
  width: 6.8em;
  height: 7em;
  border-radius: 1em;
  background-size: cover;
  background-position: center;
  display: inline-block;
  /*  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
  cursor: pointer;
  overflow: hidden;
  position: relative;
  /*      box-shadow: rgba(0,0,0,.35) 0 5px 8px;*/
  transition: all 0.25s ease 0s;
}

.voices .cards {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(auto-fill, 8em);
  justify-content: center;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 8px;
}
.card span {
  font-size: 15px;
  font-weight: bold;
}
section.voices .voice-card .title,
section.voices .voice-card .description,
section.voices .voice-card .keyphrases {
  width: 200px;
  overflow: hidden;
  position: absolute;
  right: -400px;
}

section.output {
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.output .bg {
  z-index: 19;
  position: absolute;
  background: #eee;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
section.output .modal {
  padding: 2em;
  z-index: inherit;
  min-height: 4em;
  min-width: 8em;
  background: #181b1c;
  border-radius: 3px;
  display: block;
  position: relative;
}

.spinner {
  margin: 0 auto 1.5em auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
section.input {
  text-align: center;
  padding: 1em 0;
  position: relative;
}

/*normalize*/
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}
body {
  margin: 0;
}
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
h1 {
  font-size: 1em;
  margin:  0;
}
figcaption,
figure,
main {
  /* 1 */
  display: block;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}
audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
details, /* 1 */
menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/*main*/
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*textarea {
  resize: vertical;
}*/
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
.hidden {
  display: none !important;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}
@media only screen and (max-width: 900px) {
  .tts {
    width: 75%;
  }
}
