@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_extend.scss */
.flex-center-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

:root{
  --header-height: 80px;   /* ajústalo si tu navbar real mide distinto */
  --footer-height: 350px;  /* si lo usas en algún lado, ok; si no, da igual */
}

html{
  height: 100%;
}

body{
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;

  /* ✅ el espacio real para navbar fixed-top */
  padding-top: var(--header-height);

  font-family: "Raleway", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px !important;
}

/* ✅ tu contenedor principal crece y empuja el footer hacia abajo */
.container#content{
  flex: 1 0 auto;
  padding-top: 20px;    /* antes 120px: ya no lo necesitas */
  padding-bottom: 20px;
}



body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}
html {
  overflow-y: scroll;
}
body.modal-open nav.navbar.fixed-top {
  padding-right: 0 !important;
}

header {
	margin-top: -80px;
}

.wrap {
	min-height: 100%;
	height: auto;
	margin: 0 auto -60px;
	padding: 0 0 60px;
}

.wrap>.container {
	padding: 70px 15px 20px;
}

.jumbotron {
	text-align: center;
	background-color: transparent;
}

.jumbotron .btn {
	font-size: 21px;
	padding: 14px 24px;
}

.not-set {
	color: #c55;
	font-style: italic;
}

/* add sorting icons to gridview sort links */
/* FontAwesome sorting icons for GridView headers */
a.asc::after,
a.desc::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900; /* solid */
  display: inline-block;
  padding-left: 5px;
}

/* General sort (alphabetical or default) */
a.asc::after {
  content: "\f0de"; /* fa-sort-up */
}
a.desc::after {
  content: "\f0dd"; /* fa-sort-down */
}

/* Numerical sorting */
.sort-numerical a.asc::after {
  content: "\f162"; /* fa-sort-numeric-up */
}
.sort-numerical a.desc::after {
  content: "\f163"; /* fa-sort-numeric-down */
}

/* Ordinal/alphabetical sorting */
.sort-ordinal a.asc::after {
  content: "\f15d"; /* fa-sort-alpha-up */
}
.sort-ordinal a.desc::after {
  content: "\f881"; /* fa-sort-alpha-down */
}


.grid-view th {
	white-space: nowrap;
}

.hint-block {
	display: block;
	margin-top: 5px;
	color: #999;
}

.error-summary {
	color: #a94442;
	background: #fdf7f7;
	border-left: 3px solid #eed3d7;
	padding: 10px 20px;
	margin: 0 0 15px 0;
}
/* CUSTOM STYLES */

.select2-selection__clear {
  display:none !important;
}

.select2-selection__choice__remove {
  color:#FD0000 !important;
}

.select2-container--krajee-bs5 .select2-selection--multiple .select2-selection__choice {
  display:flex !important;
    flex-wrap: wrap;
    gap: 4px;
}
/* Select2 multiple: permitir crecer en altura */
.select2-selection.select2-selection--multiple {
    min-height: 42px;          /* altura base (como un input) */
    height: auto;              /* permite crecer */
    padding: 4px 6px;
}

/* Que los tags se envuelvan en varias filas */
.select2-container--default
.select2-selection--multiple
.select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* Cada tag */
.select2-container--default
.select2-selection--multiple
.select2-selection__choice {
    margin: 0;
}

.text-fuchsia, .border-warning-fuchsia {
  color: rgb(22, 0, 172) !important;
}
.border-warning-fuchsia {
  border-color: rgb(22, 0, 172) !important;
}

.bg-warning-fuchsia  {
background-color: rgb(191, 190, 238) !important;
}


#send-mail-field .kv-switch-container {
    min-width: 100px !important;
}
.right-buttons {
    margin-top: -80px !important;
    margin-bottom: 43px;
    min-height: 32px;
}
@media (max-width: 768px) {
    .right-buttons {
        margin-top: 0 !important;
        margin-bottom: 30px;
        min-height: 32px;
    }
  }

.right-buttons-empty {
  margin-top: -48px !important;
  margin-bottom: 43px;
}

#voucher-preview-fileinput .krajee-default.file-preview-frame .kv-file-content {
    width: 213px;
    height: 280px !important;;
}

#voucher-preview-fileinput .file-thumbnail-footer {
  height: unset !important;
}

.sidebar-inner {
    max-height: 100vh;
    overflow-y: auto;
}

#society-sidebar {
    width: 260px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow-y: auto;
    background-color: #fff;
}

#society-sidebar .nav-link {
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}
#society-sidebar .nav-link:hover,
#society-sidebar .nav-link.active {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.sidebar-menu .collapse .nav-link {
    font-size: 0.9rem;
    padding-left: 1.5rem;
}

.sidebar-mailbox h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-mailbox .list-group-item {
    border: none;
    border-radius: 0;
}

i.fa-trash {
	color:red !important;
}
.detailview-vertical-middle td, .detailview-vertical-middle th {
        vertical-align: middle !important;
    }
.whatsapp-link {
    white-space: nowrap;
}

.whatsapp-link i {
    margin-right: 5px;
}

#inbox-badge {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    text-align: center;
    padding-right: 5px;
    display: inline-block;
    padding-left: 5px;
}
/* .input-lang-es {
    background: url('/images/flags/es1.png') no-repeat right center;
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: right 0.5rem center;
    padding-right: 2.5rem; deja espacio para que el texto no se solape con la imagen
    opacity: 0.95;
}
.input-lang-en {
    background: url('/images/flags/us1.png') no-repeat right center;
    background-size: 24px auto;
    background-origin: content-box;
    background-position: right 0.5rem center;
    padding-right: 2.5rem;
    opacity: 0.95;
}
.input-lang-pt {
    background: url('/images/flags/br1.png') no-repeat right center;
    background-size: 24px auto;
    background-origin: content-box;
    background-position: right 0.5rem center;
    padding-right: 2.5rem;
    opacity: 0.95;
}
 */
 

.log-cell {
    max-height: 3.2em; /* 2 líneas aprox */
    overflow: hidden;
    cursor: pointer;
    position: relative;
    white-space: normal;
    line-height: 1.6em;
    transition: max-height 0.3s ease;
}

.log-cell::after {
    content: ' ▼';
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 4px;
    font-size: 0.75em;
    color: #888;
    background: linear-gradient(to top, white, transparent);
}

