@keyframes spinner {
  from: {
    transform : rotate(0deg)
  }
  to: {
    transform : rotate(360deg)
  }
}

.is-hidden {
  display: none;
}
.upload-form-steps {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 46px;
  position: relative;
}
.upload-form-steps.is-hidden {
  display: none !important;
}
.upload-form-steps__items {
  display: flex;
}
.upload-form-steps__item {
  flex: 0 0 33.333333333333336%;
  max-width: 33.333333333333336%;
  width: 33.333333333333336%;
  text-align: center;
  position: relative;
  left: 0;
  right: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #5bc787;
  padding-bottom: 30px;
}
.upload-form-steps__item.is-active:before,
.upload-form-steps__item.is-completed:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom-color: #5bc787;
}
.upload-form-steps__item.is-active .upload-form-steps__item-check:before,
.upload-form-steps__item.is-completed .upload-form-steps__item-check:before {
  display: block;
}
.upload-form-steps__item.is-completed:before {
  display: none;
}
.upload-form-steps__item-check {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  border: 2px solid #5bc787;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -19px;
  top: 100%;
  left: 50%;
  z-index: 1;
  background-color: #e9ebee;
  position: absolute;
  transform: translateX(-50%);
}
.upload-form-steps__item-check:before {
  display: none;
  content: '';
  width: 24px;
  flex: 0 0 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: #5bc787;
}
.upload-form-steps__line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 66.66666666666667%;
  height: 2px;
  background-color: #798897;
}
.upload-form-steps__line-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #5bc787;
}
.form-color1 {
  color: #5bc787;
}
.form-color2 {
  color: #3092fa;
}
.form-color3 {
  color: #e0ff6e;
}
.form-color4 {
  color: #798897;
}
[tooltip] {
  position: relative;
}
[tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}
[tooltip]::after {
  position: absolute;
  top: 100%;
  right: 0;
  transition: opacity 300ms, visibility 300ms;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  margin-top: 8px;
  border-radius: 3px;
  background: rgba(0,0,0,0.7);
  padding: 4px 2px;
  min-width: 100px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  content: attr(tooltip);
  pointer-events: none;
}
.upload-form {
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 7px 35px rgba(0,0,0,0.12);
}
.upload-form.is-hidden {
  display: none !important;
}
.upload-form__step {
  display: none;
  position: relative;
  border: 1px solid #e6e9ec;
  border-top: none;
  border-radius: 3px;
}
.upload-form__step:before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  right: -1px;
  height: 6px;
  background-color: #5bc787;
  border-radius: 3px 3px 0 0;
}
.upload-form__step.is-active {
  display: block;
}
.upload-form__header {
  border-bottom: 1px solid #e6e9ec;
  padding: 17px 15px 15px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 500;
  color: #4e657e;
}
.upload-form__body {
  padding: 15px;
}
.upload-form__footer {
  padding: 15px;
  display: flex;
}
.upload-form__submit {
  margin-left: auto;
  margin-top: -15px;
}
.upload-form__previous-link {
  margin-top: -15px;
}
.upload-form__button {
  position: relative;
}
.upload-form__button.is-loading {
  pointer-events: none;
}
.upload-form__button.is-loading svg {
  opacity: 0;
}
.upload-form__button.is-loading:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 10px;
  border-radius: 18px;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: spinner .75s linear infinite;
}
.upload-form__button,
.upload-form__previous-link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-weight: 400;
  text-align: center;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #3092fa;
  border: 1px solid #3092fa;
  color: #fff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  outline: none !important;
  padding: 8px 20px 8px;
}
.upload-form__button:hover,
.upload-form__previous-link:hover {
  background-color: #0a75e6;
  border-color: #0a75e6;
}
.upload-form__button svg,
.upload-form__previous-link svg {
  position: relative;
  top: -1px;
  display: block;
  fill: #fff;
  flex: 0 0 16px;
  max-width: 16px;
  width: 16px;
  height: 16px;
}
.upload-form__button .fa-share,
.upload-form__previous-link .fa-share {
  margin-right: 6px;
  display: block;
}
.upload-form__button[disabled],
.upload-form__previous-link[disabled],
.upload-form__button:disabled,
.upload-form__previous-link:disabled {
  cursor: default;
  background: #f6f7fb !important;
  color: #d3d9e0 !important;
  border-color: #d3d9e0 !important;
}
.upload-form__button[disabled] .svg-icon,
.upload-form__previous-link[disabled] .svg-icon,
.upload-form__button:disabled .svg-icon,
.upload-form__previous-link:disabled .svg-icon {
  fill: #d3d9e0;
}
.upload-form__button[tooltip]:after,
.upload-form__previous-link[tooltip]:after {
  display: none;
}
.upload-form__button[tooltip][disabled]:after,
.upload-form__previous-link[tooltip][disabled]:after {
  display: block;
}
.upload-form__previous-link {
  color: #3092fa;
  text-decoration: none;
  background-color: transparent;
}
.upload-form__previous-link:hover {
  color: #3092fa;
  background-color: #f1f7fe;
  text-decoration: none;
}
.upload-thanks {
  display: none;
  width: 460px;
  max-width: 100%;
  margin: 40px auto;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}
