@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
}
body {
  margin: 0 !important;
}
.container {
  max-width: 1323px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn-wrap {
  width: 176px;
  height: 56px;
  border-radius: 10px;
  padding: 9px 21px 9px 21px;
  background: #aa3339;
  border: 1px solid #aa3339;
  font-family: Manrope;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: capitalize;
  color: #fff !important;
  text-decoration: none;
  display: flex!important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.btn-wrap:hover, button.btn-view:hover {
  opacity: 0.8;
  border: unset;
  color: #fff;
}
/* header start here */
.header-main {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  z-index: 1;
  max-width: 1323px;
  margin: 0 auto;
  padding: 0 15px;
  transform: translate(-50%, 0);
}
.header-left-logo img {
  width: 244px;
  height: 95px;
  object-fit: cover;
}
.header-main-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-wrap.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border: unset;
    width: auto;
}

.user-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Inter";
}
.user-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: "Manrope";
}
/* header end here */
/* Hero Section Styles */
.hero-section {
  position: relative;
  padding-block: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f2b55cc;
}
.hero-content {
  max-width: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}
p.hero-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  margin: 40px 0 45px 0;
  width: 100%;
  max-width: 66%;
}
.hero-content .hero-logo {
  font-weight: 700;
  font-size: 62px;
  line-height: 72px;
  text-align: center;
  color: #fff;
}
/* About Us Section Styles */
.about-section {
  padding: 0;
  background-color: #fff;
  position: relative;
  height: 100%;
}
.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  max-width: 838px;
  height: 100%;
  object-fit: cover;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  height: 100%;
}
h2.typo-head-2 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #111111;
  margin-bottom: 40px;
}
.about-text {
  padding-block: 162px;
     padding-left: 20px;
}

/* How It Works Section Styles */
.how-it-works-section {
  padding: 110px 0;
  background-color: #f5f4ff;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 120px 0 50px 0;
}
.process-steps .step {
  text-align: center;
  padding: 100px 28px 40px 28px;
  border-radius: 28px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-steps .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 128px;
  height: 128px;
  background: #aa3339;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-number span {
  border: 2px solid #868686;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-number span img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}
.step-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #111111;
}

.step-description {
  color: #666;
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 60px 0;
}

.cta-section {
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, #3d8b40);
}

/* Process connector lines */