.log-cell.expanded {
    max-height: none;
    overflow: visible;
}

 
span.select2-selection__clear {
	margin-right: 4px;margin-top:2px;
}
 select.icon-select option {
     font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", sans-serif;
     font-weight: 900;
     font-size: 1.1em;
 }
 select.icon-select option {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
}
 td.dynamic-row {
 padding-top:15px;
 padding-bottom:15px;
 }
  td.dynamic-row .form-check {
  padding-left:0 !important;
  }
  td.dynamic-row label.form-check-label {
  margin-top: 7px;
  }
 td.dynamic-row div {
 margin-bottom:0 !important;
 }
 .table-scrollable {
  overflow-x: auto;
  width: 100%;
  min-width:800px;
  box-shadow: inset 0 0 5px rgba(150, 150 ,150,0.35);
  margin: auto;
}
.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.46); /* amarillo suave */
}

.badge-custom {
    background-color: rgba(255, 193, 7, 0.2); /* Soft warning */
    color: #856404; /* Texto warning oscuro */
    border: 1px solid #ffc107;
    border-radius: 0.5rem;
    padding: 0.5em 0.8em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 500;
}
/*************MODAL DE EVENTO PARA CALENDARIO Y LISTA DE EVENTOS */
.modal#eventModal {   
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);  
    animation: slideIn 0.3s ease-out;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal#eventModal  .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    position: relative;
}
#eventModal .modal-header .btn-close {
    display: none !important;
}

.modal#eventModal #event-close-btn, .modal#eventEditModal #event-close-btn {    
	 top: 16px;
    right: 16px; /* Para no chocar con el botón de cierre */
    position: absolute;   
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    z-index: 10;
    opacity: 0.9;
    transition: background 0.2s ease-in-out;
}

.modal#eventModal #event-close-btn:hover, .modal#eventEditModal #event-close-btn:hover  {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}


.modal#eventModal .society-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.modal#eventModal  .society-logo {
    width: auto;
    max-height: 50px;
    border-radius: 6px;
    background: white;
    padding: 4px;
}

.modal#eventModal  .society-name {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.modal#eventModal .event-title {
  font-size: 24px;
  font-weight: 700 !important;
  line-height: 1.3;
  margin-bottom: 8px auto !important;
}

 .modal#eventModal .modal-body {
     padding: 32px;
 }

 .modal#eventModal .event-logo-container {
     text-align: center;
     margin-bottom: 32px;
 }

 .modal#eventModal .event-logo {
     max-width: 200px;
     max-height: 120px;
     width: auto;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }
 .modal#eventModal .event-description {
      margin-bottom: 32px;
      padding: 24px;
      background: #f8f9fa;
      border-radius: 12px;
      border-left: 4px solid #667eea;
  }

  .modal#eventModal  .description-title {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .modal#eventModal  .description-title::before {
      content: "📋";
      font-size: 16px;
  }

  .modal#eventModal  .description-text {
      font-size: 15px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 12px;
  }

  .modal#eventModal  .description-text:last-child {
      margin-bottom: 0;
  }
 .event-details {
     display: grid;
     gap: 20px;
     margin-bottom: 32px;
 }

.modal#eventModal  .detail-row {
     display: flex;
     align-items: flex-start;
     gap: 12px;
 }

.modal#eventModal  .detail-icon {
     width: 20px;
     height: 20px;
     color: #6c757d;
     margin-top: 2px;
     flex-shrink: 0;
     font-size:18px;
 }

.modal#eventModal  .detail-content {
     flex: 1;
 }

 .modal#eventModal .detail-label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: #666;
     font-weight: 600;
     margin-bottom: 4px;
 }

.modal#eventModal .detail-value {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

 .modal#eventModal .date-range {
     display: flex;
     align-items: center;
     gap: 8px;
     flex-wrap: wrap;
     font-weight: 600;
 }

 .modal#eventModal .date-separator {
     color: #999;
     font-size: 14px;
 }

.edit-event-float-btn {
    position: absolute;
    top: 16px;
    right: 56px; /* Para no chocar con el botón de cierre */
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease-in-out;
}

.edit-event-float-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

 .actions {
     display: flex;
     gap: 16px;
     margin-bottom: 32px;
     flex-wrap: wrap;
 }

 .modal#eventModal .action-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 20px;
     background-color: #667eea;
     color: white;
     text-decoration: none;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.2s;
     border: none;
     cursor: pointer;
 }

 .modal#eventModal .action-btn:hover {
     background: #5a6fd8;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
 }

 .modal#eventModal .action-btn.secondary {
     background: #f8f9fa;
     color: #495057;
     border: 2px solid #e9ecef;
 }

 .modal#eventModal .action-btn.secondary:hover {
     background: #e9ecef;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .modal#eventModal .map-container {
     border-top: 1px solid #e9ecef;
     background: #f8f9fa;
 }

 .modal#eventModal .map-header {
     padding: 16px 32px;
     border-bottom: 1px solid #e9ecef;
 }

 .modal#eventModal .map-title {
     font-size: 16px;
     font-weight: 600;
     color: #333;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .modal#eventModal .map-embed {
     height: 250px;
     width: 100%;
     border: none;
 }

 /* Responsive adjustments */
 
 @media (max-width: 1260px) { 
   #floating-user {
  		width: unset !important;
	}
  
}

 @media (max-width: 768px) {

     .modal#eventModal .modal {
         width: 90vw;
         min-width: 300px;
     }
     
     .modal#eventModal .modal-header, .modal-body {
         padding: 20px;
     }
     
     .modal#eventModal .event-title {
         font-size: 20px;
     }
     
     .modal#eventModal .actions {
         flex-direction: column;
     }
     
     .modal#eventModal .action-btn {
         justify-content: center;
     }
 }
/****************************************************/        
/* CAMBIOS PARA QUE LA MODAL DE EVENTO TENGA SCROLL*/
.select2-container .hide-select-all .select2-results__option.select2-results__message {
    display: none !important;
}

.select2-selection--multiple{
    overflow: hidden !important;
    height: auto !important;
}
/*******/
.signature-visual {
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #f9f9f9;
    padding: 12px;
    font-size: 0.9em;
    color: #555;
}

.quill-has-signature .ql-container {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

#floating-user {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1050;
    background-color: #fff;
    width: 240px; /* o el ancho que necesites */
    padding: 12px;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
ul#user-floating {
	background-color:#FFFFFF;
	box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.49) !important;
  	border-top-left-radius: 8px !important;
  	border-top-right-radius: 8px !important;
}
.dashboard-chart-container {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-chart-container canvas {
    max-height: 100%;
}

#recent-messages ul.list-group li.list-group-item a {
	color:#333333 !important;
}

