@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");
* {
  font-family: "Rubik", sans-serif;
}
body {
  background-color: white;
}
.form-control:disabled {
  background-color: #e9ecef36;
}
.logo-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
#logo {
  max-width: 200px;
  margin: auto;
  display: block;
}

#cash {
  max-width: 300px;
   margin: auto;
  display: block;
}

.wrap {
  position: relative;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}