/* loading */
.loader {
	font-size: 50px !important;
	color: #999;
	z-index: 9999999;
	margin-top: 36px;
}

.loader-bg {
	position: fixed; top: 50%; left: 50%;
    width: 150px; height: 140px;
	background-color: #000;
	z-index: 9999998;
	opacity: 0.8;
	text-align: center;
	display: block;
    margin: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
	vertical-align: middle;
	border-radius: 5px;
}

.loader-text {
	font-size: 14px;
	color: #999999;
	margin-top: 15px;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #dee2e6 !important;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.form-container {
    width: 800px;
    /*max-height: 90vh;*/
    background: white;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.step { display: none; }
.active { display: block; }
.steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.step-item {
    display: flex;
    align-items: center;
}
.step-icon-pc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d3d3d3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s;
    margin-right: 10px;
}
.step-icon-pc.active {
    background: #343a40;
    color: white;
}
.step-icon-mobile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d3d3d3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s;
    margin-right: 10px;
}
.step-icon-mobile.active {
    background: #343a40;
    color: white;
}
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

body {
    padding-top: 60px; /* Adjust for fixed navbar */
	background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.navbar-brand img {
    height: 40px; /* Adjust height as needed */
    width: auto;
}

.background {
	background-image:url('../img/bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-attachment: fixed;
}

.required {
	color: red;
}