@charset "UTF-8";
body {
  font-family: Helvetica, Sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
.container .top-section {
  text-align: center;
  max-width: 985px;
  margin: 0 auto;
  padding: 35px 0;
}
.container .top-section .btn-group {
  padding-top: 20px;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.steps {
  text-align: center;
  display: block;
}

.step-1 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.step-1 .img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-1 .img-inner .img {
  margin: 5px;
}
.step-1 .select-model h3 {
  text-decoration: underline;
}
.step-1 .select-model .larger {
  text-decoration: none;
}

.btn {
  background: #000;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
}

/* Accordion styles */
.tabs {
  border-radius: 8px;
  overflow: hidden;
}
.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab:first-child .tab-label {
  border-top: none;
}

.tab {
  width: 100%;
  color: #000;
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  border-top: 1px solid #000;
  /* Icon */
}
.tab-label-first-child {
  border-top: 0px;
}
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #000;
  background: white;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  cursor: pointer;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}

/*# sourceMappingURL=styles.css.map */
