html,
body {
  margin: 5px 2px 5px 2px;
  padding: 2px 2px 5px 2px;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  /* background-color: #f5f5f5  ; */
  background-color: #fff;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
  font-size: 14px;
}

section {
  display: flex;
  flex-flow: column;
  height: calc(100vh);
}

#burger {
  padding-bottom: 1.5px;
}

#registerFormDiv {
  position: fixed;
  top: 0;
  z-index: 500;
}

#otpFormDiv,
#emailFormDiv {
  position: fixed;
  top: 0;
  z-index: 600;
}

.sysPanel {
  bottom: 30px;
}

.pageContent {
  flex: 1;
  border-left: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  overflow-y: scroll;
  overflow-x: hidden;
}

.nav-tabs .nav-item .nav-link {
  font-size: 14px;
  color: black !important;
  font-weight: 400 !important;
}

.nav-tabs .nav-item .nav-link.active {
  color: black !important;
  font-weight: 600 !important;
}

@font-face {
  font-family: 'MadimiOne';
  src: url('../fonts/MadimiOne-Regular.ttf') format('truetype');
}

.madimiOne {
  font-family: 'MadimiOne';
}

#mainMenuBtn,
.offMenuItem {
  cursor: pointer;
}

#burgerMenu {
  margin-bottom: 1.5px;
}

.pageHeader {}

.menuItem {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 2px;
}

accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

accordian-body {
  padding-top: 0px !important;
}

/* tbody tr:first-child {
  border-top: 1px solid #dee2e6;
}

tbody tr:nth-last-child(2) {
  border-bottom: 1px solid #dee2e6;
}

tbody tr:last-child {
  border-bottom: 1px solid #dee2e6;
  background-color: #e7f1ff;
} */

.choiceAmount {
  min-width: 30px !important;
  max-width: 30px !important;
}

.logo1 {
  font-family: 'MadimiOne' !important;
  font-size: 28pt;
}

.logo2 {
  font-family: 'MadimiOne' !important;
  font-size: 16pt;
}

.myBtn {
  padding-left: 2px;
  padding-right: 2px;
  width: 75px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  background-image: url('../images/splash/android-chrome-192x192.png');
  background-position: center;
  background-repeat: no-repeat;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 125px);
  left: calc(50% - 125px);
  border: 3px solid #030472;
  border-right-color: #fff;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  -webkit-animation: animate-preloader 2s linear infinite;
  animation: animate-preloader 2s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}

.spinner {
  position: relative;
  width: 56px;
  height: 56px;
  top: calc(50% - 28px);
  left: calc(50% - 28px);
  display: grid;
  color: #474bff;
  background: radial-gradient(farthest-side, currentColor calc(100% - 6.7px), #0000 calc(100% - 5.6px) 0);
  border-radius: 50%;
  animation: spinner-sm4bhi 2s infinite linear;
}

.spinner::before,
.spinner::after {
  content: "";
  grid-area: 1/1;
  background: linear-gradient(currentColor 0 0) center,
    linear-gradient(currentColor 0 0) center;
  background-size: 100% 11.2px, 11.2px 100%;
  background-repeat: no-repeat;
}

.spinner::after {
  transform: rotate(45deg);
}

@keyframes spinner-sm4bhi {
  100% {
    transform: rotate(1turn);
  }
}

/* form controls */

.input {
  border: none;
  border-bottom: 1px solid #1890ff;
  padding: 5px 10px;
  outline: none;
}

[placeholder]:focus::-webkit-input-placeholder {
  transition: text-indent 0.4s 0.4s ease;
  text-indent: -100%;
  opacity: 1;
}

/* unvisited link */
a:link {
  color: darkgrey;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: darkgrey;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: black;
  text-decoration: none;
}

/* selected link */
a:active {
  color: darkgrey;
  text-decoration: none;
}

.darkGrey {
  color: darkgrey
}

.menuEntry {
  cursor: pointer;
  width: 175px;
}

.boardEntry {
  background-color: lightgrey;
  cursor: pointer;
  width: 175px;
}

#menus-tab-pane {
  overflow-x: hidden;
}

#registerLoyverseEmail,
#registerLoyverseAPI,
#requestOTPEmail,
#otpOTP {
  display: flex;
  align-items: center;
  /* Centers text vertically */
  justify-content: center;
  /* Centers text horizontally */
  text-align: center;
  /* Ensures text alignment */
  height: 40px;
  /* Example height */
}

::placeholder {
  text-align: center;
}

::-webkit-input-placeholder {
  text-align: center;
}

:-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}

::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

:-ms-input-placeholder {
  text-align: center;
}

input:focus::placeholder {
  color: transparent;
}

.z999 {
  z-index: 999;
}

.slideFromLeft {
  left: 0;
  animation: left-to-right 1s linear forwards;
}

@-webkit-keyframes left-to-right {
  from {
    left: -100%
  }

  to {
    left: 0
  }
}

@keyframes left-to-right {
  from {
    left: -100%
  }

  to {
    left: 0
  }
}

.slideFromRight {
  right: 0;
  animation: right-to-left 1s linear forwards;
}

@keyframes right-to-left {
  from {
    right: -100%
  }

  to {
    right: 0
  }
}

.table-dragger-handle {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
  text-rendering: auto;
  margin-left: .3em;
  font-family: "Web Icons"
}

.table-dragger-handle:before {
  content: "\f0b2";
  font-family: 'FontAwesome'
}

.sindu_dragger {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none
}

.sindu_handle {
  cursor: move
}

.sindu_dragger table {
  background: #f3f7f9
}

.sindu_dragger li {
  padding: 0;
  margin: 0;
  text-align: inherit;
  list-style: none
}

.sindu_dragger li table,
.sindu_dragger td,
.sindu_dragger th,
.sindu_dragger tr {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.gu-mirror {
  list-style: none
}

.sindu_dragger.sindu_column li {
  float: left
}

.sindu_dragging .sindu_origin_table {
  visibility: hidden
}

.gu-mirror {
  position: fixed !important;
  z-index: 9999 !important;
  margin: 0 !important;
  opacity: .8
}

.gu-mirror li {
  padding: 0;
  margin: 0;
  text-align: inherit;
  list-style: none
}

.gu-mirror table {
  background: #e4eaec
}

.gu-mirror li table,
.gu-mirror td,
.gu-mirror th,
.gu-mirror tr {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.gu-hide {
  display: none !important
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important
}

.gu-transit {
  opacity: .5
}

.sindu_dragger table {
  background: 0 0 !important
}

.stdWidth {
  width: 100px;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

.pdfobject-container {
  height: 500px;
  border: 1px solid #ccc;
}