/* FOR ALL THE HOME PAGE */
body {
    font-family: 'Nunito', sans-serif;
}

/* grid for the page */
.wrapper,
.content-wrapper,
.content {
    background-color: #efefef;
}
#btnTicket {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 46px;
    height: 46px;
    padding: 0; /* Remueve el padding para evitar problemas de ajuste */
    background-color: #007bff;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1000; /* Asegúrate de que el botón esté por encima de otros elementos */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 21312312;
}
#btnTicket img {
    width: 45px;
    height: 50px;
    pointer-events: none;
}
#formTicket {
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 440px;
    background-color: white;
    padding: 10px 20px;
    border: rgb(230, 230, 230) 2px solid;
    border-radius: 5px;
    transform: scale(0);
    transform-origin: bottom right;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    box-shadow: 1px 2px 14px 1px rgba(172, 172, 172, 0.458);
}
#formTicket.open {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    z-index: 3000;
}
/* end */

/* navbar */
#navbar {
    grid-area: navbar;
    position: relative;
    background-color: var(--redmain);
    color: rgb(246, 246, 246);
}
#navbar .container-fluid {
    background-color: var(--redmain);

}
#navbar #navbarNavDropdown {
    position: relative;
}
#navbar .navbar-nav li a {
    color: white !important;
}


.authForPC
{
    position: absolute;
    right: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 250px;
}
.authForPC .btnLogin {
    background-color: var(--redmain);
    color: aliceblue;
    height: 38px;
}
.authForPhone {
    display: none;
    position: absolute;
    right: 0px;
}
.authForPhone .nameUserBtn {
    width: 160px;
}

#btnCart
{
    height: 38px;
}
/* end */

/* main */

#main {
    grid-area: main;
    background-color: #F5F7F9;
}

/* end */

/* footer */

#footer {
    grid-area: footer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #777;
    background-color: rgb(232, 232, 232);
    text-align: center;
}
#footer p {
    margin: auto;
    font-size: 12px;
}

/* end */




/* MEDIA QUERIES */

@media screen and (max-width: 820px)
{
    #navbar .navbar-nav {
        margin-top: 15px;
    }
    .authForPhone {
        display: block;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 220px;
    }
    .authForPC {
        display: none;
    }
}