/* Testimonials Carousel */
.testimonials-section {
  padding-block: 120px;
}
.testimonials-section h2.typo-head-2 {
  margin-bottom: 40px;
}
.about-content p,
.testimonials-section p.section-subtitle {
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.testimonials-section p.section-subtitle {
  width: 100%;
  max-width: 865px;
  margin: 0 auto;
}

/* test */
.testimonial-slider {
    position: relative;
    max-width: 1203px;
    margin: 0 auto;
}
.owl-carousel .testimonial {
  margin: 0;
  padding: 30px 20px;
  border-radius: 5px;
  text-align: left;
  width: 100%;
  border: 1px solid #e3e3e3;
  background: #ffffff;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 23px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: #1f2b55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
  line-height: 30px;
  font-family: "Manrope";
  font-weight: 700;
}
.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  color: #000;
  margin-bottom: 4px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.testimonial-info span,
.testimonial p {
  color: #666666;
  font-family: Manrope;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.testimonial p {
  line-height: 30px;
  font-size: 16px;
}
.stars {
    color: #ff8c00;
    font-size: 16px;
    margin-left: auto;
    letter-spacing: 2px;
    margin-top: 25px;
}
.testimonial p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 108px;
}
.stars i {
  font-size: 17px;
  color: #f7871b;
}

/* Owl Carousel Custom Navigation */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: unset;
  border-radius: 50%;
  color: white !important;
  font-size: 18px;
  line-height: 45px !important;
  transition: all 0.3s ease;
  border: 2.21px solid #aa33391a;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-carousel .owl-nav button.owl-prev svg path,
.owl-carousel .owl-nav button.owl-next svg path {
  fill: #aa3339;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: #b43939 !important;
  transform: translateY(-50%) scale(1.1);
}
.owl-carousel .owl-nav button.owl-prev:hover svg path,
.owl-carousel .owl-nav button.owl-next:hover svg path {
  fill: #fff;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -60px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -60px;
}

.owl-carousel .owl-nav button span {
  line-height: 45px;
}

.owl-carousel .owl-dots {
  display: none;
}

/* Footer Section Styles */
.footer-section {
  background: #030a22;
  padding-top: 84px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 100%;
  max-width: 244px;
  object-fit: cover;
}
.footer-content p.footer-description {
  margin-top: 31px;
  width: 100%;
  max-width: 631px;
  margin-bottom: 58px;
}
.footer-content p.footer-description,
p.copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
p.copyright {
  margin: 0;
  padding-block: 25px;
  border-top: 1px solid #414141;
  width: 100%;
}
.testimonials-section .section-header {
  flex-direction: column;
  margin-bottom: 50px;
}
thead.table-header tr th {
    white-space: nowrap;
}
/* profile css start */
.hero-section.hl-bg {
  padding-block: 170px;
}
.section-header button.btn-wrap {
  width: 216px;
}
.profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 92px;
}
.avatar {
  width: 125px;
  height: 125px;
  background-color: #1f2b55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Inter;
  font-weight: 600;
  font-size: 42px;
  line-height: 100%;
}
.profile-info h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 11px;
  color: #111111;
  line-height: 100%;
}
.profile-info p {
    color: #646464;
    font-family: Manrope;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
    margin: 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h3, .simple-popup .simple-content h3 { 
  color: #000000;
  font-family: Manrope;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
}
.btn-primary {
  background-color: #a73b3b;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #8b3030;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 50px;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}
.table-container thead {
  background-color: #111111;
  color: #fff;
}

.table-container th {
    padding: 22px 16px;
    text-align: left;
    font-family: Manrope;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}
.table-container td {
  padding: 20px 16px;
  border-bottom: 1px solid #e0e0e0;
  color: #646464;
  background: #fafafa;
  font-family: Manrope;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
}

.table-container tbody tr:last-child td {
  border-bottom: none;
}

.table-container tbody tr:hover {
  background-color: #f9f9f9;
}

.btn-view {
  background-color: #aa3339;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 13px;
  transition: background-color 0.3s;
  width: 92px;
  height: 44px;
}

.rate-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  line-height: 30px;
}

.hero-section h2.hero-logo {
  font-size: 48px;
  line-height: 100%;
}
.profile-main-sec {
  padding-block: 90px 120px;
}
.btn-wrap.bg-none {
  background: transparent;
  color: #aa3339 !important;
}
.view-btn-main .btn-wrap.bg-none {
    border: 2px solid #aa3339;
}
.view-btn-main .btn-wrap:hover, .property-action-buttons .btn-wrap:hover, .property-action-buttons .btn-wrap.bg-none:hover, .section-header .btn-wrap.bg-none:hover    {
    border: 1px solid #aa3339;
}
.btn-wrap.bg-none:hover {
  border: 2px solid #aa3339;
}
/* profile css end */
/* rating feedback pop up start */
.feedback-main-sec,
.property-form-sec,
.payment-form-sec,
.request-form-sec,
.login-popup-main, .simple-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 111;
}
.feedback-main-sec.active,
.payment-form-sec.active,
.login-popup-main.active, .request-form-sec.active {
  display: flex;
}
.rate-section button.bg-none {
  border-width: 1px;
}
.overlay-bg {
  background: #000000cc;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.feedback-content, .simple-popup .simple-content {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 753px;
  background: #fff;
  border-radius: 20px;
  padding: 50px 56px;
}
.feedback-content h2 {
  font-weight: 700;
  font-size: 36px;
  color: #111111;
  text-align: center;
}
.star-rating {
  margin: 25px 0 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.form-group label {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: #111111;
  text-align: left;
}

textarea#feedbackText, .form-group textarea#simple-refund-reason, .form-group input#simple-refund-amount {
  border: 1.5px solid #dcdcdc;
  height: 182px;
  border-radius: 10px;
  padding: 19px 30px;
  margin-bottom: 46px;
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: #646464;
}
.form-group textarea#simple-refund-reason {
   margin-bottom: 16px;
}
.form-group input#simple-refund-amount {
 height: auto;
   margin-bottom: 10px;
}
.feedback-buttons button.btn-wrap {
  width: 136px;
  border-width: 2px;
}
.feedback-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.rate-section p {
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-top: 20px;
  margin-bottom: 30px;
}
.property-form-sec.active {
  display: flex;
}
span.star.active svg path {
  fill: #f7871b;
  stroke: #f7871b;
}
/* rating feedback pop up end */
/* property check form start */
.property-form-sec .feedback-content {
  max-width: 800px;
  padding: 70px 80px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.login-sec .feedback-content,
.property-form-sec .feedback-content {
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.property-form-sec .feedback-content img {
  width: 100%;
  max-width: 241px;
  margin: 0 auto;
}
form#property-submission-form .form-group {
  display: flex;
  flex-direction: column;
}
.property-form-sec .feedback-content h3 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-transform: capitalize;
  color: #111111;
  margin: 30px 0 35px 0;
}
form#property-submission-form .form-group .control-form, form#payment-form .form-group .control-form {
  border: 1.5px solid #dcdcdc;
  background: #fff;
  height: 59px;
  border-radius: 10px;
  padding: 18px 20px;
}
form#payment-form .form-group .control-form {
  width: 100%;
}
form#payment-form .form-group {
    margin-bottom: 29px;
}
form#payment-form .form-group label {
    display: block;
}
form#property-submission-form .form-group .control-form::placeholder, form#payment-form .form-group .control-form::placeholder {
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: #646464;
}
form#property-submission-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
iframe#find-on-map {
  height: 224px;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 33px;
}
.how-it-works-section .section-header {
  justify-content: center;
}
form#property-submission-form .form-group textarea {
  min-height: 182px;
}
.form-group.checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.um-login-remember input[type="checkbox"], input.custom-border-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 29px;
  height: 29px;
  min-width: 24px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  background-color: white;
  border: 2px solid #1f2b55;
}
.um-login-remember label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #646464;
  font-size: 15px;
  font-weight: 400;
}
.um-login-remember input[type="checkbox"]:hover {
  border-color: #9ca3af;
}

