button + button {
  margin-left: 0.75em; }

.upload {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0; }

.video-box {
  width: 100%;
  height: 380px;
  padding: 15px 15px 55px 15px;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2); }

.player {
  width: 100%;
  height: 380px;
  max-width: 50rem;
  position: relative;
  font-size: 0;
  overflow: hidden; }

.player_video {
  width: 100%;
  cursor: pointer; }

.fa {
  color: white;
  font-size: 1rem; }

.fa-play:hover, .fa-pause:hover, .fa-stop:hover, .fa-volume-up:hover, .fa-fast-backward:hover, .fa-fast-forward:hover {
  color: dodgerblue;
  cursor: pointer; }

.player_button {
  background: none;
  border: 0;
  line-height: 1;
  color: white;
  text-align: center;
  outline: 0;
  padding: 0;
  cursor: pointer;
  max-width: 50px;
  font-size: 1rem; }

.player_slider {
  width: 0.75rem;
  height: 3rem; }

.player_controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  bottom: 0;
  width: 100%; }

.player:hover .progress-range {
  height: 0.75rem; }

.right-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.left-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.player_controls > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.progress-range {
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  height: 5px;
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  background: #BCBCBC;
  cursor: pointer; }

.progress-bar {
  background: #FE5000;
  width: 50%;
  height: 100%;
  border-radius: 1.5em;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease; }

.player:-webkit-full-screen {
  max-width: none;
  width: 100%; }

.player:-moz-full-screen {
  max-width: none;
  width: 100%; }

.player:-ms-fullscreen {
  max-width: none;
  width: 100%; }

.player:fullscreen {
  max-width: none;
  width: 100%; }

.player:-webkit-full-screen {
  /*CHROME */
  max-width: none;
  width: 100%; }

.player:-moz-full-screen {
  /*FIREFOX */
  max-width: none;
  width: 100%; }

.time {
  text-align: right;
  position: relative;
  top: 0.85em;
  padding-left: 0.5em;
  margin-right: 1em;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  /* user-select: none; */ }

.time-elapsed, .fa-fast-forward {
  padding-left: 0.75em; }

/* */
/*css to style input type="range" */
input[type='range'] {
  -webkit-appearance: none;
  background: transparent;
  width: 40%;
  margin: 0 20px; }
  input[type='range']:focus {
    outline: none; }
  input[type='range']::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    border: 0.2px solid rgba(1, 1, 1, 0); }
  input[type='range']::-webkit-slider-thumb {
    height: 0.75em;
    width: 1em;
    border-radius: 0.25em;
    background: dodgerblue;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
    -webkit-box-shadow: 0 0 2px #0f0e50;
    box-shadow: 0 0 2px #0f0e50; }
  input[type='range']::-moz-range-track {
    /*? */
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
    background: #ffffff;
    border-radius: 1.3px;
    border: 0.2px solid rgba(1, 1, 1, 0); }
  input[type='range']::-moz-range-thumb {
    /*? */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(13, 13, 13, 0);
    height: 12px;
    width: 17px;
    border-radius: 50px;
    /* background: #ffc600; */
    background: blue;
    cursor: pointer; }

@media (max-width: 827px) {
  .fa {
    color: white;
    font-size: 0.9rem; }
  button + button {
    margin-left: 0; }
  .time {
    padding-left: 0;
    margin-right: 0.5em; }
  .time-elapsed, .fa-fast-forward {
    padding-left: 0.75em; }
  .player {
    width: 80%; } }

@media (max-width: 600px) {
  .player {
    width: 95%; } }
