.dialog-content {
  display: flex;
  flex-direction: column;
  background: #eeeeee;
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  align-items: center;
  padding: 20px 30px;
}
#errorPopupCollision {
  top: 25%;
  background: none;
  border: none;
  outline: none;
  animation: fadeIn 0.5s;
}
.dialog-button {
  padding: 2px 20px;
  font-family: Amelia Roboto, sans-serif;
  font-size: 14px;
  margin: 20px;
  background-color: #265CF2;
  color: #ffffff;
  border-radius: 6px;
  border: 1px solid #265CF2;
  padding: 8px 20px;
  cursor: pointer;
}
.dialog-button:hover {
  background-color: rgba(38,92,242, 0.8);
}
#errorPopupCollision > header {
}
#errorPopupCollision > header > #closeButton {
  cursor: pointer;
  top: 8px;
  right: 12px;
  background: transparent !important;
  border: none;
  position: absolute;
  /*font-family: amelia-icons !important;*/
  /*font-style: normal;*/
  /*font-weight: 400;*/
}
#errorPopupCollision > header > #closeButton:active {
  border: none;
  outline: 0;
}

#myConfirm {
  top: 25%;
  background: none;
  border: none;
  outline: none;
  animation: fadeIn 0.5s;
}
.dialog-content #text > b {
  font-weight: bold;
}
.dialog-content #footer {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
#btnCancel {
  background-color: #ff8888;
  border: 1px solid #ff8888;
}
#btnCancel:hover {
  background-color: rgba(255,136,146,0.8);
}


@keyframes fadeIn {
  from {opacity: 0; }
  to {opacity: 1; }
}

/*@media only screen and (max-width: 767px) {*/
  /*#errorPopupCollision {*/
    /*left: auto;*/
    /*right: auto;*/
    /*transform: translate(-15px);*/
  /*}*/
/*}*/