.um-login-remember input[type="checkbox"]:checked, input.custom-border-checkbox:checked {
  background-color: #1f2b55;
  border-color: #1f2b55;
}
form#property-submission-form {
  width: 100%;
}
form#property-submission-form .btn-wrap, div#payment-map-form .btn-wrap {
  width: 100%;
  background: #1f2b55;
  border-color: #1f2b55;
  margin-top: 50px;
}
.forget-remember-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: inline-end;
    margin-top: 8px;
    POSITION: RELATIVE;
    Z-INDEX: 8;
}
.um-login-remember input[type="checkbox"]:checked::after, input.custom-border-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(3px, 0px);
}
input.custom-border-checkbox:checked::after {
   transform: rotate(45deg) translate(0px, 0px);
}
.um-toggle-password i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.um-login-forgot-password p.um-password-reset-link a,
.um-login-forgot-password p.um-password-reset-link {
  color: #131313;
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  line-height: 100%;
  margin: 0;
}
.um-login-remember input[type="checkbox"]:focus {
  outline: none;
}
form#property-submission-form .form-group small {
  position: absolute;
  top: 50%;
  right: 21px;
}
form#property-submission-form .form-group {
  position: relative;
}
.um-login-remember {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: #13131399;
}
a.lgn-gle {
  border: 2px solid #1f2b55;
  background: #ffffff;
  padding: 17px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #1f2b55;
  font-family: Manrope;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  text-decoration: none;
  margin-top: 27px;
}
.login-or-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.login-or-main::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #dcdcdc;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.login-or-main span {
  color: #13131399;
  font-family: Manrope;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  width: 55px;
  background: #fff;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* property check form end */

/*  payment pop up start */
.payment-form-sec h3,
.payment-form-sec h4,
.request-form-sec h3 {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  text-transform: capitalize;
  color: #111111;
}
form#property-submission-form .d-flex {
  justify-content: space-around;
  gap: 22px;
}
form#property-submission-form .d-flex .form-group {
  width: 100%;
}
.payment-form-sec form#property-submission-form .form-group {
  margin-bottom: 30px;
}
.payment-form-sec form#property-submission-form .btn-wrap {
  margin-top: 20px;
}
.payment-form-sec h4 {
  font-weight: 600;
  margin: 12px 0 63px 0;
}
.request-form-sec h4 {
  font-weight: 400;
  font-size: 24px;
  color: #666666;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  margin: 14px 0 54px 0;
}
.request-form-sec button.btn-wrap {
  margin: 0 auto;
  width: 309px;
  background: #1f2b55;
  border-color: #1f2b55;
}
.submitted-rate-section p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin: 20px 0 35px 0;
    word-wrap: break-word;
}
/*  payment pop up end */
/* Request Created start */
.request-form-sec .feedback-content {
  max-width: 1004px;
}
.request-form-sec .feedback-content h4 {
  padding: 0 25px;
  line-height: 33px;
}
/* Request Created end */
/* login popup start here */
.login-image-main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-image-main img {
  width: 100%;
  margin: 0 auto;
  max-width: 241px;
}
.login-logo-sec h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  color: #111111;
  text-align: center;
  margin: 30px 0 33px 0;
}
.um-center input[type="submit"] {
  width: 100% !important;
  height: 56px !important;
  border-radius: 10px !important;
  padding: 9px 21px 9px 21px !important;
  background: #aa3339 !important;
  border: 1px solid #aa3339 !important;
  font-family: Manrope !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 100% !important;
  text-transform: capitalize;
  color: #fff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  min-height: 54px;
  margin-top: 40px !important;
}
.login-right-form .um-7.um {
  max-width: 100%;
}
label.um-field-checkbox i {
  color: #1f2b55;
  font-size: 30px;
}
/* login popup end here */

