html,
body {
  background-color: #f9f6ee;
  /* margin: 5px 2px 5px 2px;
  padding: 2px 2px 5px 2px; */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

section {
  display: flex;
  flex-flow: column;
  height: calc(100vh);
  
}

.tab-content {
  flex: 1;
  border-left: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  overflow-y: scroll;
}

@font-face {
  font-family: 'Righteous';
  src: url('../fonts/Righteous-Regular.ttf') format('truetype');
}

.choiceAmount {
  min-width: 30px!important;
  max-width: 30px!important;
}

.logo1 {
  font-family: 'Righteous' !important;
  font-size: 36pt;
}

.logo2 {
  font-family: 'Righteous' !important;
  font-size: 14pt;
}

.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;
}

#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;
}

/* 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;
}