#recent-messages ul.list-group li.list-group-item a:hover {
	color: #60a5fa !important;
}
#recent-messages ul.list-group li.list-group-item:hover {
	background-color:#F2F1F1;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
   /*  margin-left: 0.1rem;
    margin-right: 0.1rem; */
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(-90deg);
    float: right;
    margin-top: 0.4rem;
}
li.dropdown-submenu ul.dropdown-menu a.dropdown-item {
  padding-top: 5px;
  padding-bottom: 5px;
}

li.dropdown-submenu ul.dropdown-menu {
	min-width:unset !important;
}
#society-menu-dropdown ul.dropdown-menu li.dropdown-submenu ul.dropdown-menu {
	/*min-width:unset !important;*/
	top: -10px;
}

.login-form label {
    display: none;
}

#add-category-btn {
	margin-top:10px;
}
ul.profile-menu {
	background-color:#FFFFFF !important;
}

.detailview-vertical-middle td, 
.detailview-vertical-middle th {
    vertical-align: middle !important;
}


.invisible-placeholder {
    visibility: hidden;
    height: auto;
}


.img-thumbnail.rounded-circle {
    border-radius: 50% !important;
    object-fit: cover;
}


/* Hacer que el dropdown sea estático y se expanda ocupando espacio */
.modal .flatpickr-calendar {
    z-index: 1056 !important;
}

.fc-event {
    cursor: pointer;
}
.badge-society, #badge-all {
    cursor: pointer;
    background-color: #666;
}
.filter-badge.active {
box-shadow: 6px 6px 14px 0px rgba(69,65,65,0.75);
-webkit-box-shadow: 6px 6px 14px 0px rgba(69,65,65,0.75);
-moz-box-shadow: 6px 6px 14px 0px rgba(69,65,65,0.75);
border: 1px solid red !important;
    opacity: 1;
}
.dropdown-divider.main-dropdown {
  border-top: 1px solid rgba(245, 240, 240, 0.18) !important;
}
.dropdown-header.main-dropdown-header {
  font-weight:600 !important;
  color: #4c95ff !important;
}

.select2-container--default .select2-selection {
    min-height: 38px !important; /* igual a .form-control */
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}


#inbox-grid tr td.inbox-grid-column {
	font-weight:400 !important;
}

#messageform-attachments{
	color:#0958cc;
}

i.fas.fa-paperclip.mailview-attachment {
	font-size: 18px !important;
}

.menu-text {
    padding-right: 10px;
    display: inline-block;
}


.card-header.bg-info.mailview {
	background-color: rgb(157, 233, 248) !important;
	color:#000000 !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgb(255, 221, 89) !important;
}

.signature-preview {
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: #333;
}

.signature-text p {
    margin: 0;
}

.signature-image {
    margin-top: 10px;
    text-align: left;
}

#assignments-rbac-form .select2-container .select2-selection--multiple .select2-selection__rendered {
  white-space: unset !important;
}
#assignments-rbac-form .select2-container--krajee-bs5 .select2-selection--single .select2-selection__clear, .select2-container--krajee-bs5 .select2-selection--multiple .select2-selection__clear {
  margin-right: 15px !important;
}
h4 small, h3 small{
	color:#808080 !important;
	font-size: 1rem !important;
}
@media (min-width: 768px) {
    .table-responsive.application table {
        max-width: 70%;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .table-responsive.application table {
        width: 100% !important;
         margin: 0 auto;
    }
}


/* Estilos para el sidebar de Mailbox */
.sidebar {
    display: flex;
    flex-direction: column;
    height: 100%; /* Asegurar que ocupe toda la altura del contenedor */
}

.mailbox-menu {
    flex-grow: 1; /* Permite que el menú crezca y empuje la sección del usuario hacia abajo */
}

/* .user-section {
    margin-top: auto; Empuja la sección del usuario hacia la parte inferior
    padding-top: 1rem;
} */
.sidebar .nav-link {
    color: #333;
    font-weight: 500;
}
.sidebar .nav-link:hover {
    color: #000;
    background-color: #f8f9fa;
}
.sidebar .nav-link.active {
    color: #000;
    background-color: #e9ecef;  /* fondo gris claro para resaltar */
    border-radius: 0.375rem;    /* esquinas ligeramente redondeadas */
}
.sidebar .nav-link i {
    /* margen a la derecha del icono para separar del texto */
    margin-right: 0.5rem;
}
.sidebar .dropdown-toggle::after {
    /* Asegurar que la flecha del dropdown esté visible (Bootstrap la agrega vía ::after) */
    margin-left: 0.25rem;
}
.sidebar .dropdown-menu {
    font-size: 0.9rem;
}
.sidebar .dropdown-item:hover {
    background-color: #f8f9fa;
}
.mailbox-container {
    border: 1px solid #cccccc;  /* Borde de 1px color gris */
    border-radius: 4px;  /* Bordes redondeados */
    width: 100%;  /* Ocupa todo el ancho disponible del contenedor */
    max-width: 100%;  /* Evita que se expanda más allá del container */
    background-color: #fff;  /* Asegura fondo blanco */
    padding-left:0 !important;
    padding-right:0 !important;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding-bottom: 0.5rem;
    padding-left:10px;
}
aside#mailbox-aside {
	    padding-left:0 !important;
    padding-right:0 !important;
}
#mailbox-aside ul li.nav-item {
	margin-left:0;
}
.custom-dropdown {
    appearance: none; /* Oculta el icono predeterminado */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="gray"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>')
        no-repeat right 10px center;
    background-size: 16px;
    padding-right: 30px; /* Espacio para el icono */
}

.membership-info-row {
    display: flex;
    align-items: center; /* Centra verticalmente los elementos en la fila */
    justify-content: start; /* Alinea la imagen y la tabla correctamente */
    min-height: calc(100% + 40px); /* Altura mínima de la fila (imagen + 20px arriba y abajo) */
    padding: 20px 0; /* Espaciado superior e inferior */
}

.profile-image-container {
    display: flex;
    align-items: center; /* Centra la imagen en su contenedor */
    justify-content: center; /* Asegura que la imagen esté alineada */
}

