:root {
  /* =========== Theme Colors and Fonts =========== */
  --primary-color: #c06993;
  --report-color: #222831;
  /* Primary Girl color */
  --secondary-color: #377697;
  /* Secondary Boy color */

  --green-color: #4CAF50;
  --white-color: #ffffff;
  /* White color */
  --font-family: 'Inter', sans-serif;
  ;
  /* Global font */
}

body {
  /* =========== Body Styling =========== */
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}
.error-message{
  color:red !important;
}
.small-text {
  font-size: 10px !important;
}

@media (max-width: 768px) {
  .w-50 {
    width: 100% !important;
  }
}

a {
  text-decoration: none !important;
}

.white-hover-link {
  text-decoration: underline !important;
}

.white-hover-link:hover {
  color: #000 !important;
}
blockquote {
  background: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  padding: 15px;
  font-style: italic;
  color: #333;
}
blockquote a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}
blockquote a:hover {
  text-decoration: underline;
}
/* =========== Primary  Background Class =========== */
.bg-primary {
  background-color: var(--primary-color) !important;
  /* Sets background to primary color for default and girl */
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
  /* Sets background to primary color for boy*/
}

.bg-gray {
  background-color: #EBEBEB !important;
}

.bg-danger {
  background-color: #970000 !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-pink {
  color: var(--primary-color) !important;
}

.text-purple {
  color: var(--secondary-color) !important;
}

.rad-border-15 {
  border-radius: 15px !important;
}

.footer {
  /* position: absolute; */
  bottom: 0;
  text-align: center !important;
  margin-top: 30px;
  background-color: #0e0b0b62;
  /* Matches Bootstrap's light background */
  width: 100% !important;
}

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

