:root {
  --primary-color: #1CC248;
  --border-primary-color: #12C06D;
  --border-primary-color-rgb: 18, 192, 109;
  --Divider-Dark: #DDDDE4;
  --Divider-Light: #EEEEF6;
  --html-background-color: #E6F0F3;
  --Text-Black: #111;
  --Text-Sub: #8C8C8C;
  --primary-hover: #0DAE62;
}

body {
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--html-background-color);
}

#landing body.lang-ja span.en,
body.lang-ja span.en {
  display: none !important;
}

#landing body.lang-en span.ja,
body.lang-en span.ja {
  display: none !important;
}

div.box-btn-lang {
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #4CAF50;
}

button.btn-lang {
  color: #4CAF50;
  background: none;
  border: none;
  font-size: 12px;
}

.canvas-container {
  margin: 0px 0px 0px 0px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.canvas-container canvas {
  max-width: 350px;
  max-height: 350px;
}

.git-icon {
  font-size: 22px;
  vertical-align: middle;
}

.github-button-text {
  vertical-align: middle;
}

.image-label {
  font-size: 18px;
  padding-right: 10px;
}

#loader-overlay-div {
  background: var(--html-background-color);
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: disabled;
  top: 0;
  left: 0;
}

.css-loader {
  border: 5px solid #f3f3f3;
  /* Light grey background */
  border-top: 5px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.overlay-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
}

.overlay-content-container img {
  transform: scale(.4);
  background-color: transparent;
}

.spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 50px auto;
  background-image: url('https://storage.googleapis.com/fotographer-ai.appspot.com/assets/loading.webp');
}

.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: .5;
}

.row {
  width: 100%;
}

.form-control-range {
  width: 90%;
  margin: 0 10px;
}

.flex1 {
  flex: 1;
  margin-left: 10px;
}

#prompt-container {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

