form {
  width: 100%;
  font-family: 'Sora', sans-serif;
  padding: 0;
  margin: 0;
}

form input {
  box-sizing: border-box;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 2em;
  line-height: 2.5em;
  padding: 0 1rem;
  color: white;
  width: 100%;
}

form input[type=checkbox] {
}

form textarea {
  box-sizing: border-box;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 2em;
  min-height: 8rem;
  min-width: 15rem;
  padding: 1rem;
  color: white;
  width: 100%;
}

form input[type=submit] {
  background-color: transparent;
  border: 4px solid purple;
  color: white;
  width: fit-content;
  transition: transform 0.25s ease;
}

form input[type=submit]:hover {
  color: purple;
  transform: scale(1.1) perspective(1px);
}

.dd-new-select {
  height: 2.085em;
}

.dd-dropdown {
  position: relative;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 2em;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding: 0 0 0 1rem;
  height: 2.085em;
}

.dd-button {
  margin: 0 0.5em 0 0;
  height: auto;
  z-index: 2;
}

.dd-up-icon {
}

.dd-down-icon {
}

.dd-down-icon>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dd-up-icon>div {
  display: flex;
  flex-direction: reverse;
  justify-content: center;
}

.dd-go-up {
  top: calc(-20vh + -4.085em + -8px);
  display: flex;
  flex-direction: column-reverse;
  padding: 1.5em 0 0 0;
}

.dd-go-down {
  top: 2.085em;
}

.dd-select {
  width: 100%;
}

.dd-menu {
  width: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  background-color: black;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: 2px solid white;
  border-radius: 1.5em;
  padding: 0;
}

.dd-search {
  display: block;
  margin: 0 0;
}

.dd-list {
  background-color: transparent;
  height: 20vh;
  overflow-y: scroll;
  scrollbar-color: grey black;
  scrollbar-width: thin;
  cursor: pointer;
  border-radius: 1.5em;
  margin: 1em 0;
}

@media (max-width: 768px) {
  .dd-list {
    scrollbar-width: auto;
  }
}

.dd-list-item {
  margin: 0 0 0 1.5rem;
  background-color: transparent;
}
