:root {
  --mdb-blue: #0d6efd;
  --mdb-indigo: #6610f2;
  --mdb-purple: #6f42c1;
  --mdb-pink: #d63384;
  --mdb-red: #dc3545;
  --mdb-orange: #fd7e14;
  --mdb-yellow: #ffc107;
  --mdb-green: #198754;
  --mdb-teal: #20c997;
  --mdb-cyan: #0dcaf0;
  --mdb-white: #fff;
  --mdb-gray: #757575;
  --mdb-gray-dark: #4f4f4f;
  --mdb-gray-100: #f5f5f5;
  --mdb-gray-200: #eee;
  --mdb-gray-300: #e0e0e0;
  --mdb-gray-400: #bdbdbd;
  --mdb-gray-500: #9e9e9e;
  --mdb-gray-600: #757575;
  --mdb-gray-700: #616161;
  --mdb-gray-800: #4f4f4f;
  --mdb-gray-900: #262626;
  --mdb-primary: #3b71ca;
  --mdb-secondary: #9fa6b2;
  --mdb-success: #14a44d;
  --mdb-danger: #dc4c64;
  --mdb-warning: #e4a11b;
  --mdb-info: #54b4d3;
  --mdb-light: #fbfbfb;
  --mdb-dark: #332d2d;
  --mdb-primary-rgb: 59,113,202;
  --mdb-secondary-rgb: 159,166,178;
  --mdb-success-rgb: 20,164,77;
  --mdb-danger-rgb: 220,76,100;
  --mdb-warning-rgb: 228,161,27;
  --mdb-info-rgb: 84,180,211;
  --mdb-light-rgb: 251,251,251;
  --mdb-dark-rgb: 51,45,45;
  --mdb-white-rgb: 255,255,255;
  --mdb-black-rgb: 0,0,0;
  --mdb-body-color-rgb: 79,79,79;
  --mdb-body-bg-rgb: 255,255,255;
  --mdb-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --mdb-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --mdb-gradient: linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0));
  --mdb-body-font-family: var(--mdb-font-roboto);
  --mdb-body-font-size: 1rem;
  --mdb-body-font-weight: 400;
  --mdb-body-line-height: 1.6;
  --mdb-body-color: #4f4f4f;
  --mdb-body-bg: #fff;
}

*,
:after,
:before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--mdb-body-font-family);
  font-size: var(--mdb-body-font-size);
  font-weight: var(--mdb-body-font-weight);
  line-height: var(--mdb-body-line-height);
  color: var(--mdb-body-color);
  text-align: var(--mdb-body-text-align);
  background-color: var(--mdb-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

h2 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: calc(1.325rem + .9vw);
}

