@import url('https://fonts.googleapis.com/css2?family=Rakkas&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Janna LT";
  src: url("ArbFONTS-Janna-LT-Regular.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Janna LT";
  src: url("ArbFONTS-Janna-LT-Bold.ttf") format("truetype");
  font-weight: bold;
}

body {
  font-family: "Janna LT", sans-serif;

  line-height: 1.6;
  color: #333;
  background: #fff;
}
.btn {
  font-family: "Janna LT", sans-serif;
}
@font-face {
    font-family: 'Janna LT';
    src: url('fonts/ArbFONTS-Janna-LT-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Janna LT';
    src: url('fonts/ArbFONTS-Janna-LT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Custom CSS Variables */
:root {
    --teal: #07b0b0;
    --teal-dark: #0098a1;
    --muted: #6b7280;
    --primary-color: #07b0b0;
    --secondary-color: #0098a1;
    --background-color: #f6f7fb;
    --card-shadow: 0 6px 24px rgba(21, 30, 40, 0.06);
}

/* Global Font Settings */
body {
    font-family: 'Janna LT', 'Tajawal', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background-color: var(--background-color);
    color: #1f2937;
    line-height: 1.6;
}

/* Header Styling */
header {
    border-bottom: 1px solid #e5e7eb;
}

/* Main Content Background */
main {
    background:white;
}


.account-option {
    transition: all 0.3s ease;
}

.account-option .btn {
    border: 2px solid #e5e7eb;
    border-radius: 16px !important;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 120px;

}

.account-option .btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 176, 176, 0.15);
}

.account-option .btn.btn-primary {
    background: white;
    border-color: var(--primary-color);

}

.account-option .btn.btn-primary h5{
  color: #333333;
}

.account-option .btn.btn-primary p {
    color: #666666 !important;
}

.text-muted{
     font-family: Janna LT;
font-weight: 400;
font-size: 16px;
line-height: 100%;
margin-top: 35px;
color: #666666;
}

.account-option .btn.btn-primary i {
    color: white !important;
}


.account-icon {

      width: 56px;
  height: 56px;
  border-radius: 50%;
    background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
    
}
.account-icon img{
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.btn-primary .account-icon {
    background: #00B1BD;
}


.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-dark), #006b75);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 176, 176, 0.3);
}


.text-primary {
    color: #07b0b0 !important;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Janna LT', sans-serif;
    font-weight: 700;
}

.fw-bold h4 {
   font-family: Janna LT;
font-weight: 700;
font-size: 34px;
line-height: 174%;
letter-spacing: 0%;
text-align: center;
color: #333333;

}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .account-option .btn {
        padding: 1rem !important;
    }
    
    .account-option .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem !important;
    }
    
    .account-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-white {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}

.btn:focus,
.btn-check:focus + .btn {
    box-shadow: 0 0 0 0.25rem rgba(7, 176, 176, 0.25);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--card-shadow);
    border-radius: 12px;
}

.dropdown-item:hover {
    background-color: rgba(7, 176, 176, 0.1);
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--teal-dark) !important;
}


.gap-3 {
    gap: 1rem !important;
}


[dir="rtl"] .fas.fa-arrow-left::before {
    content: "\f060"; /* Right arrow for RTL */
}

[dir="rtl"] .fas.fa-arrow-right::before {
    content: "\f061"; /* Left arrow for RTL */
}




.img-cover { width: 100%; height: 100%; object-fit: cover; } 
.card-footer .btn {
    background-color: #00B1BD;
    color: white;
    width: 546.5;
height: 64;
gap: 8px;
opacity: 1;
border-radius: 16px;
padding-top: 8px;
padding-right: 20px;
padding-bottom: 8px;
padding-left: 20px;
font-family: Janna LT !important;
font-weight: 700;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}


.panel {
  width: clamp(300px, 38vw, 600px);   
}


@media (max-width: 991.98px){
  .panel { width: 100%; }
}


.panel { padding: 0; background: transparent; }





