
/* Error Page  */
.background-svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2D3748;
  background: url(/assets/app/img/errors/bg-desk.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.background-svg img {
  max-height: calc(100vh - 100px);
}

.action_button {
  position: absolute;
  width: 100%;
  bottom: 60px;
  text-align: center;
}

.swal-sm {
  width: 24em;
}

.swal-sm button {
  padding: 0.25rem 0.5rem;
  font-size: 0.76563rem;
  border-radius: 2px;
  min-width: 65px;
}


@media (max-width: 768px) {
  .background-svg {
    background: url(/assets/app/img/errors/bg-sm.svg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top !important;
  }
}