/* Dashboard login css start here */
.page-id-173 header#masthead {
    display: none;
}
.login-container {
    background: #fff;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
}
.left-section {
  width: 49%;
  flex: 1;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.logo-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
.logo-icon {
  height: 100%;
}
.right-section {
  width: 51%;
  padding: 80px 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.right-section .form-group {
  margin-bottom: 15px;
}
.login-right-form .um-field-area input[type="text"], .login-right-form .um-field-area input[type="password"], .password-wrapper input#password {
    width: 100%;
    padding: 17px 20px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 10px !important;
    font-size: 16px;
    transition: border-color 0.3s;
    color: #646464;
    height: 60px !important;
    font-family: 'Manrope';
}
.login-right-form .um-field-area input[type="text"]::placeholder,
.login-right-form .um-field-area input[type="password"]::placeholder {
  color: #646464;
  font-size: 16px;
  font-weight: 400;
}
.login-right-form .um-field-label {
  margin: 0 !important;
}
.login-right-form .um-field-area input[type="text"]:focus,
.login-right-form .um-field-area input[type="password"]:focus {
  outline: none;
  border-color: #333;
}

.password-wrapper {
  position: relative;
}

.right-section .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #666;
  font-size: 18px;
}
.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.remember-me,
.um-field-c .um-field-checkbox span.um-field-checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666 !important;
  font-family: "Manrope";
  font-weight: 500;
  line-height: 27px;
}
span.um-field-checkbox-state i.um-icon-android-checkbox-outline {
  color: #1f2b55 !important;
}
.login-sec input.um-button {
    background: #aa3339 !important;
    border: 1px solid #aa3339 !important;
}
.login-sec input.um-button, a.um-button.um-alt {
    font-family: 'Manrope'!important;
}
/* 
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
} */
.forgot-password {
  color: #131313;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.right-section .btn-wrap {
  width: 100%;
  margin-top: 40px;
}
.login-right-form .um-field-label label {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 100% !important;
  text-transform: capitalize;
  color: #111111;
  margin-bottom: 10px;
}
.remember-forgot label.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.remember-me input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #dcdcdc;
}
.remember-me input[type="checkbox"]:checked {
  background-color: #aa3339;
  border-color: #aa3339;
}
.remember-me input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 7px;
  height: 16px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-50%, -50%);
}
/* Dashboard login css end here */

/* dashboard inner css start here */

