



/*//////////////////////////////////////////////////////////////////
[ 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'); 
}

/*//////////////////////////////////////////////////////////////////
[ 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: #57b846;
}

/*---------------------------------------------*/
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: #28a745 !important;
}

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: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

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

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

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


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

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}




/*//////////////////////////////////////////////////////////////////
[ 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: #9053c7;
  background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
  background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
  background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
  background: linear-gradient(-135deg, #c850c0, #4158d0);
}

.less-padding{
  padding: 50px 100px 33px 95px !important;
}

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

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 177px 130px 33px 95px;
}

.wrap-login50 {
  width: 960px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 130px 50px 95px;
}

/*------------------------------------------------------------------
[  ]*/
.login100-pic {
  width: 316px;
}

.login100-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 290px;
}

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

  width: 100%;
  display: block;
  padding-bottom: 30px;
}


/*---------------------------------------------*/
/* Contenedor de filtros para alinear elementos a la izquierda y derecha */
.filters {
  display: flex;
  justify-content: space-between; /* Coloca un elemento a la izquierda y el otro a la derecha */
  align-items: center;
  gap: 20px; /* Espacio opcional entre los filtros */
  margin-bottom: 20px;
}

/* Estilo de cada filtro individual para usar flexbox en cada entrada */
.wrap-input100 {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%; /* Ancho máximo del filtro */
  width: 100%;
}

/* Estilo del input para ocupar el espacio completo y dejar margen para el ícono */
.input100 {
  width: 100%;
  padding: 10px 10px 10px 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Estilo del símbolo o ícono dentro del input */
.symbol-input100 {
  position: absolute;
  right: 10px; /* Coloca el ícono en el lado derecho */
  color: #aaa;
  font-size: 18px;
  pointer-events: none; /* Evita que el ícono sea clicable */
  display: flex;
  align-items: center;
}

.symbol-input102{
  top: 15px;
}

/* Botón y contenedor de filtros para que esté alineado */
.container-login100-form-btn {
  text-align: center;
}

.container-login100-form-btn .login100-form-btn {
  background-color: #28a745;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Ajustes para que el dashboard use todo el ancho */
.wrap-dashboard {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
}
/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87,184,70, 0.8);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 15px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  padding-left: 7px;
  pointer-events: none;
  color: #666666;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #57b846;
  padding-left: 12px;
}

/*------------------------------------------------------------------
[ 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: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #57b846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
}



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



@media (max-width: 992px) {
  .wrap-login100 {
    padding: 177px 90px 33px 85px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }

  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .wrap-login100 {
    padding: 100px 80px 33px 80px;
  }

  .login100-pic {
    display: none;
  }

  .login100-form {
    width: 100%;
  }

  .sort-icon {
    display: none; /* Hide all sort icons on mobile */
  }

  /* Hide entire columns, including headers and icons */
  .hide-column {
    display: none;
  }

  /* Hide all sort icons by default on mobile */
  .sort-icon {
      display: none;
  }

  /* Only show the active sort icon */
  .sort-icon.active {
      display: inline-block;
  }

  .filter-item {
    flex: 1 1 calc(25% - 10px); /* Take up 25% of the row minus the gap */
  }

  .wrap-input100 {
    max-width: 100%; /* Ancho máximo del filtro */
  }

  .chart-item {
    flex: 1 1 90% !important;
    max-width: 90% !important;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Poppins-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}


/* Menú lateral en el lado derecho */
.sidebar {
  position: fixed;
  top: 0;
  right: -250px; /* Oculto en el lado derecho */
  width: 250px;
  height: 100%;
  background-color: #333;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar.active {
  right: 0 !important; /* Muestra el menú en el lado derecho */
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.sidebar-header{
  text-align: center;
}

.sidebar h2 {
  color: #fff;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  width: 100%;
}

.sidebar-menu li {
  width: 100%;
}

.sidebar-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.sidebar-menu li a:hover {
  background-color: #444;
}

/* Overlay oscuro */
#sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

#sidebar-overlay.active {
  display: block;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px; /* Posiciona el botón en la derecha */
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 1100; /* Asegura que el botón esté por encima del contenido */
}

.sort-icon {
  font-size: 10px; /* Smaller font size for the arrows */
  margin-left: 5px; /* Small space between text and icon */
  vertical-align: middle; /* Align icon vertically in the middle */
  display: inline-block; /* Ensure icons are displayed inline */
  color: #aaa; /* Optional: lighter color for the icon */
}

/* Center and Style the Profile Image with Green Border */
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #32CD32; /* Green border color */
}

