body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #000000;
}

.loading .content {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 8rem;
}

.loading .content .logo {
  display: block;
  margin: auto;
  height: 100px;
}

.m-loading .content {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 8rem;
}

.m-loading .content .logo-img {
  height: 8rem !important;
  max-width: 55%;
}

.m-loading .content .loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}

.modal-content {
  background-color: transparent;
  background: transparent;
  border-radius: 0;
}

.amount-slider-container {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.amount-slider-container .slider {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 5px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
  transition: opacity 0.2s;
}

/* Mouse-over effects */
.amount-slider-container .slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.amount-slider-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4caf50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4caf50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.portal-quick-access-container {
  font-size: 1.303vw;
}

#portal-quick-access {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.6em 2em;
  background-color: #00000080;
  z-index: 999;
  transform: translateY(-100%);
  transition: all 0.3s;
}

#portal-quick-access .menu-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#portal-quick-access .menu-items .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  width: 100%;
  padding: 0.8em;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

#portal-quick-access .menu-items .item span {
  font-size: 2.2em;
}

#portal-quick-access .menu-items .item .icon {
  width: 3.5em;
  height: 3.5em;
}

#portal-quick-access .toggle-button-wrapper {
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  cursor: pointer;
  width: 26em;
  height: 6.28em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/public/html/default_whitelabel/shared-image/game-quick-access/toggle-button-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

#portal-quick-access .toggle-button-wrapper.left {
  left: 0;
  transform: translate(0, 100%);
}

#portal-quick-access .toggle-button-wrapper.center {
  left: 50%;
  transform: translate(-50%, 100%);
}

#portal-quick-access .toggle-button-wrapper.right {
  right: 0;
  transform: translate(0, 100%);
}

#portal-quick-access #toggle-button {
  pointer-events: auto;
}

#portal-quick-access .toggle-button-wrapper #toggle-button {
  transform: rotate(0deg);
  width: 5em;
  height: 5em;
}

#portal-quick-access.open {
  transform: translateY(0);
}

#portal-quick-access.open .toggle-button-wrapper #toggle-button {
  transform: rotate(180deg);
}
