@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Prompt', sans-serif;
}


.container {
  width: 100%;
  padding: 20px;
}

.box {
  width: 100%;
  background: #f2f2f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #adadad;
  margin-top: 10px;
  text-decoration: none;
}

.summary {
  display: flex;
  flex-direction: row;
  /* justify-content: space-around; */
  width: 100%;
  margin-top: 10px;
  /* align-items: center; */
  text-decoration: none;
}

.sum-left {
  width: 50%;
  margin-right: 10px;
  background: #e3ffd2;
  border-radius: 10px;
  border: 1px solid #adadad;
  padding: 10px;
  /* align-items: center; */
  text-align: center;
  text-decoration: none;
}

.sum-right {
  width: 50%;
  margin-left: 10px;
  background: #ffe5e5;
  border-radius: 10px;
  border: 1px solid #adadad;
  padding: 10px;
  /* align-items: center; */
  text-align: center;
  text-decoration: none;
}

.tag {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* border: 1px solid red; */
  justify-content: space-around;
  margin-top: 10px;
}

.tag-box {
  width: 30%;
  border: 1px solid #adadad;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: #f2f2f2;
}

.tag-box.active {
  background: #e3ffd2;
}

.statement {
  width: 100%;
  padding: 10px;
  display: flex;
  border: #adadad 1px solid;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  background: #f2f2f2;
  align-items: center;
}

.stateshow {
  display: none;

}

.stateimg {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  justify-content: center;
  display: flex;
}

.stateimg img {
  width: 70%;
  object-fit: contain;
  border-radius: 10px;
}


.text-danger {
  color: red;
  font-size: 2rem;
}

.text-success {
  color: green;
  font-size: 2rem;
}

.text-gray {
  color: #adadad;
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #adadad;
  border-radius: 5px;
  font-size: 1rem;
  outline-style: none;
  outline: none;
  outline-width: 0;
}

.upload-image {
  width: 100%;
  height: 20rem;
  padding: 10px;
  background: #f2f2f2;
  border: 1px dashed #adadad;
  border-radius: 5px;
  font-size: 1rem;
  outline-style: none;
  outline: none;
  outline-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload {
  display: flex;
  justify-content: space-around;
  width: 100%;
  background: yellow;
}

.btn {
  /* background: yellow; */
  /* border: 1px solid #adadad; */
  border-radius: 5px;
  width: fit-content;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  text-decoration: none;

}

.btn-success {
  background: green;
  color: white;
}

.btn-cancel {
  background: #adadad;
  color: white;
}

.is-invalid{
  border: 1px solid red !important;
}