.ParagraphUIElements {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px 100px;
    width: 100%;
}

.ParagraphUIElements>p {
    color: var(--Text_1);
    font-family: "RobotoFlex";
    /* -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; */
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    text-justify: inter-word;
    word-wrap: break-word;
}

.ParagraphUIElements>p b {
    font-weight: 800;
}

.ParagraphUIElements>p a {
    color: var(--Text_1);
    font-style: italic;
    font-weight: 300;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .ParagraphUIElements {
        padding: 30px 20px;
    }
}


/* == 1 ======================================================================== */
/* From Uiverse.io by WhiteNervosa */
#UIElements_1 .textInputWrapper {
    margin: 12px 5px;
    position: relative;
    width: 180px;
    --accent-color: #a3e583;
}

#UIElements_1 .textInputWrapper:before {
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

#UIElements_1 .textInputWrapper:before,
#UIElements_1 .textInputWrapper:after {
    bottom: -1px;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 4;
}

#UIElements_1 .textInputWrapper:focus-within:before {
    border-bottom: 1px solid var(--accent-color);
}

#UIElements_1 .textInputWrapper:before {
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

#UIElements_1 .textInputWrapper:focus-within:before {
    border-bottom: 1px solid var(--accent-color);
    transform: scaleX(1);
}

#UIElements_1 .textInputWrapper:focus-within:after {
    border-bottom: 2px solid var(--accent-color);
    transform: scaleX(1);
}

#UIElements_1 .textInputWrapper:after {
    border-bottom: 2px solid var(--accent-color);
    border-bottom-color: var(--accent-color);
    content: "";
    transform: scaleX(0);
    transition: transform 250ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    will-change: transform;
}

#UIElements_1 .textInput::placeholder {
    color: rgba(255, 255, 255, 0.582);
    opacity: 1;
    transition: opacity 250ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    user-select: none;
}

#UIElements_1 .textInputWrapper .textInput {
    background-color: #252525;
    border-bottom: none;
    border-left: none;
    border-radius: 5px 5px 0px 0px;
    border-right: none;
    box-shadow: 0px 2px 5px rgb(35 35 35 / 30%);
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 500;
    max-height: 36px;
    padding: 12px;
    transition-duration: 200ms;
    transition-property: background-color;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

#UIElements_1 .textInputWrapper .textInput:focus,
#UIElements_1 .textInputWrapper .textInput:active {
    outline: none;
}

#UIElements_1 .textInputWrapper:focus-within .textInput,
#UIElements_1 .textInputWrapper .textInput:focus,
#UIElements_1 .textInputWrapper .textInput:active {
    background-color: #353535;
}

#UIElements_1 .textInputWrapper:focus-within .textInput::placeholder {
    opacity: 0;
}

/* == 2 ======================================================================== */
/* From Uiverse.io by Nawsome */ 
/*bg*/
/*txt*/
/*success*/
#UIElements_2 .buttons {
    display: flex;
    justify-content: space-around;
    top: 20px;
    left: 20px;
}

#UIElements_2 .buttons button {
    width: 150px;
    height: 50px;
    background-color: white;
    margin: 20px;
    color: #568fa6;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

#UIElements_2 .buttons button:before, #UIElements_2 .buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

#UIElements_2 .buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

#UIElements_2 .buttons button:after {
    left: 0;
    bottom: 0;
}

#UIElements_2 .buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
}

#UIElements_2 .buttons button span:before, #UIElements_2 .buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

#UIElements_2 .buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

#UIElements_2 .buttons button span:after {
    left: 0;
    bottom: 0;
}

#UIElements_2 .buttons button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
}

#UIElements_2 .buttons button p:before, #UIElements_2 .buttons button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
}

#UIElements_2 .buttons button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
}

#UIElements_2 .buttons button p:after {
    content: attr(data-text);
    top: 150%;
    color: #44d8a4;
}

#UIElements_2 .buttons button:hover:before, #UIElements_2 .buttons button:hover:after {
    width: 100%;
}

#UIElements_2 .buttons button:hover span {
    z-index: 1;
}

#UIElements_2 .buttons button:hover span:before, #UIElements_2 .buttons button:hover span:after {
    height: 100%;
}

#UIElements_2 .buttons button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
}

