* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.page-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 50px;
  position: fixed;
  left: 0;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 9999999;
}

.page-content {
  display: flex;
  justify-content: center;
  margin-top: 85px;
  /* height: 100%; */
}

.page-tutle {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 50px;
}

.page-tutle h2 {
  text-align: center;
  width: 100%;
}

.registration-box {
  width: 100%;
  max-width: 550px;
  height: 800px;
}

.page-tutle a {
  display: inline-block;
  width: 30px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  height: 30px;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  color: black;
  transition: 200ms;
}

.page-tutle a:hover {
  background-color: #f34f4f;
  color: white;
  border: 1px solid #f34f4f;
}

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

.love-images > img {
  height: 310px;
}
.text-block {
  text-align: center;
  margin: 0px 0px;
}

.btn-group a {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-decoration: none;
  color: white;
  border: 1px solid #f34f4f;
  border-radius: 50px;
}

.btn-group a:hover {
  background-color: #333333;
  color: white;
  border: 1px solid #333;
  border-radius: 50px;
}

.btn-group button {
  padding: 0pc;
  margin: 0pc;
  outline: none;
  border: 0px;
  width: 100%;
  background-color: transparent;
}

.btn-group button a {
  background-color: #f34f4f;
  border-radius: 50px;
  padding: 12px;
  font-size: 16px;
  border: 0px;
  outline: none;
  width: 100%;
  font-weight: 600;
  transition: 300ms;
  display: block;
  cursor: pointer;
  border: 1px solid #f34f4f;
}

.btn-group a button {
  background-color: #f34f4f;
  border-radius: 50px;
  padding: 12px;
  font-size: 16px;
  border: 0px;
  outline: none;
  width: 100%;
  font-weight: 600;
  transition: 300ms;
  cursor: pointer;
}

.btn-group a.btn1 button {
  background-color: #f34f4f;
  color: white;
  border: 1px solid #f34f4f;
}

.btn-group a:hover button {
  background-color: #333333;
  color: white;
  border: 1px solid #333;
}

.btn-group a.btn2 button {
  background-color: transparent;
  color: #f34f4f;
  border: 1px solid #f34f4f;
}
.btn-group a:hover button {
  background-color: #333333;
  color: white;
  border: 1px solid #333;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: white;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #eaeaea;
  margin-top: 20px;
  font-size: 14px;
  color: #777777;
  width: 100%;
  z-index: 99999;
}

.gender {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
  justify-content: center;
}

.gender ul {
  list-style-type: none;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.gender li {
  display: inline-block;
  text-align: center;
}

.gender input[type="radio"][id^="cb"] {
  display: none;
}

.gender label {
  border: 1px solid #fff;

  display: block;
  position: relative;

  cursor: pointer;
}

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

.gender label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid #f34f4f;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.gender label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

.gender :checked + label:before {
  content: "✓";
  background-color: #f34f4f;
  transform: scale(1);
}

.gender :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #f34f4f;
  z-index: -1;
}

.checkboxes {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.checkboxes__row {
  display: flex;
}
.checkboxes__row:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.checkboxes__item {
  padding: 15px 0px;
  width: 100%;
}

/* STYLE A */

.checkbox.style-a {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-a input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-a input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-a input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-a:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-a:hover input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-a .checkbox__checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #333;
  transition: background-color 0.25s ease;
  border-radius: 3px;
}
.checkbox.style-a .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-a .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}

/* STYLE B */

.checkbox.style-b {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-b input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-b:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-b:hover input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-b .checkbox__checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #333;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-b .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-b .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

/* STYLE C */

.checkbox.style-c {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-c:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c .checkbox__checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-c .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-c .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}

/* STYLE D */

.checkbox.style-d {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-d input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-d:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-d:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-d:hover input ~ .checkbox__body {
  color: #f7cb15;
}
.checkbox.style-d .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-d .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-d .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

/* STYLE E */

.checkbox.style-e {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-e input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark:after {
  left: 21px;
}
.checkbox.style-e:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-e:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-e .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 40px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-e .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  transition: left 0.25s ease;
}
.checkbox.style-e .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

/* STYLE F */

.checkbox.style-f {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-f input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-f input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f input:checked ~ .checkbox__checkmark:after {
  transform: scale(1);
}
.checkbox.style-f input:checked ~ .checkbox__body {
  font-weight: bold;
}
.checkbox.style-f:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f:hover input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-f .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  display: block;
  background-color: #f7cb15;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.25s ease;
}
.checkbox.style-f .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
}

/* STYLE G */

.checkbox.style-g {
  display: inline-block;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-g input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-g input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-g input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
  left: 8px;
}
.checkbox.style-g input:checked ~ .checkbox__body {
  font-weight: bold;
}
.checkbox.style-g:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-g:hover input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-g .checkbox__checkmark {
  position: absolute;
  top: 1px;
  right: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-g .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: -20px;
  top: -8px;
  width: 15px;
  height: 25px;
  border: solid #f7cb15;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease, left 0.25s ease;
}
.checkbox.style-g .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
}

