.body {
    background-color: #c1c1c1;
}

:root[data-theme='dark'] {
    filter: invert(100%) hue-rotate(180deg) brightness(90%);
}

:root[data-theme='dark'] img {
    filter: invert(100%) hue-rotate(180deg) brightness(100%);
}

:root[data-theme='dark'] #dropdown {
    filter: invert(100%) hue-rotate(180deg) brightness(100%);
}

:root[data-theme='dark'] .color-div {
    filter: invert(100%) hue-rotate(180deg) brightness(100%);
}

#store_search {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

#button_search {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Exibe o menu em desktop */
@media only screen and (min-width: 1024px) {
  #responsive-navbar {
    display: block;
  }
  #principal .navbar.is-white {
    padding-top: 33px;
    padding-bottom: 33px;
  }
  #dropdown {
    display: none;
  }
  #store_search{
    width: 396px;
  }
  table .img-container{
    width: 196px !important;
  }
}

/* Exibe o botão de menu em mobile */
@media only screen and (max-width: 1023px) {
  #dropdown {
    display: block;
  }
  #principal .navbar.is-white {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-mobile-content {
    padding-top: 39px !important;
  }
  #store_search{
    width: 333px;
  }
  .table {
    width: 150% !important;
  }
  .menu{
    max-height: 0;
  }
  .principal {
    max-height: 0;
  }
  .financial {
    max-height: 0;
  }
  .registration {
    max-height: 0;
  }
  .storage {
    max-height: 0;
  }
  .account_settings {
    max-height: 0;
  }
}

#responsive-navbar ul {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    padding-inline-start: 0 !important;
}

#myLinks {
    transition: height 2s;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.img-container {
    width: 100%;
    overflow: hidden;
    align-items: center;
    max-height: 369px;
}

.img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Mantém a proporção da imagem e preenche a div */
    border-radius: 5px;
}

#dropdown {
    width: 100%;
}

.list-item-title {
    padding: 15px
}


video {
    display: none;
}

#installment {
    display: none;
}

#cart-quantity {
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  text-decoration: none;
  z-index: 1003;
}

.content figure{
    margin: 0 !important;
}

.table-container {
  overflow-x: auto;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
}

.table-container th, .table-container td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

.my-actions {
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 69px;
}

#miniatura {
    width: 40px;
    height: 40px;
}

main {
    flex: 1;
    padding-bottom: 60px;
}

footer {
    line-height: 60px;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
    padding: 8px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .responsive-table th, .responsive-table td {
        font-size: 12px;
        padding: 4px;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 45px !important;
        height: 25px !important;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 18px    !important;
        width: 18px !important;
        left: 1px !important;
        bottom: 4px !important;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

}

       .video-container {
            position: relative;
            display: none;
        }

        video {
            width: 100%;
        }

        .scanner-line {
            position: absolute;
            display: none;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: red;
            animation: scan 2s infinite;
        }

        @keyframes scan {
            0% {
                top: 60%;
            }
            50% {
                top: 40%;
            }
            100% {
                top: 60%;
            }
        }

.text-decoration-none a {
    text-decoration: none;
}

    .hidden-section {
      height: 0;
      overflow: hidden;
      transition: height 0.5s ease-out;
    }
    .visible-section {
      height: auto;
    }

    .fade-section .content {
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

    .fade-section.visible .content {
      opacity: 1;
    }

nav ul li {
    list-style: none;
}

.content li+li {
    margin-top: 0 !important;
}

#navbar-burguer .material-symbols-outlined {
    font-size: 32px;
}

#dropdown {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.swiper{
    z-index: 0 !important;
}

.file label {
    font-size: 12px;
}

.swiper img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

#header {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.file-cta {
    height: 40px;
}

li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

[data-title] {
  position: relative;
  cursor: help;
}

[data-title]:hover::after {
  content: attr(data-title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -36px;
  padding: 7px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
  z-index: 1;
}

#hiddenSection .menu-list li a:hover{
    background-color: #000;
    border-radius: 5px;
}

#my-swiper {
 max-width 402px;
}

aside ul li {
    color: #363636px;
    font-size: 16px;
    font-weight: 350 !important;
}

aside .menu-label{
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold !important;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    vertical-align: middle;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.product {
    flex: 1 1 calc(50% - 10px);
    margin: 0px !important;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    color: #4a4a4a;
    max-width: 269px;
    max-height: 549px !important;
}

.product a {
    margin-top: auto;
}

@media (max-width: 768px) {
    .product {
        flex: 1 1 calc(50% - 10px);
    }
}

 /* Menu Mobile */
  .navbar-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1002;
    transition: left 0.3s ease;
  }

  .navbar-mobile.is-active {
    left: 0;
  }

  .navbar-mobile-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
  }

  .navbar-mobile-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .navbar-mobile-links {
    margin-top: 100px;
  }

  .navbar-mobile-links .navbar-item {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
    color: #000000;
  }

  .navbar-mobile-links .buttons {
    margin-top: 20px;
  }

  #principal {
  position: fixed;
  text-align: center;
  z-index: 1003;
  top: 0;
  left: 0;
  right: 0;
  }

