/* line 4, app/assets/stylesheets/capsules.scss */
.capsule-card {
  border: 1px transparent solid;
  transition: border 0.3s ease;
}

/* line 7, app/assets/stylesheets/capsules.scss */
.capsule-card:hover {
  border-color: #a1a5b7;
}

/* line 12, app/assets/stylesheets/capsules.scss */
.btn-edit:hover {
  transition: color 0.3s ease, border 0.3s ease;
  color: #7239ea !important;
  border: 1px solid #7239ea !important;
}

/* line 18, app/assets/stylesheets/capsules.scss */
.btn-delete:hover {
  transition: color 0.3s ease, border 0.3s ease;
  color: #f1416c !important;
  border: 1px solid #f1416c !important;
}

/* line 24, app/assets/stylesheets/capsules.scss */
.btn-create:hover {
  transition: color 0.3s ease, border 0.3s ease;
  color: #50cd89 !important;
  border: 1px solid #50cd89 !important;
}
/* app/assets/stylesheets/login.css */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: -5;
}

.bg-active {
  opacity: 1;
}

.bg-glass {
  background-color: hsla(255,255,255,0.9) !important;
  backdrop-filter: saturate(200%) blur(25px);
  border-radius: .5rem;
}

.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

#logo {
  max-width: 300px;
  z-index: 1;
}

body.login {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow-y: auto;
  
}

.form-outline {
  margin-bottom: 1rem;
}

/* .form-label {
  color: #696969;
} */

/* .form-control {
  border-radius: .5rem;
  border-color: #e0b6bf;
  background-color: #fdfeff;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

.form-control::placeholder {
  color: #DAA520;
} */

/* .btn-primary {
  background-color: #008000;
} */

.text-muted {
  color: #228B22;
}

.display-5 {
  color: hsl(218,81%,95%);
}

.opacity-70 {
  opacity: .7;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; /* Asegura que el footer ocupe todo el ancho */
  background-color: rgba(255, 255, 255, 0.651);
  padding: 2px 15px;
  z-index: -1; /* Cambia a un valor positivo para que sea visible */
}

.footer .container {
  display: flex; /* Usa flexbox para alinear los elementos */
  justify-content: space-between; /* Espacio entre los elementos */
  align-items: center; /* Alinea verticalmente al centro */
  width: 100%; /* Asegura que el contenedor ocupe todo el ancho */
}

.photo-info {
  text-align: left; /* Alinea el texto a la izquierda */
}

.copyright-text {
  text-align: right; /* Alinea el texto a la derecha */
}

@media (max-width:768px) {
  #radius-shape-1, #radius-shape-2 {
    display:none;
  }
}

.office365-button {
  display: inline-flex; /* Para alinear icono y texto */
  align-items: center; /* Centrar verticalmente */
}

.office365-icon {
  width: 20px; /* Ajusta el tamaño del icono */
  height: 20px; /* Ajusta el tamaño del icono */
  margin-right: 5px; /* Espacio entre icono y texto */
}
/* line 11, app/assets/stylesheets/oias.scss */
.map-container {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* line 19, app/assets/stylesheets/oias.scss */
.map-coordinate {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  margin: 2px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 29, app/assets/stylesheets/oias.scss */
.map-coordinate[data-is-default="true"] {
  font-weight: 600;
}

/* line 33, app/assets/stylesheets/oias.scss */
.map-coordinate[data-coordinate-type="primary"] {
  background-color: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.3);
}

/* line 38, app/assets/stylesheets/oias.scss */
.map-coordinate[data-coordinate-type="secondary"] {
  background-color: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.3);
}

