/* 
    Document   : extras
    Created on : 21/03/2014, 11:57:06
    Author     : mmoyano
    Description:
        Add styles and improve a bad designer design
*/
/* spinner */
.spinner {
    width: 128px;
    height: 128px;
    background-color: #005082;
    background-image: url(../images/LA128x128.jpg);

    margin: 100px 0 0 -64px;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;

    position: fixed;
    left: 50%;
    top: 20%;

    display: none;
    
    z-index: 9012;
  }

  @-webkit-keyframes rotateplane {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
  }

  @keyframes rotateplane {
    0% { 
      transform: perspective(120px) rotateX(0deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
    } 50% { 
      transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
    } 100% { 
      transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
      -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
.loading-big{
    width: 128px;
    min-height: 128px;
    background-color: #005082;
    background-image: url(../images/LA128x128.jpg);

    margin-left: 50%;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;

    display: block;
}
/* Articles */
article.marginBottom{
    margin-bottom: 30px;
}
.banner-demo{
    height: 785px;
    width: 100%;
    background-color: #fafafa;
}
    
/*Notas*/
.noMarginBottom{
    margin-bottom: 0px;
}
    
/* Sorter */
.sorter{
    text-transform: none;
    font-size: 11px;
    width: 160px;
    display: inline;
    line-height: 30px;
}
.sorter ul{
    display: inline-block;
    margin-left: 0 !important;
}
.sorter ul li{
    display: inline;
    margin: 4px;
}
.sorter a.desc {
    background: url(../img/down.gif) right center no-repeat;
    padding-right: 10px;
}
.sorter a.asc {
    background: url(../img/up.gif) right center no-repeat;
    padding-right: 10px;
}

/* Banner */
.banner{
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}
object, iframe, embed {
    max-width: 100% !important;
}
/*Fondo del modal*/
.modal-container{
    z-index: 1000;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.8);
}