.profile-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* .profile-image-menu {
    width: 100%;
    max-width: 50px;
    height: auto;   
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin-right:10px;
    max-height: 50px;
} */
 .profile-image-menu {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/*** CAMBIO WHATSAPP FLOTANTE */

/* Avatar reutilizado */
.profile-image-menu {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

/* Contenedor fijo del menú flotante */
.floating-user-fixed {
  position: fixed;
  z-index: 1080; /* encima de la navbar y otros elementos */
}

/* Esquina inferior derecha */
.floating-bottom-right {
  right: 16px;
  bottom: 16px;
}

/* Mitad del borde derecho (centrado vertical) */
.floating-mid-right {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Botón redondeado bonito */
.rounded-full {
  border-radius: 9999px !important;
}

/* Opcional: que el menú no se vaya fuera de viewport en mid-right */
.floating-mid-right .dropdown-menu {
  transform-origin: right center;
}

/***************************/
.select2-container {
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}


  #membership-form span.input-group-text {
      height: calc(2.25rem + 2px);
  }


#membership-form input#profile-url_facebook,
#membership-form input#profile-url_twitter, 
#membership-form input#profile-url_linkedin,
#membership-form input#whatsapp-input   {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
  }
span.input-group-text  i.fa-brands.fa-whatsapp {
	margin-bottom: 10px;
}
    
:root {
    --header-height: 80px;
    --footer-height: 350px; 
}


.navbar-dark .navbar-collapse {
    background-color: #212529; 
    padding: 10px;
    border-radius: 5px;
}

.navbar-dark .navbar-nav .nav-link {
    color: white !important; 
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ccc !important;
}


.navbar-dark .dropdown-menu {
    background-color: #343a40; 
    border: none;
}

.navbar-dark .dropdown-item {
    color: white;
}

.navbar-dark .dropdown-item:hover {
    background-color: #313131;;
}

li.dropdown.nav-item .dropdown-menu.show {
	background-color:#000000;
}

#rbac-menu li.dropdown.nav-item .dropdown-menu.show {
  background-color: #FFFFFF;
}
.fi {
    display: inline-block;
    width: 1.333333em;
    height: 1em;
    z-index:9999;
    vertical-align: middle;
}
.language-picker {
  margin-left:30px;
  z-index:9999;
}
.language-picker > div > a {
    color: white;
}

/* Color negro para el idioma en el menú desplegable */
.language-picker > div > ul {
    background-color: white;
    border-radius: 4px; /* Opcional: bordes redondeados para el desplegable */
    padding: 5px 0;
}

/* Estilo de los enlaces dentro del menú desplegable */
.language-picker > div > ul > li > a {
    color: black;
    display: block;
    padding: 0;
    text-decoration: none;
    background-color: #FFF;
}

/* Cambia el color del enlace en el desplegable al hacer hover */
.language-picker > div > ul > li > a:hover {
    background-color: #f0f0f0; /* Fondo gris claro en hover */
    color: black;
}
.nav-tabs .nav-link {
    color: #495057; /* Color de texto por defecto */
    background-color: #f8f9fa; /* Fondo claro */
    border: 1px solid #dee2e6; /* Borde para hacer visible */
}

.nav-tabs .nav-link.active {
    color: #fff; /* Texto blanco cuando está activo */
    background-color: #007bff; /* Azul de Bootstrap */
    border-color: #007bff; /* Borde del color del tema */
}

label {
	color:#666666;
}
.action-buttons {
	border-bottom: 1px solid #CCC;
	padding: 10px;

}
.btn {
	border-radius: 4px;
}
.btn-link.logout {
	font-size:14px !important;
	color:#4cc4ff !important;
	text-decoration:none;
	margin-top: -8px !important;

}
.btn-link.logout:hover {
	color:#ff1e33 !important;
}

.btn-primary {
    background-color: #3c8bff; /* Azul más claro */
   border-color: #307ae6;
}

.btn-success {
    background-color: #78c679; /* Verde más suave */
    border-color: #78c679;
}

.btn-danger {
    background-color: #e57373; /* Rojo menos intenso */
    border-color: #e57373;
}

.btn-warning {
    background-color: #ffcc80; /* Amarillo pastel */
    border-color: #ffcc80;
}
.applicable-to-column ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

service_icon i.fa {
	color: #0A61C9;
}
.about_area ol span.badge i.fa {
  font-size: 24px;
  opacity: 0.5;
}
a {
  color: #096cfd;
  text-decoration: none;
}
h3.title {
	border-bottom: 1px solid #CCCCCC;
	margin-bottom:30px;
	
}

ul.breadcrumb {
	margin-bottom: 40px !important;
}

i.fa-duotone.fa-solid, i.fa-solid, i.fa-duotone {
	margin-right:10px;
}
/*.fa-solid {
	color:grey;
}*/


/* Excluye la celda específica (logo) del efecto hover */
.table-hover > tbody > tr:hover > td.no-hover {
  background-color: transparent !important;
  --bs-table-bg-state: white;
}


td.no-hover:hover {
    background-color: transparent !important;
}
#additional-info-card {
    max-height: inherit; 
    overflow-y: scroll; 
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d; /* Color gris similar al de Bootstrap */
    padding: 0 0.5rem; /* Espaciado a la derecha e izquierda del separador */
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  	color:#CCCCCC;
	font-size:12px;
}
::-moz-placeholder { /* Firefox 19+ */
  	color:#CCCCCC;
	font-size:12px;
}
:-ms-input-placeholder { /* IE 10+ */
  	color:#CCCCCC;
	font-size:12px;
}
:-moz-placeholder { /* Firefox 18- */
  	color:#CCCCCC;
	font-size:12px;
}

.btn-outline-secondary i.fas.fa-folder-open {
	margin-top:6px;
}
input#application-resumefile, input#application-documentimagefile{
	background-color:#CCCCCC;
}
form#appform .form-group, form#applicationform .form-group {
	margin-bottom: 1.5rem !important;
}

form#appform input[type="radio"], input[type="checkbox"], form#applicationform input[type="radio"]{
	margin-left: 30px;
}

form#appform label, form#applicationform label {
	font-weight: 500;
	margin-bottom: 0.1rem;
}
form#applicationform input[type="radio"], input[type="checkbox"] {
	margin-top: 10px !important;
}
img.logo-appform {	
	width:100%;
	height:auto;
	margin:0 auto;
	float:none;
	margin-bottom:20px;
}
.application-form {
	display:block;
	width:100%;
	height:auto;
	background-color:#F9F9F9;
	padding:40px 20px 20px 20px;
	border: 1px solid #DDDDDD;
}
.application {
	margin-top:35px;
	margin-bottom:40px;
}
h3.application-title {
	padding-top: 30px;
	margin-bottom: 30px;
	color: #000000;
	text-transform: uppercase;
	font-weight: 300;
	border-bottom:1px solid #22a9fb;
	}