button {
  background-color: var(--primary-color);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input[type='file'] {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
}

input[type='checkbox'] {
  margin-right: 5px;
}

label {
  margin: 0px;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

img.Canvas {
  object-fit: cover;
}

.Canvas {
  border-radius: 24px;
}

.btn-color-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-color-primary-base {
  color: var(--primary-color);
}

.btn-color-primary-base:hover {
  color: var(--primary-color);
  border: var(--primary-color) 1px solid;
  border-radius: 8px;
}

.btn-light-color {
  color: black;
  border-color: var(--Divider-Dark);
}

.color-primary {
  color: var(--primary-color);
}

.border-success {
  border-color: var(--border-primary-color) !important;
}
.btn-delete {
  color: var(--Text-Sub, #8C8C8C);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  background: transparent;
  border: none;

}

.btn-image {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 64px;
  border-radius: 16px;
}

.btn-image-generate {
  background: linear-gradient(90deg, #62E300 0%, rgb(0, 204, 106) 50%, rgb(0, 199, 226) 100%);
  border: 0px solid #62E300;
}

.canvas-label-container {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  height: 29px;
  padding: 11px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 19px;
  background: var(--Fill-White, #FFF);
  color: var(--Black, #111);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}

.canvas-label-container:hover {
  opacity: 0;
  cursor: default;
}

.canvas-label-result {
  color: var(--Fill-White, #FFF);
  background: var(--primary-color);
}

.canvas-light-group {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 7.5px;
  position: absolute;
}

.canvas-light-box {
  flex-grow: 1;
  border-radius: 7px;
  border: 2px solid var(--Fill-White, #FFF);
}

.canvas-light-label {
  display: flex;
  width: 50px;
  height: 25px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 17px;
  background: rgba(0, 0, 0, 0.70);
  color: #F5FBFD;
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.range-span {
  color: var(--Text-Sub, #8C8C8C);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.padding-20 {
  padding: 20px;
}

.padding-28 {
  padding: 28px;
}

.Font {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--Text-Black, #111);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.Font-14 {
  font-size: 14px
}

.Font-13 {
  font-size: 13px
}

.Font-green {
  color: var(--primary-color);
}

.color-option {
  display: flex;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 12px;
}

.maxHeight70 {
  max-height: 70px;
  overflow-y: auto;
}

.custom-textarea::placeholder {
  color: var(--Text-Sub, #8C8C8C);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
}

.custom-textarea::-webkit-input-placeholder {
  color: var(--Text-Sub, #8C8C8C);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
}

.custom-textarea::-moz-placeholder {
  color: var(--Text-Sub, #8C8C8C);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
}

.custom-textarea:-ms-input-placeholder {
  color: var(--Text-Sub, #8C8C8C);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
}

.custom-textarea::-ms-input-placeholder {
  color: var(--Text-Sub, #8C8C8C);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
}

.custom-textarea {
  box-shadow: 0 0 0 1px var(--border-primary-color);
  border-color: var(--border-primary-color);
  min-height: 84px;
  max-height: 140px;
}

#light-settings {
  display: flex;
  flex-direction: column;
  margin: 16px;
}

#light-settings div {
  display: flex;
}

#selected-color {
  width: 32px;
  height: 32px;
  cursor: pointer;

  border-radius: var(--Small, 4px);
  border: 1px solid #D9D9D9;
}

#colorPicker {
  height: 0px;
  width: 0px;
  padding: 0px;
  margin: 0px;
  border: 0px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

#canvas-controls {
  position: relative;
}

#canvas-controls .canvas-light {
  position: absolute;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 3px solid #FFF;
  z-index: 1;
}

#canvas-result {
  position: relative;
}

#canvas-result .canvas-label-download {
  opacity: 0;
  left: auto;
  right: 15px;
  background: white;
  cursor: pointer;
}

#canvas-result:hover .canvas-label-download {
  opacity: 1;
}

#landing {
  padding-top: 100px;
  gap: 40px;
  justify-content: center;
}

.upload-container {
  width: 400px;
  background-color: #FFF;
  border-radius: 24px;
  padding: 74px 16px 16px 16px;
  align-self: center;
}

.upload-container div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-container span {
  font-size: 16px;
  font-weight: 400;
  color: #8C8C8C;
}

#uploader {
  cursor: pointer;
  display: flex;
  gap: 20.5px;
}

#presets {
  width: 100%;
  padding-top: 74px;
}

#presets span {
  font-size: 14px;
  width: 100%;
  display: flex;
  justify-content: left;
}

#presets #images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-top: 10px;
  gap: 10px;
}

#presets #images img {
  border-radius: 12px;
  cursor: pointer;
  max-width: 80px;
  max-height: 80px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.clickable {
  cursor: pointer;
}

.controls-container {
  border-radius: 20px;
}

.custom-uploader {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  background-color: transparent;
  border: none;

  color: var(--primary-color);

  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.image-background-container {
  display: block;
  padding: 0;
  position: relative;
}

.image-bg {
  width: 75px;
  border-radius: 8px;
  border: 1px solid var(--Divider-Dark);
}

.close-image-bg {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  height: 20px;
  width: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 20px;
  background: var(--Fill-White, #FFF);
}

.input-label {
  color: var(--Text-Sub, #8C8C8C);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

input[type=range].red {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range].red::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #FFEAEA;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].red::-webkit-slider-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #FF3636;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11.5px;
}

input[type=range]:focus.red::-webkit-slider-runnable-track {
  background: #FFEAEA;
}

input[type=range].red::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #FFEAEA;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].red::-moz-range-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #FF3636;
  cursor: pointer;
}

input[type=range].red::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].red::-ms-fill-lower {
  background: #FFEAEA;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].red::-ms-fill-upper {
  background: #FFEAEA;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].red::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #FF3636;
  cursor: pointer;
}

input[type=range].red:focus::-ms-fill-lower {
  background: #FFEAEA;
}

input[type=range].red:focus::-ms-fill-upper {
  background: #FFEAEA;
}

input[type=range].green {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range].green::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #DDF5E4;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].green::-webkit-slider-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11.5px;
}

input[type=range]:focus.green::-webkit-slider-runnable-track {
  background: #DDF5E4;
}

input[type=range].green::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #DDF5E4;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].green::-moz-range-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
}

input[type=range].green::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].green::-ms-fill-lower {
  background: #DDF5E4;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].green::-ms-fill-upper {
  background: #DDF5E4;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].green::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
}

input[type=range].green:focus::-ms-fill-lower {
  background: #DDF5E4;
}

input[type=range].green:focus::-ms-fill-upper {
  background: #DDF5E4;
}

input[type=range].blue {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range].blue::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #E6EAFF;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].blue::-webkit-slider-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #5F75E9;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11.5px;
}

input[type=range]:focus.blue::-webkit-slider-runnable-track {
  background: #E6EAFF;
}

input[type=range].blue::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #E6EAFF;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].blue::-moz-range-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #5F75E9;
  cursor: pointer;
}