/* side bar css start */
nav.nav-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 270px;
  transition: width 0.3s;
  overflow: hidden;
  height: 100vh;
  padding: 0;
  z-index: 3;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column;
}
.nav-sidebar-menu {
  padding: 28px 12px 28px 13px;
}
li.nav-item a.nav-link span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  aspect-ratio: 1/1;
}
li.nav-item a.nav-link.active {
    background: #b2313b;
    font-weight: 600;
    color: #fff;
}
li.nav-item a.nav-link.active span svg path {
    fill: #fff;
}
.nav-sidebar-menu ul.nav {
  gap: 10px;
  margin: 0;
}
li.nav-item a.nav-link {
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  padding: 12px 16px;
  display: inline-flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  font-family: "Manrope";
  color: #111111;
}
.log-out-main ul {
  margin: 0;

  padding: 0;
}
.log-out-main ul li {
  list-style: none;
}
.log-out-main {
  display: flex;
  align-items: center;
  padding: 40px 0 40px 0;
  margin-top: auto;
}
/* side bar css end */
/* header css start */
.header-main-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 2;
}
.admin-main-right,
.topbar {
  width: calc(100% - 285px);
  margin: 0 0 0 auto;
}
.mobile-menu-icon {
  display: none;
}
.navbar-logo {
  text-align: center;
  padding: 25px 0px 24px 0;
}
.navbar-logo a img {
  width: 100%;
  display: inline-block;
  object-fit: contain;
  max-width: 200px;
  margin: 0 auto;
  height: 47px;
}
.header-main-wrapper,
.navbar-logo {
  background: #d0d0d0;
}
.logo-placeholder img {
    height: 100%;
    object-fit: cover;
}
.topbar-right-side {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 32px 30px 32px 30px;
}
.profile-img a {
  width: 54px;
  height: 54px;
  background: #929292;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-section .profile-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #212b36;
  margin-right: 0;
}
.profile-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-img {
  display: flex;
  align-items: center;
}
.profile-img a {
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #929292;
  justify-content: center;
}
.dropdown-icon {
  cursor: pointer;
  margin-left: -6px;
}
.notification-icon a {
  display: flex;
  color: #333;
  width: 34px;
  height: 34px;
  background: #ececec;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.notification-icon {
  border-right: 1px solid #929292;
  padding-right: 14px;
  margin-right: 35px;
}
/* header css end */
/* dashaborad inner content start */
.admin-main-right {
  margin-top: 96px;
  padding: 40px 35px;
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-tbl-main {
  font-family: "Manrope";
}
.admin-dsh-ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 5px 0 42px 0;
}
.admin-dsh-li {
  border: 1px solid #f0f2f4;
  background: #fbfbfb;
  border-radius: 8px;
  padding: 30px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-icon-main span {
  width: 98px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f1f1;
  border-radius: 50%;
}
.admin-number-main h5 {
  font-family: "Manrope";
  font-size: 16px;
  color: #8b8d97;
  font-weight: 500;
  margin: 0;
}
.admin-number-main h4 {
  color: #45464e;
  font-family: Manrope;
  font-weight: 700;
  font-size: 36.16px;
  line-height: 100%;
  margin: 6px 0 0 0;
}
thead.table-header tr th,
tbody.centered-body td {
  padding: 19px 28px;
  vertical-align: middle;
}
tbody.centered-body tr:last-child td {
  border: unset;
}
table.employment-plan-wrapper {
  caption-side: bottom;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
}
thead.table-header th {
  background: #aa3339;
  color: #fff;
}
table.employment-plan-wrapper tbody.centered-body td a.btn-wrap.bg-blue {
  background: #1f2b55;
  border-color: #1f2b55;
  height: 44px;
  padding: 9px 29px 9px 29px;
  width: fit-content;
}
tbody.centered-body td {
  background: #fafafa;
}
/* dashaborad inner content end */
/* request page css start */
.request-filter-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 31px;
}
.request-filter-main .tabs,
.request-right-sec {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tabs button.tab {
  background: #fff;
  border: 1px solid #aa3339;
  border-radius: 10px;
  padding: 14px 17px;
  color: #111111;
  font-family: "Manrope";
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}
.tabs button.tab.active {
  background: #aa3339;
  color: #fff;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.search-box input::placeholder {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #666666;
}
.search-box input {
  border: 1px solid #aa3339;
  border-radius: 10px;
  padding: 10px 14px 10px 56px;
  width: 321px;
}
.search-box span.search-icon {
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translate(-50%, -50%);
}
.search-box {
  position: relative;
}
select.filter-select {
  border: 1px solid #aa3339;
  border-radius: 10px;
  padding: 11px 53px 10px 25px;
  color: #666666;
  font-size: 14px;
  font-family: "Manrope";
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
  background: url(https://propertyselfcheck.com.au/wp-content/uploads/2025/11/CaretUp.png);
  background-size: 9% 18%;
  background-position: 89% 52%;
  background-repeat: no-repeat;
}
.search-box input:focus,
select.filter-select:focus {
  outline: none;
}
span.pdf-main-img img {
    width: 46px;
    aspect-ratio: 1 /1;
    margin-right: 17px;
}
.admin-header-inner h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #000000;
    text-transform: capitalize;
}
.nav-btn-wrap ul {
    margin: 0 0  37px 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.nav-btn-wrap ul li {
    list-style: none;
}
.nav-btn-wrap ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    font-family: 'Manrope';
}
.nav-btn-wrap ul li.active a {
    font-weight: 700;
    color: #000;
}
ul.view-inner-list {
    background: #E6E6E6;
    margin: 0;
    border-radius: 10px;
    padding: 52px 90px 53px 30px;
    display: flex;
    /* justify-content: space-between; */
    align-items: baseline;
    gap: 60px;
    flex-wrap: wrap;
}

ul.view-inner-list li {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
ul.view-inner-list li h4 {
    color: #555555;
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    margin: 0;
}
ul.view-inner-list li p {
    margin: 0;
    color: #272727;
    line-height: 22px;
    font-weight: 600;
    font-size: 16px;
    text-align: start;
    word-break: break-word;
}
.view-btn-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
}
.view-btn-main a {
    width: auto;
    padding: 9px 35px 9px 35px;
}
/* request page css end */
/* email page css start */
ul.email-ul-main {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 35px;
    flex-wrap: wrap;
}

#emailEditModal .checkbox label {
    display: none;
}