h6.ef-config {
	font-size:16px !important;
}
.frmb {
	border: 1px dashed #3c8bff  !important;
	padding:10px !important;
	border-radius: 8px;
}
td.signature-text p {
    margin-bottom: 0 !important;
}
.ql-container {
	height: auto !important;
	min-height: 180px !important;
}
#spc-memberlist {
	display:block;
}
select.form-control.is-valid {
	background-position: right calc(0.9em + 0.1875rem) center !important;
}
a#society-new-membershipType-button {
	border: 1px solid #CCCCCC;
	margin-bottom:40px;
}
table#society-new-membershipTypes th, table#society-new-membershipTypes td {
	border-bottom: 1px solid #dee2e6;
}
a.society-remove-membershipType-button {
	border: none !important;
	margin-top:5px;
}

td.mtconfig-membername {
	width:20%;
}
td.mtconfig-currency {
	width:17%;
}
td.mtconfig-amount input {
	text-align:right;
}
td.mtconfig-currency select {
	font-size:12px !important;
}
td.mtconfig-shares {
	width:18%;
}
td.mtconfig-shares select{
	font-size:12px !important;
}

/* align the logout "link" (button in form) of the navbar */
.nav li>form>button.logout {
	/*padding: 15px;*/
	border: none;
	font-size:12px;
	margin-left:20px;
}

.nav>li>form>button.logout:focus, .nav>li>form>button.logout:hover {
	text-decoration: none;
}

.nav>li>form>button.logout:focus {
	outline: none;
}
.society-view .form-group {
	margin:0 !important;
}

i.fa-grid-horizontal {
  color: #FFF !important;
  margin-right: 0 !important;
}
.bootstrap-switch .bootstrap-switch-handle-on, .bootstrap-switch .bootstrap-switch-handle-off, .bootstrap-switch .bootstrap-switch-label {
	padding-left:5px;
	padding-right:5px;
	font-size:10px;
}

#btn-options {
	width:100%;
	padding:10px;
}
.dropdown.btn-group {
	width:100% !important;
}
.dropdown.btn-group li:hover {
	background-color:#E9E9E9 !important;
}
.dropdown.is-expanded {
	background-color:#D3D3D3 !important;
}
.dropdown-menu.show {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}
.krajee-default .file-footer-caption, button.close.fileinput-remove {
	display: none !important;
}

.file-drag-handle.drag-handle-init.text-info {
	display:none;
}
.kv-file-remove {
	display:none;
}
/*a.asc::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;  solid 
  content: "\f0de";  fa-sort-up 
  margin-left: 5px;
}

a.desc::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0dd";  fa-sort-down 
  margin-left: 5px;
}*/

img.file-preview-image {
	max-width:100%;
	max-height:180px;
	width:auto;
	height:auto;
	border:1px solid #CCCCCC;
	-webkit-box-shadow: 9px 11px 7px -4px rgba(133,133,133,0.6);
	-moz-box-shadow: 9px 11px 7px -4px rgba(133,133,133,0.6);
	box-shadow: 9px 11px 7px -4px rgba(133,133,133,0.6);
}
td.societyindex {
	vertical-align:middle;
}
td.id-column-grid, th.id-column-grid {
	text-align:center;
	font-weight:500;
	vertical-align:middle !important;
}
td.action-column-td {
	text-align:center;
	font-weight:500;

	vertical-align:middle !important;
}
td.action-column-td a, td.action-column-td a i{
	margin-left:2px;
	margin-right:2px;
	color: #3e8af9;
	font-size: 18px;
}
span.text-muted i {
  margin-left: 2px;
  margin-right: 2px;
  font-size: 18px;
}
td.action-column-td a:hover {
	color:#b51222;
}
td.societyindex>img.logo-preview-grid {
	max-height:100px;
	overflow:hidden;
}
.dropdown-menu.show, .dropdown-submenu .dropdown-menu.show {
	-webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.49);
	-moz-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.49);
	box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.49);
	background-color:#000000;
	width: unset;
}
#language-picker {
	margin-left: 10px !important;
}

.card-header.header-white {
	background-color:#FFFFFF;
	border-bottom:0;
}

.datepicker.datepicker-dropdown.dropdown-menu {
	z-index: 999999 !important;
}
.side-menu {
	min-height:700px;
}
.left-content {
margin-top:20px;
}
/* .society-view { */
/* 	padding-bottom:80px; */
/* } */
img.logo-view {
	width:200px;
	height:auto;
}
img.societylogo-modal-view {
	width:auto;
	height:50px;
}
img.logo-preview-grid {
	max-width:150px;
	height:auto;
	width:auto;
}
.help-block {
	color:#dd0606;
	font-size:11px;
	font-style:italic;
	padding-left:5px;
}
hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border-top: 1px solid #595858;
}
.btn, .dropdown-menu, .dropdown-menu a.dropdown-item {
	font-size:12px !important;
}
.btn-lg {
	font-size:unset !important;
}
.dropdown-item:hover, .dropdown-item:focus {
	color: #0dcaf0;;
	text-decoration: none;
	background-color: #f8f9fa;
}

#society-menu-dropdown ul, #user-menu-dropdown ul {
	min-width: 100% !important;
	z-index: 1050;
	background-color: #FFF !important;
}

ul#dropdown-status {
	width: unset !important;
	z-index: 1050;
	background-color: #FFF !important;
}

.btn-link:hover {
	color: #4cc1f5 !important;
}
.margintop {
	margin-top:40px;
}
h4, .h4 {   
    font-weight: 400 !important;
}
h4.title {
	border-bottom:1px solid #CCCCCC;
	margin-bottom:40px;
	margin-top:40px;
}
button.logout {
	font-size:12px;
}
/* .container#content {
	padding-top:120px;
	display: flex;
    flex-direction: column;
    min-height: calc(100vh - 280px);
    padding-bottom: 20px;
} */


.card {	
	padding: 20px !important;
}
.slider_text {
	display:block;
}
@media screen and
  (prefers-reduced-motion: reduce), 
  (update: slow) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important; /* Hat tip Nick/cssremedy (https://css-tricks.com/revisiting-prefers-reduced-motion-the-reduced-motion-media-query/#comment-1700170) */
    transition-duration: 0.001ms !important;
  }
}

.service_content ul {
	padding-left:0 !important;
}
.navbar {
	-webkit-transition: all 0.6s ease-out;
	-moz-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
	-ms-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
	z-index: 1000;
}

body.home .navbar.scrolled {
	background: rgb(68, 68, 68); /* IE */
	background: rgba(0, 0, 0, 0.8); /* NON-IE */
}

.navbar-brand {
	padding: 5px !important;
	z-index: 1000;
}

body.home .navbar {
	background-color: rgba(0, 0, 0, 0.1);
}

body.site .navbar {
	background-color: rgba(0, 0, 0, 0.7);
}

