/* Add here all your css styles (customizations) */
.colorday {
    background-color: #de731f;
    -webkit-transition: background-color 45s linear;
    -moz-transition: background-color 45s linear;
    -o-transition: background-color 45s linear;
    -ms-transition: background-color 45s linear;
    transition: background-color 45s linear;
  }
  
  .colornight {
    background-color: #2a1606;
    -webkit-transition: background-color 45s linear;
    -moz-transition: background-color 45s linear;
    -o-transition: background-color 45s linear;
    -ms-transition: background-color 45s linear;
    transition: background-color 45s linear;
  }

  img.img-padded-10 {
    padding: 10px !important;
  }
  
  ol.noticias,p.noticias {
    font-size: 14px !important;
  }


  .button-glowing {
    background-color: #004A7F;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
  }

  @-webkit-keyframes glowing {
    0% { background-color: #fcec91; -webkit-box-shadow: 0 0 3px #fcec91; }
    50% { background-color: yellow; -webkit-box-shadow: 0 0 40px yellow; }
    100% { background-color: #fcec91; -webkit-box-shadow: 0 0 3px #fcec91; }
  }

  @-moz-keyframes glowing {
    0% { background-color: #fcec91; -moz-box-shadow: 0 0 3px #fcec91; }
    50% { background-color: yellow; -moz-box-shadow: 0 0 40px yellow; }
    100% { background-color: #fcec91; -moz-box-shadow: 0 0 3px #fcec91; }
  }

  @-o-keyframes glowing {
    0% { background-color: #fcec91; box-shadow: 0 0 3px #fcec91; }
    50% { background-color: yellow; box-shadow: 0 0 40px yellow; }
    100% { background-color: #fcec91; box-shadow: 0 0 3px #fcec91; }
  }

  @keyframes glowing {
    0% { background-color: #fcec91; box-shadow: 0 0 3px #fcec91; }
    50% { background-color: yellow; box-shadow: 0 0 40px yellow; }
    100% { background-color: #fcec91; box-shadow: 0 0 3px #fcec91; }
  }