ul.email-ul-main li {
    list-style: none;
}

ul.email-ul-main li .template-card {
    width: 235px;
    background: #D9D9D9;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
}

ul.email-ul-main li .template-card .icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

ul.email-ul-main li .template-card .icon-placeholder svg {
    width: 68px;
    aspect-ratio: 1 /1;
}
ul.email-ul-main li p {
    font-size: 16px;
    text-align: center;
    color: #272727;
    line-height: 22px;
    margin: 22px 0 0 0;
    font-weight: 600;
}
.email ul.view-inner-list {
    justify-content: center;
    min-height: 582px;
}
/* email page css end */

/* dashboard inner css end here */


/* forget password css start here */
.login-sec.forget-pass, .login-sec.register {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-main-sec {
    border: 1px solid #DCDCDC;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #FAFAFA;
    border-radius: 12px;
}
.um-field .um-field-block div {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}
.um-um_password_id .um-col-alt {
    margin: 0;
    padding: 0;
}

.um-um_password_id .um-col-alt input#um-submit-btn {
    margin-top: 25px!important;
}
.um-um_password_id .um-col-alt input#um-submit-btn {
    margin-top: 25px!important;
    background: #AA3339!important;
    border-color: #AA3339!important;
    font-family: 'Inter'!important;
}
/* forget password css end here */
/* hide header and fooetr  */
.page-id-11 header#masthead, .page-id-11 footer, .page-id-12 header#masthead, .page-id-12 footer, .page-id-16 header#masthead, .page-id-16 footer {
    display: none;
}
div#property-map-form input.custom-border-checkbox:checked::after {
    left: 9px;
    top: 5px;
}
.login-right-form p {
    text-align: center;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}
.login-right-form p a {
    color: #aa3339;
}
.admin-main-wrap .view-deatail-main {
    background: unset;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: unset;
}
.admin-main-wrap .view-deatail-main li {
    border: unset;
    padding: 0;
}

/* email page css start */
#emailModal ul.email-ul-main {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 35px;
}

#emailModal.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#emailModal .modal-content {
    background: #fff;
    width: 100%;
    max-width: 650px;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
}

#emailModal .close-modal {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 28px;
    color: #333;
}

.template-card {
    cursor: pointer;
}

ul.email-ul-main li {
    list-style: none;
}

ul.email-ul-main li .icon-placeholder {
    width: 235px;
    background: #D9D9D9;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
      display: flex;
    align-items: center;
    justify-content: center;
}
ul.email-ul-main li .icon-placeholder svg {
    width: 68px;
    aspect-ratio: 1 /1;
}
ul.email-ul-main li p {
    font-size: 16px;
    text-align: center;
    color: #272727;
    line-height: 22px;
    margin: 22px 0 0 0;
    font-weight: 600;
}
.email ul.view-inner-list {
    justify-content: center;
    min-height: 582px;
}
ul.email-ul-main li p {
    margin: 15px 0;
}
ul.email-ul-main button.btn-wrap {
    width: 100%;
    max-width: 100%;
}
/* Center the modal */
.email-modal-sec.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Optional: ensure modal content doesn't stretch */
.email-modal-sec .modal-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.email-modal-sec .modal-content span.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}
.email-modal-sec .modal-content h3 {
    margin-bottom: 25px;
}
.email-modal-sec .modal-content .form-group {
    margin-bottom: 15px;
}
.email-modal-sec .modal-content .form-group label {
    margin-bottom: 20px;
    display: block;
}
.email-modal-sec .modal-content .form-group input, .email-modal-sec .modal-content .form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
}
.email-modal-sec .modal-content .form-group textarea {
  height: 120px;
}
/* Wrapper spacing */
.form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* Hide default checkbox */
.form-group.checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #888;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    padding: 0;
}

