@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

html {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #ccc;
  background: #181818;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1042px;
}

.header {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100px;
  box-sizing: border-box;
}

.header_brand {
  margin: 0;
  padding: 0;
  position: absolute;
  display: block;
  top: 0;
  left: 15px;
  max-width: 400px;
  text-decoration: none;
}

.header_logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 0 0 10px;
  padding: 10px 0;
  line-height: 1;
  display: block;
  text-align: left;
  max-height: 80px;
}

.header_title {
  margin: 25px 0 4px 110px;
  padding: 0;
  color: #00B2F4;
  line-height: 1;
  letter-spacing: 1px;
  text-align: left;
}

.header_tagline {
  margin: 0 0 0 110px;
  padding: 0;
  left: 100px;
  color: #ccc;
  font-weight: normal;
}

.header_nav {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  height: 100px;
  line-height: 100px;
}

.header_nav_link {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  font-weight: normal;
  font-size: 20px;
}

.description {
  max-width: 500px;
  margin: 30px auto;
  padding: 0;
  font-size: 16px;
  text-align: center;
}

.main {
  margin: 0;
  padding: 0 0 20px;
  background: #383838;
  color: #ccc;
  overflow: hidden;
}

.section {
  width: 100%;
  padding: 20px 0;
  margin: 20px 0;
}

.section_title {
  text-align: center;
  color: #fff;
}

.sectionDark {
  width: 100%;
  padding: 10px 0;
  margin: 20px 0;
  background: transparent;
}

.question {
  margin: 2em 0 0;
  font-size: 18px;
}

.answer {
  font-size: 14px;
}

.footer {
  margin: 0;
  padding: 10px 10px;
  box-shadow: border-box;
  height: 60px;
  background: #181818;
}

.share {
  text-align: center;
  padding: 15px 0;
  line-height: 1;
}

.share_btn {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  vertical-align: middle;
}

.panelBox {
  margin: 40px 0;
  background: #222;
  border: 1px solid #151515;
  border-radius: 4px;
  min-height: 320px;
  text-align: center;
}

.panelBox_content {
  padding: 10px;
}

.panelBox_header {
  margin: 0;
  padding: 0;
  background: #1d1d1d;
  border-bottom: 1px solid #151515;
  position: relative;
  width: 100%;
}

.panelBox_header_title {
  margin: 0;
  padding: 10px;
  font-size: 18px;
  color: #ccc;
  font-weight: normal;
}

.panelBox_header_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 8px 10px;
  padding: 2px 14px 4px;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  outline: none;
}

.panelBox_header_btn:hover {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
}

.panelBox_header_btn:active {
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.panelBox_header_btn-bgRed {
  background: #BF0C29;
}

.panelBox_header_btn-bgBlue {
  background: #2279D0;
}

.panelBox_header_btn-alignLeft {
  left: 10px;
}

.panelBox_header_btn-alignRight {
  right: 10px;
}

.panelBox_header_btn:before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -9px;
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-left-color: transparent;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}

.panelBox_header_btn:after {
  content: '';
  display: inline-block;
  height: auto;
  width: 0px;
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transition-duration: 0.75s;
  -moz-transition-duration: 0.75s;
  transition-duration: 0.75s;
  -webkit-transition-property: width;
  -moz-transition-property: width;
  transition-property: width;
}

.panelBox_header_btn-downloading {
  background: gray;
  pointer-events: none;
  cursor: pointer;
  cursor: not-allowed;
}

.panelBox_header_btn-downloading:before {
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transition-duration: 0.75s;
  -moz-transition-duration: 0.75s;
  transition-duration: 0.75s;
  opacity: 1;
}

.panelBox_header_btn-downloading:after {
  transition-delay: 0s;
  width: 20px;
}

.panelBox_header_btn-downloading:hover {
  background-image: -webkit-linear-gradient(none);
  background-image: -moz-linear-gradient(none);
  background-image: linear-gradient(none);
}

.panelBox_header_btn-downloading:active {
  background-image: -webkit-linear-gradient(none);
  background-image: -moz-linear-gradient(none);
  background-image: linear-gradient(none);
}

.panelItem {
  display: inline-block;
  margin: 10px 10px;
  padding: 10px;
  width: 150px;
  height: 230px;
  background: #111;
  border-radius: 4px;
  vertical-align: top;
  box-sizing: border-box;
  line-height: 1.4;
}

.panelItem_frame {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
}

.panelItem_thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
  box-sizing: border-box;
}

.panelItem_fileSize {
  margin: 10px 5px 5px;
  color: #eee;
  font-size: 14px;
  font-weight: bold;
}

