*{
box-sizing: border-box;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
/* FOR TEST */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
word-break: keep-all;
}

/* SIZING */
:root{
--font: clamp(0.875rem, 1.5vw, 1.125rem);
}

:root{
  /* UI */
  --ui-bottom-bg: linear-gradient(270deg, #34AADC 0%, #2686BD 100%);
  --ui-bottom-bg-hover: linear-gradient(270deg, #63CBEA 0%, #34AADC 100%);
}


/* COLOR PALET */
:root{
--wrong: rgb(236, 84, 159);
--fine: #057feb;
--dark-fine: #057f;
/* BLACK */
--bm-text-color: #f1f1f1;
--bm-text-shadow: #626262;
/* --bm-bacground-color: #1c1c1c; */
/* --bm-bacground-color: #161617; */
--bm-bacground-color: #0f0f0f;
--bm-box-bacground: #242424;
--bm-box-shadow: #363636;
/* WHITE */
--wm-text-color: black;
--wm-bacground-color: white;
}

/* SCROLL */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    /* border-radius: 10px; */
    background: #1c1c1c;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    /* background: #057feb; */
    background: #414141;
    /* border-radius: 10px; */
}

body{
color: var(--bm-text-color);
background: var(--bm-bacground-color);
display: flex;
flex-direction: column;
}

.page{
padding: 1.5em 2vw;
min-height: 90vh;
overflow-y: hidden;
color: var(--bm-text-color);
background: var(--bm-bacground-color);
display: flex;
flex-direction: column;
}

/* Powiadomienia */
.notification{
  position: fixed;
  right: 0px;
  z-index: 1;
  top: calc(var(--nav-height) + 1.5rem);
  min-height: 4.2vh;
  height: auto;
  min-width: 11vw;
  width: auto;
  font-size: 1.2em;
  font-family: monospace;
  padding: 10px;
  background: var(--wm-bacground-color);
  display: flex;
  align-items: center;
  color: var(--bm-bacground-color);
  border-radius: 10px 0px 0px 11px;
  animation: slideIn 0.5s ease-out;
}
.notification i{
  font-size: 2rem;
  margin: auto 7px auto 5px;
  color: var(--fine);
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* cookies */
.cookies{
  -webkit-user-drag: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  inset: auto auto 30px 30px;
  background-color: white;
  width: 300px;
  font-size: 10pt; 
  height: auto;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, .5) 0px 5px 10px;
  border-radius: 5px;
}
.cookies img{
  -webkit-user-drag: none;
  width: 64px;
  height: 64px;
}
.cookies b{
  line-height: 20px;
  color: rgba(28, 9, 80, 1);
  text-align: center;
  margin-top: 10px;
}

/* background */
.lines{
  /* border-top: 1px solid var(--dark-fine); */
  position: fixed;
  top: 0 ;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 94vw;
}
.line{
  position: absolute ;
  width: 1px; 
  height: 100%;
  top: 0; 
  left: 50%; 
  background: rgba(255, 255, 255, 0.1); 
  overflow: hidden;
}
  .line::after{
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  }
    .line:nth-child(1){
    margin-left: -52%;
  }
    .line::after{
      animation-delay: 2s;
    }
    .line:nth-child(2){
      display: none;
    }
      .line:nth-child(3){
    margin-left: 52%;
  }
    .line::after{
      animation-delay: 2.5s;
}
    
@keyframes drop {
  0%{
    top: -50%
  }
  100%{
    top: 110%
  }
}


/* Panel */
.right-panel{
  top: 76px;
  right: 0px;
  margin-right: 15px;
  min-width: 0px;
  flex-direction: column;
  box-shadow: rgb(255 255 255 / 16%) 0px 2px 8px, rgb(255 255 255 / 8%) 0px 4px 8px;
  border-radius: 12px;
  position: absolute;
  width: 350px;
  height: 90vh;
  z-index: 3;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: auto;
  background: var(--tools-nav-bg);
  display: flex;
}

/* BOX */
.box{
  height: auto;
  z-index: 1;
    min-height: 12rem;
    width: 23rem;
    background: var(--bm-box-bacground);
    margin: 12px 0px 0px 4.3%;
    border: 1px solid var(--bm-box-shadow);
    border-radius: 6px 6px 6px 6px;
    box-shadow: var(--bm-text-shadow) 0px 0px 4px -2px;
}


/* AUTOMATYKA */

/* PHONE */
@media (max-width: 765px) {
    
}