/***     index.html     ***/
html {
  background: url('resources/send_bg.svg');
  font-family: -apple-system,
    BlinkMacSystemFont,
    'SF Pro Text',
    Helvetica,
    Arial,
    sans-serif;
  font-weight: 200;
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center top;
  height: 100%;
  max-width: 1440px;
  margin: auto;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

.header {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 31px;
  width: 100%;
}

.send-logo {
  display: flex;
  position: relative;
  align-items: center;
}

.send-logo > a {
  display: flex;
  flex-direction: row;
}

.site-title {
  color: #3e3d40;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  position: relative;
  top: -1px;
  letter-spacing: 1px;
  margin-left: 8px;
}

.site-subtitle {
  color: #3e3d40;
  font-size: 12px;
  margin: 0 8px;
}

.site-subtitle a {
  font-weight: bold;
  color: #3e3d40;
  transition: color 50ms;
}

.send-logo:hover a {
  color: #0297f8;
}

.feedback {
  background-color: #0297f8;
  background-image: url('resources/feedback.svg');
  background-position: 2px 4px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 3px;
  border: 1px solid #0297f8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #fff;
  cursor: pointer;
  display: block;
  float: right;
  font-size: 12px;
  line-height: 12px;
  opacity: 0.9;
  padding: 5px;
  overflow: hidden;
  width: 12px;
  text-indent: 17px;
  transition: all 150ms ease-in-out;
}

.feedback:hover,
.feedback:focus {
  width: 57px;
  text-indent: 2px;
  padding: 5px 5px 5px 20px;
  background-color: #0287e8;
  transition: all 150ms ease-in-out;
}

.feedback:active {
  background-color: #0277d8;
}

.all {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 630px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 96%;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

a {
  text-decoration: none;
}

/**   page-one    **/

.title {
  font-size: 33px;
  line-height: 40px;
  margin: 20px auto;
  text-align: center;
  max-width: 520px;
  font-family: 'SF Pro Display', sans-serif;
}

.description {
  font-size: 15px;
  line-height: 23px;
  max-width: 630px;
  text-align: center;
  margin: 0 auto 60px;
  color: #0c0c0d;
  width: 92%;
}

.upload-window {
  border: 1px dashed rgba(0, 148, 251, 0.5);
  margin: 0 auto;
  height: 255px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: transform 150ms;
  padding: 15px;
}

.upload-window.ondrag {
  border: 3px dashed rgba(0, 148, 251, 0.5);
  margin: 0 auto;
  height: 251px;
  transform: scale(1.04);
  border-radius: 4.2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.link {
  color: #0094fb;
  text-decoration: none;
}

.link:hover {
  color: #0287e8;
}

#upload-text {
  font-size: 22px;
  color: #737373;
  margin: 20px 0 10px;
  font-family: 'SF Pro Display', sans-serif;
}

#browse {
  background: #0297f8;
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
  width: 240px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#browse:hover {
  background-color: #0287e8;
}

input[type="file"] {
  display: none;
}

#file-size-msg {
  font-size: 12px;
  line-height: 16px;
  color: #737373;
  margin-bottom: 22px;
}

/**   file-list   **/
th {
  font-size: 16px;
  color: #858585;
  font-weight: lighter;
  text-align: left;
  background: rgba(0, 148, 251, 0.05);
  height: 40px;
  border-top: 1px solid rgba(0, 148, 251, 0.1);
  padding: 0 19px;
}

td {
  font-size: 15px;
  vertical-align: top;
  color: #4a4a4a;
  padding: 17px 19px 0;
  line-height: 23px;
  position: relative;
}

table {
  border-collapse: collapse;
  font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
}

tbody {
  word-wrap: break-word;
  word-break: break-all;
}

#uploaded-files {
  margin: 45.3px auto;
  table-layout: fixed;
}

.icon-delete,
.icon-copy,
.icon-check {
  cursor: pointer;
}

/* Popup container */
.popup {
  position: absolute;
  display: inline-block;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  min-width: 115px;
  background-color: #fff;
  color: #000;
  border: 1px solid #0297f8;
  text-align: center;
  border-radius: 5px;
  padding: 7px 8px;
  position: absolute;
  z-index: 1;
  bottom: 8px;
  right: -28px;
  transition: opacity 0.5s;
  opacity: 0;
  outline: 0;
  box-shadow: 3px 3px 7px #888;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 30px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0297f8 transparent transparent;
}

.popup .show {
  visibility: visible;
  opacity: 1;
}

.popup-message {
  margin-bottom: 4px;
}

.popup-yes {
  color: #fff;
  background-color: #0297f8;
  border-radius: 5px;
  padding: 2px 11px;
  cursor: pointer;
}

.popup-yes:hover {
  background-color: #0287e8;
}

.popup-no {
  color: #4a4a4a;
  border-radius: 6px;
  padding: 3px 5px;
  cursor: pointer;
}

/**   upload-progress   **/
.progress-bar {
  margin-top: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.percentage {
  position: absolute;
  letter-spacing: -0.78px;
  font-family: 'Segoe UI', 'SF Pro Text', sans-serif;
}

.percent-number {
  font-size: 43.2px;
  line-height: 58px;
}

.percent-sign {
  font-size: 28.8px;
  color: rgb(104, 104, 104);
}

.upload {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 15px;
}

.progress-text {
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.4px;
  margin-top: 24px;
  margin-bottom: 74px;
}

#cancel-upload {
  color: #d70022;
  cursor: pointer;
  text-decoration: underline;
}