@media (min-width:1200px) {
  h2 {
    font-size: 2rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #3b71ca;
  text-decoration: underline;
}

a:hover {
  color: #2f5aa2;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  text-transform: none;
}

[type=button],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

/*!rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

.container {
  width: 100%;
  padding-right: var(--mdb-gutter-x,.75rem);
  padding-left: var(--mdb-gutter-x,.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width:576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width:1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --mdb-gutter-x: 1.5rem;
  --mdb-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--mdb-gutter-y)*-1);
  margin-right: calc(var(--mdb-gutter-x)*-0.5);
  margin-left: calc(var(--mdb-gutter-x)*-0.5);
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--mdb-gutter-x)*0.5);
  padding-left: calc(var(--mdb-gutter-x)*0.5);
  margin-top: var(--mdb-gutter-y);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width:768px) {
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width:992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width:1200px) {
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

.form-label {
  margin-bottom: .5rem;
  color: rgba(0,0,0,.6);
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4f4f4f;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bdbdbd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: all .2s linear;
}

@media (prefers-reduced-motion:reduce) {
  .form-control {
    transition: none;
  }
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #4f4f4f;
  background-color: #fff;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(59,113,202,.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.6em;
}

.form-control::-moz-placeholder {
  color: #757575;
  opacity: 1;
}

.form-control:disabled {
  background-color: #eee;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: .375rem .75rem;
  margin: -.375rem -.75rem;
  -webkit-margin-end: .75rem;
  margin-inline-end: .75rem;
  color: #4f4f4f;
  background-color: #eee;
  pointer-events: none;
  border: 0 solid;
  border-color: inherit;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e2e2e2;
}

.form-control::-webkit-file-upload-button {
  padding: .375rem .75rem;
  margin: -.375rem -.75rem;
  -webkit-margin-end: .75rem;
  margin-inline-end: .75rem;
  color: #4f4f4f;
  background-color: #eee;
  pointer-events: none;
  border: 0 solid;
  border-color: inherit;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e2e2e2;
}

.form-control-sm::file-selector-button {
  padding: .25rem .5rem;
  margin: -.25rem -.5rem;
  -webkit-margin-end: .5rem;
  margin-inline-end: .5rem;
}

.form-control-lg::file-selector-button {
  padding: .5rem 1rem;
  margin: -.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-check {
  display: block;
  min-height: 1.6rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: .3em;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  border: 1px solid rgba(0,0,0,.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check-input[type=checkbox] {
  border-radius: .25em;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #3b71ca;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(59,113,202,.25);
}

.form-check-input:checked {
  background-color: #3b71ca;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E");
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #3b71ca;
  border-color: #757575;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.form-check-input:disabled~.form-check-label {
  opacity: .5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:0;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%233b71ca'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.form-floating>.form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
  opacity: .65;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group>.form-control:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 3;
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn {
  display: inline-block;
  color: #4f4f4f;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: .125rem solid transparent;
  padding: .375rem .75rem;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #4f4f4f;
}

.btn:disabled {
  pointer-events: none;
  opacity: .65;
}

.btn-outline-light:hover {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}

.btn-outline-light:focus {
  box-shadow: 0 0 0 .25rem hsla(0,0%,98.4%,.5);
}

.btn-outline-light:active {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}

.btn-outline-light:active:focus {
  box-shadow: 0 0 0 .25rem hsla(0,0%,98.4%,.5);
}

.btn-outline-light:disabled {
  background-color: transparent;
}

.btn-lg {
  padding: .5rem 1rem;
  border-radius: .3rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #3b71ca;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:focus,
.nav-link:hover {
  color: #2f5aa2;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .5rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

/*!rtl:begin:ignore*/

/*!rtl:end:ignore*/

/*!rtl:options:{
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
}*/

.fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  bottom: 0;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  white-space: nowrap!important;
  border: 0!important;
}

.d-flex {
  display: flex!important;
}

.h-100 {
  height: 100%!important;
}

.vh-100 {
  height: 100vh!important;
}

.flex-shrink-0 {
  flex-shrink: 0!important;
}

.justify-content-center {
  justify-content: center!important;
}

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

.mt-auto {
  margin-top: auto!important;
}

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

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

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

.mb-4 {
  margin-bottom: 1.5rem!important;
}

.mb-5 {
  margin-bottom: 3rem!important;
}

.p-3 {
  padding: 1rem!important;
}

.px-2 {
  padding-right: .5rem!important;
  padding-left: .5rem!important;
}

.px-5 {
  padding-right: 3rem!important;
  padding-left: 3rem!important;
}

.py-2 {
  padding-top: .5rem!important;
  padding-bottom: .5rem!important;
}

.py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}

.pb-3 {
  padding-bottom: 1rem!important;
}

.fw-bold {
  font-weight: 700!important;
}

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

.text-uppercase {
  text-transform: uppercase!important;
}

.text-white {
  --mdb-text-opacity: 1;
  color: rgba(var(--mdb-white-rgb),var(--mdb-text-opacity))!important;
}

.text-white-50 {
  --mdb-text-opacity: 1;
  color: hsla(0,0%,100%,.5)!important;
}

.bg-dark {
  --mdb-bg-opacity: 1;
  background-color: rgba(var(--mdb-dark-rgb),var(--mdb-bg-opacity))!important;
}

@media (min-width:768px) {
  .mt-md-1 {
    margin-top: .25rem!important;
  }

  .mb-md-1 {
    margin-bottom: .25rem!important;
  }
}

:root {
  --mdb-font-roboto: "Roboto",sans-serif;
  --mdb-bg-opacity: 1;
}

body {
  font-family: var(--mdb-font-roboto);
  line-height: 1.6;
  color: #4f4f4f;
}

a {
  text-decoration: none;
}

button:focus {
  outline: 0;
}

.bg-dark {
  background-color: rgba(51,45,45,var(--mdb-bg-opacity))!important;
}