/* =========== White Primary Button bg white =========== */
.button-white-primary {
  background-color: var(--white-color) !important;
  /* Button background */
  color: var(--primary-color) !important;
  /* Button text color */
  border: 2px solid var(--primary-color) !important;
  /* Button border */
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== White Primary Button Hover Effect =========== */
.button-white-primary:hover {
  background-color: transparent ;
  /* Invert background */
  color: var(--white-color) ;
  /* Invert text color */
  border: 2px solid var(--white-color) ;
  /* Button border */

}

/* =========== White Primary Button bg white for boy =========== */
.button-white-secondary {
  background-color: var(--white-color) !important;
  /* Button background */
  color: var(--secondary-color) !important;
  /* Button text color */
  border: 2px solid var(--secondary-color) !important;
  /* Button border */
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== White Primary Button Hover Effect for boy=========== */
.button-white-secondary:hover {
  background-color: transparent ;
  /* Invert background */
  color: var(--white-color) ;
  /* Invert text color */
  border: 2px solid var(--white-color) ;
  /* Button border */

}

/* =========== Pink Primary Button =========== */
.button-pink-primary {
  background-color: var(--primary-color) !important;
  /* Button background */
  color: var(--white-color) !important;
  /* Button text color */
  border: 2px solid var(--primary-color) !important;
  /* Button border */
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== Pink Primary Button Hover Effect =========== */
.button-pink-primary:hover {
  background-color: transparent !important;
  /* Invert background */
  color: var(--primary-color) !important;
  /* Invert text color */
}

/* =========== Purple Primary Button =========== */
.button-purple-primary {
  background-color: var(--secondary-color) !important;
  /* Button background */
  color: var(--white-color) !important;
  /* Button text color */
  border: 2px solid var(--secondary-color) !important;
  /* Button border */
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== Pink Primary Button Hover Effect =========== */
.button-purple-primary:hover {
  background-color: transparent !important;
  /* Invert background */
  color: var(--secondary-color) !important;
  /* Invert text color */
}

.button-success-primary {
  background-color: var(--green-color) !important;
  /* Button background */
  color: var(--white-color) !important;
  /* Button text color */
  border: 2px solid var(--green-color) !important;
  /* Button border */
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== Pink Primary Button Hover Effect =========== */
.button-success-primary:hover {
  background-color: transparent !important;
  /* Invert background */
  color: var(--green-color) !important;
  /* Invert text color */
}

/* =========== Delete Button =========== */
.btn-danger {
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== Delete Button Hover Effect =========== */
.btn-danger:hover {
  background-color: transparent !important;
  /* Invert background */
  color: var(--primary-color) !important;
  /* Invert text color */
}

.btn-report {
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  background-color: var(--report-color) !important;
  border: 2px solid var(--report-color) !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== Delete Button Hover Effect =========== */
.btn-report:hover {
  background-color: transparent !important;
  /* Invert background */
  color: var(--report-color) !important;
  /* Invert text color */
}

.btn-secondary {
  padding: 10px 20px !important;
  /* Padding for button */
  border-radius: 15px !important;
  /* Rounded corners */
  font-weight: bold !important;
  /* Bold text */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: all 0.3s ease-in-out !important;
  /* Smooth hover effect */
}

/* =========== INDEX PAGE STYLE =========== */
.index-container {
  height: 100vh !important;
}

.index-container img {
  width: 600px;
}

/* =========== Secondary Logo Class =========== */
/*Header style */
.header {
  display: flex;
  align-items: center;
  justify-content: center;

}

.secondary-logo {
  margin-top: 20px;
  width: 200px;
  margin-bottom: 20px;
}

.secondary-logo-white {
  width: 400px;
}

.zuruck-link {
  position: absolute;
  top: 20px;
  /* Adjust top position */
  left: 30px;
  /* Adjust left position */
  color: #292929;
  /* Text color */
  font-size: 17.93px;
  /* Font size */
  font-weight: 500;
  /* Font weight */
  line-height: 21.7px;
  /* Line height */
  letter-spacing: -0.015em;
  /* Letter spacing */
  text-align: left;
  /* Text alignment */
  cursor: pointer;
  /* Cursor on hover */
  text-decoration: none;
}

/* Style for the zurück link icon */
.zuruck-link i {
  margin-right: 5px;
  /* Add spacing between icon and text */
}

/* =========== BISMILLAH PAGE STYLE =========== */

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  /* Light background for contrast */
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  /* Space between countdown and button */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
}

.countdown {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  /* Change text color to black for visibility */
}

.countdown-box {
  margin: 0 10px;
  /* Space between boxes */
  padding: 10px;
  background-color: var(--primary-color);
  border-radius: 5px;
  text-align: center;
  min-width: 60px;
  /* Minimum width for boxes */
}

/*===============LOGIN=========================*/
.password-group {
  position: relative;
  display: flex;
  align-items: center;
}

.password-group input {
  flex: 1;
  padding-right: 35px;
  border-radius: 5px;
  /* Adjust as needed */
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  background: transparent;
  border: none;
  padding: 5px;
}

/* =========== REGISTRATION PAGE STYLE =========== */
.input-group {
  position: relative;
}

.input-group[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 0;
  background: #c06993;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(5px);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.input-group[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #c06993 transparent transparent transparent;
  z-index: 1000;
}

.input-group[data-tooltip]::after,
.input-group[data-tooltip]::before {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.input-group[data-tooltip]:hover::after,
.input-group[data-tooltip]:hover::before {
  opacity: 1;
}

/* Prevent default tooltip */
input {
  position: relative;
  background-color: transparent;
}

input[title] {
  pointer-events: auto;
}

.global-container {
  width: 60%;
}

.reg-container {
  width: 60%;
  text-align: center;
}

.reg-container h1 {
  color: var(--primary-color) !important;
}

.reg-container .img-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.reg-container .avatar-upload {
  position: relative;
  width: 150px;
  /* Adjust based on your image size */
  height: 150px;
}

.reg-container .avatar-label {
  display: block;
  position: relative;
  cursor: pointer;
}

.reg-container .avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /* Optional for rounded avatar */
}

.reg-container .overlay-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent overlay */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  /* Match the avatar shape */
  opacity: .5;
  transition: opacity 0.3s ease;
}

.reg-container .avatar-label:hover .overlay-label {
  opacity: 1;
  /* Show label on hover */
}

/* 
.reg-container .avatar-upload {
position: relative;
width: 150px;
height: 150px;
}

.reg-container .avatar {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--primary-color);
cursor: pointer;
}

.reg-container .avatar-label {
position: relative;
display: block;
width: 100%;
height: 100%;
} */

.reg-container #file-input {
  display: none;
}

.input-group {
  margin-bottom: 30px;
}

.input-group input {
  width: 100%;
  height: 70px;
  border-radius: 15px;
  border: 1px solid #F3F3F3;
  padding: 10px;
  box-sizing: border-box;
  background-color: #F3F3F3;
  font-family: Arial, sans-serif;

  letter-spacing: 1.2px;
}

.input-group input:focus {
  border: none;

}

.reg-container .phone-input-reg {
  width: 100% !important;
  max-width: 100% !important;

}

/* Ensure intl-tel-input's container matches full width */
.reg-container .intl-tel-input {
  width: 100% !important;
}

.reg-container .intl-tel-input .selected-flag {
  width: auto !important;
  /* Adjust flag container size for responsiveness */
}

.reg-container .iti {
  position: relative;
  display: inline-block;
  width: 100% !important;
}

@media(max-width:768px) {
  .reg-container {
    width: 90%;
  }

  .global-container {
    /* width:90% !important; */
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .secondary-logo {
    width: 120px !important;
  }

  .secondary-logo-white {
    width: 200px;
  }
}


/* =========== EINGABE CODE PAGE STYLE =========== */

.verification {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  border-radius: 15px !important;
}

.verification {
  --m-width: 350px;
  --m-height: 350px;
  --w-width: 300px;
  --w-height: 325px;
  min-height: var(--m-height);
  width: var(--m-width);
  background-color: var(--primary-color);
  box-shadow: 2px 2px 18px #00000029;
}

.verification,
.verification__wrap,
.verification__fields,
.verification__field,
.verification__verify {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.verification__wrap,
.verification__fields,
.verification__field,
.verification__header,
.verification__verify,
.verification__timeout {
  padding: 0;
  margin: 0;
  width: var(--w-width);
}

.verification__wrap {
  justify-content: space-between;
  flex-direction: column;
  height: var(--w-height);
}

.verification__title {
  font-size: 2rem;
  padding: 0;
  margin: 0;
  margin-bottom: 12px;
}

.verification__description {
  text-align: left;
  line-height: 1.6rem;
  font-size: 0.9rem;
  margin: 0;
}

.verification__header {
  height: 35%;
}

.verification__fields {
  height: 25%;
}

.verification__verify {
  height: 25%;
}

.verification__verify p {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.verification__verify p,
.verification__verify_btn {
  width: 100%;
  height: 100%;
}

.verification__verify_btn {
  width: 100%;
  height: auto;
  gap: 0px;
  border-radius: 15px;
  opacity: 0px;
  padding: 0.3rem 1rem;
  transition: transform 0.3s ease;
}

.verification__verify_btn:hover {
  transform: scale(1.05);
}

.verification__verify_btn:hover {
  transform: scale(1.05);
}

.verification__verify_btn:active {
  transform: scale(0.95);
}

.verification__field {
  justify-content: space-between;
  letter-spacing: 1.7px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  stroke: none;
  box-shadow: none;
  width: 100%;
  height: 100%;
  height: 60px;
}

.verification__field:hover,
.verification__field:focus {
  box-shadow: none;
}

.verification__input {
  letter-spacing: 1.7px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  stroke: none;
  box-shadow: none;
  width: 150px;
  height: 50px;
  transition: 0.2s 0s ease-out;
  width: 60px;
  height: 60px;
  border-radius: 9px;
  padding: 16px 0;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: bold;
}

.verification__input:hover {
  box-shadow: 0 0 0 0.25rem var(--color-input-hover);
}

.verification__input:focus {
  box-shadow: 0 0 0 0.25rem var(--color-input-focus);
}

.verification__timeout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 25px;
}

.verification__timeout p {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  text-align: justify;
  padding: 4px 2px;
  padding-left: 4px;
  color: #fff;
}

.verification__timeout strong {
  display: inline-block;
  width: 55px;
  text-align: center;
}

.verification__timeout,
.verification__header,
.verification__fields {
  margin-right: 9px;
  margin-left: 9px;
}

.verification__send_new {
  border: none;
  outline: none;
  stroke: none;
  box-shadow: none;
  cursor: pointer;
  width: auto;
  height: 25px;
  border-radius: 15px;
  top: 50%;
  display: none;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 5px 2px;
  background: transparent;
  color: inherit;
  font: inherit;
  transition: top 0.5s 0.1s ease, height 0.5s 0.1s ease, transform 0.3s ease, background 0.3s ease;
}

.verification--timed-out {
  position: relative;
}

.verification--timed-out .verification__send_new {
  display: block;
  border: none;
  outline: none;
  stroke: none;
  box-shadow: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
}

.verification--timed-out .verification__send_new:hover {
  transform: scale(1.05);
}

.verification--timed-out .verification__send_new:active {
  transform: scale(0.95);
}

/* --- RESPONSIVE --- */
/* [media MOBILE] */
@media (max-width: 375px) {
  .verification {
    --m-width: 350px;
    /* --m-height: 325px; */
    --w-width: 300px;

    /* margin-top: -75px; */
    padding: 15px;
  }

  .verification__input {
    width: 55px;
    height: 55px;
    padding: 8px 0;
    font-size: 1.5rem;
  }
}

/* --- THEME --- */
/* [DEFAUTL] */
.verification {

  color: var(--color-secondary);
}

.verification__title {
  color: #fff;
  ;
}

.verification__description {
  color: #fff;
  ;
}

.verification__timeout {
  color: var(--color-secondary);
}

.verification__input {
  background-color: var(--white-color);
}

.verification__input:hover {
  box-shadow: 0 0 0 0.25rem var(--color-input-hover);
}

.verification__input:focus {
  box-shadow: 0 0 0 0.25rem var(--color-input-focus);
}

[data-theme] {

  color: var(--color-black);
}

/* [theme DARK] */
[data-theme=dark] {
  --color-primary: #abbcf2;
  --color-secondary: #6f7a9d;
  --color-gray: #8d9bc7;
  --color-light-gray: #333848;
  --color-input-hover: #abbcf2;
  --color-input-focus: #abbcf2;
}

[data-theme=dark] ::-moz-selection {
  color: var(--color-light-gray);
  background: var(--color-primary);
}

[data-theme=dark] ::selection {
  color: var(--color-light-gray);
  background: var(--color-primary);
}

[data-theme=dark-2] {
  /* ALT : secondary: #2bbdff */
}

[data-theme=dark-2] {
  --color-primary: #ecb365;
  --color-secondary: #5296b5;
  --color-gray: #064663;
  --color-light-gray: #04293a;
  --color-input-hover: #06466399;
  --color-input-focus: #06466373;
}

[data-theme=dark-2] .verification__description,
[data-theme=dark-2] .verification__timeout {
  color: var(--color-secondary);
}

[data-theme=dark-2] .verification__input {
  color: #fff
}

::-moz-selection {
  color: var(--color-gray);
  background: var(--color-primary);
}

::selection {
  color: var(--color-gray);
  background: var(--color-primary);
}

.theme {
  border: none;
  outline: none;
  stroke: none;
  box-shadow: none;
  cursor: pointer;
  position: fixed;
  left: 15px;
  bottom: 15px;
  width: 95px;
  height: 35px;
  border-radius: 50px;
  padding: 9px;
  color: var(--color-white);
  background: var(--color-secondary);
  opacity: 0.3;
}

.theme:hover {
  background: var(--color-primary);
  opacity: 1;
}

.hand-icon {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 150px;
  /* Adjust the height as needed */
  height: auto;
  margin-bottom: 20px;
}

/*============ DU BIST PAGE=================*/
.gender-btn {
  box-shadow: 2px 0px 15px #00000029;
  transition: transform 0.3s ease;
  text-align: center;
  /* margin-right: 20px; */
}

.gender-btn:hover {
  transform: scale(1.05);
}

.circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  /* Circle background color */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  /* Add some space below the circle */
}


.wali {
  max-width: 95%;
  /* Adjust the size of the tick icon */
  max-height: 95%;
  /* Adjust the size of the tick icon */
  border-radius: 169.5px;
  opacity: 0px;
  box-shadow: 0px 4px 4px 0px #00000040;


}

/*============== WALI NUMBER PAGE STYEL================*/
.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
  color: black;
}

.input-container {
  display: flex;
  align-items: center;
  background-color: transparent;
  margin-bottom: 20px;
}


.phone-input {
  background-color: transparent;
  color: #fff !important;
  width: 22rem !important;
  height: 3rem !important;
  border-radius: 12px;
  border: 2px solid #FFFFFF80;
  padding-left: 10px;
}

.wali-num .iti {
  width: fit-content !important;
}

.iti__arrow {
  fill: #fff !important;
}


.input-container ::placeholder {
  color: #fff;
  opacity: 1;
}

/*=========== WALI INFO PAGE STYLE ================*/
.wali-info .contact-box {
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--white-color);
}

.wali-info .phone-icon {
  margin-right: 10px;
}

.wali-info .copy-icon {
  margin-left: auto;
}

.wali-info .phone-icon:before {
  margin-left: 5px;
  font-size: 20px;
}

.wali-info .copy-icon:before {
  font-size: 20px;
}

.wali-info .textarea-container {
  width: 100%;
  margin-bottom: 20px;
}

.wali-info textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #fff;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 19.36px;
  letter-spacing: -0.015em;
  text-align: left;
  resize: none;
}

.wali-info textarea::placeholder {
  color: #FFF;
}

/*============= VERIFICATION PAGE STYLE =================*/
.verification-abg .circle {
  width: 180px;
  min-height: 180px;
  border-radius: 50%;
  background: #fff;
  /* Circle background color */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px !important;
  /* Add some space below the circle */
  margin: 0 auto;
  /* Center the circle horizontally */
}

.tick-icon {

  font-size: 6rem;
  /* Adjust the size of the icon */
}

.verification-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 38.73px;
  letter-spacing: -0.015em;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}


/*================== EDIT PROFILE STYLE ================*/
/* Make Select2 look exactly like Bootstrap form-control */
.select2-container .select2-selection--single {
  height: calc(2.25rem + 2px) !important;
  min-width: 230px !important;
  /* Match Bootstrap's default height */
  border: 1px solid #ced4da !important;
  /* Match Bootstrap border */
  border-radius: 0.375rem !important;
  /* Match Bootstrap border radius */
  padding-left: 0.75rem !important;
  /* Match Bootstrap padding */
  background-color: #fff !important;
  /* Match Bootstrap background */
  box-shadow: none !important;
  /* Remove additional shadow */
  font-size: 1rem !important;
  /* Match Bootstrap font size */
  color: #495057 !important;
  /* Match Bootstrap text color */
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 2.25rem !important;
  /* Match Bootstrap line height */
  padding-left: 0 !important;
  /* Ensure no extra padding */
  color: #495057 !important;
  /* Text color */
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 2.25rem !important;
  /* Match arrow height */
  right: 0.75rem !important;
  /* Position arrow correctly */
}

.select2-container--default .select2-selection--single:focus {
  border-color: #80bdff !important;
  /* Match Bootstrap focus border color */
  outline: 0 !important;
  /* Remove outline */
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
  /* Match Bootstrap focus shadow */
}

/* Dropdown styles */
.select2-container .select2-dropdown {
  border-radius: 0.375rem !important;
  /* Match Bootstrap border radius */
  border: 1px solid #ced4da !important;
  /* Match Bootstrap border */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
  /* Dropdown shadow */
}

.select2-container .select2-results__option {
  padding: 0.375rem 0.75rem !important;
  /* Match Bootstrap padding */
  font-size: 1rem !important;
  /* Match Bootstrap font size */
}

.selected-tab {
  border-bottom: 2px solid #c6c7d9;
}

.range-item {
  position: relative;
}

.range-item:not(:last-child) {
  margin-bottom: 24px;
}

.range-item .range-input {
  margin-top: 6px;
}

.range-item .range-input input {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.range-item ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: calc(100% + 34.4px);
  margin: 0 -17px;
}

.range-item ul .list-inline-item:not(:last-child) {
  margin-right: 0;
}

.range-item ul .list-inline-item span {
  position: relative;
  min-width: 58px;
  text-align: center;
  display: block;
  font-size: 14px;
  padding-top: 4px;
  word-break: break-word;
  color: black;
}

.range-item .range-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  width: calc(100% - 14px);
  background-color: #ddd;
  z-index: 0;
  margin: 0 7px;
  border-radius: 50px;
  overflow: hidden;
}

