/*
* CSS BOTONES SOLUCIONES GENERALES
*----------------------------------------*/

/* css botones generales */
.btn, .btn:link, .btn:focus, .btn:visited {
    outline: none !important;
    border: none !important;
}
.btn-se, .btn-se:link, .btn-se:focus, .btn-se:visited,
.btn-white, .btn-white:link, .btn-white:focus, .btn-white:visited,
.btn-orange, .btn-orange:link, .btn-orange:focus, .btn-orange:visited,
.btn-green, .btn-green:link, .btn-green:focus, .btn-green:visited,
.btn-red, .btn-red:link, .btn-red:focus, .btn-red:visited,
.btn-yellow, .btn-yellow:link, .btn-yellow:focus, .btn-yellow:visited,
.btn-grey, .btn-grey:link, .btn-grey:focus, .btn-grey:visited,
.btn--grey, .btn--grey:link, .btn--grey:focus, .btn--grey:visited,
.btn-call, .btn-call:link, .btn-call:focus, .btn-call:visited,
.btn-tabla, .btn-tabla:link, .btn-tabla:focus, .btn-tabla:visited,
.btn-primario, .btn-primario:link, .btn-primario:focus, .btn-primario:visited,
.btn-ok, .btn-ok:link, .btn-ok:focus, .btn-ok:visited, 
.btn-secundario, .btn-secundario:link, .btn-secundario:focus, .btn-secundario:visited
{
    border-color: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
.btn-se:active, .btn-orange:active, .btn-green:active, .btn-red:active, .btn-yellow:active, .btn-grey:active, 
.btn--grey:active, btn-call:active, .btn-tabla:active, .btn-suscripcion:active, .btn-aceptar:active, .btn-confirmar:active {
    position: relative;
    top: 1px;
} 
.btn-se {
    color: #fff !important;
    background: rgb(244, 189, 22); 
    box-shadow: 0px 3px 0px 0px rgb(214, 166, 20);
}
.btn-se:hover {
    color: #fff;
    background: rgba(244, 189, 22, 0.8); 
}
.btn-white {
    color: #444 !important;
    background: rgb(255,255,255); 
    border: 1px solid #c3c3c3 !important;
}
.btn-white:hover {
    color: #fff !important;
    background: rgb(255, 193, 7);
    border: 1px solid rgb(255, 167, 0) !important;
}
.btn-orange {
    background: rgb(255, 87, 34);
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px rgb(216, 74, 30);
}
.btn-orange:hover {
    background: rgba(255, 87, 34, 0.8);            
}
.btn-green {
    background: linear-gradient(to bottom,#a3de5f 0,#7bbf2c 100%);
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px rgb(120, 170, 62);
}
.btn-green:hover {
    background: rgba(139, 195, 74, 0.8);
}
.btn-red {
    background: rgb(244, 67, 54);
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px rgb(201, 57, 47);
}
.btn-red:hover {
    background: rgba(244,67,54,.8);
}
.btn-yellow {
    background: rgb(255, 193, 7);
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px rgb(204, 153, 0);
}
.btn-yellow:hover {
    background: rgba(255,193,7,.8);
}
.btn-grey {
    background: rgb(96, 125, 139);
    color: #fff !important;
   box-shadow: 0px 4px 0px 0px rgb(69, 91, 101);

}
.btn-grey:hover {
    background: rgba(96,125,139,.8);
}
.btn--grey {
    background: rgb(0, 150, 136);
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px rgb(1,101,92);
}
.btn--grey:hover {
    background: rgba(0,150,136,.8);
}
.btn-tabla {
    background: rgb(255,255,255);
    color: #444;
    border: 1px solid #c3c3c3 !important;
}
.btn-tabla:hover {
    border: 1px solid rgb(255, 193, 7) !important;
    color: rgb(255, 160, 7) !important;
}
.btn-call {
    background-color: rgb(255,68,0);
    color: #fff !important;
    box-shadow: 0px 3px 0px 0px rgb(199, 53, 0);
}
.btn-call:hover {
    background-color: rgba(255,68,0,.8);
}
.btn-primario {
    background-color: #0088cf; 
    background-image: none;
    border: 1px solid #0088cf;
    background: linear-gradient(to bottom,#17a1e6 0,#0088cf 100%);
    color: #fff;
}
.btn-primario:hover {
    color: #fff;
    background: linear-gradient(to bottom,#17a1e6 0,#0088cf 100%);
}
.btn-ok {
    background-color: #7bbf2c;
    background-image: none;
    border: 1px solid #7bbf2c;
    background: linear-gradient(to bottom,#a3de5f 0,#7bbf2c 100%);
    color: #fff;
}
.btn-ok:hover {
    background: linear-gradient(to bottom,#a3de5f 0,#7bbf2c 100%);
    color: #fff;
}
.btn-secundario {
    background-color: #f77d0e;
    background-image: none;
    border: 1px solid #f77d0e;
    font-weight: 700;
    background: linear-gradient(to bottom,#fc8c14 0,#f77d0e 100%);
    color: #fff;
}
.btn-secundario:hover {
    color: #fff;
    background: linear-gradient(to bottom,#fc8c14 0,#f77d0e 100%);
}
#btn-up {
    color: #fff;
    margin: 0;
    padding: 20px 15px;
    /* border: 1px solid #fff; */
    position: absolute;
    bottom: 0;
    right: 2%;
    text-decoration: none;
    background: #333;
    z-index: 90;
}
#btn-up:hover {
    background: #222;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.icon-arrow_up {
    font-size: 1.8em;
    color: #fff;
}
/*
* CSS Help
*---------------------------------*/
.wrapper-btn {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    margin: 5px auto;
    text-align: right;
}
.btn-center {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: block;
    text-align: center;
}
.btn-left {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: block;
    text-align: left;
}
.btn-right {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: block;
    text-align: right;
}
.btn-large {
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 1.2em;
}
.btn-full {
    width: 100%;
    text-align: center;
}