/* fullscreen */
html {
	height:100%;
}
body {
	height:100%;
	margin: 0px;
	overflow:hidden; /* disable scrollbars */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* remove highlight on tab for iOS/Android */
}

::-webkit-scrollbar {
	background-color: rgba(0,0,0,0.5);
	width: 0.75em;
}
::-webkit-scrollbar-thumb {
	background-color:  rgba(255,255,255,0.5);
}

/*FLOATING BUTTON LARGE*/
.floating-button-large {
    z-index: 1000;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 370px;
  height: 50px;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(11px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.7rem;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  color: #F7F7F7;
  font-size: 1.15em;
  font-family: Arial, Helvetica, sans-serif;
}

.floating-button-large img {
  height: 70%;
}

.floating-button-large:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.1);
}

.floating-button-large:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

@media (max-width: 1020px) {
   .floating-button-large {
       bottom: 150px !important;
   }
}