.range-item .range-input.disable-range+ul .list-inline-item span::before {
  background-color: #b1b1b1;
}

.range-item .range-input.disable-range .range-line .active-line {
  background-color: #b1b1b1;
}

.range-item .range-input.disable-range+ul .list-inline-item.active span::before {
  background-color: #777777;
}

.range-item .range-input .dot-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 24px);
  left: 0;
  z-index: 1;
}

.range-item .range-input .active-dot {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  cursor: pointer;
  background-color: #ddd;
  height: 24px;
  width: 24px;
  border: 4px solid #286987;
  z-index: 11;
  left: 0%;
  border-radius: 50%;
}

.range-item .range-input .range-line .active-line {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #286987;
  transition: all 0.1s ease;
}

.range-item ul .list-inline-item span::before {
  content: "";
  display: block;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #696969;
}

.range-item ul .list-inline-item.active span::before {
  background-color: white;
}

.range-item .range-input input:disabled~.dot-line .active-dot {
  background-color: #d9d9d9;
  border: 4px solid #b1b1b1;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  margin-top: -8px;
  /* Centers thumb on the track */
  background-color: #0000;
  height: 15px;
  width: 15px;
  border: 4px solid #0000;
  z-index: 11;
  box-shadow: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  margin-top: -8px;
  /* Centers thumb on the track */
  background-color: #0000;
  height: 24px;
  width: 24px;
  border: 4px solid #0000;
  box-shadow: none;
  z-index: 11;
}

