html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: #fff;
    height: 100%;
    font-size: 0.875rem;
}

body > div.container {
    background: white;
}

hr {
    color: #d1d1d1;
}

@media (min-width: 768px) {

    body {
        background-color: #F8F9FA;
    }

    body > div.container {
        max-width: 400px;
        border: 1px solid #e9e9e9;
        border-top: 0;
    }
}

/* Estilos para centralizar o loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Cor de fundo do loader */
    z-index: 9999;
}

/* Estilos para a logo piscando */
.logo-loader {
    width: 80px; /* Ajuste o tamanho conforme necessário */
    animation: blink 1s infinite ease-in-out;
    position: relative;
    z-index: 10; /* Garante que a logo fica acima do spinner */
}

#spinner-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Animação para piscar */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Spinner giratório ao redor da logo */
.spinner {
    position: absolute;
    width: 130px; /* Define o diâmetro do círculo */
    height: 130px;
    border: 4px solid transparent;
    border-top: 4px solid #6C8695; /* Cor da borda que gira */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animação de rotação */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.place-info {
    display: flex;
}

.restaurant {
    display: flex;
    background: white;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.75rem 0 0.75rem;
}

.place-info .identity-infos {
    display: flex;
    flex-direction: column;
    margin-left: 0.75rem;
}

.place-info .identity-infos h2 {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.place-info .identity-infos span {
    font-size: 0.825rem;
}

.place-info .logo {
    object-fit: cover;
    width: 72px;
    height: 72px;
}

.place-info .food-category {
    display: flex;
    margin-bottom: 0.5rem;
}

.place-info .city {
    display: flex;
    align-items: center;
}

.place-info .city img {
    height: 0.75rem;
    padding-right: 0.15rem;
}

.place-info .food-category span:nth-child(2) {
    margin-left: 7px;
}

.top-bar {
    position: sticky;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /*box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);*/
    box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.15);
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1001;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.menu-button i {
    font-size: 0.65rem;
}

.more-info {
    margin: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 36px;
    background: white;
    border: 0;
}

.more-info img {
    height: 16px;
}

.flag-dropdown {
    margin: 10px;
    cursor: pointer;
}

#offcanvasRestaurantInfos .offcanvas-header {
    align-items: unset;
    padding-bottom: 0;
}

#offcanvasRestaurantInfos .info-description {
    margin-bottom: 2rem;
    font-size: 0.850em;
}

#offcanvasRestaurantInfos .info-address, #offcanvasRestaurantInfos .info-phone {
    margin-bottom: 1.5rem;
    font-size: 0.850em;
}

#offcanvasRestaurantInfos .logo {
    object-fit: cover;
    width: 70px;
    height: 70px;
}

.social-icon {
    height: 30px;
}

.reservation .alerts {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}

#reservation-form label i {
    margin-right: 0.5rem;
}

.sticky-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* Acima do conteúdo */
}

.transition-opacity {
    transition: opacity 0.2s ease;
    opacity: 1;
}

.hidden-opacity {
    opacity: 0;
}

.hidden-display {
    display: none;
}

.reservation-about h6 {
    margin-bottom: 0.75rem;
}

.reservation-about p {
    margin-bottom: 0.5rem;
}

.reservation-about .title {
    font-weight: 600;
}

.reservation-about .conditions {
    margin-top: 0.25rem;
    font-style: italic;
}

.reservation-about .resume {
    margin-bottom: 1rem;
}

.reservation-about .resume i {
    color: #6C8695;
    margin-right: 0.125rem;
}

.reservation-about .infos {
    display: flex;
    margin-bottom: 0.35rem;
    gap: 1rem;
}

.reservation-terms {
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer
}

.fields {
    padding: 0 0.75rem;
}

#back-btn {
    cursor: pointer;
}

.menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.3;
    gap: 1rem;
    margin: 2rem 0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: 0.4s;
}

.menu-footer:hover {
    text-decoration: none;
    color: inherit;
    opacity: 1;
}

.menu-footer img {
    height: 1.5rem;
    width: auto;
}

.menu-footer span {
    font-size: 0.750rem;
}