.modal {
  position: fixed;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-card {
  width: 705px;
  height: 272px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0px 4px 16px rgba(20, 30, 43, 0.06), 0px 30px 30px -30px rgba(20, 30, 43, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-card-content {
  width: 537px;
  height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.modal-title {
  color: #E36357;
  font-weight: 700;
  font-size: 14px;
}

.modal-description {
  color: #E36357;
  font-weight: 400;
  font-size: 12px;
  max-width: 481px;
}

.modal-actions-container {
  display: flex;
  flex-direction: row;
  margin-top: 48px;
}

.modal-actions-container input:first-child {
  margin-right: 32px;
}

.hidden {
  display: none;
}

.modal-card-disclaimer-container {
  display: flex;
  flex-direction: row;
}

.modal-card-texts-container {
  display: flex;
  flex-direction: column;
}

.delete-warning {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

.delete-cross {
  position: relative;
  top: -90px;
  right: 50px;
}