input[type="range"]::-webkit-slider-runnable-track {
  background-color: #f0f0f000;
}

input[type="range"]::-moz-range-progress {
  background-color: #f0f0f000;
}

input[type="range"]::-ms-track {
  background-color: #f0f0f000;
}

input[type="range"]::-moz-range-track {
  background-color: #f0f0f000;
}

input[type="range"]::-ms-fill-lower {
  background-color: #f0f0f000;
}

input[type="range"]::-ms-fill-upper {
  background-color: #f0f0f000;
}

input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: none !important;
  background-color: #f0f0f000;
}

input[type="range"]:focus::-moz-range-thumb {
  box-shadow: none !important;
  background-color: #f0f0f000;
}

input[type="range"]:focus::-ms-thumb {
  background-color: #f0f0f000;
  box-shadow: none !important;
}

input[type="range"]:disabled::-webkit-slider-thumb {
  background-color: #0000;
  border: 4px solid #0000;
}

input[type="range"]:disabled::-moz-range-thumb {
  background-color: #0000;
  border: 4px solid #0000;
}


.info1 {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 24.2px;
  letter-spacing: -0.015em;
  text-align: left;

}

.antwort {
  color: #727272;

}

.hidden {
  display: none;
}

.toggle::after {
  content: "\2193";
  margin-right: 5px;
}


