.mbox {
  margin: auto;
  padding: 3px;
  border-radius: 30px;
  border-style: transparent;
  z-index:10;
  overflow: hidden;
  pointer-events: none;
}
#tele {
  margin: auto;
  z-index:20;
  overflow: hidden;
}
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #009900;
  border-radius: 1px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #008000;
  height: 10px;
  border-radius: 1px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #009900; 
}

.buttons
{
	cursor: pointer;
}
.buttons:hover
{
	box-shadow: 1px 2px 3px lightblue;
	box-sizing: border-box;
	border: 1px solid white;
}

.crt-frame {
    pointer-events: none;
    overflow: hidden;
    z-index: 9000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.crt-back {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
	opacity: 90%
}

.slidecontainer {
  width: 150px;
}

.slider {
  -webkit-appearance: none  !important;
	display: inline;
	width: 150px;
	height: 5px;
	border-radius: 2px;
	background: #000000;
	outline: white;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	display:block;
	width: 14px;
	height: 23px;
	border: 0;
	border-radius: 50%;
	z-index:50;
	background-image:  url('slider.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.slider::-moz-range-thumb {
	width: 14px;
    display:block;
	height: 24px;
	border: 0;
	z-index:50;
	border-radius: 50%;
	background-image:  url('slider.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;	  
	cursor: pointer;
}