/* STYLE H */

.checkbox.style-h {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-h input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark {
  background-color: #ff0070;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
  top: -3px;
}
.checkbox.style-h input:checked ~ .checkbox__body {
  background-position: 0 0;
  color: #fff;
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
}
.checkbox.style-h:hover input ~ .checkbox__checkmark {
  background-color: #ff0070;
}
.checkbox.style-h:hover input:checked ~ .checkbox__checkmark {
  background-color: #ff0070;
}
.checkbox.style-h:hover .checkbox__body {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.checkbox.style-h .checkbox__checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  height: 22px;
  width: 22px;
  background-color: #f4f4f4;
  transition: background-color 0.25s ease;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1),
    inset -2px -2px 4px rgba(255, 255, 255, 0.4);
}

.checkbox.style-h .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
  font-weight: bold;
  color: #333;
  background: white;
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 25px;
  padding-left: 20px;
  border-radius: 50px;

  border: 1px solid #eaeaea;
  transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;
  margin-bottom: 10px;
}

/* STYLE I */

.checkbox.style-i {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 65px;
}
.checkbox.style-i input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-i input:checked ~ .checkbox__checkmark {
  background-color: #49db44;
}
.checkbox.style-i input:checked ~ .checkbox__checkmark:after {
  transform: rotate(90deg) translateY(-50%) translateX(-50%);
  background-color: #49db44;
}
.checkbox.style-i .checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background-color: #ff0070;
  transition: background-color 0.25s ease;
  border-radius: 50%;
}
.checkbox.style-i .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 12px;
  border-radius: 6px;
  transform: rotate(0deg) translateY(-50%) translateX(-50%);
  transform-origin: left top;
  background-color: #ff0070;
  transition: transform 0.25s ease, background-color 0.25s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2),
    -2px -2px 4px rgba(255, 255, 255, 0.6);
}
.checkbox.style-i .checkbox__body {
  font-weight: bold;
  font-size: 30px;
}

/* THANKS */
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eee;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
}
.thanks > *:not(:last-child) {
  margin-right: 30px;
}

.slider-container {
  background: #fff;

  border-radius: 15px;

  text-align: center;
  width: 100%;
}

.slider-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.range-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  transition: background 0.3s;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;

  transition: background 0.3s;
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;
}

.height-value {
  font-size: 16px;
  color: #4a4a4a;
}

@media (max-width: 400px) {
  .love-images img {
    width: 100px;
    height: 100px;
  }

  .text-block h4 {
    font-size: 22px;
  }

  .btn-group button {
    padding: 10px;
  }
}

.registration-box form label {
  text-align: left m !important;
}