.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 20px;
}





.input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.input-container textarea {
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 10px;
  width: calc(100% - 40px);
  /* Adjust width to accommodate the close icon */
  resize: none;
  /* Prevent manual resizing */
  overflow: hidden;
  /* Hide overflow to wrap text properly */
}

.input-container .clear {
  margin-left: -30px;
  cursor: pointer;
  font-size: 20px;
}





.dropdown-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
}

.dropdown-list li {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-list li.selected {
  background-color: #f0f0f0;
}

.flag-icon {
  margin-right: 8px;
}

.selected-countries {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.selected-country {
  margin-right: 10px;
}

.close-button {
  margin-left: 5px;
  cursor: pointer;
}

.custom-dropdown {
  display: none;
}

.custom-dropdown-general {
  position: relative;
  display: inline-block;
  width: 100%;
}

.field-input-general {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

.dropdown-list-general {
  display: none;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
  margin-top: 0;
  padding: 0;
  background-color: #fff;
  z-index: 1;
  list-style: none;
  text-align: center;
  /* Center-align dropdown options */
}

.dropdown-option-general {
  padding: 12px 12px;
  cursor: pointer;
  border-bottom: 1px solid #EEEEEE;
  font-weight: 600;
}

.dropdown-option-general:last-child {
  border-bottom: none;
}

.dropdown-option-general.selected {
  background-color: #f0f0f0;
  font-weight: 600;
}

.field-input-general:focus+.custom-dropdown-general .dropdown-list-general {
  display: block;
}

.hidden {
  display: none;
}

.subcategories {
  display: none;
  list-style-type: none;
  padding-left: 20px;
}

.custom-dropdown-location {
  display: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  background: #fff;
  z-index: 1;
}

.dropdown-list-location {
  max-height: 200px;
  overflow-y: auto;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.category {
  cursor: pointer;
  padding: 5px 0;
}

.category .flag-icon {
  margin-right: 8px;
}

.search-input-location {
  margin-bottom: 10px;
  width: calc(100% - 20px);
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.category li {
  padding-left: 20px;
  margin-bottom: 5px;
}

.edit-pro .image-container {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;

}

.edit-pro .image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.edit-pro .image-container .form-check {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.7);

}

.edit-pro .make-private {

  display: inline !important;
  text-align: left;
  margin-bottom: 10px;
}

.edit-pro .make-private label {
  font-size: 10px !important;

}

.edit-pro .filter-links {
  text-align: center;
  margin-bottom: 15px;
}

.edit-pro .filter-links a {
  margin-right: 10px;
  text-decoration: none;
  color: #000;
}

.edit-pro .filter-links a:hover {
  text-decoration: underline;
}

/* Video Grid */
video {
  height: 200px !important;
}

/*=========== SUCHE PAGE STYLE ============*/
.suche-container {
  display: block ;
  flex-direction: column;
  align-items: center;
  /* max-width: 600px; */
  width: 100%;
}


.suche-container .search-bar {
  width: 100%;
  height: 54.92px;
  gap: 0px;
  border-radius: 11.21px;
  opacity: 0px;
  background: var(--primary-color);
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  margin-top: 20px;
}


.suche-container .search-icon {
  color: white;
  margin-right: 10px;
  font-weight: 800;
  font-size: 20px;
}

.suche-container .search-label {
  color: white;
  font-size: 17px;
  /* Adjust as needed */
  margin-left: 10px;
  font-weight: 500;
}

.suche-container .filter-icon {
  color: white;
  margin-left: auto;
  /* Align to the right */
  margin-right: 10px;
  font-size: 25px;
}

.suche-container a {

  color: white;
  margin-left: auto;
  /* Align to the right */
  margin-right: 10px;
  /* font-size: 25px; */
}




/* Modified Navbar Styles */
.suche-container .navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 0;
  width: 100% !important;
  border-radius: 15px !important;
}

.suche-container .navbar a {

  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.suche-container .navbar a:hover {
  opacity: 0.8;
}


.suche-container .search-input {
  width: 100% !important;
  border: none;
  background-color: transparent;
  color: white;
  outline: none;
  caret-color: white;
}

.suche-container .search-input::placeholder {
  color: white;
  font-size: 17px;
}

.suche-container .main-content {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  width: 100% !important;
  margin: 0;

}

.suche-container .content-wrapper {
  background: var(--primary-color);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  padding: 10px;
  align-items: center;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 15px;

}

@media (max-width:768px) {
  .suche-container .content-wrapper {
    padding: 10px !important;

  }

  .suche-container .card {
    padding: 2px !important;
    border-radius: 5px !important;
  }

  .suche-container .card p {
    font-size: 14px !important;

  }
}

.suche-container .left-cards,
.suche-container .right-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;

}

@media (max-width: 576px) {
  .profile-row {
    flex-direction: column !important;
    display: flex !important;
  }
  .profile-row > .col-6 {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.suche-container .left-cards .card:nth-child(1),
.suche-container .right-cards .card:nth-child(1) {
  grid-column: span 2;
}

.suche-container .card {
  display: flex !important;
  align-items: center !important;
  padding: 10px !important;
  width: 100% !important;
  text-align: center !important;
  border: none !important;
  background-color: var(--white-color);

  /* padding: 0 4.5px 0; */
  border-radius: 15px;
  /* color: #e7cec7; */
}

.suche-container .card p {
  padding: 0px !important;
  margin: 0px !important;
}

.suche-container .avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

}

.suche-container .avatar-img {
  width: 120px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.suche-container .avatar-text {
  color: white;
  margin-top: 10px;
  font-size: 20px;
}

.suche-container .flag-icon {
  top: 25%;
}

@media (max-width: 350px) {
  .suche-container .content-wrapper {
    gap: 0px;
    padding: 10px;
  }

  .suche-container .left-cards,
  .suche-container .right-cards {
    font-size: 12px;

  }
}

/*============= SETTING SCREEN STYLE =================*/
/* Container for profile information */
.setting-container .profile-info {
  margin-top: 20px;
  /* Adjust margin as needed */
  display: flex;
  font-size: 17.93px;
  font-weight: 400;
  line-height: 21.7px;
  letter-spacing: -0.015em;
  text-align: left;
  bottom: 0;

}

.setting-container .custom-box {
  width: 100%;
  max-width: 500px;
  height: 64px;
  gap: 0px;
  border-radius: 7px;
  background: #EBEBEB;
  margin-top: 20px;
  /* Adjust margin as needed */
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 50px;
}

/* Styling for the icon */
.setting-container .custom-box i {
  font-size: 30px !important;
  /* Adjust size as needed */
  font-weight: 900 !important;
}

/* Styling for the text */
.setting-container .custom-box span {
  margin-left: 15px;
  /* Adjust space between icon and text */
  font-size: 17.93px;
  font-weight: 500;
}

/* Increase the size of the toggle switch */
.switch-lg .form-check-input {
  width: 3rem !important;
  /* Adjust the width */
  height: 1.5rem !important;
  /* Adjust the height */
  border-radius: 1.5rem !important;
  /* Rounded edges */
}



.switch-lg .form-check-input:before {
  transform: scale(1.5);
  /* Scale the toggle circle */
}

.setting-container h1 {
  text-align: center !important;
  /* Keeps the title centered */
}

.setting-container .profile-info,
.setting-container .custom-box {
  text-align: left !important;
  /* Aligns text to the left */
  width: 100% !important;
  /* Ensures the elements take full width for alignment */
}

.setting-container {
  max-width: 500px !important;
}

/*=========== FORGOT PASSWORD SCREEN ====*/
.forgot-container {
  width: 50% !important;
}

@media (max-width:768px) {
  .forgot-container {
    width: 90% !important;
  }
}

/*============ REPORT SCREEN =====*/
.report-container .card {
  max-width: 250px;
  width: 250px;
  border-radius: 15px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card2 {
  max-width: 250px;
  width: 250px;
  border-radius: 15px;
  padding: 10px;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.report-container .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px auto;
  overflow: hidden;
  /* Added to make sure image stays in circle */
}

.report-container .avatar img {
  width: 100%;
  /* Added to fill the avatar circle */
  height: 100%;
  /* Added to fill the avatar circle */
  object-fit: cover;
  /* Added to maintain aspect ratio */
}



.report-container .line {
  margin-top: 20px;
}

@media (max-width:768px) {
  .report-container {
    display: block !important;
  }

  .report-container .card {
    max-width: 100% !important;
    width: 100% !important;
  }
  .card2 {
    max-width: 100% !important;
    width: 100% !important;
    flex-direction: column;
    gap: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*============== REPORT DETAIL CONTAINER ==========*/
/* .report-detail-container .text-field {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000000;
  outline: none;
  font-size: 16px;
  padding: 5px 0;
  box-sizing: border-box;
  position: relative;
}
.report-detail-container .text-field:focus {
  border-bottom: 2px solid #000000;
}
.report-detail-container .text-field input::placeholder {
  color: #000000 !important;
} */
/* .report-detail-container .icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
} */
.search-bar-container {
  position: relative;
  display: block;
  max-width: 500px !important;
  width: 100% !important;
}

/*================= DEIN PROFILE STYLE ===================*/

.dp-container .input-field,
.dp-container .phone-input,
.dp-container .country-select {
  background-color: #F3F3F3;
  border: none;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.dp-container .input-field::placeholder,
.dp-container .input-field2 ::placeholder {
  color: #615e5e;
  font-size: 16px;
}

.dp-container .input-field2 {
  background-color: #F3F3F3;
  border: none;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;

  width: 100% !important;
}

.dp-container .phone-input {
  width: 100% !important;
}

.dp-container .country-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M7 10l5 5 5-5H7z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.dp-container .country-select::-ms-expand {
  display: none;
}

.dp-container .country-select-dropdown {
  display: none;
  position: absolute;
  background-color: #fff !important;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-top: 5px;
  width: calc(100% - 2px);
  box-sizing: border-box;
}

.dp-container .country-select:focus+.country-select-dropdown,
.dp-container .country-select.open+.country-select-dropdown {
  display: block;
}



.dp-container .color-palette {
  display: block;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 30px;
  justify-content: center;
  margin-left: 30px;
}

.dp-container .color-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}

.dp-container .color-option {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ccc;
}

.dp-container .color-option.selected {
  border: 2px solid #808080;
}

.dp-container .avatar-container {
  width: 88.97px;
  height: 86.97px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: gray;
  border-radius: 50%;
  margin-right: 50px;
}

.dp-container .avatar {
  width: 80px;
  height: 80px;
  border-radius: 93px;
  border-radius: 50%;
  background-image: url('your-avatar-img-url.jpg');
  background-size: cover;
}

.dp-container .button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}






.dp-container .avatar-upload {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  /* Enhanced box shadow */
  padding: 20px;
  width: 80%;
  transition: transform 0.2s;
  /* For hover effect on the card */
}

.dp-container .avatar-upload:hover {
  transform: translateY(-3px);
  /* Slight lift on hover */
}



.dp-container #fileUpload {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

.dp-container .avatar-preview {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.dp-container .avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

.dp-container .avatar-preview img:hover {
  transform: scale(1.05);
}

.dp-container .video-card {
  display: flex;
  flex-direction: column !important;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
  /* For hover effect on the card */
  width: 100%;
  /* Full width of the viewport */
}

.dp-container .video-card:hover {
  transform: translateY(-3px);
  /* Slight lift on hover */
}

.dp-container #video-preview {
  display: inline-flex;
  margin-top: 10px;
  width: 100%;
  /* Full width of the card */
  border-radius: 8px;

}

.error-message {
  color: red;
}

.dp-container #error-message {
  color: red;
}

.dp-container {
  width: 600px !important;
}

.dp-iti {
  width: 100% !important;


}

@media (max-width:768px) {
  .dp-container {
    width: 100% !important;
  }
}

/*============== CHAT PAGE STYLE ==============*/

.line {
  width: 100%;
  height: 10px;
  gap: 0px;
  border-radius: 70px;
  margin-top: 10px;
}

/*============== BANNED PAGE STYLE ==============*/
.banned .circle {
  background-color: white;
  width: 150px;
  /* Larger circle */
  height: 150px;
  /* Larger circle */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  /* More space below the circle */
  box-shadow: 0px 4px 4px 0px #00000040;

}

.banned .circle img {
  max-width: 100%;
  max-height: 100%;
}

/*============== AGB SETTING PAGE STYLE ==========*/
.custom-div {
  width: 100%;
  /* Set a percentage width for responsiveness */
  /* max-width: 411px; */
  height: 69px;
  border-radius: 7px;
  background: #EBEBEB;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  /* Add left and right padding */
  margin-bottom: 40px;
  /* Add bottom margin */
}

/* Styling for the text on the div */
.agb-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24.2px;
  text-align: left;

}

/* Styling for the globe icon */
.globe-icon {
  font-size: 24px;
  color: #fff;
}

/*=========== AFRAGEN PAGE STYLE ===============*/
.anfragen-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.anfragen {

  text-align: center;
  margin: 0;
}

.icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.notification-icon,
.settings-icon {

  font-size: 24px;
  margin: 0 30px;
  cursor: pointer;
}

/*=============== DASHBOARD STYLE ========*/
.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link i {
  flex-shrink: 0;
  position: relative;
  /* Ensures that the badge is positioned relative to the icon */
}

/* Red counter circle for notifications */
.badge-notification {
  position: absolute;
  top: -5px;
  /* right: -5px; */
  background-color: red;
  color: white;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px;
  min-width: 18px;
  text-align: center;
  line-height: 18px;
}

.nav-item {
  position: relative;
}

/*============ WAKIL PAGE STYLE ===========*/
.wakil .contact-box {
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 80%;
  font-weight: 800;
  margin-bottom: 20px;
  border: 3px solid #FFFFFF;
  /* Box border */
  margin-left: 10%;
}

.wakil .phone-icon {
  margin-right: 10px;
}

.wakil .copy-icon {
  margin-left: auto;
  /* Push the copy icon to the right */
}

/* Custom icons */
.wakil .phone-icon:before {
  margin-left: 5px;
  font-size: 24px;
}

.wakil .copy-icon:before {

  font-size: 20px;
}

/*============== HEADER ===========*/
.notification-item.unread {
  font-weight: bold;
}

.notification-item.read {
  color: gray;
}

.notification-icon {
  position: relative;
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, -50%);
  background-color: red;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 0.2rem 0.4rem;
}

.btn-light {
  background-color: transparent !important;
  border: none !important;
}

.btn-light:hover {
  color: #292929 !important;
}

#pills-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* Prevent wrapping */
  overflow-x: auto;
  /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on iOS */
}

#pills-tab .nav-item {
  flex: 0 0 auto;
  /* Prevent items from shrinking */
  margin-right: 15px;
  /* Space between the items */
}

/* Optional: Style the scrollbar */
#pills-tab::-webkit-scrollbar {
  height: 8px;
  /* Adjust the height of the scrollbar */
}

#pills-tab::-webkit-scrollbar-thumb {
  background: #888;
  /* Color of the scrollbar thumb */
}

