form.uploading {
    background-color: orange;
}
form.error {
    background-color: red;
}
form.uploaded {
    background-color: green;
}
.container-fluid.dark {
    background-color: #424242;
}
body, html {
  margin: 0;
  padding: 0;
}
.player {
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    bottom: 0;
    right: 0;
}
.player iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.storages-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
}
ul.storages {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    overflow-x: auto;
}
ul.storages > li {
    font-size: 11px;
    text-transform: uppercase;
    padding: 8px 5px;
    margin-right: 3px;
    color: #fff;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    background: #1c1c1c;
    border-radius: 5px;
    cursor: pointer;
}
ul.storages > li:hover,
ul.storages > li.active {
    text-decoration: none;
    background: #2e8fc2 !important;
}

.remove {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.remove:hover {
    opacity: 0.7;
}
.player > .fake-player {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #000;
}
.player > .fake-player > .fake-bar {
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #333;
    border-top: 1px solid #262626;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player > .fake-player > .fake-bar > div {
    padding: 0 20px;
}
@media(max-width:575px){
  .player > .fake-player > .fake-bar > div {
      padding: 0 15px;
  }
}
.player > .fake-player > .fake-bar > .progress {
    width: 400px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    display: block;
    z-index: 100;
    background: transparent;
    position: relative;
    top: 2px;
    flex-grow: 1;
}
.player > .fake-player > .fake-bar > .minutes {
    color: #cacaca;
}
.player > .fake-player > .fake-player1,
.player > .fake-player > .fake-player2,
.player > .fake-player > .fake-player3 {
    height: calc(100% - 50px);
    width: 100%;
    position: relative;
}
.player > .fake-player > .fake-player1 {
    cursor: pointer;
}
.player > .fake-player > .fake-player2,
.player > .fake-player > .fake-player3 {
    display: none;
}
.player > .fake-player > .fake-player1 > .image {
    height: 100%;
    width: 100%;
    background-size: 100% auto;
    background-position: 50%;
    background-repeat: no-repeat;
}
.player > .fake-player > .fake-player1 > .play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
}
.player > .fake-player > .fake-player1 > .play > img {
    height: 64px;
    width: 64px;
}
.player > .fake-player > .fake-player2 > .video {
    object-fit: cover;
}
.player > .fake-player > .fake-player2 > .skip {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid;
    cursor: pointer;
}
.player > .fake-player > .fake-player3 > .sign-up {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    color: #cacaca;
}
.player > .fake-player > .fake-player3 > .sign-up > .close {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 200;
}