#UIElements_2 .buttons button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
}

#UIElements_2 .buttons button.start {
    background-color: #44d8a4;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

#UIElements_2 .buttons button.start p:before {
    top: -50%;
    transform: rotate(5deg);
}

#UIElements_2 .buttons button.start p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
}

@keyframes start {
    from {
        top: -50%;
    }
}

#UIElements_2 .buttons button.start:hover:before, #UIElements_2 .buttons button.start:hover:after {
    display: none;
}

#UIElements_2 .buttons button.start:hover span {
    display: none;
}

#UIElements_2 .buttons button:active {
    outline: none;
    border: none;
}

#UIElements_2 .buttons button:focus {
    outline: 0;
}

/* == 3 ======================================================================== */
/* From Uiverse.io by Galahhad */ 
/* tooltip settings 👇 */

#UIElements_3 .copy {
  /* button */
  --button-bg: #353434;
  --button-hover-bg: #464646;
  --button-text-color: #CCCCCC;
  --button-hover-text-color: #8bb9fe;
  --button-border-radius: 10px;
  --button-diameter: 36px;
  --button-outline-width: 1px;
  --button-outline-color: rgb(141, 141, 141);
  /* tooltip */
  --tooltip-bg: #f4f3f3;
  --toolptip-border-radius: 4px;
  --tooltip-font-family: Menlo, Roboto Mono, monospace;
  /* 👆 this field should not be empty */
  --tooltip-font-size: 12px;
  /* 👆 this field should not be empty */
  --tootip-text-color: rgb(50, 50, 50);
  --tooltip-padding-x: 7px;
  --tooltip-padding-y: 7px;
  --tooltip-offset: 8px;
  /* --tooltip-transition-duration: 0.3s; */
  /* 👆 if you need a transition, 
  just remove the comment,
  but I didn't like the transition :| */
}

#UIElements_3 .copy {
  box-sizing: border-box;
  width: var(--button-diameter);
  height: var(--button-diameter);
  border-radius: var(--button-border-radius);
  background-color: var(--button-bg);
  color: var(--button-text-color);
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
}

#UIElements_3 .tooltip {
  position: absolute;
  opacity: 0;
  visibility: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font: var(--tooltip-font-size) var(--tooltip-font-family);
  color: var(--tootip-text-color);
  background: var(--tooltip-bg);
  padding: var(--tooltip-padding-y) var(--tooltip-padding-x);
  border-radius: var(--toolptip-border-radius);
  pointer-events: none;
  transition: all var(--tooltip-transition-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#UIElements_3 .tooltip::before {
  content: attr(data-text-initial);
}

#UIElements_3 .tooltip::after {
  content: "";
  position: absolute;
  bottom: calc(var(--tooltip-padding-y) / 2 * -1);
  width: var(--tooltip-padding-y);
  height: var(--tooltip-padding-y);
  background: inherit;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -999;
  pointer-events: none;
}

#UIElements_3 .copy svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#UIElements_3 .checkmark {
  display: none;
}

/* actions */

#UIElements_3 .copy:hover .tooltip,
#UIElements_3 .copy:focus:not(:focus-visible) .tooltip {
  opacity: 1;
  visibility: visible;
  top: calc((100% + var(--tooltip-offset)) * -1);
}

#UIElements_3 .copy:focus:not(:focus-visible) .tooltip::before {
  content: attr(data-text-end);
}

#UIElements_3 .copy:focus:not(:focus-visible) .clipboard {
  display: none;
}

#UIElements_3 .copy:focus:not(:focus-visible) .checkmark {
  display: block;
}

#UIElements_3 .copy:hover,
#UIElements_3 .copy:focus {
  background-color: var(--button-hover-bg);
}

#UIElements_3 .copy:active {
  outline: var(--button-outline-width) solid var(--button-outline-color);
}

#UIElements_3 .copy:hover svg {
  color: var(--button-hover-text-color);
}

/* == 4 ======================================================================== */
/* From Uiverse.io by Galahhad */ 
#UIElements_4 .ui-bookmark {
  --icon-size: 24px;
  --icon-secondary-color: rgb(77, 77, 77);
  --icon-hover-color: rgb(97, 97, 97);
  --icon-primary-color: gold;
  --icon-circle-border: 1px solid var(--icon-primary-color);
  --icon-circle-size: 35px;
  --icon-anmt-duration: 0.3s;
}

