html {
  scroll-behavior: smooth;
}

:root {
  --background-primary-color: #bff199;
  --background-secondary-color: #14d4f4;
  --background-dark-color: #2B2E4A;

  --bs-primary-color: #bff199;
  --bs-secondary-color: #14d4f4;

  --bs-btn-bg: #2B2E4A;

  --bs-dropdown-item-hover-color: #0d6efd;
  }


html::-webkit-scrollbar {
  background-color: #2B2E4A;
  width: 12px;
}

html::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--background-dark-color);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(191,241,153,1) -50%, rgba(20,212,244,1) 150%);
  border-radius: 10px;
}



  .mulish-light {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
  }

  .mulish-light-italic {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: italic;
  }

  .mulish-normal {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  .mulish-normal-italic {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
  }

  .mulish-semibold {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }

  .mulish-semibold-italic {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: italic;
  }

  .mulish-bold {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
  }

  .mulish-bold-italic {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: italic;
  }



a:hover {
  font-weight: bold;
}



.mt-6 {
  margin-top: 4.5rem !important;
}

.mb-6 {
  margin-bottom: 4.5rem !important;
}

.ms-6 {
  margin-left: 4.5rem !important;
}

.me-6 {
  margin-right: 4.5rem !important;
}

.my-6 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.mx-6 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

.ps-6 {
  padding-left: 4.5rem !important;
}

.pe-6 {
  padding-right: 4.5rem !important;
}

.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.px-6 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}



.mt-7 {
  margin-top: 6rem !important;
}

.mb-7 {
  margin-bottom: 6rem !important;
}

.ms-7 {
  margin-left: 6rem !important;
}

.me-7 {
  margin-right: 6rem !important;
}

.my-7 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mx-7 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.pt-7 {
  padding-top: 6rem !important;
}

.pb-7 {
  padding-bottom: 6rem !important;
}

.ps-7 {
  padding-left: 6rem !important;
}

.pe-7 {
  padding-right: 6rem !important;
}

.py-7 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.px-7 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}



.mt-8 {
  margin-top: 7.5rem !important;
}

.mb-8 {
  margin-bottom: 7.5rem !important;
}

.ms-8 {
  margin-left: 7.5rem !important;
}

.me-8 {
  margin-right: 7.5rem !important;
}

.my-8 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.mx-8 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

.pt-8 {
  padding-top: 7.5rem !important;
}

.pb-8 {
  padding-bottom: 7.5rem !important;
}

.ps-8 {
  padding-left: 7.5rem !important;
}

.pe-8 {
  padding-right: 7.5rem !important;
}

.py-8 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.px-8 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.primary-color {
  color: var(--bs-primary-color) !important;
}

.secondary-color {
  color: var(--bs-secondary-color) !important;
}





#loader {
  z-index: 1;
  border: 12px solid #c0f3fc;
  border-radius: 50%;
  border-top: 12px solid var(--background-secondary-color);
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@keframes spin {
  100% {
    transform: rotate(360deg);
  }
}





..navbar-toggler {
  padding: 0.75rem !important;
}

.navbar-toggler, .navbar-toggler:focus {
  padding: 0.75rem !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler:hover {
  text-decoration: none;
  background-color: var(--background-dark-color);
  border-radius: 50%;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2843, 46, 74, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28191, 241, 153, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-collapse {
  text-align: center;
}

.navbar-background-style {
  background: rgb(191,241,153);
  background: -moz-linear-gradient(90deg, rgba(191,241,153,1) -50%, rgba(20,212,244,1) 150%);
  background: -webkit-linear-gradient(90deg, rgba(191,241,153,1) -50%, rgba(20,212,244,1) 150%);
  background: linear-gradient(90deg, rgba(191,241,153,1) -50%, rgba(20,212,244,1) 150%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bff199",endColorstr="#14d4f4",GradientType=1);
}

.dropdown-menu.show {
  border: none;
  padding: 0;
  background-color: var(--bs-btn-bg) !important;
}

.dropdown-item:focus, .dropdown-item:hover {
  border-radius: 0.375rem;
  background-color: var(--bs-dropdown-item-hover-color) !important;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--bs-primary-color);
  color: white;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
}

#myBtn:hover {
  background-color: var(--bs-secondary-color);
}



.space {
  padding-top: 6rem;
}

.background-color {
  background-color: #191B2C;
  filter: opacity(80%);
  z-index: -1;
  height: 100vh;
}

.bg {
  background-image: url("https://www.positioncheats.company/img/bg-gtav.jpg");
  filter: blur(6px);
  z-index: -2;
  top: 1em;
  left: -1em;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.position-mod {
  max-height: 500px;
  width: auto;
  animation: shake 3s ease-in-out infinite alternate;
  -webkit-animation: shake 3s ease-in-out infinite alternate;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg) scale(1.0); }
  10% { transform: translate(-1px, -2px) rotate(-1deg) scale(1.01); }
  20% { transform: translate(-3px, 0px) rotate(1deg) scale(1.02); }
  30% { transform: translate(3px, 2px) rotate(0deg) scale(1.03); }
  40% { transform: translate(1px, -1px) rotate(1deg) scale(1.04); }
  50% { transform: translate(-1px, 2px) rotate(-1deg) scale(1.05); }
  60% { transform: translate(-3px, 1px) rotate(0deg) scale(1.07); }
  70% { transform: translate(3px, 1px) rotate(-1deg) scale(1.09); }
  80% { transform: translate(-1px, -1px) rotate(1deg) scale(1.11); }
  90% { transform: translate(1px, 2px) rotate(0deg) scale(1.13); }
  100% { transform: translate(1px, -2px) rotate(-1deg) scale(1.15); }
}

