/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: ERASDEMI;
  src: url('../fonts/ErasITC/ERASDEMI.TTF');
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
* {
  margin: 0px; 
  padding: 0px; 
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Poppins-Regular, sans-serif;
}

a {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #009EE2;
}

.SignUp:hover{
  text-decoration: none;
  color: #ea4335;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0px;
}

p {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul, li {
  margin: 0px;
  list-style-type: none;
}

input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

/* textarea:focus, input:focus {
  border-color: #0CC0DF !important;
  box-shadow: 0 0 5px rgba(0, 192, 223, 0.5);
} */

/* select:focus {
  border-color: #0CC0DF !important;
  box-shadow: 0 0 5px rgba(0, 192, 223, 0.5);
} */

/* Default styling for the select element */
.input100 {
  color: black; /* Default color for selected options */
}

/* Styling for placeholder text */
.input100 option:first-of-type {
  color: gray; /* Placeholder text color */
}

/* Additional styling to ensure placeholder is gray until selection */
.input100 option:first-of-type:checked {
  color: gray; /* Ensure color remains gray if still the selected value */
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-transform: uppercase;
}

.bg1 {background-color: #3b5998}
.bg2 {background-color: #1da1f2}
.bg3 {background-color: #ea4335}

/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wrap-login100 {
  width: 500px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/*------------------------------------------------------------------
[ Form ]*/
.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 39px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.label-input100 {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #333333;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 55px;
  background: transparent;
  padding: 0 7px 0 43px;
}

.input-custom
{
   padding: 0 45px 0 45px !important; /*top right bottom left*/
} 

/* modal input */

.input-custom-modal
{
   height: 40px !important;
   border-radius: 7px !important;
}  

/* Disabled textbox */
.disabled-custom-modal{
  color: #C0C0C0 !important;
  background-color: #F5F5F5 !important;
  border-color: #D3D3D3 !important;  
  pointer-events: auto !important;
  /* pointer-events: none !important; */
}

.input-custom-2
{
   padding: 0 57px 0 45px !important; /*top right bottom left*/
} 

.input100:focus + .focus-input100::before {
  width: 0;
}

.input100:focus + .focus-input100::after {
  color: #adadad;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #0d9dbc !important;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 16px;
  padding-bottom: 20px;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0d9dbc  !important;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  color: #0d9dbc;
}

/*------------------------------------------------------------------
[ input old ]*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 7px !important;
  padding: 0 60px 0 60px;
}

.login-input{
  padding: 0 60px 0 65px;
}

.inputcuz {
  background: transparent;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login100-form-btn {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(to right, #93D4EA 0%, #16B6CE 51%, #1C58A1 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.login100-form-btn:hover {
  /* background-position: 100% 0; */
  /* background-size: 300% 100%; */
  background: #009EE2;
}

.login100-form-btn i {
  font-size: 15px;
  margin-left: 5px;
  padding-left: 5px;
  border-left: 2px solid rgba(255,255,255,0.5);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.login100-form-btn:hover i {
  padding-left: 10px;
}

.login100-form-btn::after {
  content: "\f1d8";
  font-family: FontAwesome;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  display: block;
  position: absolute;
  top: 14px;
  right: 18px;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.login100-form-btn:hover::after {
  opacity: 1;
  right: 25px;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 70px 15px 33px 15px;
  }
}

/* ------------------------------------------------------------------ icon color Custom */

   .primary-icon {
    color: #0D9DBC !important;
    font-size: 16px;
    cursor:pointer; 
    text-decoration: none !important;
  }

  .primary-icon:hover {
    color: #009EE2 !important;
    font-size: 16px;
    cursor:pointer; 
    text-decoration: none !important;
  }
  
  .red-icon {
    color: #d33 !important;
    font-size: 16px;
    cursor:pointer; 
    text-decoration: none !important;
  }

  .red-icon:hover {
    color: #C62E2E !important;
    font-size: 16px;
    cursor:pointer; 
    text-decoration: none !important;
  }

  .gray-icon {
    color: #7f7f7f !important;
    font-size: 16px;
    cursor:not-allowed !important;
  }
  .wht-icon{    
    color: #096074 !important;
    font-size: 16px;
    cursor:pointer; 
    text-decoration: none !important;
  }  
  .wht-icon:hover {    
    color: #1387a1 !important;
    font-size: 16px;
    cursor:pointer; 
    text-decoration: none !important;
  }

   /*-------------------------------- single form container --------------------------------------*/
  .custom-container {
      margin: 3vh auto !important;
      max-width: 170vh;
      padding-bottom: 3vh;
      padding-top: 3vh;
  }

  /*-------------------------------- custom-table --------------------------------------*/
  .custom-table-2 {
    text-align: center !important;
    font-size: 75% !important;
    align-items: center !important;
  }

  .custom-table-2, .custom-table-2 th, .custom-table-2 td {
    vertical-align: middle !important;
    align-items: center !important;
  }

  
  /*--------------------------------side bar--------------------------------------*/
  #accordionSidebar{
    background-color: #16B6CE !important;
    /* background: linear-gradient(to bottom, #fff 0%, #93D4EA 5%, #16B6CE 20%, #1C58A1 100%); */
  }

  .toogle-custom {
    color: #0D9DBC !important;
  }
  
  .toogle-custom:hover {
    color: #009EE2 !important;
  }

  /*-------------------------------- profile preview--------------------------------------*/
  .preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    border-radius: 50%;
    background-color: #fff;
    height: auto;
    width: 100%;
    max-width: 204px;
    aspect-ratio: 1;
    border: 1px solid #0d9dbc;
    object-fit: cover;
}
.crop-preview {
    object-fit: cover;
    width: 100%;
    max-width: 204px;
    height: auto;
}
@media (max-width: 600px) {
    .crop-preview {
      max-width: 204px !important;
    }
}
@media (max-width: 400px) {
    .crop-preview {
      max-width: 204px !important;
    }
}

.picture-preview-list{
    border-radius: 50%;
    background-color: #fff;
    height: 50px;
    width: 50px;
    aspect-ratio: 1;
    border: 1px solid #0d9dbc;
}

.picture-preview-top-nav{
  border-radius: 50%;
  background-color: #fff;
  height: 35px;
  width: 35px;
  aspect-ratio: 1;
  border: 1px solid #0d9dbc;
}
/*-------------------------------- item preview--------------------------------------*/
.item-preview-container {
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  /*width: 8cm; /* Updated width */
  /*height: 13cm; /* Updated height */
  overflow: hidden;
  border: 1px solid #ccc;
  margin: auto;
  border-radius: 1%;

  width: 100%;
  height: 100%;
  max-width: 8cm;
  max-height: 13cm;
}

.item-crop-preview {
  object-fit: cover;
  width: 100%;
  height: auto;  
  max-width: 8cm;  
}

.item-crop-preview {
  object-fit: cover;
  width: 100%;
  max-width: 8cm;
  height: auto;
}
@media (max-width: 600px) {
  .item-crop-previeww {
    max-width: 8cm !important;
  }
}
@media (max-width: 400px) {
  .item-crop-preview {
    max-width: 8cm !important;
  }
}

.item-preview-list{
  border-radius: 3%;
  background-color: #fff;
  height: 85px;
  width: 60px;
  border: 1px solid #ececec;
}

/*-------------------------------- Bank preview--------------------------------------*/
.bank-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: auto;
  border-radius: 1%;
  background-color: #fff;
  height: auto;
  width: 100%;
  max-width: 204px;
  aspect-ratio: 1;
  border: 1px solid #ccc;
  object-fit: cover;
}

.bank-crop-preview {
  object-fit: cover;
  width: 100%;
  max-width: 204px;
  height: auto;
}

.bank-crop-preview {
  object-fit: cover;
  width: 100%;
  max-width: 204px;
  height: auto;
}

@media (max-width: 600px) {
  .bank-preview {
    max-width: 204px !important;
  }
}
@media (max-width: 400px) {
  .bank-preview {
    max-width: 204px !important;
  }
}

.bank-preview-list{
  border-radius: 3%;
  background-color: #fff;
  height: 50px !important;
  width: 50px !important;
  border: 1px solid #ececec;
}

/*-------------------------------- Square preview--------------------------------------*/
.square-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: auto;
  border-radius: 1%;
  background-color: #fff;
  height: auto;
  width: 100%;
  max-width: 204px;
  aspect-ratio: 1;
  border: 1px solid #ccc;
  object-fit: cover;
}

.square-crop-preview {
  object-fit: cover;
  width: 100%;
  max-width: 204px;
  height: auto;
}

.square-crop-preview {
  object-fit: cover;
  width: 100%;
  max-width: 204px;
  height: auto;
}

@media (max-width: 600px) {
  .square-preview {
    max-width: 204px !important;
  }
}
@media (max-width: 400px) {
  .square-preview {
    max-width: 204px !important;
  }
}

.square-preview-list{
  border-radius: 3%;
  background-color: #fff;
  height: 50px !important;
  width: 50px !important;
  border: 1px solid #ececec;
}

/* ------------------------------------------------------------------ drag and drop */
.drag-drop-area {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;            
  background-color: #f3f3f3;
}
.drag-drop-area.dragover {
  border-color: #0d9dbc;
  background-color: #f1f1f1;
}

/* ------------------------------------------------------------------ icon color Custom */
.a-link {
  color: #0D9DBC !important;
  text-decoration: none !important;
  cursor: pointer;
}

.a-link:hover {
  color: #009EE2 !important;
  text-decoration: none !important;
  cursor: pointer;
}

/* ------------------------------------------------------------------ hide show pass word to edge */
  
  input[type="password"]::-ms-reveal,
      input[type="password"]::-ms-clear {
          display: none !important;
      }

/* ------------------------------------------------------------------ Customize the scrollbar track */

/* Customize the scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px; /* Adjusted width for a thinner scrollbar */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #0D9DBC, #009EE2); /* Gradient background */
  border-radius: 10px; /* Rounded corners */
  border: 2px solid #fff; /* White border */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Light grey background */
  border-radius: 10px; /* Rounded corners for a rounded track */
  border: 1px solid #ddd; /* Light grey border */
}

