* {
    padding: 0;
    border: 0;
    margin: 0;
    outline: 0;
    resize: none;
    border-spacing: 0;
    border-collapse: collapse;
    text-decoration: none;
}


/* colores */
.tx-corp,
.th-corp:hover,
.tx-corp:focus,
.tx-corp:active     {color: #e1252f}
.bg-corp,
.bh-corp:hover      {background-color: #e1252f}
.bg-corp-rgba,
.bg-corp-rgba:hover {background-color: rgba(255,37,47,0.5)}
.bg-transparent,
.bh-transparent:hover{background-color: transparent}


/* clases básicas */
.full-size          {width: 100%; height: 100%}
.clear-left         {clear: left}
.clear-right        {clear: right}
.hide-overflow      {overflow: hidden}
.pos-relative       {position: relative}
.pos-static         {position: static}
.display-none       {display: none}
.display-inline     {display: inline}
.display-inlineblock{display: inline-block}
.display-block      {display: block}
.display-table      {display: table}
.display-tablecell  {display: table-cell}
.valign-top         {vertical-align: top!important}
.valign-bottom      {vertical-align: bottom!important}
.valign-middle      {vertical-align: middle}
.text-light         {font-weight: 300}
.text-regular       {font-weight: 400}
.text-semibold      {font-weight: 600}
.text-bold          {font-weight: 700}
.text-extrabold     {font-weight: 900}
.text-italic        {font-style: italic}
.text-underline     {text-decoration: underline}
.text-lineheight10  {line-height: 1.0}
.text-lineheight11  {line-height: 1.1}
.text-lineheight12  {line-height: 1.2}
.text-lineheight15  {line-height: 1.5}
.text-tam8          {font-size: 8px}
.text-tam9          {font-size: 9px}
.text-tam10         {font-size: 10px}
.text-tam11         {font-size: 11px}
.text-tam12         {font-size: 12px}
.text-tam13         {font-size: 13px}
.text-tam14         {font-size: 14px}
.text-tam15         {font-size: 15px}
.text-tam16         {font-size: 16px}
.text-tam18         {font-size: 18px}
.text-tam20         {font-size: 20px}
.text-tam22         {font-size: 22px}
.text-tam24         {font-size: 24px}
.text-tam30         {font-size: 30px}
.text-tam36         {font-size: 36px}
.text-tam40         {font-size: 40px}
.text-tam44         {font-size: 44px}
.text-tam48         {font-size: 48px}
.text-tam60         {font-size: 60px}
.text-tam72         {font-size: 72px}


/* varios */
.form-control::-moz-placeholder {opacity: 1}
select ~ .form-control-feedback {margin-right: 15px}/* Fix para feedback de bootstrap en los select, sacado de https://github.com/twbs/bootstrap/issues/14202 */

#cargando {
    background-color: rgba(255,255,255,0.75);
    background-image: url('../images/loading.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    display: none;
}
.cargando #cargando {display: block!important}