.upload-thanks.is-active {
  display: block;
}
.upload-thanks h2 {
  margin-top: 17px;
}
.upload-thanks p {
  margin: 0 0 10px;
}
.upload-thanks__image {
  margin-right: 35px;
  flex-shrink: 0;
}
.upload-thanks__footer {
  text-align: center;
  margin-top: 25px;
}
.upload-thanks__footer a {
  display: inline-flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-weight: 400;
  text-align: center;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #3092fa;
  border: 1px solid #3092fa;
  color: #fff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  padding: 7px 20px 9px;
  text-decoration: none;
}
.upload-thanks__footer a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0a75e6;
  border-color: #0a75e6;
}
.uploaded-item {
  margin-top: 20px;
  border: 1px solid #d3d9e0;
  border-radius: 5px;
  padding: 16px;
}
.uploaded-item:first-child {
  margin-top: 0;
}
.uploaded-item__header {
  border-bottom: 1px solid #d3d9e0;
}
.uploaded-item .jFiler-item-title {
  display: block;
}
.uploaded-item .jFiler-item-status {
  display: none;
}
.uploaded-item .jFiler-item-container {
  padding-bottom: 20px;
}
.uploaded-item .jFiler-item-inner {
  position: relative;
}
.uploaded-item .jFiler-item-progressbar {
  position: absolute;
  right: 7px;
  top: 5px;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  border: 2px solid rgba(0,0,0, .18);
  opacity: 0;
  pointer-events: none;
}
.uploaded-item.is-loading .jFiler-item-progressbar {
  opacity: 1;
}
.uploaded-item.is-loading .jFiler-item-progressbar-thumb {
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid #5bc787;
  border-left-color: transparent;
  border-bottom-color: transparent;
  animation: spinner .6s linear infinite;
}
.uploaded-item .jFiler-item-thumb {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.1;
  color: #4e657e;
  position: relative;
  padding-right: 60px;
}
.uploaded-item .jFiler-item-others {
  display: none;
}
.uploaded-item .jFiler-item-thumb-image {
  order: -1;
  flex: 0 0 30px;
  max-width: 30px;
  width: 30px;
  margin-right: 12px;
}
.uploaded-item .jFiler-item-thumb-image svg {
  display: block;
  width: 30px;
  height: 30px;
}
.uploaded-item span.jFiler-icon-file {
  width: 30px;
  height: 39px;
  line-height: 39px;
  font-size: 8px;
  margin: 0;
}
.uploaded-item .jFiler-item-others {
  font-size: 13px;
}
.uploaded-item .jFiler-item-assets .list-inline.pull-left {
  display: none;
}
.uploaded-item .jFiler-item-assets .list-inline {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.uploaded-item .jFiler-item-assets .list-inline li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.uploaded-item .jFiler-item-trash-action {
  position: absolute;
  right: 0;
  top: 3px;
  width: 56px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 56px;
  border: 1px solid #d3d9e0;
  background-color: transparent;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  padding-left: 4px;
}
.uploaded-item .jFiler-item-trash-action:before {
  display: block;
}
.uploaded-item .jFiler-item-trash-action:hover {
  background-color: #f6f7fb;
}
.uploaded-item__row {
  padding-top: 15px;
}
.uploaded-item__label {
  display: block;
  margin-bottom: 8px;
  color: #4e657e;
  font-weight: 700;
}
.uploaded-item__control {
  position: relative;
}
.uploaded-item__control input,
.uploaded-item__control select,
.uploaded-item__control textarea {
  width: 100%;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d3d9e0;
  border-radius: 12px;
  box-shadow: none;
  color: #2f3e4e;
  display: block;
  font-size: 16px;
  height: 100%;
  line-height: 130%;
  padding: 8px 12px;
  transition: border-color 0.3s;
  outline: none !important;
}
.uploaded-item__control input:hover,
.uploaded-item__control select:hover,
.uploaded-item__control textarea:hover,
.uploaded-item__control input:focus,
.uploaded-item__control select:focus,
.uploaded-item__control textarea:focus {
  border-color: #3092fa;
}
.uploaded-item__control input:hover ~ .uploaded-item__select-arrow,
.uploaded-item__control select:hover ~ .uploaded-item__select-arrow,
.uploaded-item__control textarea:hover ~ .uploaded-item__select-arrow,
.uploaded-item__control input:focus ~ .uploaded-item__select-arrow,
.uploaded-item__control select:focus ~ .uploaded-item__select-arrow,
.uploaded-item__control textarea:focus ~ .uploaded-item__select-arrow {
  border-top-color: #3092fa;
}
.uploaded-item__control textarea {
  height: 84px;
  resize: none;
}
.uploaded-item__select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: 4px;
  transform: translateY(-50%);
  transition: border 0.3s;
  border: 5px solid transparent;
  border-top: 7px solid rgba(0,0,0,0.6);
}
.uploded-file-preview {
  margin-top: 25px;
}
.uploded-file-preview .uploaded-item {
  padding: 12px 0 12px;
  margin: 0;
  border: none;
  border-bottom: 1px solid #d3d9e0;
  border-radius: 0;
}
.uploded-file-preview .uploaded-item:first-child {
  border-top: 1px solid #d3d9e0;
}
.uploded-file-preview .uploaded-item__header {
  border: none;
}
.uploded-file-preview .uploaded-item .jFiler-item-others {
  display: block;
}
.uploded-file-preview .uploaded-item .jFiler-item-thumb-image {
  display: none;
}
.uploded-file-preview .uploaded-item .jFiler-item-container {
  padding: 0;
}
.uploded-file-preview .uploaded-item .jFiler-item-trash-action {
  top: 0px;
  transition: opacity .3s;
}
.uploded-file-preview .uploaded-item.is-loading .jFiler-item-trash-action {
  opacity: 0;
}
@-webkit-keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .upload-thanks {
    text-align: left;
  }
  .upload-thanks__body {
    display: flex;
  }
  .upload-thanks__footer {
    padding-left: 20px;
  }
  .uploaded-item__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .uploaded-item__label {
    flex: 0 0 160px;
    max-width: 160px;
    width: 160px;
    padding-top: 5px;
  }
  .uploaded-item__control {
    flex: 1 1;
    max-width: 615px;
  }
}
