/*  Mensajes de advertencia  */

.remarcado,
.text-formatted blockquote{
  padding-left: 30px;
  border-left: 4px solid gray;
  margin: 3rem 0;
}
  
[class^="msg-"], [class*=" msg-"]{
  margin: 20px 0!important;
  padding: 50px 35px 35px 35px;
  min-height: 50px;
  font-size: 17px;
  line-height: 22px;
  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;*/
}
  
  [class^="msg-"] + [class^="msg-"]{
    margin: 30px 0 5px 0px;
  }
  
  @media (max-width: 720px){
    [class^="msg-"], [class*=" msg-"]{
        padding: 50px 20px 15px 20px;
    }
  }
  
  #columna-lateral [class^="msg-"], #columna-lateral [class*=" msg-"]{
    margin: 25px 0 10px 0;
    padding: 55px 18px 20px;
    min-height: 65px;
    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: 60px;
    width: 60px;
    top: -20px;
    left: 0;
    right: 0;
    border-radius: 35px;
    border: 5px solid #f4f4f4;
    text-align: center;
    box-sizing: border-box;
    color: var(--colorWhite);
    font-size: 24px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #columna-lateral [class^="msg-"]:before, 
  #columna-lateral [class*=" msg-"]:before{
    top: -20px;
  }
  
  .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: 15px 0 20px;
  }
  
  .node  .text-formatted.field [class^="msg-"] h4, 
  .node  .text-formatted.field [class*=" msg-"] h4{
    margin: 15px 0 20px;
    position: relative;
  }
  
  .node  .text-formatted.field [class^="msg-"] h4:before,
  .node  .text-formatted.field [class*=" msg-"] h4:before{
    content: '';
    width: 15%;
    height: 1px;
    background-color: var(--colorGrayfooter);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* eol mensajes de advertencia */
