* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::-webkit-scrollbar {
  width: 2px;
}

* button[disabled],
* button:disabled {
  opacity: 0.6;
  background: gainsboro;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

* li {
  list-style: none;
  color: rgb(93, 86, 86);
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
}

* .buttons {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 1%;
}

.selectbox {
  width: 100%;
  background: white;
  height: 250px;
  overflow: auto;
  box-shadow: 0 0 10px silver;
  margin-top: 1%;
  border-radius: 10px;
}

.selectbox p {
  font-style: italic;
  padding: 0.2em;
  color: #4b8aa3;
  font-weight: 800;
  margin-bottom: -1%;
  font-family: calibri;
  border-bottom: 1px solid gainsboro;
}

.selectbox p.active,
.selectbox p:hover {
  background: #4b8aa3;
  color: white;
}

.carddiv {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.carddiv .divs {
  padding: 0.4em;
}

.carddiv .divs input {
  padding: 0.4em;
}

.carddiv .divs input.cardbalance {
  color: white;
}

.carddiv .divs input.cardbalance.less {
  background: indianred;
  border-color: indianred;
}

.carddiv .divs input.cardbalance.more {
  background: teal;
  border-color: teal;
}

.viewmore {
  cursor: pointer;
  padding: 0.3em;
}

.viewmore li {
  padding: 0.3em;
}

* .buttons button {
  min-width: 100px;
  padding: 0.5em;
  margin: 1%;
  font-weight: 700;
  font-style: italic;
  background: snow;
  border-radius: 40px;
  color: #806980;
  box-shadow: 2px 3px 2px 3px silver, 4px 5px 3px 5px #806980;
  outline: none;
}

* .buttons button:hover,
* .buttons button:focus {
  outline: none;
  background: #806980;
  color: white;
}

* label {
  font-style: italic;
  font-size: 1.6em;
  transition: 0.5s;
  font-weight: 400;
}

input.form-control,
textarea.form-control,
select.form-control {
  font-weight: 600;
  font-family: calibri;
  box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.1), rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background: whitesmoke;
  border: 2px solid silver;
}

input.form-control:hover,
input.form-control:focus,
textarea.form-control:hover,
textarea.form-control:focus,
select.form-control:hover,
select.form-control:focus {
  outline-color: #806980;
}

select.form-control {
  background: #4b8aa3;
  color: white;
}

.btndiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btndiv button {
  padding: 0.4em;
  border-radius: 4px;
  transition: 0.7s ease;
  font-family: calibri;
  font-weight: 600;
  color: #806980;
  box-shadow: -2px -3px 3px #806980;
  background: white;
  border: 2px solid #806980;
}

.btndiv button:hover {
  background: #806980;
  color: white;
  box-shadow: 2px 3px 3px silver;
}

.ledgermodal {
  position: fixed;
  top: 20%;
  visibility: hidden;
  left: 50%;
  z-index: -1;
  box-shadow: 0 0 10px silver;
  border-radius: 10px;
  transition: 1.4s ease;
  background: linear-gradient(20deg, #e2c5cb, linen, snow, linen, #d6bbc0);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.ledgermodal.active {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  top: 50%;
}

.ledgermodal .content {
  padding: 0.4em;
}

.ledgermodal .content h6 {
  margin-bottom: 2%;
  padding: 0.4em;
}

.ledgermodal .buttondiv {
  width: 100%;
  background: linear-gradient(to bottom, white, gainsboro);
  background-size: 60px 60px;
  box-shadow: 0 0 5px silver;
  border-radius: 5px;
}

.ledgermodal button:hover {
  background: #806980;
  color: white;
  box-shadow: 0 0 10px silver;
  border-radius: 5px;
}

.ledgermodal button {
  width: 100%;
  padding: 0.5em;
  height: 60px;
  font-family: sans-serif;
  border: none;
  background: none;
  font-weight: 700;
  color: gray;
}

.ledgermodal h3 {
  background: #806980;
  color: white;
  padding: 0.5em;
  font-family: cambria;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

p.remember {
  font-style: italic;
  color: cornsilk;
  float: right;
  text-align: right;
  margin-bottom: -1%;
  font-size: 1.2em;
  padding: 0.2em;
}

.exportdiv {
  position: relative;
  width: 98%;
  margin: 1% 0;
  transition: 2s ease;
  display: flex;
  flex-direction: row-reverse;
  padding: 0.2em;
  border-bottom: 1px solid #4b8aa3;
}

.exportdiv button {
  box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.2);
  font-family: calibri;
}

.exportdiv form {
  flex: 0 0 20%;
  position: relative;
}

.ledgermodal {
  width: 96%;
}

.paymodemodal {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.expand .btn-info {
  transition: 0.9s ease;
  display: none;
}

.expand .btn-info.active {
  display: block;
}

.receivemodal {
  position: fixed;
  width: 99%;
  background: linear-gradient(20deg, #e2c5cb, linen, snow, linen, #d6bbc0);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  height: 80%;
  left: 0.5%;
  overflow: auto;
  transition: 0.5s ease;
  opacity: 0;
  bottom: -10%;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

.receivemodal.active {
  bottom: 0;
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.receivemodal .content .head li:nth-child(2),
.receivemodal .content .divs li:nth-child(2),
.receivemodal .content .total li:nth-child(2) {
  flex: 0 0 30%;
}

.receivemodal .content {
  width: 100%;
  bottom: 0;
  height: 70%;
  overflow: auto;
}

.receivemodal .content div {
  display: flex;
  flex: 1;
  width: 100%;
  font-style: italic;
}

.receivemodal .content .head li,
.receivemodal .content .total li {
  flex: 1;
  text-align: center;
  background: #806980;
  color: wheat;
  font-weight: 700;
  border-right: 2px solid white;
  font-weight: 700;
  padding: 0.3em;
  box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}

.receivemodal .content .body {
  flex-direction: column;
  margin-bottom: 10%;
}

.receivemodal .content .divs li {
  flex: 1;
  text-align: center;
  color: gray;
  background: linen;
  border-right: 2px solid #806980;
  border-bottom: 2px solid #806980;
  padding: 0.3em;
  font-weight: 700;
  box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}

.receivemodal .heading {
  text-align: center;
  background: #806980;
  margin-top: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 0.1em;
}

.receivemodal .heading h3 {
  color: snow;
  font-weight: 700;
  font-family: cambria;
  font-size: 1.3em;
}

.receivemodal .heading span {
  font-size: 1.5em;
  color: wheat;
  position: absolute;
  font-weight: 700;
  cursor: pointer;
  top: 0;
  right: 1%;
}

.receivemodal .heading h6 {
  font-style: italic;
  color: wheat;
  text-decoration: underline;
  font-style: italic;
}

.receivemodal div {
  transition-delay: 0.9s ease;
}

.receivemodal .content.active {
  height: 100%;
  margin-top: 0;
}

.receivemodal .content.active .exportdiv {
  position: fixed;
  top: 30%;
  width: 3%;
  height: 30%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: 1%;
  background: white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0.7em;
  box-shadow: 2px 3px 2px 3px silver;
}

.receivemodal .content.active .exportdiv form {
  justify-content: center;
  align-items: center;
  padding: 0.2em;
  border-bottom: 1px solid gainsboro;
  margin-bottom: 2%;
}

.receivemodal .content.active .exportdiv button {
  font-size: 1.5em;
  margin: 3% 0;
}

.receivemodal .content.active .exportdiv button span {
  display: none;
}

.receivemodal .content.active .head {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}

li.number {
  color: brown;
  font-weight: 600;
  font-size: 1.2em;
}

li.paid,
.receivemodal .content li.paid {
  color: teal;
}

li.receive,
.receivemodal .content li.receive {
  color: indianred;
}

li.opening,
.receivemodal .content li.opening {
  color: blue;
}

li.balance {
  color: brown;
}

.receivemodal .content.active .body {
  margin-top: 5%;
}

.receivemodal .period div {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.receivemodal .period .btndiv {
  flex: 0 0 20%;
}

.receivemodal .period {
  width: 100%;
  display: flex;
  padding: 0.1em;
  font-size: 1em;
}

.receivemodal .period input {
  padding: 0;
  font-size: 1em;
  width: 50%;
  background: #4b8aa3;
  color: white;
  font-weight: 600;
  font-family: calibri;
  box-shadow: 2px 3px 2px 2px silver;
}

.receivemodal .content .opening li {
  background: #fefefe;
  color: black;
}

.receivemodal .searchdiv {
  position: relative;
  width: 80%;
  padding: 0.1em;
}

.receivemodal .searchreceive {
  background: #4b8aa3;
  border: none;
  padding: 0.4em;
  width: 100%;
  border-bottom: 2px solid #4b8aa3;
  outline: none;
  font-style: italic;
}

.receivemodal .searchreceive input:hover {
  background: #4b8aa3;
}

.receivemodal .content .total {
  position: absolute;
  bottom: 0;
  width: 99%;
}

.dustbin {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4em;
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.passwordval {
  display: none;
}

.assigncomission {
  float: right;
  color: indianred;
  cursor: pointer;
}

.dustbin i {
  cursor: pointer;
  color: gray;
  font-size: 4em;
  text-shadow: 5px 2px 4px silver;
}

.dustbin span {
  float: right;
  background: indianred;
  color: snow;
  padding: 0.4em;
  height: 50px;
  width: 50px;
  text-align: Center;
  font-size: 1.4em;
  z-index: 9;
  border-radius: 50%;
}

.dustbin span.active {
  -webkit-animation: animatenum 1s linear;
  animation: animatenum 1s linear;
  background: cadetblue;
}

@-webkit-keyframes animatenum {
  50% {
    transform: scale(1.2) rotate(20deg);
  }
}
@keyframes animatenum {
  50% {
    transform: scale(1.2) rotate(20deg);
  }
}
.editmode {
  color: black;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
}

.modals {
  position: fixed;
  border-radius: 10px;
  transition: 0.8s ease;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: scale(0.8) translate(-40%, -50%);
  visibility: hidden;
  min-height: 250px;
  z-index: -1;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  background: linear-gradient(20deg, #e2c5cb, mintcream, linen, #d6bbc0);
  -webkit-transform: scale(0.8) translate(-40%, -50%);
  -moz-transform: scale(0.8) translate(-40%, -50%);
  -ms-transform: scale(0.8) translate(-40%, -50%);
  -o-transform: scale(0.8) translate(-40%, -50%);
}

.comissionmodal h5 {
  text-align: center;
  text-decoration: underline;
  font-style: italic;
}

.comissionmodal .rangediv p {
  text-align: right;
  color: rosybrown;
  cursor: pointer;
  font-size: 1.2em;
  margin-bottom: -5%;
}

li.edit p {
  color: black;
  cursor: pointer;
  text-decoration: underline;
}

.clear {
  color: gray;
  font-weight: 700;
  cursor: pointer;
  font-style: italic;
  float: right;
}

.waiting {
  position: fixed;
  width: 100%;
  opacity: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 99999;
  padding: 0.4em;
  visibility: hidden;
}

.waiting.active {
  opacity: 1;
  visibility: visible;
}

.waiting p {
  border: 3px solid #806980;
  border-radius: 10px;
  padding: 0.4em;
  color: #4b8aa3;
  font-weight: 700;
  letter-spacing: 5px;
  font-size: 2em;
  font-family: Georgia;
  -webkit-animation: waittext 2s linear infinite;
  animation: waittext 2s linear infinite;
}

@-webkit-keyframes waittext {
  0% {
    transform: scale(0.8);
    color: #806980;
  }
  100% {
    transform: scale(1);
    background: snow;
  }
}
@keyframes waittext {
  0% {
    transform: scale(0.8);
    color: #806980;
  }
  100% {
    transform: scale(1);
    background: snow;
  }
}
.modals h3 {
  background: #806980;
  color: snow;
  font-style: italic;
  padding: 0.2em;
  width: 100%;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.receiptpendingdiv {
  color: cadetblue;
  font-style: italic;
  font-family: Georgia;
  font-weight: 700;
}

.receiptpendingdiv input {
  margin: 0 1%;
}

.modals .tick {
  position: absolute;
  width: 150px;
  height: 150px;
  transition: 0.7s ease;
  border-radius: 50%;
  background: #806980;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  perspective: 1000;
  transform-origin: center;
  box-shadow: 2px 4px 3px 2px silver;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.modals .tick.active {
  opacity: 1;
  visibility: visible;
  -webkit-animation: rotatetick 1s linear;
  animation: rotatetick 1s linear;
}

.modals label {
  font-size: 1.1em;
  margin-left: 2%;
}

.modals .tick span {
  position: relative;
  z-index: 99;
  height: 70px;
  width: 30px;
  transition: 0.8s ease;
  transition-delay: 0.7s;
  border-right: 5px solid snow;
  transform: rotate(45deg);
}

.modals .tick span::before {
  position: absolute;
  content: "";
  top: 95%;
  left: 34%;
  height: 20px;
  width: 20px;
  transform: rotate(-180deg);
  transition: 0.8s ease;
  border-bottom: 5px solid snow;
  -webkit-animation: animatetick 1s linear;
  animation: animatetick 1s linear;
}

.modals input.payamount,
.modals select {
  width: 90%;
  margin-left: 2%;
}

.modals .buttons {
  margin-bottom: 5%;
}

.modals.active {
  opacity: 1;
  z-index: 999;
  transform: scale(1) translate(-50%, -50%);
  visibility: visible;
  -webkit-transform: scale(1) translate(-50%, -50%);
  -moz-transform: scale(1) translate(-50%, -50%);
  -ms-transform: scale(1) translate(-50%, -50%);
  -o-transform: scale(1) translate(-50%, -50%);
}

.comissionmodal {
  height: 300px;
  overflow: auto;
}

@-webkit-keyframes animatetick {
  0% {
    left: 0%;
  }
  100% {
    left: 34%;
  }
}
@keyframes animatetick {
  0% {
    left: 0%;
  }
  100% {
    left: 34%;
  }
}
@-webkit-keyframes rotatetick {
  0% {
    transform: translate(-50%, -50%) rotateY(90deg);
    -webkit-transform: translate(-50%, -50%) rotateY(90deg);
    -moz-transform: translate(-50%, -50%) rotateY(90deg);
    -ms-transform: translate(-50%, -50%) rotateY(90deg);
    -o-transform: translate(-50%, -50%) rotateY(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -moz-transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -ms-transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -o-transform: translate(-50%, -50%) rotate(0) scale(1.1);
  }
}
@keyframes rotatetick {
  0% {
    transform: translate(-50%, -50%) rotateY(90deg);
    -webkit-transform: translate(-50%, -50%) rotateY(90deg);
    -moz-transform: translate(-50%, -50%) rotateY(90deg);
    -ms-transform: translate(-50%, -50%) rotateY(90deg);
    -o-transform: translate(-50%, -50%) rotateY(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -moz-transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -ms-transform: translate(-50%, -50%) rotate(0) scale(1.1);
    -o-transform: translate(-50%, -50%) rotate(0) scale(1.1);
  }
}
@media screen and (min-width: 700px) {
  .carddiv .divs {
    flex: 1;
  }
  .carddiv .divs:nth-child(1) {
    flex: 0 0 25%;
    width: 25%;
  }
  .modals {
    width: 60%;
  }
  .modals.paymodemodal {
    width: 80%;
  }
  .modals.paymodemodal.active {
    transform: scale(1) translate(-50%, -40%);
    -webkit-transform: scale(1) translate(-50%, -40%);
    -moz-transform: scale(1) translate(-50%, -40%);
    -ms-transform: scale(1) translate(-50%, -40%);
    -o-transform: scale(1) translate(-50%, -40%);
  }
  .ledgermodal {
    width: 500px;
  }
  .comissionmodal {
    height: 400px;
    width: 500px;
  }
  .dustbin {
    margin-left: 90%;
  }
}
@media screen and (max-width: 700px) {
  .receivemodal .content {
    position: absolute;
    bottom: 0;
    height: 80%;
  }
  .receivemodal .content::-webkit-scrollbar {
    height: 1px;
  }
  .receivemodal .content .total {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
  }
  .receivemodal .exportdiv form {
    flex: 1;
  }
  .carddiv .divs {
    flex: 0 0 100%;
  }
  .arrowdiv {
    position: fixed;
    z-index: 9999999;
    top: 7%;
    height: 300px;
    left: 5%;
    width: 100%;
  }
  .receivemodal .content.active .exportdiv {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.1em;
  }
  .receivemodal .content.active .exportdiv form {
    padding: 0.2em;
  }
  .receivemodal .content.active .exportdiv button {
    font-size: 1.1em;
  }
  .receivemodal .period label {
    font-size: 1em;
  }
  .receivemodal .content.active {
    overflow: auto;
  }
  .receivemodal .content .head li,
.receivemodal .content .divs li,
.receivemodal .content .total li {
    flex: 0 0 20%;
    font-size: 0.7em;
  }
  .receivemodal .content .total {
    position: relative;
  }
  .receivemodal .content .head li:nth-child(1),
.receivemodal .content .divs li:nth-child(1),
.receivemodal .content .total li:nth-child(1) {
    flex: 0 0 15%;
  }
  .receivemodal .content .head li:nth-child(2),
.receivemodal .content .divs li:nth-child(2),
.receivemodal .content .total li:nth-child(2) {
    flex: 0 0 33%;
  }
  .receivemodal .content .head li:nth-child(4) {
    font-size: 0.8em;
  }
  .receivemodal .content .head li:nth-child(2),
.receivemodal .content .divs li:nth-child(2),
.receivemodal .content .total li:nth-child(2) {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
  .receivemodal .content.active .head {
    position: relative;
  }
  .comissionmodal {
    height: 400px;
  }
  .arrowdiv button {
    background: white;
    color: #806980;
    padding: 0.2em;
    border: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 1.3em;
    font-weight: 700;
    box-shadow: 3px 3px 2px 2px silver, 2px 3px 3px 2px gainsboro;
  }
  .arrowdiv .arrowsign {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 75%;
    padding: 0.2em;
    display: flex;
    transform: rotate(45deg);
    flex-direction: column;
    flex: 1;
  }
  .arrowdiv.active .arrowsign {
    -webkit-animation: animatearrow 3s linear;
    animation: animatearrow 3s linear;
  }
  @-webkit-keyframes animatearrow {
    50% {
      margin-top: 15%;
    }
  }
  @keyframes animatearrow {
    50% {
      margin-top: 15%;
    }
  }
  .arrowdiv p {
    font-size: 1.4em;
    padding: 0.2em;
    letter-spacing: 3px;
    font-weight: 600;
    color: black;
    font-family: cambria;
    text-shadow: 2px 3px 2px silver;
  }
  .arrowdiv .arrowsign span {
    position: relative;
    height: 25px;
    width: 25px;
    margin: 6%;
    border-left: 8px solid cadetblue;
    border-bottom: 8px solid cadetblue;
    transform: rotate(-45deg);
  }
  .modals {
    width: 90%;
  }
  .modals.paymodemodal {
    width: 98%;
  }
  .modals.paymodemodal .values div {
    flex: 0 0 100%;
    padding: 0.1em;
  }
  .modals.paymodemodal .values div label {
    font-size: 1em;
  }
  .modals.paymodemodal .values div input,
.modals.paymodemodal .values div select {
    height: 35px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-left: 0;
  }
  .modals.paymodemodal .values div input.payamount,
.modals.paymodemodal .values div select.payamount {
    margin-left: 0;
  }
  .dustbin {
    margin-left: 72%;
  }
  .dustbin span {
    position: absolute;
    margin-left: -30%;
    margin-top: -5%;
  }
  .multiplepaymodal.active {
    margin-top: 40%;
  }
}
.multiple::-webkit-scrollbar-thumb,
.selectbox::-webkit-scrollbar-thumb {
  height: 10px;
  width: 10px;
  background: linear-gradient(transparent, #4b8aa3);
  border-radius: 10px;
}

.clientnames::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb,
.viewdata::-webkit-scrollbar-thumb,
.receivemodal .content::-webkit-scrollbar-thumb,
.receivemodal::-webkit-scrollbar-thumb,
.comissionmodal::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  height: 10px;
  width: 10px;
  background: #806980;
}

.comissionmodal .slabdiv {
  box-shadow: 2px 2px 2px 2px silver, 2px 2px 2px 1px linen;
  width: 98%;
  margin: 3% 1%;
  padding: 0.2em;
  border-radius: 5px;
}

.comissionmodal .slabdiv .flexall {
  display: flex;
}

.comissionmodal .rangediv h6 {
  text-align: center;
  font-size: 1.2em;
  border-bottom: 2px solid gainsboro;
  color: gray;
  font-style: italic;
}

.comissionmodal .flex,
.comissionmodal .commission {
  display: flex;
  flex: 1;
}

.comissionmodal .flex input {
  width: 30%;
  text-align: center;
  border: none;
  background: none;
  color: cadetblue;
  font-weight: 700;
  margin-top: -2%;
}

.comissionmodal .commission {
  padding: 0.2em;
}

.comissionmodal .commission input {
  width: 30%;
  background: snow;
  margin-left: 10%;
  border: 2px dashed #a383a3;
  color: gray;
  padding: 0.2em;
  border-radius: 10px;
  text-align: center;
  outline: none;
}

.multiple::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #4b8aa3);
  border-radius: 10px;
}

.clientnames::-webkit-scrollbar-thumb:hover,
.scroll::-webkit-scrollbar-thumb:hover,
.viewdata::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.receivemodal .content::-webkit-scrollbar-thumb:hover,
.receivemodal::-webkit-scrollbar-thumb:hover,
.comissionmodal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #815681);
  border-radius: 10px;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

.logindiv1 {
  transform: rotate(0deg);
  transition: 2s ease;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.logindiv1.active {
  transform: rotateY(90deg);
  transform-origin: center;
  transition: 2s ease;
  opacity: 0;
  visibility: hidden;
}

.showmode {
  color: gray;
  font-weight: 700;
}

.showmode p {
  text-align: right;
  width: 100%;
}

@-webkit-keyframes rotatesync {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
}
@keyframes rotatesync {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
}
.logindiv .change {
  text-align: center;
  font-style: italic;
  color: mintcream;
  font-weight: 700;
  cursor: pointer;
  -webkit-animation: 2s changecolor linear infinite;
  animation: 2s changecolor linear infinite;
}

@-webkit-keyframes changecolor {
  0% {
    color: mintcream;
  }
  50% {
    color: linen;
    text-decoration: underline;
  }
  100% {
    color: mistyrose;
  }
}
@keyframes changecolor {
  0% {
    color: mintcream;
  }
  50% {
    color: linen;
    text-decoration: underline;
  }
  100% {
    color: mistyrose;
  }
}
.logindiv2 {
  opacity: 0;
  position: relative;
  visibility: hidden;
  float: right;
  transform: rotateY(90deg);
  transform-origin: center;
  transition: 2s ease;
}

.logindiv2.active {
  position: absolute;
  transform: rotate(0deg);
  transition: 2s ease;
  opacity: 1;
  visibility: visible;
}

.logindiv2 button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.multiple option {
  font-weight: 700;
}

.multiple option:checked {
  background: #4b8aa3;
  border-radius: 10px;
  color: snow;
  padding: 0.1em;
}

.multiple:focus {
  color: teal;
}

.statustable {
  width: 100%;
  text-align: center;
}

.statustable .head {
  display: flex;
}

.statustable .head li {
  flex: 1;
}

.statustable .body .div1 {
  display: flex;
}

.statustable .body .div1 li {
  flex: 1;
}

.statustable .body .div1 li:nth-child(3) {
  color: saddlebrown;
}

.reportdiv {
  width: 100%;
  display: flex;
  font-weight: 700;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: -4%;
}

.reportdiv li {
  margin: 2% 5%;
  padding: 0.3em;
  font-size: 1.2em;
  color: #806980;
  border-radius: 10px;
}

.reportdiv li.active {
  background: #806980;
  color: snow;
}

.options {
  width: 100%;
  margin: 2% 1%;
}

.options button {
  border: none;
  padding: 0.4em;
  background: none;
  color: #4b8aa3;
  margin: 0 5%;
  font-weight: 700;
  font-size: 1.2em;
  font-style: italic;
}

.options button.active {
  background: #4b8aa3;
  color: white;
}

.webpay .paymenttable {
  width: 100%;
  border-radius: 10px;
  box-shadow: 2px 3px 2px 2px linen, 2px 2px 2px 3px #806980, 4px 3px 2px 2px silver;
  padding: 0.2em;
  min-height: 100px;
}

.webpay .paymenttable .paymenthead {
  display: flex;
}

.webpay .paymenttable .paymenthead li {
  flex: 1;
  border-right: 2px solid mintcream;
  padding: 0.2em;
  text-align: center;
  background: #806980;
  color: linen;
  font-style: italic;
}

.webpay .paymenttable .paymentbody .paydiv {
  display: flex;
  color: gray;
}

.up {
  float: right;
  margin-top: -5%;
  z-index: 9999;
  color: #806980;
  font-size: 3.5em;
  font-weight: 700;
}

.down {
  position: absolute;
  left: 95%;
  top: 90%;
  z-index: 9999;
  color: #806980;
  font-size: 3.5em;
  font-weight: 700;
  -webkit-animation: arrow 3s linear infinite;
  animation: arrow 3s linear infinite;
}

.down i,
.up i {
  text-shadow: 2px 4px 2px silver, 2px 4px 4px gray;
}

@-webkit-keyframes arrow {
  50% {
    transform: scale(1.3);
  }
}
.webpay input,
.mobilepay input {
  width: 90%;
  background: #4b8aa3;
  font-size: 1.1em;
  font-weight: 700;
  font-family: cambria;
  box-shadow: 2px 3px 2px 3px silver;
  color: whitesmoke;
  text-align: center;
}

.webpay input.receive,
input.receivedate,
input.amountpay,
input.mobilenum,
.mobilepay input.receive {
  color: black;
  background: white;
}

.webpay input[type=date],
.mobilepay input[type=date] {
  background: white;
}

.webpay input.receive,
.mobilepay input.receive {
  background: white;
  color: black;
}

.webpay input.pending,
.mobilepay input.pending {
  background: indianred;
  color: wheat;
}

.mobilepay input {
  width: 90%;
}

@keyframes arrow {
  50% {
    transform: scale(1.3);
  }
}
.webpay .paymenttable .paymentbody .paydiv li {
  flex: 1;
  padding: 0.2em;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: 700;
}

.webpay .paymenttable .paymentbody .paydiv li .cancel {
  float: right;
  margin-right: 2%;
}

.headone {
  width: 100%;
  text-align: center;
  color: #806980;
  text-shadow: 2px 4px 2px silver;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3em;
}

.headone i {
  margin: 0 5%;
  text-shadow: none;
}

.notification {
  position: fixed;
  width: 96%;
  margin-left: 2%;
  margin-top: -10%;
  z-index: 99999999;
  background: linear-gradient(20deg, #e2c5cb, linen, snow, linen, #d6bbc0);
  border-radius: 10px;
  padding: 0.1em;
  opacity: 0;
  visibility: hidden;
  box-shadow: 2px 3px 3px 3px silver;
  transition: 0.8s ease;
}

.notification.active {
  opacity: 1;
  visibility: visible;
  margin-top: 2%;
  transition: 0.9s ease;
}

.notification h4 {
  width: 100%;
  background: #806980;
  color: snow;
  padding: 0.2em;
  text-align: center;
  border-radius: 10px;
}

.notification .text {
  color: #a51431;
  font-weight: 700;
  font-style: italic;
}

.notification .text span {
  color: black;
  -webkit-animation: rupee 1s linear infinite;
  animation: rupee 1s linear infinite;
}

.notification .detail {
  width: 100%;
  text-align: right;
  font-weight: 700;
  text-decoration: underline;
  color: gray;
  margin-top: -2%;
}

@-webkit-keyframes rupee {
  0% {
    color: black;
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    color: teal;
  }
  100% {
    transform: scale(1);
    color: #806980;
  }
}
@keyframes rupee {
  0% {
    color: black;
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    color: teal;
  }
  100% {
    transform: scale(1);
    color: #806980;
  }
}
.navbar {
  width: 100%;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  padding: 0;
  z-index: 9999;
  flex-direction: column;
  top: 0%;
  transition: 1.3s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px, rgba(0, 0, 0, 0.22) 0px 3px 4px, 0 2px #806980;
}

.searchdivinpay {
  display: flex;
  padding: 0.2em;
  width: 90%;
  margin: 0 1%;
  flex: 1;
}

.searchdivinpay select {
  width: 50%;
  font-style: italic;
  color: gray;
  font-weight: 700;
}

.searchdivinpay input {
  margin: 0 1%;
  width: 50%;
  border: 2px solid cadetblue;
  color: gray;
}

.searchdivinpay .form-control {
  width: 50%;
}

.navbar h5 {
  font-size: 2em;
  font-family: monospace;
  color: white;
  background: #806980;
  font-weight: 700;
  margin: 0;
  text-align: center;
  width: 100%;
  border-bottom: 2px solid #806980;
}

.navbar ul {
  flex: 1;
  width: 100%;
  padding: 0.4em;
  margin: 0;
  background-color: white;
  display: flex;
}

.paymodemodal .values {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0.4em;
}

.paymodemodal .values div {
  flex: 0 0 33%;
  width: 100%;
  padding: 0.4em;
}

.paymodemodal .values div input,
.paymodemodal .values div select {
  padding: 0.4em;
  height: 50px;
  background: white;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 2px solid #317ba0;
}

.paymodemodal .values div select,
.paymodemodal .values div input:disabled {
  background: #317ba0;
  color: white;
}

.navbar ul li {
  list-style: none;
  flex: 1;
  margin: 0.2%;
  min-height: 40px;
  padding: 0.1em;
  font-size: 1em;
  transition: 0.7s ease;
  color: #806980;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
}

.navbar ul li.active,
.navbar ul li:hover {
  background: #806980;
  color: linen;
  box-shadow: inset 0 -2px 2px 3px rgba(0, 0, 0, 0.1);
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.otpmodal .content {
  position: relative;
  padding: 0.2em;
}

.otpmodal .numbers {
  display: flex;
  padding: 0.3em;
}

.arrowdiv {
  opacity: 0;
  visibility: hidden;
}

.arrowdiv.active {
  opacity: 1;
  visibility: visible;
  transition: 0.9s ease-in;
}

.otpmodal .otp {
  flex: 1;
  margin: 2%;
  width: 25%;
  padding: 0.1em;
  border: none;
  box-shadow: 2px 3px 3px 2px silver;
  background: none;
  color: #806980;
  border: 3px solid #806980;
  border-radius: 10px;
  height: 50px;
  outline: none;
  font-weight: 700;
  font-size: 1.3em;
  text-align: center;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linen;
  filter: hue-rotate(360deg);
  z-index: 9999;
  justify-content: center;
}

.loader.active {
  position: relative;
  transition: 1s ease-in;
  height: 0;
  overflow: hidden;
}

.loader span {
  height: 30px;
  width: 30px;
  margin: 2%;
  background: #806980;
  border-radius: 50%;
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
}

.loader span:nth-child(1) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.loader span:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.loader span:nth-child(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.loader span:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.loader span:nth-child(5) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes shake {
  0% {
    transform: scale(0.8) rotate(1deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes shake {
  0% {
    transform: scale(0.8) rotate(1deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
}
@-webkit-keyframes animate {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  50% {
    transform: rotate(180deg) translate(21px, -35px) scale(0.8);
  }
  100% {
    transform: rotate(0deg) translate(0, 0) scale(1.3);
  }
}
@keyframes animate {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  50% {
    transform: rotate(180deg) translate(21px, -35px) scale(0.8);
  }
  100% {
    transform: rotate(0deg) translate(0, 0) scale(1.3);
  }
}
.expand {
  width: 60%;
  position: absolute;
  display: none;
  font-weight: 700;
  transition: 0.9s ease;
  margin-left: 10%;
  box-shadow: 2px 3px 2px 3px silver, 3px 3px 2px #806980;
  -webkit-transition: 0.9s ease;
  -moz-transition: 0.9s ease;
  -ms-transition: 0.9s ease;
  -o-transition: 0.9s ease;
}

.receiveexpand {
  width: 80%;
}

.expand.active {
  position: relative;
  display: block;
  margin-top: 1%;
  margin-bottom: 1%;
}

.expand .expandhead,
.expand .expandtotal {
  display: flex;
}

li.time,
.expand .expandbody .time {
  font-weight: 700;
  color: cadetblue;
}

.expand .opening {
  border-bottom: 1px solid gainsboro;
  background: #E4DDDD;
  border-radius: 10px;
  font-weight: 700;
}

.expand .opening .inputlist input {
  width: 100%;
}

.expand .expandhead li,
.expand .expandtotal li {
  background: #806980;
  color: snow;
  padding: 0.4em;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  border-right: 2px solid white;
  flex: 1;
}

.expand .expandbody {
  display: flex;
  flex-direction: column;
}

.expand .expandbody .divs {
  display: flex;
}

.expand .expandbody li {
  flex: 1;
  padding: 0.4em;
  color: gray;
  font-style: italic;
  text-align: center;
  font-style: italic;
}

.expand .expandbody li.balance {
  color: peru;
  font-weight: 700;
}

.viewdata {
  position: relative;
  width: 100%;
  margin-top: 2%;
  margin-left: 0;
}

.viewdata .viewdiv {
  width: 98%;
  margin: 1%;
  padding: 0.5em;
}

.tableforpay {
  width: 100%;
}

.viewdata .viewdiv .table {
  width: 100%;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.viewdata .viewdiv .table .lists {
  padding: 0;
}

.viewdata .viewdiv .table .lists li {
  border-bottom: 1px solid #4b8aa3;
}

.lists:nth-child(even) li {
  background: rgba(75, 138, 163, 0.2);
}

.viewdata .viewdiv .table .tablehead,
.viewdata .viewdiv .tableforpay .tablehead {
  display: flex;
}

.viewdata .viewdiv .table .tablehead li,
.viewdata .viewdiv .tableforpay .tablehead li {
  background: #4b8aa3;
  color: linen;
  font-weight: 700;
  padding: 0.3em;
  text-align: center;
  border-right: 2px solid mintcream;
}

.viewdata .viewdiv .table .tablebody .lists,
.viewdata .viewdiv .tableforpay .tablebody .lists {
  display: flex;
  padding: 0;
  border-radius: 5px;
  font-size: 16px;
  color: black;
  min-height: 50px;
}

.viewdata .viewdiv .table .tablebody .lists li,
.viewdata .viewdiv .tableforpay .tablebody .lists li {
  text-align: center;
  font-weight: 700;
}

.viewdata .viewdiv .table .tablebody .lists li .cancel,
.viewdata .viewdiv .tableforpay .tablebody .lists li .cancel {
  position: relative;
  float: right;
  right: 2%;
  margin: 1%;
}

.viewdata .viewdiv .table .tablebody .lists li .cancel i,
.viewdata .viewdiv .tableforpay .tablebody .lists li .cancel i {
  color: crimson;
  cursor: pointer;
}

.swal-modal {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-top: 10px solid #4b8aa3;
  box-sizing: border-box;
  z-index: 999999;
}

.swal-modal .swal-title {
  background: #4b8aa3;
  min-height: 50px;
  font-family: monospace;
  color: white;
}

.swal-modal .swal-text {
  font-family: monospace;
  color: black;
}

.swal-modal .swal-icon {
  border: 2px solid #4b8aa3;
  color: #4b8aa3;
}

.swal-modal .swal-button--confirm {
  border: 2px solid #4b8aa3;
  background-color: white;
  background: #4b8aa3;
  color: white;
  box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}

.swal-modal .swal-button--confirm:focus {
  outline-color: #4b8aa3;
}

.swal-modal .swal-button--confirm:hover {
  background: #4b8aa3;
  color: white;
}

.viewdata .adddiv {
  width: 98%;
  margin-left: 1%;
  padding: 0.5em;
  background: linear-gradient(-30deg, linen 20%, white);
  background-size: 5px 5px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border: 1px solid #806980;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.viewdata .heading h4 {
  color: gray;
  font-family: cursive;
  font-style: italic;
}

.viewdata .heading i {
  float: right;
  margin-top: -2%;
  font-size: 1.6em;
  color: gray;
  font-size: 1.3em;
  cursor: pointer;
}

.viewdata .modediv {
  padding: 0.6em;
  display: flex;
  box-shadow: 2px 3px 2px gainsboro;
  opacity: 0;
  margin-top: -5%;
  visibility: hidden;
}

.viewdata .modediv.active {
  opacity: 1;
  visibility: visible;
  margin-top: 5%;
}

.viewdata .modediv input {
  margin: 3%;
}

.viewdata .adddiv h3 {
  width: 100%;
  text-align: center;
  font-family: cambria;
  font-weight: 600;
  text-transform: uppercase;
  color: #4b8aa3;
  text-shadow: 0px -1px 1px gray;
}

.customerdiv {
  opacity: 1;
  visibility: visible;
  margin-top: 0%;
  transition: 0.9s ease;
}

.customerdiv.active {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.no {
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-style: italic;
  padding: 0.4em;
  background: indianred;
  color: white;
  margin-top: 1%;
}

.message {
  position: fixed;
  top: 25%;
  right: 0%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.2);
  padding: 0.8em;
  color: snow;
  transition: 1s ease;
  font-size: 1.2em;
  opacity: 0;
  visibility: hidden;
  z-index: 9999999;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.message.active,
.message.already,
.message.error {
  top: 20%;
  right: 0;
  opacity: 1;
  visibility: visible;
}

.message.active {
  transform: scale(1);
  position: fixed;
  background: #4b8aa3;
}

.message.already {
  transform: scale(1);
  position: fixed;
  background: #806980;
}

.message.error {
  transform: scale(1);
  position: fixed;
  background: crimson;
}

.dashboard {
  width: 98%;
  margin: 1%;
  padding: 0.4em;
  background: linear-gradient(-30deg, linen 20%, white);
  background-size: 5px 5px;
  box-shadow: 2px 3px 3px 2px silver, 2px 4px 3px 3px gainsboro, 0 0 0 4px #806980;
  border-radius: 20px;
  font-family: calibri;
  font-weight: 600;
}

.dashboard .head {
  display: flex;
  padding: 0.3em;
  width: 100%;
}

.dashboard .head img {
  height: 100px;
  width: 100px;
  transition: 0.4s ease;
  color: #9d9dc0;
  stroke: #4b8aa3;
  stroke-width: 5px;
  border-radius: 50%;
}

.dashboard .head h3 {
  color: snow;
  flex: 1;
  -webkit-text-stroke-color: #4b8aa3;
  -webkit-text-stroke-width: 2px;
  font-weight: 700;
}

.dashboard .divs {
  position: relative;
  margin-bottom: 2%;
  padding: 0.3em;
  width: 100%;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 10px;
  box-shadow: 2px 3px 0 3px gainsboro, 4px 3px 2px silver;
  color: black;
  font-weight: 700;
  background: linear-gradient(20deg, #e2c5cb, mintcream, linen, #d6bbc0);
  overflow: hidden;
}

.dashboard .divs::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  transform: skewX(45deg);
  background: rgba(241, 234, 234, 0.1);
}

.dashboard .divs h6 {
  text-align: center;
  font-style: italic;
  width: 100%;
  background: #806980;
  color: snow;
  border-top-right-radius: 20px;
  padding: 0.3em;
  font-size: 1.4em;
}

.viewdiv .clienttable .inputlist input {
  width: 70%;
  text-align: center;
  margin-top: 2%;
  background: cadetblue;
  color: black;
  box-shadow: 2px 3px 2px 1px silver;
}

.viewdiv .expandforreceive {
  color: gray;
  font-weight: 700;
  padding: 0.4em;
  float: right;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -5%;
  background: #e4dbdb;
  box-shadow: 2px 3px 3px 2px silver;
  cursor: pointer;
  border-radius: 10px;
}

.viewdiv .expandforreceive .fa-minus {
  transform: scale(1.1);
  transition: 0.8s ease;
  color: crimson;
}

.viewdiv .clienttable .inputlist.balance input {
  background: indianred;
  color: wheat;
}

.viewdiv .clienttable .inputlist .receive {
  background: whitesmoke;
}

.dashboard .divs .num {
  margin: 0 2%;
  color: saddlebrown;
  transform: scale(1.1);
}

.fa-sync {
  color: teal;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  cursor: pointer;
  font-size: 2em;
  font-weight: 700;
}

.orderdiv {
  text-align: center;
  justify-content: center;
  display: flex;
  color: brown;
  font-style: italic;
  font-weight: 700;
  font-family: cursive;
}

.orderdiv div {
  margin: 0 3%;
}

.dashboard .divs .total {
  border-top: 2px dashed black;
  border-bottom: 2px dashed black;
  color: brown;
}

.logindiv {
  position: absolute;
  width: 500px;
  transform-style: preserve-3d;
  perspective: 1000;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(30deg, snow, #806980, #c7b7b7, #917191, #c7b7b7);
  color: mintcream;
  border-radius: 10px;
  box-shadow: 2px 3px 4px 4px silver, 0 0 0 5px white, 3px 3px 4px 10px #806980;
}

.logindiv label {
  text-shadow: 2px 3px 2px silver;
}

.logindiv .passdiv {
  display: flex;
}

.logindiv .form-group input.shake {
  -webkit-animation: shake 2s linear;
  animation: shake 2s linear;
}

.logindiv .buttons {
  margin-bottom: 5%;
}

.logindiv .msg {
  width: 98%;
  position: absolute;
  margin: 1%;
  text-align: center;
  background: snow;
  border-radius: 10px;
  color: #806980;
  font-family: Georgia;
  text-shadow: 2px 3px 2px silver;
  font-weight: 700;
  padding: 0.2em;
  transform: scale(0);
  transition: 1.3s ease;
}

.logindiv .msg.active {
  position: relative;
  transform: scale(1);
}

.logindiv .fa {
  float: right;
  background: #806980;
  color: snow;
  padding: 0.5em;
  font-size: 1.3em;
  border-radius: 5px;
  cursor: pointer;
  margin-left: -10%;
}

.underbrokerdiv {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.8s ease;
}

.underbrokerdiv.active {
  opacity: 0;
  visibility: hidden;
  margin-top: -5%;
}

.expandplus {
  float: right;
  position: relative;
  margin-top: -4%;
  padding: 0.3em;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #806980;
  border-radius: 10px;
  box-shadow: 2px 3px 3px silver, inset -2px 2px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.2em;
  transition: 0.8s ease;
  cursor: pointer;
}

.expandplus.active {
  transform: scale(1.2);
  color: white;
  background-color: crimson;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.welcome {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background: #806980;
  color: linen;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: algerian;
  transition: 0.8s ease;
  overflow: hidden;
  height: 0;
}

.welcome.active {
  height: 100%;
  transition: 0.8s;
}

.welcome::before {
  position: absolute;
  content: "";
  top: 0;
  left: 10%;
  width: 80%;
  height: 100%;
  transform: skew(20deg);
  background: rgba(255, 255, 255, 0.1);
}

.clientdiv {
  transition: 0.9s ease;
  cursor: pointer;
}

.clientdiv.active {
  overflow: hidden;
  height: 120px;
  width: 120px;
  margin-top: -2%;
  transition: 0.8s ease;
  background: linear-gradient(30deg, snow, linen, #e6d6c6, linen);
  border-radius: 50%;
  z-index: 99;
}

.clientdiv.active h3 {
  margin-top: 1%;
  font-size: 2em;
}

.clientdiv.active .row,
.clientdiv.active .reportdiv,
.clientdiv.active .buttons {
  display: none;
}

.clientnames,
select.multiple {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: auto;
  background: white;
  border-bottom: 4px solid #4b8aa3;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.clientnames::-webkit-scrollbar,
select.multiple::-webkit-scrollbar {
  width: 2px;
}

.clientnames .searchdiv,
select.multiple .searchdiv {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}

.searchdiv input,
.searchdiv input:hover,
.searchdiv input:focus {
  background: black;
  color: white;
  border: 1px solid black;
}

.searchdiv input::-moz-placeholder,
.searchdiv input:hover::-moz-placeholder,
.searchdiv input:focus::-moz-placeholder {
  color: white;
}

.searchdiv input:-ms-input-placeholder,
.searchdiv input:hover:-ms-input-placeholder,
.searchdiv input:focus:-ms-input-placeholder {
  color: white;
}

.searchdiv input::-moz-placeholder,
.searchdiv input:hover::-moz-placeholder,
.searchdiv input:focus::-moz-placeholder {
  color: white;
}

.searchdiv input:-ms-input-placeholder,
.searchdiv input:hover:-ms-input-placeholder,
.searchdiv input:focus:-ms-input-placeholder {
  color: white;
}

.searchdiv input::-moz-placeholder, .searchdiv input:hover::-moz-placeholder, .searchdiv input:focus::-moz-placeholder {
  color: white;
}

.searchdiv input:-ms-input-placeholder, .searchdiv input:hover:-ms-input-placeholder, .searchdiv input:focus:-ms-input-placeholder {
  color: white;
}

.searchdiv input::placeholder,
.searchdiv input:hover::placeholder,
.searchdiv input:focus::placeholder {
  color: white;
}

.clientnames p,
select.multiple option {
  cursor: pointer;
  margin: 1% 0;
  border-bottom: 1px dashed gainsboro;
  color: #4b8aa3;
  font-style: italic;
  font-weight: 600;
  padding: 0.1em;
  border-radius: 10px;
  transition: 0.8s ease;
}

.clientnames p.active {
  background: #4b8aa3;
  color: white;
}

.status .pay {
  font-size: 14px;
  cursor: pointer;
  color: chocolate;
}

.mobilepay {
  margin: 5% 0;
  text-align: center;
}

.mobilepay .paymentbody {
  border-radius: 10px;
  box-shadow: 2px 3px 2px 2px linen, 2px 2px 2px 3px #806980, 4px 3px 2px 2px silver;
  padding: 0.2em;
  margin: 5% 0;
}

.mobilepay .paymentbody .paydiv {
  display: flex;
}

.mobilepay .additem {
  position: relative;
  margin-top: 5%;
  font-size: 1.1em;
  margin-left: 95%;
}

.mobilepay .additem i {
  color: gray;
}

.mobilepay .div1 {
  flex: 1;
}

.mobilepay .div1 li {
  background: #806980;
  color: snow;
  margin: 5% 1%;
  border-radius: 5px;
  padding: 0.3em;
  font-size: 1.1em;
}

.mobilepay .div2 {
  flex: 1;
}

.mobilepay .div2 li {
  font-size: 1em;
  margin: 3% 1%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-weight: 700;
}

@media screen and (max-width: 900px) {
  .table {
    width: 100%;
    overflow: auto;
  }
  .table .tablehead li,
.table .lists li {
    flex: 0 0 30%;
  }
  .table .lists {
    border-bottom: none;
    box-shadow: none;
  }
  .table .lists li {
    border-bottom: 1px solid cadetblue;
  }
  .logindiv {
    width: 96%;
    margin: 20% 2%;
  }
  .dashboard .head h3 {
    text-align: left;
    font-size: 1.4em;
  }
  .mobileexpand {
    overflow: auto;
    display: flex;
    width: 100%;
    display: none;
    margin-top: -5%;
    flex-direction: column;
  }
  .mobileexpand.active {
    display: flex;
    transition: 0.9s ease;
    margin-top: 0;
  }
  .mobileexpand .mobilehead,
.mobileexpand .mobiletotal,
.mobileexpand .mobiledivs {
    display: flex;
    width: 100%;
    position: relative;
  }
  .mobileexpand .mobiledivs {
    margin: 1% 0;
  }
  .mobileexpand .opening {
    background: #fefeef;
  }
  .mobileexpand .mobilehead li,
.mobileexpand .mobiletotal li {
    background: #806980;
    color: snow;
    padding: 0.4em;
    text-align: center;
    font-style: italic;
    font-weight: 700;
    border-right: 2px solid white;
    flex: 0 0 33%;
  }
  .mobileexpand .inputlist input {
    background: wheat;
    box-shadow: 2px 2px 2px 2px silver;
    width: 70%;
    text-align: center;
  }
  .mobileexpand .inputlist {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .mobileexpand div {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .mobileexpand li {
    text-align: center;
  }
  .mobileexpand .time {
    color: cadetblue;
    font-weight: 600;
    text-align: center;
  }
  .mobileexpand .inputlist.balance input {
    background: indianred;
    color: wheat;
  }
  .mobileexpand div li:nth-child(1) {
    flex: 0 0 15%;
  }
  .mobileexpand div li:nth-child(2) {
    flex: 0 0 30%;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
    top: 0;
  }
  .mobileexpand .mobileopening .inputlist input {
    background: silver;
    color: snow;
    box-shadow: 2px 2px 2px 2px gainsboro;
  }
  .mobileexpand .mobilehead li:nth-child(2),
.mobileexpand .mobiletotal li:nth-child(2) {
    background: #806980;
  }
  .mobileexpand .mobiledivs li:nth-child(2) {
    background: linear-gradient(30deg, linen, #F3F2F6, #EFE6E6, linen, #F3F2F6, linen);
  }
  .mobileexpand .mobiledivs li {
    flex: 0 0 33%;
  }
  .searchdivinpay {
    flex-direction: column;
  }
  .searchdivinpay .form-control {
    width: 98%;
    margin: 1%;
  }
  .searchdivinpay button {
    margin: 1%;
    width: 98%;
  }
  .logindiv2 {
    margin-top: 5%;
  }
  .down {
    left: 85%;
  }
  .receiptpendingdiv {
    font-size: 15px;
  }
  .dashboard .div1 li:nth-child(1) {
    font-size: 15px;
    font-weight: 700;
  }
  .dashboard {
    width: 96%;
  }
  .dashboard h3 {
    font-size: 1.2em;
    text-align: center;
  }
  .clientdiv.active {
    left: 65%;
  }
  .mobile {
    display: block;
    cursor: pointer;
    font-size: 2em;
    transition: 0.8s ease-in;
    margin-right: 2%;
  }
  .navbar {
    margin: 0;
    padding: 0;
  }
  .navbar h5 {
    font-size: 1.2em;
    padding: 0.4em;
    text-align: left;
  }
  .navbar h5 span {
    float: right;
    height: 3px;
    width: 25px;
    background-color: white;
    box-shadow: -5px 6px white, 0 12px white;
    border-radius: 4px;
    transition: 1.2s ease;
    -webkit-transition: 1.2s ease;
    -moz-transition: 1.2s ease;
    -ms-transition: 1.2s ease;
    -o-transition: 1.2s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
  ul {
    position: absolute;
    width: 100%;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    box-shadow: 2px 3px 2px silver;
    flex-direction: column;
    transition: 0.9s ease-in;
    top: 80%;
    background: linen;
    border-bottom: 3px solid #806980;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }
  ul.active {
    margin-left: 0;
    opacity: 1;
    left: 0;
    transition: 0.9s ease;
    visibility: visible;
    top: 80%;
  }
  ul.active li {
    height: 20px;
    margin: 0;
    padding: 0.3em;
    font-family: serif;
  }
  .expand {
    overflow: auto;
  }
  .expand .expandhead li,
.expand .divs li {
    flex: 0 0 33%;
  }
  .cancel {
    float: right;
    margin-right: 2%;
    margin-top: -10%;
  }
  .cancel i {
    color: crimson;
  }
  .clienttable {
    display: none;
  }
  .mobileclienttable .lists {
    width: 100%;
    border-radius: 5px;
    box-shadow: 2px 3px 2px 2px silver;
    margin-bottom: 4%;
  }
  .mobileclienttable .lists h5 {
    text-align: center;
    background: #4b8aa3;
    color: wheat;
    border-radius: 5px;
    padding: 0.3em;
    font-weight: 700;
  }
  .mobileclienttable .flexall {
    display: flex;
    flex: 1;
  }
  .mobileclienttable .flex {
    display: flex;
    padding: 0.3em;
    width: 33%;
    margin-bottom: 3%;
    border-right: 2px solid gainsboro;
    flex-direction: column;
  }
  .mobileclienttable .flex li {
    margin: 1%;
    font-weight: 700;
  }
  .mobileclienttable {
    width: 100%;
  }
  .mobileclienttable .floatlist,
.mobileclienttable .floatlist1 {
    display: flex;
    flex: 1;
    width: 100%;
  }
  .mobileclienttable .floatlist strong {
    width: 70%;
  }
  .mobileclienttable .floatlist1 strong {
    width: 50%;
  }
  .mobileclienttable .floatlist input {
    border: none;
    background: none;
    font-weight: 600;
    flex: 1;
    width: 30%;
    font-family: cambria;
  }
  .mobileclienttable .flex:nth-child(2) li input {
    background: white;
  }
  .mobileclienttable .flex li input {
    width: 70%;
    background: wheat;
    box-shadow: 3px 3px 2px 2px silver;
    border-top: 2px solid peru;
    border-left: 2px solid peru;
  }
  .mobileclienttable .flex li.balance input {
    background: indianred;
    color: wheat;
    border-top: 2px solid wheat;
    border-left: 2px solid wheat;
  }
  .mobileclienttable .expandplus {
    position: absolute;
    margin-top: -25%;
    margin-left: 85%;
  }
  .mobileclienttable .expandforreceive {
    margin-top: -5%;
  }
  .mobileclienttable .expandplus.active {
    margin-top: 1%;
    z-index: 99;
  }
  .mobileclienttable .expand {
    margin-left: 1%;
    width: 100%;
    font-size: 15px;
    border-radius: 5px;
  }
  .mobileclienttable .clients {
    width: 98%;
    margin: 2% 1%;
    background: linear-gradient(20deg, linen, white);
    background-size: 10px 10px;
    border-radius: 20px;
    box-shadow: 2px 4px 4px 2px silver, 2px 3px 0 3px silver;
    transition: 0.9s ease;
  }
  .mobileclienttable .clients h5 {
    width: 100%;
    text-align: center;
    padding: 0.5em;
    font-family: calibri;
    font-weight: 600;
    color: white;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
  .mobileclienttable .clients:nth-child(3n) h5 {
    background: #4b8aa3;
  }
  .mobileclienttable .clients:nth-child(3n+1) h5 {
    background: #806980;
  }
  .mobileclienttable .clients:nth-child(3n+2) h5 {
    background: indianred;
  }
  .mobileclienttable .clients li {
    font-weight: 600;
    margin-left: 5%;
    font-style: normal;
    display: flex;
    font-family: calibri;
  }
  .clients li strong {
    flex: 0 0 40%;
    font-family: calibri;
    font-weight: 600;
  }
  .mobileclienttable .clients li.edit {
    text-decoration: underline;
    color: black;
    width: 90%;
    font-weight: 600;
    margin-bottom: 2%;
  }
  .mobileclienttable .clients li.status span.paid {
    color: teal;
  }
  .mobileclienttable .clients li.status span.half {
    color: saddlebrown;
  }
  .mobileclienttable .clients li.status span.none {
    color: #317ba0;
  }
  .mobileclienttable .clients li.status span.none .pay {
    font-size: 1em;
    font-style: italic;
    float: right;
  }
  .mobileclienttable .clients li .cancel {
    float: right;
    margin-right: 2%;
  }
  .mobileclienttable .clients li .cancel i {
    color: crimson;
  }
  .mobilepay {
    display: block;
  }
  .webpay {
    display: none;
  }
}
@media screen and (min-width: 700px) and (max-width: 900px) {
  .viewdata {
    margin-top: 0%;
  }
  .dashboard .head h3 {
    text-align: center;
  }
  .dashboard .div1 li {
    font-size: 1em;
  }
}
@media screen and (min-width: 900px) {
  .table .tablehead li,
.table .lists li {
    flex: 1;
  }
  .arrowdiv {
    position: fixed;
    z-index: 99999;
    top: 27%;
    height: 300px;
    left: 50%;
    width: 50%;
  }
  .dashboard .head h3 {
    text-shadow: 2px 3px 3px #4b8aa3;
  }
  .arrowdiv .arrowsign {
    position: relative;
    width: 60%;
    display: flex;
    flex: 1;
  }
  .arrowdiv p {
    font-size: 1.8em;
    padding: 0.2em;
    letter-spacing: 3px;
    font-weight: 600;
    color: black;
    text-align: center;
    font-family: cambria;
    text-shadow: 2px 3px 2px silver;
  }
  .arrowdiv button {
    background: white;
    color: #806980;
    padding: 0.2em;
    margin-left: 40%;
    border: none;
    font-size: 1.3em;
    font-weight: 700;
    box-shadow: 3px 3px 2px 2px silver, 2px 3px 3px 2px gainsboro;
  }
  .arrowdiv .arrowsign span {
    height: 30px;
    width: 30px;
    margin: 1%;
    margin-left: 2%;
    border-left: 10px solid #806980;
    border-bottom: 10px solid #806980;
    transform: rotate(45deg);
  }
  .arrowdiv.active .arrowsign span {
    -webkit-animation: arrowanimate 2s linear;
    animation: arrowanimate 2s linear;
  }
  .arrowdiv .arrowsign span:nth-child(even) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
  }
  .arrowdiv .arrowsign span:nth-child(odd) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }
  @-webkit-keyframes arrowanimate {
    50% {
      margin-left: -3%;
    }
  }
  @keyframes arrowanimate {
    50% {
      margin-left: -3%;
    }
  }
  .logindiv {
    width: 400px;
    margin-left: 35%;
    margin-top: 10%;
  }
  .logindiv2 {
    margin-top: 3%;
  }
  .dashboard h3 {
    text-align: center;
  }
  .dustbin span {
    position: absolute;
    margin-left: -30%;
    margin-top: -5%;
  }
  .dashboard h3 {
    font-size: 2.4em;
  }
  .expandplus {
    margin-left: -10%;
  }
  .mobilepay {
    display: none;
  }
  .webpay {
    display: block;
  }
  form .btn {
    margin-left: 45%;
  }
  li.status {
    font-size: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  li.status span.paid {
    color: teal;
  }
  li.status span.half {
    color: brown;
  }
  li.status span.none {
    color: blue;
  }
  .clientdiv.active {
    left: 89%;
  }
  .mobile {
    display: none;
  }
  .mobileclienttable {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
/*# sourceMappingURL=styles.css.map */
/*# sourceMappingURL=styles.css.map */
/*# sourceMappingURL=styles.css.map *//*# sourceMappingURL=styles.css.map */