
.input[type = "text"] {
    display: block;
    color: #ffffff;
    background: linear-gradient(142.99deg, #2c2c2ca1 15.53%, #2c2c2ca1 88.19%);
    box-shadow: 0px 12px 24px -1px rgba(206, 206, 206, 0.18);
    border-color: rgba(7, 4, 14, 0);
    border-radius: 25px;
    block-size: 20px;
    margin: 7px auto;
    border: 2px solid #7868fa;
    padding: 18px 15px;
    outline: none;
    text-align: left;
    width: 200px;
    transition: 0.5s;
   
    
  }

  ::placeholder {
    color: rgb(92, 92, 92);
    opacity: 1; 
  }
  
  .input[type = "text"]:hover {
    width: 1240px;
  }
  
  .input[type = "text"]:focus {
    width: 1240px;
   
  }
  .input:active {
    box-shadow: 2px 2px 25px #7868fa inset;
  }
  
  
  

  .input2[type = "text"] {
    display: block;
    color: #ffffff;
    background: linear-gradient(142.99deg, #2c2c2ca1 15.53%, #2c2c2ca1 88.19%);
    box-shadow: 0px 12px 24px -1px rgba(206, 206, 206, 0.18);
    border-color: rgba(7, 4, 14, 0);
    border-radius: 25px;
    block-size: 20px;
    margin: 7px auto;
    border: 2px solid #7868fa;
    padding: 18px 15px;
    outline: none;
    text-align: left;
    width: 200px;
    transition: 0.5s;
   
    
  }

  ::placeholder {
    color: rgb(92, 92, 92);
    opacity: 1; /* Firefox */
  }
  
  .input2[type = "text"]:hover {
    width: 1240px;
  }
  
  .input2[type = "text"]:focus {
    width: 1240px;
    
  }
  .input2:active {
    box-shadow: 2px 2px 25px #7868fa inset;
  }
  
  









  
  
  
  .button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7868fa;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px #7868fa;
    cursor: pointer;
    transition-duration: .3s;
    overflow: hidden;
    position: relative;
  }
  
  .svgIcon {
    width: 12px;
    transition-duration: .3s;
  }
  
  .svgIcon path {
    fill: white;
  }
  
  .button:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: .3s;
    background-color: #7868fa;
    align-items: center;
  }
  
  .button:hover .svgIcon {
    width: 50px;
    transition-duration: .3s;
    transform: translateY(60%);
  }
  
  .button::before {
    position: absolute;
    top: -20px;
    content: "Copied";
    color: white;
    transition-duration: .3s;
    font-size: 2px;
  }
  
  .button:hover::before {
    font-size: 13px;
    opacity: 1;
    transform: translateY(30px);
    transition-duration: .3s;
  }
  
  
  
  
  
  
  .button2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7868fa;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px #7868fa;
    cursor: pointer;
    transition-duration: .3s;
    overflow: hidden;
    position: relative;
  }
  
  .svgIcon {
    width: 12px;
    transition-duration: .3s;
  }
  
  .svgIcon path {
    fill: white;
  }
  
  .button2:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: .3s;
    background-color: #7868fa;
    align-items: center;
  }
  
  
  .button2:hover .svgIcon {
    width: 50px;
    transition-duration: .3s;
    transform: translateY(60%);
  }
  
  .button2::before {
    position: absolute;
    top: -20px;
    content: "Clear";
    color: white;
    transition-duration: .3s;
    font-size: 2px;
  }
  
  .button2:hover::before {
    font-size: 13px;
    opacity: 1;
    transform: translateY(30px);
    transition-duration: .3s;
  }
  
  
  
  
  
  
  
    .gradient-border-pseudo {
    position: relative;
    padding: 1px 1px;
    background: #7868fa;
    margin: 0px;
    border-radius: 4px;
  }
  
  .gradient-border-pseudo::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background-image: linear-gradient(95deg, #ffffff, #7868fa);
  }
  
  
  .module {
      max-width: 1250px;
      padding: 1rem;
      color: white;
      border-width: 2px;
      border-style: solid;
      border-image: 
        linear-gradient(
          to bottom, 
          #7868fa, 
          #ffffff
        ) 1 100%;
    }