#UIElements_4 .ui-bookmark input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

#UIElements_4 .ui-bookmark .bookmark {
  width: var(--icon-size);
  height: auto;
  fill: var(--icon-secondary-color);
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

#UIElements_4 .bookmark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-box-shadow: 0 30px 0 -4px var(--icon-primary-color),
    30px 0 0 -4px var(--icon-primary-color),
    0 -30px 0 -4px var(--icon-primary-color),
    -30px 0 0 -4px var(--icon-primary-color),
    -22px 22px 0 -4px var(--icon-primary-color),
    -22px -22px 0 -4px var(--icon-primary-color),
    22px -22px 0 -4px var(--icon-primary-color),
    22px 22px 0 -4px var(--icon-primary-color);
  box-shadow: 0 30px 0 -4px var(--icon-primary-color),
    30px 0 0 -4px var(--icon-primary-color),
    0 -30px 0 -4px var(--icon-primary-color),
    -30px 0 0 -4px var(--icon-primary-color),
    -22px 22px 0 -4px var(--icon-primary-color),
    -22px -22px 0 -4px var(--icon-primary-color),
    22px -22px 0 -4px var(--icon-primary-color),
    22px 22px 0 -4px var(--icon-primary-color);
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

#UIElements_4 .bookmark::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: var(--icon-circle-border);
  opacity: 0;
}

/* actions */

#UIElements_4 .ui-bookmark:hover .bookmark {
  fill: var(--icon-hover-color);
}

#UIElements_4 .ui-bookmark input:checked + .bookmark::after {
  -webkit-animation: circles var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation: circles var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  -webkit-animation-delay: var(--icon-anmt-duration);
  animation-delay: var(--icon-anmt-duration);
}

#UIElements_4 .ui-bookmark input:checked + .bookmark {
  fill: var(--icon-primary-color);
  -webkit-animation: bookmark var(--icon-anmt-duration) forwards;
  animation: bookmark var(--icon-anmt-duration) forwards;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#UIElements_4 .ui-bookmark input:checked + .bookmark::before {
  -webkit-animation: circle var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation: circle var(--icon-anmt-duration)
    cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  -webkit-animation-delay: var(--icon-anmt-duration);
  animation-delay: var(--icon-anmt-duration);
}

@-webkit-keyframes bookmark {
  50% {
    -webkit-transform: scaleY(0.6);
    transform: scaleY(0.6);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes bookmark {
  50% {
    -webkit-transform: scaleY(0.6);
    transform: scaleY(0.6);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@-webkit-keyframes circle {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }

  90% {
    width: var(--icon-circle-size);
    height: var(--icon-circle-size);
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes circle {
  from {
    width: 0;
    height: 0;
    opacity: 0;
  }

  90% {
    width: var(--icon-circle-size);
    height: var(--icon-circle-size);
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes circles {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes circles {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
}

/* == 5 ======================================================================== */
/* From Uiverse.io by mrhyddenn */ 
#UIElements_5 button {
  background: #fff;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 120px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
}

#UIElements_5 span {
  display: inline-block;
  transform: skew(21deg);
}

#UIElements_5 button::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: rgb(20, 20, 20);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

#UIElements_5 button:hover {
  color: #fff;
}

#UIElements_5 button:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

/* == 6 ======================================================================== */
/* From Uiverse.io by njesenberger */ 
#UIElements_6 .toggle-container {
  --active-color: #1868e3;
  --inactive-color: #d3d3d6;
  position: relative;
  aspect-ratio: 292 / 142;
  height: 1.875em;
}

#UIElements_6 .toggle-input {
  appearance: none;
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#UIElements_6 .toggle {
  width: 100%;
  height: 100%;
  overflow: visible;
}

#UIElements_6 .toggle-background {
  fill: var(--inactive-color);
  transition: fill .4s;
}

#UIElements_6 .toggle-input:checked + .toggle .toggle-background {
  fill: var(--active-color);
}

#UIElements_6 .toggle-circle-center {
  transform-origin: center;
  transition: transform .6s;
}

