html,
body {
  height: 100%;
}
body {
  --background-color: #ffffff;
  --black-color: #111111;
  --gray-color: #f0f0f0;
  --green-color: #dbf6d9;
  --red-color: #fcd8d5;
  --blue-color: #005bff;
  --deepblue-color: #0047cc;
}
body {
  background: var(--background-color);
  color: var(--black-color);
  margin: 0 auto;
  /* padding: 0 15px; */
  max-width: 100%;
}
body,
textarea,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Montserrat", sans-serif;
}
/* @media (min-width: 1200px) {
  body {
    max-width: 1200px;
  }
} */
p {
  margin: 0;
}
a {
  color: var(--blue-color);
  text-decoration: none;
  font-weight: 600;
}
a:hover,
button:hover {
  color: var(--deepblue-color);
  cursor: pointer;
}
textarea {
  resize: none;
}
textarea,
input {
  width: 100%;
  background: var(--background-color);
  /* opacity: 0.75; */
  font-size: 16px;
  line-height: 25px;
  padding: 10px 13px;
  border-radius: 15px;
  border: none;
  white-space: pre;
  word-break: keep-all;
  overflow-wrap: normal;
  word-wrap: normal;
  overflow: scroll;
}
textarea:focus,
input:focus {
  outline: none;
}

.segment,
.content {
  margin-top: 2em;
}
.full-screen {
  height: 100%;
  width: 100%;
}
.hidden {
  display: none !important;
}
.bold {
  font-weight: 600;
}
.shadow {
  box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.8);
}
.blur {
  filter: blur(10px);
}

.columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  white-space: nowrap;
  justify-content: space-between;
  row-gap: 2.5em;
  column-gap: 15px;
}
.columns .column {
  flex-basis: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  .columns .column {
    flex-basis: calc(100% / 2 - 15px);
  }
}

.form {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  justify-content: flex-start;
  row-gap: 1.5em;
}
.buttons,
.inputs {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  column-gap: 15px;
}
.blue-btn {
  padding: 8px 10px;
  border-radius: 15px;
  border: 3px solid #ffffff;
  /* border: 3px solid var(--blue-color); */
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.blue-btn.active,
.blue-btn:hover {
  background-color: var(--blue-color);
  color: var(--background-color);
}
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