.equal-panel,
.account-wrap{
  margin-inline: auto;   
  border-radius: 24px;
  width: 800px !important;
}


.account-visual{
  display: block;          
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;     
  object-fit: cover;
  border-radius: 24px;
}

.account-wrap{
  background: #fff;
  padding: 24px;
}


.equal-panel, .account-wrap{ float:none; }



:root{
    /* عدّلها للي يعجبك — نفس العرض للصورة والكارد */
    --panel-max: 700px;
  }


  .auth-box{ max-width: var(--panel-max); }


  .auth-visual{
    display:block;
    width:100%;
    height:100%;
    min-height: 400px !important;      
    object-fit:cover;
  }
  @media (max-width: 991.98px){
    .auth-visual{ min-height:320px; } 
  }

  /* لون زر مطابق للهوية */
  .btn.btn-teal{
   background-color: #00B1BD;
    color: white;
    width: 546.5;
height: 64;
gap: 8px;
opacity: 1;
border-radius: 16px;
padding-top: 8px;
padding-right: 20px;
padding-bottom: 8px;
padding-left: 20px;
font-family: Janna LT !important;
font-weight: 700;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;

  }

:root{

  --panel-max: 800px;    
  --panel-h:  200px;    
}

/* نفس العرض للكارد والصورة */
.auth-box,
.equal-panel,
.account-wrap{
  width: 100%;
  max-width: var(--panel-max);
  margin-inline: auto;
  border-radius: 24px;
}


.auth-visual,
.account-visual{
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--panel-h);
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: unset;  /
}


.row.g-4.align-items-stretch > [class*="col-"]{ display:flex; }

.row.align-items-stretch > [class*="col-"]{ display:flex; }
.equal-panel,
.account-wrap,
.auth-box{ display:block; }



:root{
 
  --panel-w: 640px;   
  --panel-h: 600px;   
}


.row.equalize > [class*="col"]{ display:flex; }

.panel{
  width:100%;
  max-width:var(--panel-w);
  margin-inline:auto;
  border-radius:24px;
  overflow:hidden;
  display:flex;           
  min-height:var(--panel-h);
}

.auth-visual, .account-visual{
  width:100%;
  height:100%;
  object-fit:cover;
  
}


.card-choose{
  background:#F9F9F9;
  border: 1px;;
  border-radius:24px;
  box-shadow:0 6px 24px rgba(21,30,40,.06);
  display:flex;
  flex-direction:column;
  flex:1;

           
}



.auth-visual,
.account-visual{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;  
  object-fit: cover;
  border-radius: 24px;
  
}




.btn-teal{
  background:#00B1BD;
  color:#fff;
  border:0;
  border-radius:16px;
  font-weight:700;
}
.btn-teal:hover{
  background: #0aa5b0 !important;; color: #fff !important;; 
}

.page-forgot .equal-panel,
.page-forgot .account-wrap,
.page-forgot .auth-box{
  max-width: var(--panel-w) !important;
  width: 700px !important;
}

.card-choose h1 {
  color:#333333 !important;        
  font-family: Janna LT !important;
font-weight: 700 !important;
font-size: 34px !important;
line-height: 174%;
letter-spacing: 0%;
text-align: center !important;

}

.card-choose p {
  color:#666666 !important;      
  font-family: Janna LT !important;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 28px;
letter-spacing: -0.2%;
text-align: center !important;

}
.text-decoration-none{
  font-family: Janna LT !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 27px;
letter-spacing: -0.1px;
text-align: center;
text-decoration: underline !important;
text-decoration-style: solid !important;
color: #009CA3 !important;

}

.inputs{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 14px;
}
.inputs .input{
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid #E6EEF1 !important;
  background: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #1f2a37;
  outline: 0;
  box-shadow: none;        
  padding: 0;                 
}
.inputs .input:focus{
  border-color: #26B7BD !important;
  box-shadow: 0 0 0 3px rgba(38,183,189,.15);
}
.inputs .input:valid{
  border: 2px dashed #1FCBD4 !important;
  background: #FFFFFF;
  color: #1FCBD4;
}