/*li {
	list-style: none;
}*/

.section_title {
	margin-bottom: 50px;
}
.section_title p {
	font-size: 16px;
	color: #07326A;
	margin-bottom: 0;
	font-weight: 300;
	font-family: "Roboto", sans-serif;
}
.section_title h3 {
	font-family: "Roboto", sans-serif;
	font-size: 36px;
	font-weight: 300;
	color: #001D38;
	position: relative;
	z-index: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.section_title h3 small {
  color: #666;
}
h6.content-section {
  padding-top:20px;
  color: #0d4fb0;
}
h6.content-section.first {
margin-top:0 !important;
  border-top: none;
  padding-top:0;
}
  
.section_title span {
	display: inline-block;
	/* background: #4cc1f5; */
	background: #CCCCCC;
	width: 60px;
	height: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	/* margin-bottom: 4px; */
}

.fa-whatsapp {
	color: #25D366 !important;
	font-size:24px;
	position: relative;
}
/* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area {
  padding-top: 100px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
  .service_area {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
  .service_area {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

/* line 12, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service {
	

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a8cff+0,054680+100 */
  /* background: #eaeaea ;*/
  /* Old browsers */
  /* background: -moz-linear-gradient(to bottom, #fff 0%, #eaeaea  100%);*/
  /* FF3.6-15 */
  /* background: -webkit-linear-gradient(to bottom, #fff 0%, #eaeaea  100%);*/
  /* Chrome10-25,Safari5.1-6 */
  /* background: linear-gradient(to bottom, #fff 0%, #eaeaea  100%);*/
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0d0d0', endColorstr='#eaeaea ',GradientType=0 );*/
  /* IE6-9 */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
  min-height:450px;
  border:1px solid #DDDDDD;
}

/* line 21, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .service_icon {
  margin: 50px auto 43px auto;
  display: inline-block;
}

/* line 26, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .info span {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
}

/* line 33, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .info h3 {
  color: #333333;
  font-weight: 300;
  font-size: 30px;
}

/* line 39, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .service_content {
  padding: 30px 50px 50px 50px;
  margin-top: 28px;
  border-top: 1px dotted rgba(204, 204, 204, 0.5);
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 39, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
  .service_area .single_service .service_content {
    padding: 30px 23px 50px 23px;
  }
}

/* line 47, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .service_content ul li {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  font-weight: 400;
  position: relative;
  z-index: 0;
  padding-left: 18px;
  margin-bottom:10px;
}

/* line 55, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .service_content ul li::before {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #C4C4C4;
}

/* line 68, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .service_content .apply_btn {
  margin-top: 40px;
}

/* line 70, ../../Arafath/CL/December/234. Finance/HTML/scss/_service.scss */
.service_area .single_service .service_content .apply_btn button {
  width: 100%;
}

.about_area {
  margin-bottom: 150px;
}

/* line 3, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area.plus_padding {
  padding-top: 150px;
}



@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
  .about_area.plus_padding {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
  .about_area {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
  .about_area {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  /* line 18, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
  .about_area .about_img {
    margin-bottom: 20px;
  }
}

/* line 22, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area .about_img img {
  width: 100%;
}

/* line 27, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area .about_info .section_title {
  margin-bottom: 36px;
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 27, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
  .about_area .about_info .section_title {
    margin-bottom: 20px;
  }
}

/* line 33, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area .about_info p {
  color: #7A838B;
  font-size: 16px;
}

/* line 37, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area .about_info .about_list {
  margin-bottom: 60px;
  margin-top: 60px;
}

/* line 41, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area .about_info .about_list ul li {
  font-size: 14px;
  line-height: 24px;
  color: #040E27;
  font-weight: 400;
  position: relative;
  padding-left: 23px;
  margin-bottom:20px;
}
.about_img {   
  padding-left: 80px;
}

@media (max-width: 992px) {
    .about_img {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .about_img {
        padding-left: 0;
    }
}

.list-group-item {
	border:none;
  padding: 30px;
 
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 41, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
  .about_area .about_info .about_list ul li {
    font-size: 14px;
    line-height: 28px;
  }
}
.about_area .about_info .about_list ul {
	margin-top:40px;
}
/* line 52, ../../Arafath/CL/December/234. Finance/HTML/scss/_about.scss */
.about_area .about_info .about_list ul li::before {
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #8093A4;
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
.brand_area {
  padding-bottom: 150px;
  padding-top:80px;
}

@media (max-width: 767px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
  .brand_area {
    padding-bottom: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
  .brand_area {
    padding-bottom: 50px;
  }
}

/* line 9, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
.brand_area .single_brand {
  text-align: center;
  max-width:200px;
  width:auto;
margin-left:20px;
margin-right:20px;
  display:block;
  border:none;
}

/* line 12, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
.brand_area .owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
  max-width:180px;
  max-height: 65px !important;
  height:auto;
  opacity: 0.5;
}

@media (max-width: 767px) {
  /* line 12, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
  .brand_area .owl-carousel .owl-item img {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 12, ../../Arafath/CL/December/234. Finance/HTML/scss/_brand.scss */
  .brand_area .owl-carousel .owl-item img {
    width: 100%;
  }
}

.apply_loan {
  background-image: url(../images/apply-home.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 137px 0;
}

/* line 6, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
.apply_loan.overlay::before {
  opacity: .4;
}

@media (max-width: 767px) {
  /* line 1, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
  .apply_loan {
    padding: 100px 0;
  }
}

/* line 13, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
.apply_loan .loan_text h3 {
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
  line-height: 48px;
}

@media (max-width: 767px) {
  /* line 13, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
  .apply_loan .loan_text h3 {
    font-size: 24px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 13, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
  .apply_loan .loan_text h3 {
    font-size: 34px;
    line-height: 1.4;
  }
}

/* line 29, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
.apply_loan .loan_btn {
  text-align: right;
}

@media (max-width: 767px) {
  /* line 29, ../../Arafath/CL/December/234. Finance/HTML/scss/_loan.scss */
  .apply_loan .loan_btn {
    text-align: left;
    margin-top: 30px;
  }
}


img#home1 {
	max-width:100%;
	overflow:hidden;
	height:auto;
}

li.nav-item {
	margin-left:20px;
}

ul.nav-tabs li.nav-item a.nav-link {
  color: #007bff !important;
}
ul.nav-tabs li.nav-item a.nav-link.active {
  color: #FFFFFF !important;
}
a.nav-link:hover {
	color:#4cc1f5 !important;
}

