.cmodal {
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.cmodal .emphasize {
  font-weight: 600;
  color: #212529;
}
.cmodal .header-row {
  display: flex;
  padding: 20px;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0.02rem;
  color: #2f3747;
  justify-content: space-between;
}
.cmodal .close-modal {
  cursor: pointer;
}
.cmodal .content-1 {
  background-color: #eef2f6;
  padding: 20px 20px 50px 20px;
  overflow-y: scroll;
  max-height: 35vh;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.15);
}
.cmodal .content-2 {
  background-color: white;
  padding: 20px;
  border-color: #e3e8ef;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
}
.cmodal .table-title {
  background-color: aliceblue;
  padding-left: 5px;
  padding: 5px;
  font-size: 16px;
}

.cmodal .content-1 th {
  background-color: aliceblue;
  border: none;
  color: #ccc;
}

.cmodal .content-1 table {
  margin: 0px;
}

.cmodal .content-1 td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  background-color: white;
  border-bottom: none;
  border-top: none;
}

.cmodal .content-1 td > span:nth-child(2) {
  font-weight: 600;
  color: #d00;
  margin-left: 15px;
}

.cmodal .footer {
  padding: 20px;
}

.cmodal .close-modal-btn {
  display: block;
  padding: 10px 30px;
  border: 2px solid #989898;
  background-color: #d4e3f2;
  border-radius: 5px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  letter-spacing: 0.02rem;
  color: #748094;
}
.cmodal .three-dots {
  cursor: pointer;
}
.cmodal .red-btn {
  display: block;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  letter-spacing: 0.03rem;
  color: #ffffff;
  border: none;
  background: #bf4949;
  border-radius: 5px;
  padding: 20px;
}
.cmodal .blue-btn {
  display: block;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  letter-spacing: 0.03rem;
  color: #ffffff;
  border: none;
  background: #3c7dc6;
  border-radius: 5px;
  padding: 20px;
}
.cmodal .input {
  background: #eef2f6;
  border: 1px solid #e3e8ef;
  box-sizing: border-box;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 10px;
}
.space-evenly {
  display: flex;
  justify-content: space-evenly;
}
.hidden {
  visibility: hidden;
}
