/*-------------------------------- BOTONES ---------------------------------*/

.btn {
    color: #fff !important;
    border-radius: 0;
}

.btn-enlace {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    color: #222;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5px solid #ccc;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}

.enlace {
    border: 0;
    background-color: transparent;
    font-size: .8rem;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
    padding: 0 !important;
    text-align: left !important;
}

.btn-enlace:focus,
.btn-enlace:hover {
    text-decoration: none;
    outline: 0;
}

.btn-primario,
.btn-warning,
.btn-transp,
.btn-normal,
.btn-verde,
.btn-azul,
.btn-naranja,
.btn-info {
    line-height: 42px;
    padding-left: 30px;
    padding-right: 30px;
    color: #fff;
    border: 1px solid transparent;
    display: inline-block;
    font-weight: 600;
    position: relative;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    /*text-transform: uppercase;*/
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    vertical-align: middle;
    border-radius: 0;
}

.btn-normal {
    background-color: #f6214b;
}

.btn-azul {
    background-color: #008cba;
}

.btn-naranja {
    background-color: #fd7e14;
}

.btn-info {
    background-color: #17a2b8;
}

.btn-green {
    background-color: #286043;
}

.btn-warning {
    background-color: #ffc107;
}

.btn-primario {
    background-image: -moz-linear-gradient(0deg, #f45622 0%, #f53e54 100%);
    background-image: -webkit-linear-gradient(0deg, #f45622 0%, #f53e54 100%);
    background-image: -ms-linear-gradient(0deg, #f45622 0%, #f53e54 100%);
}

.btn-transp {
    background-color: transparent;
    border: 1px solid #999;
    color: #999;
}

.btn-primario:focus {
    outline: none;
}

.btn-primario:hover,
.btn-warning:hover,
.btn-enlace:hover,
.btn-transp:hover,
.btn-normal:hover,
.btn-verde:hover,
.btn-azul:hover,
.btn-naranja:hover,
.btn-info:hover,
.btn-green:hover {
    transform: scale(1.02);
    color: #ccc;
}

.btn-enlace:hover,
.btn-transp:hover {
    color: #fff;
}

.btn-transp:hover {
    color: #999;
}

.btn-sm {
    font-size: 0.9rem !important;
    line-height: 1.5;
}


/*-------------------------------WIDTH MAXIMO DE 370PX------------------------------*/

@media screen and (max-width: 370px) {
    .btn-primario,
    .btn-warning,
    .btn-enlace,
    .btn-transp {
        width: 100%;
        line-height: 2.0;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
}


/*------------------------------WIDTH MAXIMO DE 480PX------------------------------*/

@media screen and (max-width: 480px) {
    .btn-primario,
    .btn-warning,
    .btn-enlace,
    .btn-transp {
        width: 100%;
        line-height: 2.0;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
}


/*------------------------------WIDTH MAXIMO DE 640PX------------------------------*/

@media only screen and (max-width: 640px) {
    .btn-primario,
    .btn-warning {
        width: 100%;
        line-height: 2.0;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
}


/*-------------------------------- FIN BOTONES ---------------------------------*/