input[type=range].blue::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].blue::-ms-fill-lower {
  background: #E6EAFF;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].blue::-ms-fill-upper {
  background: #E6EAFF;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].blue::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #5F75E9;
  cursor: pointer;
}

input[type=range].blue:focus::-ms-fill-lower {
  background: #E6EAFF;
}

input[type=range].blue:focus::-ms-fill-upper {
  background: #E6EAFF;
}

input[type=range].light-position {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range].light-position::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #DDDDE4;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].light-position::-webkit-slider-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11.5px;
}

input[type=range]:focus.light-position::-webkit-slider-runnable-track {
  background: #DDDDE4;
}

input[type=range].light-position::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: #DDDDE4;
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].light-position::-moz-range-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
}

input[type=range].light-position::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].light-position::-ms-fill-lower {
  background: #DDDDE4;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].light-position::-ms-fill-upper {
  background: #DDDDE4;
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].light-position::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
}

input[type=range].light-position:focus::-ms-fill-lower {
  background: #DDDDE4;
}

input[type=range].light-position:focus::-ms-fill-upper {
  background: #DDDDE4;
}

input[type=range].brightness {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type=range].brightness::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].brightness::-webkit-slider-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11.5px;
}

input[type=range]:focus.brightness::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
}

input[type=range].brightness::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #FFFFFF;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
  border-radius: 50px;
  border: 0px solid #268BFF;
}

input[type=range].brightness::-moz-range-thumb {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
}

input[type=range].brightness::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].brightness::-ms-fill-lower {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].brightness::-ms-fill-upper {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
  border: 0px solid #268BFF;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #FFFFFF;
}

input[type=range].brightness::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  height: 28px;
  width: 28px;
  border-radius: 13px;
  background: #1CC248;
  cursor: pointer;
}

input[type=range].brightness:focus::-ms-fill-lower {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
}

input[type=range].brightness:focus::-ms-fill-upper {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(120, 120, 120, 1) 100%);
}

#main-header {
  padding-bottom: 10px;
  width: 100%;
  max-width: 350px;
  position: relative;
}

#main-header #delete {
  color: var(--primary-color);
  cursor: pointer;
}

.toggle-control {
  display: flex;
  gap: 8px;
}

.toggle-control .toggle-switch {
  transition: background-color 0.3s ease;
  width: 40px;
  height: 24px;
  border-radius: 20px;
}

.toggle-control .toggle-switch.on {
  background-color: var(--primary-color);
}

.toggle-control .toggle-switch.off {
  background-color: #D5D5D5;
}

.toggle-control .toggle-switch.on .toggle-knob {
  transform: translate(90%, 10%);
}

.toggle-control .toggle-switch.off .toggle-knob {
  transform: translate(10%, 10%);
}

.toggle-control .toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-28 {
  gap: 28px;
}

.rounded-12 {
  border-radius: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.width-400 {
  width: 400px;
}

#light-depth-slider {
  transform: rotateX(180deg) rotateZ(180deg);
}

#main {
  flex-direction: column;
}

#preview img {
  max-width: 100%
}

#templates-colors {
  display: flex;
  gap: 10px;
}

.column-portrait {
  display: flex;
  flex-direction: row;
}

@media (orientation: portrait) {
  .canvas-container {
    align-self: center;
  }

  .column-portrait {
    flex-direction: column;
  }

  #main-header {
    max-width: 100%;
  }
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 44px;
}

.select-selected {
    background-color: white;
    border: 1px solid var(--Divider-Dark);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-items {
  position: relative;
  background-color: white;
  border: 0px solid lightgray;
  border-radius: 8px;
  width: 100%;
  z-index: 99;
  display: none;
  box-shadow: 0px 4px 10px 1px #0000000D;
  top: -20px;
}

.select-items div {
    margin: 8px;
    border-radius: 6px;
    height: 37px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-items div:hover {
    background-color: #FAFAFA;
}

span.check {
  width: 20px;
  display: flex;
  justify-content: center;
}

.credits {
    color: #BCBCBC;
    display: inline-block;
    margin-left: 5px;
}

.select-arrow-up svg {
  transform: rotate(180deg);
}

#plans {
  gap: 32px;
}

#plans h2 {
  padding-bottom: 0px;
}

@media screen and (max-width: 970px) {
  #landing {
    gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  #canvas-container {
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  #canvas-container {
    flex-direction: row;
  }
}

@media (orientation: landscape) {
  #canvas-container {
    flex-direction: column;
  }
}