/* Styles for the map information bar shown on the map page */
#mapInfoBar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 995;
  width: min(600px, calc(100vw - 32px));
  box-sizing: border-box;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(24, 119, 224, 0.16);
}

/*
#mapInfoBar {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(480px, calc(100vw - 32px));
    z-index: 995;
    background: #e8f6ff;
    border: 1px solid #8cc0ff;
    box-shadow: 0 4px 18px rgba(24, 119, 224, 0.16);
    border-radius: 15px;
    padding: 18px 21px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #0b3d79;
    transform: translate(-50%, -50%);
}
*/


#mapInfoBar .mapInfoBarInner {
    position: relative;
    display: flex;
    align-items: center;
}

/*
#mapInfoBarIcon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 18px;
    background: url('./assets/icons/alert-info.svg') no-repeat center center;
    background-size: 40px 40px;
    transform: translateY(-240%);
}
*/

#mapInfoBarText {
    line-height: 1.5;
    margin-right: 63px;
    color: #0d3f7d;
}

#mapInfoBarText .mapInfoBarNote {
    display: block;
    font-size: 70%;
    line-height: 1.45;
    margin: 0.6em 0;
}

#mapInfoBarText a.mapInfoBarLink {
    color: #00529b;
    text-decoration: underline;
    display: inline-block;
}

#mapInfoBarText a.mapInfoBarLink:hover {
    color: #003366;
}

#mapInfoBarClose {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(20%, -600%);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

#mapInfoBarClose img {
    display: block;
    width: 24px;
    height: 24px;
}

@media (max-width: 640px) {
    #mapInfoBar {
        width: calc(100vw - 32px);
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


/* Estilos de comunicacion */

/**
 * Removes the default spacing and border for appropriate elements.
 */
 blockquote,
 dl,
 dd,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 figure,
 p,
 pre {
   margin: 0; }

p{
  margin-bottom: 16px; 
}


.Alert {
    background-color: #f5f5f5;
    color: #222;
    border-left: 3px solid #bbb;
    padding: 1rem 1.5rem;
    /*margin-top: 1.5rem;*/
    /*margin-bottom: 1.5rem;*/
  }
    .Alert > :first-child {
      margin-top: 0 !important; }
    .Alert > :last-child {
      margin-bottom: 0 !important; }
    .Alert p {
      line-height: 1.35; }
    .Alert a {
      text-decoration: underline; }
      .Alert a:hover {
        text-decoration: none; }
  
  .Alert-subtitle {
    display: block;
    margin-bottom: .3125rem;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.15; }
    @media screen and (max-width: 768px) {
      .Alert-subtitle {
        font-size: 1.125rem;
        line-height: 1.35; } }
  
  .Alert-title {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600; }
    @media screen and (max-width: 768px) {
      .Alert-title {
        font-size: 1.25rem;
        margin-bottom: .25rem; } }
  
  /**
   * Modifiers
   */
  .Alert--warning {
    background-color: #fbf8ea;
    color: #332b00;
    border-color: #ffd15f; }
  
  .Alert--info {
    background-color: #eaf2ff;
    color: #07162d;
    border-color: #2d5ca8; }
  
  .Alert--success {
    background-color: #ecf6e8;
    color: #052d0d;
    border-color: #279e3f; }
  
  .Alert--danger {
    background-color: #fff3f3;
    color: #2d0505;
    border-color: #c33; }
  
  .Alert--dialog {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 5.25rem;
    background-repeat: no-repeat;
    background-position: 1.25rem 1.875rem;
    background-image: url("./assets/icons/alert-default.svg"); }
    .Alert--dialog.Alert--success {
      background-image: url("./assets/icons/alert-success.svg"); }
    .Alert--dialog.Alert--danger {
      background-image: url("./assets/icons/alert-danger.svg"); }
    .Alert--dialog.Alert--warning {
      background-image: url("./assets/icons/alert-warning.svg"); }
    .Alert--dialog.Alert--info {
      background-image: url("./assets/icons/alert-info.svg"); }
    .Alert--dialog ol li + li {
      margin-top: .15rem; }
    @media screen and (max-width: 768px) {
      .Alert--dialog {
        padding-top: 1.125rem;
        padding-bottom: 1.125rem;
        padding-left: 3.75rem;
        background-position: 1rem 1rem;
        background-size: 31px; }
        .Alert--dialog p {
          margin-bottom: .5rem; } }
  