@charset "UTF-8";
/* host-grotesk-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/host-grotesk-v1-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/host-grotesk-v1-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/host-grotesk-v1-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/host-grotesk-v1-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/host-grotesk-v1-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* host-grotesk-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/host-grotesk-v1-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html {
  scroll-behavior: smooth;
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
}

::after,
::before {
  box-sizing: border-box;
}

body {
  color: #0b051d;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  line-height: 1.4;
}

.layout {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.layout-sm {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  background-color: #ffffff;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 4px #e2e2e2;
}
header nav {
  display: flex;
  align-items: center;
  height: 75px;
}
header nav .logo,
header nav img {
  height: 25px;
  cursor: pointer;
}
header .menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 999;
}
header .menu .menu-links {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  gap: 1rem;
  margin-right: 1rem;
}
header .menu .menu-links .link-m {
  padding: 0rem;
  font-size: 1.1rem;
}
header .menu .menu-links .link-m a {
  color: #0b051d;
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  transition: all 0.2s;
}
header .menu .menu-links .link-m a:hover {
  color: #0b051d;
  background-color: #f4f4f4;
}
header .menu .menu-links .link-m a.active {
  color: #0b051d;
  background-color: #f4f4f4;
}
header .menu_overlay,
header .menu_close,
header .menu_burger {
  display: none;
}
header .menu_overlay {
  background-color: rgba(5, 4, 4, 0.447);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}
header .menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-left: 50px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  header .menu-wrapper {
    margin-left: 30px;
  }
}
header .right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .butn {
  font-size: 1.1rem;
}
@media screen and (max-width: 992px) {
  header .menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    padding: 2rem 1.5rem;
    height: 100dvh;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  header .menu .menu-links .link-m {
    font-size: 1.5rem;
    font-weight: 600;
  }
  header .menu.show {
    transform: translateX(0);
  }
  header .menu_close {
    position: absolute;
    right: 1rem;
    top: 0.1rem;
    font-size: 3rem;
    font-weight: 300;
    transform: rotate(45deg);
    display: block;
    color: #0b051d;
  }
  header .menu_burger {
    display: block;
    cursor: pointer;
  }
  header .menu_burger .line {
    width: 27px;
    height: 2px;
    background-color: #0b051d;
    margin-bottom: 0.4rem;
  }
  header .menu_burger .line:nth-last-child(1) {
    margin-bottom: 0;
  }
  header .menu-links {
    flex-direction: column;
  }
  header #logoutButton {
    margin-top: 1rem;
  }
}

button#logoutButton {
  margin: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
button#logoutButton img {
  width: 22px;
  height: auto;
}

.qr-display {
  position: relative;
  z-index: 998;
}
.qr-display .qr-toggle {
  height: 25px;
  cursor: pointer;
}
.qr-display .qr-toggle img {
  height: 100%;
}
.qr-display .qr-wrapper {
  position: absolute;
  right: -25px;
  top: 65px;
  background-color: #ffffff;
  width: 250px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  box-shadow: 0 1px 6px rgba(37, 37, 37, 0.302);
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.qr-display .qr-wrapper .qr-lg {
  width: 100%;
  height: 100%;
}
.qr-display .qr-wrapper .btn-wrp {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.qr-display .qr-wrapper .btn-wrp .butn-trpnt {
  background-color: #0b051d;
  border-color: #0b051d;
  display: flex;
  align-items: center;
  color: #ffffff;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}
.qr-display .qr-wrapper .btn-wrp .butn-trpnt img {
  background-color: transparent !important;
  border: none;
  border-radius: 0;
  width: 1rem;
  padding: 0;
  margin-right: 0.5rem;
}
.qr-display .qr-wrapper.show {
  top: 35px;
  opacity: 1;
  pointer-events: all;
}

.hinm {
  display: block;
}
@media screen and (max-width: 576px) {
  .hinm {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .butn-sim {
    padding: 0.5rem 0.65rem !important;
  }
  .butn-sim img {
    height: 14px;
  }
  .butn-sim:hover {
    background-color: #ffffff;
    color: #0b051d;
  }
}

.sinm {
  display: none;
}
@media screen and (max-width: 576px) {
  .sinm {
    display: block;
  }
}

.mv-d-block {
  display: block !important;
  z-index: 997;
}

.txl {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
}
@media screen and (max-width: 576px) {
  .txl {
    font-size: 2.5rem;
  }
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-3 {
  margin-left: 1rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.mw800 {
  width: 100%;
  max-width: 800px;
}

.mw600 {
  width: 100%;
  max-width: 600px;
}

.mx-auto {
  margin: 0 auto;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.jc-center {
  justify-content: center;
}

.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  color: #0b051d;
  margin-bottom: 1rem;
}

.not-av {
  opacity: 0.8;
  text-decoration: line-through;
}

#memberships {
  background-image: url("../images/bg-blue.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.memberships {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .memberships {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .memberships {
    grid-template-columns: 1fr;
  }
}
.memberships .ro-img {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
}
.memberships .membership {
  box-shadow: 11px 11px 29px rgba(0, 0, 0, 0.431);
  border-radius: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.memberships .membership .head {
  background-color: #ffffff;
  padding: 1.8rem 1.5rem 0;
  border-radius: 1.5rem 1.5rem 0 0;
}
.memberships .membership .head .s-title {
  font-size: 2rem;
  color: #0b051d;
  font-weight: 600;
}
.memberships .membership .head .title {
  background-color: #0b051d;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 0.2rem 1rem;
  border-radius: 2rem;
}
.memberships .membership .body {
  padding: 1.5rem 1.5rem 0.1rem;
  background-color: #ffffff;
}
.memberships .membership .body li {
  font-weight: 500;
}
.memberships .membership .footer {
  background-color: #ffffff;
  padding: 0 1.5rem 1.8rem;
  border-radius: 0 0 1.5rem 1.5rem;
  color: #0b051d;
}
.memberships .membership .footer .free {
  font-size: 2rem;
  font-weight: 800;
}
.memberships .membership .footer .sm {
  font-size: 0.875rem;
}
.memberships .membership .footer .price {
  font-size: 2rem;
  font-weight: 700;
}

.check-list li::before {
  content: "✔"; /* Unicode for check mark */
  color: rgb(0, 42.6554054054, 160.5); /* Customize color */
  font-weight: bold;
  margin-right: 8px;
}

