.modal-expert--danger {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9;
  background-color: rgba(0,0,0,.5);
}

.modal-expert--dialog {
  background-color: #D41E25;
  color: white;
  max-width: 191px;
  padding: 14px 14px;
  height: max-content;
  -webkit-box-shadow: 7px 7px 8px -6px #000000;
  box-shadow: 7px 7px 8px -6px #000000;
}

.modal-expert--backdrop {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: -1;
}

.modal-expert--danger.show {
  display: block;
}

.modal-expert--danger .modal-content,
.modal-expert--danger .header,
.modal-expert--danger .footer {
  background-color: #D41E25;
}

.modal-expert--danger .header {
  padding-bottom: 10px;
}

.modal-expert--danger .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

