/* configurando grid e responsta a tela */
body {
    overflow: auto;
    margin: 0px;
}
html, body {
    height: 100vh; /* keep these full height to avoid push or pull */
    margin: 0; /* remove default margin on body */
}

fieldset{
margin: 0px;
padding: 0px;
}


.container {  
display: grid;
grid-template-columns: 100vw;
grid-template-rows: 100vw;
gap: 0px 0px;
grid-auto-flow: row;
justify-content: stretch;
align-content: stretch;
justify-items: stretch;
align-items: self-start;
grid-template-areas:
"container_pai";
width: 100vw;
height: 100vh;
}
.centro { 
display: grid;
grid-auto-columns: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-area: 2 / 2 / 3 / 3;
width: 100%;
height: 100%;
overflow: hidden;
}

.container_pai { 
display: grid;
grid-template-columns: 15% 65% 20%;
grid-template-rows: 7% 90% 3%;
gap: 0px 0px;
grid-auto-flow: row;
grid-area: container_pai;
width: 100vw;
height: 100vh;
}
.logo {
grid-area: 1 / 1 / 2 / 2;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
.superior {  display: grid;
grid-template-columns: 0% 100% 0%;
grid-template-rows: 100%;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"superior_esq superior_central superior_dir";
grid-area: 1 / 2 / 2 / 4;
}
.superior_esq { grid-area: superior_esq; }
.superior_central { grid-area: superior_central; }
.superior_dir { grid-area: superior_dir; }
.menuesquerdo {  
display: grid;
grid-template-columns: 100%;
grid-template-rows: 60% 40%;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"menuesquerdodataset"
"menuads";
grid-area: 2 / 1 / 4 / 2;
}
.menuesquerdodataset { grid-area: menuesquerdodataset; }
.menuads { grid-area: menuads; }
.lateraldireita { 
    grid-area: 2 / 3 / 3 / 4;
    margin: 0px;
    padding: 0px;
    width: 0%;
    height: 0%;
}
.lateraldireitafilho { 
    display: grid;
    grid-auto-columns: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
    grid-area: 2 / 3 / 3 / 4; }

.lat_direita_scroll {
    display: flex;
    background-color: #ebebeb;
    overflow-y: auto; /* ou scroll */
    overflow-x: hidden;
    justify-content: flex-start;     
    align-items: flex-start;
    height: 100%; /* ou outro valor fixo */
    width: 100%; /* opcional */
}
.rodape_pai { grid-area: 3 / 2 / 4 / 4;}

/* BOTÕES AUTOSAVE */
/* BOTÕES AUTOSAVE */
/* BOTÕES AUTOSAVE */
.botao-autosave-switch {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 100%;
  vertical-align: middle;
}

.botao-autosave-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.botao-autosave-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fe6a6a;
  transition: 0.4s;
  border-radius: 0px;
}

.botao-autosave-slider::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 35%;
  left: 8%;
  bottom: 18%;
  background-color: rgb(255, 255, 255);
  transition: 0.4s;
  border-radius: 50%;
}


input:checked + .botao-autosave-slider {
  background-color: #23c806;
  color: #ffffff;
}

input:checked + .botao-autosave-slider::before {
  transform: translateX(18px);
}

.botao-autosave-round {
  border-radius: 34px;
}

.botao-autosave-text {
  font-family: "Manrope", serif;
  display: block;
  max-width: 100px; /* opcional: limita largura pra textos maiores */
  word-wrap: break-word;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
  color:#fff;
}
.botao-autosave-text:hover{
  cursor: pointer;
}

a.botao-barra-superior {
  text-decoration: none; /* Removes underline */
  font-weight: 500;
}

/* BOTÕES AUTOSAVE */
/* BOTÕES AUTOSAVE */

#editor-datasetText-container {
  display: flex;
  padding-top: 5%;
  width: 100%;
  height: 95%;
  justify-content: center;
}

#editor-datasetText {
  width: 90%;
  height: 50%; /* 40% da altura do div pai */
  resize:vertical; /* Desabilitar redimensionamento */
  padding: 5px;
  font-size: 0.9rem;
}

/* BARRA SUPERIOR */
/* BARRA SUPERIOR-PARTE CENTRAL */
.barra-de-botoes-filho {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap; 
    background-color: #1E90FF;
    align-content: space-around;
}

