/*
 * Bootbox Backdrop
 * 
 * Date: 20 May 2025
 * 
 * Copyright 2025 Wireless Estimator.
 * All rights reserved.
 */

.bootbox-backdrop {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: fixed;
  opacity: 0;
}

.bootbox-backdrop.in {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}