label.form-check-label {
	color:#666666;
	margin-left:5px;
}
.white-bg {
  background: #ffffff;
}
nav.navbar {
	height:80px;
}

span.company {
	color:#FFFFFF;
}
.service_icon i {
	font-size:48px;
	color:#0A61C9;
/* 	text-shadow: 2px 2px 6px #666666; */
}
.info.text-center h3 {
	color:#444444 !important;
}
.single_slider .container {
	margin-top:80px;
}
ul.submenu li a:hover {
	
	background: rgba(17, 28, 38, 0.8);
	color: #4cc1f5 !important;
}

/* FOOTER */
/* ====== General footer styling ====== */
.footer {
    color: #FFFFFF;
}

.footer p,
.footer .copy-right_text .copy_right {
    font-family: "Roboto", sans-serif !important;
    font-size: 11px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 0;
}

/* ====== Footer top section spacing ====== */
.footer .footer_top {
    padding-top: 40px;
    padding-bottom: 20px;
}

/* ====== Footer widget content ====== */
.footer .footer_widget p.footer_text {
    font-size: 16px;
    color: #B2B2B2;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 23px;
}

.footer .footer_widget p a,
.footer .footer_top .footer_widget ul li a {
    color: #7A838B;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.footer .footer_widget p a:hover,
.footer .footer_top .footer_widget ul li a:hover {
    color: #0A8CFF;
}

.footer .footer_top .footer_widget ul li {
    color: #7A838B;
    font-size: 12px;
    line-height: 24px;
}

/* ====== Useful links section ====== */
.footer .links {
    font-size: 11px;
    line-height: 20px;
    text-align: right;
}

.footer .links ul {
    padding-left: 20px !important;
    list-style: none;
    margin: 0;
}

.footer .links ul li {
    margin: 0;
    height: 20px;
}

.footer .links ul li a {
    color: #FFFFFF !important;
    font-size: 11px;
    text-decoration: none;
}

.footer .links ul li a:hover {
    color: #0A8CFF !important;
}

/* ====== Social links ====== */
.footer .social_links {
    margin-bottom: 40px;
    text-align: right;
}

.footer .social_links ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.footer .social_links ul li {
    display: inline-block;
    transition: 0.3s;
}

.footer .social_links ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #E9E9E9 !important;
    border: 1px solid #CCC !important;
    border-radius: 50%;
    transition: 0.3s;
    background: transparent;
    margin-right: 7px;
}

.footer .social_links ul li a i {
    font-size: 15px;
    position: relative;
    top: -1px;
}

.footer .social_links ul li:hover a {
    color: #fff !important;
    background: #0A8CFF;
    border-color: #0A8CFF;
}

/* ====== Footer contact table ====== */
#footer-contact-table {
    width: 100%;
}

#footer-contact-table td {
    text-align: left;
    padding: 4px;
}

/* ====== Responsive adjustments ====== */
@media (min-width: 992px) {
    #footeraddress {
        text-align: left;
    }

    .footer .links,
    .footer .social_links {
        text-align: right;
    }

    #footer-contact-table {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
  .footer .links ul {
    padding-left: 0 !important;
  }
}

@media (max-width: 991px) {
    #footeraddress,
    #footer-contact-table td,
    .footer .links,
    .footer .social_links {
        text-align: center !important;
    }

    #footer-contact-table {
        margin: 0 auto;
    }
}

/* ====== Bottom copyright section ====== */
.footer .copy-right_text {
    padding-bottom: 30px;
}

.footer .copy-right_text .copy_right a {
    color: #0A8CFF;
}

/* ====== Optional utilities ====== */
span.text-bold {
    font-weight: 400;
}

#footer-contact-table {
	border: none;

}
#footer-contact-table tr td {
	color:#FFFFFF;
	padding: 0 !important;
	border:none;
	font-size:10px;
	background-color: #212529 !important;
}

/* =========================================================
   Anti-solape footer / secciones anteriores
   ========================================================= */

/* El footer siempre abajo y con stacking estable */
footer.footer{
  position: relative;
  z-index: 10;
  clear: both;
}

/* Si alguna sección anterior tiene floats/absolutos, esto evita que el footer "suba" */
.footer .footer_top,
.footer .copy-right_text{
  clear: both;
}

/* Tu home tiene secciones con overlays/absolutos (hero, etc.).
   Este overflow ayuda a contenerlos y que no invadan el footer visualmente. */
body.home section,
body.home header{
  overflow: hidden;
}

/* Si todavía se ve solape en home, fuerza que la última sección antes del footer
   tenga “espacio” real abajo (ponlo solo si lo necesitas). */
/*
body.home #content,
body.home .slider_area{
  margin-bottom: 40px;
}
*/

/* END FOOTER */

#compose-body-editor {
    border-bottom: none;
}

.boxed-btn3 {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#F91842+0,fd8e5e+100 */
  background: #4cc1f5;
  color: #fff;
  display: inline-block;
  padding: 11px 29px 13px 29px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  border: 1px solid transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.boxed-btn3#startnow {
	padding: 11px 50px 13px 50px !important;
}

/* line 43, ../../Arafath/CL/December/234. Finance/HTML/scss/_btn.scss */
.boxed-btn3:hover {
  color: #4cc1f5 !important;
  border: 1px solid #4cc1f5;
  background: transparent;
}

/* line 48, ../../Arafath/CL/December/234. Finance/HTML/scss/_btn.scss */
.boxed-btn3:focus {
  outline: none;
}

