.mt025 {
  margin-top: 0.25rem !important;
}

.mt05 {
  margin-top: 0.5rem !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mr025 {
  margin-right: 0.25rem !important;
}

.ml025 {
  margin-left: 0.25rem !important;
}

.ml05 {
  margin-left: 0.5rem !important;
}

.ml1 {
  margin-left: 1rem !important;
}

.mr05 {
  margin-right: 0.5rem !important;
}

.mr2 {
  margin-right: 2rem !important;
}

.pl1 {
  padding-left: 1rem !important;
}

.pb4 {
  padding-bottom: 4rem !important;
}

.fw-bold {
  font-weight: bold;
}

.fs-sm {
  font-size: 0.9rem !important;
}

.fs-lg {
  font-size: 1.1rem !important;
}

.fs-xl {
  font-size: 1.25rem !important;
}

.fs-2xl {
  font-size: 1.5rem !important;
}

.fs-3xl {
  font-size: 2rem !important;
}

.txt-center {
  text-align: center !important;
}

.txt-right {
  text-align: right !important;
}

.w0 {
  width: 0 !important;
}

.w100 {
  width: 100% !important;
}

.color-primary {
  color: #e09900 !important;
}

.color-light {
  color: #666666 !important;
}

.color-light2 {
  color: #8c8c8c !important;
}

.color-red {
  color: #db222a !important;
}

.color-green {
  color: #53b117 !important;
}

.bg-white {
  background: #ffffff;
}

.bg-light {
  background: rgb(255, 246.9174107143, 229.5);
}

.bg-light2 {
  background: rgb(242.25, 242.25, 242.25);
}

.flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.min-width-content {
  min-width: fit-content;
}

html,
body {
  height: 100%;
  min-width: 100%;
}

body {
  margin: 0;
  padding: 0;
}

body,
input,
textarea,
button {
  font-family: "Nunito", Helvetica, Arial, Lucida, sans-serif;
  font-style: normal;
  line-height: 1.5;
  color: #3a3a3a;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.25;
  color: #3a3a3a;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

em {
  font-style: normal;
}

::backdrop {
  background: #000000;
  opacity: 0.5;
}

dialog {
  max-width: 35rem;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.15);
  padding: 0;
}
dialog .dialog-wrapper {
  position: relative;
  padding: 2rem;
}
dialog .dialog-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
dialog .dialog-closeButton {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 2rem;
  top: 1.75rem;
  width: 1.5rem;
  height: 1.5rem;
  fill: #666666;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
}
dialog .dialog-closeButton:hover {
  opacity: 1;
  background: none;
}
dialog .dialog-content {
  line-height: 1.75;
}
dialog .dialog-actions {
  margin-top: 1.5rem;
}
dialog .dialog-success {
  text-align: center;
}
dialog .dialog-success img {
  width: 5rem;
  height: 5rem;
}
dialog .dialog-success h3 {
  color: #53b117;
}

.loader {
  width: 1em;
  height: 1em;
  border: 0.15em solid;
  border-color: currentColor transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

a {
  color: #005fd8;
  transition: color 0.25s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: rgb(88.5, 161.7291666667, 255);
}
a.disabled {
  color: #b8b8b8;
  cursor: not-allowed;
}

hr {
  border: none;
  border-top: 1px solid #eaeaea;
}

pre {
  white-space: break-spaces;
}

.wrapper {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
    width: min(1120px, 92vw);
  }
}
.wrapper.wrapper-creator {
  display: flex;
  flex-direction: column;
}

input[type=text],
button,
.button,
select,
textarea {
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
}

input[type=text],
textarea {
  width: 20rem;
}

textarea {
  resize: none;
  display: block;
}

label input[type=checkbox],
label input[type=radio] {
  margin: 0 0.25rem 0 0;
}

.button,
button,
.button-ghost {
  padding: 0.5rem 1rem;
  cursor: pointer;
  background-color: #e09900;
  border: none;
  transition: background-color 0.25s ease-in-out;
}
.button .loader,
button .loader,
.button-ghost .loader {
  top: 0.15rem;
  position: relative;
  margin-left: 0.5rem;
}

.button,
button {
  border-radius: 0.5rem;
  background-color: #e09900;
  color: #ffffff !important;
}
.button:hover,
button:hover {
  background-color: rgb(249.5, 170.4174107143, 0);
}

.button-ghost {
  background-color: transparent;
  color: #666666 !important;
}
.button-ghost:hover {
  background-color: #ececec;
}

.form-input {
  margin-bottom: 1rem;
}

.form-input-title {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.form-error {
  color: #db222a;
  margin: 0.25rem 0;
}

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #e5e7eb;
  z-index: 500;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.nav__links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.nav__links a {
  color: #4b5563;
  font-size: 0.9rem;
}
@media (min-width: 650px) {
  .nav__links a {
    font-size: 0.95rem;
  }
}
.nav__links a:hover {
  color: #111827;
}
.nav .logo {
  display: none;
}
.nav .logo-small {
  display: flex;
}
.nav .logo-small img {
  width: 35px;
  height: 35px;
}
@media (min-width: 650px) {
  .nav .logo {
    display: flex;
  }
  .nav .logo img {
    height: 20px;
  }
  .nav .logo-small {
    display: none;
  }
}
@media (min-width: 800px) {
  .nav .logo img {
    height: 25px;
  }
}

footer {
  background: #383838;
  color: #ffffff;
  padding: 1rem;
}
@media (min-width: 960px) {
  footer {
    margin-top: 2rem;
  }
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 800px) {
  footer .wrapper {
    flex-direction: row;
  }
}
footer .wrapper .footer-links {
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
}
footer .wrapper .footer-links a {
  color: #ffffff;
}

.paymentMethods {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  background: #f6f6f6;
  margin: 0;
  padding: 1em;
  grid-gap: 1rem;
}
.paymentMethods li {
  height: 100%;
}
.paymentMethods li label {
  height: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #ffffff;
  border: 0.2rem solid #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  transition: border-color 0.25s ease-in-out;
}
.paymentMethods li label img {
  max-height: 3.5rem;
}
.paymentMethods li label input {
  visibility: hidden;
  position: absolute;
}
.paymentMethods li label:hover {
  border-color: #ececec;
}
.paymentMethods li label:has(input:checked) {
  border-color: #8c8c8c;
}

table {
  border-spacing: 0;
}
table tr,
table th,
table td {
  margin: 0;
  padding: 0;
}
table td,
table th {
  vertical-align: top;
  padding: 0.5em 1em;
}
table th {
  text-align: left;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #666666;
  font-weight: normal;
  font-size: 0.9rem;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
table tr:nth-child(2n) td {
  background-color: #ececec;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}

.notification {
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
}
.notification.notification-success {
  border: 1px solid #53b117;
  background: #e8ffda;
}
.notification.notification-error {
  color: #db222a;
  border: 1px solid #db222a;
  background: #ffdada;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.25rem;
  padding: 1rem;
  margin: 1rem -1rem -1rem -1rem;
}
.documents-grid .document-grid-card {
  background: white;
  border: 1px solid #dadada;
  border-radius: 0.25rem;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}
.documents-grid .document-grid-card .document-grid-card-icon {
  position: absolute;
  font-size: 6rem;
  opacity: 0.05;
  right: 0.5rem;
  top: 1.5rem;
}
.documents-grid .document-grid-card hr {
  margin: 1.25rem 0;
}
.documents-grid .document-grid-card ul {
  list-style-type: none;
  margin: 1rem 0 1rem 0;
  padding: 0;
}
.documents-grid .document-grid-card ul li {
  display: flex;
  margin: 0.25rem 0;
}
.documents-grid .document-grid-card ul li span {
  width: 50%;
}
.documents-grid .document-grid-card ul li span:last-child {
  text-align: right;
}

.no-data-info {
  border: 1px solid #dadada;
  border-radius: 0.25rem;
  padding: 2rem 1rem;
  text-align: center;
  color: #666666;
}

.success-info {
  text-align: center;
  max-width: 35rem;
  margin: auto;
}
.success-info .icon {
  font-size: 6rem;
}

/*# sourceMappingURL=base.css.map */
