#package-checkboxes {
  scrollbar-width: thin;
  scrollbar-color: #1c6bff #212121;
}

#package-checkboxes::-webkit-scrollbar {
  width: 8px;
  background: #212121;
  border-radius: 8px;
}

#package-checkboxes::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #e81cff 40%, #40c9ff 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px #e81cff44;
  transition: background 0.3s;
}

#package-checkboxes::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #40c9ff 0%, #e81cff 100%);
}

#package-checkboxes::-webkit-scrollbar-track {
  background: #212121;
  border-radius: 8px;
}

#package-checkboxes::-webkit-scrollbar-corner {
  background: transparent;
}

#custom-alert {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(59 130 246);
  color: #ffffff;
  padding: 32px 48px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  z-index: 99999;
  font-weight: bold;
  text-align: center;
  animation: alertPop 0.7s cubic-bezier(.68, -0.55, .27, 1.55);
}

@keyframes alertPop {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }

  60% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Custom Scrollbar for Webkit-based browsers */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
  cursor: grab;
}

/* Custom Scrollbar for Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #555 transparent;
}

::selection {
  background: #8fd6ff;
  color: #222;
}


body::-webkit-scrollbar {
  display: none;
}

body {
  background-color: black;
  height: 100vh;
  overflow-x: hidden;
  cursor: default;
}

#main {
  min-height: 100vh;
  width: 100vw;
  position: relative;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  .sidebar {
    width: 100%;
  }
}

#cursor {
  position: fixed;
  height: 30px;
  width: 30px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.mobile-menu {
  transition: all 0.3s ease-in-out;
}

.menu-btn {
  transition: all 0.3s ease;
}

.sidebar {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.sidebar.active {
  transform: translateX(0);
}

#sidebar-overlay.hidden {
  display: none;
}

@media (max-width: 540px) {
  #cursor {
    background-color: black;
  }

  .sidebar {
    width: 100%;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  p {
    font-size: 1rem;
  }

  .button {
    width: 90%;
    font-size: 13px;
  }

  .container {
    height: auto;
    padding: 1rem 0;
  }

  .pricing-card {
    margin: 0 auto;
    width: 95%;
  }

  .price-tag {
    font-size: 14px;
    padding: 6px 12px;
    top: 8px;
    right: 8px;
  }

  .chat-widget-container {
    width: 100%;
    height: 75vh;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}

#order {
  height: 100vh;
  width: 100%;
  max-width: 1650px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: 25px;
  margin-left: auto;
  margin-right: auto;
}

#about {
  height: 100vh;
  width: 100%;
  max-width: 1650px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: 25px;
  margin-left: auto;
  margin-right: auto;
}

.cssbuttons-io-button {
  background: #a370f0;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

#button {
  display: flex;
  justify-content: center;
  gap: 150px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  transition: opacity .6s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 200px;
  max-height: 900px;
  transform-origin: 50% 50%;
  overflow: visible;
}

.ci1 {
  fill: var(--higru);
  animation: toBig 3s infinite -1.5s;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.ciw {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: breath 3s infinite;
}

.ci2 {
  fill: var(--higru);
  animation: toBig2 3s infinite;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.points {
  animation: rot 3s infinite;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

@keyframes rot {
  0% {
    transform: rotate(0deg);
  }

  30% {
    transform: rotate(360deg);
  }

  50% {
    transform: rotate(360deg);
  }

  80% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes toBig {
  0% {
    transform: scale(1) translateX(0px);
  }

  30% {
    transform: scale(1) translateX(0px);
  }

  50% {
    transform: scale(10) translateX(-4.5px);
  }

  80% {
    transform: scale(10) translateX(-4.5px);
  }

  100% {
    transform: scale(1) translateX(0px);
  }
}

@keyframes toBig2 {
  0% {
    transform: scale(1) translateX(0px);
  }

  30% {
    transform: scale(1) translateX(0px);
  }

  50% {
    transform: scale(10) translateX(4.5px);
  }

  80% {
    transform: scale(10) translateX(4.5px);
  }

  100% {
    transform: scale(1) translateX(0px);
  }
}

@keyframes breath {
  15% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.1);
  }

  65% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.1);
  }
}

.dwf,
.share {
  position: fixed;
  bottom: 4px;
  right: 10px;
  background-color: #0003;
  padding: 3px;
  border-radius: 3px;
}

body.noscroll {
  overflow: hidden;
  height: 100vh;
}

@media screen and (max-width:768px) {
  #cursor {
    display: none;
  }
}


.form-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(#212121, #212121) padding-box,
    linear-gradient(145deg, transparent 35%, #e81cff, #40c9ff) border-box;
  border: 2px solid transparent;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
}

@media (max-width: 600px) {
  .form-container {
    max-width: 100%;
    padding: 18px 8px;
    border-radius: 10px;
    font-size: 13px;
  }

  .form-container .form-group input,
  .form-container .form-group textarea {
    font-size: 13px;
    padding: 10px 8px;
  }

  .form-container .form-submit-btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 8px;
  }
}

.form-container button:active {
  scale: 0.95;
}

.form-container .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #717171;
  font-weight: 600;
  font-size: 12px;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
}

.form-container .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color: #fff;
  height: 96px;
  border: 1px solid #414141;
  background-color: transparent;
  font-family: inherit;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #e81cff;
}

.form-container .form-group textarea:focus {
  outline: none;
  border-color: #e81cff;
}

.form-container .form-submit-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: #717171;
  font-weight: 600;
  width: 40%;
  background: #313131;
  border: 1px solid #414141;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin-top: 8px;
  cursor: pointer;
  border-radius: 6px;
}

.form-container .form-submit-btn:hover {
  background-color: #fff;
  border-color: #fff;
}

.container {
  --input-focus: #2d8cf0;
  --input-out-of-focus: #ccc;
  --bg-color: #fff;
  --bg-color-alt: #666;
  --main-color: #323232;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  width: 30px;
  height: 30px;
  position: relative;
  top: 0;
  left: 0;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  box-shadow: 4px 4px var(--main-color);
  background-color: var(--input-out-of-focus);
  transition: all 0.3s;
  display: inline-block;
  margin-right: 6px;
}

.container input:checked~.checkmark {
  background-color: var(--input-focus);
}

.checkmark:after {
  content: "";
  width: 7px;
  height: 15px;
  position: absolute;
  top: 2px;
  left: 8px;
  display: none;
  border: solid var(--bg-color);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.container input:checked~.checkmark:after {
  display: block;
}

#package-checkboxes::-webkit-scrollbar-corner {
  background-color: transparent;
}

#package-checkboxes::-webkit-scrollbar-track {
  background: transparent;
}