.apply {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

/* line 77, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
.apply .phone_num {
  margin-right: 10px;
}

@media (min-width: 1200px) and (max-width: 1500px) {
  /* line 77, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
  .apply .phone_num {
    margin-right: 12px;
  }
}

/* line 82, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
.apply .phone_num a {
  font-size: 10px;
  font-weight: 400;
  color: #FFFFFF;
}

@media (min-width: 1200px) and (max-width: 1500px) {
  /* line 82, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
  .apply .phone_num a {
    font-size: 13px;
  }
}

/* line 89, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
.apply .phone_num a i {
  color: #4cc1f5;
  font-size: 14px;
  margin-right: 7px;
}

@media (min-width: 1200px) and (max-width: 1500px) {
  /* line 96, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
  .apply .boxed-btn4 {
    padding: 11px 9px 13px 9px;
    font-size: 13px;
  }
}

@media (min-width: 1501px) and (max-width: 1800px) {
  /* line 96, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
  .apply .boxed-btn4 {
    padding: 11px 20px 13px 20px;
    font-size: 12px;
  }
}

/* line 108, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
.apply .social_links ul li {
  display: inline-block;
}

/* line 111, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
.apply .social_links ul li a {
  color: #A8A7A0;
  margin: 0 10px;
  font-size: 15px;
}

/* line 115, ../../Arafath/CL/December/234. Finance/HTML/scss/_header.scss */
.apply .social_links ul li a:hover {
  color: #fff;
}

.boxed-btn4 {
  display: inline-block;
/*   padding: 11px 29px 13px 29px; */
	padding: 8px 10px 9px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  color: #4cc1f5 !important;
  border: 1px solid #4cc1f5;
  background: transparent;
}

/* line 67, ../../Arafath/CL/December/234. Finance/HTML/scss/_btn.scss */
.boxed-btn4:hover {
  color: #fff !important;
  border: 1px solid #4cc1f5;
  background: transparent;
  border: 0;
  background: #4cc1f5;
  border: 1px solid transparent;
}

/* line 75, ../../Arafath/CL/December/234. Finance/HTML/scss/_btn.scss */
.boxed-btn4:focus {
  outline: none;
}

header .slider_area {
  position: relative;
  z-index: 0;
}
.slider_bg_1 {
  background-image: url(../images/banner/banner1.jpg);
}

.slider_bg_2 {
  background-image: url(../images/banner/banner_2.png);
}

header .slider_area::before {
  background: #2A2A2B;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .7;
}


#how-it-works-btn {
	box-shadow: 1px 1px 1px #000000;
}
#how-it-works-btn:hover {
  box-shadow: 3px 3px 3px #333333;
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #FFF !important;
}

.boxed-btn3:hover {
	 background-color: #0d6efd;
  border-color: #0d6efd;
  color: #FFF !important;
}

header .slider_area .single_slider {
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


header .slider_area .single_slider.single_listing {
  height: 500px;
}

@media (max-width: 767px) {

  header .slider_area .single_slider {
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  header .slider_area .single_slider {
    height: 700px;
  }
}

@media (max-width: 767px) {

  header .slider_area .single_slider .slider_text {
    margin-top: 90px;
    margin-bottom: 20px;
  }
}


header .slider_area .single_slider .slider_text h3 {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 60px;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 1px 1px 1px black;
}

@media (max-width: 767px) {

  header .slider_area .single_slider .slider_text h3 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 45px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  header .slider_area .single_slider .slider_text h3 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 35px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {

  header .slider_area .single_slider .slider_text h3 {
    font-size: 40px;
    line-height: 1.4;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {

  header .slider_area .single_slider .slider_text h3 {
    font-size: 60px;
    font-weight: 400;
    line-height: 74px;
  }
}

header .slider_area .single_slider .slider_text p {
  font-size: 30px;
  font-weight: 300;
  color: #F91842;
  font-family: "Roboto", sans-serif;
  margin-bottom: 24px;
}

@media (min-width: 992px) and (max-width: 1200px) {

  header .slider_area .single_slider .slider_text p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  header .slider_area .single_slider .slider_text p {
    font-size: 16px;
  }
}


header .slider_area .single_slider .slider_text .button_search {
  text-align: right;
}

@media (max-width: 767px) {

  header .slider_area .single_slider .slider_text .button_search {
    text-align: left;
  }
}


header .slider_area .single_slider .slider_text .quality {
  margin-top: 40px;
}

@media (max-width: 767px) {

  header .slider_area .single_slider .slider_text .quality {
    margin-top: 20px;
  }
}


header .slider_area .single_slider .slider_text .quality ul li {
  display: inline-block;
}

@media (max-width: 767px) {

  header .slider_area .single_slider .slider_text .quality ul li {
    margin-bottom: 10px;
  }
}


header .slider_area .single_slider .slider_text .quality ul li button {
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  font-weight: #000;
  font-family: "Roboto", sans-serif;
  padding: 5px 19px;
  display: inline-block;
  margin: 0 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}


header .slider_area .single_slider .slider_text .quality ul li button:hover {
  background: #F91842;
}


header .slider_area .member_login_form {
  padding: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 6px 10px 20px #333;
}

@media (max-width: 767px) {

  header .slider_area .member_login_form {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  header .slider_area .member_login_form {
    padding: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {


}


header .slider_area .member_login_form .single_input input {
  height: 50px;
  border: 1px solid #C6C3C3;
  padding: 15px;
  font-size: 16px;
  color: #000;
}


header .slider_area .member_login_form .single_input input:focus {
  outline: none;
}


header .slider_area .member_login_form .single_input input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #7A838B;
  font-family: "Roboto", sans-serif;
}


header .slider_area .member_login_form h4 {
  font-size: 30px;
  font-weight: 400;
  color: #040E27;
  margin-bottom: 19px;
}

@media (max-width: 767px) {

  header .slider_area .member_login_form h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }
    header .slider_area .member_login_form p {
    margin-bottom: 15px;
    margin-top: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  header .slider_area .member_login_form h4 {
    font-size: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {

  header .slider_area .member_login_form {
    padding: 30px;
  }
  header .slider_area .member_login_form h4 {
    font-size: 24px;
  }
    header .slider_area .member_login_form p {
    font-size: 14px;
  }
}


header .slider_area .member_login_form p {
  font-size: 16px;
  font-weight: 400;
  color: #7A838B;
  margin-bottom: 39px;
  margin-top: 21px;
}
header .slider_area .member_login_form .nice-select.wide {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  color: #7A838B;
  margin-bottom: 15px;
}
header .slider_area .member_login_form .submit_btn button {
  width: 100%;
  text-align: center;
}
.single_slider .container {
	margin-top:80px;
}
/* END CUSTOM STYLES */
/* MEDIA QUERIES */
@media ( max-width :767px) {
	.nav li>form>button.logout {
		display: block;
		text-align: left;
		width: 100%;
		padding: 10px 15px;
	}

	.footer .copy-right_text .copy_right {
		font-size: 10px;
		color:#FFFFFF;
	}
	.footer .social_links {
		margin-top: 30px;
	}
	.footer .footer_top .footer_widget {
		margin-bottom: 30px;
	}
	.footer .footer_top {
		padding-top: 60px;
		padding-bottom: 30px;
	}	
	.nav li>form>button.logout {
		display: block;
		text-align: left;
		width: 100%;
		padding: 10px 15px;
	}
	.btn.btn-link.logout {
 		padding-left:0;
  	}
	.language-picker {
	  	margin-left: 20px;
	  	margin-top: 10px;
	 }
}

@media ( min-width : 768px) and (max-width: 991px) {
	.footer .footer_top .footer_widget {
		margin-bottom: 30px;
	}
}