
/** Alert Dialog Success, Warning, Error, Confirm */
.admn_acnt_sve_alrt_sctn{
	width:100%;
	height:100%;
	display:none;
	position:fixed;
	top:0;
	left:0;
	z-index:10000;
	background-color:rgba(255,255,255,.6);
}
.admn_acnt_sve_alrt_sctn_comn{
	width:100%;
	height:100%;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.admn_acnt_sve_alrt_sctn_comn_itm1{
	width:400px;
	height:60px;
	display:inline-block;
	background-color:#FFFFFF;
	border:1px solid #DEDEDE;
	border-radius:3px;
}
.admn_acnt_sve_alrt_sctn_comn_itm_rw3{
	width:100%;
	height:100%;
	display:inline-block;
}
.admn_acnt_sve_alrt_sctn_comn_itm_rw1_icn1{
	width:60px;
	height:60px;
	display:inline-block;
	background-color:#999999;
	float:left;
	padding:6px 6px 6px 6px;
}
.admn_acnt_sve_alrt_sctn_comn_itm_rw1_icn_img{
	width:100%;
	height:100%;
	display:inline-block;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	background-image:url('../images/alrt_icn.png');
}
.admn_acnt_sve_alrt_sctn_comn_itm_rw1_txt2{
  width:calc(100% - 60px);
  height:60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align:center;
  float:left;
  padding:0 10px 0 10px;
  background: #b0a6a626;
  border: 1px solid #00000030;
  color: #111111;
}
/** Dialog Start */
.dialog-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.dialog-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.close-button {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.close-button:hover {
    color: #000;
}

/** Dialog End */