.welcome-text {
  font-size: 18px;
  text-transform: uppercase;
}

.gradient_line {
  display: inline-flex;
  width: 40px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 100px;
  margin-bottom: 15px;
  background: var(--linear, linear-gradient(251deg, #14d4f4 0%, #bff199 89.72%));
}

.turquoise-text {
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #14d4f4;
}

.fa-check.turquoise-effect {
  filter: drop-shadow(2px 2px 4px #14d4f4);
}

.turquoise-effect {
  filter: drop-shadow(0 0 8px #14d4f4);
}

.alert p {
  margin: 0;
  color: var(--bs-primary-color);
}

.alert-dark {
  border: none;
  background-color: var(--background-dark-color);
}



.position-services, .position-price, .position-reviews, .question-container, .position-contact, .position-terms, .position-session, .position-panel {
  position: relative;
  background-color: var(--background-dark-color);
  padding: 1rem;
  border-radius: 0.375rem;
}



.delivery-item, .support-item, .payments-item, .updates-item, .refund-item, .customers-item {
  min-height: 15rem;
  padding-top: 2rem;
}



.img-character-1 {
  background-image: url(https://www.positioncheats.company/img/michael.jpg);
  background-blend-mode: luminosity;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: content-box;
  border: none;
}

.img-character-2 {
  background-image: url(https://www.positioncheats.company/img/franklyn.jpg);
  background-blend-mode: luminosity;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: content-box;
  border: none;
}

.img-character-3 {
  background-image: url(https://www.positioncheats.company/img/trevor.jpg);
  background-blend-mode: luminosity;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: content-box;
  border: none;
}

.card:hover.img-character-1, .card:hover.img-character-2, .card:hover.img-character-3 {
  background-blend-mode: normal;
}

.gradient-card {
  background: rgb(43,46,74);
  background: -moz-linear-gradient(180deg, rgba(43,46,74,0.8) 0%, rgba(43,46,74,1) 70%);
  background: -webkit-linear-gradient(180deg, rgba(43,46,74,0.8) 0%, rgba(43,46,74,1) 70%);
  background: linear-gradient(180deg, rgba(43,46,74,0.8) 0%, rgba(43,46,74,1) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2e4a",endColorstr="#2b2e4a",GradientType=1);
  transition: 1s;
}

.card:hover > .card-body.gradient-card {
  background: rgb(43,46,74);
  background: -moz-linear-gradient(180deg, rgba(43,46,74,0) -20%, rgba(43,46,74,1) 50%);
  background: -webkit-linear-gradient(180deg, rgba(43,46,74,0) -20%, rgba(43,46,74,1) 50%);
  background: linear-gradient(180deg, rgba(43,46,74,0) -20%, rgba(43,46,74,1) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2e4a",endColorstr="#2b2e4a",GradientType=1);
}

.card {
  margin-top: 0rem;
  filter: drop-shadow(0 0 8px #14d4f400);
  transition: 1s;

}

.card:hover {
  margin-top: -2rem;
  filter: drop-shadow(0 0 8px #14d4f4);
}




#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    border-radius: 0.375rem;
}

#popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: none;
    border-radius: 0.375rem;
    background-color: var(--background-dark-color);
    filter: drop-shadow(0 0 8px #14d4f4);
    z-index: 999;
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}






.wrapper-frame {
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 0.375rem;
}

.sellix-frame {
  border: 0px none;
  margin: -196px auto -584px auto;
  width: 101%;
  height: 1400px;
}



.question-dot {
  margin-left: -22px;
  max-height: 12px;
  max-width: 12px;
  min-height: 12px;
  min-width: 12px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(251deg, #1498EB 0%, #00d9ff 89.72%);
}

.question-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(251deg, #1498EB 0%, #00d9ff 89.72%);
}

.border-faq {
  border: 1px solid transparent;
  background-image: linear-gradient(to right, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), linear-gradient(to top, rgb(0 0 0 / 0%), rgb(20 212 244 / 100%), rgb(0 0 0 / 0%));
  background-origin: border-box;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top left, top right, bottom right, bottom left;
  background-repeat: no-repeat;
}

.question-container {
  width: 250%;
}


.border-footer {
  border-top: 1px solid !important;
  border-image: linear-gradient(to right, rgb(43 46 74 / 0%), rgb(43 46 74 / 100%), rgb(43 46 74 / 0%));
  border-image-slice: 1;
}
