﻿.modal-content {
  left: 0;
  transition: all 0.3s ease-out;
  position: absolute;
}

.modal-toleft {
  left: calc(-100% - 30px);
}

.modal-block-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #0000000d;
  display: none;
}

.modal-lookup,
.modal-child-form {
  position: absolute;
  left: 200px;
  transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}
.modal-lookup.show,
.modal-child-form.show {
  left: 0;
  visibility: visible;
  opacity: 1;
}

.warning-circle {
  background: #ffc7c7;
  border-radius: 41px;
  width: 30px;
  height: 30px;
  color: #dd0000;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
  margin-right: 15px;
}

@media (min-width: 576px) {
  .modal-sm {
    --bs-modal-width: 345px;
  }
}
.modal-dialog-expand-animation {
  transition: all 0.1s ease-out !important;
}

.modal-height-full {
  height: 100%;
}