#UIElements_6 .toggle-input:checked + .toggle .toggle-circle-center {
  transform: translateX(150px);
}

#UIElements_6 .toggle-circle {
  transform-origin: center;
  transition: transform .45s;
  backface-visibility: hidden;
}

#UIElements_6 .toggle-circle.left {
  transform: scale(1);
}

#UIElements_6 .toggle-input:checked + .toggle .toggle-circle.left {
  transform: scale(0);
}

#UIElements_6 .toggle-circle.right {
  transform: scale(0);
}

#UIElements_6 .toggle-input:checked + .toggle .toggle-circle.right {
  transform: scale(1);
}

#UIElements_6 .toggle-icon {
  transition: fill .4s;
}

#UIElements_6 .toggle-icon.on {
  fill: var(--inactive-color);
}

#UIElements_6 .toggle-input:checked + .toggle .toggle-icon.on {
  fill: #fff;
}

#UIElements_6 .toggle-icon.off {
  fill: #eaeaec;
}

#UIElements_6 .toggle-input:checked + .toggle .toggle-icon.off {
  fill: var(--active-color);
}

/* == 7 ======================================================================== */
/* From Uiverse.io by ClawHack1 */ 
/* Genel stil */
#UIElements_7 .toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  margin: 10px;
}

/* Giriş stil */
#UIElements_7 .toggle-switch .toggle-input {
  display: none;
}

/* Anahtarın stilinin etrafındaki etiketin stil */
#UIElements_7 .toggle-switch .toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 24px;
  background-color: #2196F3;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Anahtarın yuvarlak kısmının stil */
#UIElements_7 .toggle-switch .toggle-label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

/* Anahtarın etkin hale gelmesindeki stil değişiklikleri */
#UIElements_7 .toggle-switch .toggle-input:checked + .toggle-label {
  background-color: #4CAF50;
}

#UIElements_7 .toggle-switch .toggle-input:checked + .toggle-label::before {
  transform: translateX(16px);
}

/* Light tema */
#UIElements_7 .toggle-switch.light .toggle-label {
  background-color: #BEBEBE;
}

#UIElements_7 .toggle-switch.light .toggle-input:checked + .toggle-label {
  background-color: #9B9B9B;
}

#UIElements_7 .toggle-switch.light .toggle-input:checked + .toggle-label::before {
  transform: translateX(6px);
}

/* Dark tema */
#UIElements_7 .toggle-switch.dark .toggle-label {
  background-color: #4B4B4B;
}

#UIElements_7 .toggle-switch.dark .toggle-input:checked + .toggle-label {
  background-color: #717171;
}

#UIElements_7 .toggle-switch.dark .toggle-input:checked + .toggle-label::before {
  transform: translateX(16px);
}

/* == 8 ======================================================================== */
/* From Uiverse.io by ozgeozkaraa01 */ 
#UIElements_8 .group {
  display: flex;
  line-height: 30px;
  align-items: center;
  position: relative;
  max-width: 200px;
}

#UIElements_8 .input {
  width: 100%;
  height: 45px;
  line-height: 30px;
  padding: 0 5rem;
  padding-left: 3rem;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  background-color: #f8fafc;
  color: #0d0c22;
  transition: .5s ease;
}

#UIElements_8 .input::placeholder {
  color: #94a3b8;
}

#UIElements_8 .input:focus, #UIElements_8 input:hover {
  outline: none;
  border-color: rgba(129, 140, 248);
  background-color: #fff;
  box-shadow: 0 0 0 5px rgb(129 140 248 / 30%);
}

#UIElements_8 .icon {
  position: absolute;
  left: 1rem;
  fill: none;
  width: 1rem;
  height: 1rem;
}
/* == 9 ======================================================================== */
/* From Uiverse.io by satyamchaudharydev */ 
/* this button is inspired by -- whatsapp input */
/* == type to see fully interactive and click the close buttom to remove the text  == */

#UIElements_9 .form {
  --input-bg: #FFf;
 /*  background of input */
  --padding: 1.5em;
  --rotate: 80deg;
 /*  rotation degree of input*/
  --gap: 2em;
  /*  gap of items in input */
  --icon-change-color: #15A986;
 /*  when rotating changed icon color */
  --height: 40px;
 /*  height */
  width: 200px;
  padding-inline-end: 1em;
 /*  change this for padding in the end of input */
  background: var(--input-bg);
  position: relative;
  border-radius: 4px;
}