#pills-tab::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Track color */
}

/*=================== REQUEST PROFILE ===============*/
.range-input {
  position: relative;
  width: 100%;
}

.range-line {
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #ddd;
  top: 50%;
  transform: translateY(-50%);
}

.active-line {
  position: absolute;
  height: 5px;

  top: 50%;
  transform: translateY(-50%);
}

.dot-line {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.active-dot {
  position: absolute;
  width: 15px;
  height: 15px;

  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width:768px) {
  #myTab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll !important;
    /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: thin;
    /* Optional for better visibility of scrollbar */
  }

  #myTab .nav-item {
    flex: 0 0 auto;
    /* Prevent the items from shrinking */
  }

  #myTab::-webkit-scrollbar {
    height: 8px;
    /* Adjust the height of the scrollbar */
  }

  #myTab::-webkit-scrollbar-thumb {
    background: #888;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Rounded scrollbar thumb */
  }

  #myTab::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
  }

  .sticky-btn {
    font-size: 10px !important;
    padding: 3px;
    width: 90% !important;
    margin-top: 60px !important;
    position: sticky !important;
  }
}

.sticky-btn {
  position: fixed !important;
  /* For other modern browsers */
  top: 0;
  /* Stick to the top of the viewport */
  z-index: 9999 !important;
  /* Ensure it's on top of other elements */
  background-color: gray !important;
  /* Custom background color */
  color: var(--white-color);
  /* Custom text color */
  border: none;
  /* Optional border */
  padding: 10px 20px;
  /* Adjust padding */
  font-size: 16px;
  /* Adjust font size */
  width: 50%;
  /* Make it span the full width */
  text-align: center;
  /* Center the text */
  box-sizing: border-box;
  /* Ensure padding doesn't affect width */
  border-radius: 15px !important;
}


