/* RESET */
article, aside, details, figcaption, figure, footer, header, hgroup, hr, menu, nav, section {display:block}
a, hr {padding:0}
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}
ins, mark {background-color:#ff9;color:#000}
body {line-height:1}
nav ul {list-style:none}
blockquote, q {quotes:none}
blockquote:after, blockquote:before, q:after, q:before {content:none}
a {margin:0;font-size:100%;vertical-align:baseline;background:0 0}
ins {text-decoration:none}
mark {font-style:italic;font-weight:700}
del {text-decoration:line-through}
abbr[title], dfn[title] {border-bottom:1px dotted;cursor:help}
table {border-collapse:collapse;border-spacing:0}
hr {height:1px;border:0;border-top:1px solid #ccc;margin:0}
input, select {vertical-align:middle}
body, body *, *::before,*::after {box-sizing:border-box}

:root {
  --colorCorporate: #f29b44;
}

body {
  /*font-family: Rubik, sans-serif;*/
  font-family: Lato, sans-serif;
}

/* APP Styles */
.container {
  max-width: 960px;
}

.invalid-feedback, .valid-feedback {
  font-size: 0.75em;
}

textarea {
  resize: none;
  overflow-x: hidden;
}

.preview-screen {
  border: 1px solid #ced4da;
  border-radius: .375rem;
}

.preview-screen iframe {
  width: 100%;
  height: 340px;
  user-select: none;
}

.person-photo-wrapper {
  display: flex;
}

.person-photo-wrapper .previewAction .btn {
  width: 32px;
  display: block;
}

.btn-file-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

.btn-file-wrapper input {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 38px;
  height: 38px;
  font-size: 0;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: inherit;
  display: block;
}

.is-invalid~.btn, .was-validated :invalid~.btn {
  border-color: var(--bs-danger);
  background: rgba(var(--bs-danger-rgb), 0.4);
}

#personPhotoPreview {
  position: relative;
  width: 109px;
  height: 109px;
  overflow: hidden;
  border-radius: 50%;
}

#personPhotoPreview img {
  display: block;
  max-width: 100%;
}

.global-message {
  bottom: -20%;
  opacity: 0;
  transition: bottom .6s, opacity .2s;
}

.global-message.showed {
  bottom: 0;
  opacity: 1;
}

.bi {
  width: 1em;
  height: 1em;
  fill: currentcolor
}

.float-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
}

.float-button {
  width: 60px;
  height: 60px;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #F29A44;
  border-radius: 50%;
  padding: 10px;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-button:hover {
  color: #fff;
}

.float-button:active {
  transform: scale(0.95);
}

.wizard-container {
  color: #484848;
  width: 100%;
}

.wizard-step {
  margin-bottom: 20px;
}

.wizard-step > h2, .wizard-step > h3 {
  margin: 0;
  line-height: 1;
  font-size: 18px;
  padding: 20px 0 10px;
}

.wizard-step > h3 {
  font-size: 16px;
}

.wizard-step > button:active {
  transform: scale(0.95);
}

.wizard-step .typo-block {
  margin-bottom: 20px;
}

.wizard-step .typo-block p {
  margin-bottom: 10px;
}

.wizard-step .typo-block img {
  width: auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

ol.contents {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol.contents li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.4em;
}

ol.contents li::before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

ol.contents li a {
  color: #2c2c2c;
}

ol.contents li ol {
  counter-reset: subitem;
  padding-left: 0;
}

ol.contents li ol li {
  counter-increment: subitem;
  margin: 0;
}

ol.contents li ol li::before {
  content: counters(item, "") "." counters(subitem, "") ".";
}
