body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #189ff9;
    color: #ffffff;
    padding: 10px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo img {
    max-width: 150px;
    height: auto;
}

.hamburguesa {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburguesa span {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    margin-bottom: 5px;
}

/* Menú */
.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    font-size: 16px;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
}

@media(max-width: 767px) {
    .navbar {
        flex-direction: row;
    }

    .logo {
        order: 1;
    }

    .hamburguesa {
        display: flex;
        order: 3;
    }

    .menu {
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .menu ul {
        display: none;
        gap: 10px;
        align-items: center;
    }

    .menu-items.show-menu {
        display: flex;
        text-align: center;
    }
}

.top-row {
    background-color: #161d30;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

@media(max-width: 767px) {
    .top-row {
        font-size: 14px;
        padding: 8px;
    }
}

#icono:hover {
    color: orange;
}

.banner_top_height img {
    margin: 0;
    padding: 0;
}

.banner_top_height {
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
    margin-bottom: 50px;
}

.content {
    padding-bottom: 60px;
}

.footer {
    /* background-color: #2380c4; */
    background-color: #0b4394;
    color: #ffffff;
    padding: 5px;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin-bottom: 0;
}

.receipt-card {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.receipt-title {
    color: #2380c4;
    font-size: 24px;
    margin-bottom: 10px;
}

.receipt-details {
    margin-top: 20px;
}

.receipt-details p {
    margin: 5px 0;
}

.receipt-thank-you {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminosCondition {
    max-height: 50px;
    overflow: auto;
}

.botones-container {
    text-align: center;
}

.boton {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.ricvIcon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.ricvIcon span {
    color: #fff;
}

.ricvIcon.aprove {
    background: #5fa55a;
}

.ricvIcon.denny {
    background: #fa5457;
}