﻿/*GENERAL*/
/***************************/
body {
  direction: rtl;
  margin: 0;
  color: #000000;
  font-family: 'simpler-regular';
  scrollbar-base-color: #000000;
  scrollbar-face-color: #6e6e6e;
}
.INDMobile #INDmenu-btn.up {
  bottom: 12%;
}
.close-accessability-btn.up {
  bottom: 17%;
}
.bread-crumbs {
  display: none !important;
}
.view {
  position: relative;
}
.homePageLoadingOverlay {
  opacity: 1;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: 10000;
  width: 100%;
}
.homePageLoadingOverlay.isReady {
  opacity: 0;
  z-index: -1;
}
footer {
  opacity: 0;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
footer.isReadyFooter {
  opacity: 1;
  margin-top: 0;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #6e6e6e;
  border-radius: 10px;
}
.HomePage .privacyStrip {
  text-align: center;
  position: fixed;
  left: 0px;
  width: 100%;
  display: block;
  z-index: 100;
  font-family: 'simpler-bold';
  bottom: 0px;
  -moz-transition: .5s linear;
  -o-transition: .5s linear;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
}
.HomePage .privacyStrip.close {
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.HomePage .privacyStrip .contentWrapper .closeStrip {
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  padding: 7px 0;
  color: #1a7e74;
  font-size: 1.3rem;
  font-family: 'simpler-bold';
  text-decoration: none;
  background: none;
  border: none;
}
.HomePage .privacyStrip .contentWrapper .txt {
  color: #4a4848;
  font-size: 1rem;
  font-family: 'simpler-bold';
  padding: 1rem 1.5rem;
  display: inline-block;
}
.HomePage .privacyStrip .contentWrapper .txt > a {
  text-decoration: none;
  color: #4a4848;
}
.HomePage .privacyStrip .contentWrapper .txt > a:hover {
  color: #4a4848;
}
.HomePage .privacyStrip .contentWrapper .txt > a > span {
  text-decoration: underline;
  color: #1a7e74;
  white-space: nowrap;
}
.ltrPartner .HomePage .privacyStrip .contentWrapper .closeStrip {
  right: auto;
  left: 0;
}