/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* Custom Tippy Theme */
.tippy-box[data-theme~="torrent-parts"] {
  background-color: var(--accent);
  font-weight: 600;
  text-align: center;
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="top"] > .tippy-arrow:before {
  border-top-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="bottom"] > .tippy-arrow:before {
  border-bottom-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="left"] > .tippy-arrow:before {
  border-left-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="right"] > .tippy-arrow:before {
  border-right-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"] > .tippy-backdrop {
  background-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"] > .tippy-svg-arrow {
  fill: var(--accent);
}

/* Fix Notyf dismiss button */
.notyf__dismiss-btn{border-radius: 0;}

/*! Alata | OFL-1.1 License | github.com/SorkinType/Alata */
@font-face {
  font-family: 'Alata';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/ext/alata-v9-latin-regular.woff2') format('woff2'), 
       url('/ext/alata-v9-latin-regular.ttf') format('truetype');
}


/* begin custom stuff */

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

:root {
  --gradient: linear-gradient(180deg, #152332, #24384D);
  --dark-blue: #102030;
  --light-blue: #495563;
  --accent: #46835C;
  --accent-alt: #A60A0A;
  --grey: #BDBDBD;
  --white: #FFF;
  background: #24384D;
  overflow-x: hidden;
}

body {
  color: var(--white);
  background: var(--gradient);
  font-family: 'Alata', Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

input {
  color: var(--white);
  background: var(--dark-blue);
  border: 1px solid var(--light-blue);
  padding: 8px;
  box-sizing: border-box;
  border-radius: 900px;
  text-overflow: ellipsis;
}

input:focus {
  background: var(--light-blue);
  border: 1px solid var(--grey);
  transition: ease .2s;
  outline: none;
}

input:disabled {
  color: var(--grey);
  background: transparent;
  border: 0;
  padding: 8px 0;
}

::placeholder {
  color: var(--grey);
  opacity: 0.6;
}

button {
  color: var(--white);
  background: var(--accent);
  border: 0;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 900px;
  text-align: left;
  cursor: pointer;
}

button:disabled {
  filter: brightness(0.6);
  cursor: not-allowed;
}

a {
  color: var(--grey);
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
}

.disabled {
  text-decoration: none;
  cursor: not-allowed;
}

header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--grey);
}

header > * {
  margin: 0 24px;
}

footer {
  position: absolute;
  bottom: 4px;
  right: 4px;
}

footer > a {
  color: var(--grey);
  opacity: 0.6;
  font-size: 10px;
  text-transform: none;
  text-decoration: none;
}

#startButtons {
  height: 80px;
  max-width: 960px;
  margin: 64px auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#startButtons > *, #examples > button {
  width: 440px;
  height: 40px;
  line-height: 22px;
}

#magnet {
  text-align: center;
}

#torrent {
  display: none;
}

label[for="torrent"] {
  color: var(--white);
  background: var(--accent);
  border: 0;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 900px;
  text-align: center;
  text-transform: none;
  cursor: pointer;
}

#examples {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#examples > button {
  background: var(--light-blue);
  width: 440px;
  height: 40px;
  line-height: 22px;
  text-align: center;
}

#properties {
  position: relative;
  max-width: 960px;
  background: var(--dark-blue);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
  margin: 80px auto;
  padding: 40px;
  border-radius: 30px;
  flex-direction: column;
  justify-content: space-evenly;
}

#reset {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 50%;
  position: absolute;
  top: -12px;
  right: -12px;
}

#share {
  position: absolute;
  top: 0;
  left: -28px;
  display: flex;
  flex-direction: column;
}

#share > * > button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  text-align: center;
  line-height: 50%;
  margin: 4px 0;
}

.property {
  margin: 24px 0;
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
}

.property:first-child {
  width: 240px;
}

.labels {
  width: 280px;
  text-align: right;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.labels > a {
  font-size: 80%;
  margin-top: 6px;
}

.content, #files {
  width: 460px;
}

.info {
  color: var(--grey);
}

label {
  text-transform: uppercase;
}

input {
  width: 440px;
  height: 40px;
}

#addTracker, #addWebseed {
  width: 440px;
  height: 40px;
  margin: 0 0 16px 0;
  color: var(--grey);
  opacity: 0.6;
  background: var(--dark-blue);
  border: 1px solid var(--light-blue);
  box-sizing: border-box;
  border-radius: 900px;
  cursor: pointer;
}

#announce > *, #urlList > * {
  margin: 0 0 16px 0;
}

.remove {
  margin-left: 6px;
}

@media (max-width: 1080px) {

  #reset {
    top: 0px;
    right: 8px;
  }

  #share {
    justify-content: center;
    width: 95%;
    top: auto;
    bottom: 16px;
    left: auto;
    right: auto;
    flex-direction: row;
  }

  #share > * {
    margin: 0 4px;
  }

  #properties {
    padding-bottom: 80px !important;
  }

}

@media (max-width: 900px) {

  #startButtons {
    flex-direction: column;
    justify-content: space-between;
    height: 90px;
  }

  #properties {
    margin: 0 0 32px 0;
    padding: 0 1.5vw;
  }

  .property {
    margin: 12px 0;
    flex-direction: column;
  }

  .property > label {
    margin: 12px 0;
  }

  input, button {
    width: 80vw;
    text-align: center;
  }

  .labels {
    margin-bottom: 16px;
    align-items: center;
  }

  .labels, .content, #files {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #announce, #urlList {
    text-align: center;
  }

  #announce > * > *, #urlList > * > *, #addTracker, #addWebseed, #examples > button {
    width: 80vw;
  }

  #addTracker, #addWebseed {
    margin-right: 22px !important;
  }

}

@media (max-width: 460px) {
  
  #startButtons > *, .property > input {
    width: 95%;
  }

}