.panelItem_savings {
  margin: 5px;
  font-size: 13px;
  color: #29D651;
}

.panelItem_savings-savingsFailed .panelItem_savings {
  color: #BF0C29;
}

.panelItem_btnDownload {
  position: relative;
  display: block;
  padding: 5px 10px 6px;
  margin: 10px auto 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  background: #2279D0;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.panelItem_btnDownload:before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-left-color: transparent;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}

.panelItem_btnDownload:after {
  content: '';
  display: inline-block;
  height: auto;
  width: 0px;
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transition-duration: 0.75s;
  -moz-transition-duration: 0.75s;
  transition-duration: 0.75s;
  -webkit-transition-property: width;
  -moz-transition-property: width;
  transition-property: width;
}

.panelItem_btnDownload:hover {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
}

.panelItem_btnDownload:active {
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.panelItem-downloading .panelItem_btnDownload {
  background: gray;
  pointer-events: none;
  cursor: pointer;
  cursor: not-allowed;
}

.panelItem-downloading .panelItem_btnDownload:before {
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transition-duration: 0.75s;
  -moz-transition-duration: 0.75s;
  transition-duration: 0.75s;
  opacity: 1;
}

.panelItem-downloading .panelItem_btnDownload:after {
  transition-delay: 0s;
  width: 25px;
}

.panelItem-downloading .panelItem_btnDownload:hover {
  background-image: -webkit-linear-gradient(none);
  background-image: -moz-linear-gradient(none);
  background-image: linear-gradient(none);
}

.panelItem-downloading .panelItem_btnDownload:active {
  background-image: -webkit-linear-gradient(none);
  background-image: -moz-linear-gradient(none);
  background-image: linear-gradient(none);
}

.panelItem-processing .spinner {
  margin: 80px auto 0;
}

.panelItem-processing .spinner .rect {
  background-color: #999;
}

.dropzoneBox {
  display: block;
  margin: 20px auto;
  padding: 5px;
  max-width: 600px;
  height: 220px;
  background: #ddd;
  border-radius: 12px;
  box-sizing: border-box;
  -webkit-transition: background-color 300ms ease-in;
  -moz-transition: background-color 300ms ease-in;
  transition: background-color 300ms ease-in;
}

.dropzoneBox-processing {
  -webkit-transition: background-color 100ms ease-in;
  -moz-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
  background-color: #2279D0;
}

#dropzone {
  display: block;
  margin: 0;
  padding: 50px 20px 10px;
  color: #555;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.4;
  background: #ddd;
  border-radius: 12px;
  border: 5px dashed #777777;
  box-sizing: border-box;
  background-clip: border-box;
  text-align: center;
}

#dropzone.dz-clickable {
  cursor: pointer;
}

#dropzone.dz-drag-hover {
  background: #f7f7f7;
}

#dropzone .dz-message {
  text-align: center;
  margin: 0;
  font-size: 20px;
  opacity: 1;
  transition: opacity 400ms ease-in;
}

#dropzone .dz-label {
  margin: 0 0 5px;
}

#dropzone .dz-or {
  margin: 5px 0;
  font-size: 16px;
  color: #777;
}

#dropzone .dz-button {
  display: inline-block;
  margin: 5px 0;
  padding: 10px 20px;
  background: #2279D0;
  border-radius: 5px;
  outline: none;
  color: #fff;
  border: none;
  font-size: 16px;
}

.juxtapose {
  margin: 40px auto;
  background: #111;
  max-width: 640px;
}

.jx-knightlab {
  display: none !important;
}

.spinner {
  margin: 30px auto 0;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner .rect {
  background-color: #2279D0;
  height: 100%;
  width: 6px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  -moz-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  -moz-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  -moz-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    -moz-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    -moz-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@media screen and (max-width: 550px) {
  .header {
    height: auto;
    margin: 0;
    padding: 20px 10px 10px;
  }
  .header_logo {
    position: static;
    display: block;
    margin: 0 auto;
  }
  .header_title, .header_tagline {
    margin: 0;
    text-align: center;
  }
  .header_brand {
    margin: 0 auto;
    position: static;
    display: block;
    width: 100%;
    text-align: center;
  }
  .header_nav {
    position: static;
    display: block;
    text-align: center;
    height: auto;
    padding: 20px 10px;
    line-height: 1;
  }
}

@media screen and (max-width: 400px) {
  .panelBox_header_btn {
    padding: 5px;
    font-size: 12px;
  }
  .panelBox_header_btn.alignLeft {
    left: 0;
  }
  .panelBox_header_btn.alignRight {
    right: 0;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .share_btn {
    display: block;
    margin: 20px auto;
  }
}