#UIElements_9 .form label {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--height);
}

#UIElements_9 .form input {
  width: 100%;
  padding-inline-start: calc(var(--padding) + var(--gap));
  outline: none;
  background: none;
  border: 0;
}
/* style for both icons -- search,close */
#UIElements_9 .form svg {
  /* display: block; */
  color: #111;
  transition: 0.3s cubic-bezier(.4,0,.2,1);
  position: absolute;
  height: 15px;
}
/* search icon */
#UIElements_9 .icon {
  position: absolute;
  left: var(--padding);
  transition: 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* arrow-icon*/
#UIElements_9 .swap-off {
  transform: rotate(-80deg);
  opacity: 0;
  visibility: hidden;
}
/* close button */
#UIElements_9 .close-btn {
  /* removing default bg of button */
  background: none;
  border: none;
  right: calc(var(--padding) - var(--gap));
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  padding: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
  transform: scale(0);
  visibility: hidden;
}

#UIElements_9 .form input:focus ~ .icon {
  transform: rotate(var(--rotate)) scale(1.3);
}

#UIElements_9 .form input:focus ~ .icon .swap-off {
  opacity: 1;
  transform: rotate(-80deg);
  visibility: visible;
  color: var(--icon-change-color);
}

#UIElements_9 .form input:focus ~ .icon .swap-on {
  opacity: 0;
  visibility: visible;
}

#UIElements_9 .form input:valid ~ .icon {
  transform: scale(1.3) rotate(var(--rotate))
}

#UIElements_9 .form input:valid ~ .icon .swap-off {
  opacity: 1;
  visibility: visible;
  color: var(--icon-change-color);
}

#UIElements_9 .form input:valid ~ .icon .swap-on {
  opacity: 0;
  visibility: visible;
}

#UIElements_9 .form input:valid ~ .close-btn {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: 0s;
}

/* == 10 ======================================================================= */
/* From Uiverse.io by adamgiebl */ 
#UIElements_10 .cyberpunk-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #30cfd0;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

#UIElements_10 .cyberpunk-checkbox:before {
  content: "";
  background-color: #30cfd0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

#UIElements_10 .cyberpunk-checkbox:checked:before {
  transform: translate(-50%, -50%) scale(1);
}

#UIElements_10 .cyberpunk-checkbox-label {
  font-size: 16px;
  font-weight: 300;
  color: #343434;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

/* == 11 ======================================================================= */
/* From Uiverse.io by Voxybuns */ 
#UIElements_11 button {
  /* Variables */
  --button_radius: 0.75em;
  --button_color: #e8e8e8;
  --button_outline_color: #000000;
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
}

#UIElements_11 .button_top {
  display: block;
  box-sizing: border-box;
  border: 2px solid var(--button_outline_color);
  border-radius: var(--button_radius);
  padding: 0.75em 1.5em;
  background: var(--button_color);
  color: var(--button_outline_color);
  transform: translateY(-0.2em);
  transition: transform 0.1s ease;
}

#UIElements_11 button:hover .button_top {
  /* Pull the button upwards when hovered */
  transform: translateY(-0.33em);
}

#UIElements_11 button:active .button_top {
  /* Push the button downwards when pressed */
  transform: translateY(0);
}

/* == 12 ======================================================================= */
/* From Uiverse.io by Creatlydev */ 
#UIElements_12 .button {
  text-decoration: none;
  line-height: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 10px 10px 20px rgba(0,0,0,.05);
  background-color: #fff;
  color: #121212;
  border: none;
  cursor: pointer;
}

#UIElements_12 .button-decor {
  position: absolute;
  inset: 0;
  background-color: var(--clr);
  transform: translateX(-100%);
  transition: transform .3s;
  z-index: 0;
}

#UIElements_12 .button-content {
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

#UIElements_12 .button__icon {
  width: 48px;
  height: 40px;
  background-color: var(--clr);
  display: grid;
  place-items: center;
}

#UIElements_12 .button__text {
  display: inline-block;
  transition: color .2s;
  padding: 2px 1.5rem 2px;
  padding-left: .75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
}

