.logo-alamo img {
    max-width: 80px;
}

.sendMessage {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border-radius: 5px;
}

.msg-foot .btn-primary:hover {
    box-shadow: 6px 2px 6px -5px #dddddd;
    transform: scale(1.01);
}

.sendMessage.success {
    background-color: #00c439;
    color: rgb(255 255 255);
    font-weight: 600;
}

#accionesFactura .hidden {
    display: none;
}

.sendMessage.danger {
    background-color: #ff0000;
    color: rgb(255, 255, 255);
}

.home-button {
    display: block;
    position: static;
    width: auto;
}

.logos-header {
    box-sizing: border-box;
    position: static;
    width: 108px;
    height: auto;
    text-align: center;
}

.logos-header img:first-of-type {
    height: 26px;
}

.logos-header img {
    margin: 0;
}

.invoice-opt-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_invoice-type {
    position: relative;
    color: rgb(63, 63, 63);
    margin: 0 10px 10px 0;
    width: 100%;
    max-width: 350px;
}

.btn_invoice-type span {
    font-size: 16px;
    font-family: 'Roboto-BoldCond';
}

.btn_invoice-type:hover {
    background-color: rgb(41, 94, 171);
    color: white;
}

.btn_invoice-type--img {
    display: none;
    width: 35px;
    position: absolute;
    right: -15px;
    bottom: -15px;
}

.btn_invoice-type.selected {
    border-color: rgb(41, 94, 171);
}

.btn_invoice-type.selected .btn_invoice-type--img {
    display: initial;
}

.btn-facturacion:hover {
    color: white;
}

@media (max-width: 575px) {
    .btn_invoice-type.selected {
        background-color: rgb(41, 94, 171);
        border-color: rgb(41, 94, 171);
        color: white;
    }
}


/**/

.header {
    display: flex;
    justify-content: space-between;
    background: #005fab;
    align-items: center;
    padding: 0 10px;
}

.header h1 {
    padding-top: 0;
}

.header-menu {
    height: 55px;
    background: #e9edf0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #d3d4d9;
}

.header-content {
    width: 95%;
    max-width: 1000px;
    margin: 0px auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bienvenido {
    margin: 15px 0px;
    font-size: 20px;
}

ul.menu {
    top: 2px;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.menu>li {
    list-style: none;
    display: inline-block;
    padding-left: 50px;
}

.menu a {
    color: black;
    text-decoration: none;
}

#modal-contacto .modal-footer div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-mobile {
    display: none;
}

.header-mobile button {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #c1c1c1;
    width: 28px;
    height: 28px;
    color: black
}

.header-mobile-ul {
    display: none;
    max-height: 0;
    padding: 0 15px;
    background-color: #e9edf0;
    list-style: none;
    width: 100%;
    position: absolute;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.header-mobile-ul li a {
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
    color: black;
}

.show {
    display: block;
    animation-name: show-mobile-menu;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

@keyframes show-mobile-menu {
    from {
        max-height: 0;
    }

    to {
        max-height: 800px;
    }
}

@media (max-width: 575px) {
    .header-title>h1 {
        font-size: 18px;
    }

    .menu {
        display: none;
    }

    .header-mobile {
        display: block;
    }
}

/** Estilos de la nueva tarjeta de infor de pago*/

.card-invoice-info {
    position: static;
    box-shadow: 6px 6px 8px -2px #e5e1e1;
    border: 1px solid #e5e1e1;
    min-width: 300px;
    min-height: 90px;
    max-width: 380px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    padding-top: 0;
    font-family: 'Roboto-Regular';
    z-index: 0;
}

.card-invoice-info header,
.card-invoice-info footer {
    color: white;
    padding: 10px 10px;
}

.card-invoive-info_body {
    position: relative;
    padding: 10px 10px;
}

.card-invoice-info header {
    text-align: center;
    background: #005fab;
    height: initial;
    border-bottom: none;
}

.card-invoice-info footer {
    background-color: rgb(19, 19, 19);
}

.td-pr-custom {
    padding-right: 20px;
}


/* Estilos de nuevos botones */

.custom-btn {
    display: grid;
    grid-template-columns: auto auto;
    border: 1px solid rgb(198 198 198);
    background-color: white;
    padding: 15px 15px;
    color: gray;
    font-size: 16px;
    max-width: 200px;
    border-radius: 5px;
    width: initial;
    height: initial;
}

.custom-btn_icon {
    display: inline-block;
    padding: 5px 8px;
    color: white;
    background-color: #005fab;
    border-radius: 50%;
    margin: 0;
    letter-spacing: initial;
    vertical-align: initial;
    font-size: 0px;
    transition-duration: .5s;
    transition-property: border-radius;
}

.custom-btn:hover .custom-btn_icon{
    border-radius: 5px;
}

.custom-btn:hover {
    border-color: #929292;
    color: #545454;
}


.custom-btn span:first-child {
    text-align: left;
    font-size: 16px;
    margin: 0;
    letter-spacing: initial;
    vertical-align: initial;
}

#info-ticket-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    gap: 10px;
}

#info-ticket {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.card-invoive-info_body div.badge {
    background-color: #00c439;
    color: white;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    bottom: 5px;
    right: 10px;
    padding: 5px;
    border-radius: 5px;
}