_botonera-secundaria.scss 784 Bytes
.botonera-secundaria {
    .row {
        border-radius: 5px;
        overflow: hidden;
    }
    .btn {
        display: grid;
        border-width: 3px !important;
        border-radius: .7rem !important;
        margin-right: 1px;
        width: calc(100% - 1px);
        margin-bottom: 1px;

        &:hover{
            background-color: #d8b07d;
            border-color: #e09125 !important;
        }
        &:focus{
            box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
        }
        img{
            width: 50%;
            margin: auto
        }
        span{
            font-size: 11px;
            margin-left: -.25rem;
            margin-right: -.25rem;
        }
    }
    @media(max-width: 992px){
        .btn{
            font-weight: 700;
        }
    }
}