.barra-de-botoes-filho-1 {
  display: flex;
  justify-content: space-evenly;
  height: auto;
  width: auto;
}

.botao-barra-superior {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
  width: auto;
  height: auto;
}

.botao-barra-superior img {
  width: 80%;
  max-width: 28px;
  max-height: 28px;
  margin-bottom: 3px;
}

.botao-barra-superior span {
  display: block;
  max-width: 100px; /* opcional: limita largura pra textos maiores */
  word-wrap: break-word;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color:#fff;
}
.botao-barra-superior:hover {
  background-color: #f1f1f16d;
}


.botao-barra-superior-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
}

.botao-barra-superior-logo img {
  height: 75%;
  
}

.botao-barra-superior-logo span {
  display: block;
  max-width: 100px; /* opcional: limita largura pra textos maiores */
  word-wrap: break-word;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color:#fff;
}
.botao-barra-superior-logo:hover {
  background-color: #f1f1f16d;
}


@media (max-height: 650px) {
  .botao-barra-superior {
    flex-direction: row;
  }
  .botao-barra-superior span {
    display: none;
  }
  .botao-autosave-text label {
    display: none;
  }

  .botao-autosave-slider::before {
    height: 10px;
    width: 10px;
  }
  .botao-autosave-switch {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 15px;
    vertical-align: middle;
  }

  .botao-barra-superior img {
    height: 80%;
    max-width: 24px;
    
    margin-bottom: 4px;
  }

}



/* RODAPE */
.rodape_f {
    display: flex;
    background-color: #969696;
    height: 100%;
    width: 100%;
}

/* LOGO */
.logo_img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background-color: #1E90FF;
    height: 100%;
    width: 100%;
    margin: 0px;
}

.logo_img h1 {
    font-family: "Manrope", serif;
    font-size: 1.1rem;
    padding-left: 10px;
    color: #fff;
    font-weight: 400;
}

.logo_mobile {
  display: none;
}




/* LOGO NO MEIO */
.background_logo_style{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
}


.background_logo_style h1 {
    font-family: "Manrope", serif;
    font-size: 1.4rem;
    margin: 0px;
    padding: 0px;
    color: #444;
}
.background_logo_style h2 {
    font-family: "Manrope", serif;
    font-size: 1rem;
    font-weight: 400;
    margin: 0px;
    color: #333333;
}
.background_logo_style img {
    margin: 0px;
    padding: 0px;
    padding-bottom: 10px;
}

/* MENU DIRETO ADS */
.menuads_f {
    display: flex;
    background-color: #969696;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.menuads_f img {
    width: 93%;
    height: 93%;
}

/* MENU LISTA DE DATASETS */
.menuesquerdodataset_filho{
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    flex-direction: row;
    height: 100%;
    width: 100%;
    background-color: #ebebeb;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    padding-top: 10%;
}


.menuads_f img {
    width: 93%;
    height: 93%;
}



/* Estilos dos itens da interface */
/* BARRA DE SCROLL */
::-webkit-scrollbar {
width: 13px;
height: 13px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #555; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #888; 
}

/* PCA_results */
#PCA_results .pca-section {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
}

#PCA_results .pca-section h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #333;
}

#PCA_results .component-detail {
  margin-top: 10px;
  padding: 8px;
  background: #ffffff;
  border: 1px dashed #aaa;
  border-radius: 6px;
}

#PCA_results ul {
  padding-left: 20px;
}

#PCA_results li {
  margin-bottom: 4px;
  font-family: monospace;
}