.p-relative {
  position: relative;
}

.hero {
  background-color: #0b051d;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 115px 0 0;
  color: #ffffff;
}
.hero .bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #0b051d;
  background: linear-gradient(0deg, rgb(11, 5, 29) 0%, rgba(11, 5, 29, 0) 100%);
}
.hero .title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: inherit;
}
.hero .s-title {
  font-size: 2rem;
  font-weight: 600;
}
.hero .sub {
  font-size: 1.3rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.4rem;
  }
  .hero .s-title {
    font-size: 1.5rem;
  }
  .hero .sub {
    font-size: 1.1rem;
  }
}
.hero .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
.hero .grid img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero .grid img {
    max-width: 450px;
    display: flex;
    justify-content: center;
    margin: 1rem auto 0;
  }
}
.hero .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .hero .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .hero .grid-3 {
    grid-template-columns: 1fr;
  }
}
.hero .l-blurb {
  background-color: #ffffff;
  padding: 3rem;
  text-align: center;
  line-height: 1.5;
  border-radius: 2rem;
}
.hero .l-blurb .head {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .l-blurb img {
  width: 100%;
  max-width: 250px;
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: #e7e7e7;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.bgpale {
  background-color: palegoldenrod;
}

.content {
  padding-top: 100px;
  padding-bottom: 100px;
}
.content .title-c {
  font-weight: 800;
  color: #0b051d;
  font-size: 1.5rem;
}
.content .title-s {
  font-weight: 600;
  color: #0b051d;
  font-size: 1.1rem;
}

.page-content {
  padding-top: 100px;
  padding-bottom: 100px;
}
.page-content .title {
  font-size: 3rem;
  line-height: 1.1;
}
@media screen and (max-width: 576px) {
  .page-content .title {
    font-size: 2.5rem;
  }
}
.page-content .s-title {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .page-content .s-title {
    font-size: 1.8rem;
  }
}
.page-content .title-xs {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0b051d;
}
.page-content .text-xl {
  font-size: 1.3rem;
}
@media screen and (max-width: 576px) {
  .page-content .text-xl {
    font-size: 1.2rem;
  }
}
.page-content .text {
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
.grid img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid img {
    max-width: 450px;
    display: flex;
    justify-content: center;
    margin: 1rem auto 0;
  }
}

.grid-2-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
.grid-2-sm img {
  width: 100%;
}
@media screen and (max-width: 576px) {
  .grid-2-sm {
    grid-template-columns: 1fr;
  }
}

.boxed-feature .image-bg {
  aspect-ratio: 1/1; /* or 4/3, 1/1 for square */
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 2rem;
  border-radius: 1.3rem;
}
.boxed-feature .image-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.boxed-feature .bg-1 {
  background-color: #1642b8;
}
.boxed-feature .bg-2 {
  background-color: #e249aa;
}
.boxed-feature .bg-3 {
  background-color: #fa9c9c;
  border-radius: 1.3rem;
}
.boxed-feature .bg-3 .col {
  padding: 1.5rem 0 1.5rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .boxed-feature .bg-3 .col {
    padding: 1.5rem 1.5rem 0;
  }
}

.feature-section {
  background-color: #f3f3f3;
}
.feature-section .title {
  color: #ffffff;
}
.feature-section .grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .feature-section .grid-container {
    grid-template-columns: 1fr;
  }
}
.feature-section .grid-container .top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .feature-section .grid-container .top-grid {
    grid-template-columns: 1fr;
  }
}
.feature-section .grid-container .left {
  display: grid;
  grid-template-rows: auto auto;
  gap: 30px;
}
.feature-section .grid-container .box {
  min-height: 300px;
  padding: 2.5rem;
  border-radius: 12px;
  color: white;
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .feature-section .grid-container .box {
    padding: 1.5rem;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.feature-section .grid-container .blue {
  background: #273277;
}
.feature-section .grid-container .lightblue {
  background: #9ddcef;
  color: #0b051d;
}
.feature-section .grid-container .lightblue .title {
  color: #0b051d;
}
.feature-section .grid-container .red {
  background: #e72a55;
}
.feature-section .profile-card {
  background: #d7d9da;
  padding: 50px 40px;
  border-radius: 16px;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: solid 10px #ffffff;
  color: #314e21;
}
.feature-section .profile-card .butn {
  background-color: #314e21;
  border: none;
  color: #ffffff;
  margin-bottom: 10px;
  width: 100%;
}
.feature-section .profile-card .icons {
  height: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .feature-section .profile-card {
    min-height: 550px;
    max-width: 300px;
    margin: auto;
  }
}
.feature-section .profile-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mw-600 {
  max-width: 600px;
}

.color-dark {
  color: #0b051d;
}

.dfac {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dfjc {
  display: flex;
  justify-content: center;
}

button:disabled {
  opacity: 0.7;
}

.butn {
  font-size: 1rem;
  padding: 0.65rem 1.5rem;
  background-color: transparent;
  color: #0b051d;
  border: 1px solid #0b051d;
  transition: background-color 0.3s ease;
  border-radius: 25px;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
  cursor: pointer;
}
.butn:hover {
  background-color: #0b051d;
  color: #ffffff;
}

.butn.butn-primary {
  background-color: #215cff;
  color: #ffffff;
  border: none;
}
.butn.butn-primary:hover {
  background-color: rgb(7.5, 73.277027027, 255);
}

.butn.butn-success {
  background-color: #049570;
  color: #ffffff;
  border: none;
}
.butn.butn-success:hover {
  background-color: rgb(4.6666666667, 173.8333333333, 130.6666666667);
}

.butn.butn-danger {
  background-color: #e72a55;
  color: #ffffff;
  border: none;
}
.butn.butn-danger:hover {
  background-color: rgb(222.4367088608, 25.0632911392, 69.9683544304);
}

.butn.butn-link {
  background-color: #1861de;
  color: #ffffff;
  border: none;
}
.butn.butn-link:hover {
  background-color: rgb(21.512195122, 86.9451219512, 198.987804878);
}

.butn.butn-secondary {
  background-color: #0b051d;
  color: #ffffff;
  border: none;
}
.butn.butn-secondary:hover {
  background-color: rgb(19.25, 8.75, 50.75);
}

.butn.butn-navy {
  background-color: #52beff;
}

.butn-delete {
  background-color: #e72a55;
  color: #ffffff;
  border: none;
}
.butn-delete:hover {
  background-color: rgb(222.4367088608, 25.0632911392, 69.9683544304);
}

.butn-xl {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 5rem;
}

.butn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}

.butn.butn-light {
  background-color: #e8e8e8;
  color: #0b051d;
  border: none;
}
.butn.butn-light:hover {
  background-color: rgb(219.25, 219.25, 219.25);
}

.butn-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.butn-icon:hover {
  gap: 0.75rem;
}
.butn-icon .butn-ir {
  height: 1.2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hasPass {
  position: relative;
}
.hasPass .showPass {
  padding: 5px;
  position: absolute;
  right: 11px;
  top: 7px;
  cursor: pointer;
}

.auth-wrapper {
  display: flex;
}
.auth-wrapper .auth {
  height: 100vh;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 60px 1rem;
}
@media screen and (max-width: 768px) {
  .auth-wrapper .auth {
    width: 100%;
  }
}
.auth-wrapper .auth .max-500 {
  width: 100%;
  max-width: 500px;
}
.auth-wrapper .auth .sub {
  color: #686868;
}
.auth-wrapper .auth .butn {
  font-weight: 500;
  font-size: 1.1rem;
}
.auth-wrapper .auth .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
}
.auth-wrapper .auth .logo img {
  height: 20px;
}
.auth-wrapper .auth .logo img:first-child {
  height: 30px;
  margin-right: 0.5rem;
}
.auth-wrapper .bg {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .auth-wrapper .bg {
    display: none;
  }
}
.auth-wrapper .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.title {
  font-size: 2.2rem;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
  color: #0b051d;
  font-weight: 800;
}
@media screen and (max-width: 576px) {
  .title {
    font-size: 1.7rem;
  }
}

.title-sm {
  font-size: 1.6rem;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
  color: #0b051d;
  font-weight: 700;
}

.title-xss {
  font-size: 1rem;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
  color: #686868;
  font-weight: 400;
}

.t-primary {
  color: rgb(0, 62.9864864865, 237);
}

.add-link-wrapper {
  display: flex;
  gap: 1rem;
}
.add-link-wrapper .link {
  max-width: -moz-fit-content;
  max-width: fit-content;
  cursor: pointer;
  border-radius: 5rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 1px 2px #adadad;
  padding: 0.65rem 1rem;
  min-width: 120px;
  max-width: fit-content;
  color: #0b051d;
  font-weight: 600;
}

input,
textarea,
select {
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #757575;
  background-color: #ffffff;
  font-family: "proxima-nova", sans-serif;
  outline: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #a4a4a4;
  font-weight: 400;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #a4a4a4;
  font-weight: 400;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #0b051d;
}
input:-moz-read-only, textarea:-moz-read-only, select:-moz-read-only {
  background-color: #d1d1d1;
  opacity: 0.5;
}
input:read-only,
textarea:read-only,
select:read-only {
  background-color: #d1d1d1;
  opacity: 0.5;
}

input#releaseDate:-moz-read-only {
  background-color: #ffffff;
  opacity: 1;
}

input#releaseDate:read-only {
  background-color: #ffffff;
  opacity: 1;
}