/* line 43, app/assets/stylesheets/oias.scss */
.map-coordinate[data-coordinate-type="default"] {
  background-color: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* line 50, app/assets/stylesheets/oias.scss */
.coordinate-pin.default-pin {
  display: inline-flex;
  align-items: center;
  color: #dc3545;
}

/* line 55, app/assets/stylesheets/oias.scss */
.coordinate-pin.default-pin i {
  margin-right: 4px;
  font-size: 16px;
}

/* line 60, app/assets/stylesheets/oias.scss */
.coordinate-pin.default-pin .coordinate-label {
  font-weight: 500;
  color: #333;
}

/* line 65, app/assets/stylesheets/oias.scss */
.coordinate-pin.default-pin:hover {
  color: #c82333;
}

/* line 68, app/assets/stylesheets/oias.scss */
.coordinate-pin.default-pin:hover .coordinate-label {
  color: #000;
}

/* line 75, app/assets/stylesheets/oias.scss */
.coordinate-marker {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background-color: rgba(0, 123, 255, 0.15);
  border-radius: 12px;
}

/* line 82, app/assets/stylesheets/oias.scss */
.coordinate-marker .marker-label {
  font-size: 12px;
  color: #0056b3;
  font-weight: 400;
}

/* line 88, app/assets/stylesheets/oias.scss */
.coordinate-marker:hover {
  background-color: rgba(0, 123, 255, 0.25);
}

/* line 91, app/assets/stylesheets/oias.scss */
.coordinate-marker:hover .marker-label {
  color: #004085;
}

/* line 101, app/assets/stylesheets/oias.scss */
.sidebar-map {
  height: 70vh;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 107, app/assets/stylesheets/oias.scss */
.sidebar-map-container {
  position: relative;
  height: 100%;
  width: 100%;
}

/* line 117, app/assets/stylesheets/oias.scss */
.card-map {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* line 129, app/assets/stylesheets/oias.scss */
.layer-switcher {
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
}

/* line 134, app/assets/stylesheets/oias.scss */
.layer-switcher .layer-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 4px;
  border-radius: 6px;
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

/* line 144, app/assets/stylesheets/oias.scss */
.layer-switcher .layer-item:hover {
  background-color: #e9ecef;
}

/* line 148, app/assets/stylesheets/oias.scss */
.layer-switcher .layer-item.active {
  background-color: #e3f2fd;
  border-left: 3px solid #198754;
}

/* line 153, app/assets/stylesheets/oias.scss */
.layer-switcher .layer-item .layer-name {
  flex: 1;
  font-size: 14px;
  color: #333;
}

/* line 159, app/assets/stylesheets/oias.scss */
.layer-switcher .layer-item .layer-toggle {
  margin-right: 8px;
}

/* line 169, app/assets/stylesheets/oias.scss */
.ol-popup {
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}

/* line 174, app/assets/stylesheets/oias.scss */
.ol-popup-content {
  padding: 12px 16px;
  border-radius: 8px;
}

/* line 178, app/assets/stylesheets/oias.scss */
.ol-popup-content .popup-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* line 185, app/assets/stylesheets/oias.scss */
.ol-popup-content .popup-info {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* line 191, app/assets/stylesheets/oias.scss */
.ol-popup-content .popup-coords {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
}

/* line 202, app/assets/stylesheets/oias.scss */
.marker-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 210, app/assets/stylesheets/oias.scss */
.marker-icon.marker-default {
  background-color: #dc3545;
  color: white;
}

/* line 215, app/assets/stylesheets/oias.scss */
.marker-icon.marker-primary {
  background-color: #0d6efd;
  color: white;
}

/* line 220, app/assets/stylesheets/oias.scss */
.marker-icon.marker-success {
  background-color: #198754;
  color: white;
}

/* line 230, app/assets/stylesheets/oias.scss */
.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 239, app/assets/stylesheets/oias.scss */
.map-controls .map-control-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

/* line 252, app/assets/stylesheets/oias.scss */
.map-controls .map-control-btn:hover {
  background-color: #f8f9fa;
}

/* line 256, app/assets/stylesheets/oias.scss */
.map-controls .map-control-btn i {
  color: #666;
}

/* line 266, app/assets/stylesheets/oias.scss */
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: white;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  max-width: 200px;
}

/* line 277, app/assets/stylesheets/oias.scss */
.map-legend .legend-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* line 284, app/assets/stylesheets/oias.scss */
.map-legend .legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 12px;
  color: #666;
}

/* line 291, app/assets/stylesheets/oias.scss */
.map-legend .legend-item .legend-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

#mta_evidence_preview
{
  position:absolute;
  border:1px solid #ccc;
  background:#ddd;
  padding:1px;
  display:none;
  color:#fff;
}

.floatWapp{
  position:fixed;
  width:60px;
  height:60px;
  bottom:20px;
  right:20px;
  background-color:#25d366;
  color: beige;
  border-radius:50%;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
  display: none;
}

i.fa-whatsapp {
  font-size: 1em;
  color: #ffffff;
}
 
.my-floatWapp{
  margin-top:15px;
}

/*# sourceMappingURL=application.css-5396a9f322104528e2d06d2abeed924828eb78dbcd33282cd6f922425e9ae8cf.map */
