﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}
html, body {
    height: 100%;
    margin: 0;
}
/* Contenido principal que se expandirá */
.main-content {
    flex: 1;
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
input[type="file"]{
    display:none;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #777;
    border-color: #fff
}

.show_image:hover {
    cursor:pointer;
    border: 2px solid #a0a0cf73;
    box-shadow: 2px 2px 7px 0px;
    transition: .4s all;
}

.btn-nuevo {
    top: 20% !important;
    position: absolute;
}

.mt-x{
    margin-top: 10rem;
}

.btn-menu > button{
    width: 100% !important;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
}
.pagocont {
    padding: 4rem;
    margin-top: 150px;
    /* background: #efefef; */
    width: 100% !important;
}
.pagotarjeta {
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 20px;
}
.ordencaja {
    display: flex; /* Habilita el modelo de flexbox */
    justify-content: center; /* Centra el contenido horizontalmente */
    align-items: center; /* Centra el contenido verticalmente */
    padding: 4rem;
    margin-top: 150px;
    width: 100%;
    height: 80vh;
}
.ordencard {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
}
/*pago con tarjeta*/
.ordencard2 {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
}
/** Ajuste de los textos dentro de la card */
.ordentext {
    font-size: 2rem;
    margin-left: 10px; /* Ajuste de margen a 10px */
}

/* Ajuste del label con margen */
.orden-label {
    margin-left: 10px; /* Margen para separar del borde */
    font-weight: 600;
    font-size: 2rem;
}

/* Input estilizado */
.orden-input {
    margin-left: 10px;
    width: 35%;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ccc;
}

/* Botón mejorado */
.btn-primary {
    background-color: #ed7000;
    border: none;
    transition: 0.3s;
}

    .btn-primary:hover {
        background-color: #ff8110;
        transform: scale(1.05);
    }
@media(max-width:400px){
    .ordencard {
        border-radius: 12px;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    .orden-input {
        margin-left: 10px;
         width: 100%; 
        border-radius: 8px;
        padding: 10px;
        border: 1px solid #ccc;
    }
    .ordencard2 {
        border-radius: 12px;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
}