/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}




.button3 {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    width: 150px;
    height: 50px;
    background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
    border-radius: 30px;
    border: 1px solid #8F9092;
    transition: all 0.2s ease;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #606060;
    text-shadow: 0 1px #fff;
  }
  
  .button3:hover {
    box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;
  }
  
  .button3:active {
    box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
  }
  
  .button3:focus {
    box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
  }
  
  
  


 
  
  .noto-sans-sinhala {
    font-family: "Noto Sans Sinhala", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100px;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }


  * This is an example, feel free to delete this code */
.tooltip-container {
  position: relative;
  background-color: #7868fa;
  background-image: linear-gradient(
    #7868fa,
    #7868fa 0%,
    #7868fa 50%,
    #7868fa 100%
  );
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  /*padding: 0.7em 1.8em;*/
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.tooltip-container .borde-back {
  width: 60px;
  height: 60px;
  background-color: #7868fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: none;
}

.tooltip-container .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color: #7868fa;
  background-image: linear-gradient(
    #fff,
    #7868fa 0%,
    #7868fa 50%,
    #7868fa 100%
  );
  cursor: pointer;
}

.tooltip {
  position: absolute;
  top: -2;
  left: -45px; /* Altere a posição inicial para a esquerda, fora da tela */
  transform: translateX(
    -32%
  ); /* Usando translateX para controlar a transição da esquerda para a direita */
  width: 160px;
  height: 52px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s;
  border-radius: 50px;
  background-color: #fff;
  background-image: linear-gradient(
    #7868fa,
    #7868fa 0%,
    #7868fa 50%,
    #7868fa 100%
  );
  display: flex;
  align-items: center;
  justify-content: right;
  padding-right: 16px;
  color: #fff;
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 800px;
}

.tooltip::before {
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  right: -0.2em; /* Mude para a direita */
  top: 50%; /* Altere o topo para o meio da tooltip */
  transform: translateY(-50%) rotate(45deg); /* Use translateY para centralizar verticalmente */
  background: var(--background);
}

.tooltip-container:hover .tooltip {
  left: 100%; /* Altere para a posição desejada (a direita) */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: -10;
}
.tooltip-container:hover {
  transform: translateX(-50px);
  transition: 0.5s linear;
}



/* === removing default button style ===*/
.buttoncopy {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* button styling */
.buttoncopy {
  --border-right: 6px;
  --text-stroke-color: rgba(255,255,255,0.6);
  --animation-color: #7337ff;
  --fs-size: 2em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Arial";
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}
/* this is the text, when you hover on button */
.hoverd-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}
/* hover */
.buttoncopy:hover .hoverd-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color))
}



.buttonconvert {
  --😀: #644dff;
  --😀😀: #4836bb;
  --😀😀😀: #654dff63;
  cursor: pointer;
  width: 184px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: var(--😀);
  border: 2px solid var(--😀😀);
  border-radius: .75rem;
  box-shadow: 0 8px 0 var(--😀😀);
  transform: skew(-10deg);
  transition: all .1s ease;
  filter: drop-shadow(0 15px 20px var(--😀😀😀));
}

.buttonconvert:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--😀😀😀);
}

.buttonconvert2 {
  --😀: #22222200;
  --😀😀: #4836bb;
  --😀😀😀: #654dff63;
  cursor: pointer;
  width: 184px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: var(--😀);
  border: 2px solid var(--😀😀);
  border-radius: .75rem;
  box-shadow: 0 8px 0 var(--😀😀);
  transform: skew(-10deg);
  transition: all .1s ease;
  filter: drop-shadow(0 15px 20px var(--😀😀😀));
}

.buttonconvert2:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--😀😀😀);
}