.tabs_container_main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 20px;
}
@media (min-width: 996px) {
  .tabs_container_main {
    border-bottom: 2px solid #aed03c;
  }
}
.tabs_container_main.fixed {
  position: fixed;
  top: 90px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0;
  z-index: 99;
  padding: 1.5em;
}
.tabs_container_main .tabs_container {
  display: table;
  margin: auto;
  position: relative;
}
@media (min-width: 996px) {
  .tabs_container_main .tabs_container {
    display: flex;
  }
}
.tabs_container_main .tabs_container .tab_line {
  display: block;
  position: absolute;
  height: 1px;
  background: #ced4da;
  width: 298px;
  left: -52px;
  top: 31px;
  z-index: -1;
}
@media (min-width: 996px) {
  .tabs_container_main .tabs_container {
    margin: unset;
  }
  .tabs_container_main .tabs_container .tab_line {
    display: none;
  }
}
.tabs_container_main .tabs_container .tab_header {
  display: table-cell;
  border: 1px solid #ced4da;
  font-weight: 400;
  background-color: white;
  transition: background-color 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 50%;
  padding: unset;
  width: 64px;
  height: 64px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 996px) {
  .tabs_container_main .tabs_container .tab_header {
    border: 0 solid transparent;
    display: flex;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 12px 22px;
    border-bottom: unset;
    flex: 1;
    justify-content: center;
    width: unset;
    height: unset;
    align-items: center;
  }
}
.tabs_container_main .tabs_container .tab_header.active {
  background-color: #AED03C;
}
.tabs_container_main .tabs_container .tab_header .tab_header_mobile {
  display: unset;
  font-weight: 700;
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tabs_container_main .tabs_container .tab_header .tab_header_desktop {
  display: none;
}
@media (min-width: 996px) {
  .tabs_container_main .tabs_container .tab_header .tab_header_mobile {
    display: none;
  }
  .tabs_container_main .tabs_container .tab_header .tab_header_desktop {
    display: unset;
    color: black;
    font-weight: 600;
    font-size: 14px;
  }
}

.tab_content {
  display: none;
  transition: opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
}
.tab_content.visible {
  display: block;
}
.tab_content.appear {
  opacity: 1;
}

.col_100 {
  width: 100px;
}

.page_container {
  border-top: 0;
}
.page_container .form_container {
  max-width: 550px;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .page_container .form_container {
    max-width: 1100px;
  }
}
.page_container .form_container .form_title {
  margin: 42px auto 43px auto;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #f28f00;
}

.no_border {
  border: 0;
}

/*# sourceMappingURL=page.css.map */
