* {
  font-family: Arial, Helvetica, sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  color: white;
  font-size: 2em;
  text-align: center;
  padding: 0.2em 0;
  font-weight: 700;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  color: white;
  text-align: center;
  padding: 0.2em 1em;
  display: flex;
  justify-content: space-between;
}

.hfcolr {
  background-color: rgb(248, 136, 51);
}

.cthome {
  font-size: 0.8em;
  margin-top: -0.39em;
}

.xblock {
  margin-top: 4.2em;
}

.cfbold {
  font-weight: 700;
}

.c130em {
  font-size: 1.30em;
}

.w-100 {
  width: 100%;
}

.cthead {
  background-color: cornflowerblue;
}

.xheig2 {
  height: 2em;
}

.cstart {
  text-align: start;
}

.c--end {
  text-align: end;
}

.cslbtn {
  font-weight: 700;
  background-color: #6565c5;
  color: white;
  border: 1px solid gray;
  border-radius: 0.5em;
  height: 3em;
  margin: 0.3em 0;
}

.cbgrgr {
  background-color: gainsboro;
}

.cbgrwh {
  background-color: rgb(187, 239, 238);
}

.cintip {
  border: 1px solid gray;
  border-radius: 0.3em;
  margin-top: 1em;
  padding: 0.5em;
  color: rgb(252, 75, 75);
}

.tipctn {
  font-size: 15px;
  text-indent: -17px;
  margin-left: 11px;
}

.px-1 {
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.mb-2 {
  margin-bottom: 0.5em;
}

#iscanb {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cround {
  border-radius: 0.3em;
}

#iparbl {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f2f6f8;
  z-index: 1;
  padding: 0.5em;
  transform: scale(0);
}

.cssopn {
  transform-origin: center;
  animation: sssopn 0.2s forwards;
}

@keyframes sssopn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.csscls {
  transform-origin: center;
  animation: ssscls 0.2s forwards;
}

@keyframes ssscls {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.c__use {
  margin-top: 2.7em;
  padding: 0.2em;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
}

.crvblc {
  overflow-y: auto;
  background-color: white;
  padding: 0.5em;
}

.cprnam {
  font-size: 1.3em;
}

.cparcl {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8em;
}

.cparbt {
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  padding: 0.38em 0em;
  background-color: #0d6efd;
  border: 0;
  width: 7.5em;
}

.cpevcl {
  position: absolute;
  bottom: 4.2em;
}

.pe-none {
  pointer-events: none;
}

.cpevbt {
  color: rgb(0, 0, 0);
  font-size: 1.2em;
  font-weight: 600;
  padding: 0.38em 1.8em;
  background-color: #ffffff;
  border: 1px solid #0d6efd;
  width: 7.5em;
}

.chltit {
  /* color: rgba(128, 128, 128, 0.89);
  font-weight: 600; */
}

#iparbl table tr {
  height: 2em;
}

#irdbox {
  position: absolute;
  border: 2px solid darkgray;
  width: 18em;
  height: 18em;
}

.d-none {
  display: none !important;
}

.crsblk {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.comfin {
  background-color: #2196f8;
  color: white;
  font-size: 1.3em;
  font-weight: 600;
  padding: 0.3em 1em;
  margin-bottom: 2em;
}

#iparsd {
  height: 2.2em;
}

button:disabled {
  background-color: light-dark(rgba(91, 144, 241, 0.824), rgba(19, 1, 1, 0.3));
  color: light-dark(rgba(255, 255, 255, 0.617), rgba(255, 255, 255, 0.3));
  border-color: light-dark(rgba(50, 132, 239, 0.3), rgba(195, 195, 195, 0.3));
}

#ilload {
  position: absolute;
  left: 0;
  bottom: 19%;
  right: 0;
  background: #02020287;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 1.5em;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #ffffff #0000;
  animation: l1 1s infinite;
}

@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}

.cnotif {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10010;
  background-color: #0000006e;
}

.cmodal {
  position: absolute;
  transform-origin: top;
  width: 100%;
  transform: translate(0%, 90%);
  animation: smodal 0.3s forwards;
}

@keyframes smodal {
  0% {
    top: 0;
    opacity: 0;
  }

  100% {
    top: 1em;
    opacity: 1;
  }
}

.cmsblk {
  background-color: white;
  margin: auto 1em;
  border-radius: 0.5em;
  padding: 0 0.3em;
}

.border-bottom {
  border-bottom: 2px solid ghostwhite;
}

.cmsbtn {
  display: flex;
  justify-content: end;
  padding: 0.6em;
}

.cnotex {
  font-size: 1.2em;
  padding: 0.5em 0.5em;
}

.cnoten {
  padding: 0.8em 0.5em;
}

.c095tx {
  font-size: 0.95rem;
}

.ctitle {
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
}

.fw-bold {
  font-weight: 700;
}

.covfly {
  overflow-y: auto;
}

.cmy002 {
  margin-top: .2em;
  margin-bottom: .2em;
}

.cimgbl {
  padding: .5em 2em;
}

.cimgmi {
  width: 100%;
  height: 100%;
  border: 1px solid gainsboro;
  border-radius: 0.5em;
}

.center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.2em;
}

.mt-2 {
  margin-top: 0.5em;
}

.ccinfo {
  border: 1px solid red;
  padding: 0.5em;
}

.condit {
  padding: 0 0.5em;
  border: 2px solid gainsboro;
  border-radius: 0.5em;
  background-color: rgb(235, 225, 225);
  overflow-x: hidden;
}

pre {
  margin: 0.5em 0 !important;
  white-space: pre-wrap;
  font-family: var(--bs-body-font-family) !important;
}

#idevbl {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#itmtid {
  position: fixed;
  z-index: 10;
  right: 0.5rem;
  top: 4.5em;
  font-size: 0.6rem;
  color: gray;
}

#iipval {
  height: 2.3rem;
  font-size: 1.3rem;
  text-align: center;
  border: 1px solid gray;
  border-radius: .3rem;
}

#ibtnip {
  margin-top: 1rem;
  background-color: #2a40f1;
  color: white;
  font-size: 1.3rem;
  border: 1px solid gainsboro;
  border-radius: .3rem;
  padding: .45rem;
}