﻿img {
  max-width: 100%;
  height: auto;
}
.main-nav-container {
  position: relative;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 99999;
  padding-bottom: 0;
  /*margin-top:17px;*/
}
.main-nav__blk {
  width: 100%;
  border-top: 1px solid #CACACA  ;
  border-bottom: 1px solid #CACACA;
}
.m-nav-menu__item {
  border-bottom: 1px solid #b3b3b3 ;
  display: block;
  font-size: 1.3em;
  background: #fff;
  margin: 0 0.5em;
  vertical-align: middle;
  height: 100%;
  padding: 1em 0.5em;
  text-align: right;
  font-family: Oron-Medium;
}
.m-nav-menu__item.active a {
  color: #1BDBC4;
  font-family: partner-bold, Oron-Bold;
}
.m-nav-menu__item:last-child {
  border-bottom: none;
}
/*** top block nav  ***/
.top-nav-container {
  display: table;
  width: 100%;
  /*width:99.98%;*/
  direction: rtl;
}
.top-nav-container .top-nav {
  display: table-row;
  background: #000;
  width: 100%;
}
.top-nav-container .top-nav__item {
  display: table-cell;
  color: #fff;
  width: 24%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 0.4em;
  vertical-align: middle;
  font-size: 1.2em;
}
.top-nav-container .top-nav__item.active {
  border-bottom: 6px solid #54BFB5;
}
.top-nav-container .top-nav__item.active a {
  color: #54BFB5;
}
.top-nav-container .top-nav__item a {
  display: block;
  color: #fff;
  padding: 0 1em;
  max-width: 100px;
  margin: 0 auto;
}
/* -----------------------------------------------------------------------------
  CONTAINER OBJECTS
  
----------------------------------------------------------------------------- */
.o-container {
  width: 4.2em;
  display: inline-block;
  margin: 1em 0 2em;
  vertical-align: top;
}
/* -----------------------------------------------------------------------------
  GRID OBJECT
  
----------------------------------------------------------------------------- */
.o-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
/*.o-grid__item {
  padding: 24px;
}*/
/* -----------------------------------------------------------------------------
  HAMBURGER ICONS COMPONENT
  
----------------------------------------------------------------------------- */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `c-hamburger` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
/*#region HAMBURGER*/
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 55px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 25px;
  left: 18px;
  right: 6px;
  height: 4px;
  background: #000;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  content: "";
}
.c-hamburger span::before {
  top: -10px;
}
.c-hamburger span::after {
  bottom: -10px;
}
/*#endregion*/
/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger--htx {
  /*background-color: #ff3264;*/
  background-color: #fff;
}
.c-hamburger--htx span {
  -webkit-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger--htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  /*background-color: #cb0032;*/
}
.c-hamburger--htx.is-active span {
  background: none;
}
.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
/***---------------------------------------------------------------------------------***/
/**                             MEDIA QUERIES                                        **/
/***--------------------------------------------------------------------------------***/
/* Extra Small Devices*/
/* Extra Small Devices, Phones */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .m-nav-menu__item {
    font-size: 1.4em;
  }
  .o-container {
    width: 40px;
  }
  .c-hamburger {
    width: 36px;
  }
  .c-hamburger span {
    left: 4px;
  }
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .m-nav-menu__item {
    font-size: 1.2em;
  }
  .o-container {
    width: 40px;
  }
  .top-nav-container .top-nav__item {
    font-size: 1.1em;
  }
  .top-nav-container .top-nav__item a {
    font-size: 100%;
  }
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .top-nav-container .top-nav__item {
    font-size: 1.1em;
  }
}
@font-face {
  font-family: 'OronLight-Regular';
  src: url('fonts/OronLight-Regular_MFW.eot') format('embedded-opentype'), url('fonts/OronLight-Regular_MFW.ttf') format('truetype'), url('fonts/OronLight-Regular_MFW.svg') format('svg'), url('fonts/OronLight-Regular_MFW.woff') format('woff');
}
@font-face {
  font-family: 'Oron-Medium';
  src: url('fonts/Oron-Medium_MFW.eot') format('embedded-opentype'), url('../fonts/Oron-Medium_MFW.ttf') format('truetype'), url('fonts/Oron-Medium_MFW.svg') format('svg'), url('fonts/Oron-Medium_MFW.woff') format('woff');
}
@font-face {
  font-family: 'Oron-Bold';
  src: url('fonts/Oron-Bold_MFW.eot') format('embedded-opentype'), url('fonts/Oron-Bold_MFW.ttf') format('truetype'), url('fonts/Oron-Bold_MFW.svg') format('svg'), url('fonts/Oron-Bold_MFW.woff') format('woff');
}
@font-face {
  font-family: 'partner-regular';
  src: url('fonts/Partner-Regular_gdi.woff') format('woff'), url('fonts/Partner-Regular_gdi.eot') format('embedded-opentype');
}
@font-face {
  font-family: 'partner-light';
  src: url('fonts/Partner-Light_gdi.woff') format('woff'), url('fonts/Partner-Light_gdi.eot') format('embedded-opentype');
}
@font-face {
  font-family: 'partner-bold';
  src: url('fonts/Partner-Bold_gdi.woff') format('woff'), url('fonts/Partner-Bold_gdi.eot') format('embedded-opentype');
}
body {
  margin: 0 0 0 0;
  font-family: 'partner-regular', 'OronLight-Regular', 'Arial', 'sans-serif';
  /*font-family: Arial;*/
  font-weight: normal;
  background: #fff !important;
}
/***----------------------------------------------------------***/
/*                        general                               */
/***----------------------------------------------------------***/
/** reset **/
.nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
.ie9 .select-wrapper {
  width: 115px;
  overflow: hidden;
  position: relative;
  z-index: 999;
  top: 25%;
  left: 1em;
}
.ie9 .select-wrapper select {
  width: 100px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 9;
  background-image: none !important;
  padding: 0 1em;
}
ul,
li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.rel {
  position: relative;
}
.margB {
  margin-bottom: 2em;
}
.margB1 {
  margin-bottom: 1em;
}
.R {
  float: right;
}
.L {
  float: left;
}
.roundBrd {
  border-radius: 50%;
  border-style: solid;
  border-width: 3px;
}
/*** custom checkboxes ***/
/* Checkmark style starts */
/* Checkmark style starts */
@-moz-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 1.2em;
  }
}
@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 1.2em;
  }
}
@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 0.8em;
  }
}
@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}
@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
@-moz-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
/*input[type=checkbox] { display: none; }*/
.check-box {
  height: 1.5em;
  width: 1.5em;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.check-box::before {
  /* top: 22px;
  left: 15px;
  box-shadow: none;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
 box-shadow:0 0 0 2px #fff;*/
}
.ckeckbox-lbl {
  /* width: 80%;*/
  width: calc(100% - 25px );
  text-align: right;
  padding-right: 0.5em;
  font-size: 1.4em;
  vertical-align: top;
  line-height: 19px;
}
/**  titles **/
h1 {
  direction: rtl;
}
h3 {
  font-size: 1.4em;
}
h2 {
  font-size: 1.4em;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.header > div {
  background: #e4e4e4;
  overflow: hidden;
  width: 100%;
}
.logo-container {
  display: inline-block;
  font-family: 'partner-light', 'OronLight-Regular';
}
.logo-container strong {
  font-family: partner-bold, Oron-Bold;
}
.wide-header {
  /*padding-left:0.5em;bad for carousel*/
  /*border-bottom:1px solid #eee;*/
  /*min-height:60px;BUG IN NOTIFICATION CAROUSEL*/
}
.container {
  text-align: center;
}
a {
  color: #000;
  cursor: pointer;
}
.banner {
  width: 100%;
  height: auto;
}
.btn {
  background: #2cd5c4;
  margin-top: 1em;
  font-family: Oron-Bold;
  font-size: 1.4em;
  border-radius: 0;
  padding: 0.6em 12px;
}
.white-btn {
  border: 3px solid #000;
  background: #fff !important;
}
.accept_btn {
  background-color: #2cd5c4;
}
.cancel_btn {
  background-color: #eee;
}
.aqua {
  background-color: #2DD5C4;
}
.back-header {
  background: #fff;
  border-bottom: 1px #CFCFCF solid;
  text-align: right;
  font-size: 1.4em;
  padding: 0.5em 1em;
  text-decoration: none;
  direction: rtl;
}
.back-header-lnk {
  background: url(../images/back_header_icon.png) right 0 no-repeat;
  display: inline-block;
  padding-right: 1.5em;
}
.red-txt {
  color: #ff0000;
}
.grey-txt {
  color: #b2b2b2;
}
/******************************************************************************/
/*                        header                                               */
/******************************************************************************/
header .banner {
  display: block;
  margin: 5em auto 4em;
}
/******************************************************************************/
/*                        form                                                */
/******************************************************************************/
label {
  display: inline-block;
  width: auto;
  margin-bottom: 5px;
  font-weight: 700;
}
input {
  height: 40px;
  margin-bottom: 1em;
  padding: 0 0.5em;
  border: 2px solid #000;
  float: none !important;
  background: transparent;
  z-index: 999;
}
input[type=text],
input[type=password] {
  display: block;
}
.error-txt {
  text-align: right;
  color: #ff0000;
  font-size: 1.4em;
  padding: 0;
}
select {
  border: 2px solid #000;
  width: 100%;
  text-align: right;
  direction: rtl;
  height: 55px;
  font-size: 1.4em;
  float: none !important;
  background: url(../images/down_arrow.png) 5px center no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.form {
  /*max-width:620px;*/
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  direction: rtl;
  /************************/
  /*  personalised forms  */
  /************************/
}
.form p {
  font-size: 1.4em;
}
.form.form--width {
  max-width: 334px;
}
.form .form__label {
  color: #969696;
  font-size: 1.2em;
  direction: rtl;
  position: absolute;
  top: 6%;
  text-align: right;
  line-height: 35px;
  height: 50%;
  background-color: transparent;
  /*width: ~"calc(100% - 2px)";*/
  right: 2%;
  padding-right: 5px;
  -moz-transition: all, 0.2s, ease-in-out;
  -o-transition: all, 0.2s, ease-in-out;
  -webkit-transition: all, 0.2s, ease-in-out;
  transition: all, 0.2s, ease-in-out;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .form .form__label {
    line-height: 45px;
  }
}
.form .form__label--animate {
  text-align: right;
  top: -29px;
  height: 10%;
  line-height: 28px;
  color: #000;
}
.form .form__label--animate-right {
  text-align: right;
  right: 50px !important;
  height: 10%;
  line-height: 28px;
}
.form .form__input {
  height: 55px;
  float: none !important;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  border: 2px solid #000;
  z-index: 99;
  position: relative;
  background: transparent;
  font-size: 1.4em;
}
.form .form__input.error {
  border: 3px solid #ff0000;
}
.form .form__heading {
  font-size: 1.4em;
  margin-bottom: 2em;
  margin-top: 0.5em;
}
.form .form__btn {
  background: #2cd5c4;
  margin-top: 1em;
  font-family: Oron-Bold;
  border-radius: 0;
  float: none !important;
  margin-bottom: 0.5em;
}
.form .btn {
  float: none !important;
  margin: 1em auto 0.5em;
  display: block;
}
.form select {
  float: none !important;
  padding: 0 1.5em;
}
.form.confirmation {
  margin: 1.5em 0;
  padding: 2.5em 0;
  border: none;
}
.form.confirmation .msg {
  margin-bottom: 3em;
}
.form .form__new-user {
  float: right;
  vertical-align: top;
  text-decoration: underline;
  font-size: 1.4em;
}
.form .form__forgot-psw {
  float: left;
  vertical-align: top;
  text-decoration: underline;
  font-size: 1.4em;
}
.form .form__forgot-psw p {
  /*width:80%;*/
  margin: 0 auto 1em;
}
/******************************************************************************/
/*                      range slider                                          */
/*****************************************************************************/
/*#region range slider*/
.range-wrapper.brd_b {
  padding-bottom: 1.5em;
}
.range-wrapper .rzslider .rz-bar-wrapper {
  width: 100% !important;
  left: 0.8em;
}
.range-wrapper .rzslider {
  height: 55px;
  /*.rz-selected {left:3.5em !important;}*/
}
.range-wrapper .rzslider .rz-tick-value span {
  right: -29px !important;
  display: inline-block;
  min-width: 6em;
  text-align: center;
  /*&.rz-selected {right:-20px !important;}*/
}
.range-wrapper .rzslider .rz-pointer {
  background: url(../images/slider-thumb.png);
  width: 47px;
  height: 47px;
  top: -22px;
}
.range-wrapper .rzslider .rz-pointer:after {
  display: none;
}
.range-wrapper .rzslider .rz-tick-value {
  top: 37px;
  left: 12px;
  font-size: 1.2em;
  position: relative;
}
.range-wrapper .rzslider .rz-selected > span {
  color: #2cd5c4;
  font-family: partner-bold, Oron-Bold;
}
.range-wrapper .rzslider .rz-selected {
  color: #2cd5c4;
  font-family: partner-bold, Oron-Bold;
}
.range-wrapper .rzslider .rz-bar {
  background: #E5E5E5;
  right: 0;
}
.range-wrapper .rzslider .rz-ticks:first-child {
  left: -16px;
}
.range-wrapper .rzslider .rz-ticks:last-child {
  right: 0;
}
.range-wrapper .rzslider .rz-selection {
  z-index: 2;
  border-radius: 2px;
}
.range-wrapper .rzslider .rz-tick {
  position: absolute;
  top: -10px;
  left: 14px;
  width: 31px;
  height: 31px;
  background: #fff;
  text-align: center;
  /*border: 1px solid #eeeeee;*/
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: -3px 4px 10px 0px #8d8d8d;
  -moz-box-shadow: -3px 4px 10px 0px #8d8d8d;
  box-shadow: -3px 4px 10px 0px #8d8d8d;
}
/*#endregion range slider*/
/******************************************************************************/
/*                      new range slider                                     */
/*****************************************************************************/
/*#region new range slider*/
.slider-line {
  background: #eee;
  height: 5px;
  width: 88%;
  margin: 0 auto;
  position: relative;
  bottom: 4.3em;
  z-index: -1;
}
.surfingSlider {
  width: 100%;
  direction: rtl;
  padding: 1.5em 0.6em 0;
}
.surfingSlider > li {
  display: inline-block;
  width: 33%;
  text-align: center;
}
.surfingSlider > li .slider-circle {
  display: inline-block;
  margin: 0 auto;
  margin-top: 10px;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  background: #fff;
  border: 1px solid #eee;
  padding: 0.3em 0.5em;
  -webkit-box-shadow: -3px 4px 10px 0px #8d8d8d;
  -moz-box-shadow: -3px 4px 10px 0px #8d8d8d;
  box-shadow: -3px 4px 10px 0px #8d8d8d;
}
.surfingSlider > li:first-child {
  float: right;
  text-align: right;
  /*.slider-circle {margin:0;}*/
}
.surfingSlider > li:first-child .slider-lbl {
  text-align: right;
}
.surfingSlider > li:last-child {
  float: left;
  text-align: left;
}
.surfingSlider > li:last-child .slider-circle {
  margin: 10px 0 0 0.5em;
}
.surfingSlider > li:last-child .slider-lbl {
  text-align: left;
}
.surfingSlider > li .radioselected {
  -webkit-box-shadow: -3px 4px 10px 0px #8d8d8d;
  -moz-box-shadow: -3px 4px 10px 0px #8d8d8d;
  box-shadow: -3px 4px 10px 0px #8d8d8d;
  width: 40px;
  height: 40px;
  background: #2cd5c4;
  border: 7px solid #fff;
  margin-top: 0;
}
.surfingSlider > li .slider-circle > input {
  opacity: 0;
  margin: 0;
  height: 30px;
  width: 30px;
}
.surfingSlider > li .slider-lbl {
  text-align: center;
  display: block;
  font-size: 1.2em;
}
.surfingSlider > li .slider-lbl.textselected {
  color: #2cd5c4;
  font-size: 1.25em;
  font-family: partner-bold, Oron-Bold;
}
/*#endregion range slider*/
/******************************************************************************/
/*                slick carousel                                              */
/*****************************************************************************/
/*#region slick carousel */
.carousel {
  max-width: 1024px;
  margin: 0 auto;
}
.slick-slider {
  margin: 20px auto 50px;
}
.slick-slide img {
  border-radius: 50%;
}
.slick-slide h3 {
  margin: 8px;
  padding: 2%;
  border-radius: 50%;
}
.slick-pause {
  display: inline-block;
  width: 34px;
  height: 35px;
  vertical-align: middle;
  text-align: left;
  margin-left: 1em;
  position: relative;
  bottom: 18px;
}
.slick-pause.icon-pause {
  background: url(../images/pause_icon.png);
}
.slick-pause.icon-play {
  background: url(../images/play_icon.png);
}
/*.slick-track {
    left: 3px !important;
}*/
/*#endregion range slider*/
/******************************************************************************/
/*                        modal                                              */
/******************************************************************************/
/*#region modal*/
.modal__close-btn {
  width: 40px;
  height: 40px;
  color: #000;
  position: absolute;
  right: -7px;
  top: 0;
  z-index: 999;
  font-size: 1.4em;
  display: block;
  background: url("../images/x.png") left center no-repeat;
}
.modal-content {
  border-radius: 0;
  box-shadow: none;
  padding: 1em;
}
.modal-body {
  padding: 0;
  font-size: 1.0em;
  overflow: hidden;
}
.modal__btn {
  font-family: Oron-Bold;
  border-radius: 0 !important;
  margin-top: 0.5em;
}
.modal__input {
  margin-bottom: 0.5em;
}
body.modal-open {
  overflow: hidden;
}
body.modal-open .modal-dialog {
  height: 0;
}
body.modal-open .modal {
  display: flex !important;
  height: 100%;
}
body.modal-open .modal .modal-dialog {
  top: 25%;
}
/*body.modal-open .modal .modal-dialog {
    margin: auto;
}*/
body.modal-open .modal .modal-dialog {
  /*margin: auto;
    background: #fff;
    font-size: 1.2em;
    vertical-align: top;
    border: 2px solid #000;*/
}
body.modal-open .modal .modal-dialog #TitleError {
  height: 40px;
  background: none;
  text-align: right;
  padding: 0.3em 2.5em;
}
.lock-scroll {
  overflow: hidden;
}
/*#endregion range slider*/
/******************************************************************************/
/*                on / off switch btn                                         */
/******************************************************************************/
/*#region switch*/
.switch {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sw {
  display: none;
}
.sw,
.sw:after,
.sw:before,
.sw *,
.sw *:after,
.sw *:before,
.sw + .switch__btn {
  box-sizing: border-box;
}
.sw::-moz-selection,
.sw:after::-moz-selection,
.sw:before::-moz-selection,
.sw *::-moz-selection,
.sw *:after::-moz-selection,
.sw *:before::-moz-selection,
.sw + .switch__btn::-moz-selection {
  background: none;
}
.sw::selection,
.sw:after::selection,
.sw:before::selection,
.sw *::selection,
.sw *:after::selection,
.sw *:before::selection,
.sw + .switch__btn::selection {
  background: none;
}
.sw + .switch__btn {
  outline: 0;
  display: block;
  width: 4.2em;
  height: 2.2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sw + .switch__btn:after,
.sw + .switch__btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}
.sw + .switch__btn:after {
  left: 0;
}
.sw + .switch__btn:before {
  display: none;
}
.sw:checked + .switch__btn:after {
  left: 50%;
}
.switch-ios + .switch__btn {
  background: #fbfbfb;
  border-radius: 2em;
  padding: 2px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border: 1px solid #e4e4e4;
}
.switch-ios + .switch__btn:after {
  border-radius: 2em;
  background: #fbfbfb;
  -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}
.switch-ios + .switch__btn:hover:after {
  will-change: padding;
}
.switch-ios + .switch__btn:active {
  box-shadow: inset 0 0 0 2em #e8eae9;
}
.switch-ios + .switch__btn:active:after {
  padding-right: .8em;
}
.switch-ios:checked + .switch__btn {
  background: #50C4B9;
  border: 1px solid #50C4B9;
}
.switch-ios:checked + .switch__btn:active {
  box-shadow: none;
}
.switch-ios:checked + .switch__btn:active:after {
  margin-left: -0.8em;
}
/*#endregion modal*/
/**************************************************************/
/*   list items - general template                            */
/*************************************************************/
.brd_b .list__item {
  border-bottom: 1px solid #B2B2B2;
}
.list__item {
  width: 100%;
  padding: 0.5em;
  background: url(../images/left_arrow.png) 20px center no-repeat;
  height: 7em;
  text-align: right;
  direction: rtl;
  display: table;
  padding: 1em;
  margin: 0 auto;
  background-size: 6% !important;
}
.list__item:last-child {
  border-bottom: none;
}
.list__item__txt {
  width: 78%;
  padding-right: 0.5em;
  font-size: 1.6em;
  font-family: oron-bold;
  text-align: right;
  direction: rtl;
  display: table-cell;
  vertical-align: middle;
}
.list__item__img {
  width: 90%;
  height: auto;
  vertical-align: middle;
  display: table-cell;
}
/********************************************************************************************/
/*      Header Carousel Container                                                                       */
/********************************************************************************************/
.HeaderCarouselContainer {
  background: #fff;
  transition: left 0.5s, height 0.5s;
  position: relative;
  z-index: 999;
}
.HeaderCarouselContainer h3 span {
  display: block;
  text-align: center;
  color: #000;
  font-size: 1.0em;
}
.HeaderCarouselContainer .slick-slider {
  display: block;
  border-top: 2px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  background: #f5f5f5;
  margin: 0 auto;
}
.HeaderCarouselContainer .slick-list {
  margin: 0 auto;
  width: 80%;
}
.HeaderCarouselContainer .slider .slick-prev {
  left: 8px;
}
.HeaderCarouselContainer .slider .slick-next {
  right: 12px;
}
.HeaderCarouselContainer.ng-hide {
  height: 0;
}
.HeaderCarouselContainer.ng-hide .slick-slider {
  left: -500px;
}
.btn-block .btn {
  display: block;
  width: 100% !important;
  font-size: 1.2em;
}
.sub-page-title {
  font-size: 1.6em;
  text-align: right;
  font-family: partner-bold, Oron-Bold;
  width: 100%;
  padding: 0 0.8em 0.5em;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid #fff;
}
.iphone-back-link {
  font-size: 1.2em;
  background: url(../images/back_arrow.png) center right transparent no-repeat;
  float: right;
  width: 40px;
  height: 80px;
  background-size: 80%;
  cursor: pointer;
}
/********************************************************************************************/
/*      media queries                                                                       */
/********************************************************************************************/
/* Extra Small Devices, Phones */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .HeaderCarouselContainer {
    height: 109px;
  }
  .HeaderCarouselContainer .slick-slider {
    padding: 0.3em 0 0.5em;
  }
  .HeaderCarouselContainer .slick-slide img {
    width: 70px;
    margin: 0 auto;
  }
  .slick-dots li button {
    width: 15px !important;
    height: 15px !important;
  }
  body.modal-open .modal .modal-dialog {
    width: 100% !important;
    top: 15%;
  }
  .slick-arrow {
    display: none !important;
  }
  .logo.guard-header__logo {
    float: none;
    font-size: 1.4em !important;
    padding: 1.1em 0 0.8em 0.5em;
    margin: 0;
  }
  .error-txt {
    font-size: 1.4em;
  }
  .form {
    font-size: 100%;
  }
  .form .form__label {
    right: 4%;
    font-size: 1.4em;
  }
  .form .form__label--animate {
    top: -29px;
    color: #000;
  }
  .form .form__input {
    width: 100%;
    margin-bottom: 0.5em;
    font-size: 1.4em;
    height: 60px;
  }
  .form .btn {
    margin: 1em auto;
    padding: 1em 0.8em;
  }
  .form .btn.margT {
    margin-top: 1em !important;
  }
  select {
    width: 100%;
    height: 60px;
  }
  .container {
    padding: 0 !important;
  }
  .slick-slider {
    margin-bottom: 0 !important;
    /*margin-top: 28px !important;*/
  }
  .slick-slide {
    /*width:16.438em !important;*/
    margin: 0 auto;
  }
  .slick-slide h3 {
    width: 85% !important;
    margin: 15% auto 0 !important;
    padding: 0 !important;
  }
  .slick-slide img {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
  }
  .onBoarding .slick-list {
    padding: 0px 50px 1em !important;
    /*padding: 0px 50px 1em !important;bug in tutorial*/
    width: 100% !important;
  }
  header {
    min-height: 7em;
  }
  header .banner {
    margin: 0;
  }
  .wide-header {
    /*padding:0.2em 0 0;*/
    margin: 0 auto;
    border-bottom: 1px solid #cbcbcb;
  }
  .wide-header .banner {
    margin: 0 auto;
  }
  .logo-container {
    font-size: 1.2em;
    margin-top: 0.1em;
    margin-left: 0;
    margin-bottom: 0.5em;
  }
  .top-nav-container {
    top: 8.4em;
    position: absolute;
    height: 54px;
  }
  .history-menu {
    top: 11.5em;
    position: absolute;
  }
  .HeaderCarouselContainer {
    /*height:127px;*/
  }
  .HeaderCarouselContainer h3 {
    width: 100% !important;
    margin: 5% auto !important;
    font-size: 1.2em;
  }
  .HeaderCarouselContainer h3 img {
    width: 65%;
  }
  .HeaderCarouselContainer h3 span {
    font-size: 14px;
  }
  .HeaderCarouselContainer .slick-slider {
    margin-top: 0 !important;
    /*margin:0 0 0 -8px;*/
  }
}
/* Extra Small Phones */
@media only screen and (min-width: 320px) and (max-width: 380px) {
  /*.HeaderCarouselContainer {height:95px !important;


                 h3 span {color:#000;}

                 .slick-slide img {width:57px;}
       }*/
  .sub-page-title {
    font-size: 1.5em;
    margin: 0.8em 0;
  }
  .btn-block .btn {
    font-size: 1.0em !important;
  }
  .top-nav-container {
    top: 7.4em;
  }
  .history-menu {
    top: 10.5em;
  }
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wide-header {
    /*padding:0.2em 0 0;*/
    margin: 0 auto;
    border-bottom: 2px solid #eee;
  }
  .logo-container {
    font-size: 1.4em;
    margin-top: 1.3em;
    margin-left: 0.5em;
    margin-bottom: 0.8em;
    margin-top: 0.5em;
  }
  header.header-style {
    margin: 0 !important;
  }
  header .banner {
    margin: 0 auto;
  }
  body.modal-open .modal .modal-dialog {
    width: 50% !important;
  }
  .HeaderCarouselContainer {
    height: 91px;
  }
  .HeaderCarouselContainer .slick-slide img {
    width: 70px;
    margin: 0 auto;
  }
  /*.HeaderCarouselContainer {
        height: 97px !important;
    }*/
  .container {
    padding: 0 !important;
    width: 100%;
  }
  .form {
    font-size: 90%;
  }
  .form .form__label {
    right: 2%;
    top: 6%;
    line-height: 38px;
    font-size: 1.4em;
  }
  .form .form__label--animate {
    top: -32px;
    color: #000;
  }
  .form .form__input {
    height: 55px;
    display: inline-block;
  }
  .form .btn {
    padding: 0.8em;
    margin-bottom: 0.5em;
  }
  select {
    height: 55px;
  }
  /*header {overflow:hidden;} //bad for onBoarding */
  .left-content {
    float: left;
    width: 40%;
  }
  .form--restore-psw .form__input {
    margin-bottom: 0.5em !important;
  }
  .slick-arrow {
    display: none !important;
  }
  .HeaderCarouselContainer .slick-slide h3 {
    font-size: 1.0em;
  }
  .HeaderCarouselContainer .slick-slide img {
    width: 58px;
  }
  .HeaderCarouselContainer .slick-slide .slick-list {
    /*width:90%;*/
  }
  .onBoarding .slick-slide img {
    width: 70%;
    margin: 0 auto;
  }
  .onBoarding .slick-slider .slick-track {
    margin: 0 60px 0 0;
  }
  .guard-header .logo-container {
    font-size: 1.4em;
    margin-top: 20%;
    margin-bottom: 0.5em;
  }
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .wide-header {
    width: 990px;
    min-height: 25px;
    padding: 1.5em 0 0;
    font-size: 1.6em;
    /*padding:0.2em 0 0;*/
    margin: 0 auto;
    border-bottom: 2px solid #eee;
  }
  .wide-header .logo-container {
    margin-left: 0.5em;
  }
  header .banner {
    margin: 1em auto 0;
  }
  header.header-style {
    width: 990px;
    margin: 0 auto;
  }
  .logo-container {
    font-size: 1.2em;
    margin-top: 0.3em;
    margin-bottom: 0.5em;
  }
  .modal-dialog {
    min-width: 350px;
  }
  .form .form__input {
    height: 50px;
    padding: 0 1em;
    box-sizing: border-box;
  }
  .form .btn {
    /*width:250px;*/
    box-sizing: border-box;
  }
  .container {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .onBoarding .slick-slide {
    width: 140px !important;
  }
  .onBoarding .slider .slick-next {
    right: 30px;
    height: 100%;
    /*background: #fff;*/
    width: 20px;
    top: 0;
  }
  .onBoarding .slider .slick-prev {
    left: 30px;
    height: 100%;
    /*background: #fff;*/
    width: 40px;
    top: 0;
    z-index: 99;
  }
  .onBoarding .slick-list {
    padding: 0px 10px 1em !important;
    width: 90% !important;
    margin: 0 auto;
  }
  .onBoarding .slick-slider .slick-track {
    margin: 0 6px 0 0;
  }
  .left-content {
    float: left;
    width: 35%;
  }
  .form--restore-psw .form__input {
    margin-bottom: 0.5em !important;
  }
  .slider .slick-next {
    right: -15px;
  }
  .slider .slick-next:before {
    background-image: url(../images/carousel_slide_right_arrow.png);
    width: 27px;
    height: 32px;
    display: inline-block;
  }
  .slider .slick-prev {
    left: -15px;
  }
  .slider .slick-prev:before {
    background-image: url(../images/carousel_slide_left_arrow.png);
    width: 27px;
    height: 32px;
    display: inline-block;
  }
  .slider .slick-slide img {
    border-radius: 50%;
  }
  .HeaderCarouselContainer {
    background: #fff;
    height: 101px;
    position: relative;
  }
  .HeaderCarouselContainer .slick-slide img {
    width: 65px;
    margin: 0 auto;
  }
  .HeaderCarouselContainer .slick-slide h3 span {
    font-size: 0.8em;
  }
  .HeaderCarouselContainer .slick-next {
    right: 15px;
  }
  .HeaderCarouselContainer .slick-next:before {
    background-image: url(../images/carousel_slide_right_arrow.png);
    width: 27px;
    height: 32px;
    display: inline-block;
  }
  .HeaderCarouselContainer .slick-prev {
    left: 15px;
  }
  .HeaderCarouselContainer .slick-prev:before {
    background-image: url(../images/carousel_slide_left_arrow.png);
    width: 27px;
    height: 32px;
    display: inline-block;
  }
  .HeaderCarouselContainer .slick-slider {
    left: 0px;
    position: relative;
  }
  .guard-header .logo-container {
    font-size: 1.4em;
    margin-top: 20%;
    margin-bottom: 0.5em;
  }
}
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
  float: right !important;
}
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  float: right !important;
}
/* Portrait 4 / 4s*/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) {
  /*.history-menu {
        top: 154px !important;
    }*/
}
/* Portrait 6 plus */
/*************************************************************/
/*                  Landscape                               */
/*************************************************************/
@media only screen and (min-device-width: 380px) and (max-device-width: 736px) and (orientation: landscape) {
  .logo-container {
    font-size: 2.6em;
  }
  .days-lst__item {
    padding: 1.3em 1.5em !important;
  }
  .set-time__wrapper .set-alert-select {
    width: 8em !important;
    font-size: 1.6em !important;
  }
  .family-img-container {
    width: 30% !important;
  }
}
/*iphone 6 plus*/
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation: landscape) {
  .history-menu {
    top: 14.2em !important;
  }
  .onBoarding .slick-slide h3 {
    width: 35% !important;
  }
  .family-img-container {
    width: 30% !important;
  }
  /*.family-members__item > img {width:24%;}*/
  .logo.guard-header__logo {
    font-size: 1.0em !important;
    padding: 1em 0;
  }
}
/*iphone 6 */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  /*.history-menu__txt {
        width: 90%;
    }*/
  .family-members__item > img {
    width: 22% !important;
  }
}
/* iphone 5  */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
  .top-nav-container {
    /*top: 10.4em !important;*/
  }
  .family-members__item > img {
    width: 22%;
  }
}
/* iphone 4  */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {
  .top-nav-container {
    /*top: 8.9em !important;*/
  }
  .history-menu {
    top: 11em !important;
  }
  .family-img-container {
    width: 30% !important;
  }
  .family-members__item > img {
    width: 22%;
  }
}
/*.ie9 {

    .form--family-members .family-members__name,
    .form--family-members .family-members__img,
    .form--family-members .switch,
    .form--edit-family-members .family-members__name,
    .form--edit-family-members .switch {
        top: 30% !important;
    }


    .form--edit-family-members .form--edit-family-members__img {
        top: 5% !important;
    }

    .form--edit-family-members .edit-icon {
        top: 15% !important;
    }
   
    .form--family-icons {

        .select-wrapper {
            float: left;
            width: 40%;

            select {
                float: left;
                width: 90%;
            }
        }


        .form__input {
            border: 1px solid #000;
        }
    }
}*/