.container-fluid {
    margin-top: 4px;
}
.col {
    padding-left: 4px;
    padding-right: 4px;
}

#dropzone {
  margin-bottom: 3rem; }

*.icon-dropzone {color: #0087F7}

.dropzone {
  border: 2px dashed #0087F7;
  border-radius: 5px;
  background: white; }
  .dropzone .dz-message {
    font-weight: 400; }
    .dropzone .dz-message .note {
      font-size: 0.8em;
      font-weight: 200;
      display: block;
      margin-top: 1.4rem; }

*, *:before, *:after {
  box-sizing: border-box; }

.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}
.modal-content {
}

.modal-body-info {
  margin: 30px;
}
.modal-body {
  position:relative;
  padding:0px;
}
.close-video {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}

.spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
  height:60px;
  width:60px;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left:6px solid rgba(0,104,209,.1);
  border-right:6px solid rgba(0,104,209,.1);
  border-bottom:6px solid rgba(0,104,209,.1);
  border-top:6px solid rgba(0,104,209,.9);
  border-radius:100%;
}

@-webkit-keyframes rotation {
  from {-webkit-transform: rotate(0deg);}
  to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
  from {-moz-transform: rotate(0deg);}
  to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
  from {-o-transform: rotate(0deg);}
  to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(359deg);}
}