.videopoll {
  position: fixed;
  top: 0;
  background: #000;
  height: 100vh;
}
.videopoll__vidos {
  width: 100%;
  object-fit: fill;
  display: flex;
  background-color: #000;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 0;
}

#videopoll {
  height: 100vh;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.vidos__preloader {
  position: absolute;
}

.video-tools {
  position: fixed;
  bottom: 12px;
  width: 100%;
  z-index: 99;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  background: #ddd;
  border-radius: 50%;
  border: none;
  transition: all 0.3s ease-in-out;
}

input[type='range']::-webkit-slider-thumb:hover {
  -webkit-appearance: none;
  transform: scale(1.2);
}

.video-tools input[type='range'] {
  margin: 0;
  width: 100%;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  cursor: pointer;
  height: 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.28);
  transition: all 0.3s ease-in-out;
  outline: none;
}