.registration-box form label p {
  display: block;
  width: 100%;
  font-size: 18px;
  color: black;
  font-weight: normal;
  text-align: left;
}
.custom-lable {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.registration-box form input {
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 5px #eaeaea;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
}

.registration-box form select {
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 5px #eaeaea;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
}

.range-input {
  padding: 0px !important;

  background-color: #f84c59;
}

/* Fancy checkbox styling */
.fancy-checkbox {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
  color: #333;
  left: 20px;
}

.fancy-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.fancy-checkbox .checkmark {
  position: absolute;
  top: 1px;
  left: -15px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 0px;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: 1px solid #000;
  margin-right: 20px;
}

.fancy-checkbox:hover input ~ .checkmark {
}

.fancy-checkbox input:checked ~ .checkmark {
  background-color: #f84c59;
  border: 1px solid #f84c59;
}

.fancy-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.fancy-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.fancy-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fancy-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-btn {
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 5px #eaeaea;
  margin-top: 10px;

  font-size: 18px;
  transition: 200ms;
  cursor: pointer;
}

.dropdown-btn:hover {
  background-color: #f0f0f0;
}

.arrow {
  float: right;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px;
  z-index: 10;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registration-box textarea {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 20px;
}

.bio-field textarea {
  margin: 20px 0px;
  display: block;
  margin-bottom: 50px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.tag {
  padding: 10px 25px;
  border: 2px solid #ccc;
  border-radius: 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: white;
  box-shadow: 0px 5px 5px #eaeaea;
}

.tag.selected {
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  color: white;
  border-color: rgba(218, 90, 118, 1);
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.selected-tag {
  display: flex;
  align-items: center;
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
}

.selected-tag span {
  margin-right: 8px;
}

.selected-tag .remove-btn {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.checkbox-list {
  margin: auto;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}

/* Hide the native checkbox */
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom checkbox box */
.checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* When checked, show the red check */
.checkbox-item input:checked ~ .checkmark {
  background-color: rgba(249, 28, 45, 1);
  border-color: #b71c1c;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Checkmark icon */
.checkbox-item input:checked ~ .checkmark:after {
  display: block;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hover effect */
.checkbox-item:hover .checkmark {
  box-shadow: 0 0 5px rgba(211, 47, 47, 0.5);
}

.welcome-txt {
  padding: 50px 50px 50px 50px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
  text-align: center;
}

.welcome-txt h2 {
  margin-bottom: 10px;
}

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

.welcome-img {
  position: relative;
}

.welcome-img img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

.welcome-img::before {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(255, 255, 255, 1)
  );
}

.item1 {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  border-bottom: 1px solid #9b97973b;
  padding: 15px 30px;
  transition: 200ms;
}
.item1:hover {
  box-shadow: 0px 5px 5px #00000030;
  background-color: #eaeaea;
}

.chat-list {
  padding: 20px 5px;
}

.user-dp {
  display: flex;
  align-items: center;
  height: 70px;
}

.user-dp img {
  border-radius: 50px;
  border: 1px solid #fff;
  box-shadow: 0px 5px 5px #00000010;
  margin-right: 10px;
  height: 92%;
  width: 30%;
  object-fit: fill;
}

.chat-timer {
  text-align: right;
}
.chat-timer p {
  font-size: 12px;
  margin-bottom: 5px;
}

.chat-timer span {
  width: 20px;
  display: block;
  text-align: center;
  height: 20px;
  color: white;
  background-color: orangered;
  border-radius: 50%;
  float: right;
  line-height: 20px;
  box-shadow: 0px 5px 5px #f0263f66;
}
/* Style the tab content */
.tabcontent {
  display: none;

  border-top: none;
}

.about-user ul li {
  list-style-type: none;
  display: inline-block;
  padding: 8px 20px;
  margin-right: 10px;
  margin-bottom: 15px;
  background-color: #ff000020;
  border-radius: 50px;
  border: 1px solid #ff000050;
}

.chat-profile {
  background-color: #ff000010;
}

.welcome-txt li {
  text-align: left;
  font-size: 14px;
}

.set-preference p {
  margin: 30px 0px;
}

.set-preference {
  text-align: center;
}
.set-preference img {
  margin-top: 30px;
}

.rules-list {
  padding: 0px 30px;
}

/* .progress-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
} */

.profile-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: 4px solid white;
}

.progress-ring circle {
  fill: none;
  stroke-width: 10;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring .bg {
  stroke: #e6e6e6;
}

.progress-ring .progress {
  stroke: #ef4444;
  stroke-dasharray: 408; /* circumference of circle: 2πr = 2 * 3.14 * 65 */
  stroke-dashoffset: 408;
  transition: stroke-dashoffset 1s ease;
}

.welcome-txt {
  padding: 30px;
}

.welcome-txt h2 {
  text-align: center;
}
.percentage-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
  position: relative;
  z-index: 99;
  background: white;
  display: inline-block;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 5px 10px;
  border-radius: 50px;
  box-shadow: 0px 2px 2px #00000020;
}

.usernmae {
  margin-top: 30px;
}

.usernmae p {
  font-size: 25px;
  color: black;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
.usernmae img {
  vertical-align: middle;
  width: 28px;
  height: 30px;
  object-fit: cover;
  margin-top: -5px;
}

.profile-option {
  margin-top: 30px;
}

.profile-option ul {
  padding: 0px !important;
  margin: 0px;
}

.profile-option ul li {
  list-style-type: none;
  padding: 0px;
  margin-bottom: 10px;
}
.profile-option ul li a {
  font-size: 18px;
  border: 1px solid #eaeaea;
  box-shadow: 0px 2px 2px #00000020;
}
.profile-option ul li a i {
  color: #f84c59;
  margin-right: 20px;
  font-size: 20px;
}
.profile-option ul li a span {
  float: right;
}
.profile-option ul li a span i {
  font-size: 16px;
  color: black;
  margin-right: 0;
}

.profile-box ul {
  padding: 0px !important;
  margin: 0px !important;
  height: auto;
}
.profile-box li {
  padding: 0px !important;
  margin: 5px;
  text-align: left;
  list-style-type: disc;
  font-size: 16px;
}

.profile-box ul li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  background-color: #ffffff30;
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  z-index: 2;
  position: relative;
}

/* Prevent text selection during swipe */
.profile-card {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.action-btn-heart i {
  font-size: 20px;
}

.profile-box ul li {
  list-style-type: none;
  margin: 10px 0px;
  width: 100%;
  text-align: left;
  position: relative;
}

.usernmae p span i {
  color: dodgerblue;
  font-size: 19px;
}

.range-input {
  padding: 0px !important;

  background-color: #f84c59;
}

.slider-container {
  background: #fff;

  border-radius: 15px;

  text-align: left;
  width: 100%;
}

.slider-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.range-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;
}

.height-value {
  font-size: 16px;
  color: #4a4a4a;
}

button a {
  text-decoration: none;
  color: white;
}

.gender .selection label {
  display: inline-block;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  border-radius: 6px;
  color: #000;
  padding: 0.5em;
  cursor: pointer;
  border-radius: 15px;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0px 10px 10px #eaeaea;
  border: 1px solid #eaeaea;
}
.gender .selection input[type="radio"] {
  display: none;
}
.gender .selection {
  margin-bottom: 1em;
  width: 100%;
}
.gender .selection label:hover {
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  color: white;
}
/* .gender {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
} */
.gender .selection input[type="radio"]:checked ~ label {
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  color: white;
}

.gender .selection label i {
  display: inline-block;
  margin-right: 10px;
}

.toggle {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before,
.toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #f54b58;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.big-img {
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px dashed #ccc;
}
.big-img img {
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  border: 1px dashed #ccc;
  vertical-align: middle;
  object-fit: cover;
  height: 350px;
}

.phot-gallery ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.phot-gallery ul li {
  list-style-type: none;
  width: 100%;
  text-align: center;
  line-height: 110px;
  height: 110px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.phot-gallery ul li img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  border-radius: 5px;
  border: 1px dashed #ccc;
}

.tips {
  margin-top: 20px;
  margin-bottom: 20px;
}
.tips h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  background: #ffffff;
  padding: 2em;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: popIn 0.4s ease forwards;
  transform: scale(0.8);
  opacity: 0;
}

@keyframes popIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal h2 {
  margin-bottom: 5px;
  font-size: 1.8em;
  color: #ff4081;
}

.modal p {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 20px;
}

.modal button.close-btn {
  cursor: pointer;
}

.glow-ring {
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  top: -25%;
  left: -25%;

  filter: blur(30px);
  z-index: -1;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.close-btn2 {
  cursor: pointer;
}

.modal i {
  color: #f84c59;
  font-size: 50px;
}

@media only screen and (max-width: 768px) {
  .registration-box {
    width: 100%;
    max-width: 100%;
    padding: 0px 20px;
  }
  .footer {
    position: unset;
  }
  .page-tutle a {
    position: fixed;
    top: 30px;
    left: 20px;
    z-index: 9999999999999999999;
  }
  .chat-screen {
    display: block !important;
  }

  .page-content {
    display: block !important;
  }
  .toggle p {
    font-size: 14px !important;
    text-align: left;
  }
  .gender .selection span {
    font-size: 14px;
  }
  .page-content {
    display: block !important;
    margin-top: 100px;
  }
}
.css-13vpke-MuiSlider-root {
  color: #f84c59 !important;
}
.css-1tktgsa-MuiPaper-root-MuiPopover-paper-MuiMenu-paper {
  top: 110px !important;
  height: 70%;
}
