@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
  --blue: #100CDA;
  --white: white;
  --galaxy: #070B1B;
  --grey100: rgba(136, 136, 136, 1.0);
  --grey10: rgba(136, 136, 136, 0.1);
  --grey20: rgba(136, 136, 136, 0.2);
  --grey40: rgba(136, 136, 136, 0.4);
  --red80: rgba(255, 0, 0, 0.80);
  --red20: rgba(255, 0, 0, 0.20);
  --green80: rgba(9, 191, 16, 0.80);
  --green20: rgba(9, 191, 16, 0.20);
}

body {
  font-family: Poppins;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: black;
  background-color: var(--white);
  transition: all 0.5s ease;
}

header {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 20px 10px 20px;
  background-color: var(--white);
  /* position: fixed;
  top: 0px;
  width: 100vw; */
}
.header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

main {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex-grow: 1;
  padding: 20px;
  gap: 10px;
}
footer {
  display: flex;
  flex-direction: row;
  padding: 5px 20px;
  padding-bottom: 15px;
  min-height: 50px;
  gap: 10px;
  /* position: fixed;
  bottom: 0px;
  width: 100%; */
}

h1 {
  margin: 0;
  font-size: 22px;
}
h2 {
  margin: 0;
  font-size: 18px;
}
h3 {
  margin: 0;
  font-size: 16px;
}
p {
  margin: 0;
  line-height: 150%;
}
a {
  font-size: 14px;
  line-height: 120%;
}
.a2 {
  font-size: 12px;
}
.a3 {
  font-size: 10px;
}
.agrey {
  color: var(--grey100);
}
.abold {
  font-weight: bold;
}
.icon16 {
  width: 16px;
  height: 16px;
}
.icon32 {
  width: 32px;
  height: 32px;
}
.icon40 {
  width: 40px;
  height: 40;
}

.emoji50 {
  font-size: 50px;
}
.emoji32 {
  font-size: 32px;
}

.iconKategori {
  width: 32px;
}

.boxGrey {
  padding: 10px 15px;
  background-color: var(--grey10);
  border-radius: 10px;
}

.buttonDiv {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
button:hover {
  scale: 0.98;
  cursor: pointer;
}
.button1 {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 100px;
  border: 0;
}
.button2 {
  background-color: var(--grey20);
  color: var(--galaxy);
  border-radius: 100px;
  border: 0;
}
.buttonGrey {
  padding: 10px 20px;
  background-color: var(--grey20);
  color: var(--galaxy);
  border-radius: 10px;
  font-size: 15px;
  border: 0;
  flex-grow: 1;
  font-weight: bold;
}
.buttonSmall {
  padding: 8px 15px;
  font-size: 13px;
  font-weight: bold;
}
.buttonBig {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  min-height: 44px;
}
#buttonMenu {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: var(--grey20);
  border: 0;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
}
.buttonCTA {
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 100px;
  font-size: 15px;
  font-weight: bold;
  border: 0;
  flex-grow: 1;
  transition: all 0.1s linear;
}
.buttonCTA:hover {
  scale: 0.98;
}
.buttonLeft {
  padding: 10px 20px;
  background-color: var(--grey20);
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}
.button-delete {
  padding: 5px 10px;
  color: var(--red80);
  background-color: var(--red20);
  border: 0;
}
.buttonFooter {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--grey20);
}
.buttonHapus {
  color: var(--red80);
  border: 0;
  font-size: 14px;
  font-weight: 600;
  background: none;
}

.chip {
  padding: 5px 15px;
  background-color: var(--grey20);
  font-size: 10px;
  color: var(--galaxy);
  width: fit-content;
  border-radius: 50px;
}
.chip a {
  font-size: 12px;
}


#overlay {
  width: 100vw;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transition: all 0.1s linear;
}
#blackArea {
  flex-grow: 1;
  width: 100%;
}
.modal {
  height: fit-content;
  bottom: 0;
  background-color: var(--white);
  border-radius: 20px 20px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-items: stretch;
  gap: 10px;
  padding: 20px;
  transition: all 0.4s linear;
  max-height: 80%;
  transition: all 0.4s ease;
}
.modal-center {
  text-align: center;
  justify-content: center;
}
.modal-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.modal-icon-hapus {
  width: 100px;
  align-self: center;
}
.modal h2 {
  text-align: center;
}
.modal-subtitle {
  text-align: center;
}
.icon-alert {
  width: 80px;
  align-self: center;
}

.inputDiv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 20px;
  gap: 20px;
  background-color: var(--grey10);
  border-radius: 10px;
  align-items: center;
  min-height: 44px;
  border: 2px solid var(--grey10);
}
.inputDiv:hover {
  border: 2px solid var(--grey100);
}
.input2col {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.inputGrey {
  background-color: var(--grey20);
  padding: 5px 15px;
  border-radius: 10px;
}
input {
  border: 0;
  font-size: 14px;
  background: none;
  outline: none;
  flex-grow: 1;
  text-align: right;
  height: 100%;
  align-items: center;
  justify-items: right;
  justify-content: right;
}

select {
  border: 0;
  font-size: 14px;
  background: none;
  flex-grow: 1;
  outline: none;
  text-align: right;
  height: 100%;
  align-items: center;
}
label {
  font-size: 14px;
  color: var(--grey100);
}
.progressBar {
  display: flex;
  border: 0;
  background-color: var(--grey10);
  border-radius: 10px;
  width: 100%;
  height: 10px;
}
.progress {
  display: block;
  background-color: var(--blue);
  border: 0;
  border-radius: 10px;
}