/****************************************************************
 
----------------------------- HEADER ----------------------------
 
****************************************************************/  

html[dir="rtl"] .main-header .header-container,
body[dir="rtl"] .main-header .header-container {
  flex-direction: row-reverse;
}


/****************************************************************
 
------------------------- Components ----------------------------
 
****************************************************************/


/* Set input direction */
html[dir="rtl"] .input-wrapper,
body[dir="rtl"] .input-wrapper {
  direction: rtl;
}

html[dir="rtl"] .input,
body[dir="rtl"] .input {
  direction: rtl;
}

/* Icon on the LEFT for RTL */
html[dir="rtl"] .input-icon,
body[dir="rtl"] .input-icon {
  margin-right: 12px;
  margin-right: 0;
}


.input-wrapper--rtl {
  direction: rtl;
  text-align: center;
  padding-left: 16px;
  padding-right: 44px; /* Space for icon on right */
  position: relative;
}

.input-wrapper--rtl .input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}