#logo {
    overflow:hidden;
    border-radius:10px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

#div_search {
    z-index: 999;
}

#search_product {
    display: block;
    margin: 0 auto;
}


#alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.72);
    display: none;
}

.alert-content{
	position: relative;
	width: 450px;
	height: 450px;
	margin: 120px auto;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);
	overflow: auto;
}

#alert img{
	display: block;
	margin: 0 auto;
	text-align: center;
}

.alert-title{
	font: normal 24px "Raleway", sans-serif;
	font-weight: 600;
	text-align: center;
	margin-top: 9px;
}

.alert-body{
	font: normal 18px "Raleway", sans-serif;
	margin: 6px;
	padding: 22px;
	text-align: center;
}

.close{
	position: absolute;
	font: bold 32px sans-serif;
	padding: 16px;
	cursor: pointer;
	display: none;
}

.navbar.is-dark {
   border-radius: 5px;
}

.navbar-menu {
    margin: 0 auto !important;
}

.navbar-start {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navbar-start .navbar-item {
    padding: 1rem !important;
    border-radius: 5px;
}

.navbar-menu {
    max-width: 1400px;
    text-align: center;
    margin: 0 auto;
}

#navbar-burguer {
    position: relative;
    z-index: 1002;
}

.container.is-fluid{
    font-size: 18px !important;
}

.product-min-height{
    min-height: 596px !important;
}

.press {
    box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
}

.press:hover {
    box-shadow: inset 2px 2px 5px #b8b9be,inset -3px -3px 7px #fff !important;
}

@media only screen and (max-width: 1024px) {
.navbar-all {
    font-size: 1.5rem !important;
}
}

#dropdown {
    background-color: #222834;
}

.menu {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.menu.is-active-menu{
    display: block !important;
    max-height: 1338px !important;
}

.principal {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.principal.is-active-principal{
    display: block !important;
    max-height: 1338px !important;
}

.financial {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.financial.is-active-financial{
    display: block !important;
    max-height: 1338px !important;
}

.registration {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.registration.is-active-registration{
    display: block !important;
    max-height: 1338px !important;
}

.storage {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.storage.is-active-storage{
    display: block !important;
    max-height: 1338px !important;
}

.account_settings {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.account_settings.is-active-account_settings{
    display: block !important;
    max-height: 1338px !important;
}

.d-card {
    min-height:396px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
    color: var(--body-fg);
    background-color: var(--body-bg);
}

/* THEME SWITCH */
.theme-toggle {
    cursor: pointer;
    border: none;
    padding: 0;
    background: transparent;
    vertical-align: middle;
    margin-inline-start: 5px;
    margin-top: -1px;
}

.theme-toggle svg {
    vertical-align: middle;
    height: 1rem;
    width: 1rem;
    display: none;
}

/*
Fully hide screen reader text so we only show the one matching the current
theme.
*/
.theme-toggle .visually-hidden {
    display: none;
}

html[data-theme="auto"] .theme-toggle .theme-label-when-auto {
    display: block;
}

html[data-theme="dark"] .theme-toggle .theme-label-when-dark {
    display: block;
}

html[data-theme="light"] .theme-toggle .theme-label-when-light {
    display: block;
}

/* ICONS */
.theme-toggle svg.theme-icon-when-auto,
.theme-toggle svg.theme-icon-when-dark,
.theme-toggle svg.theme-icon-when-light {
    fill: var(--header-link-color);
    color: var(--header-bg);
}

html[data-theme="auto"] .theme-toggle svg.theme-icon-when-auto {
    display: block;
}

html[data-theme="dark"] .theme-toggle svg.theme-icon-when-dark {
    display: block;
}

html[data-theme="light"] .theme-toggle svg.theme-icon-when-light {
    display: block;
}

.btn-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    background-color: #00ff1f;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp svg {
    width: 42px;
    height: 42px;
    fill: #fff;
}

.div-search {
    position: absolute;
    font: normal 16px "Verdana", sans-serif;
    top: 70px;
    width: 286px;
    min-height: 255px;
    height: auto;
    box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    background-color: #fff;
    display: none;
    padding: 2rem;
    text-transform: capitalize;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.div-search ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.div-search li {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.div-search img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.div-search a {
  text-decoration: none;
  color: #333;
}

.div-search a:hover {
  color: #007BFF;
}

.ticket-input {
    border-bottom: 5px solid #c1c1c1;
}

#ticket-button {
    border-bottom: 5px solid #339267;
}

#id_service_quantity {
    display: none;
}
