@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

span,
p,
.tooltip {
  font-family: 'Nunito', sans-serif;
}

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(Resources/BG-Light.jpg);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: background-image 0.5s ease-in-out;

}

.menu {
  position: fixed;
  left: 0px;
  top: -50px;
  width: 100vw;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  transition: top 1s;
  -webkit-transition: top 1s;
  z-index: 1;
}

.menu:hover {
  top: -10px;
}

.menu span {
  margin: 20px;
}

.menu span a:hover {
  text-shadow: -.25px -.25px 0 black, .25px .25px black;
}

a {
  text-decoration: none;
  text-shadow: -.25px -.25px 0 transparent, .25px .25px transparent;
  color: black;
  transition: all 0.3s ease-out;
}

.meteo {
  min-width: 222px;
  max-width: 222px;
  min-height: 96px;
  max-height: 96px;
  top: -10px;
  left: -40px;
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.7);
  margin: 0;
}

.weatherwidget-io {
  text-decoration: none;
}

.toggle-container {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 100;

}

#toggle {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}


.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  flex-flow: column;
  position: fixed;
}

.contextmenu {
  display: flex;
  display: none;
  position: absolute;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  top: 10;
  left: 10;
  z-index: 1;
  width: 175px;
}

.contextmenu-list {
  margin: 0;
  display: block;
  width: 100%;
  padding: 8px;
}

.contextmenu-list,
ul {
  list-style-type: none;
}

.contextmenu-item {
  position: relative;
}

.contextmenu-button {
  font: inherit;
  color: inherit;
  outline: none;
  border: 0;
  padding: 8px 8px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
}

.contextmenu-button:hover {
  background-color: #f1f3f7;
}

.searchbar {
  margin: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 8px;
  background: white;
  border: 1px solidrgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 3px rgb(0 0 0 / 6%);
}


form {
  background-color: white;
  width: 600px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

input {
  all: unset;
  font: 16px system-ui;
  height: 100%;
  width: 100%;
  padding: 6px 10px;
}

.searchbutton {
  width: 24px;
  height: 24px;
  padding: 10px;
  cursor: pointer;
}

.drawercontainer {
  height: 100%;
  max-height: 248px;
  position: relative;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  scroll-behavior: smooth !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.drawercontainerX3 {
  height: 100%;
  max-height: 372px;
  position: relative;

}

.drawercontainer::-webkit-scrollbar {
  display: none;
}



section {
  height: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  padding: 1rem;
}

.drawergrid {
  display: grid;
  grid-template-columns: 150px 150px 150px 150px 150px 150px;
  grid-template-rows: 100px 100px;
  grid-gap: 1rem;
}

.drawergridX3 {
  display: grid;
  grid-template-columns: 150px 150px 150px 150px 150px 150px;
  grid-template-rows: 100px 100px 100px;
  grid-gap: 1rem;
}

.item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease-out;
  border: 1px solidrgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 3px rgb(0 0 0 / 6%);
}

.item:hover {
  transform: scale(1.10);
  box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

.item img {
  width: 150px;
  height: 100px;
  display: block;
}

.dark {
  transition: 0.5s ease-in-out;
}

.mcw-box.mcw-white-theme {
  border: none !important;
}

.text-center {
  display: none !important;
}


.mcw-link{
  pointer-events: none;

}

.chart-wrapper{
  pointer-events: all!important;
}