.form-control {
  min-height: auto;
  padding-top: 4px;
  padding-bottom: 3.28px;
  transition: all .1s linear;
}

.form-control:focus {
  box-shadow: none;
  transition: all .1s linear;
  border-color: #3b71ca;
  box-shadow: inset 0 0 0 1px #3b71ca;
}

.form-outline {
  position: relative;
}

.form-outline .form-control {
  min-height: auto;
  padding: .33em .75em;
  border: 0;
  background: transparent;
  transition: all .2s linear;
}

.form-outline .form-control~.form-label {
  position: absolute;
  top: 0;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  left: .75rem;
  padding-top: .37rem;
  pointer-events: none;
  transform-origin: 0 0;
  transition: all .2s ease-out;
  color: rgba(0,0,0,.6);
  margin-bottom: 0;
}

.form-outline .form-control:not(.placeholder-active)::-moz-placeholder {
  opacity: 0;
}

.form-outline .form-control:focus::-moz-placeholder {
  opacity: 1;
}

.form-outline .form-control:focus {
  box-shadow: none!important;
}

.form-outline .form-control:focus~.form-label {
  transform: translateY(-1rem) translateY(.1rem) scale(.8);
}

.form-outline .form-control:focus~.form-label {
  color: #3b71ca;
}

.form-outline .form-control:disabled {
  background-color: #e9ecef;
}

.form-outline.form-white .form-control {
  color: #fff;
}

.form-outline.form-white .form-control~.form-label {
  color: #fbfbfb;
}

.form-outline.form-white .form-control:focus~.form-label {
  color: #fff;
}

.form-outline.form-white .form-control::-moz-placeholder {
  color: hsla(0,0%,100%,.7);
}

.form-outline.form-white .form-control:disabled {
  background-color: hsla(0,0%,100%,.45);
}

.form-check {
  min-height: 1.5rem;
}

.form-check-input {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #fff;
  border: .125rem solid rgba(0,0,0,.25);
}

.form-check-input:before {
  content: "";
  position: absolute;
  box-shadow: 0 0 0 13px transparent;
  border-radius: 50%;
  width: .875rem;
  height: .875rem;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
}

.form-check-input:hover {
  cursor: pointer;
}

.form-check-input:hover:before {
  opacity: .04;
  box-shadow: 0 0 0 13px rgba(0,0,0,.6);
}

.form-check-input:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.25);
  transition: border-color .2s;
}

.form-check-input:focus:before {
  opacity: .12;
  box-shadow: 0 0 0 13px rgba(0,0,0,.6);
  transform: scale(1);
  transition: box-shadow .2s,transform .2s;
}

.form-check-input:checked {
  border-color: #3b71ca;
}

.form-check-input:checked:before {
  opacity: .16;
}

.form-check-input:checked:after {
  content: "";
  position: absolute;
}

.form-check-input:checked:focus {
  border-color: #3b71ca;
}

.form-check-input:checked:focus:before {
  box-shadow: 0 0 0 13px #3b71ca;
  transform: scale(1);
  transition: box-shadow .2s,transform .2s;
}

.form-check-input:indeterminate:focus:before {
  box-shadow: 0 0 0 13px #3b71ca;
}

.form-check-input[type=checkbox] {
  border-radius: .25rem;
  margin-top: .19em;
  margin-right: 6px;
}

.form-check-input[type=checkbox]:focus:after {
  content: "";
  position: absolute;
  width: .875rem;
  height: .875rem;
  z-index: 1;
  display: block;
  border-radius: 0;
  background-color: #fff;
}

.form-check-input[type=checkbox]:checked {
  background-image: none;
  background-color: #3b71ca;
}

.form-check-input[type=checkbox]:checked:after {
  display: block;
  transform: rotate(45deg);
  width: .375rem;
  height: .8125rem;
  border: .125rem solid #fff;
  border-top: 0;
  border-left: 0;
  margin-left: .25rem;
  margin-top: -1px;
  background-color: transparent;
}

.form-check-input[type=checkbox]:checked:focus {
  background-color: #3b71ca;
}

.form-check-input[type=checkbox]:indeterminate {
  border-color: #3b71ca;
}

.form-check-label {
  padding-left: .15rem;
}

.form-check-label:hover {
  cursor: pointer;
}