/* Adjust Form Spacing */
.profile-details,
.password-section {
  max-width: 600px;
  margin: 0 auto;
}

/* Horizontal Line Styling (Centered, 30% Width) */
.separator {
  width: 30%;
  border: 1px solid #ddd;
  margin: 0 auto;
}

/* Add Padding to Password Section */
.password-section {
  padding-bottom: 2rem; /* Increase bottom padding */
}

.password-section h3{
  padding-bottom: 10px; /* Increase bottom padding */
}

.separator-container{
  padding: 20px;
}

.hide-fee-columns .feePercentage-column,
        .hide-fee-columns .fee-column {
            display: none;
        }


/* Download plugin btn */
.download-plugin-btn {
  font-family: 'Montserrat-Bold', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 90%;
  height: 50px;
  border-radius: 15px;
  background: #57b846; /* Initial green color */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 20px auto;
  text-decoration: none;
  transition: all 0.4s;

      /* Positioning at the bottom of the sidebar */
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
}

.download-plugin-btn:hover {
  background: #222; /* Darker color on hover */
}

/* Login Show Password */
.toggle-password {
  position: absolute;
  right: 30px; /* Alineado al lado derecho */
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
  transition: color 0.3s;
}

.toggle-password:hover {
  color: #57b846; 
}

.symbol-eye {
  position: absolute;
  right: 10px; /* Aligns the eye icon on the right side */
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 18px;
  transition: color 0.3s;
}

.eye2{
  transform: none;
}

.symbol-eye:hover {
  color: #57b846; /* Changes to green on hover */
}

/* Filters Container */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Space between filter items */
}

/* Filters for mobile (2 per row) */
.filter-item {
  flex: 1 1 calc(50% - 10px); /* Take up 50% of the row minus the gap */
  min-width: 200px; /* Minimum width for each filter item */
}

.btn-success-tall{
  padding: 15px 0;
}

.btn-success.disabled, .btn-success:disabled {
  background-color: #dfbbbe;
  border-color: #dfbbbe;
}

.btn-danger-tall {
  background-color: #dc3545; /* Suave tono rojo */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}

.btn-danger-tall:hover {
  background-color: #c82333; /* Tono rojo más oscuro */
  color: #fff;
  text-decoration: none;
}

#qrCodeContainer{
  background-color: #EEE;
  padding: 20px 10px;
  border-radius: 5px; /* Add this for rounded corners */
}

#qrCodeContainer img{
  border-radius: 5px; /* Add this for rounded corners */
}

a#shortLink{
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: white;
    font-weight: bold;
}

.hidden{
  display: none;
}

select#shareVia{
  height: 43px;
}

.extra-info-icon {
  font-size: 14px;
  vertical-align: middle;
  transition: color 0.3s ease;
}

.extra-info-icon:hover {
  color: #0056b3;
}


/*SIDEBAR*/

.badge-circle {
    display: inline-block;
    background-color: #222;
    color: white;
    border-radius: 50%;
    padding: 5px 13px;
    font-size: 12px;
    margin-left: 10px;
}

/* Estilos para el interruptor */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 30px;
  right: 0;
  bottom: 0;
  transition: .4s;
  height: 25px;
  width: 50px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 50%;
  left: 2px;
  bottom: 3px;
  transition: .4s;
}

input:checked+.slider {
    background-color: #28a745;
}

input:checked+.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 50%;
  left: 28px;
  bottom: 3px;
  transition: .4s;
}

/* Estilos para el mensaje de estado */
#status-message {
  margin: 10px;
  font-size: 12px;
  background: #111;
  padding: 5px 10px;
  border-radius: 5px;
}

.mt-4 {
  background: white;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.mt-4 h3{
  padding: 10px;
}

.blue{
  background-color: #1586ff;
  border-color: #1586ff;
}

.blue:hover{
  background-color: #004085;
  border-color: #004085;
}

.ninety{
  max-width: 90%;
}

.charts-container{
  display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-height: 400px;
}

#transactionStatusChart{
  display: inline !important;
}

.chart-item {
  flex: 1 1 48%;
  box-sizing: border-box;
  max-width: 48%;
  text-align: center;
  max-height: 400px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: .25rem;
  transition: all .15s ease-in-out;
  margin: 5px;
}

.table-bordered td, .table-bordered th {
  vertical-align: middle;
}

.swal2-confirm {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.border-red {
  border-color: red;
}

.redcolor{
  font-weight: bold;
  color: red;
}

.split-payments{
  text-align: left;
  font-size: 14px;
  border: 1px solid grey;
  padding: 5px;
}

.wallet-group{
  border: 1px solid #CCC;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}
