@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700&display=swap");

.confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  box-sizing: border-box;

  opacity: 0;
  animation-name: confirm---open;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.confirm--close {
  animation-name: confirm---close;
}

.confirm__window {
  width: 100%;
  max-width: 600px;
  background: white;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

  opacity: 0;
  transform: scale(0.75);
  animation-name: confirm__window---open;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
}

.confirm__titlebar,
.confirm__content,
.confirm__buttons {
  padding: 1.25em;
}

.confirm__titlebar {
  background: #222222;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.confirm__title {
  font-weight: bold;
  font-size: 1.1em;
}

.confirm__close {
  background: none;
  outline: none;
  border: none;
  transform: scale(2.5);
  color: #ffffff;
  transition: color 0.1s;
}

.confirm__close:hover {
  color: #ff0000;
  cursor: pointer;
}

.confirm__content {
  line-height: 1.8em;
}

.confirm__buttons {
  background: #eeeeee;
  display: flex;
  justify-content: flex-end;
}

.confirm__button {
  padding: 0.4em 0.8em;
  border: 2px solid #009879;
  border-radius: 5px;
  background: #ffffff;
  color: #009879;
  font-weight: bold;
  font-size: 1.1em;
  font-family: "Noto Sans", sans-serif;
  margin-left: 0.6em;
  cursor: pointer;
  outline: none;
}

.confirm__button--fill {
  background: #009879;
  color: #ffffff;
}

.confirm__button:focus {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

@keyframes confirm---open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes confirm---close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes confirm__window---open {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* #mainConfirmBody{
    display: flex;
    background-color: grey;
    width: 50%;
    height: 30%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#confirmButtonsRow{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 20px;
}

#confirmCheckBox{
    display: flex;
    justify-content: center;
}

#modalCanvas{
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 3;

} */

#confirmCancel {
  background-color: red;
  margin: 10px;
  padding: 40px;
}

#confirmAccept {
  background-color: green;
  margin: 10px;
  padding: 40px;
}
