* {
  background-color: #0b0e11;
}

body {
  font-family: "Rubik", sans-serif;
}

div {
  background-color: #212932;
  border-radius: 10px;
  margin: 5px 5px;
}

#main {
  background-color: #0b0e11;
}

button,
.button {
  display: inline-block;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #282695;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: none;
}

p,
h3,
input {
  color: white;
}

#uploadVTT {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
}

#uploadVTT h3,
#uploadVTT a {
  position: relative;
  top: 50%;
  text-align: center;
  background-color: transparent;
  color: white;
}

#uploadVTT #vttSelectorButton {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#uploadVTT #LoadMenu {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#languageSelectContainer {
  position: relative;
  top: 90%;
  left: 100%;
  -webkit-transform: translate(-110%, -300%);
          transform: translate(-110%, -300%);
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#languageSelectContainer > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px;
  background-color: transparent;
  color: white;
}

#subtitleHolder {
  background-color: transparent;
}

.SubtitleDiv {
  background-color: #212932;
  padding: 16px;
  padding-top: 5px;
  width: calc(60% - 20px);
  margin: 20px 5px;
  white-space: nowrap;
  -webkit-box-shadow: 0px -4px 0px #282695;
          box-shadow: 0px -4px 0px #282695;
}

.SubtitleDiv h2 {
  color: white;
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.SubtitleDiv .titleHolder {
  width: 100px;
  float: left;
  background-color: transparent;
}

.SubtitleDiv .titleHolder * {
  padding: 0px;
  margin: 0px;
}

.SubtitleDiv .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: transparent;
}

.SubtitleDiv textarea {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 80px;
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.SubtitleDiv .deleteButton {
  position: relative;
  width: 20px;
  height: 20px;
  right: 5px;
  background-color: red;
  color: white;
  margin: 0;
  padding: 0;
}

.SubtitleDiv .addSubtitleBelow {
  padding: 8px;
  padding-bottom: 6px;
  padding-top: 6px;
  display: block;
}

#styleHolder {
  position: -webkit-sticky;
  position: sticky;
  top: 0vh;
  left: 65vw;
  width: calc(100vw - 65vw);
  height: 100vh;
  background-color: #212932;
  padding: 3px;
  overflow: auto;
}

#styleHolder h1 {
  background-color: transparent;
  color: white;
  text-align: center;
}

#styleHolder #styleButtons {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  height: auto;
  max-height: 10%;
  padding: 12px;
  overflow: auto;
}

#styleHolder #styleButtons .selected {
  background-color: red;
}

#styleHolder #styleEditor {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  background-color: #0b0e11;
  overflow: auto;
  padding: 12px;
}

#styleHolder #styleEditor select,
#styleHolder #styleEditor input,
#styleHolder #styleEditor p {
  color: white;
  background-color: transparent;
  margin: 8px 0;
  border: none;
  font-family: "Rubik", sans-serif;
}

#styleHolder .styleButton {
  background-color: #282695;
  /* Green */
  border: none;
  color: white;
  padding: 1px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px;
}

#download {
  position: relative;
  top: 10%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  border: none;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #212932;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #282695;
}

#toolbar {
  background-color: transparent;
  position: absolute;
  top: 0px;
  width: 50%;
}

#toolbar p {
  background-color: transparent;
}

#toolbar h1 {
  color: white;
}

#toolbar #github {
  color: white;
  background-color: transparent;
  -webkit-filter: drop-shadow(1px 1px 4px white);
          filter: drop-shadow(1px 1px 4px white);
}

#toolbar #github img {
  background-color: transparent;
}

#preview {
  background-color: #0b0e11;
  width: 90%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: auto;
  padding: 12px;
}

#previewTitle {
  color: white;
  background-color: transparent;
  text-align: center;
}

#previewText {
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  text-align: center;
  z-index: 1;
}

input[type="number"] {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

input[type="color"] {
  border: none;
  border-radius: 10px;
}
/*# sourceMappingURL=main.css.map */