/*============== MY PROFILE ===================*/
.circle-container-mp {
  position: relative;
  /* Sets reference point for absolute positioning */
  display: inline-block;
}

.circle {
  position: relative;
  /* Ensures child elements can use absolute positioning */
  width: 100px;
  /* Example size, adjust as needed */
  height: 100px;
  /* Example size, adjust as needed */
  border-radius: 50%;
  overflow: hidden;
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image fills the circle without distortion */
  border-radius: 50%;
}

.edit-icon {
  position: absolute;
  bottom: 5px;
  /* Adjust as needed for spacing */
  right: 5px;
  /* Adjust as needed for spacing */
  background-color: white;
  /* Optional: Background for better visibility */
  border-radius: 50%;
  padding: 5px;
  /* Optional: Adds space around the icon */
  font-size: 16px;
  /* Adjust size of the icon */
  color: #333;
  /* Adjust color */
  cursor: pointer;
}

/*===================== EDIT PROFILE =======*/
@media (max-width:768px) {


  .select2-container {
    width: 100% !important;
  }
}

.subcategories {
  display: none;
  list-style-type: none;
  padding-left: 20px;
}

.custom-dropdown-location {
  display: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  background: #fff;
  z-index: 1;
}

.dropdown-list-location {
  max-height: 200px;
  overflow-y: auto;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.category {
  cursor: pointer;
  padding: 5px 0;
}

.category .flag-icon {
  margin-right: 8px;
}

.search-input-location {
  margin-bottom: 10px;
  width: calc(100% - 20px);
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.category li {
  padding-left: 20px;
  margin-bottom: 5px;
}

.field-input-general:focus+.custom-dropdown-general .dropdown-list-general {
  display: block;
}

/*============ FILTER PAGE =*/
.ft-container .additional-container {
  width: 100%;
  /* Adjust width as needed */
  height: auto;
  background: #fff !important;
  box-shadow: 0px 2px 18px #00000029;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px;
  /* Add padding for spacing */
  border-radius: 10px;
  /* Add border-radius for rounded corners */
}

.ft-container .additional-lock-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #c6c7d9;
  font-size: 20px;
  /* Adjust font size as needed */
}

.ft-container label {
  font-weight: 700 !important;
}

@media (max-width:768px) {
  .ft-container.select2-container {
    width: 100px !important;
  }
}