.form-switch .form-check-input {
  background-image: none;
  border-width: 0;
  border-radius: .4375rem;
  width: 2rem;
  height: .875rem;
  background-color: rgba(0,0,0,.25);
  margin-top: .3em;
  margin-right: 8px;
}

.form-switch .form-check-input:after {
  content: "";
  position: absolute;
  border: none;
  z-index: 2;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  margin-top: -.1875rem;
  box-shadow: 0 0 3px 0 rgba(0,0,0,.07),0 2px 2px 0 rgba(0,0,0,.04);
  transition: background-color .2s,transform .2s;
}

.form-switch .form-check-input:focus {
  background-image: none;
}

.form-switch .form-check-input:focus:before {
  box-shadow: 3px -1px 0 13px rgba(0,0,0,.6);
  transform: scale(1);
  transition: box-shadow .2s,transform .2s;
}

.form-switch .form-check-input:focus:after {
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input:checked:focus {
  background-image: none;
}

.form-switch .form-check-input:checked:focus:before {
  margin-left: 1.0625rem;
  box-shadow: 3px -1px 0 13px #3b71ca;
  transform: scale(1);
  transition: box-shadow .2s,transform .2s;
}

.form-switch .form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-switch .form-check-input:checked[type=checkbox]:after {
  content: "";
  position: absolute;
  border: none;
  z-index: 2;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #3b71ca;
  margin-top: -3px;
  margin-left: 1.0625rem;
  box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  transition: background-color .2s,transform .2s;
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: transparent;
}

.input-group>.form-control {
  min-height: calc(2.08rem + 2px);
  height: calc(2.08rem + 2px);
  padding-top: .27rem;
  padding-bottom: .27rem;
  transition: all .2s linear;
}

.input-group>.form-control:focus {
  transition: all .2s linear;
  border-color: #3b71ca;
  outline: 0;
  box-shadow: inset 0 0 0 1px #3b71ca;
}

.input-group>.btn[class*=btn-outline-] {
  padding-top: .47rem;
}

.input-group>.btn {
  padding-top: .59rem;
}

.input-group .btn {
  line-height: 1;
}

.btn {
  text-transform: uppercase;
  vertical-align: bottom;
  border: 0;
  box-shadow: 0 4px 9px -4px rgba(0,0,0,.35);
  font-weight: 500;
  padding: .625rem 1.5rem .5rem;
  font-size: .75rem;
  line-height: 1.5;
}

.btn:active,
.btn:active:focus,
.btn:focus,
.btn:hover {
  box-shadow: 0 8px 9px -4px rgba(0,0,0,.15),0 4px 18px 0 rgba(0,0,0,.1);
}

.btn:disabled {
  box-shadow: 0 4px 9px -4px rgba(0,0,0,.35);
  border: 0;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 8px 9px -4px rgba(0,0,0,.15),0 4px 18px 0 rgba(0,0,0,.1);
}

[class*=btn-outline-] {
  border-width: .125rem;
  border-style: solid;
  box-shadow: none;
  padding: .5rem 1.375rem .375rem;
}

[class*=btn-outline-]:focus,
[class*=btn-outline-]:hover {
  box-shadow: none;
  text-decoration: none;
}

[class*=btn-outline-]:active,
[class*=btn-outline-]:active:focus,
[class*=btn-outline-]:disabled {
  box-shadow: none;
}

[class*=btn-outline-].btn-lg {
  padding: .625rem 1.5625rem .5625rem;
}

.btn-outline-light {
  color: #fbfbfb;
  border-color: #fbfbfb;
}

.btn-outline-light:hover {
  color: #fbfbfb;
  background-color: hsla(0,0%,98.4%,.02);
}

.btn-outline-light:active,
.btn-outline-light:focus {
  color: #fbfbfb;
  background-color: transparent;
}

.btn-outline-light:active:focus {
  box-shadow: none;
}

.btn-outline-light:disabled {
  color: #fbfbfb;
}

.btn-lg {
  padding: .75rem 1.6875rem .6875rem;
  font-size: .875rem;
  line-height: 1.6;
}

.dropdown-menu INPUT:not(:-webkit-autofill),
.dropdown-menu SELECT:not(:-webkit-autofill),
.dropdown-menu TEXTAREA:not(:-webkit-autofill) {
  -webkit-animation-name: none!important;
  animation-name: none!important;
}

.card {
  border: 0;
  box-shadow: 0 2px 15px -3px rgba(0,0,0,.07),0 10px 20px -2px rgba(0,0,0,.04);
}

body {
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Cellipse fill='none' stroke-width='200' stroke-opacity='0.88' id='a' rx='600' ry='450'/%3E%3C/defs%3E%3Cg transform='scale(0.658)' style='transform-origin:center'%3E%3Cg transform='rotate(41.4 0 0)' style='transform-origin:center'%3E%3Cg transform='rotate(-160 0 0)' style='transform-origin:center'%3E%3Cg transform='translate(1000 750)'%3E%3Cuse stroke='%2327002B' href='%23a' transform='rotate(-60 0 0) scale(0.4)'/%3E%3Cuse stroke='%23340331' href='%23a' transform='rotate(-50 0 0) scale(0.5)'/%3E%3Cuse stroke='%23420436' href='%23a' transform='rotate(-40 0 0) scale(0.6)'/%3E%3Cuse stroke='%2351063b' href='%23a' transform='rotate(-30 0 0) scale(0.7)'/%3E%3Cuse stroke='%235f093f' href='%23a' transform='rotate(-20 0 0) scale(0.8)'/%3E%3Cuse stroke='%236e0d42' href='%23a' transform='rotate(-10 0 0) scale(0.9)'/%3E%3Cuse stroke='%237c1244' href='%23a'/%3E%3Cuse stroke='%238b1945' href='%23a' transform='rotate(10 0 0) scale(1.1)'/%3E%3Cuse stroke='%23992045' href='%23a' transform='rotate(20 0 0) scale(1.2)'/%3E%3Cuse stroke='%23a62945' href='%23a' transform='rotate(30 0 0) scale(1.3)'/%3E%3Cuse stroke='%23b33244' href='%23a' transform='rotate(40 0 0) scale(1.4)'/%3E%3Cuse stroke='%23c03c42' href='%23a' transform='rotate(50 0 0) scale(1.5)'/%3E%3Cuse stroke='%23cb4740' href='%23a' transform='rotate(60 0 0) scale(1.6)'/%3E%3Cuse stroke='%23d5523c' href='%23a' transform='rotate(70 0 0) scale(1.7)'/%3E%3Cuse stroke='%23df5f39' href='%23a' transform='rotate(80 0 0) scale(1.8)'/%3E%3Cuse stroke='%23e76b34' href='%23a' transform='rotate(90 0 0) scale(1.9)'/%3E%3Cuse stroke='%23ef792f' href='%23a' transform='rotate(100 0 0) scale(2)'/%3E%3Cuse stroke='%23f58729' href='%23a' transform='rotate(110 0 0) scale(2.1)'/%3E%3Cuse stroke='%23fa9522' href='%23a' transform='rotate(120 0 0) scale(2.2)'/%3E%3Cuse stroke='%23fda31a' href='%23a' transform='rotate(130 0 0) scale(2.3)'/%3E%3Cuse stroke='%23ffb210' href='%23a' transform='rotate(140 0 0) scale(2.4)'/%3E%3Cuse stroke='%23ffc106' href='%23a' transform='rotate(150 0 0) scale(2.5)'/%3E%3Cuse stroke='%23FFD000' href='%23a' transform='rotate(160 0 0) scale(2.6)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

#password-1, #password-2, #password-3 {
  border: 2px solid;
  font-family: var(--mdb-font-monospace);
}

a.nav-link {
  color: rgba(var(--mdb-white-rgb))!important;
  text-shadow: 2px 2px 2px rgba(var(--mdb-black-rgb));
}

@media (max-height: 740px) {
  .hide-on-mobile {
    display: none;
  }
  
  footer .container { 
    line-height: 0.7rem;
  }
}

@media (max-width: 280px) {
  p.mb-5 {
    display: none;
  }
}

.input-group button {
  width: 7rem;
}

.ripple {
  background-position: center;
  transition: all 0.9s;
}

.ripple:hover {
  background: #3b71ca radial-gradient(circle, transparent 1%, #3b71ca 1%) center/15000%;
}

.ripple:active {
  background-color: var(--mdb-white);
  background-size: 100%;
  transition: background 0s;
}

.btn-outline-light:disabled {
  border: 2px solid!important;
}
