/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit] {
  border: none;
}

strong, h6, h5, h4, h3, h2, h1 {
  font-weight: bold;
}

::-webkit-scrollbar {
  display: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: auto;
}

html,
body {
  overflow-x: hidden;
}

body {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
}

.message-flash {
  clear: both;
  display: block;
  width: 100%;
  min-height: 3rem;
  height: auto;
  line-height: 3rem;
  text-align: center;
  font-size: 2rem;
}

.warning {
  background-color: rgba(239, 239, 15, 0.5);
  color: #000;
}

.info {
  background-color: rgba(0, 101, 173, 0.8);
  color: #000;
}

.success {
  background-color: rgba(0, 173, 6, 0.8);
  color: #000;
}

.error {
  background-color: rgba(173, 0, 0, 0.8);
  color: #000;
}

@media screen and (min-width: 612px) {
  body {
    font-size: 17.6px;
  }
}
@media only screen and (min-width: 1475px) {
  body {
    font-size: 19.2px;
  }
}
h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.75rem;
}

h6 {
  font-size: 0.5rem;
}

p {
  text-align: justify;
}

ul {
  padding: 0.25rem 0.5rem;
}
ul > li {
  min-width: 80%;
  min-height: 2rem;
  line-height: 2rem;
  padding: 0.5rem 0.25rem;
  border: 2px solid black;
  border-radius: 25px;
  margin-block: 1.5rem;
}
ul > li > a {
  display: block;
  width: 90%;
  height: 100%;
  margin-inline: auto;
  border-radius: 25px;
  text-align: center;
}

form label {
  min-height: 2.5rem;
  line-height: 2.5rem;
  padding: 0.25rem 0.5rem;
}
form textarea, form select, form input {
  width: auto;
  min-height: 2.5rem;
  margin: 0.2rem 0.25rem;
}
form fieldset {
  padding: 0 0.75rem 0;
  border: 2px solid #3b0e5e;
}
form fieldset > legende {
  width: 100%;
}
form input {
  padding: 0.25rem 0.75rem 0;
  border: 0;
  border-bottom: 2px solid #3b0e5e;
  background-color: #abcdef;
}
form input[type=range] {
  padding: 0;
  width: 80%;
  margin-inline: auto;
}
form input[type=radio], form input[type=checkbox] {
  justify-self: right;
}
form input[type=radio] + label, form input[type=checkbox] + label {
  text-align: left;
}

@media only screen and (min-width: 1475px) {
  form label {
    text-align: right;
    padding-right: 1.5rem;
  }
}
.header {
  width: 100vw;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header__logo {
  min-width: 6.6666666667rem;
  width: 80%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__icon {
  width: 5rem;
  height: 5rem;
  z-index: 1;
  position: absolute;
  top: 5px;
  right: 5px;
}
.header__icon > img {
  width: 100%;
  height: 100%;
}
.header__navbar {
  min-width: 200px;
  height: 100vh;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-transform: uppercase;
  scroll-behavior: smooth;
  overflow-y: scroll;
}
.header__navbar--visible {
  display: block;
}
.header__navbar__menu {
  margin-top: 5rem;
  list-style-type: none;
}
.header__navbar__menu a {
  padding: 0.25rem 0.5rem;
  color: #000000;
  text-decoration: none;
}
.header__navbar__menu a:active {
  background-color: lightgray;
}

@media only screen and (min-width: 1475px) {
  .header {
    height: 7.5rem;
    display: grid;
    grid-template-columns: minmax(7.5rem, 11.25rem) 1fr;
  }
  .header__logo {
    width: 100%;
    height: 7.5rem;
  }
  .header__icon {
    display: none;
  }
  .header__navbar {
    max-height: 7.5rem;
    font-size: 16px;
    position: static;
    display: flex;
    justify-content: space-around;
  }
  .header__navbar__menu {
    min-height: 7.5rem;
    max-height: 13.125rem;
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .header__navbar__menu > li {
    max-height: 7.5rem;
    height: 100%;
    min-width: 7.5rem;
    max-width: 18rem;
    width: auto;
    margin: 0;
  }
  .header__navbar__menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.15rem 0.2rem;
    border-radius: 25px;
    text-align: center;
  }
  .header__actions {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .header__actions > .btn {
    margin-inline: 2rem;
  }
}
.footer {
  text-align: center;
}

.form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.25rem;
  background-color: #f6eefc;
  border-radius: 25px;
  padding-block: 1.5rem;
  padding-right: 1.5rem;
}
.form__container {
  display: grid;
  grid-template-columns: 1fr;
}
.form__container:has(> input[type=radio]), .form__container:has(> input[type=checkbox]) {
  grid-template-columns: 0.25fr 0.75fr;
}
.form__container--full > p {
  place-self: center;
}
.form__container__actions {
  grid-template-columns: 1fr;
}
.form__container__actions > input {
  border: 0;
}

@media only screen and (min-width: 1475px) {
  .form__container {
    grid-template-columns: 25rem 1fr;
    grid-column: 1/3;
  }
  .form__container--full {
    grid-column: 1/3;
    grid-template-columns: 1fr;
  }
  .form__container__actions {
    grid-template-columns: 1fr;
  }
}
.main {
  padding: 0.75rem 0.5rem;
}

@media screen and (min-width: 612px) {
  .main {
    padding: 1.5rem 1.75rem;
  }
}
@media only screen and (min-width: 1475px) {
  .main {
    padding: 1.5rem 2.25rem;
  }
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 10rem;
  width: 80%;
  margin: 0.75rem auto;
  padding: 0.5rem 0.75rem;
  border-radius: 25px;
  background-color: lightcyan;
  color: #000000;
  text-align: center;
  text-decoration: none;
}
.btn--primary {
  color: #fff;
  background-color: rgb(57, 57, 207);
}
.btn--primary:hover, .btn--primary:active, .btn--primary:focus {
  background-color: rgba(0, 0, 139, 0.5);
}
.btn--secondary {
  color: #fff;
  background-color: rgba(0, 0, 139, 0.5);
}
.btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus {
  background-color: rgb(57, 57, 207);
}
.btn--validate {
  color: #000;
  background-color: rgb(17, 255, 17);
}
.btn--validate:hover, .btn--validate:active, .btn--validate:focus {
  background-color: #00f700;
}

@media only screen and (min-width: 1475px) {
  .btn {
    min-height: 2rem;
    max-height: 3.5rem;
  }
}

/*# sourceMappingURL=momastyv-sass-compiled.css.map */
