@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #FFFFFF;
  --font: #2D2D2D;
  --font-purple: #A445ED;
  --input-bg: #F4F4F4;
  --input-icon: #A445ED;
  --input-border: #A445ED;
  --input-border-error: #FF5252;
  --purple: #A445ED;
  --line: #e9e9e9;
  --box-shadow: #00000033;
}

.dark {
  --background: #151515;
  --font: #F2F2F2;
  --font-purple: #A445ED;
  --input-bg: #1F1F1F;
  --input-icon: #A445ED;
  --input-border: #A445ED;
  --input-border-error: #FF5252;
  --purple: #A445ED;
  --box-shadow: #a445ed;
}

@font-face {
  font-family: "Iconsolata";
  src: url("../assets/fonts/inconsolata/static/Inconsolata-Regular.ttf");
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/static/Inter-Regular.ttf");
}
@font-face {
  font-family: "Iora";
  src: url("../assets/fonts/lora/static/Lora-Regular.ttf");
}
body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  background-color: var(--background);
  color: var(--font);
  font-family: "Iora";
  overflow-x: hidden;
}

button, input[type=submit], input[type=reset] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.wrapper {
  width: min(761px, 100%);
  margin: 10px;
  padding: 0 24px;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 15.4vh;
  /* Dropdown Button */
  /* The container <div> - needed to position the dropdown content */
  /* Dropdown Content (Hidden by Default) */
  /* Links inside the dropdown */
  /* Change color of dropdown links on hover */
  /* Show the dropdown menu on hover */
}
.top-header .switchers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 100%;
}
.top-header .dropbtn {
  background-color: var(--background);
  padding: 16px;
  font-size: 16px;
  border: none;
}
.top-header .dropbtn:hover {
  cursor: pointer;
}
.top-header .dropdown {
  position: relative;
  display: inline-block;
}
.top-header .dropdown:hover {
  cursor: pointer;
}
.top-header .dropdown-content {
  display: none;
  position: absolute;
  left: -80px;
  background-color: var(--background);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px var(--box-shadow);
  border-radius: 16px;
  z-index: 1;
}
.top-header .dropdown-content button {
  color: var(--font);
  padding: 10px 24px;
  text-decoration: none;
  display: block;
}
.top-header .dropdown-content button:hover {
  color: var(--font-purple);
}
.top-header .dropdown:hover .dropdown-content {
  display: block;
}
.top-header .bar {
  width: 1px;
  height: 32px;
  background-color: var(--input-bg);
}

.theme-switcher {
  width: 40px;
  height: 20px;
  background-color: #979797;
  border-radius: 16px;
  display: flex;
  align-items: center;
}

.theme-switcher:hover {
  cursor: pointer;
  background-color: var(--purple);
}

.theme-button {
  width: 14px;
  height: 14px;
  background-color: #f2f2f2;
  border-radius: 50%;
  margin: 3px;
  transition: 0.5s;
}

.theme-button-switch {
  transform: translateX(140%);
}

.search-holder {
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
}

.search-input {
  width: 100%;
  height: 64px;
  border: none;
  background-color: var(--input-bg);
  border-radius: 16px;
  padding-left: 20px;
  font-weight: bold;
  font-size: 20px;
  caret-color: var(--purple);
  color: var(--font);
}
.search-input:focus {
  outline: 2px solid var(--input-border);
}
.search-input:hover {
  cursor: pointer;
}

.search-icon {
  position: relative;
  left: calc(100% - 40px);
  top: -40px;
  width: 0;
}

.word-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12vh;
  margin: 45px 0 40px;
}
.word-title h1 {
  font-size: 6.6vh;
}
.word-title p {
  font-size: 24px;
  color: var(--font-purple);
}
.word-title .play-icon {
  width: 7.9vh;
  height: 7.9vh;
}
.word-title .play-icon circle:hover {
  opacity: 1;
}
.word-title .play-icon:hover {
  cursor: pointer;
  fill: #000;
}
.word-title .play-icon:hover path {
  fill: #fff;
}
.word-title .play-icon:hover circle {
  opacity: 1;
}

.word-type {
  animation: 1s ease-out 0s 1 slideInFromBottom;
  font-size: 24px;
  margin: 0 0 40px;
}
.word-type::after {
  position: relative;
  display: block;
  content: "";
  width: calc(100% - 110px);
  left: 110px;
  top: -13px;
  height: 1px;
  background-color: var(--line);
}

.meaning-wrapper {
  animation: 1s ease-out 0s 1 slideInFromBottom;
}
.meaning-wrapper p {
  color: #757575;
  margin: 40px 0 25px;
}
.meaning-wrapper ul {
  margin: 0 0 0 52px;
}
.meaning-wrapper ul li {
  list-style: none;
  margin: 0 0 13px;
}
.meaning-wrapper ul li::before {
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--purple); /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em;
}
.meaning-wrapper span {
  display: block;
  color: #757575;
  margin: 0 0 30px 30px;
}
.meaning-wrapper hr {
  background-color: var(--line);
  border: none;
  height: 1px;
  margin: 40px 0 19px;
}

.synonums {
  animation: 1s ease-out 0s 1 slideIn;
  margin: 40px 0;
}
.synonums span {
  font-weight: bold;
  color: var(--font-purple);
}
.synonums span:hover {
  text-decoration: underline;
  cursor: pointer;
}

.verb-section h2::after {
  position: relative;
  display: block;
  content: "";
  width: calc(100% - 80px);
  left: 80px;
  top: -13px;
  height: 1px;
  background-color: var(--line);
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: min(550px, 100%);
  text-decoration: underline;
  color: #757575;
}
.footer-flex a {
  display: inline-block;
  word-wrap: break-word;
  color: #757575;
}

@media screen and (max-width: 493px) {
  .book {
    width: 32px;
  }
  .top-header {
    height: 80px;
  }
  .word-title {
    margin: 24px 0;
  }
  .word-title .play-icon {
    width: 48px;
    height: 48px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-flex a {
    width: 100%;
  }
}
.remove-display {
  display: none;
}

.add-display {
  display: inline;
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(300%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */