/* Reset + Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Aeonik", sans-serif;
  background-color: #f3f6f5;
  color: #000;
}

@font-face {
  font-family: "Aeonik Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../../assets/fonts/Aeonik/AeonikTRIAL-Bold.otf")
    format("opentype");
}

@font-face {
  font-family: "Aeonik Regular";
  font-style: normal;
  font-weight: 100 500;
  font-display: swap;
  src: url("../../../assets/fonts/Aeonik/AeonikTRIAL-Regular.otf")
    format("opentype");
}

@font-face {
  font-family: "Aeonik Light";
  font-style: normal;
  font-weight: 100 500;
  font-display: swap;
  src: url("../../../assets/fonts/Aeonik/AeonikTRIAL-Light.otf")
    format("opentype");
}

@font-face {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../../assets/fonts/proxima-nova/Proxima-Nova-Regular.otf")
    format("opentype");
}

/* @font-face {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../../assets/fonts/proxima-nova/Fontspring-DEMO-proximanova-regular.otf")
    format("opentype");
}
@font-face {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../../assets/fonts/proxima-nova/Fontspring-DEMO-proximanova-semibold.otf")
    format("opentype");
} */

@font-face {
  font-family: "Tajawal";
  font-style: normal;
  font-weight: 100 500;
  font-display: swap;
  src: url("../../../assets/fonts/tajawal/tajawal-regular.woff2")
    format("woff2");
}

@font-face {
  font-family: "Tajawal";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../../../assets/fonts/tajawal/tajawal-bold.woff2") format("woff2");
}

html {
  scroll-behavior: smooth;
}

a {
  outline: none;
  text-decoration: none;
  color: inherit !important;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 70px;
  background: #fff;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.logo .prypco {
  margin-right: 10px;
}

.arabic {
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000000;
}

/* Banner Section */
.banner {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 50px;
  background: #003b2f url("images/Header-Section-Desktop.jpg") no-repeat
    center/cover;
  align-items: center;
}

.left-section {
  flex: 1;
  color: #fff;
  padding: 20px 0;
}

h1 {
  font-family: "Aeonik Bold";
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #f3f6f5;
}

h1 .green {
  color: #d0fa58;
}

h3 {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 30px;
  max-width: 400px;
  font-family: "Aeonik Bold";
}

.banner h2 {
  font-family: "Aeonik Regular";
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 20px;
  max-width: 500px;
}

.bank-logos {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.bank-logos img {
  height: 50px;
  margin-right: 10px;
  display: none;
}

.plus14 {
  background: #163d2f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
}

/* Form Section */
.form-wrapper {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.form select {
  padding: 7px 30px 7px 8px;
  background-image: url("images/arrow.png"); /* down arrow */
  background-position: calc(100% - 15px) center;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

label {
  font-family: "Aeonik", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15px;
  color: #626465;
  margin-bottom: 6px;
  background: #fff;
}

.form-group label {
  position: absolute;
  width: fit-content;
  left: 15px;
  top: -7px;
  padding: 0px 3px;
  z-index: 99;
}

.error {
  display: flex;
  margin-top: 0;
  transition: all 0.3s ease;
  color: #ff4b82;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;

  position: absolute;
  bottom: 2px;
  width: 100%;
  text-align: right;
  white-space: normal;
  word-break: break-word;
  z-index: 9999;
  right: 0;
  justify-content: flex-end;
}

div#success {
  text-align: center;
  margin: 30px 0 0;
}

div#success h4 {
  font-size: 25px;
  color: #11aa16;
  border: 1px solid;
  padding: 25px 0;
  background: #eee;
  line-height: 29px;
}

#success-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #3d3d3d;
}

#success-overlay-innerwrap {
  display: block;
  position: relative;
  width: 100%;
  max-width: 600px;
  min-height: 200px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}

#success-overlay h4 {
  font-family: "Aeonik Bold";
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  text-align: center;
  font-size: 30px;
  color: #000000;
  padding-bottom: 20px;
}
#success-overlay p {
  font-family: "Aeonik Light";
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #000000;
  padding-left: 20px;
  padding-right: 20px;
}
#success-overlay h5 {
  text-align: center;
  font-size: 18px;
  color: #191919;
}

#success-overlay-close {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 22px;
  cursor: pointer;
  padding: 12px 15px 8px;
  font-weight: 600;
  background: #000;
  color: #fff;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0px;

  vertical-align: middle;
  color: #000000;

  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-color: #fff;
}

select option {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0px;

  vertical-align: middle;
  color: #000000;
}

.form h2 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.form input,
.form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  font-family: "Proxima Nova";
  font-size: 16px;
  line-height: 150%;

  border: 1px solid #ccc;
  border-radius: 8px;
  font-weight: 400;
}
.form-select {
  color: #a3a6aa;
}

.form-select.has-value {
  color: #23262a;
}

.form input::placeholder {
  color: #a3a6aa;
}

.form select option {
  color: #000;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

.residency-label {
  font-size: 14px;
  color: #626465;
  margin-bottom: 6px;
  font-family: "Proxima Nova";
  font-weight: 400;
}

.radio-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.radio-group label {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  padding: 12px;
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  cursor: pointer;
}

.radio-group label input {
  display: none;
}

.radio-group label.selected {
  background: #f5f5f5;
  border: 1px solid #23262a;
  color: #23262a;
}

/* Button */
.custom-button {
  width: 340px;
  background: #000;
  color: #fff;
  font-family: "Aeonik Bold";
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
}

button.green-btn.custom-button {
  background: #228665;
  margin-top: 30px;
}

.free-label {
  text-align: center;
  font-size: 14px;
  color: #626465;
  margin-top: 10px;
}

.radio-group {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.radio-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0;
  color: #000;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-group label input {
  display: none;
}

/* ✅ Your custom selected state */
.radio-group label.selected {
  background: #f5f5f5;
  border: 1px solid #23262a;
  color: #23262a;
}

footer {
  background-color: #228665;
  height: 40px;
  margin-top: 70px;
}

/* 2****************** */
.flex-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.second-sec img {
  scale: 110%;
  max-width: 280px;
}

section.second-sec {
  padding-top: 70px;
}

/* 2****************** */
/* 3****************** */
.third-sec {
  padding-top: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-40 {
  padding-top: 40px;
}

.third-sec img {
  max-width: 265px;
}

.head-main {
  text-align: center;
  margin-bottom: 30px;
}
label.no-css {
  background: transparent;
  border: none;
  line-height: 100%;
  margin: 0;
  padding: 8px;
}
fieldset {
  border: none;
}
.head-main h3 {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.head-main p {
  font-weight: 400;
  font-size: 16px;
  font-family: Aeonik Light;
  color: #666666;
  margin: 5px auto;
}

.hide-desktop {
  display: none !important;
}

.container {
  max-width: 80%;
  margin: 0 auto;
}

.img-responsive {
  max-width: 100%;
  width: 100%;
}

.owl-carousel .item img {
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 420px;
  scale: 90%;
}

.owl-carousel {
  overflow: hidden;
  z-index: 1;
}

.owl-nav {
  display: none;
}

button.owl-dot span {
  width: 20px;
  height: 20px;
  background: red;
}

button.owl-dot {
  width: 10px;
  height: 10px;
  background: #676767 !important;
  border-radius: 20px;
  margin: 3px;
}

.owl-dots {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

button.owl-dot.active {
  background: #228665 !important;
  width: 15px;
  height: 15px;
}
.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  margin-bottom: 20px;
}
.iti--inline-dropdown .iti__dropdown-content {
  z-index: 99999;
}
/* 3****************** */

.faq-container {
  margin: 30px 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.faq {
  margin: 10px auto;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s;
  width: 100%;
  border-radius: 6px;
}

.faq-header h3 {
  font-size: 16px;
  margin: 0;
  color: #333;
  max-width: 85%;
  text-align: left;
  line-height: 22px;
}

.pt-30 {
  padding-top: 30px;
}

/* V-shaped arrow (chevron) */
.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  margin-left: 10px;
}

.faq.active .arrow {
  transform: rotate(-135deg);
  /* Flips to ∧ shape when active */
  border-right-color: #228665;
  border-bottom-color: #228665;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq.active .faq-content {
  max-height: 500px;
  text-align: left;
  color: #0000;
}

.faq.active h3 {
  color: #238665;
}

.faq-content p {
  margin: 0;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
}
.lang-ar .faq-content p {
  font-weight: 300;
  font-family: "Aeonik Light";
}
.lang-ar .second-sec img {
  scale: 90%;
}

.hide-mobile {
  display: flex;
}

b {
  font-weight: 700;
  font-family: "Aeonik Bold";
}

/* START Calculator css */
.calculator {
  padding: 0 20px 20px;
}

.calculator .form-row {
  display: block;
}

.calculator input[type="text"],
.calculator input[type="email"],
.calculator input[type="tel"],
select {
  border: none;
}

.container-calculator {
  max-width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: visible;
  width: 70%;
}

.calculator .header {
  padding: 30px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.calculator .header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0;
  font-family: "Proxima Nova";
}

.calculator .main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.calculator .left-panel {
  padding: 30px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  border-radius: 20px;
  border-right: hidden;
}

.calculator .right-panel {
  padding: 15px;
}

.calculator .right-panel-bg {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 30px;
}

.calculator .residency-status {
  padding-bottom: 30px;
}

.calculator .residency-status h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.15px;
  padding-bottom: 8px;
  color: #666b72;
  margin-bottom: 0;
  font-family: "Proxima Nova";
}

.calculator .status-buttons {
  display: flex;
  width: 100%;
  overflow: hidden;
  gap: 10px;
}

.calculator .status-btn {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0px;
  padding: 10px 10px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: "Proxima Nova";
  cursor: pointer;
  transition: all 0.2s;
}

.calculator .status-btn.active {
  background: #f5f5f5;
  color: #23262a;
  border: 1px solid #23262a;
}

.calculator .form-group:not(:last-child) {
  padding-bottom: 25px;
  position: relative;
}

.calculator .form-group:last-child {
  position: relative;
}

.calculator .form-group label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  display: block;
  color: #666b72;
  background-color: white;
  left: 15px;
  top: -7px;
  font-family: "Proxima Nova";
}

.calculator .input-container {
  position: relative;
}

.calculator .input-with-currency:has(.form-input:focus),
.calculator .input-with-suffix:has(.form-input:focus),
.calculator .input-with-currencydown:has(.form-input:focus),
.calculator .input-with-suffixdown:has(.form-input:focus),
.calculator .downpaymentdiv:has(.form-input:focus) {
  border: 1px solid #000000;
}

.calculator .downpaymentdiv:has(input:focus) {
  border: 1px solid #000000;
}

.calculator .input-with-currencydown,
.calculator .input-with-suffixdown {
  border: none !important;
}

.calculator .downpaymentdiv {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  overflow: visible;
  padding: 5px;
}

.calculator .input-with-currency {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 5px;
  overflow: visible;
  font-family: "Proxima Nova";
}

.calculator .input-with-currencydown {
  display: flex;
  flex: 1;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 0;
  overflow: visible;
  font-family: "Proxima Nova";
}

.calculator .currency-label {
  padding: 14px 0 14px 16px;
  color: #a3a6aa;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  font-family: "Proxima Nova";
}

.calculator .form-input {
  flex: 1;
  padding: 8px 16px;
  border: none;
  font-size: 1rem;
  outline: none;
  color: #23262a;
  background: transparent;
  font-family: "Proxima Nova";
}

.calculator .form-input::-webkit-outer-spin-button,
.calculator .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator .form-input[type="number"] {
  -moz-appearance: textfield;
}

.calculator .input-with-suffix {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: visible;
  padding: 5px;
  font-family: "Proxima Nova";
}

.calculator .input-with-suffixdown {
  display: flex;
  align-items: center;
  background: #fff;
  overflow: visible;
  border-left: 1px solid #d1d5db;
  font-family: "Proxima Nova";
}

.calculator #down-payment-percent {
  border-left: 1px solid #d1d5db;
  padding-right: 0;
  font-family: "Proxima Nova";
}

.calculator .suffix-labelpercent {
  padding: 14px 8px;
  font-weight: 400;
  font-size: 14px;
  color: #a3a6aa;
  min-width: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: "Proxima Nova";
}

.calculator .suffix-label {
  padding: 14px 8px;
  color: #a3a6aa;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  min-width: 20px;
  text-align: center;
  font-family: "Proxima Nova";
}

.calculator .results-section h2 {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: "Proxima Nova";
}

.calculator .monthly-payment h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #23262a;
  padding-bottom: 0px;
  font-family: "Proxima Nova";
}

.calculator .monthly-payment {
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.calculator .payment-amount {
  font-family: "Proxima Nova";
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #020203;
}

.calculator .breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px 10px;
}

.calculator .breakdown-label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #3a3f47;
  font-family: "Proxima Nova";
}

.calculator .breakdown-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.calculator .principal-dot {
  background: #d5d5d5;
}

.calculator .interest-dot {
  background: #e5e5e5;
}

.calculator .breakdown-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #23262a;
  font-family: "Proxima Nova";
}

.chart-container {
  padding-top: 10px;
}

.chart-bar {
  height: 40px;
  border-radius: 3px;
  display: flex;
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
}

.chart-interest {
  background: #e5e5e5;
  display: flex;
  align-items: center;
  position: relative;
  transition: width 1s ease-in-out;
}

.chart-principal {
  background: #d5d5d5;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: width 1s ease-in-out;
}

.chart-text-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #23262a;
  font-family: "Proxima Nova";
}

.chart-text-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #23262a;
  font-family: "Proxima Nova";
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #3a3f47;
}

.preapproved-btn-div {
  text-align: center;
  padding: 20px 0 5px;
}

.preapproved-btn {
  display: block;
  font-family: "Aeonik Bold";
  width: 100%;
  background-color: #17191c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.powered-by {
  margin-top: 16px;
  font-size: 14px;
  color: #444;
  font-family: "Aeonik Light";
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  gap: 5px;
}

.powered-by img {
  width: 64px;
  height: 20px;
}

/* END Calculator css */

/* Ar css starts */

.lang-ar .banner {
  direction: rtl;
}
.iti.iti--allow-dropdown.iti--show-flags {
  margin-bottom: 15px;
}
.lang-ar .form-group label {
  right: 15px;
}
.lang-ar body > *,
.lang-ar h1,
.lang-ar h2,
.lang-ar h3,
.lang-ar h4,
.lang-ar input,
.lang-ar select,
.lang-ar label,
.lang-ar span,
.lang-ar button,
.lang-ar div,
.lang-ar p,
.lang-ar b,
.lang-ar a {
  font-family: "Noto Sans Arabic", sans-serif !important;
}
.lang-ar h1 {
  font-size: 54px;
  line-height: 74px;
}
.lang-ar input#phone {
  direction: ltr;
  text-align: right;
  padding-right: 50px;
}
.lang-ar .form-group .iti--allow-dropdown .iti__country-container,
.lang-ar .form-group .iti--show-selected-dial-code .iti__country-container {
  right: 0;
  left: auto;
}
.lang-ar .iti__selected-country {
  gap: 5px;
}
.lang-ar .iti__arrow {
  border-top: var(--iti-arrow-height) solid #000000 !important;
}
.phone .error {
  position: relative;
  top: 5px;
  bottom: 0;
}
input:focus,
select:focus {
  outline: none;
}

.lang-ar .banner {
  background: #003b2f url("images/Header-Section-Desktop-AR.jpg") no-repeat
    center/cover;
}
.lang-ar .faq-header h3,
.lang-ar .faq-content p {
  text-align: right;
}
.lang-ar .flex-row {
  max-width: 75%;
  margin: 0 auto;

  justify-content: space-between;
}
.lang-ar .head-main h3 {
  margin: 10px auto;
}
.lang-ar .form select {
  background-position: 15px center;
}
.lang-ar .faq-header h3 {
  max-width: 100%;
}
.lang-ar .calculator {
  direction: rtl;
}

.lang-ar .calculator .right-panel,
.lang-ar .calculator .left-panel {
  padding: 25px;
}
.lang-ar .calculator .input-with-currency,
.lang-ar .calculator .downpaymentdiv,
.lang-ar .calculator .input-with-suffix {
  height: 65px;
}
.lang-ar .calculator .currency-label {
  padding: 14px 16px 14px 0px;
}
.lang-ar .calculator #down-payment-percent {
  padding-left: 0;
  padding-right: 16px;
  border-right: 1px solid #d1d5db;
  border-left: unset;
  text-align: center;
}
.lang-ar .calculator .breakdown-dot {
  margin-right: 0px;
  margin-left: 10px;
}
.lang-ar .powered-by {
  direction: ltr;
}
.lang-ar .chart-bar,
.lang-ar #success-overlay p,
.lang-ar #success-overlay h4 {
  direction: rtl;
}
.lang-ar .calculator .suffix-label {
  position: relative;
}
.lang-ar #success-overlay p {
  padding: 0px 70px;
  line-height: 30px;
}
.lang-ar #success-overlay h4 {
  padding-bottom: 0;
}
.lang-ar #success-overlay-close {
  padding: 4px 15px 0px;
}