/**   share-link    **/
#share-window {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#share-window-r > div {
  font-size: 12px;
  padding-bottom: 10px;
}

#copy {
  display: flex;
  flex-wrap: nowrap;
  width: 640px;
}

#copy-text {
  align-self: flex-start;
  margin-top: 60px;
  margin-bottom: 10px;
  color: #0c0c0d;
}

#link {
  flex: 1;
  height: 56px;
  border: 1px solid #0297f8;
  border-radius: 6px 0 0 6px;
  font-size: 24px;
  color: #737373;
  font-family: 'SF Pro Display', sans-serif;
  letter-spacing: 0;
  line-height: 23px;
  font-weight: 300;
  padding-left: 10px;
  padding-right: 10px;
}

#link:disabled {
  border: 1px solid #05a700;
  background: #fff;
}

#copy-btn {
  flex: 0 1 165px;
  background: #0297f8;
  border-radius: 0 6px 6px 0;
  border: 1px solid #0297f8;
  color: white;
  cursor: pointer;
  font-size: 15px;
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

#copy-btn:hover {
  background-color: #0287e8;
}

#copy-btn:disabled {
  background: #05a700;
  border: 1px solid #05a700;
  cursor: auto;
}

#delete-file {
  width: 176px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(12, 12, 13, 0.3);
  border-radius: 5px;
  font-size: 15px;
  margin-top: 50px;
  margin-bottom: 12px;
  cursor: pointer;
  color: #313131;
}

#delete-file:hover {
  background: #efeff1;
}

.send-new {
  font-size: 15px;
  margin: auto;
  text-align: center;
  color: #0094fb;
  cursor: pointer;
  text-decoration: underline;
}

.send-new:hover,
.send-new:focus,
.send-new:active {
  color: #0287e8;
}

/*    upload-error    */
#upload-error {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#upload-error[hidden],
#unsupported-browser[hidden] {
  display: none;
}

#upload-error-img {
  margin: 51px 0 71px;
}

/*    unsupported-browser   */
#unsupported-browser {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.unsupported-description {
  font-size: 13px;
  line-height: 23px;
  text-align: center;
  color: #7d7d7d;
  margin: 0 auto 23px;
}

#firefox-logo {
  width: 70px;
}

#dl-firefox {
  margin-bottom: 181px;
  width: 260px;
  height: 80px;
  background: #12bc00;
  border-radius: 3px;
  cursor: pointer;
  border: 0;
  box-shadow: 0 5px 3px rgb(234, 234, 234);
  font-family: 'Fira Sans';
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

#dl-firefox-text {
  text-align: left;
  margin-left: 20.4px;
}

#dl-firefox-text > span {
  font-family: 'Fira Sans';
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.69px;
}

/**   download.html **/
#download-btn {
  font-size: 15px;
  color: white;
  width: 180px;
  height: 44px;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  background: #0297f8;
  border: 1px solid #0297f8;
  border-radius: 5px;
  font-weight: 300;
  cursor: pointer;
}

#download-btn:hover {
  background-color: #0287e8;
}

#download-btn:disabled {
  background: #47b04b;
  cursor: auto;
}

#download {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#expired-img {
  margin: 51px 0 71px;
}

.expired-description {
  font-size: 15px;
  line-height: 23px;
  text-align: center;
  color: #7d7d7d;
  margin: 0 auto 23px;
}

#download-progress {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#download-progress[hidden] {
  display: none;
}

#download-img {
  width: 283px;
  height: 196px;
}

/*    footer    */
.footer {
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 15px;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px 31px 41px;
  width: 100%;
  box-sizing: border-box;
}

.mozilla-logo {
  width: 112px;
  height: 32px;
  margin-bottom: -5px;
}

.legal-links {
  max-width: 600px;
  width: 80vw;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.legal-links > a {
  color: #858585;
  opacity: 0.9;
}

.legal-links > a:hover {
  opacity: 1;
}

.legal-links > a:visited {
  color: #858585;
}

.social-links {
  display: flex;
  justify-content: space-between;
  width: 94px;
}

.social-links > a {
  opacity: 0.9;
}

.social-links > a:hover {
  opacity: 1;
}

.github,
.twitter {
  width: 32px;
  height: 32px;
  margin-bottom: -5px;
}

@media (max-device-width: 768px), (max-width: 768px) {
  .description {
    margin: 0 auto 25px;
  }

  #copy {
    width: 100%;
  }

  #link {
    font-size: 18px;
  }

  .footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 630px;
    margin: auto;
  }

  .mozilla-logo {
    margin-left: -7px;
  }

  .legal-links {
    flex-direction: column;
    margin: auto;
    width: 100%;
    max-width: 100%;
  }

  .legal-links > * {
    display: block;
    padding: 10px 0;
    align-self: flex-start;
  }

  .social-links {
    margin-top: 20px;
    align-self: flex-start;
  }
}

@media (max-device-width: 520px), (max-width: 520px) {
  .header {
    flex-direction: column;
    justify-content: flex-start;
  }

  .feedback {
    margin-top: 10px;
  }

  #copy {
    width: 100%;
    flex-direction: column;
  }

  #link {
    font-size: 22px;
    padding: 15px 10px;
    border-radius: 6px 6px 0 0;
  }

  #copy-btn {
    border-radius: 0 0 6px 6px;
    flex: 0 1 65px;
  }

  th {
    font-size: 14px;
    padding: 0 5px;
  }

  td {
    font-size: 13px;
    padding: 17px 5px 0;
  }
}