/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo svg {
  width: 38px;
  height: 20px;
}

.app-brand-text.demo {
  font-size: 1.25rem;
  letter-spacing: 0.15px;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}
/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}
.table .thead-light th {
    color: #ffffff !important;
    background: linear-gradient(90deg, rgba(56, 71, 117, 1) 26%, rgba(25, 42, 89, 1) 65%) !important;
    border-color: #f5f6f8 !important;
    font-size:12px;
}

.table tr:nth-child(odd){ 
  background-color: #f5f5f5;  
}

.table tbody tr td i{ font-size:13px; }
.table tbody tr td div{ font-size:12px; line-height:1.8; }




.element {
  animation: myAnim 2s linear 0s 1 normal none;
}

@keyframes myAnim {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 0 50%;
	}

	10% {
		transform: rotate(2deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-4deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(4deg);
	}

	80% {
		transform: rotate(-2deg);
	}

	90% {
		transform: rotate(2deg);
	}
}



.acsalertboxmain{ 
background-color: #00000078; 
position: fixed;
top: 0;
left: 0;
z-index: 999999;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
display:none;

}
.acsalertboxmain .acsalertbox{ 
   background-color: #fff; position: absolute; width: 350px; border-radius: 10px; padding: 15px 30px; top: 30px; display: flex; right: 20px; display:none;
}
.acsalertboxmain .acsalertbox .msgimg{   
    width: fit-content; 
	align-items: center;
    display: flex;
}
.acsalertboxmain .acsalertbox .msgimg i{  
	color: #002c93;
	font-size: 40px; 
}

.acsalertboxmain .acsalertbox .msgview{   
    font-size: 14px;
    margin-left: 10px;
    align-items: center;
    display: flex;
} 
 
 

.acsalertboxmain .acswarningalertbox{ 
   background-color: #fff; position: relative; width: 350px; border-radius: 10px; padding: 20px 30px; top: 30%; margin:auto; display:none;
}
.acsalertboxmain .acswarningalertbox div{ 
       margin-bottom: 10px !important;
	   text-align: center;
}
.acsalertboxmain .acswarningalertbox .msgwarningimg{   
    width: fit-content;  
	margin:auto;
     
}
.acsalertboxmain .acswarningalertbox .msgwarningimg i{  
	color: #e20505;
	font-size: 40px; 
}

.acsalertboxmain .acswarningalertbox .msgwarningview{   
    font-size: 14px;  
} 
.acsalertboxmain .acswarningalertbox .msgwarningviewtitle{   
    font-size: 16px;  
} 
.acsalertboxmain .acswarningalertbox .alertwarningmsgbtn{   
   background-color: #cd1e1e; color: #fff; padding: 4px; border-radius: 5px; margin-top: 30px; cursor: pointer; text-transform: uppercase;
} 



/*---------------------------------------Modal Popup Start------------------------------------------------*/

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: unset;
}

.modal-content {
  background-color: #fff;
	margin: auto;
	top: 5%; 
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  max-height: 750px;
}

/* Header styles */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
	background-color: #202b48;
	color: #fff;
}

.modal-header h4 {
  margin: 0;
  color: #fff
}

.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
}

/* Body styles */
.modal-body {
  overflow-y: auto;
  flex-grow: 1;
  max-height: calc(100% - 120px); /* Adjusted for header + footer */
  padding: 5px;
  margin-top: 20px;
}
.modal-body .row{ margin:0px; }
 

/* Footer styles */
.modal-footer {
  display: flex; 
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
 
/* Responsive styles */
@media (max-width: 600px) {
  .modal-content {
    width: 90%;
    height: 80%;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .modal-body p {
    font-size: 12px;
  }
 
}

.cke_dialog{ z-index: 99999 !important; }
/*cke_browser_webkit cke_ltr*/
.popup-close{ cursor:pointer; }

/*--------------------------------------Modal Popup End---------------------------------------------------*/



/*--------------------------------------Notification Start---------------------------------------------------*/
 .notificationmain {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999999;
  }
  .flow-content{width: 100%;}
  .notificationchild {
    background-color: #fd7b01;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 5px;
    position: relative;
  }

  .notificationchild a {
    color: #fff;
    font-weight: 500;
  }

  .notificationclose {
    position: absolute;
    right: 7px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    /* top: 2px; */
  }
  .toppill.show{background: red !important;}

/*--------------------------------------Notification End---------------------------------------------------*/

/*------------------------------------------ responsive css Start ------------------------------------------*/

 @media(max-width:576px){
  .content-wrapper  .main-booking-acs{
    padding-top:0px !important;
  }
}

/*------------------------------------------ responsive css End ------------------------------------------*/