#UIElements_12 .button:hover .button__text {
  color: #fff;
}

#UIElements_12 .button:hover .button-decor {
  transform: translate(0);
}

/* == 13 ======================================================================= */
/* From Uiverse.io by abrahamcalsin */ 
#UIElements_13 button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #183153;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
}

#UIElements_13 button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #ffd401;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

#UIElements_13 button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

#UIElements_13 button span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

#UIElements_13 button:hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* == 14 ======================================================================= */
/* From Uiverse.io by liyaxu123 */ 
#UIElements_14 .form-control {
  position: relative;
  margin: 20px 0 10px;
  width: 190px;
}

#UIElements_14 .form-control input {
  background-color: transparent;
  border: 0;
  border-bottom: 2px #434343 solid;
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  color: #434343;
}

#UIElements_14 .form-control input:focus,
#UIElements_14 .form-control input:valid {
  outline: 0;
  border-bottom-color: rgb(92, 141, 157);
}

#UIElements_14 .form-control label {
  position: absolute;
  top: 15px;
  left: 0;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  gap: 1px;
}

#UIElements_14 .form-control label span {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  min-width: 5px;
  color: #434343;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#UIElements_14 .form-control input:focus+label span,
#UIElements_14 .form-control input:valid+label span {
  color: rgb(92, 141, 157);
  transform: translateY(-30px);
}

/* == 15 ======================================================================= */
/* From Uiverse.io by satyamchaudharydev */ 
#UIElements_15 .form {
 --width-of-input: 200px;
 --border-height: 1px;
 --border-before-color: rgba(54, 54, 54, 0.39);
 --border-after-color: #5891ff;
 --input-hovered-color: #4985e01f;
 position: relative;
 width: var(--width-of-input);
}
/* styling of Input */
#UIElements_15 .input {
 color: #3c3c3c;
 font-size: 0.9rem;
 background-color: transparent;
 width: 100%;
 box-sizing: border-box;
 padding-inline: 0.5em;
 padding-block: 0.7em;
 border: none;
 border-bottom: var(--border-height) solid var(--border-before-color);
}
/* styling of animated border */
#UIElements_15 .input-border {
 position: absolute;
 background: var(--border-after-color);
 width: 0%;
 height: 2px;
 bottom: 0;
 left: 0;
 transition: 0.3s;
}
/* Hover on Input */
#UIElements_15 input:hover {
 background: var(--input-hovered-color);
}

#UIElements_15 input:focus {
 outline: none;
}
/* here is code of animated border */
#UIElements_15 input:focus ~ .input-border {
 width: 100%;
}
/* === if you want to do animated border on typing === */
/* remove input:focus code and uncomment below code */
/* input:valid ~ .input-border{
  width: 100%;
} */

/* == 16 ======================================================================= */
/* From Uiverse.io by satyamchaudharydev */ 
/* removing default style of button */

#UIElements_16 .form button {
  border: none;
  background: none;
  color: #8b8ba7;
}
/* styling of whole input container */
#UIElements_16 .form {
  --timing: 0.3s;
  --width-of-input: 200px;
  --height-of-input: 40px;
  --border-height: 2px;
  --input-bg: #fff;
  --border-color: #2f2ee9;
  --border-radius: 30px;
  --after-border-radius: 1px;
  position: relative;
  width: var(--width-of-input);
  height: var(--height-of-input);
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: var(--border-radius);
  transition: border-radius 0.5s ease;
  background: var(--input-bg,#fff);
}
/* styling of Input */
#UIElements_16 .input {
  font-size: 0.9rem;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  border: none;
}
/* styling of animated border */
#UIElements_16 .form:before {
  content: "";
  position: absolute;
  background: var(--border-color);
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: var(--border-height);
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform var(--timing) ease;
}
/* Hover on Input */
#UIElements_16 .form:focus-within {
  border-radius: var(--after-border-radius);
}

#UIElements_16 input:focus {
  outline: none;
}
/* here is code of animated border */
#UIElements_16 .form:focus-within:before {
  transform: scale(1);
}
/* styling of close button */
/* == you can click the close button to remove text == */
#UIElements_16 .reset {
  border: none;
  background: none;
  opacity: 0;
  visibility: hidden;
}
/* close button shown when typing */
#UIElements_16 input:not(:placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}
/* sizing svg icons */
#UIElements_16 .form svg {
  width: 17px;
  margin-top: 3px;
}

