@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* Import Google font - Poppins */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  background: #ecedf6;
}
::selection {
  color: #fff;
  background: #6990F2;
}
.wrapper {
  width: 850px;
  margin-top: 20px;
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.05);
  display: block;
}
.wrapper header {
  color: #3E6CF0;
  font-size: 27px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 30px 0;
}
.wrapper.upload form {
  height: 167px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px dashed #3E6CF0;
}
.wrapper.upload form P {
  display: block;
  padding: 0 15px 0 15px;
  color: #3E6CF0;
  margin-top: 15px;
  font-size: 16px;
}
.wrapper.upload form I {
  font-size: 50px;
  color: #3E6CF0;
}
section .row {
  margin-bottom: 10px;
  background: #E9F0FF;
  list-style: none;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .row i {
  color: #6990F2;
  font-size: 30px;
}
section .details span {
  font-size: 14px;
}
.progress-area .row .content {
  width: 100%;
  margin-left: 15px;
}
.progress-area .details {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  justify-content: space-between;
}
.progress-area .content .progress-bar {
  height: 6px;
  width: 100%;
  margin-bottom: 4px;
  background: #fff;
  border-radius: 30px;
}
.content .progress-bar .progress {
  height: 100%;
  width: 0%;
  background: #6990F2;
  border-radius: inherit;
}
.uploaded-area {
  max-height: 232px;
  overflow-y: scroll;
}
.uploaded-area.onprogress {
  max-height: 150px;
}
.uploaded-area::-webkit-scrollbar {
  width: 0px;
}
.uploaded-area .row .content {
  display: flex;
  align-items: center;
}
.uploaded-area .row .details {
  display: flex;
  margin-left: 15px;
  flex-direction: column;
}
.wrapper.settings H1 {
  margin: 0;
  padding: 0;
  font-size: 1em;
  color: #3E6CF0;
}
.wrapper.settings LABEL {
  font-weight: bold;
  display: inline-block;
  font-size: 14px;
  width: 140px;
}
.wrapper.settings LABEL.large {
  width: 250px;
}
.wrapper.settings INPUT,
.wrapper.settings SELECT {
  background-color: #ecedf6;
  border: 2px solid #3E6CF0;
  padding: 5px;
  width: 150px;
}
.wrapper.settings INPUT.readonly,
.wrapper.settings SELECT.readonly {
  border-color: #ecedf6;
}
.wrapper.settings INPUT.checkbox,
.wrapper.settings SELECT.checkbox {
  width: auto;
  margin: 0px 5px 0 10px;
}
.wrapper.settings P.desc {
  font-size: 12px;
  margin-top: 7px;
}
.wrapper.settings UL {
  list-style: none;
  margin: 0 0 0 0px;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper.settings UL LI {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.wrapper.settings UL LI STRONG {
  font-size: 14px;
  font-weight: normal;
}
.wrapper.settings BUTTON {
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding: 15px 20px;
  margin: 0 auto;
  background-color: #E34B62;
  border: none;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 7px;
  box-shadow: 0px 5px 4px -4px rgba(0, 0, 0, 0.5), 1px 1px 0px 1px rgba(0, 0, 0, 0);
}
.wrapper.settings BUTTON:hover {
  cursor: pointer;
}
.wrapper.settings .group {
  margin-bottom: 15px;
}
.wrapper.settings .group.send {
  margin-top: 30px;
  text-align: center;
}
.wrapper.settings SECTION {
  margin-top: 15px;
  margin-bottom: 0 !important;
}
.wrapper.view .group {
  text-align: center;
}
.wrapper.view .group .ico {
  color: #E34B62;
  font-size: 30px;
}
.wrapper.view .group .ico:hover {
  color: #000;
}
.wrapper.view .videos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
}
.wrapper.view .videos .colm H1 {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: bold;
}
.wrapper.view .videos .colm.left {
  margin-right: 25px;
}
.wrapper.view .videos .colm .video-js.vjs-16-9 {
  width: 350px !important;
  height: 197px !important;
}
.wrapper.view .videos .colm .video-js.vjs-9-16 {
  width: 197px !important;
  height: 350px !important;
}
.wrapper.view .videos .colm .video-js.vjs-3-4 {
  width: 263px !important;
  height: 350px !important;
}
.wrapper.view .videos .colm .video-js.vjs-4-3 {
  width: 350px !important;
  height: 263px !important;
}
.wrapper.view .videos .colm .video-js.vjs-13-6 {
  width: 350px !important;
  height: 162px !important;
}
.wrapper.view .videos .colm .video-js.vjs-6-13 {
  width: 162px !important;
  height: 350px !important;
}
.wrapper.view .videos .colm .video-js.vjs-1-1 {
  width: 350px !important;
  height: 350px !important;
}
.wrapper.view .videos .colm .video-js .vjs-big-play-button {
  display: none;
}
.wrapper.view .videos .colm .vjs-poster {
  border: 2px dashed #3E6CF0;
  background-color: #ecedf6;
}
BUTTON {
  font-family: 'Korolev';
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background-color: #E34B62;
  display: inline-block;
  position: relative;
  width: 150px;
  height: 45px;
  cursor: pointer;
  transition: color 0.5s, background-color 0.2s;
  box-shadow: 0px 5px 4px -4px rgba(0, 0, 0, 0.5), 1px 1px 0px 1px rgba(0, 0, 0, 0);
}
BUTTON:hover {
  background-color: #fedf0e;
  color: #000;
  transform: translate(-1px, -1px);
  font-weight: bold;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
BUTTON:active {
  background-color: #e7ca01;
  transform: translate(0px, 0px);
}
BUTTON.inprogress .spinner {
  display: block;
  animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -13px 0 0 -13px;
  width: 25px;
  height: 25px;
}
BUTTON.inprogress .spinner .path {
  fill: none;
  stroke-width: 5px;
  stroke: #52D1DC;
  stroke-linecap: round;
  animation: dash 1s ease-in-out infinite;
}
BUTTON.inprogress SPAN {
  display: none;
}
BUTTON.complete .checkmark {
  display: block;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -13px 0 0 -13px;
  width: 25px;
  height: 25px;
}
BUTTON.complete .checkmark .path {
  fill: #52D1DC;
}
BUTTON.complete SPAN {
  display: none;
}
BUTTON .spinner {
  display: none;
}
BUTTON .checkmark {
  display: none;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}
/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
