@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700&amp;display=swap);
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(180deg, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: #fff;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid hsla(0, 0%, 78.4%, 0.8);
  background-color: hsla(0, 0%, 100%, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: hsla(0, 0%, 100%, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  display: block;
  top: 50%;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-error-mark svg,
.dropzone .dz-preview .dz-success-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: hsla(0, 0%, 100%, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(180deg, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(180deg, #be2626, #a92222);
  padding: 0.5em 1.2em;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}
.dropzone {
  position: relative;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 0.5em;
}
.dropzone .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green;
}
.dropzone .dz-preview .dz-error-message {
  color: red;
  display: none;
}
.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  left: 30px;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
}
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
}
trix-toolbar .trix-button-row {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.trix-content * {
  margin: 0;
  padding: 0;
}
.trix-content blockquote {
  border: solid #ccc;
  border-width: 0 0 0 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}
.trix-content [dir="rtl"] blockquote,
.trix-content blockquote[dir="rtl"] {
  border-width: 0 0.3em 0 0;
  margin-right: 0.3em;
  padding-right: 0.6em;
}
.trix-content li {
  margin-left: 1em;
}
.trix-content [dir="rtl"] li {
  margin-right: 1em;
}
.trix-content pre {
  background-color: #eee;
}
.trix-content .attachment--preview .attachment__caption {
  color: #666;
}
.trix-content .attachment--file {
  margin: 0 2px 2px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
button {
  background-color: transparent;
  background-image: none;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
fieldset,
ol,
ul {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
}
html {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
*,
:after,
:before {
  box-sizing: border-box;
  border: 0 solid #e5e5e5;
}
hr {
  border-top-width: 1px;
}
img {
  border-style: solid;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #a0aec0;
}
input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}
[role="button"],
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}
code,
kbd,
pre,
samp {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
.bg-black {
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}
.bg-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}
.bg-gray-70 {
  --bg-opacity: 1;
  background-color: #f7f9fc;
  background-color: rgba(247, 249, 252, var(--bg-opacity));
}
.bg-gray-100 {
  --bg-opacity: 1;
  background-color: #edf0f4;
  background-color: rgba(237, 240, 244, var(--bg-opacity));
}
.bg-gray-400 {
  --bg-opacity: 1;
  background-color: #abb1ba;
  background-color: rgba(171, 177, 186, var(--bg-opacity));
}
.bg-gray-450 {
  --bg-opacity: 1;
  background-color: #d3d8e0;
  background-color: rgba(211, 216, 224, var(--bg-opacity));
}
.bg-gray-800 {
  --bg-opacity: 1;
  background-color: #4d4d4d;
  background-color: rgba(77, 77, 77, var(--bg-opacity));
}
.bg-gray-900 {
  --bg-opacity: 1;
  background-color: #26292e;
  background-color: rgba(38, 41, 46, var(--bg-opacity));
}
.bg-red-200 {
  --bg-opacity: 1;
  background-color: #fed7d7;
  background-color: rgba(254, 215, 215, var(--bg-opacity));
}
.bg-red-500 {
  --bg-opacity: 1;
  background-color: #ff0707;
  background-color: rgba(255, 7, 7, var(--bg-opacity));
}
.bg-red-700 {
  --bg-opacity: 1;
  background-color: #cf000b;
  background-color: rgba(207, 0, 11, var(--bg-opacity));
}
.bg-red-850 {
  --bg-opacity: 1;
  background-color: #b93b05;
  background-color: rgba(185, 59, 5, var(--bg-opacity));
}
.bg-red-950 {
  --bg-opacity: 1;
  background-color: #a61903;
  background-color: rgba(166, 25, 3, var(--bg-opacity));
}
.bg-red-ligth {
  --bg-opacity: 1;
  background-color: #feeaea;
  background-color: rgba(254, 234, 234, var(--bg-opacity));
}
.bg-red-start {
  --bg-opacity: 1;
  background-color: #bf0909;
  background-color: rgba(191, 9, 9, var(--bg-opacity));
}
.bg-green-150 {
  --bg-opacity: 1;
  background-color: #c9f0d8;
  background-color: rgba(201, 240, 216, var(--bg-opacity));
}
.bg-green-500 {
  --bg-opacity: 1;
  background-color: #076725;
  background-color: rgba(7, 103, 37, var(--bg-opacity));
}
.bg-green-950 {
  --bg-opacity: 1;
  background-color: #005e22;
  background-color: rgba(0, 94, 34, var(--bg-opacity));
}
.bg-blue-200 {
  --bg-opacity: 1;
  background-color: #dee3ea;
  background-color: rgba(222, 227, 234, var(--bg-opacity));
}
.bg-blue-700 {
  --bg-opacity: 1;
  background-color: #0056ac;
  background-color: rgba(0, 86, 172, var(--bg-opacity));
}
.bg-menu-background {
  --bg-opacity: 1;
  background-color: #e6f2f5;
  background-color: rgba(230, 242, 245, var(--bg-opacity));
}
.hover\:bg-gray-800:hover {
  --bg-opacity: 1;
  background-color: #4d4d4d;
  background-color: rgba(77, 77, 77, var(--bg-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-black {
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}
.border-white {
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}
.border-gray-100 {
  --border-opacity: 1;
  border-color: #edf0f4;
  border-color: rgba(237, 240, 244, var(--border-opacity));
}
.border-gray-170 {
  --border-opacity: 1;
  border-color: #ecf2f9;
  border-color: rgba(236, 242, 249, var(--border-opacity));
}
.border-gray-300 {
  --border-opacity: 1;
  border-color: #e5e5e5;
  border-color: rgba(229, 229, 229, var(--border-opacity));
}
.border-gray-400 {
  --border-opacity: 1;
  border-color: #abb1ba;
  border-color: rgba(171, 177, 186, var(--border-opacity));
}
.border-gray-500 {
  --border-opacity: 1;
  border-color: #6f777b;
  border-color: rgba(111, 119, 123, var(--border-opacity));
}
.border-gray-600 {
  --border-opacity: 1;
  border-color: #919191;
  border-color: rgba(145, 145, 145, var(--border-opacity));
}
.border-gray-900 {
  --border-opacity: 1;
  border-color: #26292e;
  border-color: rgba(38, 41, 46, var(--border-opacity));
}
.border-red-600 {
  --border-opacity: 1;
  border-color: #e53e3e;
  border-color: rgba(229, 62, 62, var(--border-opacity));
}
.border-red-700 {
  --border-opacity: 1;
  border-color: #cf000b;
  border-color: rgba(207, 0, 11, var(--border-opacity));
}
.border-red-start {
  --border-opacity: 1;
  border-color: #bf0909;
  border-color: rgba(191, 9, 9, var(--border-opacity));
}
.border-green-250 {
  --border-opacity: 1;
  border-color: #a2d5b4;
  border-color: rgba(162, 213, 180, var(--border-opacity));
}
.border-blue-200 {
  --border-opacity: 1;
  border-color: #dee3ea;
  border-color: rgba(222, 227, 234, var(--border-opacity));
}
.border-blue-700 {
  --border-opacity: 1;
  border-color: #0056ac;
  border-color: rgba(0, 86, 172, var(--border-opacity));
}
.border-back {
  --border-opacity: 1;
  border-color: #e6f2f8;
  border-color: rgba(230, 242, 248, var(--border-opacity));
}
.hover\:border-blue-700:hover {
  --border-opacity: 1;
  border-color: #0056ac;
  border-color: rgba(0, 86, 172, var(--border-opacity));
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.border-solid {
  border-style: solid;
}
.border-none {
  border-style: none;
}
.border-2 {
  border-width: 2px;
}
.border {
  border-width: 1px;
}
.border-7\/10 {
  border-width: 0.7px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-3 {
  border-bottom-width: 3px;
}
.border-b-8 {
  border-bottom-width: 8px;
}
.border-t {
  border-top-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.cursor-pointer {
  cursor: pointer;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.content-center {
  align-content: center;
}
.self-start {
  align-self: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-self-end {
  justify-self: end;
}
.flex-1 {
  flex: 1 1;
}
.flex-auto {
  flex: 1 1 auto;
}
.flex-grow {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.float-right {
  float: right;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}
.h-0 {
  height: 0;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 20px;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 56px;
}
.h-16 {
  height: 4rem;
}
.h-17 {
  height: 68px;
}
.h-100 {
  height: 100px;
}
.h-13\/8 {
  height: 26px;
}
.h-19\/8 {
  height: 38px;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.text-13 {
  font-size: 13px;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.leading-4 {
  line-height: 1rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.leading-normal {
  line-height: 1.5;
}
.list-none {
  list-style-type: none;
}
.list-disc {
  list-style-type: disc;
}
.m-0 {
  margin: 0;
}
.m-2 {
  margin: 0.5rem;
}
.m-5 {
  margin: 20px;
}
.m-auto {
  margin: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my-5 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1\/8 {
  margin-top: 2px;
  margin-bottom: 2px;
}
.mx-5\/16 {
  margin-left: 5px;
  margin-right: 5px;
}
.my-5\/8 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.my-13\/16 {
  margin-top: 13px;
  margin-bottom: 13px;
}
.my-11\/8 {
  margin-top: 22px;
  margin-bottom: 22px;
}
.my-25\/16 {
  margin-top: 25px;
  margin-bottom: 25px;
}
.mx-25\/16 {
  margin-left: 25px;
  margin-right: 25px;
}
.my-15\/8 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.ml-0 {
  margin-left: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mt-5 {
  margin-top: 20px;
}
.mr-5 {
  margin-right: 20px;
}
.mb-5 {
  margin-bottom: 20px;
}
.ml-5 {
  margin-left: 20px;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-8 {
  margin-left: 2rem;
}
.mt-9 {
  margin-top: 36px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mt-14 {
  margin-top: 56px;
}
.mb-14 {
  margin-bottom: 56px;
}
.ml-auto {
  margin-left: auto;
}
.mt-1\/16 {
  margin-top: 1px;
}
.mb-1\/8 {
  margin-bottom: 2px;
}
.mt-3\/16 {
  margin-top: 3px;
}
.mt-3\/8 {
  margin-top: 6px;
}
.ml-3\/8 {
  margin-left: 6px;
}
.mb-5\/8 {
  margin-bottom: 10px;
}
.mt-11\/16 {
  margin-top: 11px;
}
.ml-11\/16 {
  margin-left: 11px;
}
.ml-3\/4 {
  margin-left: 12px;
}
.mr-15\/16 {
  margin-right: 15px;
}
.mb-15\/16 {
  margin-bottom: 15px;
}
.mb-17\/16 {
  margin-bottom: 17px;
}
.ml-19\/16 {
  margin-left: 19px;
}
.mb-11\/8 {
  margin-bottom: 22px;
}
.mb-25\/16 {
  margin-bottom: 25px;
}
.mt-15\/8 {
  margin-top: 30px;
}
.mb-15\/8 {
  margin-bottom: 30px;
}
.mt-35\/4 {
  margin-top: 35px;
}
.mt-25\/8 {
  margin-top: 50px;
}
.mb-25\/8 {
  margin-bottom: 50px;
}
.mr-15\/4 {
  margin-right: 60px;
}
.mb-15\/4 {
  margin-bottom: 60px;
}
.mb-91\/16 {
  margin-bottom: 91px;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.-mt-5 {
  margin-top: -20px;
}
.-mt-6 {
  margin-top: -1.5rem;
}
.-ml-8 {
  margin-left: -2rem;
}
.-mt-10 {
  margin-top: -2.5rem;
}
.max-h-40px {
  max-height: 40px;
}
.max-w-80 {
  max-width: 80rem;
}
.max-w-149 {
  max-width: 596px;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-300px {
  max-width: 300px;
}
.min-h-16 {
  min-height: 16rem;
}
.min-h-screen {
  min-height: 100vh;
}
.opacity-75 {
  opacity: 0.75;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:outline-main:focus {
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.overflow-x-auto {
  overflow-x: auto;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 20px;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-9 {
  padding: 36px;
}
.p-10 {
  padding: 2.5rem;
}
.p-3\/8 {
  padding: 6px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.px-14 {
  padding-left: 56px;
  padding-right: 56px;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.py-3\/16 {
  padding-top: 3px;
  padding-bottom: 3px;
}
.py-5\/16 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.px-3\/8 {
  padding-left: 6px;
  padding-right: 6px;
}
.px-9\/16 {
  padding-left: 9px;
  padding-right: 9px;
}
.py-11\/16 {
  padding-top: 11px;
  padding-bottom: 11px;
}
.py-13\/16 {
  padding-top: 13px;
  padding-bottom: 13px;
}
.px-13\/16 {
  padding-left: 13px;
  padding-right: 13px;
}
.px-7\/8 {
  padding-left: 14px;
  padding-right: 14px;
}
.py-15\/8 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.px-15\/8 {
  padding-left: 30px;
  padding-right: 30px;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pt-5 {
  padding-top: 20px;
}
.pb-5 {
  padding-bottom: 20px;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pr-20 {
  padding-right: 5rem;
}
.pl-20 {
  padding-left: 5rem;
}
.pb-3\/16 {
  padding-bottom: 3px;
}
.pb-5\/16 {
  padding-bottom: 5px;
}
.pr-11\/16 {
  padding-right: 11px;
}
.pl-7\/8 {
  padding-left: 14px;
}
.pl-43\/16 {
  padding-left: 43px;
}
.placeholder-gray-700::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #4a5568;
  color: rgba(74, 85, 104, var(--placeholder-opacity));
}
.placeholder-gray-700::placeholder {
  --placeholder-opacity: 1;
  color: #4a5568;
  color: rgba(74, 85, 104, var(--placeholder-opacity));
}
.placeholder-gray-900::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #26292e;
  color: rgba(38, 41, 46, var(--placeholder-opacity));
}
.placeholder-gray-900::placeholder {
  --placeholder-opacity: 1;
  color: #26292e;
  color: rgba(38, 41, 46, var(--placeholder-opacity));
}
.pointer-events-none {
  pointer-events: none;
}
.static {
  position: static;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.shadow {
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.shadow-md {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-1xs {
  box-shadow: 0 0 23px rgba(222, 227, 234, 0.75);
}
.shadow-2xs {
  box-shadow: 2px 2px 16px -8px rgba(137, 160, 191, 0.62);
}
.shadow-3xs {
  box-shadow: 0 3px 11px #cbd5e2;
}
.shadow-active-menu {
  box-shadow: 0 4px 11px rgba(138, 142, 146, 0.15);
}
.shadow-3xt {
  box-shadow: 2px 3px 23px -4px #d3e0ec;
}
.shadow-4xs-15 {
  box-shadow: 0 4px 11px rgba(138, 143, 147, 0.15);
}
.hover\:shadow-4xs-25:hover {
  box-shadow: 0 4px 11px rgba(138, 143, 147, 0.25);
}
.fill-current {
  fill: currentColor;
}
.stroke-current {
  stroke: currentColor;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-current {
  color: currentColor;
}
.text-black {
  --text-opacity: 1;
  color: #000;
  color: rgba(0, 0, 0, var(--text-opacity));
}
.text-white {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}
.text-gray-400 {
  --text-opacity: 1;
  color: #abb1ba;
  color: rgba(171, 177, 186, var(--text-opacity));
}
.text-gray-600 {
  --text-opacity: 1;
  color: #919191;
  color: rgba(145, 145, 145, var(--text-opacity));
}
.text-gray-800 {
  --text-opacity: 1;
  color: #4d4d4d;
  color: rgba(77, 77, 77, var(--text-opacity));
}
.text-gray-900 {
  --text-opacity: 1;
  color: #26292e;
  color: rgba(38, 41, 46, var(--text-opacity));
}
.text-red-500 {
  --text-opacity: 1;
  color: #ff0707;
  color: rgba(255, 7, 7, var(--text-opacity));
}
.text-red-600 {
  --text-opacity: 1;
  color: #e53e3e;
  color: rgba(229, 62, 62, var(--text-opacity));
}
.text-red-700 {
  --text-opacity: 1;
  color: #cf000b;
  color: rgba(207, 0, 11, var(--text-opacity));
}
.text-red-800 {
  --text-opacity: 1;
  color: #b21414;
  color: rgba(178, 20, 20, var(--text-opacity));
}
.text-red-start {
  --text-opacity: 1;
  color: #bf0909;
  color: rgba(191, 9, 9, var(--text-opacity));
}
.text-orange-600 {
  --text-opacity: 1;
  color: #dd6b20;
  color: rgba(221, 107, 32, var(--text-opacity));
}
.text-green-500 {
  --text-opacity: 1;
  color: #076725;
  color: rgba(7, 103, 37, var(--text-opacity));
}
.text-green-600 {
  --text-opacity: 1;
  color: #38a169;
  color: rgba(56, 161, 105, var(--text-opacity));
}
.text-green-help {
  --text-opacity: 1;
  color: #1d8b66;
  color: rgba(29, 139, 102, var(--text-opacity));
}
.text-blue-200 {
  --text-opacity: 1;
  color: #dee3ea;
  color: rgba(222, 227, 234, var(--text-opacity));
}
.text-blue-700 {
  --text-opacity: 1;
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
}
.text-gray-secondary {
  --text-opacity: 1;
  color: #5d5d5d;
  color: rgba(93, 93, 93, var(--text-opacity));
}
.hover\:text-white:hover {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}
.hover\:text-gray-900:hover {
  --text-opacity: 1;
  color: #26292e;
  color: rgba(38, 41, 46, var(--text-opacity));
}
.hover\:text-red-400:hover {
  --text-opacity: 1;
  color: #fc8181;
  color: rgba(252, 129, 129, var(--text-opacity));
}
.italic {
  font-style: italic;
}
.capitalize {
  text-transform: capitalize;
}
.hover\:underline:hover,
.underline {
  text-decoration: underline;
}
.hover\:no-underline:hover {
  text-decoration: none;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-normal {
  letter-spacing: 0;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.align-middle {
  vertical-align: middle;
}
.whitespace-normal {
  white-space: normal;
}
.truncate,
.whitespace-no-wrap {
  white-space: nowrap;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
}
.w-1 {
  width: 0.25rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 20px;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-27 {
  width: 432px;
}
.w-32 {
  width: 8rem;
}
.w-40 {
  width: 160px;
}
.w-48 {
  width: 12rem;
}
.w-56 {
  width: 14rem;
}
.w-64 {
  width: 16rem;
}
.w-121 {
  width: 484px;
}
.w-1\/8 {
  width: 2px;
}
.w-207\/16 {
  width: 207px;
}
.w-31\/2 {
  width: 248px;
}
.w-609\/16 {
  width: 609px;
}
.w-645\/16 {
  width: 645px;
}
.w-185\/4 {
  width: 740px;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-3\/5 {
  width: 60%;
}
.w-4\/5 {
  width: 80%;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-9\/12 {
  width: 75%;
}
.w-11\/12 {
  width: 91.666667%;
}
.w-full {
  width: 100%;
}
.w-115\/2 {
  width: 230px;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.gap-2 {
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.gap-3 {
  grid-gap: 0.75rem;
  gap: 0.75rem;
}
.gap-4 {
  grid-gap: 1rem;
  gap: 1rem;
}
.gap-9 {
  grid-gap: 36px;
  gap: 36px;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-2 {
  grid-column-start: 2;
}
.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}
.rotate-90 {
  --transform-rotate: 90deg;
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes ping {
  75%,
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%,
  to {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.flash {
  border-width: 2px;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  position: relative;
  margin-bottom: 20px;
}
.flash .btn-cancel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0.75rem 1rem;
}
.flash.alert {
  background-color: #fffaf0;
  background-color: rgba(255, 250, 240, var(--bg-opacity));
  border-color: #f6ad55;
  border-color: rgba(246, 173, 85, var(--border-opacity));
  color: #c05621;
  color: rgba(192, 86, 33, var(--text-opacity));
}
.flash.alert,
.flash.error {
  --bg-opacity: 1;
  --border-opacity: 1;
  --text-opacity: 1;
}
.flash.error {
  background-color: #fff5f5;
  background-color: rgba(255, 245, 245, var(--bg-opacity));
  border-color: #fc8181;
  border-color: rgba(252, 129, 129, var(--border-opacity));
  color: #cf000b;
  color: rgba(207, 0, 11, var(--text-opacity));
}
.flash.notice {
  background-color: #edf0f4;
  background-color: rgba(237, 240, 244, var(--bg-opacity));
  border-color: #0056ac;
  border-color: rgba(0, 86, 172, var(--border-opacity));
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
}
.flash.notice,
.flash.success {
  --bg-opacity: 1;
  --border-opacity: 1;
  --text-opacity: 1;
}
.flash.success {
  background-color: #f0fff4;
  background-color: rgba(240, 255, 244, var(--bg-opacity));
  border-color: #68d391;
  border-color: rgba(104, 211, 145, var(--border-opacity));
  color: #2f855a;
  color: rgba(47, 133, 90, var(--text-opacity));
}
.flash.info {
  color: currentColor;
  border-color: #0056ac;
  background-color: #f2f9ff;
}
body {
  --text-opacity: 1;
  color: #26292e;
  color: rgba(38, 41, 46, var(--text-opacity));
  font-family: Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  text-rendering: optimizeLegibility;
  font-feature-settings: "pnum";
  font-variant-numeric: proportional-nums;
  background-color: #f7f9fc;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.875rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.125rem;
  }
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.375;
}
h5 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 0.25rem;
}
a {
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
}
a,
a:hover {
  --text-opacity: 1;
}
a:hover {
  color: #2a4365;
  color: rgba(42, 67, 101, var(--text-opacity));
}
a.active {
  text-decoration: underline;
  --text-opacity: 1;
  color: #1d0ebe;
  color: rgba(29, 14, 190, var(--text-opacity));
}
hr {
  --border-opacity: 1;
  border-color: #abb1ba;
  border-color: rgba(171, 177, 186, var(--border-opacity));
}
.rotate-90 {
  transform: rotate(90deg);
}
.rotate-270 {
  transform: rotate(270deg);
}
.margin-option-menu {
  margin-left: -202px;
}
@media (min-width: 768px) {
  .margin-option-menu {
    margin-left: 0;
  }
}
.form-inputs .form-group,
.form-inputs .input {
  margin-bottom: 1.5rem;
}
.form-inputs fieldset {
  border-width: 1px;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  padding: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-inputs fieldset legend {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-weight: 700;
}
.form-inputs label {
  display: block;
}
.form-inputs label abbr {
  display: none;
}
.form-inputs label.date,
.form-inputs label.email,
.form-inputs label.enum,
.form-inputs label.enum_radio_buttons,
.form-inputs label.integer,
.form-inputs label.password,
.form-inputs label.select,
.form-inputs label.string,
.form-inputs label.text,
.form-inputs label.time {
  font-weight: 700;
}
.form-inputs .input_like,
.form-inputs input[type="date"],
.form-inputs input[type="email"],
.form-inputs input[type="password"],
.form-inputs input[type="tel"],
.form-inputs input[type="text"],
.form-inputs input[type="time"] {
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  border-width: 2px;
}
.form-inputs .input_like.disabled,
.form-inputs .input_like:disabled,
.form-inputs input[type="date"].disabled,
.form-inputs input[type="date"]:disabled,
.form-inputs input[type="email"].disabled,
.form-inputs input[type="email"]:disabled,
.form-inputs input[type="password"].disabled,
.form-inputs input[type="password"]:disabled,
.form-inputs input[type="tel"].disabled,
.form-inputs input[type="tel"]:disabled,
.form-inputs input[type="text"].disabled,
.form-inputs input[type="text"]:disabled,
.form-inputs input[type="time"].disabled,
.form-inputs input[type="time"]:disabled {
  --bg-opacity: 1;
  background-color: #edf0f4;
  background-color: rgba(237, 240, 244, var(--bg-opacity));
  box-shadow: none;
}
.form-inputs .input_like:focus,
.form-inputs input[type="date"]:focus,
.form-inputs input[type="email"]:focus,
.form-inputs input[type="password"]:focus,
.form-inputs input[type="tel"]:focus,
.form-inputs input[type="text"]:focus,
.form-inputs input[type="time"]:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.form-inputs input[type="email"],
.form-inputs input[type="password"],
.form-inputs input[type="tel"],
.form-inputs input[type="text"],
.form-inputs select,
.form-inputs textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
.form-inputs textarea {
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  -moz-appearance: none;
  appearance: none;
  border-width: 2px;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  padding: 0.5rem 0.75rem;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  width: 100%;
}
.form-inputs textarea.disabled,
.form-inputs textarea:disabled {
  --bg-opacity: 1;
  background-color: #edf0f4;
  background-color: rgba(237, 240, 244, var(--bg-opacity));
  box-shadow: none;
}
.form-inputs textarea:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.form-inputs input[type="checkbox"],
.form-inputs input[type="radio"] {
  margin-right: 0.5rem;
}
.form-inputs select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-width: 2px;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}
.form-inputs select:disabled {
  box-shadow: none;
  --border-opacity: 1;
  border-color: #abb1ba;
  border-color: rgba(171, 177, 186, var(--border-opacity));
  --text-opacity: 1;
  color: #6f777b;
  color: rgba(111, 119, 123, var(--text-opacity));
}
.form-inputs select:focus {
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.form-inputs select#complaint_happened_hour,
.form-inputs select#complaint_happened_minute {
  width: 7rem;
}
@media (min-width: 768px) {
  .form-inputs select {
    padding-left: 0.5rem;
  }
  .form-inputs select#complaint_happened_hour,
  .form-inputs select#complaint_happened_minute,
  .form-inputs select.date {
    width: 160px;
  }
  .form-inputs select#complaint_province_code,
  .form-inputs select#complaint_region_code,
  .form-inputs select#complaint_ubigeo_id {
    width: 13rem;
  }
  .form-inputs select#complaint_person_attributes_doc_type {
    width: 16rem;
  }
  .form-inputs select#complaint_province_code {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .form-inputs input[type="email"],
  .form-inputs input[type="password"],
  .form-inputs input[type="tel"] {
    width: 16rem;
  }
  .form-inputs input[type="email"].custom-user,
  .form-inputs input[type="password"].custom-user,
  .form-inputs input[type="text"].custom-user,
  .form-inputs select.custom-user {
    width: 484px;
  }
  .form-inputs input#complaint_line1,
  .form-inputs input#complaint_line2,
  .form-inputs input.input-name,
  .form-inputs input.input-personal {
    width: 50%;
  }
}
.form-inputs .field_with_errors input,
.form-inputs .field_with_errors select,
.form-inputs .field_with_errors textarea,
.form-inputs .has-danger input,
.form-inputs .has-danger select,
.form-inputs .has-danger textarea {
  border-width: 1px;
  --border-opacity: 1;
  border-color: #e53e3e;
  border-color: rgba(229, 62, 62, var(--border-opacity));
}
.form-inputs .field_with_errors .error,
.form-inputs .field_with_errors .form-control-feedback,
.form-inputs .has-danger .error,
.form-inputs .has-danger .form-control-feedback {
  --text-opacity: 1;
  color: #e53e3e;
  color: rgba(229, 62, 62, var(--text-opacity));
  font-size: 0.875rem;
  font-style: italic;
}
.form-inputs span.error {
  display: block;
}
.form-inputs .hint {
  --text-opacity: 1;
  color: #4d4d4d;
  color: rgba(77, 77, 77, var(--text-opacity));
  font-size: 0.875rem;
  font-style: italic;
}
.form-inputs input.js-input-field[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form-inputs .check_boxes .checkbox label {
  text-indent: -1.4rem;
  margin-left: 1.4rem;
}
.form-inputs .radio-button span {
  background: #fff;
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: translateZ(0);
  border: 3px solid #222;
  border-radius: 100%;
  position: absolute;
  top: -1px;
}
.form-inputs .radio-button input {
  opacity: 0;
  width: 80%;
  height: 100%;
  cursor: pointer;
  position: absolute;
}
.form-inputs .radio-button input:checked + label:after {
  background: #222;
  transform: scale(1.5);
}
.form-inputs .radio-button label:after {
  position: absolute;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  content: "";
  display: block;
  top: 6px;
  left: 7px;
  transform: scale(0);
  transition: transform 0.2s;
}
.form-inputs .span-block {
  border: 3px solid #6f777b !important;
  background: #efefef !important;
}
.form-inputs .radio-wrapper {
  flex-direction: row;
  margin-bottom: 0.5rem;
  position: relative;
}
.form-inputs .custom-checkbox {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  cursor: pointer;
}
.form-inputs .custom-checkbox input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
  top: 5px;
}
.form-inputs .mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid #26292e;
}
.form-inputs .custom-checkbox:hover input ~ .mark,
.form-inputs .custom-checkbox input:active ~ .mark,
.form-inputs .mark {
  background-color: #fff;
}
.form-inputs .custom-checkbox input:checked ~ .mark {
  background-color: #000;
}
.form-inputs .custom-checkbox input:disabled ~ .mark {
  --border-opacity: 1;
  border-color: #abb1ba;
  border-color: rgba(171, 177, 186, var(--border-opacity));
}
.form-inputs .mark:after {
  content: "";
  position: absolute;
  display: none;
}
.form-inputs .custom-checkbox input:checked ~ .mark:after {
  display: block;
}
.form-inputs .custom-checkbox .mark:after {
  top: 3px;
  left: 7px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.btn {
  font-weight: 700;
  padding: 0.5rem 1.5rem;
}
.btn.active,
.btn:focus {
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.btn--large {
  padding: 1rem 1.5rem;
}
.btn--primary {
  background-color: #0056ac;
  background-color: rgba(0, 86, 172, var(--bg-opacity));
}
.btn--primary,
.btn--primary.active,
.btn--primary:disabled,
.btn--primary:hover {
  --bg-opacity: 1;
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}
.btn--primary.active,
.btn--primary:disabled,
.btn--primary:hover {
  background-color: #3182ce;
  background-color: rgba(49, 130, 206, var(--bg-opacity));
}
.btn--secondary,
.btn--secondary.active,
.btn--secondary:disabled,
.btn--secondary:hover {
  --bg-opacity: 1;
  background-color: #e6f2f8;
  background-color: rgba(230, 242, 248, var(--bg-opacity));
  --text-opacity: 1;
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
}
.btn--terciary {
  --bg-opacity: 1;
  background-color: #efefef;
  background-color: rgba(239, 239, 239, var(--bg-opacity));
  border-width: 1px;
  --border-opacity: 1;
  border-color: #abb1ba;
  border-color: rgba(171, 177, 186, var(--border-opacity));
}
.btn--terciary.active,
.btn--terciary:disabled,
.btn--terciary:hover {
  --bg-opacity: 1;
  background-color: #e5e5e5;
  background-color: rgba(229, 229, 229, var(--bg-opacity));
}
.btn--quaternary {
  --bg-opacity: 1;
  background-color: #26292e;
  background-color: rgba(38, 41, 46, var(--bg-opacity));
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}
.btn--quaternary.active,
.btn--quaternary:disabled,
.btn--quaternary:hover {
  --bg-opacity: 1;
  background-color: #4d4d4d;
  background-color: rgba(77, 77, 77, var(--bg-opacity));
}
.btn--danger {
  background-color: #cf000b;
  background-color: rgba(207, 0, 11, var(--bg-opacity));
}
.btn--danger,
.btn--danger.active,
.btn--danger:disabled,
.btn--danger:hover {
  --bg-opacity: 1;
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}
.btn--danger.active,
.btn--danger:disabled,
.btn--danger:hover {
  background-color: #e53e3e;
  background-color: rgba(229, 62, 62, var(--bg-opacity));
}
.btn--small {
  padding: 0.25rem;
  border-radius: 0.25rem;
}
.btn--back {
  border-radius: 0;
}
.btn--send_share {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  display: flex;
  flex-direction: column;
  height: 6rem;
  width: 8rem;
  justify-content: center;
  align-self: center;
  padding-top: 0;
  padding-bottom: 0;
}
.dropzone {
  border-width: 0;
  border-style: solid;
  max-height: 100%;
  padding: 0;
  min-height: 0;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.dropzone.dz-drag-hover {
  border-width: 2px;
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  text-align: right;
  margin: 0;
  opacity: 0.9;
}
.dropzone .dz-message {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.dropzone.dz-started .dz-message {
  display: flex;
  padding: 10px;
  justify-content: center;
}
.dropzone .dz-preview {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 8px 14px;
  margin-top: 1px;
  margin-left: 0;
  min-height: 30px;
  background-color: #fff;
}
.dropzone .dz-preview .dz-image {
  display: none;
}
.dropzone .dz-preview .dz-details {
  position: static;
  opacity: 1;
  display: flex;
  padding: 1px;
  font-size: 15px;
  color: #0056ac;
  font-weight: 700;
}
.dropzone .dz-preview .dz-details .dz-size {
  font-size: 15px;
  color: #222;
  margin-bottom: 0;
}
.dropzone .dz-preview .dz-remove {
  font-size: 20px;
  margin: 3px;
  font-weight: 700;
  color: #fff;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><g><g><path d="M10 1.007L8.993 0 5 3.993 1.007 0 0 1.007 3.993 5 0 8.993 1.007 10 5 6.007 8.993 10 10 8.993 6.007 5z"/></g></g></svg>')
    no-repeat;
}
.dropzone .dz-preview .dz-error-mark {
  border-radius: 50%;
  background-color: #be2626;
}
.dropzone .dz-preview .dz-error-message {
  color: #fff;
  top: 50px;
}
.dropzone .dz-preview .dz-success-mark {
  border-radius: 50%;
  background-color: green;
}
.dropzone .dz-preview .dz-progress {
  border-radius: 0;
  border: 1px solid #b9b9b9;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #e8e8e8;
}
.pagination {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
}
.pagination span {
  display: block;
}
.pagination span a {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --text-opacity: 1;
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
  display: block;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 641px) {
  .pagination span a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.pagination span.current {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.25rem;
  --border-opacity: 1;
  border-color: #26292e;
  border-color: rgba(38, 41, 46, var(--border-opacity));
  --text-opacity: 1;
  color: #26292e;
  color: rgba(38, 41, 46, var(--text-opacity));
  border-bottom-width: 4px;
  font-weight: 700;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 641px) {
  .pagination span.current {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.pagination span.current a,
.pagination span.first a,
.pagination span.last a,
.pagination span.next a,
.pagination span.prev a {
  --text-opacity: 1;
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
  font-weight: 700;
}
.pagination span.first,
.pagination span.last {
  display: none;
}
.pagination span.prev .symbol {
  border-width: 0 0 2px 2px;
}
.pagination span.next .symbol,
.pagination span.prev .symbol {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  --border-opacity: 1;
  border-color: #0056ac;
  border-color: rgba(0, 86, 172, var(--border-opacity));
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  --transform-rotate: 45deg;
}
.pagination span.next .symbol {
  border-width: 2px 2px 0 0;
}
.pagination span.page {
  font-weight: 700;
}
.pagination span.page.gap {
  content: "";
  display: none;
}
.pagination [class="page"] {
  display: none;
}
@media screen and (min-width: 641px) {
  .pagination [class="page"] {
    display: block;
  }
}
table.table {
  border-collapse: separate;
  width: 100%;
  border-spacing: 0 9px;
}
table.table th {
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: left;
}
table.table tbody {
  --bg-opacity: 1;
  background-color: #edf0f4;
  background-color: rgba(237, 240, 244, var(--bg-opacity));
}
table.table tbody tr:hover {
  --bg-opacity: 1;
  background-color: #dee3ea;
  background-color: rgba(222, 227, 234, var(--bg-opacity));
}
table.table td {
  padding: 0.75rem 0.5rem;
}
table.table td:first-child {
  padding-left: 0.75rem;
}
table.table td:last-child {
  padding-right: 0.75rem;
}
ul.dropdown {
  border-width: 1px;
  --border-opacity: 1;
  border-color: #919191;
  border-color: rgba(145, 145, 145, var(--border-opacity));
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: absolute;
  z-index: 50;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  width: 277px;
  margin-top: 0.25rem;
  border-radius: 0.5rem;
}
ul.dropdown li {
  padding: 0.5rem 0.75rem;
  margin: 0.25rem;
}
ul.dropdown li.active,
ul.dropdown li:hover {
  --bg-opacity: 1;
  background-color: #90cdf4;
  background-color: rgba(144, 205, 244, var(--bg-opacity));
}
ul.dropdown:last-child {
  border-style: none;
}
ul.dropdown-notification {
  border-width: 1px;
  --border-opacity: 1;
  border-color: #919191;
  border-color: rgba(145, 145, 145, var(--border-opacity));
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: absolute;
  z-index: 20;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  width: 100vw;
  right: 0;
  top: 76px;
}
@media (min-width: 768px) {
  ul.dropdown-notification {
    width: 18rem;
    top: 48px;
  }
}
ul.dropdown-notification li {
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #abb1ba;
  border-color: rgba(171, 177, 186, var(--border-opacity));
}
ul.dropdown-notification li.active,
ul.dropdown-notification li:hover {
  --bg-opacity: 1;
  background-color: #90cdf4;
  background-color: rgba(144, 205, 244, var(--bg-opacity));
}
ul.dropdown-notification li > a {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}
ul.dropdown-notification:last-child {
  border-style: none;
}
.trix-content {
  border-width: 2px;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}
.trix-content .attachment-gallery > .attachment,
.trix-content .attachment-gallery > action-text-attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment,
.trix-content
  .attachment-gallery.attachment-gallery--2
  > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment,
.trix-content
  .attachment-gallery.attachment-gallery--4
  > action-text-attachment {
  flex-basis: 50%;
  max-width: 50%;
}
.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}
trix-editor {
  border-width: 2px;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  border-radius: 0;
  margin-bottom: 1.5rem;
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
  max-height: 30vh;
  overflow: auto;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
  background-color: #fff;
}
trix-toolbar * {
  box-sizing: border-box;
}
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border-color: #ccc #bbb #888;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
}
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: #000;
}
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon:before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon:before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active:before {
  opacity: 1;
}
trix-toolbar .trix-button--icon:disabled:before {
  opacity: 0.125;
}
trix-toolbar .trix-button--icon-attach:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M16.5 6v11.5a4 4 0 11-8 0V5a2.5 2.5 0 015 0v10.5a1 1 0 11-2 0V6H10v9.5a2.5 2.5 0 005 0V5a4 4 0 10-8 0v12.5a5.5 5.5 0 0011 0V6h-1.5z'/%3E%3C/svg%3E");
  top: 8%;
  bottom: 4%;
}
trix-toolbar .trix-button--icon-bold:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M15.6 11.8c1-.7 1.6-1.8 1.6-2.8a4 4 0 00-4-4H7v14h7c2.1 0 3.7-1.7 3.7-3.8 0-1.5-.8-2.8-2.1-3.4zM10 7.5h3a1.5 1.5 0 110 3h-3v-3zm3.5 9H10v-3h3.5a1.5 1.5 0 110 3z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-italic:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M10 5v3h2.2l-3.4 8H6v3h8v-3h-2.2l3.4-8H18V5h-8z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-link:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M9.88 13.7a4.3 4.3 0 010-6.07l3.37-3.37a4.26 4.26 0 016.07 0 4.3 4.3 0 010 6.06l-1.96 1.72a.91.91 0 11-1.3-1.3l1.97-1.71a2.46 2.46 0 00-3.48-3.48l-3.38 3.37a2.46 2.46 0 000 3.48.91.91 0 11-1.3 1.3z'/%3E%3Cpath d='M4.25 19.46a4.3 4.3 0 010-6.07l1.93-1.9a.91.91 0 111.3 1.3l-1.93 1.9a2.46 2.46 0 003.48 3.48l3.37-3.38c.96-.96.96-2.52 0-3.48a.91.91 0 111.3-1.3 4.3 4.3 0 010 6.07l-3.38 3.38a4.26 4.26 0 01-6.07 0z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-strike:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M12.73 14l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5 0 .3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52 13.52 0 017 14.95v3.37a10.64 10.64 0 004.84.88c1.26 0 2.35-.19 3.28-.56.93-.37 1.64-.9 2.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1 0-1.29.52-2.3 1.58-3.02 1.05-.72 2.5-1.08 4.34-1.08 1.62 0 3.28.34 4.97 1l-1.3 2.93c-1.47-.6-2.73-.9-3.8-.9-.55 0-.96.08-1.2.26-.26.17-.38.38-.38.64 0 .27.16.52.48.74.17.12.53.3 1.05.53H7.23zM3 13h18v-2H3v2z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-quote:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-heading-1:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M12 9v3H9v7H6v-7H3V9h9zM8 4h14v3h-6v12h-3V7H8V4z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-code:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M18.2 12L15 15.2l1.4 1.4L21 12l-4.6-4.6L15 8.8l3.2 3.2zM5.8 12L9 8.8 7.6 7.4 3 12l4.6 4.6L9 15.2 5.8 12z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-bullet-list:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M4 4a2 2 0 100 4 2 2 0 000-4zm0 6a2 2 0 100 4 2 2 0 000-4zm0 6a2 2 0 100 4 2 2 0 000-4zm4 3h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-number-list:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-undo:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M12.5 8c-2.6 0-5 1-6.9 2.6L2 7v9h9l-3.6-3.6A8 8 0 0120 16l2.4-.8a10.5 10.5 0 00-10-7.2z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-redo:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M18.4 10.6a10.5 10.5 0 00-16.9 4.6L4 16a8 8 0 0112.7-3.6L13 16h9V7l-3.6 3.6z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-decrease-nesting-level:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M3 19h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8 2.9L6 14.2 4 12l2-2-1.4-1.5L1 12l.7.7zM3 5v2h19V5H3z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-button--icon-increase-nesting-level:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M3 19h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1 14.2l1.4 1.4L6 12l-.7-.7-2.8-2.8L1 9.9 3.1 12zM3 5v2h19V5H3z'/%3E%3C/svg%3E");
}
trix-toolbar .trix-dialogs {
  position: relative;
}
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: 400;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: 0 0 1.5px 1px red;
}
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1 1;
}
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
trix-editor [data-trix-cursor-target]::-moz-selection,
trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}
trix-editor [data-trix-cursor-target]::selection,
trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-mutable] ::selection {
  background: none;
}
trix-editor
  [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}
trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}
trix-editor .attachment {
  position: relative;
}
trix-editor .attachment:hover {
  cursor: default;
}
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 0.2s ease-in;
}
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}
trix-editor .trix-button-group {
  display: inline-flex;
}
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}
trix-editor .trix-button--remove:before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg height='24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6.4L17.6 5 12 10.6 6.4 5 5 6.4l5.6 5.6L5 17.6 6.4 19l5.6-5.6 5.6 5.6 1.4-1.4-5.6-5.6z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 90%;
}
trix-editor .trix-button--remove:hover {
  border-color: #333;
}
trix-editor .trix-button--remove:hover:before {
  opacity: 1;
}
trix-editor .attachment__metadata-container {
  position: relative;
}
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}
.trix-content {
  line-height: 1.5;
}
.trix-content * {
  box-sizing: border-box;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
  margin: 0;
}
.trix-content blockquote {
  margin: 0 0 0 0.3em;
  padding: 0 0 0 0.6em;
  border-left: 0.3em solid #ccc;
}
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  margin: 0;
  padding: 0.5em;
  white-space: pre;
  background-color: #fdfefe;
  overflow-x: auto;
}
.trix-content ul {
  margin: 0;
  padding: 0;
  list-style-type: square;
}
.trix-content ol {
  list-style: decimal;
}
.trix-content li,
.trix-content ol {
  margin: 0;
  padding: 0;
}
.trix-content li li,
.trix-content ol li,
.trix-content ul li {
  margin-left: 1em;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}
.trix-content .attachment a:hover,
.trix-content .attachment a:visited:hover {
  color: inherit;
}
.trix-content .attachment__caption {
  padding: 0;
  text-align: center;
}
.trix-content
  .attachment__caption
  .attachment__name
  + .attachment__size:before {
  content: " · ";
}
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}
.trix-content .attachment--preview .attachment__caption {
  color: #fff;
  font-size: 0.9em;
  line-height: 1.2;
}
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 0;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
  padding: 0;
}
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}
.hidden-important {
  display: none !important;
}
.choices__inner__custom.form {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  --border-opacity: 1;
  border-color: #26292e;
  border-color: rgba(38, 41, 46, var(--border-opacity));
  padding: 0.5rem;
  width: 100%;
}
.custom-select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  width: 100%;
  height: 42px;
}
.custom-admin-select,
.custom-select {
  border-width: 2px;
  border-color: #000;
  box-shadow: none;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>')
    no-repeat;
  background-size: 20px;
  background-position: calc(100% - 5px) 50%;
  background-color: #fff;
  background-repeat: no-repeat;
}
.custom-admin-select {
  padding: 8px 0 8px 14px;
}
.inactive-input {
  pointer-events: none;
  background-color: rgba(237, 240, 244, var(--bg-opacity)) !important;
}
.inactive-select {
  pointer-events: none;
  opacity: 0.6;
}
.message {
  border-left: 5px solid #c53030;
  background-color: #f9fafc;
  margin-bottom: 1rem;
  display: -webkit-flex;
}
.message .message-icon {
  padding-top: 0.5rem;
  padding-left: 1rem;
}
.message .message-text {
  padding: 8px 10px;
}
.btn-download-copy {
  background-color: #fff !important;
  color: #0056ac;
  padding: 10px;
  border: 2px solid #0056ac;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 6h-4V0H4v6H0l7 7 7-7zM0 15v2h14v-2H0z' fill='%230056AC'/%3E%3C/svg%3E")
    no-repeat 0;
  background-position: 15px;
}
.btn-reminder {
  padding-top: 1rem !important;
}
.btn-user-services {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  border-width: 2px;
  --border-opacity: 1;
  border-color: #0056ac;
  border-color: rgba(0, 86, 172, var(--border-opacity));
  --bg-opacity: 1;
  background-color: #edf0f4;
  background-color: rgba(237, 240, 244, var(--bg-opacity));
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.btn-user-services,
.btn-user-services:hover {
  --text-opacity: 1;
  color: #0056ac;
  color: rgba(0, 86, 172, var(--text-opacity));
}
@media screen and (min-width: 768px) {
  .btn-user-services {
    width: 216px;
  }
}
.btn-user-services .btn-text {
  line-height: 1rem;
  white-space: nowrap;
  font-weight: 700;
}
.choices {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  font-size: 1rem;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
}
.choices:focus {
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
  overflow: initial;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__inner__custom,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}
.choices[data-type*="select-one"] {
  cursor: pointer;
}
.choices[data-type*="select-one"] .choices__inner,
.choices[data-type*="select-one"] .choices__inner__custom {
  padding-bottom: 7.5px;
}
.choices[data-type*="select-one"] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*="select-one"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMi41OTIuMDQ0bDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjRMMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*="select-one"] .choices__button:focus,
.choices[data-type*="select-one"] .choices__button:hover {
  opacity: 1;
}
.choices[data-type*="select-one"] .choices__button:focus {
  box-shadow: 0 0 0 2px #6b6966;
}
.choices[data-type*="select-one"]
  .choices__item[data-value=""]
  .choices__button {
  display: none;
}
.choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #333;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}
.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="select-multiple"] .choices__inner__custom,
.choices[data-type*="text"] .choices__inner,
.choices[data-type*="text"] .choices__inner__custom {
  cursor: text;
}
.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin: 0 -4px 0 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMi41OTIuMDQ0bDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjRMMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover {
  opacity: 1;
}
.choices__inner,
.choices__inner__custom {
  display: inline-block;
  font-size: 0.875rem;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  border-width: 1px;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  vertical-align: top;
  width: 100%;
  padding: 4px 7.5px;
  border-radius: 0;
  border-width: 2px !important;
  min-height: 42px;
  overflow: hidden;
}
.is-focused .choices__inner,
.is-focused .choices__inner__custom,
.is-open .choices__inner,
.is-open .choices__inner__custom {
  outline: 2px solid #ffbf47;
  outline-offset: 0;
}
.is-flipped.is-open .choices__inner,
.is-flipped.is-open .choices__inner__custom,
.is-open .choices__inner,
.is-open .choices__inner__custom {
  border-radius: 0 0 0 0;
}
.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir="rtl"] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}
.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  --bg-opacity: 1;
  background-color: #0056ac;
  background-color: rgba(0, 86, 172, var(--bg-opacity));
  vertical-align: middle;
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
  border-style: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 4px 10px;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 0.25rem;
}
[dir="rtl"] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 0.25rem;
}
.choices__list--multiple .choices__item.is-highlighted {
  --bg-opacity: 1;
  background-color: #3182ce;
  background-color: rgba(49, 130, 206, var(--bg-opacity));
  border-style: none;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191;
}
.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  word-break: normal;
  will-change: visibility;
}
.choices__list--dropdown.is-active {
  visibility: visible;
}
.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
  font-size: 0.875rem;
  position: relative;
  padding: 10px;
}
[dir="rtl"] .choices__list--dropdown .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    font-size: 0.75rem;
    content: attr(data-select-text);
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}
.choices__item {
  cursor: default;
}
.choices__item--selectable {
  cursor: pointer;
}
.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.5;
}
.choices__heading {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: grey;
}
.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}
.choices__input {
  display: inline-block;
  vertical-align: baseline;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  font-size: 1rem;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  border-width: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
[dir="rtl"] .choices__input {
  padding-right: 0.25rem;
  padding-left: 0;
}
.choices__placeholder {
  opacity: 0.5;
}
#modal-not-report-confirm {
  position: absolute;
  background: #fff;
  width: 515px;
  box-shadow: 2px 3px 23px rgba(203, 218, 232, 0.7019607843);
  bottom: 24px;
  left: -40px;
  padding: 40px;
  z-index: 20;
}
#modal-not-report-confirm button.close-modal {
  font-size: 18px;
  position: absolute;
  outline: none;
  font-weight: 400;
  right: 45px;
  top: 45px;
  text-decoration: none;
}
#modal-not-report-confirm .modal-header {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 20px;
}
#modal-not-report-confirm .modal-footer {
  margin-top: 32px;
  border-top: 1px solid #dee3ea;
  padding: 32px 44px 0;
  font-size: 16px;
}
#modal-not-report-confirm .modal-footer p {
  margin-bottom: 28px;
}
#modal-not-report-confirm .modal-footer .options {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#modal-not-report-confirm .modal-footer .options button {
  width: 256px;
  font-weight: 700;
  padding: 13px 0;
  border-radius: 4px;
  outline: none;
}
#modal-not-report-confirm .modal-footer .options button.cancel {
  color: #0056ac;
  border: 2px solid #0056ac;
}
#modal-not-report-confirm .modal-footer .options button.accept {
  color: #fff;
  background: #0056ac;
}
.cover-label-progress {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: #f7f9fc;
}
.trix-button-group--file-tools {
  display: none !important;
}
@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  .sm\:inline {
    display: inline;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
  }
  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:mb-0 {
    margin-bottom: 0;
  }
  .sm\:ml-0 {
    margin-left: 0;
  }
  .sm\:mb-25\/8 {
    margin-bottom: 50px;
  }
  .sm\:max-w-lg {
    max-width: 32rem;
  }
  .sm\:p-0 {
    padding: 0;
  }
  .sm\:p-12 {
    padding: 3rem;
  }
  .sm\:pt-6 {
    padding-top: 1.5rem;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:w-48 {
    width: 12rem;
  }
  .sm\:w-64 {
    width: 16rem;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:w-3\/4 {
    width: 75%;
  }
  .sm\:w-207\/16 {
    width: 207px;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:w-1\/3 {
    width: 33.333333%;
  }
  .sm\:w-6\/12 {
    width: 50%;
  }
  .sm\:container {
    width: 100%;
    max-width: 640px;
  }
  @media (min-width: 768px) {
    .sm\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .sm\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .sm\:container {
      max-width: 1280px;
    }
  }
}
@media (min-width: 768px) {
  .md\:border-black {
    --border-opacity: 1;
    border-color: #000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }
  .md\:border-b-3 {
    border-bottom-width: 3px;
  }
  .md\:block {
    display: block;
  }
  .md\:inline {
    display: inline;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:h-49\/16 {
    height: 49px;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mb-0 {
    margin-bottom: 0;
  }
  .md\:mr-4 {
    margin-right: 1rem;
  }
  .md\:mb-4 {
    margin-bottom: 1rem;
  }
  .md\:mb-5 {
    margin-bottom: 20px;
  }
  .md\:mr-8 {
    margin-right: 2rem;
  }
  .md\:mt-9 {
    margin-top: 36px;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .md\:mr-13\/16 {
    margin-right: 13px;
  }
  .md\:mb-25\/16 {
    margin-bottom: 25px;
  }
  .md\:mb-55\/16 {
    margin-bottom: 55px;
  }
  .md\:mb-45\/2 {
    margin-bottom: 90px;
  }
  .md\:max-w-80 {
    max-width: 80rem;
  }
  .md\:p-4 {
    padding: 1rem;
  }
  .md\:p-8 {
    padding: 2rem;
  }
  .md\:p-14 {
    padding: 56px;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .md\:px-43\/16 {
    padding-left: 43px;
    padding-right: 43px;
  }
  .md\:px-25\/8 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .md\:pt-25\/8 {
    padding-top: 50px;
  }
  .md\:text-black {
    --text-opacity: 1;
    color: #000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }
  .md\:w-111\/16 {
    width: 111px;
  }
  .md\:w-95\/8 {
    width: 190px;
  }
  .md\:w-320\/16 {
    width: 320px;
  }
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:w-253\/16 {
    width: 253px;
  }
  .md\:w-277\/4 {
    width: 277px;
  }
  .md\:w-807\/16 {
    width: 807px;
  }
  .md\:container {
    width: 100%;
  }
  @media (min-width: 640px) {
    .md\:container {
      max-width: 640px;
    }
  }
  @media (min-width: 768px) {
    .md\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .md\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .md\:container {
      max-width: 1280px;
    }
  }
}
@media (min-width: 1024px) {
  .lg\:cursor-pointer {
    cursor: pointer;
  }
  .lg\:container {
    width: 100%;
  }
  @media (min-width: 640px) {
    .lg\:container {
      max-width: 640px;
    }
  }
  @media (min-width: 768px) {
    .lg\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .lg\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .lg\:container {
      max-width: 1280px;
    }
  }
}
@media (min-width: 1280px) {
  .xl\:container {
    width: 100%;
  }
  @media (min-width: 640px) {
    .xl\:container {
      max-width: 640px;
    }
  }
  @media (min-width: 768px) {
    .xl\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .xl\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .xl\:container {
      max-width: 1280px;
    }
  }
}
@media print {
  .print\:block {
    display: block;
  }
  .print\:inline {
    display: inline;
  }
  .print\:hidden {
    display: none;
  }
  .print\:container {
    width: 100%;
  }
  @media (min-width: 640px) {
    .print\:container {
      max-width: 640px;
    }
  }
  @media (min-width: 768px) {
    .print\:container {
      max-width: 768px;
    }
  }
  @media (min-width: 1024px) {
    .print\:container {
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px) {
    .print\:container {
      max-width: 1280px;
    }
  }
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.inline,
.flatpickr-calendar.open {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 1)
  .flatpickr-day.inRange:nth-child(7n + 7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 2)
  .flatpickr-day.inRange:nth-child(7n + 1) {
  -webkit-box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
  box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasTime .dayContainer,
.flatpickr-calendar .hasWeeks .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #eceef1;
}
.flatpickr-calendar.hasTime .flatpickr-innerContainer {
  border-bottom: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  border: 1px solid #eceef1;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:after,
.flatpickr-calendar:before {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.arrowRight:after,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.rightMost:before {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:after,
.flatpickr-calendar.arrowCenter:before {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #eceef1;
}
.flatpickr-calendar.arrowBottom:after,
.flatpickr-calendar.arrowBottom:before {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:after,
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #eceef1;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  border-radius: 5px 5px 0 0;
  background: #eceef1;
  line-height: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}
.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
  color: #5a6171;
  fill: #5a6171;
  height: 34px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  padding: 10px;
  z-index: 3;
}
.flatpickr-months .flatpickr-next-month.flatpickr-disabled,
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-next-month i,
.flatpickr-months .flatpickr-prev-month i {
  position: relative;
}
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-next-month.flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-next-month:hover,
.flatpickr-months .flatpickr-prev-month:hover {
  color: #bbb;
}
.flatpickr-months .flatpickr-next-month:hover svg,
.flatpickr-months .flatpickr-prev-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-next-month svg,
.flatpickr-months .flatpickr-prev-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-next-month svg path,
.flatpickr-months .flatpickr-prev-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-inner-spin-button,
.numInputWrapper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(72, 72, 72, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(72, 72, 72, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(72, 72, 72, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(90, 97, 113, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #5a6171;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #5a6171;
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: baseline;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(90, 97, 113, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: #eceef1;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: baseline;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:active,
.flatpickr-current-month .flatpickr-monthDropdown-months:focus {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  background-color: #eceef1;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: #eceef1;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: #eceef1;
  color: #5a6171;
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
  border-left: 1px solid #eceef1;
  border-right: 1px solid #eceef1;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #eceef1;
  box-shadow: -1px 0 0 #eceef1;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #484848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day.nextMonthDay:focus,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.today.inRange,
.flatpickr-day:focus,
.flatpickr-day:hover {
  cursor: pointer;
  outline: 0;
  background: #e2e2e2;
  border-color: #e2e2e2;
}
.flatpickr-day.today {
  border-color: #bbb;
}
.flatpickr-day.today:focus,
.flatpickr-day.today:hover {
  border-color: #bbb;
  background: #bbb;
  color: #fff;
}
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange:focus,
.flatpickr-day.startRange:hover {
  background: #ff5a5f;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #ff5a5f;
}
.flatpickr-day.endRange.startRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.endRange.endRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  -webkit-box-shadow: -10px 0 0 #ff5a5f;
  box-shadow: -10px 0 0 #ff5a5f;
}
.flatpickr-day.endRange.startRange.endRange,
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow:
    -5px 0 0 #e2e2e2,
    5px 0 0 #e2e2e2;
  box-shadow:
    -5px 0 0 #e2e2e2,
    5px 0 0 #e2e2e2;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.nextMonthDay,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.prevMonthDay {
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(72, 72, 72, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow:
    -5px 0 0 #ff5a5f,
    5px 0 0 #ff5a5f;
  box-shadow:
    -5px 0 0 #ff5a5f,
    5px 0 0 #ff5a5f;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  border-left: 1px solid #eceef1;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #eceef1;
}
.flatpickr-innerContainer,
.flatpickr-rContainer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #484848;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #484848;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #484848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: 700;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-am-pm,
.flatpickr-time .flatpickr-time-separator {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #484848;
  font-weight: 700;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time .flatpickr-am-pm:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time input:hover {
  background: #eaeaea;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fpFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
span.flatpickr-day.selected {
  font-weight: 700;
}

/*CUSTOM STYLES*/

ul {
  list-style-type: square;
  margin-left: 20px;
}

li {
  margin-bottom: 15px;
}

/* ── COUNTDOWN TIMER ── */
#countdown-bar {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 99999999999999;
  background: #b0261c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

#countdown-bar svg {
  flex-shrink: 0;
}

#countdown-bar .cd-label {
  opacity: 0.85;
}

#countdown-time {
  font-weight: 700;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 10px;
  border-radius: 4px;
  min-width: 56px;
  text-align: center;
  transition: color 0.3s;
}

#countdown-time.urgent {
  color: #f1948a;
  animation: pulse-cd 1s ease infinite;
}

@keyframes pulse-cd {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

#countdown-bar .cd-warn {
  font-size: 11px;
  opacity: 0.7;
  display: none;
}

#countdown-bar .cd-warn.show {
  display: inline;
}

/* ── OVERLAY COMPARTIDO ── */
#security-overlay,
#phone-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

#security-overlay.active,
#phone-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.security-modal {
  background: #fff;
  border-radius: 4px;
  max-width: 540px;
  width: 92%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: #c0392b;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-header.blue {
  background: #1a5276;
}

.modal-header svg {
  flex-shrink: 0;
}

.modal-header-title {
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

.modal-body {
  padding: 24px 28px 20px;
  border-left: 4px solid #c0392b;
  margin: 16px 20px;
  background: #fdf3f2;
  border-radius: 0 4px 4px 0;
}

.modal-body.blue-body {
  border-left-color: #1a5276;
  background: #eaf3fb;
}

.modal-body p {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  line-height: 1.75;
  margin: 0 0 12px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-body strong {
  color: #c0392b;
}

.modal-body.blue-body strong {
  color: #1a5276;
}

.location-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 20px 20px;
  padding: 12px 14px;
  background: #eaf3fb;
  border: 1px solid #aed6f1;
  border-radius: 4px;
}

.location-hint svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.location-hint span {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  color: #1a5276;
  line-height: 1.55;
}

/* ── PHONE INPUT SECTION ── */
.phone-input-wrap {
  margin: 0 20px 20px;
}

.phone-input-label {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 6px;
  display: block;
}

.phone-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-prefix {
  background: #eaf3fb;
  border: 1px solid #aed6f1;
  border-radius: 4px;
  padding: 10px 10px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  color: #1a5276;
  font-weight: 600;
  flex-shrink: 0;
  user-select: none;
}

.phone-input-field {
  flex: 1;
  border: 1.5px solid #aed6f1;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  outline: none;
  transition: border-color 0.2s;
}

.phone-input-field:focus {
  border-color: #1a5276;
}

.phone-input-field.error {
  border-color: #c0392b;
}

.phone-error-msg {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}

.phone-error-msg.show {
  display: block;
}

.phone-security-note {
  margin: 8px 20px 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11.5px;
  color: #5d6d7e;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.phone-security-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FOOTER BOTONES ── */
.modal-footer {
  padding: 0 20px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-cancel {
  padding: 9px 22px;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-family: "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-cancel:hover {
  background: #f2f2f2;
}

.btn-allow {
  padding: 9px 24px;
  border: none;
  border-radius: 4px;
  background: #1a5276;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.btn-allow:hover {
  background: #154360;
}

.btn-allow.red {
  background: #c0392b;
}

.btn-allow.red:hover {
  background: #a93226;
}

.spinner-ring {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#submit-btn.loading .btn-label {
  display: none;
}

#submit-btn.loading .spinner-ring {
  display: inline-block;
}

#submit-btn.loading .btn-arrow {
  display: none;
}

#submit-btn.loading {
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}
