.export-button {
  height: 20px;
  width: fit-content;
  border-radius: 5px;
  box-shadow: none;
  padding: 2px;
  border: none;
  margin: 2px;
  opacity: 0.8;
  user-select: none;
}

.export-button:hover {
  opacity: 1;
}

.export-select {
  width: fit-content;
  cursor: pointer;
  margin: 0 5px;
  position: relative;
  z-index: 10;
  white-space: nowrap;
  position: relative;
}

.export-menu {
  position: absolute;
  top: 0px;
  left: 0;
  width: max-content;
  height: fit-content;
  background-color: var(--base-color);
  border: 1px solid var(--darker-color);
  border-radius: 10px;
  opacity: 0;
  transform: translate(1000px, 0);
  transition: opacity 200ms ease-in-out, top 300ms ease-in-out;
  z-index: 10;
}

.active-export-menu {
  opacity: 1;
  top: 20px;
  transform: translate(0, 0);
}

.export-item {
  width: 100%;
  padding: 10px 10px;
}

.export-item:hover {
  background-color: var(--darker-color);
  border-radius: 5px;
}

.export-item:first-child {
  border-radius: 10px 10px 0 0;
}

.export-item:last-child {
  border-radius: 0 0 10px 10px;
}

.alpha-menu,
.burn-menu {
  display: none;
  width: 700px;
  min-height: 320px;
  height: fit-content;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: var(--base-color);
  border-radius: 10px;
  border: 1px solid var(--darker-color);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.active-alpha-menu {
  display: block;
}

.alpha-menu-title {
  margin: 20px 20px;
  font-size: 1.5em;
  display: flex;
  justify-content: space-between;
}

.close-alpha-menu {
  background-color: rgb(216, 216, 216);
  border: none;
  border-radius: 10px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(83, 83, 83);
  padding-bottom: 2px;
  cursor: pointer;
}

.close-alpha-menu:hover {
  background-color: rgb(165, 165, 165);
}

.alpha-fps-container,
.alpha-resolution-container,
.alpha-progress-bar-container,
.alpha-status-container,
.alpha-email-container {
  margin: 20px 20px;
  display: flex;
  align-items: center;
}

.alpha-email-container {
  justify-content: space-between;
}

.alpha-progress-bar-container {
  flex-direction: column;
  align-items: flex-end;
}
#alpha-progress {
  width: 100%;
  height: 40px;
  accent-color: rgb(58, 150, 255);
}

.dot-flashing,
.dot-flashing-burn {
  display: none;
  margin: 0 20px;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: rgb(58, 150, 255);
  color: rgb(188, 219, 255);
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after,
.dot-flashing-burn::before,
.dot-flashing-burn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before,
.dot-flashing-burn::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: rgb(58, 150, 255);
  color: rgb(188, 219, 255);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after,
.dot-flashing-burn::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: rgb(58, 150, 255);
  color: rgb(188, 219, 255);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dotFlashing {
  0% {
    background-color: rgb(58, 150, 255);
  }
  50%,
  100% {
    background-color: rgb(188, 219, 255);
  }
}

.alpha-status a {
  color: white;
}

.start-alpha {
  border: none;
  border-radius: 5px;
  width: 60px;
  height: 30px;
  cursor: pointer;
}

.start-alpha:hover {
  background-color: rgb(58, 150, 255);
}

.alpha-email {
  outline: none;
  height: 20px;
}

.export-setting-export-menu {
  position: fixed;
  min-width: 400px;
  width: fit-content;
  height: fit-content;
  background-color: var(--base-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 10px;
  border: 1px solid var(--darker-color);
  padding: 20px;
  display: none;
}

.export-setting-header {
  display: flex;
  justify-content: space-between;
}

.export-setting-close-button {
  cursor: pointer;
}

.export-setting-content {
  margin-top: 10px;
}

.export-setting {
  margin-top: 10px;
}

#export-setting-size-input {
  width: 52px;
  margin-right: 5px;
}

.export-setting-export {
  background-color: rgb(218, 218, 218);
  cursor: pointer;
  color: rgb(43, 43, 43);
  border-radius: 5px;
  border: none;
  padding: 5px;
  width: 70px;
  text-align: center;
}

.export-setting-export:hover {
  background-color: rgb(186, 186, 186);
}

.export-setting-export-container {
  display: flex;
  justify-content: flex-end;
}

.zero-subtitle-container-pac {
  display: none;
}

.zero-subtitle-container-pac input {
  border: none;
  outline: none;
  padding: 0 5px;
}

.export-setting-content > fieldset {
  margin: 0;
  margin-top: 5px;
  padding: 10px;
}

.export-setting-content > fieldset input[type="number"] {
  margin-right: 10px;
  width: 40px;
  outline: none;
}

.export-setting-content > fieldset select {
  margin-right: 10px;
  width: fit-content;
  outline: none;
}

.export-setting-content > fieldset div {
  margin: 0;
}

.active-burn-menu {
  display: block;
}

.burn-menu-title {
  margin: 20px 20px;
  font-size: 1.5em;
  display: flex;
  justify-content: space-between;
}

.close-burn-menu {
  background-color: rgb(216, 216, 216);
  border: none;
  border-radius: 10px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(83, 83, 83);
  padding-bottom: 2px;
  cursor: pointer;
}

.close-burn-menu:hover {
  background-color: rgb(165, 165, 165);
}

.burn-fps-container,
.burn-resolution-container,
.burn-progress-bar-container,
.burn-status-container,
.burn-email-container {
  margin: 20px 20px;
  display: flex;
  align-items: center;
}

.burn-email-container {
  justify-content: space-between;
}

.burn-progress-bar-container {
  flex-direction: column;
  align-items: flex-end;
}
#burn-progress {
  width: 100%;
  height: 40px;
  accent-color: rgb(58, 150, 255);
}

.burn-status a {
  color: white;
}

.start-burn {
  border: none;
  border-radius: 5px;
  width: 60px;
  height: 30px;
  cursor: pointer;
}

.start-burn:hover {
  background-color: rgb(58, 150, 255);
}

.burn-email {
  outline: none;
  height: 20px;
}

.burn-tab-container,
.alpha-tab-container {
  margin-left: 20px;
}

.burn-tab-container input,
.burn-tab-container label,
.alpha-tab-container input,
.alpha-tab-container label {
  cursor: pointer;
}

.alpha-burn-type-container {
  margin-left: 20px;
  cursor: pointer;
}

.active-advane-export {
  color: limegreen;
}
