@import url("https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body, input, select, textarea {
  font-family: "Open Sans Variable", "Helvetica Neue", Helvetica, sans-serif;
}

body {
  background-color: #000022;
  background-image: url("../images/body-tH1Zazo.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: fixed;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

a {
  color: #ED388B;
}
a:hover {
  color: #68008E;
}

p {
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
table th,
.process li::before {
  font-weight: 900;
  font-family: "Quantico", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 2.5em;
  max-width: 20em;
  margin: 1.5em 0;
}

.container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1em;
}

.split {
  display: flex;
  gap: 3em;
}
@media only screen and (max-width: 767px) {
  .split {
    flex-direction: column;
    gap: 0;
  }
}
.split > div {
  flex: 1;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table tr td, table tr th {
  border-bottom: 1px solid #68008E;
  padding: 0.5em 0;
}
table.compare {
  text-align: center;
}
table.compare tbody th {
  text-align: left;
}

.good {
  color: #28A745;
}

.bad {
  color: #DC3545;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 34, 0.85);
  backdrop-filter: blur(5px);
  padding: 1.5em 0;
}
header .container {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
}
header .logo {
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #ED388B;
  text-decoration: none;
}
header .logo img {
  height: 1.8em;
}
header nav {
  text-align: right;
}
header nav .version {
  font-size: 0.8em;
  color: #FFF0D8;
}

footer {
  margin-top: 3em;
  padding: 3em 0;
  font-size: 0.9em;
  color: #555577;
}
footer .copyright {
  text-align: right;
  font-size: 0.8em;
}
footer .footer {
  display: flex;
  gap: 1em;
}
footer .footer > * {
  flex: 1;
}
footer a {
  color: inherit;
}
footer ul, footer li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

button, .btn {
  padding: 0.25em 0.5em;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  font-family: inherit;
  background: #ED388B;
  background-image: linear-gradient(to right, #ED388B, #68008E, #ED388B);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #FFFFFF;
  border: 0;
  border-radius: 0.5em;
  text-decoration: none;
  transition: background-position 0.5s ease;
}
button:hover, .btn:hover {
  color: #FFFFFF;
  background-position: 100% 0;
  cursor: pointer;
}

form .btn, form button {
  width: 100%;
  display: block;
  padding: 1em 0;
  margin-top: 1em;
}

label, select, input, .invalid-feedback {
  margin: 0.2em 0;
}

label {
  display: block;
  text-transform: uppercase;
  font-size: 0.8em;
  text-align: left;
}

select, input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #555577;
  padding: 0.5em;
  font-size: 1em;
}

.invalid-feedback {
  display: block;
  color: red;
  font-size: 0.8em;
  font-weight: bold;
  text-align: left;
}
.invalid-feedback .form-error-icon {
  display: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form-check input {
  display: inline-block;
  width: auto;
}

.checkbox-group {
  display: flex;
  gap: 0.5em 2em;
  margin: 0.5em 0;
  flex-wrap: wrap;
}

.funnel {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.funnel > * {
  display: block;
  margin: 0;
  padding: 0;
  background: #fff;
  counter-increment: step;
}
.funnel > *:before {
  content: counter(step) ". ";
}

.registration-filers {
  display: grid;
  gap: 0 1em;
  grid-template-columns: repeat(2, 1fr);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em;
}

.tag, .tags > a {
  display: inline-block;
  text-align: center;
  background: #5A1A00;
  color: #FFF0D8;
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  text-decoration: none;
  border-radius: 0.2em;
}

.search-form form > div {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(3, 1fr);
}

.item {
  display: grid;
  color: #333;
  padding: 0.5em 0.5em;
  background: #fff;
}
.item a {
  text-decoration: none;
  color: inherit;
}
.item a:hover {
  text-decoration: underline;
}
.item .main {
  display: grid;
  gap: 0.5em;
  grid-template-columns: 3fr 2fr;
}
.item .main h3 {
  margin: 0;
  font-size: 1em;
  font-weight: bold;
}
.item .main .metrics {
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(2, 1fr);
}
.item .main .metrics > * {
  text-align: right;
}
.item .main .metrics .roomCount {
  font-size: 0.8em;
}
.item .main .metrics .price {
  text-align: right;
}
.item .main .metrics .price span {
  border-radius: 1em;
  background: green;
  background: linear-gradient(45deg, #2c8c42, #11d53b);
  color: #fff;
  padding: 0.25em 1em;
  font-weight: bold;
  font-family: monospace;
}
.item .details {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  align-items: flex-end;
}
.item .details .location {
  font-size: 0.9em;
  opacity: 0.5;
}
.item .details .source {
  font-size: 0.6em;
  opacity: 0.5;
}
.item .details .source .source-tag {
  display: inline-block;
  background: #eee;
  color: #666;
  padding: 0.1em 0.5em;
  font-weight: bold;
}

.item-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
  padding: 0.5em;
  border-radius: 0.5em;
  background: #fafafa;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .item-list {
    grid-template-columns: 1fr;
  }
}

.has-fees {
  color: #ff8800;
  font-size: 0.8em;
}

.cta-form {
  background: transparent url("../images/cta-background-3OJVv89.png") no-repeat center right;
  background-size: contain;
  padding: 1em 3em;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .cta-form {
    background-size: auto 100%;
    background-position: left center;
    padding: 0;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .cta-form {
    background: none;
    padding: 0;
    text-align: left;
  }
}
.cta-form .cta-main {
  max-width: 30em;
}
@media only screen and (max-width: 767px) {
  .cta-form .cta-main {
    max-width: none;
  }
}
.cta-form .cta-card {
  background: #000022;
}

.cta-card {
  padding: 1em;
  background: rgba(0, 0, 34, 0.7);
  backdrop-filter: blur(0.3em);
  color: #fff;
  border: 5px solid #ED388B;
  --border-color: linear-gradient(to right, #ED388B, #68008E);
  border-image: var(--border-color) 1;
}

.process {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  margin: 3em 0;
  padding: 0;
  counter-reset: process-step;
}
@media only screen and (max-width: 767px) {
  .process {
    flex-direction: column;
    gap: 0.5em;
  }
}
.process li {
  list-style-type: non;
  flex-grow: 1;
  background: rgba(0, 0, 34, 0.9);
  padding: 1em;
  margin: 0;
  border-radius: 0.5em;
  border: 1px solid #555577;
  text-align: left;
  display: flex;
  gap: 1em;
}
@media only screen and (max-width: 767px) {
  .process li {
    align-items: center;
  }
}
.process li::before {
  counter-increment: process-step;
  content: "" counter(process-step) ".";
  display: inline-block;
  color: #ED388B;
  font-weight: bolder;
  font-size: 2em;
}

/*# sourceMappingURL=app.output.css.map */
