@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import "variables.css";
@import "tooltip.css";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100vh;
}

body {
  background-color: var(--lightest-grey);
  font-family: "Nunito";
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: var(--lightest-grey);
  font-family: "Roboto", sans-serif;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 20px;
  transition: opacity 1s ease-in-out;
}

#canvasContainer {
  position: relative;
  filter: drop-shadow(2px 2px 10px #ccc);
  margin-top: 20px;
}

canvas {
  border: 1px solid #ccc;
}

h2 {
  margin: 20px 0 15px;
  display: flex;
  justify-content: center;
}

section {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: auto;
  align-items: center;
  z-index: 0;
}

nav {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #dde5ff;
  padding: 10px;
  margin-top: 0;
  background: aliceblue;
  border-radius: 10px;
  max-height: 74px;
  height: 100%;
  filter: drop-shadow(2px 2px 16px #ccc);
  box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
  width: -moz-fit-content;
  width: fit-content;
  min-width: 1200px;
}

label {
  display: block;
  margin-left: 10px;
  font-weight: bold;
  padding: 0 0 0 10px;
  border-radius: 10px;
}
label:first-of-type {
  margin-left: 0;
}
label:hover {
  background-color: var(--hover);
  color: #fff;
}

input,
button,
select {
  background-color: rgba(66, 186, 243, 0.3098039216);
  padding: 10px;
  font-weight: bold;
  width: 225px;
  height: 50px;
  border: none;
}
input:hover,
button:hover,
select:hover {
  background-color: var(--hover);
  color: #fff !important;
}
input::file-selector-button,
button::file-selector-button,
select::file-selector-button {
  font-weight: bold;
  color: var(--active);
  padding: 0.5em;
  border: thin solid grey;
  border-radius: 3px;
  filter: drop-shadow(2px 2px 2px #ccc);
}
input::file-selector-button:active,
button::file-selector-button:active,
select::file-selector-button:active {
  filter: unset;
}
input:valid,
button:valid,
select:valid {
  color: var(--input-valid);
  margin-left: 10px;
}
input:invalid,
button:invalid,
select:invalid {
  color: var(--input-invalid);
  margin-left: 10px;
}

#feather {
  width: 140px;
}

#resize,
#add,
#remove,
#export,
#export-psd {
  width: 80px;
  border-radius: 5px;
  border-bottom: 2px solid rgba(51, 51, 51, 0.5137254902);
  cursor: pointer;
}
#export-psd.save {
  display: none;
  background-color: var(--purple);
  color: #fff;
}

#resize {
  display: none;
  background-color: var(--green);
  color: #fff;
}
#resize:hover {
  background-color: var(--on);
  color: #000 !important;
}

#add:hover {
  background-color: var(--hover);
}

#remove {
  filter: grayscale(1);
  background-color: var(--red);
  color: #fff;
}
#remove:hover {
  background-color: var(--red);
  filter: grayscale(0);
}

#export {
  color: #fff;
  background-color: var(--green);
  transition: all 0.2s ease-in;
  border: 2px solid transparent;
  position: relative;
}
#export:hover {
  transform: translateY(-2px);
  border-bottom: 2px solid var(--light-green);
}

#overlays,
#logos {
  width: 140px;
}

#text-color {
  width: 50px;
  border-radius: 50%;
  margin-left: 0;
}

#text-options {
  flex-direction: row;
  padding: 10px;
  gap: 10px;
}

.image-type-selector {
  margin: 10px 0;
  width: 100px;
}
.image-type-selector #isActorImage {
  width: auto;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

#actorCanvas {
  border: 1px solid #ccc;
  margin: 20px auto;
  background-color: #fff;
}

.canvas-container:last-of-type {
  display: none;
}

#zoom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  display: none;
  cursor: pointer;
}
#zoom-controls svg,
#zoom-controls a {
  width: auto;
  height: 30px;
  scale: 1;
  transition: all 0.2s ease-in-out;
}
#zoom-controls svg:hover,
#zoom-controls a:hover {
  scale: 1.2;
}
#zoom-controls a {
  display: flex;
  align-items: center;
}

#featuredImageControls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.actor-mode #featuredImageControls {
  display: none;
}

