/*  Mensajes de advertencia  */

.remarcado{
    padding-left: 3rem;
    border-left: 4px solid gray;
    margin: 3rem 0;
  }
  
  [class^="msg-"], [class*=" msg-"]{
    margin: 2rem 0!important;
    padding: 5rem 3.5rem 3.5rem 3.5rem;
    min-height: 5rem;
    font-size: 1.7rem;
    line-height: 2.2rem;
    background-color: rgb(244, 244, 244);
    border: none;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    /*box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 50%);
    border-radius: 20px;*/
  }

   table[class^="msg-"], table[class*=" msg-"]{
    display: table;
    width: 100%!important;
  }

  table[class^="msg-"] td, table[class*=" msg-"] td{
    padding: 5rem 3.5rem 3.5rem 3.5rem;
  }
  
  [class^="msg-"] + [class^="msg-"]{
    margin: 30px 0 5px 0px;
  }
  
  @media (max-width: 720px){
    [class^="msg-"], [class*=" msg-"]{
        padding: 5rem 2rem 1.5rem 2rem;
    }
  }
  
  #columna-lateral [class^="msg-"], #columna-lateral [class*=" msg-"]{
    margin: 2.5rem 0 1rem 0;
    padding: 5.5rem 1.8rem 2rem;
    min-height: 6.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .msg-destacado:before{
    content: "\e615";
    background-color: rgb(22,142,186);
  }
  
  .msg-advertencia:before{
    content: "\e617";
    background-color: rgb(251,195,51);
  }
  
  .msg-right:before{
    content: "\e610";
    background-color: rgb(29,124,44);
  }
  
  .msg-wrong:before{
    content: "\e611";
    background-color: red;
  }
  
  .msg-contento:before{
    content: "\e612";
    background-color: #FFA600;
  }
  
  .msg-triste:before{
    content: "\e613";
    background-color: #6D6262;
  }
  
  .msg-leer:before{
    content: "\e614";
    background-color: #0063FF;
  }
  
  [class^="msg-"]:before, [class*=" msg-"]:before{
    position: absolute;
    height: 6rem;
    width: 6rem;
    top: -2rem;
    left: 0;
    right: 0;
    border-radius: 3.5rem;
    border: 5px solid #f4f4f4;
    text-align: center;
    box-sizing: border-box;
    color: var(--colorWhite);
    font-size: 2.4rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #columna-lateral [class^="msg-"]:before, 
  #columna-lateral [class*=" msg-"]:before{
    top: -2rem;
  }
  
  .node  .text-formatted.field [class^="msg-"] h2, 
  .node  .text-formatted.field [class*=" msg-"] h2,
  .node  .text-formatted.field [class^="msg-"] h3, 
  .node  .text-formatted.field [class*=" msg-"] h3  {
    margin: 1.5rem 0 2rem;
  }
  
  .node  .text-formatted.field [class^="msg-"] h4, 
  .node  .text-formatted.field [class*=" msg-"] h4{
    margin: 1.5rem 0 2rem;
    position: relative;
  }
  
  /* eol mensajes de advertencia */