/* Checked state */
.form-group.checkbox input[type="checkbox"]:checked {
    border-color: #aa3339;
    background: #aa3339;
}

/* Checkmark */
.form-group.checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.email-modal-sec .modal-content .form-group label {
    margin-bottom: 20px;
    display: flex;
}
.bottom-mpdal-sec button#cancelEdit {
    color: #000!important;
}
.bottom-mpdal-sec {
    display: flex;
    gap: 15px;
}
.bottom-mpdal-sec button#cancelEdit:hover {
    border: 1px solid #aa3339;
}
ul.report-files, ul.ajax-report-list {
    margin: 0;
    padding: 0;
}
ul.report-files li a, .pdf-main-img + span, ul.ajax-report-list li a {
    list-style: none;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-family: 'Manrope';
}
ul.report-files li, ul.ajax-report-list li {
    list-style: none;
}
.pdf-main-img {
    display: block;
    align-items: center;
    margin-bottom: 8px;
}
/* email page css end */
.property-details-content .property-detail-item, .property-details-content, .property-details-view .property-action-buttons, .simple-content .refund-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.property-details-content {
    flex-direction: row;
    justify-content: space-between;
    margin: 25px 0;
    background: #f3f2f2;
    padding: 25px 20px 10px 20px;
    border-radius: 8px;
}
.property-detail-item h4 {
    font-family: Manrope;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    margin: 0;
}
.property-detail-item p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-transform: capitalize;
}
.property-details-view .property-action-buttons, .simple-content .refund-buttons {
    flex-direction: row;
    margin-bottom: 25px;
}
.property-details-view .property-action-buttons button.btn-wrap {
    width: auto;
}
.simple-popup .simple-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px;
}
.simple-content .refund-buttons {
  margin: 25px 0 0 0;
}

p.um-notice.err.um-error-code-user_login {
    display: none !important;
}
p.um-notice.err.um-error-code-user_login, p.um-notice.err.um-error-code-user_email {
    display: none !important;
}
span.status-badge {
    text-transform: capitalize;
}

.page-id-11 .login-sec {
    display: none;
}
form#property-submission-form .form-group .control-form {
    padding: 18px 50px 18px 20px;
}
.login-right-form .um-field-area input[type="text"] {
    padding-right: 40px!important;
}
.register-link {
    margin-top: 20px;
}

.um-field-checkbox-state i {
  display: none;
}

.um-field-checkbox-state {
  width: 29px !important;
  height: 29px !important;
  border: 2px solid #1e2a5a;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.um-field-checkbox.active .um-field-checkbox-state {
  background-color: #1e2a5a;
  border-color: #1e2a5a;
}

.um-field-checkbox.active .um-field-checkbox-state::after {
    content: '';
    width: 7px;
    height: 13px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-8px, -4px);
    position: absolute;
    top: 50%;
    left: 50%;
}

.refund-action-modal .modal-content {
    max-width: 700px;
    width: 100%;
}
.refund-action-modal h3 {
    text-align: center;
}
.refund-action-modal .modal-buttons button {
    min-width: fit-content;
}
.refund-info p span#modalRefundReason {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
}
.modal-buttons button:hover {
    border: 1px solid #c15a62;
}
table.employment-plan-wrapper tbody.centered-body td a.btn-wrap.bg-blue:hover {
    border: 1px solid #1f2b55;
}
.dataTables_wrapper .dataTables_paginate  a.paginate_button.current {
    background: #b2313b!important;
    color: #fff!important;
    border: 1px solid #b2313b!important;
    border-radius: 4px;
}
.dataTables_wrapper .dataTables_paginate  a.paginate_button.current:hover {
      color: #fff!important;
}
.dataTables_wrapper .dataTables_paginate a.paginate_button {
    cursor: pointer!important;
}
.refund-action-modal .modal-buttons button.btn-wrap.bg-none:hover {
    border: 1px solid #aa3339;
}
td .request-address, td .property-address, .property-details-content .property-detail-item:nth-child(2) p, .property-details-content .property-detail-item:nth-child(3) p, .view-deatail-main li .request-address p {
    width: 150px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* .view-deatail-main li .request-address p {
    width: 280px;
} */
td .request-address {
   -webkit-line-clamp: 2;
}
.profile-main-sec .log-out-main li.nav-item a.nav-link span svg path {
    fill: #AA3339;
}
.profile-main-sec .log-out-main li.nav-item a.nav-link {
    border: 1px solid #aa3339;
    background: transparent;
    color: #aa3339;
}
a:focus {
  outline: none;
}
/* profile page css start */
.um-page-account header.entry-header, .um-page-account .widget-area {
    display: none;
}
.um-page-account .header-main, .page-id-439 header.header-main {
    position: relative;
    background: #060821;
    max-width: 100%;
    top: 0;
    padding-block: 16px;
}
.um-page-account .um-account {
    padding-block: 80px;
    padding-inline: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto!important;
        font-family: 'Manrope';
}
.um-page-account .um-account .um-account-side {
    border: 1px solid #E9E9E9;
    box-shadow: 0px 1px 4px 2px #0000000D;
    border-radius: 10px;
    padding: 25px;
    width: 340px;
}
.um-page-account .um-account .um-account-side a img.avatar {
    width: 90px;
    height: 90px;
}
.um-account ul li span.um-account-icon {
    border: unset;
}
.um-account ul li {
    background: unset;
}
.um-account ul li span.um-account-icon {
    border: unset!important;
}
.um-account ul li span.um-account-arrow {
    display: none;
}
.um-account ul li span.um-account-icon {
    padding-right: 0!important;
}
.um-account ul li a.um-account-link.current {
  background: #AA3339;
}
.um-account ul li a.um-account-link.current span.um-account-icon i, .um-account ul li a.um-account-link.current span.um-account-title {
    color: #fff;
}
.um-account ul li a.um-account-link {
    border-radius: 4px;
}
.um-account ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.um-account-profile-link a {
    color: #AA3339!important;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
}
.um-page-account .um-account .um-account-main {
    border: 1px solid #E9E9E9;
    padding: 25px;
    border-radius: 10px;
    width: calc(100% - 360px);
    margin: 0 0 0 auto;
    float: right;
}
.um-page-account .um-account .um-account-main .um-account-heading i {
    display: none;
}
.um-page-account .um-account .um-account-main .um-account-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px!important;
}
.um-left input.um-button, .um-request-button {
    background: #AA3339!important;
}
.um-page-account .um-account .um-account-main .um-field-area input {
    border: 1.5px solid #DCDCDC!important;
    border-radius: 5px;
    height: 48px!important;
}
.um-field-label + label {
    margin-bottom: 15px;
}
/* profile page css end  */
.terms-label input {
  display: none;
}

/* Box */
.custom-checkbox {
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-right: 15px;
}

/* Tick */
.custom-checkbox::after {
  content: "✓";
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}
.terms-wrapper label a {
    color: #fff;
    margin-left: 6px;
}
/* Checked state */
.terms-label input:checked + .custom-checkbox::after {
  opacity: 1;
  transform: scale(1);
}

.terms-wrapper label {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Manrope';
}
.terms-wrapper label a {
   color: #fff;
}
.swal2-container .swal2-html-container {
    font-family: 'Manrope';
    padding-inline: 80px;
}
.swal2-container button.swal2-confirm {
    background: #aa3339;
    padding: 10px 25px;
    border-radius: 5px;
}

.page-id-439 aside#secondary, .page-id-439 header.entry-header {
    display: none;
}

.page-id-439 .entry-content {
    width: 100%;
    max-width: 1323px;
    margin: 0 auto;
    padding: 50px 15px;
}
.page-id-439 .entry-content p, .page-id-439 .entry-content ul li, .page-id-439 .entry-content ol li, .page-id-439 .entry-content ol, .page-id-439 .entry-content ol {
    font-family: 'Manrope';
    padding-left: 0;
}
.page-id-439 .entry-content ol, .page-id-439 .entry-content ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.page-id-439 .entry-content > p {
    font-size: 24px;
    font-weight: 600;
}
.page-id-439 .entry-content > p + p {
    font-size: 16px;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
    display: none;
}
.dataTables_wrapper .dataTables_info {
    font-family: 'Manrope';
}
/* .property-details-content .property-detail-item:nth-child(3) p {
    width: 280px;
} */
 .page-id-439 header.header-main a#login-btn {
    display: none!important;
}
li.nav-item a.nav-link:hover {
    background: #d0d0d0;
}