/* == 17 ======================================================================= */
/* From Uiverse.io by adamgiebl */ 
#UIElements_17 .input-wrapper input {
  background-color: #eee;
  padding: 1rem;
  font-size: 1rem;
  width: 13em;
  border-radius: 1rem;
  color: lightcoral;
  box-shadow: 0 0.4rem #dfd9d9;
  cursor: pointer;
    border: 2px solid transparent;
}

#UIElements_17 .input-wrapper input:focus {
    border-color: lightcoral;
}

/* == 18 ======================================================================= */
/* From Uiverse.io by alexreyes091 */ 
#UIElements_18 .btn {
  padding: 1rem 2rem;
  font-weight: 700;
  background: rgb(255, 255, 255);
  color: blueviolet;
  cursor: pointer;
  border-radius: 0.5rem;
  border-bottom: 2px solid blueviolet;
  border-right: 2px solid blueviolet;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transition-duration: 1s;
  transition-property: border-top, border-left, border-bottom, border-right,
    box-shadow;
}

#UIElements_18 .btn:hover {
  border-top: 2px solid blueviolet;
  border-left: 2px solid blueviolet;
  border-bottom: 2px solid rgb(238, 103, 238);
  border-right: 2px solid rgb(238, 103, 238);
  box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px,
    rgba(240, 46, 170, 0.2) 15px 15px;
}

/* == 19 ======================================================================= */
/* From Uiverse.io by vinodjangid07 */ 
#UIElements_19 #checkbox {
  display: none;
}

#UIElements_19 .toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: .3s;
}

#UIElements_19 .bars {
  width: 100%;
  height: 4px;
  background-color: rgb(83, 83, 83);
  border-radius: 5px;
  transition-duration: .3s;
}

/* #checkbox:checked + .toggle .bars {
  margin-left: 13px;
} */

#UIElements_19 #checkbox:checked + .toggle #bar2 {
  transform: translateY(14px) rotate(60deg);
  margin-left: 0;
  transform-origin: right;
  transition-duration: .3s;
  z-index: 2;
}

#UIElements_19 #checkbox:checked + .toggle #bar1 {
  transform: translateY(28px) rotate(-60deg);
  transition-duration: .3s;
  transform-origin: left;
  z-index: 1;
}

#UIElements_19 #checkbox:checked + .toggle {
  transform: rotate(-90deg);
}
/* #checkbox:checked + .toggle #bar3 {
  transform: rotate(90deg);
  transition-duration: .3s;
  transform-origin:right;
} */

/* == 20 ======================================================================= */
/* From Uiverse.io by JulanDeAlb */ 
#UIElements_20 .hamburger {
  cursor: pointer;
}

#UIElements_20 .hamburger input {
  display: none;
}

#UIElements_20 .hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

#UIElements_20 .line {
  fill: none;
  stroke: rgb(83, 83, 83);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

#UIElements_20 .line-top-bottom {
  stroke-dasharray: 12 63;
}

#UIElements_20 .hamburger input:checked + svg {
  transform: rotate(-45deg);
}

#UIElements_20 .hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* == 21 ======================================================================= */
/* From Uiverse.io by NAKAMOZ */ 
/* Hide the default checkbox */
#UIElements_21 .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#UIElements_21 .container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
}

#UIElements_21 .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
}

#UIElements_21 .checkmark span {
  width: 32px;
  height: 2px;
  background-color: rgb(83, 83, 83);
  position: absolute;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

#UIElements_21 .checkmark span:nth-child(1) {
  top: 10%;
}

#UIElements_21 .checkmark span:nth-child(2) {
  top: 50%;
}

#UIElements_21 .checkmark span:nth-child(3) {
  top: 90%;
}

#UIElements_21 .container input:checked + .checkmark span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}

#UIElements_21 .container input:checked + .checkmark span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -o-transform: translateY(-50%) rotate(-45deg);
}

#UIElements_21 .container input:checked + .checkmark span:nth-child(3) {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  opacity: 0;
}