* {
  box-sizing: border-box;
}

:root {
  --color_gray_black: rgb(75, 75, 75);
  --color_gray_white: rgb(87, 87, 87);
  --color_default: rgb(47 182 119); /*rgb(178, 47, 182)*/
}

body {
  background: rgb(58, 58, 58);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: rgb(128, 128, 128);
}


#box_iframe {
  margin: 4px;
  height: 1000px;
}


#container_body {
  height: 100%;
  width: 95%;
  border: 1px solid var(--color_default);
  border-bottom: 5px solid var(--color_default);
  border-radius: 10px;
  margin: auto;
  position: relative;
  word-wrap: break-word;
  overflow: hidden;
}

/* width */
#container_body::-webkit-scrollbar {
  width: 7px;
}

/* Track */
#container_body::-webkit-scrollbar-track {
  border-radius: 10px;
}
 
/* Handle */
#container_body::-webkit-scrollbar-thumb {
  background: var(--color_default);
  border-radius: 10px;
}


#boxFormAuth {
    width: 90%;
    max-width: 550px;
    margin: auto;
    padding: 20px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 10px;
    background: white;
    display: none;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: fixed;
  }

  

 #boxFormAuth button:hover {
    opacity: 0.75;
    cursor: pointer;
  }

  .center {
    text-align: center;
  }
  
  
  h3 {
    font-weight: normal;
  }
  
  #nameCustomer {
    display: none;
    width: 80%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
  }
  
  #email {
    width: 80%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
  }
  
  #password {
    width: 100%;
    padding: 10px 50px 10px 10px;
    font-size: 1rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
  }
  
  #div_password_wrapper {
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 80%;
  }
  
  #user_email_noVerified {
    color: white;
    font-size: 1.4rem;
    margin: 50px;
  }

  #button_verification_email {
    font-size: 1rem;
    color: white;
    padding: 15px;
    margin: 5px;
    border-radius: 10px;
    background: rgb(89, 207, 89);
    border-top: 1px solid rgb(77, 77, 77);
    border-left: 1px solid rgb(77, 77, 77);
    border-right: 1px solid rgb(77, 77, 77);
    border-bottom: 5px solid rgb(77, 77, 77);
    box-shadow: 3px 3px 9px 7px rgb(110, 110, 110);
    outline: none;
    cursor: pointer;
  }

  #button_verification_email:hover {
    background: lightgreen;
  }

  #button_verification_email:active {
    border-bottom: 1px solid black !important;
    margin-top: 10px;
  }
  
  .span_eyes_password {
    display: flex;
    z-index: 11;
    position: absolute;
    right: 18px;
  }
  
  .SVG_EYES {
    cursor: pointer;
  }
  
  #authForm input:focus {
    outline: 3px solid rgb(174, 220, 243);
    border: 1px solid rgb(95, 177, 231);
  }
  
  #authForm input {
    margin-bottom: 5px;
    margin-top: 5px;
  }
  
  #submitAuthForm {
    width: 80%;
    font-size: 1rem;
    color: white;
    padding: 10px;
    margin: 4px;
    border-radius: 20px;
    background: var(--color_gray_white);
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 5px solid black;
    outline: none;
    cursor: pointer;
  }
  
  #submitAuthForm:hover {
    opacity: 0.75;
  }

  #submitAuthForm:active {
    border-bottom: 1px solid black !important;
    margin-top: 9px;
  }
  
  
  .alternative {
    background-color: rgb(114, 114, 117);
    color: white;
    width: calc(50%);
    padding: 4px;
    margin: 4px;
    border-radius: 8px;
    border: none;
    outline: none;
  }



  .logout-button {
    background-color: #e74c3c;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    border-left: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 0px 5px 5px 0px;
    float: right;
    outline-style: none;
  }

  .auto_height_width_popup {/*sweetAlert2 popUp*/
    height: auto !important;
    width: auto !important;
    min-width: 50% !important;
  }

  #button_tutorial {
    background-color: rgb(90, 211, 90);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    top: 10px;
    border-radius: 5px 0px 0px 5px;
    float: right;
    outline-style: none;
    animation: pulse 1.5s infinite;
  }


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgb(90, 211, 90);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgb(90, 211, 90);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgb(90, 211, 90);
    }
}

  .inputs_design_default {
    width: 30%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1rem;
    border-radius: 30px;
    border: 1px solid gray;
    outline: none;
  }

  .inputs_design_default:focus {
    border: 2px solid lightblue;
  }

  #welcome {
    color: white;
    float: left;
    font-size: .9rem;
  }


  .forEachUserPremium {
    display: none;
    margin-left: auto;
    margin-right: auto;
  }

  #h3_title_container {
    color: white;
  }


  #input_url_clone {
    width: 80%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 30px;
    border: 1px solid gray;
    outline: none;
  }

  #button_buy {
    cursor: pointer;
    background: yellow;
    font-family: 'Circular', 'Arial', sans-serif;
    border: 1px solid black;
    outline-style: none;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
  }

  .forEachUserFree {
    display: none;
  }

  
  .inputs_href {
    width: 80%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1rem;
    border-radius: 30px;
    border: 1px solid gray;
    outline: none;
  }

  .linkHref {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .button_submit_form1 {
    cursor: pointer;
    padding: 7px;
    font-size: 1rem;
    border-radius: 5px;
    background: var(--color_default);
    border: none;
    color: #f1f1f1;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin: 8px;
  }


  .button_submit_form2 {
    cursor: pointer;
    padding: 7px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin: 8px;
    background: lightgreen;
    color:black; 
    margin-bottom: 20px;
    box-shadow: 2px 4px  0px rgb(59, 182, 90);
  }

  .button_submit_form2:active {
    box-shadow: 1px 1px  0px rgb(59, 182, 90);
    margin-top: 11px;
    margin-bottom: 17px;
  }




  .buttonsCopyAndDownloadHTML {
    cursor: pointer;
    padding: 7px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin: 8px;
    background: lightgreen;
    color:black; 
    margin-bottom: 20px;
    box-shadow: 2px 4px  0px rgb(59, 182, 90);
  }





  .loading_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: transparent;
    overflow: hidden;
    display: none;
  }

  .div_wrapper_urls {
    margin: 50px;
    border: 1px solid var(--color_default);
    border-radius: 30px;
  }
  
  .loading_progress {
    box-shadow: 2px 4px 7px 2px var(--color_default);
    width: 100%;
    height: 3px;
    background-color: var(--color_default);
    animation: loadingAnimation 2s linear infinite;
  }


  #div_wrapper_form2_page {
    display: none;
  }
  
  @keyframes loadingAnimation {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }


  .tooltip {
    position: relative;
    
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
   /* width: 150px;*/
    background-color: var(--color_gray_black);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 99999999999;
    bottom: 120%;
    left: 50%;
    margin-left: -20px;
    font-size: 0.8rem;
    opacity: .95;
    border: 1px solid rgb(37, 37, 37);
    font-weight: 500 !important;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(37, 37, 37) transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }


  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    margin-top: 10px;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



#div_box_powerToggles {
  margin: 30px;
  border: 1px solid var(--color_default);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


.div_wrapper_powerToggles {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: left;
}

/*início toggle*/

.switch {
  position: relative;
  display: inline-block;
  width: 36px; /* Diminua o valor para reduzir a largura */
  height: 19.8px; /* Diminua o valor para reduzir a altura */
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 19.8px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15.8px;
  width: 15.8px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color_default);
}

input:focus + .slider {
  box-shadow: 0 0 2px var(--color_default);
}

input:checked + .slider:before {
  -webkit-transform: translateX(15.8px);
  -ms-transform: translateX(15.8px);
  transform: translateX(15.8px);
}


.slider.round {
  border-radius: 19.8px;
}

.slider.round:before {
  border-radius: 50%;
}

/*fim toggle*/
 
  

  
  
  