* {
    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: #71ab91}
.bg-corp,
.bh-corp:hover      {background-color: #71ab91}
.bg-corp-rgba,
.bg-corp-rgba:hover {background-color: rgba(113,171,145,0.5)}
.bg-transparent,
.bh-transparent:hover{background-color: transparent}
.brd-white,
.brd-white:hover{border: 1px solid white}
/* botones */
.btn-flujo{
    padding: 10px 25px;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    background-color: black;
    color: white; 
    font-weight: 700;
    font-size: 20px;
}
.btn-flujo:hover{
    background-color: #f28d2b;
    color: white;
}
.btn-corp{
    background-color: #71ab91;
    border: 1px solid #71ab91;
    color: white;
    /*font-size: 16px;*/
}
.btn-corp:hover{
    background-color: white;
    border: 1px solid #71ab91;
    color: #71ab91;
}


/* 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-lineheight13  {line-height: 1.3}
.text-lineheight14  {line-height: 1.4}
.text-lineheight15  {line-height: 1.5}
.text-tam5          {font-size: 5px}
.text-tam6          {font-size: 6px}
.text-tam7          {font-size: 7px}
.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-tam28         {font-size: 28px}
.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 */
a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}

.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}