label {
  font-size: 1rem;
  color: #0b051d;
  font-weight: 500;
  margin-bottom: 0.375rem;
  display: block;
  text-transform: capitalize;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.txt-center {
  text-align: center;
}

.t-cap {
  text-transform: capitalize;
}

.t-edit {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

a {
  text-decoration: none;
  color: rgb(0, 56.2094594595, 211.5);
}

.form-alert {
  font-size: 0.875rem;
  margin-top: 0.1rem;
}

.form-alert.error {
  color: #e72a55;
}

.form-alert.success {
  background-color: #dcf4dc;
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  border: 2px solid #8ccf8c;
  margin-bottom: 0.5rem;
}
.form-alert.success div {
  margin-top: 1rem;
  margin-bottom: 0.55rem;
}

.form-alert.success a {
  background: #1d67eb;
  padding: 0.5rem 0.85rem;
  border-radius: 0.25rem;
  color: #fff;
}

.languageSwitcher {
  position: relative;
  z-index: 998;
}
.languageSwitcher .toggle {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.languageSwitcher .toggle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.languageSwitcher .dropdown {
  position: absolute;
  right: -40px;
  top: 65px;
  background-color: #ffffff;
  color: #686868;
  min-width: 350px;
  padding: 0.65rem 0.45rem;
  padding-top: 1rem;
  box-shadow: 0 1px 6px rgba(37, 37, 37, 0.302);
  border-radius: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .languageSwitcher .dropdown {
    min-width: 330px;
    right: -55px;
  }
}
.languageSwitcher .dropdown .item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  min-width: 160px;
}
@media screen and (max-width: 576px) {
  .languageSwitcher .dropdown .item {
    min-width: 150px;
  }
}
.languageSwitcher .dropdown .item:hover {
  color: rgb(19.25, 8.75, 50.75);
}
.languageSwitcher .dropdown .item:nth-last-child(1) {
  margin-bottom: 0.25;
}
.languageSwitcher .dropdown .item img {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  margin-right: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: solid 1px #c0c0c0;
}
.languageSwitcher .dropdown .item.active {
  color: #0b051d;
  font-weight: 500;
}
.languageSwitcher .dropdown.active {
  top: 35px;
  opacity: 1;
  pointer-events: all;
}

.op05 {
  opacity: 0.2 !important;
}

.title.green {
  color: #27db93 !important;
}

.ver-icon {
  width: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.page-header {
  padding: 1rem 0;
}
.page-header .title {
  font-size: 1.6rem;
  font-weight: 700;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.u-link-wrapper {
  display: flex;
  align-items: center;
  padding: 0 0 0 1.2rem;
  border-radius: 25px;
  border: 2px solid #e8e8e8;
  background-color: #f1f1f1;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
}
.u-link-wrapper input {
  padding: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  background-color: #fff;
  padding: 0.75rem 1.25rem 0.75rem 0.25rem;
  margin-left: 0.25rem;
}

.helper {
  font-size: 1rem;
  font-weight: 500;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
  padding: 0.25rem;
  min-height: 60px;
}

.helper.success {
  color: #11c065;
}

.helper.error {
  color: #e72a55;
}

.c-alert {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}
.c-alert .title {
  color: #11c065;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.social-icons-added {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.social-icons-added .item {
  font-size: 0.875rem;
  color: #0b051d;
  font-weight: 600;
  text-transform: capitalize;
}
.social-icons-added img {
  width: 45px;
  height: 45px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.social-icons-to-add {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.social-icons-to-add .item_addlink,
.social-icons-to-add .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.social-icons-to-add .item_addlink img,
.social-icons-to-add .item img {
  background-color: #f1f1f1;
  width: 90px;
  height: 90px;
  padding: 1.5rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  border-radius: 1.5rem;
  cursor: pointer;
}
.social-icons-to-add .item_addlink img:hover,
.social-icons-to-add .item img:hover {
  border: solid 3px;
  border-color: rgb(0, 56.2094594595, 211.5);
}
@media screen and (max-width: 576px) {
  .social-icons-to-add .item_addlink img,
  .social-icons-to-add .item img {
    width: 70px;
    height: 70px;
    padding: 0.75rem;
    border-radius: 1rem;
  }
}
.social-icons-to-add .item_addlink .t,
.social-icons-to-add .item .t {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
  text-transform: capitalize;
}
.social-icons-to-add .item.selected img {
  transition: all 0.2s ease-in-out;
  border: solid 3px;
  border-color: rgb(0, 56.2094594595, 211.5);
}

.add-link-inputs {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_ {
  background-color: rgba(0, 0, 0, 0.1882352941);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.modal_ .modal_container {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  margin: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
}
.modal_ .modal_container .header {
  padding: 1.5rem 1.5rem 0.75rem;
  display: flex;
  align-self: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.modal_ .modal_container .header .title {
  font-size: 1.1rem;
}
.modal_ .modal_container .header .close {
  background-color: #e72a55;
  width: 25px;
  height: 25px;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
}
.modal_ .modal_container .header .close img {
  width: 20px;
}
.modal_ .modal_container .body {
  padding: 0.75rem 1.5rem;
}

.social_input {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-direction: column;
}
.social_input img {
  height: 20px;
}

.input-group {
  display: flex;
  align-items: center;
  max-width: 500px;
  background-color: #f4f4f4;
  padding-left: 1rem;
  border-radius: 5rem;
}
.input-group input {
  padding-left: 0.25rem !important;
  border-radius: 0 25px 25px 0;
}

.additional_links .link-item {
  background-color: #f1f1f1;
  border: solid 3px #e0e0e0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 30px 0.5rem 0.9rem;
  border-radius: 1.25rem;
  position: relative;
}
.additional_links .link-item .al-delete {
  background-color: #e72a55;
  padding: 0.5rem;
  width: 25px;
  height: 15px;
  position: absolute;
  right: -12.5px;
  top: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.2rem;
}

.link-wrapper {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 992px) {
  .link-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.custom-f-input {
  background-color: #f1f1f1;
  border: 3px dashed #0b051d;
  border-radius: 25px;
  padding: 0.95rem 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-f-input .title {
  font-size: 1rem;
  width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-f-input .remove {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #e72a55;
  display: none;
}

.file-preview {
  width: 140px;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-top: 1rem;
}
.file-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.5rem;
}
.file-preview .file-preview .squar {
  width: 140px;
  aspect-ratio: 1/1 !important;
}

.c-item {
  margin-bottom: 1.5rem;
  border: solid 1px #f4f4f4;
  padding: 0.85rem 1.1rem 1.1rem;
  box-shadow: 0 1px 2px #d3d1d1;
  background-color: #ffffff;
  border-radius: 1rem;
}
.c-item .title {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.c-item .desc {
  font-size: 0.875rem;
  color: #686868;
}
.c-item .view-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.coverimage {
  position: relative;
}
.coverimage .empty img {
  border-radius: 1.5rem;
  box-shadow: 0 1px 5px #d3d3d3;
}
.coverimage img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coverimage .upload {
  background-color: #0b051d;
  color: #ffffff;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
  border-radius: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 0.5rem;
  right: 0.5rem;
  font-family: "proxima-nova", system-ui, -apple-system, sans-serif;
}
.coverimage .hasCover img {
  border-radius: 0.5rem;
  box-shadow: 0 1px 5px #d3d3d3;
}
.coverimage .action {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.coverimage .action .toggle-action {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.1rem;
  background-color: #0b051d;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 600;
}
.coverimage .action .dd-action {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 3.5rem;
  width: 180px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 15px rgba(51, 51, 51, 0.188);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.coverimage .action .dd-action div {
  border-bottom: 1px solid #d3d3d3;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  color: #0b051d;
}
.coverimage .action .dd-action div:nth-last-child(1) {
  border-bottom: none;
}
.coverimage .action .dd-action.show {
  top: 2.5rem;
  opacity: 1;
  pointer-events: all;
}

.profileImage {
  margin-top: -75px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .profileImage {
    flex-direction: column;
    margin-left: 0;
  }
}
.profileImage img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 576px) {
  .profileImage img {
    width: 200px;
    height: 200px;
  }
}
.profileImage .name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0b051d;
}
.profileImage .uname {
  color: #686868;
}
@media screen and (max-width: 576px) {
  .profileImage .uname {
    text-align: center;
  }
}
.profileImage .empty,
.profileImage .hasPImage {
  width: 150px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .profileImage .empty,
  .profileImage .hasPImage {
    width: 200px;
    display: flex;
    justify-content: center;
  }
}
.profileImage .upload-pi {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0b051d;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  cursor: pointer;
}
.profileImage .hasPImage img {
  border: 4px solid #ffffff;
  box-shadow: 0 2px 15px rgba(51, 51, 51, 0.188);
}
.profileImage .action_ {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: absolute;
  bottom: 0;
}
.profileImage .change-pi {
  background-color: #0b051d;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  cursor: pointer;
}
.profileImage .delete-pi {
  background-color: #e72a55;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 0.9rem 0.4rem;
  border-radius: 25px;
  cursor: pointer;
}
.profileImage .delete-pi img {
  width: 100%;
  height: 16px;
  border: none;
  box-shadow: none;
}

.profile-menu {
  position: relative;
  z-index: 997;
}
.profile-menu .p-menu-header {
  height: 35px;
  width: 35px;
  cursor: pointer;
}
.profile-menu .p-menu-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}
.profile-menu .p-menu-header .notification {
  background-color: #e72a55;
  border: solid 2px #ffffff;
  box-shadow: 0 0 2px #333;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.5rem;
}
.profile-menu .p-menu-dd {
  position: absolute;
  top: 65px;
  right: 0;
  background-color: #ffffff;
  padding: 1.5rem 1rem 1rem;
  width: 250px;
  border-radius: 0.5rem;
  box-shadow: 0 1px 6px rgba(37, 37, 37, 0.302);
  color: #0b051d;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.profile-menu .p-menu-dd .p-menu-links {
  padding: 0.25rem 1rem;
  margin-bottom: 0.25rem;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0b051d;
}
.profile-menu .p-menu-dd .p-menu-links img {
  width: 22px;
  height: auto;
}
.profile-menu .p-menu-dd .p-menu-links .notification {
  background-color: #e72a55;
  border: solid 2px #ffffff;
  box-shadow: 0 0 2px #333;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 0.57rem;
  left: 0.7rem;
  border-radius: 0.5rem;
}
.profile-menu .p-menu-dd .butn-primary {
  margin: 1rem;
}
.profile-menu .p-menu-dd.show {
  opacity: 1;
  top: 40px;
  pointer-events: all;
}
.profile-menu .p-image {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
}
.profile-menu .p-image .name {
  text-align: center;
  font-size: 1.1rem;
  color: #0b051d;
  font-weight: 600;
}
.profile-menu .copy-mylink {
  font-size: 0.875rem;
  width: 190px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 1rem;
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  cursor: copy;
}
.profile-menu .copy-mylink img {
  height: 20px;
}

.zi-997 {
  z-index: 997 !important;
}

.zi-996 {
  z-index: 996 !important;
}

.profile-wrapper {
  color: #0b051d;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
.profile-wrapper .p-cover {
  width: 100%;
  height: 250px;
}
.profile-wrapper .p-cover img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem 1rem 0 0;
}
.profile-wrapper .p-dp {
  margin-top: -75px;
}
.profile-wrapper .p-dp img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 75px;
  border: solid 4px #ffffff;
}
.profile-wrapper .social-icons-to-add {
  margin-top: 1.5rem;
  gap: 1rem;
}
.profile-wrapper .item img {
  width: 40px;
  height: 40px;
  padding: 0.15rem;
  border-radius: 0.8rem;
}
.profile-wrapper .p-name {
  font-size: 1.3rem;
  font-weight: 600;
}
.profile-wrapper .p-username {
  font-size: 0.875rem;
  color: rgb(142.25, 142.25, 142.25);
}
.profile-wrapper .p-username span {
  text-transform: capitalize;
}
.profile-wrapper .p-about {
  text-align: center;
  padding: 0 1rem;
}
.profile-wrapper .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.profile-wrapper .contact img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile-wrapper .title-xs {
  color: #ffffff;
}
.profile-wrapper .item-addtionalLinks {
  background-color: #215cff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}
.profile-wrapper .item-addtionalLinks .title {
  font-size: 1rem;
}

.ql-container {
  font-size: 0.95rem !important;
}

.p-footer {
  padding: 1rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-footer a {
  color: #ababab;
}
.p-footer .bottom {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #8f8f8f;
}

.p-flex-col {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.p-flex-col .c-item {
  display: flex;
  background-color: #ffffff;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 0.5rem;
  box-shadow: none;
  padding: 1rem;
  gap: 1rem;
}
.p-flex-col .c-item .desc {
  font-size: 0.875rem;
}
.p-flex-col .c-item .title-xs {
  color: #0b051d;
  font-weight: 600;
}
.p-flex-col .c-item .view-file {
  margin-top: 0;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .p-flex-col .c-item {
    flex-wrap: wrap;
  }
}

footer {
  background-color: #0b051d;
  padding-top: 60px;
}
footer .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  footer .grid {
    grid-template-columns: 1fr;
  }
}
footer .logo img {
  width: 130px;
}
footer .text,
footer .bottom {
  color: rgb(167.75, 167.75, 167.75);
}
footer .bottom {
  font-size: 0.8rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
footer .title {
  font-weight: 500;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
footer a {
  color: rgb(129.5, 129.5, 129.5);
}
footer .social-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
footer .social-media img {
  height: 40px;
}
footer .menu-links {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
footer .menu-links .links {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
footer .menu-links .links:hover {
  color: rgb(84, 129.4459459459, 255);
}

.languageNotice {
  color: #e72a55;
  background-color: rgba(214, 6, 6, 0.119);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: solid 2px #ffabab;
}

/* Customize the label (the check-container) */
.check-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #0b051d;
}

.check-container.light {
  color: #ffffff;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 0.25rem;
  border: solid #686868 1px;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #215cff;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #215cff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

label.light {
  color: #ffffff;
}

.profile_top {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  margin-top: 1.5rem;
  border-radius: 1rem;
  padding-bottom: 1rem;
}

.profile_holder {
  background-color: #ffffff;
  margin-top: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}
@media screen and (max-width: 576px) {
  .profile_holder {
    padding: 1.5rem 1rem;
  }
}

/* scope to section.faq.page-content */
section.faq {
  background-color: #f3f3f3;
}

.faq-accordion {
  margin-top: 3rem;
}
.faq-accordion .title {
  font-size: 1.7rem;
  font-weight: 700;
}

.faq-item {
  background-color: #ffffff;
  margin-bottom: 1rem;
  padding: 2rem;
  border-radius: 1rem;
}
@media screen and (max-width: 576px) {
  .faq-item {
    padding: 0.5rem 1.2rem;
  }
}

.faq-q {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  border: 0;
  padding: 18px 0;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-q:focus {
  outline: none;
  outline-offset: 2px;
  border-radius: 8px;
}

.faq-q-text {
  font-weight: 600;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 0.2s ease; /* rotation on open */
}

/* plus made with two bars */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.faq-icon::before {
  width: 100%;
  height: 2px; /* horizontal */
}

.faq-icon::after {
  width: 2px;
  height: 100%; /* vertical */
}

/* when open, rotate 45deg to look like an “x” */
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* answer panel with smooth height reveal */
.faq-a {
  overflow: hidden;
  transition: grid-template-rows 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0;
}

.faq-a > * {
  min-height: 0; /* allows grid 0fr trick */
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 0 16px;
}

.faq-a p {
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
}

.card {
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 576px) {
  .card {
    padding: 1rem;
  }
}

.ss-main {
  padding: 0.95rem 1.2rem;
  border-radius: 0.875rem;
  border: 1px solid #757575;
  color: #0b051d;
  font-weight: 500;
}

.ss-content {
  box-shadow: 0px 16px 18px #b9b9b9;
}

.ss-content .ss-list {
  border: none;
}

.ss-content .ss-list .ss-option {
  padding: 0.95rem 1.2rem;
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background-color: #0b051d;
}

.ss-content .ss-list .ss-option:hover {
  background-color: #e0e0e0;
  color: #0b051d;
}

.ss-main:focus,
.ss-content .ss-search input:focus {
  outline: none;
  box-shadow: none;
}

.text-red {
  color: #e72a55 !important;
}

.product-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product {
  width: 100%;
  max-width: 200px;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .product {
    max-width: 47%;
  }
}
.product .image {
  max-width: 200px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #ffffff;
}
.product .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.5rem;
}
.product .title {
  font-size: 1rem;
  margin-top: 0.7rem;
}
.product .butn-delete {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.toggle-group {
  display: inline-flex;
  border: 1px solid #0b051d;
  border-radius: 0.875rem;
  overflow: hidden;
  font-family: sans-serif;
}
.toggle-group label {
  margin-bottom: 0;
}

.toggle-group input {
  display: none;
}

.toggle-group label {
  padding: 14px 30px;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 500;
  color: #0b051d;
  background: #fff;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Round left/right edges */
.toggle-group label:first-of-type {
  border-radius: 0.875rem;
}

.toggle-group label:last-of-type {
  border-radius: 0.875rem;
}

/* Active styles */
.toggle-group input:checked + label {
  background: #0b051d;
  color: #fff;
}

.release {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.5rem;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .release {
    padding: 0.5rem;
    align-items: flex-start;
  }
}
.release .left {
  aspect-ratio: 1/1;
  height: 60px;
  width: 60px;
  background-color: #e0e0e0;
  background-size: contain;
  background-position: center;
  border: solid 1px #c7c7c7;
  border-radius: 0.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.release .left img {
  height: 1.6rem;
  opacity: 0.8;
}
@media screen and (max-width: 576px) {
  .release .left {
    height: 50px;
    width: 50px;
  }
}
.release .platform,
.release .kind {
  background-color: #e1e1e1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 2rem;
  padding: 0.2rem 0.5rem;
  text-transform: capitalize;
  font-size: 0.875rem;
}
.release .platform img,
.release .kind img {
  width: 0.875rem;
  height: 0.875rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.release .kind.video {
  background-color: #085ad4;
  color: #ffffff;
}
.release .kind.audio {
  background-color: #d408b2;
  color: #ffffff;
}
.release .title {
  font-size: 1.1rem;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .release .title {
    font-size: 0.875rem;
    font-weight: 500;
  }
}
.release .action img {
  height: 1.1rem;
}
.release .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .release .flex {
    align-items: flex-start;
  }
}
.release .flex-s {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.release .butn-delete {
  position: absolute;
  right: 0.5rem;
  top: -0.65rem;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.release .butn-delete img {
  height: 1.1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .release .butn-delete {
    top: unset;
    bottom: -0.65rem;
  }
}

.templates {
  background-color: #f3f3f1;
}
.templates .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1070px;
}
@media screen and (max-width: 768px) {
  .templates .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.templates .col .title {
  font-size: 1.55rem;
  font-weight: 600;
}
.templates .image {
  border: solid 1px #dcdcdc;
  border-radius: 1.2rem;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 1rem;
}
.templates .template-img {
  border-radius: 1.2rem;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.templates .template-img:hover {
  transform: scale(102%);
}

.payment-card {
  border: solid 1px #cdcccc;
  border-radius: 1.2rem;
  max-width: 500px;
}
.payment-card .header {
  padding: 1.2rem;
  border-bottom: solid 1px #cdcccc;
}
.payment-card .header .title {
  font-size: 1.5rem;
}
.payment-card .body {
  padding: 1.2rem;
  border-bottom: solid 1px #cdcccc;
}
.payment-card .body .s-title {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.payment-card .body .s-title img {
  height: 1.2rem;
}
.payment-card .footer {
  padding: 1.2rem 1.2rem 1.75rem;
}
.payment-card .footer .plan {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.1;
}
.payment-card .footer .plan .title {
  font-size: 1rem;
  font-weight: 600;
}
.payment-card .footer .plan .plan-price {
  font-size: 1.1rem;
}
.payment-card .footer .plan .final-price {
  font-size: 1.5rem;
  font-weight: 700;
}
.payment-card .footer .plan.discount {
  color: #06b161;
}
.payment-card .footer .plan.discount .title {
  color: #06b161;
}
.payment-card .footer .butn-xl {
  width: 100%;
}

.text-cap {
  text-transform: capitalize;
}

#coupon-validator {
  position: relative;
}
#coupon-validator .butn {
  position: absolute;
  top: 34px;
  right: 5px;
  border-radius: 0.5rem;
}
#coupon-validator .coupon-res {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
#coupon-validator .invalid {
  color: #e72a55;
}
#coupon-validator .valid {
  color: rgb(25.9285714286, 155.5714285714, 103.7142857143);
}

.goback {
  padding: 1.5rem 3rem;
}
@media screen and (max-width: 576px) {
  .goback {
    padding: 1rem 1rem;
  }
}
.goback .logo img {
  height: 25px;
  margin-bottom: 1.75rem;
}
.goback .backbutton {
  margin-left: 3rem;
}
@media screen and (max-width: 576px) {
  .goback .backbutton {
    margin-left: 0;
  }
}
.goback .backbutton a {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  color: #1861de;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.goback .backbutton a img {
  height: 1rem;
}

#couponCode {
  text-transform: uppercase;
}

.border-0 {
  border: none !important;
}

.vat_notice {
  color: #686868;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 77, 230, 0.7725490196);
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1000;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
}

.cookie-actions {
  margin-top: 20px;
  text-align: right;
}

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9999px;
  background: var(--brand, #111);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  will-change: opacity;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

.scroll-top:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .scroll-top {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}
.purchase-history {
  color: rgb(1, 85, 242);
  font-size: 0.875rem;
  font-style: italic;
  cursor: pointer;
}

.mh-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.mh-card {
  background: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 16px;
  position: relative;
}

.mh-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #d7d7d7;
}

.mh-title strong {
  font-size: 1rem;
}

.mh-sub {
  color: #8a8f98;
  margin-top: 2px;
  font-size: 0.875rem;
}

.mh-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.mh-label {
  color: #333;
  font-size: 0.75rem;
}

.mh-badge {
  background: #d9f6e5;
  color: #1a7f4b;
  border: 1px solid #bdebd4;
  border-radius: 7px;
  padding: 3px 5px;
  font-weight: 600;
  font-size: 0.875rem;
}

.mh-body {
  padding: 0.5rem 1.25rem 1rem;
}

.mh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  text-align: start;
}

.mh-row + .mh-row {
  border-top: 1px dashed #c6c6c6;
}

.mh-total span:last-child {
  font-weight: 700;
}

.mh-meta {
  margin-top: 10px;
  color: #6b7280;
  font-size: 0.88rem;
}

.history-modal {
  width: 100%;
  max-width: 500px;
  background-color: rgb(255, 255, 255);
  padding: 1.5rem 1.2rem;
  position: relative;
  z-index: 1002;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 2px 15px rgba(51, 51, 51, 0.188);
  max-height: calc(100vh - 80px);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.history-modal.open {
  opacity: 1;
  pointer-events: all;
  top: 10px;
}
.history-modal .close-hm {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  padding: 0.5rem;
  color: #e72a55;
  font-style: italic;
}