.account-card{
  background:#ffffff;
  border:0;
  border-radius:22px;
  box-shadow:0 8px 30px rgba(21,30,40,.06);
  overflow:clip;
}
.card-head{padding:28px 28px 15px;
border-bottom: 1px solid #E5E5E5;
margin-bottom: 20px;
}


.create__title{font-size:clamp(20px,2.2vw,28px); font-weight:800; margin:0}
.create__subtitle{margin:6px 0 0; color:#6b7280}
.creates{color:#07b0b0; font-weight:700}


.progress-wrap{max-width:520px;
  margin-inline-start:auto;             }                 
.progress-top{
  display:flex;
  align-items:center;
  gap:8px;
  text-align:initial;
}
.progress-top .progress-step{
  margin-inline-start:auto;    
}
.progress{
  width:clamp(240px,36vw,520px);                
  margin-left:0; margin-right:auto;         
  height:12px; background:#eef2f7;
  border-radius:999px; overflow:hidden;
  position:relative;            
}
.progress-fill{
  width:33%;
  height:100%;
  background:repeating-linear-gradient(-45deg,#00888C 0 18px,#1FCBD4 18px 36px);
  transition:width .3s ease;
}

.step_num{
    font-family: Janna LT;
font-weight: 700;
font-size: 25px;
line-height: 28px;
letter-spacing: 0%;

vertical-align: bottom;
color: #009CA3;

}

.progress-step{
    font-family: Janna LT;
font-weight: 700;
font-size: 20px;
line-height: 28px;
letter-spacing: 0%;

vertical-align: bottom;
color: #333333;
}
.progress-title{
    font-family: Janna LT;
font-weight: 400;
font-size: 18px;
line-height: 28px;
letter-spacing: 0%;
vertical-align: bottom;
color: #333333;


}


.form-grid{padding:0 28px 28px}
.field{margin-bottom:18px}
.lbl{display:block; font-weight:700; margin-bottom:8px}


.input{position:relative}
.input .form-control{padding-inline-end:10px}
.input .icon{
  position:absolute; inset-inline-end:12px; inset-block-start:50%;
  transform:translateY(-50%); width:20px; height:20px; display:grid; place-items:center; opacity:.85;
}
.form-control, .form-select{
  border-radius:14px; border:1px solid #e6ebf2; height:48px; box-shadow:none;
}
.form-control:focus, .form-select:focus{
  border-color:#07b0b0; box-shadow:0 0 0 .2rem rgba(7,176,176,.12);
}

chip-group{display:flex; gap:10px; flex-wrap:wrap}
.chip-group input{position:absolute; opacity:0; pointer-events:none}
.chip-group label{
  position:relative;
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px;           
  padding-inline-start:48px;  
  border-radius:14px;
  background:#FFFFFF; border:1px solid #eaf0f6;
  cursor:pointer; font-weight:700;
}

.chip-group label img{width:20px; height:20px}

.chip-group label::before{
  content:"";
  position:absolute; inset-inline-start:12px; top:50%; transform:translateY(-50%);
  width:24px; height:24px; border-radius:50%;
  box-shadow:0 1px 0 rgba(16,24,40,.06);
}

.chip-group label::after{
  content:"";
  position:absolute; inset-inline-start:12px; top:50%; transform:translateY(-50%);
  width:24px; height:24px;
  background:no-repeat center/16px url('assets/Choose_Account/no.png');
}

.chip-group input:checked + label{
  background:#FFFFFF;
  color:black; border-color:#00B1BD;
  box-shadow:0 6px 16px rgba(7,176,176,.25);
}

.chip-group input:checked + label::before{
  background:linear-gradient(135deg,#07b0b0,#0098a1);
  border-color:transparent;
}

.chip-group input:checked + label::after{
  background-image:url('assets/Choose_Account/yes.png');
}


.segmented{
  display:inline-grid; grid-auto-flow:column; gap:0; border:1px solid #e6ebf2;
  border-radius:14px; overflow:hidden;
}
.segmented input{position:absolute; opacity:0}
.segmented label{
  padding:10px 18px; min-width:110px; text-align:center; background:#ffffff; cursor:pointer; font-weight:700;
}
.segmented label + label{border-inline-start:1px solid #e6ebf2}
.segmented input:checked + label{
  background:linear-gradient(135deg,#07b0b0,#0098a1); color:#ffffff;
}


.select-flag{position:relative}
.select-flag .flag{
  position:absolute; inset-inline-start:12px; inset-block-start:50%; transform:translateY(-50%);
  width:22px; height:22px; border-radius:6px; object-fit:cover;
}
.select-flag .form-select{padding-inline-start:44px}


.account__container{padding:16px}
@media (min-width: 992px){
  .account__container{padding:24px 8px 8px}
}


.uploader{display:block;border:2px dashed #00B1BD;border-radius:16px;background:#f8fafc;min-height:240px;padding:18px;position:relative;cursor:pointer;transition:border-color .2s,background .2s}
.uploader:hover{border-color:#07b0b0;background:#f3fbfb}
.ader .empty{display:grid;place-items:center;text-align:center;gap:8px;min-height:200px}
.upl-icon img{width:36px;height:36px;  display: block;
    margin: 0 auto;}
.upl-title{font-weight:700}
.upl-note{font-size:.9rem;color:#6b7280; text-align: center;}
.uploader .preview{display:none;
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #fff;
    box-shadow:0 8px 20px rgba(2,20,30,.12);
    margin:auto;}
.uploader.has-file .empty{display:none}
.uploader.has-file .preview{display:block}


.input .flag{width:22px;height:16px;border-radius:3px;object-fit:cover}

.form-control,
.form-select{
  height:44px;             
  border-radius:12px;     
}
.field{ margin-bottom:14px }


.step-2 .form-grid{ padding-inline:44px }



.input.has-side-dot::before{
  content:"";
  position:absolute; inset-block-start:50%; transform:translateY(-50%);
  inset-inline-end:10px;                
  width:28px; height:28px;               
  border-radius:50%; background:#fff;
  border:2px dashed #7fd3d7;             
 
}
.input.has-side-dot::after{
  content:"";
  position:absolute; inset-block-start:50%; transform:translateY(-50%);
  inset-inline-end:10px;                
  width:28px; height:28px;
  background:
    no-repeat center/14px
    url('assets/Create_Account/loc.png');
}


@media (max-width: 576px){
  .step-2 .form-grid{ padding-inline:28px }
  .input.has-side-dot::before,
  .input.has-side-dot::after{
    inset-inline-end:-14px; width:24px; height:24px;
    background-size:12px;
  }
}




.seg-tabs{
  display:inline-grid; grid-auto-flow:column;
  border:1px solid #e6ebf2; border-radius:12px; overflow:hidden;
}
.seg-tabs .nav-link{
  border:0; border-radius:0;
  min-width:110px; height:44px; display:grid; place-items:center;
  background:#fff; color:#111; font-weight:700;
}
.seg-tabs .nav-link + .nav-link{ border-inline-start:1px solid #e6ebf2 }
.seg-tabs .nav-link.active{
  background:linear-gradient(135deg,#07b0b0,#0098a1); color:#fff;
}

.chip-group.nav .nav-link{
  border:1px solid #dce7ee; border-radius:999px; padding:.5rem .9rem;
  display:inline-flex; align-items:center; gap:.5rem; color:#1f2937;
}
.chip-group.nav .nav-link img{width:18px;height:18px}
.chip-group.nav .nav-link.active{
  background:#e7fbfd; border-color:#bfeef1; color:#0d7d82; font-weight:800;
}
.chip-group.nav .nav-link + .nav-link{margin-inline-start:.5rem}

.creates{
  font-family: Janna LT;
font-weight: 700;
font-style: Bold;
font-size: 16px;
line-height: 174%;
letter-spacing: 0%;
text-align: center;
color: #009CA3;

}


.choose__container.row{display:flex;flex-wrap:wrap}


.illustration{height:340px}
@media (min-width:992px){ .illustration{height:620px} }
.illustration img{object-fit:cover}


.phone-field{position:relative}
.phone-field input.form-control{

  height:48px;
  border-radius:14px;
}
.phone-field .prefix,
.phone-field .suffix-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:24px; height:24px; display:grid; place-items:center; opacity:.8;


}
.phone-field .prefix{inset-inline-end:12px}
.phone-field .suffix-btn{
  inset-inline-end:12px; border:0; background:transparent; padding:0; cursor:pointer
}


.login__title{font-family: Janna LT;
font-weight: 700;
font-size: 34px;
line-height: 174%;
letter-spacing: 0%;
text-align: center;
color: #333333;
}
.login__subtitle{font-family: Janna LT;
font-weight: 400;
font-size: 16px;
line-height: 28px;
letter-spacing: -0.2%;
text-align: center;
color: #666666;
}

.logo3{
  justify-content: center !important;
}

.login__btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.9rem 1.2rem; border-radius:999px; font-weight:700;
}
a.forgot{
  font-family: Janna LT;
font-weight: 400;
font-size: 16px;
line-height: 18.6px;
letter-spacing: -0.1px;
text-transform: capitalize;
color: #009CA3 !important;
text-decoration: none !important;

}


:root{
  --icon-box: 36px; 
  --icon-size: 18px; 
  --icon-gap: 12px;  
}


.phone-field{ position: relative; }
.phone-field .prefix img,
.phone-field .suffix-btn img{
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  object-fit: contain;
}

.account-option .btn {
  position: relative;
  padding-inline-end: 56px; 
}


.account-option .btn::before {
  content: "";
  position: absolute;
  inset-inline-end: 16px;   
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("assets/Choose_Account/no.png") center/contain no-repeat;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  transition: .2s ease;
  z-index: 1;
}

.account-option .btn::after {
  content: "";
  position: absolute;
  inset-inline-end: 16px;   /* داخل الدائرة */
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 30px;
  height: 30px;
  background: url("assets/Choose_Account/yes.png") center/contain no-repeat;
  transition: transform .2s ease;
  z-index: 2;
}


.btn-check:checked + .btn::before {
  background: #e7fbfd;
}

.btn-check:checked + .btn::after {
  transform: translateY(-50%) scale(1);
}

label.form-check-label{
 font-family: Janna LT;
font-weight: 400;
font-size: 16px;
line-height: 18.6px;
letter-spacing: -0.1px;
vertical-align: middle;
text-transform: capitalize;
color: #6F6F74;
}


.form-compact .row{      
  --bs-gutter-y: .75rem;     
  --bs-gutter-x: .75rem;
}
@media (min-width: 992px){
  .form-compact .row{ --bs-gutter-y: 1rem; }
}


.upl-title {
  font-family: Janna LT;
font-weight: 700;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: #00B1BD;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;                
  padding: .5rem .875rem;
  min-height: 44px;
  border: 1px solid #E5E7EB;            
  border-radius: 12px;                
  color: #111;
  font-weight: 600;
  line-height: 1;
  box-shadow:
    0 1px 2px rgba(16,24,40,.06),
    0 1px 3px rgba(16,24,40,.10);      
  cursor: pointer;
}


.pill:hover,
.pill:focus{
  background: #F8FAFC;
  color: #111;
}


.pill i{ font-size: 14px; opacity: .6; }

.pill .flag-sa,
.pill .flag{
  width: 30px; height: 20px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(16,24,40,.06);
}



.ico{
  width: 14px !important;
  height: 14px !important;
}


.form-control.force-ltr{
  direction: ltr;
  text-align: start;             
}

.form-control.force-ltr::placeholder{
  text-align: start;
}

 input::placeholder{
  color: B3B3B3;
}


.account-option { margin-bottom: 1rem; }

.account-option .btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid #e6e9eb;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(21,30,40,0.04);
  transition: all .18s ease;
  text-align: right;
}



.account-option .btn .small {
  color: #6b7280;
  font-size: .9rem;
}

.account-option .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(21,30,40,0.06);
  border-color: #d3d9da;
}


.btn-check:checked + .btn {
  background: white;
  border-color: #2BA8AD;
  color: #0c3b3d;
  box-shadow: 0 8px 20px rgba(43,168,173,0.12);
  transform: none;
}




.account-option .checkmark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 2px dashed #cfd8d8;
  background: #fff;
}
.btn-check:checked + .btn .checkmark {
  border-style: solid;
  border-color: #2BA8AD;
  background: #E9F8F9;
}


.btn-teal {
  background: #22a7a9;
  color: #fff;
  border: 0;
  padding: .9rem 1.25rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(34,167,169,0.12); }

@media (max-width: 767px) {
  .account-option .btn { padding: .8rem 1rem; gap: .75rem; border-radius: 12px; }
  .account-option .account-icon img { width:40px; height:40px; }
  .btn-teal { padding: .8rem; }
}


.account-wrap { background: #F9F9F9; border: 1px solid #EDEDED; padding: 1.25rem; border-radius: 12px; }


.no-translate .account-option .btn:hover { transform: none; box-shadow: 0 6px 12px rgba(0,0,0,0.04); }


:root{
  --teal:#0C9CA4;    
  --teal-light:#E9F8F9; 
}


.account-option .account-icon{
  width:56px; height:56px;
  display:grid; place-items:center;       
  transition:background .15s, border-color .15s, box-shadow .15s;
}



.btn-check:checked + .btn{
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal) inset, 0 6px 18px rgba(12,156,164,.12);
}


.btn-check:checked + .btn .account-icon{
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,156,164,.15);
}
.btn-check:checked + .btn .account-icon::before{
  background:var(--teal-100);
  border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(12,156,164,.10);
}

.btn-check:checked + .btn .account-icon::before{
  opacity:0;                
}

.btn-check:checked + .btn .account-icon img{
  filter:none; opacity:1;
}

.account-option .account-icon::before{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  background: var(--chip);
  border:1px solid var(--chip-border);
  transition: .15s ease;
}

.iti { width: 100%; }
.iti__country-list { z-index: 9999; text-align: right; }
.panel, .card-choose { overflow: visible; }





.iti{
  position: relative !important;
  overflow: visible !important;   /* مهم */
  width: 100%;
  display: inline-block;
}
/* في صفحات RTL خلّي العلم يمين وبنفس سطر الحقل */
.iti.iti--allow-dropdown.iti--rtl .iti__flag-container{
  right: .5rem;            /* قرّبيه من الحافة اليمنى */
  left: auto;
  top: 0; bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;              /* فوق الحقل */
}

.iti__selected-flag{
  background: transparent !important;
  border: 0 !important;
  height: 100%;
  padding: 0 .25rem;
}


.input-group{ width:100%; min-width:0; flex-wrap:nowrap; } 
.input-group .form-control{ flex:1 1 auto; width:1%; }  
.input-group-text, .input-group .btn{ flex:0 0 auto; }  

.input-group-text img, .input-group-text svg{ display:block; max-width:100%; height:auto; }
.input-group-text .btn{
  white-space: nowrap;
  padding-inline: .5rem;    
}

.input-group .form-control { height: 46px; }


.input-group-text.map-addon{
  background: transparent !important;
  border: 0 !important;            
  padding: 0 .5rem !important;
  display: flex; align-items: center; justify-content: center;
  inline-size: 46px;         
  block-size: 46px;
  cursor: pointer;
  border-radius: 10px;                   
  -webkit-tap-highlight-color: transparent; 
}

.input-group-text.map-addon:focus{ outline: none; }

.input-group-text.map-addon:focus-visible{
  outline: 2px solid var(--teal, #07b0b0);
  outline-offset: 2px;
  border-radius: 10px;
}

img { border: none; }