/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/elements/_base.sass ***!
  \***********************************************************************************************************************/
html {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
}

button, input, select {
  appearence: none;
}
/*!***************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_header.sass ***!
  \***************************************************************************************************************************/
.header {
  width: 100%;
}
.header__container {
  border-bottom: 0.3vw solid #222;
  width: 100%;
  max-width: calc(56rem + 1px);
  margin: auto;
  padding: 3vw 0 2vw;
  box-sizing: border-box;
}
.header__logo {
  display: block;
}
.header__title {
  color: #222;
  margin: 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.footer {
  width: 100%;
}
.footer__container {
  border-top: 0.3vw solid #222;
  width: 100%;
  max-width: calc(56rem + 1px);
  margin: auto;
  padding: 2vw 0;
}
.footer__clink {
  text-decoration: none;
  color: #222;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.footer__clink:not(:last-child) {
  margin-right: 1vw;
}

.networks {
  display: flex;
  align-items: center;
}

.network {
  text-decoration: none;
  display: block;
  margin: 0 0.1vw;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 901;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}
.loading--active {
  display: flex;
}
.loading svg {
  display: block;
  width: 6vw;
}

@media all and (min-width: calc(56rem + 1px)) {
  .header__container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .header__logo {
    width: 10vw;
  }
  .header__title {
    font-size: 1.2vw;
  }
  .footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .footer__clink {
    font-size: 1vw;
  }
  .network {
    width: 2vw;
  }
}
@media all and (max-width: calc(56rem + 1px)) {
  .header__logo {
    width: 35vw;
    margin: auto;
  }
  .header__title {
    font-size: 5vw;
    text-align: center;
  }
  .networks {
    margin: auto;
    width: max-content;
  }
  .network {
    width: 8vw;
  }
  .footer__clink {
    font-size: 1rem;
    text-align: center;
    display: block;
  }
}
/*!*************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_form.sass ***!
  \*************************************************************************************************************************/
.body {
  background-color: #FFF;
  width: 100%;
}

.main {
  width: 100%;
  max-width: calc(56rem + 1px);
  margin: 0 auto;
  box-sizing: border-box;
}
.main__title {
  margin: auto;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #222;
  border-left: 0.2vw solid #222;
  padding-left: 1vw;
}
.main__text {
  display: block;
  padding: 2vw;
  box-sizing: border-box;
  background-color: #f1f1f1;
  color: #222;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.main__text--link {
  font-weight: 700;
  color: #222;
}

.form {
  padding-top: 1vw;
}
.form__title {
  margin: 1vw auto 1vw auto;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #222;
}
.form__label {
  color: #222;
  width: 100%;
  padding: 0.3rem 0;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
}
.form__label--required::after {
  content: " *";
  color: #a60000;
  font-weight: 900;
}
.form__container {
  padding: 0.5rem 0;
}
.form__fieldset {
  border: none;
}
.form__select-container {
  width: auto;
  cursor: pointer;
  border: none;
  background-color: #f1f1f1;
  border-radius: 0.4rem;
  overflow: hidden;
  cursor: pointer;
}
.form__select {
  width: calc(100% + 1rem);
  border: none;
  padding: 0.7rem;
  box-sizing: border-box;
  background: none;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.form__select:focus ~ div {
  border: 1px solid #222;
}
.form__input {
  padding: 0.7rem;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #222;
  width: 100%;
  border: none;
  background-color: #f1f1f1;
  border-radius: 0.3rem;
}
.form__input:focus, .form__input:active {
  outline: none;
  border: 1px solid #222;
}
.form__radio-container {
  display: flex;
  justify-content: flex-start;
}
.form__radio-label {
  display: grid;
  background-color: #f1f1f1;
  padding: 0.7rem;
  border-radius: 0.3rem;
  position: relative;
  min-width: 3rem;
}
.form__radio-label:not(:last-child) {
  margin-right: 0.5rem;
}
.form__radio-label:hover, .form__radio-label:has(> input:checked) {
  background-color: rgb(52, 148, 67);
  color: #FFF;
}
.form__radio {
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  order: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  appearance: none;
  background-color: transparent;
}
.form__radio-text {
  position: relative;
  order: 0;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
}
.form__divisor {
  border: none;
  width: 100%;
  display: block;
  height: 0.1rem;
  background-color: #f1f1f1;
  margin: 1rem 0;
}
.form__checkbox {
  display: block;
  border: 3px solid #222;
  appearance: none;
  margin: 0 0.7vw 0 0;
  cursor: pointer;
}
.form__checkbox:checked {
  background-color: #222;
}
.form__checkbox-text {
  color: #222;
  display: block;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.form__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form__alert {
  display: block;
  margin: 0;
  padding: 0.2vw 0;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
  color: #a60000;
}

.btns__row {
  display: flex;
  justify-content: flex-start;
}

.btn {
  cursor: pointer;
}
.btn--big {
  padding: 1vw 4vw;
  font-size: 1.5rem;
}
.btn--regular {
  padding: 0.7vw 2vw;
}
.btn__outlined {
  border: 2px solid #222;
  box-sizing: border-box;
  color: #222;
  background-color: transparent;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn__outlined:hover {
  color: #FFF;
  background-color: #222;
}
.btn__default {
  border: none;
  box-sizing: border-box;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}
.btn__default:not(:last-child) {
  margin-right: 0.4rem;
}
.btn__default svg {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  margin-right: 0.4rem;
}
.btn--green {
  background-color: rgb(52, 148, 67);
}
.btn--red {
  background-color: #a60000;
}

.btn-submit {
  margin-top: 2vw;
}

.messages {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 900;
  background-color: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
}
.messages--active {
  display: flex;
}
.messages__container {
  width: 90%;
  max-width: 30rem;
  padding: 2vw;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #222;
  position: relative;
}
.messages__title {
  color: #222;
  margin: auto auto 1vw auto;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "DM Sans", sans-serif;
}
.messages__text {
  color: #222;
  margin: auto;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}
.messages__close {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0;
  border: none;
  background-color: transparent;
}
.messages__close svg {
  width: 2vw;
  height: 2vw;
}

.notifications {
  display: none;
  position: fixed;
  bottom: 0.5vw;
  right: 0.5vw;
  border-radius: 0.4vw;
  z-index: 900;
  padding: 1vw;
  box-sizing: border-box;
  width: 90%;
  max-width: 22rem;
  background-color: rgba(166, 0, 0, 0.8);
  box-shadow: 0 0 0.3vw rgba(34, 34, 34, 0.3);
}
.notifications--active {
  display: block;
}
.notifications__title {
  color: #FFF;
  margin: auto auto 0.5vw auto;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}
.notifications__text {
  color: #FFF;
  margin: auto;
  font-weight: 400;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
}

@media all and (min-width: calc(56rem + 1px)) {
  .main {
    padding: 5rem 2rem;
  }
  .main__title {
    font-size: 2vw;
  }
  .main__text {
    font-size: 1vw;
  }
  .form__title {
    font-size: 1.5vw;
  }
  .form__checkbox {
    width: 1.5vw;
    height: 1.5vw;
  }
  .form__checkbox-text {
    font-size: 0.8vw;
  }
  .form__row {
    display: flex;
    justify-content: space-between;
  }
  .form__container--wide {
    width: 100%;
  }
  .form__container--half {
    width: 48%;
  }
  .form__container--regular {
    width: 30%;
  }
  .form__container--small {
    width: 15%;
  }
}
@media all and (max-width: calc(56rem + 1px)) {
  .main {
    padding: 10vw 2vw;
  }
  .main__title {
    font-size: 5vw;
  }
  .main__text {
    font-size: 3vw;
  }
  .form__title {
    font-size: 4vw;
  }
  .form__checkbox {
    width: 5vw;
    height: 5vw;
  }
  .form__checkbox-text {
    font-size: 0.8rem;
  }
}
