:root {
  --c1: #6f69c7;
  --c2: #3daab3;
  --c3: #AAAAAA;
  --w: #fff;
  --br: 15px;
  --brb: 40px;
  --brm: 6px;
  --bo: #ffffff12;
}

.Typewriter_page {
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 6rem auto 0;
  font-size: 5rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}

#typewriter-text_page {
  display: flex;
  text-shadow: 0px 10px 15px #0000006b;
  flex-wrap: wrap;
  justify-content: center;
}

.gradient-text_page {
  background-image: linear-gradient(270.03deg, #5b68df .71%, #73e0a9 99.82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 1rem;
  filter: drop-shadow(0px 4px 5px);
  color: #0000005c;
  text-shadow: none !important;
}

.Typewriter__cursor_page {
  -webkit-animation: Typewriter-cursor 1s infinite;
  animation: Typewriter-cursor 1s infinite;
  margin-left: 1px;
}

@-webkit-keyframes Typewriter-cursor {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes Typewriter-cursor {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .Typewriter_page {
    max-width: 250px;
    font-size: 2rem;
    line-height: normal;
  }
}

.containerWheel select {
  /* styling */
  background-color: white;
  border-radius: 4px;
  display: inline-block;

  /* reset */

  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.containerWheel select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, white 50%), 
  linear-gradient(135deg, white 50%, transparent 50%), 
  linear-gradient(to right, #fff0, #ccc3);
  background-position: 
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - 10px) calc(1em + 2px),
        calc(100% - 28px) 7px;
    background-size: 5px 5px,
5px 5px,
1px 1.5em;
    background-repeat: no-repeat;
}

.containerWheel select.minimal:focus {
  background-image:
    linear-gradient(45deg, var(--c1) 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, var(--c1) 50%),
    linear-gradient(to right, #ccc3, #ccc3);
  background-position:
  calc(100% - 10px) 1em,
  calc(100% - 15px) 1em,
  calc(100% - 28px) 7px;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: var(--c1);
  outline: 0;
}
.containerWheel select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
#BoxConfig input:focus {
  border: 1px solid var(--c1);
}
.containerWheel input[type=range] {
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  width: 100%;
}
.containerWheel input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.5em;
  height: 1.5em;
  margin-top: 3px;
  background-color: var(--c1);
  border-radius: 1em;
  cursor: pointer;
}
.containerWheel input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
  height: 1em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.containerWheel input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.containerWheel input[role=switch] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  width: 2.4em;
  height: 1.4em;
  box-sizing: content-box;
  padding: 0;
  border: none;
  border-radius: .7em;
  background: rgba(160,160,160,0.7);
  box-shadow: 0 .15em .25em rgba(0,0,0,0.5) inset, 0 -.5px 0 rgba(255,255,255,0.2) inset;
  transition: background-color 250ms ease, box-shadow 250ms ease;
  font-size: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  user-select: none;
  outline: none;
  cursor: pointer;
  border: 1px solid transparent;

  &:hover {
    border: 1px solid var(--bo);
  }
}
.containerWheel input[role=switch]::before {
  content: '';
  display: flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  top: 0;
  background: rgba(240,240,240,0.9);
  box-shadow: 0 1px 1px #fff inset, 0 .2em .5em rgba(255,255,255,0.7) inset, 0 -.2em .3em rgba(0,0,0,0.2) inset, 0 .05em .25em rgba(0,0,0,0.7);
  border-radius: 50%;
  transform: translate(20%, 20%);
  transition: transform 250ms ease;
  clip-path: none;
  color: rgba(0,0,0,0.3);
  line-height: 1;
}
.containerWheel input[role=switch]:focus::before {
  background: rgba(255,255,255,0.9);
}
.containerWheel input[role=switch]:checked {
  background-color: var(--bg-checked, var(--bg, var(--c1)));
}
.containerWheel input[role=switch]:focus-visible {
  box-shadow: 0 .15em .25em rgba(0,0,0,0.5) inset, 0 -.5px 0 rgba(255,255,255,0.2) inset, 0 0 0 2px rgba(255,255,255,0.8), 0 0 0 4px var(--bg-checked, var(--bg, rgb(60,130,250)));
}
.containerWheel input[role=switch]:checked::before {
  right: 5px;
  left: auto;
}
.containerWheel input[role=switch]:indeterminate::before {
  transform: translate(70%, 20%);
  content: '-';
}
.containerWheel input[role=switch]:disabled:before {
  opacity: 0.4;
}
#codeWheel {
  margin: 0 0 4rem;
  z-index: 2;
}
.titleOption {
  display: flex;
  width: 100%;
  margin: .3rem;
  padding: 0;
  font-weight: 400;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.optionOpen .titleOption {
  margin: 5px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--bo);
}
.optionConfig {
  display: flex;
  height: 0;
  opacity: 0;
  flex-wrap: wrap;
  overflow: hidden;
  transition: opacity 1s ease;
}
.optionOpen .optionConfig {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 1s ease;
}
.optionOpen .optionInsert{
  border: 1px solid #ffffff3d;
}
.colorSwap.option-color {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  position: relative;
  width: 20px;
  height: 20px;
  min-width: auto;
  margin: 0 15px 0 0;
  padding: 0;
  border: none;
  cursor: pointer;
}
::-webkit-color-swatch {
  border: 0;
  border-radius: var(--br);
}
.colorSwap::-moz-color-swatch {
  border-radius: var(--br);
}
input[type="color" i]::-webkit-color-swatch-wrapper {
  padding: 0px;
}
.containerWheel {
  display: flex;
  width: 100%;
  margin: 0 auto 6rem;
  padding: 0 15px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.boxWheel {
  display: flex;
  width: 100%;
  margin: 7rem 0;
  align-items: flex-start;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
#BoxConfig {
  width: 100%;
  max-width: 900px;
}
.descriptionWheel {
  display: none;
  width: 100%;
  margin-bottom: 6rem;
  padding: 5rem 0 0;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.descriptionWheel h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  color: #fff;
  line-height: 1.1;
}
.blockConfig {
  columns: 2;
}
.configuracao:nth-child(1) {  
  margin-top: 0;
  aspect-ratio: 1 / 1;
}
.configuracao:nth-child(2) {
  position: relative;
  aspect-ratio: 7 / 1;
}
.configuracao:nth-child(3) {
  aspect-ratio: 3 / 1;
}
.configuracao {
  background: #45434f;
  display: flex;
  width: 100%;
  margin: 20px 0;
  padding: 15px;
  border: 1px solid var(--bo);
  border-radius: var(--br);
  flex-direction: column;
  justify-content: flex-start;
  break-inside: avoid;
  box-shadow: 0 0 15px -4px black;
  transition: all 1s ease 0s;
}
.configuracao select {
  background: none;
  display: flex;
  margin: 3px;
  padding: 10px 35px 9px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bo);
  border-radius: var(--brb);
  align-items: center;
}
.configuracao select option {
  color: black;
}
.configuracao fieldset {
  width: 100%;
  margin: 1rem 0 0;
  padding: 5px 10px;
  border: 1px solid var(--bo);
  border-radius: var(--br);
}
.configuracao fieldset legend {
  display: flex;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 500;
  align-items: center;
}
.configuracao fieldset legend span {
  margin-left: 6px;
  font-size: 12px;
  color: var(--c6);
}
.configuracao fieldset figcaption {
  margin: 5px 0;
  font-size: 13px;
  color: #ffffff6e;
}
#configDraw {
  display: flex;
}
#configDraw span {
    display: flex;
    max-width: 50%;
    margin: 10px;
    flex-direction: column;
}
#configDraw span label {
  margin: 3px 10px 0 0;
  padding: 0 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c2);
}
.fieldsetSection {
  display: flex;
}
.fieldsetSection span {
  width: 100% !important;
  align-items: center;
}
.fieldsetSection fieldset {
  text-align: center;
  align-items: center;
}
.fieldsetSection fieldset legend {
  text-align: center;
}
.fieldsetSection fieldset:first-child {
  margin: 0 5px 12px 0;
}
.fieldsetSection fieldset:last-child {
  margin: 0 0 12px 5px;
}
.configuracao .h2 {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 18px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--bo);
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  color: var(--w);
  align-items: center;
}
.boxw2 .h2 {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.boxw2 .iconFa {
  position: absolute;
  right: -5px;
  top: 6px;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 15px;  
}
.configOpenBox.boxw2 .h2 {
  margin: 0 0 18px;
  padding: 0 0 15px;
  border-bottom: 2px solid var(--bo);
  border-style: dashed;
}
.configuracao.boxw2:not(.configOpenBox):hover {
  background: var(--c1);
}
#configCloseBox.hidden {
  display: flex;
  height: 0;
  opacity: 0;
  flex-wrap: wrap;
  overflow: hidden;
  transition: opacity 1s ease;
}
.boxw2.configOpenBox #configCloseBox {
  height: auto;
  opacity: 1;
  transition: opacity 1s ease;
}
.configuracao .h2 p {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff7d;
}
.configuracao .h2 i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  margin-right: .5rem;
  border: 1px solid var(--bo);
  font-size: 14px;
  border-radius: var(--brb);
  align-items: center;
  justify-content: center;
}
#configForm {
  width: 100%;
}
#optionsContainer {
  margin: 0 0 1rem;
}
.priceWhell {
  display: flex;
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #66cb85;
  align-items: center;
}
.priceWhell svg {
  margin-right: 7px;
}
#priceCompare {
  display: flex;
  flex-direction: column;
}
select.option-type-selector {
  border: 1px solid var(--bo);
}
.optionInsert {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  padding: 5px;
  border: 1px solid var(--bo);
  border-radius: var(--br);
  transition: all 1s ease 0s;
  flex-wrap: wrap;

  &:hover {
    background: rgba(255, 255, 255, 0.048);
    transition: all 1s ease 0s;
  }
}
.optionInsert span {
  display: inline-flex;
  width: 50%;
  margin: 5px 0 0;
  flex-direction: column;
}
.optionConfig .hideTitle {
  display: none;
}
.optionInsert span label {
  position: relative;
  margin: 3px 10px 0 0;
  padding: 0 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}