/* Customize the thumb on hover for WebKit browsers */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #0D9DBC, #0D9DBC); /* Darker gradient on hover */
}

/* Customize the scrollbar for Firefox */
html {
  scrollbar-width: thin; /* Thin scrollbar */
  scrollbar-color: #0D9DBC #f1f1f1; /* Thumb color and track color */
}


/* ------------------------------------------------------------------ Search total label */
.search_total {
  /* color: red !important; */
  
  font-family: Arial;
  font-size: 14px;
  color: #adadad;
  /* text-transform: uppercase; */
}

/* ------------------------------------------------------------------ No record to display small */

.center-container-no-records {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    height: 100%; /* Full height of the container */
    /* gap: 20px; Space between the image and button */
}

.No-Records-Gray {
    max-width: 70%; /* Set maximum width of the image */
    height: auto; /* Maintain aspect ratio */
}

.add-button-record {
    margin-top: 10px; /* Space between image and button */
}

/* ------------------------------------------------------------------ Splash Screen */

.welcome {
  max-width: 25%; /* Set maximum width of the image */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image horizontally */
}

#welcomeScreen.hidden {
  opacity: 0;
  visibility: hidden;
}

#welcomeScreen {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  height: 80vh; /* Full viewport height */
  width: 90vw; /* Full viewport width */
  transition: opacity 1s ease-in-out;  
  z-index: 1000;  
  position: fixed;
}
/* ------------------------------------------------------------------ Splash Screen */

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  /* background-color: rgba(231, 231, 231, 0.7);  */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .circle {
  width: 15px;
  height: 15px;
  margin: 5px;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.loader .circle:nth-child(1) {
  background-color: #1B5DA3;
}

.loader .circle:nth-child(2) {
  background-color: #17A1C4;
  animation-delay: 0.2s;
}

.loader .circle:nth-child(3) {
  background-color: #50C4DB;
  animation-delay: 0.4s;
}

.loader .circle:nth-child(4) {
  background-color: #8ED3E9;
  animation-delay: 0.6s;
}

@keyframes bounce {
  to {
    transform: translateY(-20px);
  }
}
/*------------------------------------------------------------------[ Loader spinner */
.loading-spin {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent white */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column; /* Center text below the spinner */
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  margin: 0 !important; /* Reset margin */
  padding: 0 !important; /* Reset padding */
}

.spinner {
	border: 6px solid #f3f3f3; /* Lighter background for spinner */
	border-top: 6px solid #17A1C4; /* Blue color for top edge */
	border-radius: 50%; /* Circular shape */
	width: 50px;
	height: 50px;
	animation: spin 0.8s linear infinite; /* Slightly faster rotation */
	background: none; /* Removed gradient from the spinner */
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	margin-top: 15px;
	font-size: 18px;
	color: #ffffff; /* Darker color for text */
	letter-spacing: 1px;
	animation: loading-text 1.5s ease-in-out infinite;
}

@keyframes loading-text {
	0% { opacity: 0.3; }
	50% { opacity: 1; }
	100% { opacity: 0.3; }
}

.dot-animation::after {
	content: " .";
	animation: dot-blink 1.5s infinite steps(1);
}

@keyframes dot-blink {
	0%, 100% { content: " ."; }
	33% { content: " .."; }
	66% { content: " ..."; }
}

 /* Print style for landscape */
 @media print {
  @page {
      size: landscape;
      margin: 0; 
  }
  body {
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
      margin: 0; 
  }
}