aside {
  display: flex;
  align-self: normal;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  background: aliceblue;
  width: 355px;
  border: 2px solid rgba(185, 220, 252, 0.4705882353);
  position: relative;
  top: -150px;
  padding-top: 20px;
  left: 18px;
  padding-bottom: 10px;
  border-radius: 10px;
  filter: drop-shadow(2px 2px 16px #ccc);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
aside .color {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
aside .color input {
  border-radius: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
}
aside .color input:last-of-type {
  margin-right: 20px;
}

#help {
  display: none;
  position: relative;
  width: 20px;
  height: 20px;
  background: center/contain no-repeat url("../help.png");
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.overlay {
  filter: opacity(0.3);
}

.active {
  background-color: var(--hover);
}

.disabled {
  filter: grayscale(100%);
  opacity: 0.5;
}

.tooltip {
  max-width: 355px;
  text-align: center;
  filter: drop-shadow(2px 4px 4px #ccc);
  margin-bottom: 20px;
}

footer {
  position: relative;
  padding: 0.5em;
  font-family: "Open Sans", sans-serif;
  display: inherit;
  justify-content: center;
  margin-top: 20px;
  z-index: -1;
}
footer .help-key {
  position: absolute;
  text-transform: uppercase;
  font-size: 12px;
  left: 10px;
  padding-top: 2px;
  padding-bottom: 10px;
  font-weight: bold;
  color: var(--wip);
  display: none;
}
footer .author {
  text-transform: uppercase;
  font-size: 14px;
  right: 10px;
  padding-top: 2px;
  padding: 5px;
}
footer .author:hover {
  background-color: beige;
  padding: 13px;
  border-radius: 5px;
}
footer .author a {
  color: var(--link);
  position: relative;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--link-underline);
  padding: 0 2px;
  top: 0;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
footer .author a:after {
  position: absolute;
  content: "";
  left: 0;
}
footer .author a:visited {
  color: var(--link);
}
footer .author a:hover {
  color: #fff;
  background-color: var(--link);
  padding: 5px 2px 30px 2px;
  top: -12px;
}
footer .author a:hover:after {
  position: absolute;
  content: "SCOTTO";
  left: 5px;
  top: 30px;
  background-color: var(--link);
}

#prefilled-text-options {
  display: none;
  position: absolute;
  top: 80px;
  width: 225px;
  background: aliceblue;
  padding: 10px;
  z-index: 100;
  border: 2px solid rgba(3, 169, 244, 0.5098039216);
  border-radius: 8px;
  filter: drop-shadow(2px 2px 4px #ccc);
}
#prefilled-text-options.show {
  display: block;
}
#prefilled-text-options button {
  background: unset;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  cursor: pointer;
}
#prefilled-text-options button:hover {
  color: #333 !important;
}
#prefilled-text-options #custom-text-input {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  margin-left: 0;
  border: 2px solid var(--input-valid);
  color: var(--input-valid) !important;
}
#prefilled-text-options #custom-text-input:hover {
  background-color: unset;
}

.text-options-active {
  background-color: var(--hover);
  color: #fff !important;
}

#text-options-menu,
#text-selection-menu {
  display: none;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-top: 10px;
  max-width: 300px;
}
#text-options-menu label,
#text-selection-menu label {
  display: block;
  margin: 5px 0;
}

#text-options-toggle,
#text-selection-toggle {
  margin: 5px 0;
  display: block;
}

#text-options-toggle {
  width: 105px;
  background-color: transparent;
  color: var(--hover) !important;
  border: 2px dashed var(--hover);
  cursor: pointer;
}
#text-options-toggle:hover {
  background-color: var(--hover);
  color: #fff !important;
  border: 2px dashed var(--hover);
}
#text-options-toggle.active {
  background-color: transparent;
  color: var(--hover) !important;
  border: 2px dashed var(--hover);
}

#text-options-menu {
  display: none;
  flex-direction: row;
  position: absolute;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  border: 2px dashed var(--hover);
  transition: all 0.3s ease;
}
#text-options-menu.show {
  display: flex;
  position: absolute;
  width: 330px;
  top: 70px;
  right: 175px;
  justify-content: space-around;
  z-index: 2;
}

#align-left,
#align-center,
#align-right {
  width: 50px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
}

.align {
  position: relative;
  display: flex;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 0 10px;
}
.align:before, .align:after {
  position: absolute;
  content: "";
  width: 25px;
  left: 0;
  height: 3px;
  background-color: #fff;
}
.align:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  top: -8px;
  background-color: #fff;
}
.align:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  top: 8px;
  background-color: #fff;
}

.align.left {
  width: 15px;
}

.align.right {
  width: 15px;
  left: 13px;
}
.align.right:before {
  left: -10px;
}
.align.right:after {
  left: -10px;
}

.align.center {
  width: 15px;
  left: 7px;
}
.align.center:before, .align.center:after {
  left: -5px;
}

#notification {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100vw;
}
#notification .prompt-container {
  display: flex;
  background: #b7e5bb;
  padding: 15px;
  border-radius: 5px;
  width: auto;
  max-width: 800px;
  position: absolute;
  top: 30%;
  gap: 20px;
  border: 1px solid var(--highlight-accent);
  filter: drop-shadow(2px 2px 4px #ccc);
  z-index: 1;
  background: #ffeb3b;
}
#notification .prompt-container .prompt {
  font-weight: bold;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
}
#notification .prompt-container .prompt .success {
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin-top: 5px;
}
#notification .prompt-container .prompt .success .total-images,
#notification .prompt-container .prompt .success .total-time {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 3px dotted var(--link-underline);
}
#notification .prompt-container .close-btn {
  top: -10px;
  right: -10px;
}

@media screen and (max-width: 1020px) {
  #main {
    min-height: -moz-fit-content;
    min-height: fit-content;
    display: flex;
    gap: 20px;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  #main label {
    margin-left: 0;
  }
  aside {
    left: 110px;
    min-height: -moz-fit-content;
    min-height: fit-content;
    display: flex;
    gap: 20px;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    top: -290px !important;
  }
}/*# sourceMappingURL=styles.css.map */