::placeholder {
  color: #ffffff59;
}
.optionInsert input {
  background: none;
  min-width: 100px;
  margin: 3px;
  padding: 10px;
  color: white;
  border: 1px solid var(--bo);
  border-radius: var(--brb);
  box-shadow: 0 0 10px -5px #00000087 inset;
}
#couponCode, #imageUrl, #girarTextInput, #orderPlays, #imgPopup, .boxw2 input, .orderSelectPopup input {
  background: none;
  margin: 3px 0;
  padding: 10px;
  color: white;
  border: 1px solid var(--bo);
  border-radius: var(--br);
  box-shadow: 0 0 10px -5px #00000087 inset;
}
.option-color {
  background: none;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.boxw2 fieldset {
  display: flex;
  width: 100%;
  margin-bottom: .8rem;
  flex-wrap: wrap;
}
#imgPopup {
  width: 100%;
}
.boxw2 textarea {
  background: none;
  width: 100%;
  margin: 3px 0;
  padding: 10px;
  font-size: 13px;
  color: white;
  border: 1px solid var(--bo);
  border-radius: 10px;
  box-shadow: 0 0 10px -5px #00000087 inset;
}
input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    position: relative;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    cursor: pointer;
}
.boxw2 fieldset input {
  margin: 3px;
}
.boxw2 fieldset span {
  display: inline-flex;
  width: 50%;
  margin: 5px 0 0;
  flex-direction: column;
}
.boxw2 span label {
  margin: 3px 10px 0 0;
  padding: 0 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c2);
}
#btnConfigPopup, #btnConfigFailPopup {
  background: var(--c1);
  position: relative;
  display: flex;
  width: 100%;
  padding: 10px 15px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-radius: var(--brb);
  text-align: center;
  justify-content: center;
  align-items: center;
}
.testPopup {
  display: flex;
  flex-wrap: wrap;
}
.testPopup a {
  margin: 5px;
}
.removeBtn {
  background: #00000017;
  position: relative;
  right: 6px;
  display: flex;
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 10px;
  color: #ffffff;
  cursor: pointer;
  border: 1px #c9c9c942;
  border-style: solid;
  border-radius: var(--brb);
  justify-content: center;
  align-items: center;

  &:hover {
    border: 1px red;
    border-style: ridge;
  }
}
#blockBtn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-button {
  background: radial-gradient(#494653 0%, transparent 70%) no-repeat;
  background-position: 100% -2rem;
  position: relative;
  display: flex;
  width: 100%;
  margin: -7px auto 0;
  padding-top: 7px;
  font-size: 2rem;
  color: #fff;
  border: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  transition: all 1s ease;
  flex-direction: column;
  border-radius: var(--br);
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, #00000000 0%, #ffffff6b, #00000000 100%) 100% 0;
  box-shadow: 0px -20px 40px -28px black;

  &:hover svg {
    transform: rotate(360deg) translateY(-23px);
    color: rgb(255, 255, 255);
    background: #895fdb7d;
    border-radius: var(--br);
    transition: all 1s ease 0s;
    box-shadow: 0 0 15px -2px var(--c1);
  }

  &:hover span {
    transform: translateY(-23px);
    transition: all 1s ease;
  }

  &:hover {
    border-image: linear-gradient(to right, #00000000 0%, var(--c1), #00000000 100%) 100% 0;
  }
}
.add-button svg {
  border-radius: 5px;
  transition: all 1s ease;
}
.add-button span {
  margin-top: 4px;
  font-size: 15px;
  transition: all 1s ease;
}
.orderSelect {
  display: flex;
  margin: 1rem 0 0;
  flex-direction: column;
}
.orderSelect p {
  font-size: 14px;
  color: #ffffff7d;
}
.orderSelectPopup {
  display: flex;
  margin: 1rem 0 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.orderSelectPopup span {
  display: flex;
  max-width: 45%;
  margin: 0 5px;
  flex-direction: column;
}
.orderSelectPopup span label {
  margin: 3px 10px 0 0;
  padding: 0 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c2);  
}
.download-button {
  background: var(--c1);
  position: relative;
  width: 100%;
  margin: 5px;
  padding: 10px 15px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--c1);
  border-radius: var(--brb);
}
.alertWhell {
  margin: 1rem auto 0;
  font-size: 15px;
  font-weight: 300;
  color: #ffffff7d;
}
.gradient-config {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#colorPickers {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  font-size: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.colorOption {
  display: flex;
}
.pickr {
  margin: 10px 5px;
}
button.pcr-button {
    border: 2px solid white;
    border-radius: 100% !important;
    overflow: hidden;
}
.logoBtn {
  display: flex;
  margin: 1rem 0 0;
  flex-direction: column;
  align-items: flex-start;
}
.boxButton {
  display: flex;
  flex-wrap: wrap;
}
.boxButton span {
  display: flex;
  margin: 10px;
  flex-direction: column;
  align-items: flex-start;
}
.boxButton span label {
  margin: 3px 10px 0 0;
  padding: 0 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c2);
}
#imageUrl, #girarTextInput {
  background: none;
  display: none;
  width: 100%;
  margin-bottom: 1rem;
}
.tooltip {
  display: none;
  position: absolute;
  top: -8px;
  left: 79px;
  background: var(--c1);
  padding: 5px 10px;
  font-size: 10px;
  border-radius: var(--brm);
  z-index: 10;
}
.containerWheel .video_section {
  background: none;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 800px;
  margin: 5rem 0 0;
  border: 1px solid var(--c1);
  border-radius: var(--br);
  box-shadow: 0 0 25px -8px black;
}
.containerWheel iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--br);
}
@media screen and (max-width: 1100px) {
.containerWheel {
  width: 100%;
  margin: 0;
}
#codeWheel {
  margin: 3rem 0 0;
}
#BoxConfig {
  max-width: 100%;
  margin-top: 2rem;
}
.blockConfig {
  columns: 1;
}
.configuracao:nth-child(1) {
  margin: 0;
}
  .boxw {
    max-width: 100%;
    margin: 1rem 0;
  }
  .descriptionWheel {
    background-position: 100% -6rem;
    margin: 0;
    padding: 3rem 0 0;
    box-shadow: 0 0 0;
}  
}
@media screen and (max-width: 500px) {
  .descriptionWheel h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}  
.descriptionWheel h2 {
  font-size: 1.5rem;
}  
.boxWheel {
  margin: 2rem 0;
}
}