html,body{
    margin: 0 !important;
    padding: 0;
    box-sizing: border-box;
    touch-action: none;
    overflow: hidden;
   
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

#canvasHolder,#avatarHolder
{
  height: 100%;
  width: 100%;
  position: absolute;
  display: none;
}

/* #avatarHolder
{
  z-index: 100;
} */



#joystickWrapper1 {
    pointer-events: auto;
    display: inline-block;
    position: absolute;
    background-color: transparent;
    width: 120px;
    height: 120px;
    z-index: 12;
    touch-action: manipulation;
    background-color: rgba(red, 0.2);
    bottom: 30px;
    left: calc(50% - 60px);
  }

  .back
  {
      background-color: green !important;
  }


  /* Selectors style start */
  
  .dd-button {
    display: inline-block;
    border: 1px solid gray;
    border-radius: 4px;
    padding: 10px 30px 10px 20px;
    background-color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    width: 80%;
  }
  
  .dd-button:after {
    content: '';
    position: absolute;
    top: 50%;
    /* right: 15px; */
    margin-left: 10px;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
  }
  
  .dd-button:hover {
    background-color: #eeeeee;
  }
  
  
  .dd-input {
    display: none;
  }
  
  .dd-menu {
    position: absolute;
    top: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
    background-color: #ffffff;
    list-style-type: none;
    
  }
  
  .dd-input + .dd-menu {
    display: none;
  } 
  
  .dd-input:checked + .dd-menu {
    display: block;
  } 
  
  .dd-menu li {
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .dd-menu li:hover {
    background-color: #f6f6f6;
  }
  
  .dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
  }
  
  .dd-menu li.divider{
    padding: 0;
    border-bottom: 1px solid #cccccc;
  }

  .flex-parent-element {
    display: flex;
    width: 100%;
    position: absolute;
  }
  
  .flex-child-element {
    flex: 1;
    /* border: 2px solid blueviolet; */
    margin: 10px;
    display: flex;
    justify-content: center;
    margin-right: 30px;
  }
  
  .flex-child-element:first-child {
    margin-right: 20px;
  }

  /* Selectors style end */



  /* Loader style start */
  
.loader-div {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
  z-index: 9999 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
}

.loader {
	position: relative;
	width: 10vw;
	height: 5vw;
	padding: 1.5vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader span {
	position: absolute;
	height: 0.8vw;
	width: 0.8vw;
	border-radius: 50%;
	background-color: #ff0;
}

.loader span:nth-child(1) {
	animation: loading-dotsA 0.5s infinite linear;
}

.loader span:nth-child(2) {
	animation: loading-dotsB 0.5s infinite linear;
}

@keyframes loading-dotsA {
	0% {
		transform: none;
	}
	25% {
		transform: translateX(2vw);
	}
	50% {
		transform: none;
	}
	75% {
		transform: translateY(2vw);
	}
	100% {
		transform: none;
	}
}

@keyframes loading-dotsB {
	0% {
		transform: none;
	}
	25% {
		transform: translateX(-2vw);
	}
	50% {
		transform: none;
	}
	75% {
		transform: translateY(-2vw);
	}
	100% {
		transform: none;
	}
}
 /* Loader style end */


/* Zoom control style start */
.range-slider .input-range {
  position: absolute;
  bottom: 10px;
  left: -10px;
  -webkit-appearance: none;
  height: 150px;
  border-radius: 5px;
  background: #ccc;
  outline: none;
  writing-mode: bt-lr;
 /* IE */
  -webkit-appearance: slider-vertical;
 /* WebKit */
}
::-moz-range-track {
  background: #ccc;
  border: 0;
}
input::-moz-focus-inner {
  border: 0;
}

/* Zoom control style end */