/* GERAL- BOTÃO DE SWITCH*/
/* The switch - the box around the slider */
/* From https://uiverse.io/ErzenXz/weak-falcon-28 */ 
.toggle-switch {
position: relative;
display: inline-block;
width: 28px;
height: 15px;
cursor: pointer;
margin-left: 6px;
}
.toggle-switch input[type="checkbox"] {
display: none;
}
.toggle-switch-background {
position: absolute;
top: 0;
left: 0;
width: 28px;
height: 15px;
background-color: #ddd;
border-radius: 20px;
box-shadow: inset 0 0 0 2px #ccc;
transition: background-color 0.3s ease-in-out;
}
.toggle-switch-handle {
position: absolute;
top: 0px;
left: 0px;
width: 14px;
height: 14px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease-in-out;
}
.toggle-switch::before {
content: "";
position: absolute;
top: -25px;
right: -35px;
font-size: 12px;
font-weight: bold;
color: #aaa;
text-shadow: 1px 1px #fff;
transition: color 0.3s ease-in-out;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-switch-handle {
transform: translateX(30px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 3px #05c46b;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-switch-background {
background-color: #458afa;
box-shadow: inset 0 0 0 2px #619af6;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-switch:before {
content: "On";
color: #458afa;
right: -15px;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-switch-background .toggle-switch-handle {
transform: translateX(15px);
}


/* From https://uiverse.io/Galahhad/sweet-ape-100 */ 
/* checkbox settings BASICO AZUL */
.ui-checkbox {
--primary-color: #1677ff;
--secondary-color: #ededed;
--primary-hover-color: #4096ff;
/* checkbox */
--checkbox-diameter: 15px;
--checkbox-border-radius: 5px;
--checkbox-border-color: #9e9e9e;
--checkbox-border-width: 1px;
--checkbox-border-style: solid;
/* checkmark */
--checkmark-size: 1;
}
.ui-checkbox, 
.ui-checkbox *, 
.ui-checkbox *::before, 
.ui-checkbox *::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.ui-checkbox {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-right: 0.4rem;
margin-left: 0px;
width: var(--checkbox-diameter);
height: var(--checkbox-diameter);
border-radius: var(--checkbox-border-radius);
background: var(--secondary-color);
border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
cursor: pointer;
position: relative;
}
.ui-checkbox::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
-webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
border-radius: inherit;
opacity: 0;
-webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
-o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}
.ui-checkbox::before {
top: 40%;
left: 50%;
content: "";
position: absolute;
width: 4px;
height: 7px;
border-right: 2px solid var(--secondary-color);
border-bottom: 2px solid var(--secondary-color);
-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
-ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
transform: translate(-50%, -50%) rotate(45deg) scale(0);
opacity: 0;
-webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
-o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}
/* actions */
.ui-checkbox:hover {
border-color: var(--primary-color);
}
.ui-checkbox:checked {
background: var(--primary-color);
border-color: transparent;
}
.ui-checkbox:checked::before {
opacity: 1;
-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
-ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
-webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
-o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}
.ui-checkbox:active:not(:checked)::after {
-webkit-transition: none;
-o-transition: none;
-webkit-box-shadow: none;
box-shadow: none;
transition: none;
opacity: 1;
}

/* checkbox settings BASICO AZUL DA CAIXA AUTO (sinalizado oque muda) */
.ui-checkbox_auto {
--primary-color: #1677ff;
--secondary-color: #ededed;
--primary-hover-color: #4096ff;
/* checkbox */
--checkbox-diameter: 15px;
--checkbox-border-radius: 5px;
--checkbox-border-color: #9e9e9e;
--checkbox-border-width: 1px;
--checkbox-border-style: solid;
/* checkmark */
--checkmark-size: 1;
}
.ui-checkbox_auto, 
.ui-checkbox_auto *, 
.ui-checkbox_auto *::before, 
.ui-checkbox_auto *::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.ui-checkbox_auto {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-right: 0.1rem; 
margin-left: 0.4rem; /* DIFERENÇA AQUI, NA NORMAL MARGEM É NA DIREITORA */
width: var(--checkbox-diameter);
height: var(--checkbox-diameter);
border-radius: var(--checkbox-border-radius);
background: var(--secondary-color);
border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
cursor: pointer;
position: relative;
}
.ui-checkbox_auto::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
-webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
border-radius: inherit;
opacity: 0;
-webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
-o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}
.ui-checkbox_auto::before {
top: 40%;
left: 50%;
content: "";
position: absolute;
width: 4px;
height: 7px;
border-right: 2px solid var(--secondary-color);
border-bottom: 2px solid var(--secondary-color);
-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
-ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
transform: translate(-50%, -50%) rotate(45deg) scale(0);
opacity: 0;
-webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
-o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}
/* actions */
.ui-checkbox_auto:hover {
border-color: var(--primary-color);
}
.ui-checkbox_auto:checked {
background: var(--primary-color);
border-color: transparent;
}
.ui-checkbox_auto:checked::before {
opacity: 1;
-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
-ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
-webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
-o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}
.ui-checkbox_auto:active:not(:checked)::after {
-webkit-transition: none;
-o-transition: none;
-webkit-box-shadow: none;
box-shadow: none;
transition: none;
opacity: 1;
}

/* Caxia de select básica https://www.sliderrevolution.com/resources/css-select-styles/ */
.lista-select-dropdown,
.lista-select-dropdown * {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}
.lista-select-dropdown {
  position: relative;
  background-color: #E6E6E6;
  border-radius: 4px;
}
.lista-select-dropdown select {
width: 100%;
font-size: 0.8rem;
font-weight: normal;
max-width: 100%;
padding: 5px 5px 5px 5px;
border: none;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.lista-select-dropdown select:active, .lista-select-dropdown select:focus {
  outline: none;
  box-shadow: none;
}
.lista-select-dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid #aaa;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}






/* sweet alarm */
.custom-swal-font {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* PAINEL LATERAL DIREITO */
/* GRÁFICOS */

/* botões na lateral duireita */
.div_disabled {
    pointer-events: none; /* Impede interações */
    opacity: 0.5; /* Deixa visualmente desativado */
}

.botao_tipoEedita {
background-image: linear-gradient(-180deg, #1677ff 0%, #4096ff 100%);
border-radius: 0.2rem;
box-sizing: border-box;
color: #FFFFFF;
display: flex;
font-size: 1rem;
justify-content: center;
padding: .2rem .5rem;
text-decoration: none;
width: 45%;
border: 0;
cursor: pointer;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.botao_tipoEedita:hover {
background-image: linear-gradient(-180deg, #60a7fd 0%, #1677ff 100%);
}

.botao-submit1 {
display: flex;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 0.8rem;
background: #f5f5f5;
color: #fff;
border: 1px solid #eee;
border-radius: 5px;
margin-left: 5px;
margin-top: 5px;
padding: 4px;
color: #000;
height: 1.6rem;
text-shadow: none;
cursor: pointer;

}

.botao-submit1:hover {
background: #4096ff;
color: #545454;
border: 1px solid #eee;
border-radius: 5px;
box-shadow: 5px 5px 5px #eee;
text-shadow: none;
}

.botao-submit-delete1 {
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
padding: 4px;
display: flex;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 0.8rem;
background: #f5f5f5;
border-radius: 5px;
padding: 0px;
color: #fff;
border: 1px solid #eee;
border-radius: 2px;
color: #000;
height: 1.6rem;
text-shadow: none;
}
.botao-submit-delete1:hover {
background: #ff9d9d;
color: #fff;
border-radius: 5px;
border: 1px solid #eee;
box-shadow: 5px 5px 5px #eee;
text-shadow: none;
}

.delete-btn {
  display: flex;
  align-items: center;
  background: #fefefe;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: 2px 2px 2px #dddddd;
  text-shadow: none;
  }

.delete-btn:hover {
  background: #ff9d9d;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: 5px 5px 5px #eee;
  text-shadow: none;
  }
.restore-btn {
  display: flex;
  align-items: center;
  background: #fefefe;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: 2px 2px 2px #dddddd;
  text-shadow: none;
  }

.restore-btn:hover {
  background: #4096ff;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: 5px 5px 5px #eee;
  text-shadow: none;
  }



/* PAINEL LATERAL DIREITO - Gráficos - accordion */
.panelAccordion {
width: 98%;
margin: 1%;
padding: 0px 0px;
margin: 0px;
padding-left: 1%;
background-color:#ffffff;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}

.accordion {
width: 98%;
padding-left: 1%;
background-color: #4a4a4a;
color: #ffffff;
cursor: pointer;
padding: 0.3rem;
text-align: left;
border: none;
margin-left: 1%;
outline: none;
transition: 0.4s;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 0.8rem;
font-weight: 400;
}

.accordion.active {
background-color: #252525;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: 400;
font-size: 0.9rem;

}

.tab {
width: 98%;
padding: 1%;
overflow: hidden;
border-bottom: 1px solid rgb(255, 255, 255);

}

.tab button {
background-color: inherit;
border: none;
outline: none;
cursor: pointer;
padding: 5px 8px;
transition: 0.3s;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 0.8rem;
color: #3d3d3d;


}

.tab button.active {
background-color: #bdddff;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #000000;
font-size: 0.9rem;
}

.tabcontent {
display: none;
padding: 5px;
border-top: none;
overflow: hidden;
}


/* PAINEL LATERAL DIREITO - ANALYZE - Botões de testes */
/* Estilos para o container com scroll */
.button-container {
    display: flex;
    flex-direction: column;
    max-height: 300px; /* Ajuste a altura máxima conforme necessário */
    overflow-y: auto; /* Permite o scroll vertical */
    width: 200px; /* Ajuste a largura conforme necessário */
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
  }


/* Estilos gerais para as modais */
.modal-style1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    width: 100%;
}

.modal-style1 h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}

.modal-style1 h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}

.modal-style1 [type=checkbox] {
    min-width: 15px;
    min-height: 15px;
    width: 15px;
    height: 15px;
    border: 1px solid #808080;
    background: #FFF;
    margin-right: 8px;
}

.modal-style1 [type=radio] {
    width: 1rem;
    height: 1rem;
    border: 1px solid #808080;
    background: #FFF;
}

.modal-style2 {
    display: flex;
    align-items: center;    
    align-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.modal-style2-2 {
    display: flex;
    margin: 0;
    padding: 0;
    margin-bottom: 8px;

    flex-direction: column;
    justify-content: start;
    width: 90%;
}


.modal-style2-4 {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #333333;
    text-align: justify;
    text-justify: inter-word;
}

.modal-style2-5 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    margin-top: 8px;
    padding: 0;
    font-size: 0.9rem;
    color: #333333;
    text-align: justify;
    text-justify: inter-word;
}

.modal-style2-5 a {
    text-decoration: none;
    cursor: help;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: #000;
}

.modal-style2-5 a:hover {
    text-decoration: none;
    cursor: help;
    color: #367cb5;
    font-weight: 600;
    cursor: help;
}

.modal-style-fieldset {
    width: 100%;
    margin-bottom: 8px;
}

.modal-style2-Note {
    width: 80%;
    font-size: 0.8rem;
    margin: 10px;
}

.modal {
    display: none; /* Inicialmente, o modal não é exibido */
    position: fixed; /* Modal fixa na tela, sem rolar com a página */
    z-index: 1001; /* Garante que o modal fique acima de outros elementos */
    left: 0; /* Posiciona a modal no canto esquerdo */
    top: 0; /* Posiciona a modal no topo da tela */
    width: 100vw; /* O modal ocupa toda a largura da tela */
    height: 100vh; /* O modal ocupa toda a altura da tela */
    overflow: auto; /* Se o conteúdo da modal for maior, barra de rolagem é adicionada */
    background-color: rgba(0, 0, 0, 0.4); /* Fundo preto semi-transparente */
    opacity: 0; /* A modal inicia invisível */
    transition: opacity 0.3s ease; /* Animação suave para a transição de opacidade */
  }
  
/* Quando a classe 'show' é adicionada à modal, ela se torna visível */
.modal.show {
display: block; /* Exibe o modal */
opacity: 1; /* Torna a modal completamente visível (opacidade 1) */
}

/* Estilos para o conteúdo da modal */
.modal-content {
background-color: #fefefe; /* Fundo branco para o conteúdo */
margin: 1% auto; /* Centraliza a modal com uma margem de 15% do topo e auto para centralizar horizontalmente */
padding: 12px; /* Adiciona preenchimento interno ao conteúdo */
border: 1px solid #888; /* Borda cinza clara ao redor do conteúdo */
width: 90%; /* A largura do conteúdo é 80% da tela */
max-width: 500px;
border-radius: 10px; /* Borda arredondada no conteúdo */
transition: transform 0.3s ease; /* Animação suave para o efeito de "crescimento" */
}






.modal-analyze-btn,
.modal-close-btn {
  appearance: none;
  backface-visibility: hidden;
  background-color: #1E90FF;
  border-radius: 8px;
  border-style: none;
  box-shadow: rgba(39, 174, 96, .15) 0 4px 9px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 13px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.modal-close-btn {
  background-color: #969696;
}

.modal-analyze-btn:hover {
  background-color: #5cc0fe;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.modal-close-btn:hover {
  background-color: #b6b6b6;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}


/* Estilo do spinner */
.spinnerBotaoTeste {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top: 2px solid transparent;
    animation: spinBotaoTeste 0.8s linear infinite;
}

/* Animação do spinner */
@keyframes spinBotaoTeste {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilo do check */
.checkBotaoTeste {
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    color: green;
    opacity: 0;
    animation: fadeInCheck 0.5s ease-in-out forwards;
}

/* Animação do check */
@keyframes fadeInCheck {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Estilo do botão durante o "check" */
.botaoCheck {
    background-color: #fff !important; /* Fundo branco */
    color: #000 !important; /* Cor do texto preta para contraste */
    border: 1px solid #ccc !important; /* Borda para destacar o botão */
}


/* Efeito ao passar o mouse */
.open-modal:hover {
  background-color: #39ace9; /* Cor de fundo ao passar o mouse */
  transform: scale(1.05); /* Aumenta ligeiramente o tamanho */
  }
  /* Estilo para o foco (quando o botão está focado) */
  .open-modal:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Adiciona um brilho sutil */
  }

  
/* Estilo básico para os botões */
.open-modal {
border: none;
background-color: transparent;
color: rgb(0, 0, 0);
font-size: 0.9rem;
padding: 1%;

text-align: left;
cursor: pointer;
transition: transform 0.2s ease, background-color 0.3s ease; /* Efeitos de transição */
}

/* Efeito ao clicar */
.open-modal:active {
background-color: #ffbf00; /* Cor de fundo ao clicar */
transform: scale(0.98); /* Diminui ligeiramente o tamanho */
}

/* Estilos para o container com scroll */
.button-container {
display: flex;
flex-direction: column;
max-height: max-content; /* Ajuste a altura máxima conforme necessário */
overflow-y: auto; /* Permite o scroll vertical */
width: 90%; /* Ajuste a largura conforme necessário */
border: 1px solid #ccc;
border-radius: 8px;
background-color: #f9f9f9;
}
  














































/* PAINEL LATERAL DIREITO - Gráficos - BOTÕES TIPOS DE GRÁFICO */

/* links "leia mais sobre..." */
.links-leiamais-1 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  margin-top: 8px;
  padding: 0;
  font-size: 0.6rem;
  color: #333333;
  text-align: justify;
  text-justify: inter-word;
}

.links-leiamais-1 a {
  text-decoration: none;
  cursor: help;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  margin: 0;
  padding: 0;
  color: #0a8df9;
}

.links-leiamais-1 a:hover {
  text-decoration: none;
  cursor: help;
  color: #5b9cd2;
  font-weight: 600;
  cursor: help;
}



/* Destaque para a caixa selecionada */
.hiddenradio [type=radio] {
    position: absolute;
    opacity: 0; /* Torna o input invisível, mas funcional */
    width: 0;
    height: 0;
    margin: 0px;
    padding: 0px;
}
.hiddenradio h3 {
    font-size: 1rem;
    font-family: Verdana, sans-serif;
    font-weight: 400;
    color: #2b2b2b;
    margin-left: 5px; /* Espaçamento entre imagem e texto */
}
/* Estilo do rótulo que envolve input, imagem e legenda */
.hiddenradio label {
    display: flex;
    flex-direction: row; /* Coloca imagem e legenda lado a lado */
    align-items: center;
    gap: 5px; /* Espaçamento entre imagem e legenda */
    padding: 2px; /* Espaço interno do rótulo */
    padding-left: 5%;
    border: 2px solid transparent; /* Borda padrão invisível */
    border-radius: 0px; /* Bordas arredondadas */
    cursor: pointer; /* Indica que é clicável */
    transition: border-color 0.2s ease, background-color 0.2s ease; /* Animação suave */
}
/* Destaque no hover */
.hiddenradio label:hover {
    background-color: #f1f1f1; /* Borda cinza clara ao passar o mouse */
}
/* Destaque ao selecionar (quando o input está marcado) */
.hiddenradio [type=radio]:checked + img {
    outline: 3px solid #72a2e9; /* Destaque na imagem */
    outline-offset: 2px;    
}
/* Estilo para a legenda quando o input está marcado */
.hiddenradio [type=radio]:checked + img + .caption {
    color: #186ae6; /* Cor da legenda ao selecionar */
    font-size: 1rem;
    font-weight: 400;
    
}
/* Estilo geral para a imagem */
.hiddenradio img {
    width: auto;
    height: 50px; /* Altura da imagem */
    transition: transform 0.2s ease; /* Animação suave ao interagir */
}
/* Efeito hover na imagem */
.hiddenradio label:hover img {
    transform: scale(1.7); /* Ampliar levemente no hover */
    
}
/* Estilo para a legenda */
.hiddenradio .caption {
    font-size: 0.8rem;
    font-family: Verdana, sans-serif;
    color: #000000;
    margin-left: 10%; /* Espaçamento entre imagem e texto */
}

/* Estilo para fundo branco em opções no gráfico */
.opcao_destaque {
  background-color: #f5f5f5;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}


.chart_fieldset_tipo0 { /* texto com switch on/off no topo dos campos */
    display: flex;
    justify-content: flex-start; 
    align-items: flex-start; 
    flex-direction: row; 
    flex-wrap: nowrap; 
    align-content: flex-start;
    font-size: 0.9rem;
    font-family: Verdana, sans-serif;
    color: #000000;
    margin-bottom: 10px;   
}

.chart_fieldset_tipo1{
    width: 100%;
    display: flex;
    justify-content: flex-start; 
    align-items: flex-start; 
    flex-direction: column; 
    flex-wrap: nowrap; 
    align-content: flex-start;
    font-size: 0.8rem;
    font-family: Verdana, sans-serif;
    color: #000000;
}

.chart_fieldset_tipo1 legend{
    font-size: 0.9rem;
    font-family: Verdana, sans-serif;
    font-weight: 400;
    color: #404040;
    padding-bottom: 8px;
}
.chart_fieldset_tipo1 label{
    display: flex;
    padding: 0.1rem;
    flex-direction: row;
    align-items: center;
}


/* BARRA INFERIOR */

.dropbtn {
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.dropbtn:hover {
  background: #4096ff;
  border: 1px solid #eee;
  border-radius: 5px;
  box-shadow: 5px 5px 5px #eee;
  text-shadow: none;
  }


/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%; /* faz o menu subir */
  right: 0;
  background-color: #f1f1f1;
  min-width: 160px;
  max-width: 300px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0px -8px 16px 0px rgba(0,0,0,0.2); /* sombra invertida */
  z-index: 9999;
}

/* Links dentro do dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

/* Mostrar menu */
.show {
  display: block;
}




/* INPUT TIPO number */

/* desativa setinhas padrões de aumntar e dimunir */
.input_number1::-webkit-outer-spin-button,
.input_number1::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.value-control {
width: 20px;
height: 20px;
margin: 0 1px;
background:#cbcbcb;
border: none;
color: #000000;
cursor: pointer;
font-size: 0.9rem;
text-align: center;
padding: 0;
}
.value-control:hover {
background: #eee;
}
.value-control:active {
background: #d5e4fb;
}

.input_number1 {
margin: 0;
height: 1rem;
width: 35px;
border: 1px solid #3b3b3b;
border-radius: 2px;
margin-right: 5px;
margin-left: 5px;
text-align: center;
font-size: 0.9rem;
}

/* radio_de_texto */
.radio_de_texto[type=radio] {
    display:none;
 }
 
.radio_de_texto[type=radio] + label {
    display: inline-block;
    border: 0px solid #eee;
    padding: 3px;
    margin-left: 5px;
    color: #bebebe;
    font-size: 0.8rem;
 }
 
.radio_de_texto[type=radio]:checked + label {
    background: #d5e4fb;
    color: #000;
    transition: border-color 0.2s ease, background-color 0.2s ease; 
 }



/* Page Loader Style */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it's on top */
}

.loader-image {
    width: 100px; /* Adjust size */
    height: 100px;
    animation: rotatePulse 1.5s infinite ease-in-out;
}

/* Animação de rotação e pulsação */
@keyframes rotatePulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-90deg) scale(1.2);
    }
    50% {
        transform: rotate(-180deg) scale(1);
    }
    75% {
        transform: rotate(-270deg) scale(1.2);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}




/* VERSÃO MOBILE */
@media (max-width: 600px) {
    /* Reset do layout grid para flexbox */
    .container, .container_pai {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      min-height: 100%;
    }

  /* 1. BARRA LOGO */

    .logo_mobile {
      order: 1;
      position: fixed;
      display: flex;
      top: 0;
      left: 0;
      right: 0;
      height: 40px;
      background-color: #2196F3;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      z-index: 999;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .logo {
      display: none;
    }
    .logo_img {
      height: 60px;
    }

    #botoes_main_help {
      display: none;
    }

    /* 2. BARRA SUPERIOR */
    .superior {
      order: 2;
      position: fixed;
      display: flex;
      flex-direction: column;
      margin-top: 40px;
      min-height: 100%;
      width: 100%;
    }
  
    .botao-barra-superior span {
      display: none;
    }
    .botao-barra-superior img {
      height: 36px;
    }
 
    /* 3. Menu lista dataset */

    .menuesquerdo {
    order: 3;
    display: flex;
    flex-direction: column;
    }

    .menuesquerdodataset_filho {
      flex-wrap: nowrap;
      align-items: center;
      padding: 5px;

    }

    .menuEsquerdoGraphType span {
      display: none;
    }

  

        /* 5. LATERAL DIREITA - Quinto elemento */

    .lateraldireitafilho {
      order: 4;
      width: 100%;
      height: auto;
    }

    .lat_direita_scroll {
      height: 400px;
      max-height: 40vh;
    }


    
    /* 4. CENTRO - Quarto elemento */

    .centro {
      order: 6;
      min-height: 300px;
      overflow: visible;
    }
    
    .background_logo_style h2 {
      font-size: 2rem;
    }
  

  

    .menuads {
      display: none;
    }


  
    /* 7. RODAPÉ - Último elemento */
    .rodape_pai {
      order: 9;
      margin-top: auto;
    }
  
    /* Ajustes gerais para mobile */
    body {
      overflow-x: hidden;
    }
  
    * {
      box-sizing: border-box;
    }
  
    /* Ajustes de texto para mobile */
    .botao-barra-superior span {
      font-size: 0.9rem;
    }
  
    .botao-barra-superior-esq span {
      font-size: 0.7rem;
    }
  
    .botao-barra-superior-dir span {
      font-size: 0.8rem;
    }
  
    .div_spreadsheet {
        height: 300px !important; /* Altura menor em mobile */
        width: 100vw !important; /* Altura menor em mobile */
    }
    
    .spreadsheet > tbody > tr > td {
        min-width: 80px !important; /* Células mais estreitas */
        height: 25px !important;
    }


    /* Reset de áreas de grid */
    .logo, .superior, .menuesquerdo,
    .lateraldireita, .centro, .rodape_pai,
    .superior_esq, .superior_central, .superior_dir {
      position: static;
      grid-area: auto;
      grid-column: auto;
      grid-row: auto;
    }
  }



.cookies-container {
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: fixed;
  width: 100%;
  bottom: 2rem;
  z-index: 1000;
}

.cookies-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  background: white;
  max-width: 520px;
  border-radius: 5px;
  padding: 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}

.cookies-pref label {
  margin-right: 1rem;
}

.cookies-save {
  grid-column: 2;
  grid-row: 1/3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #007cf8;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

@media (max-width: 500px) {
  .cookies-content {
    grid-template-columns: 1fr;
  }
  .cookies-save {
    grid-column: 1;
    grid-row: 3;
  }
}




















/* 
COOKIES
*/

/* Base Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: white;
  padding: 15px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-text {
  flex: 1;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-width: 250px;
  font-size: 1rem;
  line-height: 1.5;
}

.cookie-more {
  color: #63b3ed;
  text-decoration: none;
  font-weight: normal
}

.cookie-more:hover {
  color: #63b3ed;
  text-decoration:underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #8b8b8b;
}

.accept-btn {
  background: #1093ff;
  color: white;
}

.accept-btn:hover {
  background: #10bbff;
  color: white;
}

.reject-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.customize-btn {
  background: transparent;
  color: white;
  border: 1px solid white;

}

.save-btn {
  background: #4299e1;
  color: white;
  padding: 10px 20px;
  width: 100%;
  margin-top: 15px;
}

/* Modal Styles */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  overflow-y: auto;
}

.modal-content {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  padding: 10px;
  margin: 50px auto;
  max-width: 600px;
  border-radius: 8px;
  color: #2d3748;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #2d3748;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #718096;
}

.modal-body {
  padding: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.category-header h4 {
  margin: 0 0 0 15px;
  font-size: 16px;
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: #4a5568;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

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

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4299e1;
}

input:disabled + .slider {
  background-color: #a0aec0;
  cursor: not-allowed;
}

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

/* Responsive */
@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
}





