.boton{
    margin: 0px 5px;
    border-radius: 0;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    position: relative;
    float: left;
    text-decoration: none;
}

.boton-principal{
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: white;
}

.boton-principal:focus, .boton-principal:focus-visible, .boton-principal:hover{
    background-color: var(--main-color);    
    color: white;
}

.boton-secundario {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: white;    
}

.boton-secundario:focus, .boton-secundario:focus-visible. .boton-secundario:hover {
    background-color: var(--secondary-color);
    color: white;  
}

.boton-terciario{
    background-color: var(--third-color);
    border: 1px solid var(--third-color);
    color: white!important;    

}
.boton-terciario:focus, .boton-terciario:focus-visible, .boton-terciario:hover{
    background-color: var(--third-color);
    color: white!important;
}

.boton-cuaternario {
    background-color: var(--fourth-color);
    border: 1px solid var(--fourth-color);
    color: white;    
}

.boton-cuaternario:focus, .boton-cuaternario:focus-visible, .boton-cuaternario:hover {
    background-color: var(--fourth-color);
    color: white;
}

.boton-principal:hover, .boton-secundario:hover, .boton-terciario:hover, .boton-cuaternario:hover,
.boton-principal:focus, .boton-secundario:focus, .boton-terciario:focus, .boton-cuaternario:focus,
.boton-principal:focus-visible, .boton-secundario:focus-visible, .boton-terciario:focus-visible, .boton-cuaternario:focus-visible{
    filter: brightness(90%)!important;
    text-decoration: none!important;
}

.boton-mediano{
    padding: 5px 10px;
}

.boton-largo{
    padding: 2px 20px;
}

.btn-group{
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.btn-buscador{
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
}

.btn-buscar{
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-limpiar{
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn{
    text-transform: none;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: normal;
}