/******general items******/
.wix-header * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.headerwix {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  z-index: 99999;
  background-color: #ffffff;
}

.wix-header body .body-frame {
  width: 100%;
  height: 100%;
  direction: rtl;
  text-align: right;
  font-family: 'migdalFont';
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: var(--blue-dark-migdal);
}

.wix-header p, .wix-header label, .wix-header select, .wix-header span, .wix-header h1, .wix-header h3, .wix-header h2, .wix-header input {
  font-family: 'migdalFont';
  color: var(--blue-dark-migdal);
  font-size: 18px;
  font-weight: 400;
}

.wix-header a, .wix-header li {
  cursor: pointer;
  text-decoration: none;
  color: var(--blue-dark-migdal);
}

.wix-header ul {
  list-style-type: none;
  padding-right: 0;
}

.wix-header li.title {
  position: relative;
  height: 44px;
  padding: 10px;
  display: flex;
  align-items: center;
  width: max-content;
}


.wix-header p {
  padding: 0;
  margin: 0;
}


button:focus, input:focus, select:focus, textarea:focus {
  outline: 0;
}

.wix-header icon {
  display: inline-block;
}

.wix-header input[type="checkbox"], .wix-header .mobile-menu-wrapper, .wix-header input[type="radio"] {
  display: none;
}


.wix-header header {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
}

.sticky-banner {
  width: 100%;
  position: sticky;
  background-color: var(--lightblue);
  height: 48px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  color: var(--dark-blue);
  justify-content: center;
}

.sticky-text {
  font-family: 'migdalFont';
  color: var(--blue-dark-migdal);
  font-size: 18px;
  font-weight: 400;
}

.close-button {
  display: block;
  height: 16px;
  width: 16px;
  background: url(../imgs/close.svg) center no-repeat;
  position: absolute;
  left: 16px;
  cursor: pointer;
}

/*header:has(.close-banner:checked) .sticky-banner {
  display: none;
}*/

/*header:has(.close-banner:checked) .dropdown-sub-menu-insurance, header:has(.close-banner:checked) .dropdown-sub-menu-pension, header:has(.close-banner:checked) .dropdown-sub-menu-investments, header:has(.close-banner:checked) .dropdown-sub-menu-service, header:has(.close-banner:checked) .dropdown-sub-menu-claims {
  top: 82px;
}*/

#close-banner {
  display: none; /* Hides the checkbox */
}

  #close-banner:checked + .sticky-banner {
    display: none; /* Hides the banner itself */
  }


.btn-for-banner {
  color: #2D66EB;
  cursor: pointer;
  padding-right: 15px;
}

.desktop-header-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1000; /* increased from 100 */
  align-items: center;
  position: relative;
}

.desktop-menu-wrapper {
  width: 100%;
  height: 124px;
  display: flex;
  justify-content: space-between;
  padding: 0 2.7%;
  /*padding: 0 1.5%;*/
}

.desktop-navigation {
  display: flex;
  gap: 35px;
  align-items: center;
}

.desktop-toolbar {
  display: flex;
  align-items: center;
}

.wix-header .page-header-navigation-container {
  display: flex;
  gap: 38px;
}

.desktop-menu-left-content {
  display: flex;
  gap: 20px;
  align-items: center;
  width: auto;
}

/** #search::before{
  content:"";
	display:block;
	height: 24px;
  width: 24px;
	background:url(../imgs/wixheader/search.svg) center no-repeat;
  cursor: pointer;
  margin-left: 15px;
 
}**/

.wix-header #agents, .wix-header #language {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  position: relative;
}

.wix-header .agents, .wix-header .language {
  cursor: pointer;
  display: flex;
  align-items: center;
}

  .wix-header .agents::after, .wix-header .language::after {
    content: "";
    display: block;
    height: 24px;
    width: 24px;
    background: url(../imgs/wixheader/arr-down-blue-dark-bold.svg) center no-repeat;
  }

.wix-header .drop-down-agents {
  overflow: hidden;
  height: 0;
  display: flex;
  flex-direction: column;
  z-index: 99;
  width: 205px;
  top: 100%;
  right: 0;
  scrollbar-width: none;
  background-color: var(--white);
  box-shadow: 0 2px 24px 0 #C8C8C880;
  border-radius: 4px;
  position: absolute;
}

  .wix-header .drop-down-agents ul, .wix-header .drop-down-language ul {
    margin: 0;
  }

.wix-header #agents:has(.agents-btn:checked) .drop-down-agents {
  overflow: auto;
  height: auto;
  padding: 10px 0;
}

.wix-header .drop-down-language {
  overflow: hidden;
  height: 0;
  display: flex;
  flex-direction: column;
  z-index: 99;
  width: 130px;
  top: 100%;
  right: 0;
  scrollbar-width: none;
  background-color: var(--white);
  box-shadow: 0 2px 24px 0 #C8C8C880;
  border-radius: 4px;
  position: absolute;
}

.wix-header #language:has(.language-btn:checked) .drop-down-language {
  overflow: auto;
  height: auto;
  padding: 10px 0;
  margin-top: 2px;
}

.wix-header .agents-line, .wix-header .language-line {
  height: 40px;
  padding: 10px 23px;
}

  .wix-header .language-line:hover, .wix-header .agents-line:hover {
    background-color: #EBF0F799;
  }

.wix-header #my-migdal {
  width: auto;
  background: var(--blue-dark-migdal);
  color: #A2EB9A;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  line-height: 23.76px;
  padding: 0 20px;
  font-size: 17px;
  gap: 5px;
  cursor: pointer;
}

#my-migdal .text-button {
  display: flex;
  gap: 8px;
  color: var(--green);
}

  #my-migdal .text-button::before {
    content: "";
    display: block;
    height: 22px;
    width: 24px;
    aspect-ratio: 1;
    background: url(../imgs/wixheader/heart.svg) center no-repeat;
  }

.desktop-navigation .logo {
  min-width: 123.72px;
  position: relative;
  cursor: pointer;
}

.wix-header .log-out {
  display: none;
}

.desktop-toolbar.user #my-migdal .log-out {
  display: block;
  color: var(--green);
  font-weight: 300;
}

.desktop-toolbar.user #my-migdal .text-button::before {
  display: none;
}

.desktop-toolbar.user #my-migdal .text-button {
  font-weight: 700;
}

.desktop-navigation .title::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0px;
  height: 2px;
  background-color: #0e2d6d;
  margin: 0 10px;
  bottom: 5px;
  transition: all 0.3s;
}

.desktop-navigation .title:hover::before {
  width: 90%;
  transition: width 0.3s linear;
}


/*.wix-header .dropdown-sub-menu-insurance, .wix-header .dropdown-sub-menu-pension, .wix-header .dropdown-sub-menu-investments, .wix-header .dropdown-sub-menu-service, .wix-header .dropdown-sub-menu-claims {*/
.wix-header .dropdown-sub-menu-desktop{
  overflow: hidden;
  max-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  z-index: 0;
  width: 100%;
  top: 85px;
  right: 0;
  left: 0;
  scrollbar-width: none;
  background-color: var(--white);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  box-shadow: 0px 10px 14px 0px #0000001A;

}
.wix-header.banner-active .dropdown-sub-menu-desktop
/*.wix-header.banner-active .dropdown-sub-menu-insurance,
.wix-header.banner-active .dropdown-sub-menu-pension,
.wix-header.banner-active .dropdown-sub-menu-investments,
.wix-header.banner-active .dropdown-sub-menu-service,
.wix-header.banner-active .dropdown-sub-menu-claims*/ {
  top: 132px;
}

.wix-header li.title-desktop:hover .dropdown-sub-menu-desktop {
  opacity: 1;
  max-height: 100%;
  overflow: auto;
  transition: opacity 0.5s ease-in-out;
  padding: 1.5% 11.2% 4% 3%;
  /*padding: 1.5% 10.2% 4% 2%;*/
}

/*.wix-header li.title-insurance:hover .dropdown-sub-menu-insurance {
  opacity: 1;
  max-height: 100%;
  overflow: auto;
  transition: opacity 0.5s ease-in-out;
  padding: 1.5% 9.5% 4% 2%;
}

.wix-header li.title-pension:hover .dropdown-sub-menu-pension {
  opacity: 1;
  max-height: 100%;
  overflow: auto;
  transition: opacity 0.5s ease-in-out;
  padding: 1.5% 9.5% 4% 2%;
}

.wix-header li.title-investments:hover .dropdown-sub-menu-investments {
  opacity: 1;
  max-height: 100%;
  overflow: auto;
  transition: opacity 0.5s ease-in-out;
  padding: 1.5% 9.5% 4% 2%;
}

.wix-header li.title-service:hover .dropdown-sub-menu-service {
  opacity: 1;
  max-height: 100%;
  overflow: auto;
  transition: opacity 0.5s ease-in-out;
  padding: 1.5% 9.5% 4% 2%;
}


.wix-header li.title-claims:hover .dropdown-sub-menu-claims {
  opacity: 1;
  max-height: 100%;
  overflow: auto;
  transition: opacity 0.5s ease-in-out;
  padding: 1.5% 9.5% 4% 2%;
}*/

.wix-header .dropdown-menu-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

.wix-header .right-menu-content {
  width: auto;
  display: flex;
  flex: 0 0 60%;
  gap: 5rem;
}

.wix-header .right-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: auto;
  width: max-content;

}

  .wix-header .right-content:last-child {
    margin-left: 5rem;
  }

.wix-header .sub-title-menu-header {
  min-height: 30px;
  display: flex;
  font-size: 17px;
  font-weight: 700;
  align-items: center;
}

.wix-header .sub-title-menu-content {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

  .wix-header .sub-title-menu-content li {
    min-height: 30px;
    display: flex;
    align-items: end;
    cursor: pointer;
  }

    .wix-header .sub-title-menu-content li:hover {
      text-decoration: underline;
    }

.wix-header .left-menu-content {
    width:auto;
    flex:1 0 0;
 /* position: absolute;*/
  display: flex;
/*  left: 0;
  width: calc(90% - 870px);*/
  gap: 16px;
  background-color: var(--white);
}

.wix-header .icon {
  display: block;
  height: 87px;
  min-width: 87px;
  background: url(../imgs/wixheader/Jumping-rabbit_87px.gif) center no-repeat;
}

.wix-header .left-content {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px;
}

.wix-header .left-content-header {
  height: 38px;
  color: var(--blue-text);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.wix-header .left-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wix-header .actions {
  min-height: 40px;
  border-radius: 4px;
  box-shadow: 0px 0px 24px 0px #C8C8C880;
  font-size: 17px;
  font-weight: 300;
  padding: 8px 15px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

  .wix-header .actions:hover {
    background-color: var(--lightblue);
    transition: background-color 0.3s ease-out;
  }

.wix-header .logo {
  display: block;
  height: 44px;
  width: 123.72px;
  background: url(../imgs/logo.svg) center no-repeat;
  bottom: 16px;
}

.headerRegister {
  float: right;
  padding: 3px 0px 0px 0px;
}

  /******** ******** From old header ******** ********/
  .headerRegister a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 0px 30px 0px 0px;
    background: url(../imgs/wixheader/heart.svg) right 0px no-repeat;
  }

  .headerRegister a span:nth-child(2) {
    display: none;
  }

  .headerRegistered {
    float: right;
    padding: 0px 0px 0px 0px;
  }

  .headerRegistered a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #A2EB9A;
    background: none;
    padding:0px 0px 0px 0px;
  }

  .headerRegistered_mobilePop[aria-hidden="true"] {
  display: none;
  }

  .wix-header.lastuserlogin {
    float: right;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    width: 200px;
    gap: 7px;
  }
/******** ******** MyMigdal Menu Desktop ******** ********/
.sub-header {
  height: 60px;
  background: var(--lightblue);
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 11% 0 1.5%;
  /*padding: 0 9.9% 0 1.5%;*/
}

.sub-header-mymigdal {
  cursor: pointer;
  position: relative;
}

.right-sub-header {
  display: flex;
  gap: 40px;
}

.left-sub-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-notifications {
  display: inline-block;
  height: 44px;
  min-width: 44px;
  /*background: url(../imgs/wixheader/bell.svg) center no-repeat;*/
  background: url(../imgs/wixheader/bell.svg) center no-repeat;
  cursor: pointer;
}

.right-sub-header .title-sub-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #0e2d6d;
  margin: 0 10px;
  bottom: 10px;
  transition: all 0.3s;
}

.drop-down-notifications ul li:not(:last-child) {
  border-bottom: 1px solid #E4E4E4;
}

.sub-header-mymigdal:hover > .title-sub-header::before {
  width: 90%;
  transition: all 0.3s linear;
}

 

.notifications {
  position: relative;
}

  .notifications:has(.notifications-btn:checked) .drop-down-notifications {
    overflow: auto;
    height: auto;
    padding: 14px 16px;
  }


.drop-down-mymigdal {
  overflow: hidden;
  height: 0;
  display: flex;
  flex-direction: column;
  z-index: 99;
  width: max-content;
  min-width: 245px;
  top: 100%;
  right: 10px;
  scrollbar-width: none;
  background-color: var(--white);
  box-shadow: 0 2px 24px 0 #C8C8C880;
  border-radius: 4px;
  position: absolute;
}

.drop-down-language {
  overflow: hidden;
  height: 0;
  display: flex;
  flex-direction: column;
  z-index: 99;
  width: max-content;
  /*min-width: 220px;*/
  top: 100%;
  right: 10px;
  scrollbar-width: none;
  background-color: var(--white);
  box-shadow: 0 2px 24px 0 #C8C8C880;
  border-radius: 4px;
  position: absolute;
}


#language:has(.language-btn:checked) .drop-down-language, #agents:has(.agents-btn:checked) .drop-down-agents,
.sub-header-mymigdal:hover > .drop-down-mymigdal {
  overflow: auto;
  height: auto;
  padding: 15px 0;
}

.drop-down-notifications {
  overflow: hidden;
  height: 0;
  display: flex;
  flex-direction: column;
  z-index: 99;
  width: 574px;
  top: 100%;
  left: 10px;
  scrollbar-width: none;
  background-color: var(--white);
  box-shadow: 0 2px 24px 0 #C8C8C880;
  border-radius: 4px;
  position: absolute;
}

.drop-down-line {
  height: 40px;
  padding: 10px 23px;
  display: flex;
  align-items: center;
  font-weight:300;
}

  .drop-down-line:hover {
    background-color: #EBF0F799;
  }

.notifications-line {
  height: 52px;
  display: flex;
  gap: 12px;
  align-items: center;
}

  .notifications-line .more-info::after {
    content: "";
    display: block;
    height: 24px;
    width: 24px;
    background: url(../imgs/wixheader/arr-down-blue-dark-bold.svg) center no-repeat;
    transform: rotate(0.25turn);
  }

  .notifications-line .more-info {
    display: flex;
    align-items: center;
    font-weight: 700;
  }

.notifications-txt {
  width: 400px;
  display: inline-block;
}

li.title, .title-sub-header {
  position: relative;
  height: 44px;
  padding: 10px;
  display: flex;
  align-items: center;
  width: max-content;
  cursor: pointer;
}

.hidemymigdalmenu {
  display: none !important;
}

.personalInfo_MainLobby, .personalInfo_Proccess {
  /*padding-top: 124px;*/
  padding-top: 140px;
}


@media only screen and (min-width: 1280px) and (max-width: 1400px) {
  .wix-header .page-header-navigation-container {
    display: flex;
    gap: 10px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {


  .wix-header .page-header-navigation-container {
    display: flex;
    gap: 5px;
  }

  .desktop-menu-left-content {
    gap: 10px;
  }

  .wix-header .right-menu-content {
    gap: 50px;
  }

  .wix-header .icon-language {
    display: block;
    height: 24px;
    width: 24px;
    background: url(../imgs/wixheader/lang.svg) center no-repeat;
    cursor: pointer;
  }

  .wix-header .icon-agents {
    display: block;
    height: 24px;
    width: 24px;
    background: url(../imgs/wixheader/business.svg) center no-repeat;
    cursor: pointer;
  }

  .wix-header .language, .wix-header .agents, .wix-header .drop-down-agents, .wix-header .drop-down-language {
    display: none;
  }

  .wix-header #my-migdal {
    padding: 0 10px;
  }

  /** #search::before{
  position: relative;
  top: 2px;
 
}*/

  .wix-header .right-content:last-child {
    margin-left: 0;
  }

  .wix-header li.title-insurance:hover .dropdown-sub-menu-insurance {
    padding: 1.5% 2% 4% 1.5%;
  }

  .wix-header li.title-pension:hover .dropdown-sub-menu-pension {
    padding: 1.5% 2% 4% 1.5%;
  }

  .wix-header li.title-investments:hover .dropdown-sub-menu-investments {
    padding: 1.5% 2% 4% 1.5%;
  }

  .wix-header li.title-service:hover .dropdown-sub-menu-service {
    padding: 1.5% 2% 4% 1.5%;
  }

  .wix-header li.title-claims:hover .dropdown-sub-menu-claims {
    padding: 1.5% 2% 4% 1.5%;
  }
}


@media only screen and (max-width: 1024px) {

   #bodySection {
    overflow:hidden !important;
   }

  .wix-header.desktop-header-wrapper, .desktop-menu-wrapper {
    display: none;
  }

  .wix-header.sticky-banner {
    height: 50px;
    text-align: right;
    font-size: 14px;
    line-height: 17px;
    padding: 7px 15px;
    justify-content: right;
  }

  .sticky-text {
    width: 92%;
    font-size: 12px;
  }

  .wix-header .btn-for-banner {
    padding-right: 5px;
  }

  .wix-header .mobile-menu-wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 23px;
  }

  .wix-header .logo-mobile {
    display: block;
    height: 32px;
    width: 18.68px;
    background: url(../imgs/wixheader/logo-mobile.svg) center no-repeat;
    margin-right:45px;
  }

  .wix-header .slider-mobile {
    display: block;
    height: 32px;
    width: 32px;
    background: url(../imgs/wixheader/menu-mobile.svg) center no-repeat;
  }

  .wix-header .mobile-menu-wrapper.user .person-mobile {
    display: block;
    height: 26px;
    width: 27px;
    background: url(../imgs/wixheader/person-open.svg) center no-repeat;
  }

  .wix-header .mobile-menu-wrapper .person-mobile {
    display: block;
    height: 24px;
    width: 24px;
    background: url(../imgs/wixheader/person-close.svg) center no-repeat;
  }

  .wix-header .left-content-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /********Notificatins*********/
  .wix-header .user-notifications {
    display: flex;
    align-items: center;
    gap: 13.5px;
    margin-left: -100px;
  }

  .wix-header .icon-notifications {
    display: none;
  }

  .wix-header .icon-notifications {
    display: inline-block;
    height: 44px;
    min-width: 44px;
    background: url(../imgs/wixheader/bell.svg) center no-repeat;
  }
  .overlay-notifications {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 59%);
    transition: opacity 1s ease-out;
    visibility: hidden;
    opacity: 0;
    top: 0;
  }

  .mobile-box-notifications {
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.5s ease-out;
    background-color: var(--white);
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 99;
    width: 100%;
    gap: 12px;
    padding: 24px 15px;
  }

  .mobile-box-notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
  }

   .mobile-box-notifications-header::after {
      content: "";
      display: block;
      height: 24px;
      width: 24px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/close.svg) center no-repeat;
    }

  .user-notifications:has(.notifications-mobile:checked) .overlay-notifications {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    top: 0;
  }

  .user-notifications:has(.notifications-mobile:checked) .mobile-box-notifications {
    max-height: 570px;
    height: auto;
    overflow: auto;
    transition: max-height 0.8s ease-out;
  }


  .notifications-line {
    flex-direction: column;
    align-items: normal;
    min-height: 78px;
    padding: 14px 0;
    gap: 5px;
    line-height: 20px;
    font-size: 17px;
  }

 .notifications-txt {
    width: 100%;
  }

  .wix-header .person-mobile-registered {
    display: block;
    height: 26px;
    width: 27px;
    background: url(../imgs/wixheader/person-open.svg) center no-repeat;
  }

  .wix-header #menu-mobile-content {
    position: fixed;
    width: 100%;
    min-height: 0;
    height: 0;
    right: 0;
    padding: 0px 15px;
    gap: 20px;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--white);
    z-index: 99;
  }


    .wix-header #menu-mobile-content .category-mobile {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0px;
      margin: 0px;
    }

      .wix-header #menu-mobile-content .category-mobile a {
        text-decoration: none;
      }

      .wix-header #menu-mobile-content .category-mobile li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 8px;
        height: 40px;
        font-weight: 300;
        position: relative;
      }


        .wix-header #menu-mobile-content .category-mobile li::before {
          content: "";
          display: block;
          height: 1px;
          width: 100%;
          position: absolute;
          aspect-ratio: 1;
          right: 0;
          bottom: -10px;
          /* background-color: var(--grey-line);*/
          margin-top: 10px;
        }

        .wix-header #menu-mobile-content .category-mobile li::after {
          content: "";
          display: block;
          height: 24px;
          width: 24px;
          aspect-ratio: 1;
          background: url(../imgs/wixheader/arrow-left.svg) center no-repeat;
        }


  .wix-header .mobile-menu-wrapper:has(.menu-mobile:checked) #menu-mobile-content {
    overflow: auto;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
    top: 0;
  }

  .wix-header .nickname {
    font-weight: 700;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
/*
    .wix-header .nickname::after {
      content: "";
      display: block;
      height: 44px;
      width: 44px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/close.svg) center no-repeat;
    }*/

    .wix-header .nickname .close-x {
      float:left;
      margin: -10px 0px 0px 0px;

    }

    .wix-header .nickname .close-x::after {
      content: "";
      display: block;
      height: 44px;
      width: 44px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/close.svg) center no-repeat;
    }

  .wix-header .category {
    font-weight: 700;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }

    .wix-header .category::before {
      content: "";
      display: block;
      height: 20px;
      width: 30px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/arrow-back.svg) center no-repeat;
    }

    .wix-header .category::after {
      content: "";
      display: block;
      height: 44px;
      width: 44px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/close.svg) center no-repeat;
    }

  /**.daynamic-search{
  height: 43px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  font-weight: 300;
}
 
.wix-header .daynamic-search::placeholder{
  color: #7A7A7A;
  opacity: 0.5;
}
 
.wix-header .daynamic-search::before{
  content:"";
  display:block;
  height: 24px;
  width: 24px;
  aspect-ratio: 1;
  background:url(../imgs/wixheader/search.svg) center no-repeat;
}**/

  .wix-header .left-content-header {
    margin: 5px 0 15px 0;
  }

  .bottom-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
    width: 100%;
  }

    .bottom-mobile .icon_mobile {
      display: block;
      height: 87px;
      min-width: 87px;
      background: url(../imgs/wixheader/level1_icon.svg) center no-repeat;
    }

    .bottom-mobile .icon_mobile_lvl2_3 {
      display: block;
      height: 87px;
      min-width: 87px;
      background: url(../imgs/wixheader/Jumping-rabbit_87px.gif) center no-repeat;
    }

    .bottom-mobile .left-content-actions {
      justify-content: center;
    }

    .bottom-mobile .actions {
      width: 165px;
      padding: 0;
    }

  .wix-header .log-out-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 30px 15px;
    align-items: center;
    /*position: absolute;*/
    bottom: 45px;
    right: 0;
  }

    .wix-header .log-out-line .lang {
      display: flex;
      align-items: center;
    }

      .wix-header .log-out-line .lang::before {
        content: "";
        display: block;
        height: 26px;
        width: 26px;
        background: url(../imgs/wixheader/lang.svg) center no-repeat;
        position: relative;
        bottom: 3px;
      }

  .wix-header #menu-mobile:has(.LogOut:checked) .nickname {
    display: none;
  }

  .wix-header #menu-mobile:has(.LogOut:checked) .log-out-line {
    display: none;
  }

  .wix-header .overlay-language {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.8);
    transition: opacity 1s ease-out;
    visibility: hidden;
    opacity: 0;
    top: 0;
  }

  .wix-header .mobile-box-language {
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.5s ease-out;
    background-color: var(--white);
    border-radius: 7px;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 99;
    width: 100%;
    gap: 12px;
    padding: 20px 0 31px 0;
    box-shadow: -2px 1px 9px 0px #09090980;
  }

  .wix-header .log-out-line:has(.lang-mobile:checked) .overlay-language {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    top: 0;
  }

  .wix-header .log-out-line:has(.lang-mobile:checked) .mobile-box-language {
    max-height: 300px;
    height: auto;
    overflow: auto;
    transition: max-height 0.5s ease-out;
  }

  .wix-header .mobile-box-language-header {
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    position: relative;
  }

    .wix-header .mobile-box-language-header::before {
      content: "";
      display: block;
      height: 1px;
      width: 100%;
      position: absolute;
      aspect-ratio: 1;
      right: 0;
      bottom: -5px;
      background-color: #020140;
      opacity: 10%;
    }

    .wix-header .mobile-box-language-header::after {
      content: "";
      display: block;
      height: 24px;
      width: 24px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/close.svg) center no-repeat;
      position: relative;
      margin-right: auto;
      padding: 10px;
    }

  .wix-header .language-mobile {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0px;
    padding: 0 23px;
  }

  .wix-header .language-line {
    padding: 8px 0;
  }

  .wix-header .language-mobile li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 300;
    position: relative;
    line-height: 23px;
  }


    .wix-header .language-mobile li::before {
      content: "";
      display: block;
      height: 1px;
      width: 100%;
      position: absolute;
      aspect-ratio: 1;
      right: 0;
      bottom: -5px;
      background-color: #020140;
      opacity: 10%;
    }

    .wix-header .language-mobile li::after {
      content: "";
      display: block;
      height: 24px;
      width: 24px;
      aspect-ratio: 1;
      background: url(../imgs/wixheader/arrow-left.svg) center no-repeat;
    }

  .wix-header .language-mobile .default {
    height: 49px;
    background-color: #EBF0F799;
    padding: 0 11px;
  }

  .wix-header .language-mobile li.default::after {
    display: none;
  }

  .wix-header .language-mobile li.default::before {
    display: none;
  }

  .wix-header.category-mobile ul {
    display: none;
    padding-right: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .wix-header.category-mobile li.open > ul {
    display: flex;
  }

  .wix-header.level2-submenu > li > ul.level3-submenu {
    display: none;
    padding-right: 10px;
    flex-direction: column;
    gap: 6px;
  }

  .wix-header.level2-submenu li.open > ul.level3-submenu {
    display: flex;
  }

  .wix-header .nickname_lastvisit {
    float: right;
    font-size: 13px;
  }

  /******** ******** From old header ******** ********/

  .headerRegister a {
    background: none;
  }

    .headerRegister a span:nth-child(2) {
      display: none !important;
    }

  .headerRegistered {
    float: right;
    padding: 3px 22px 0px 0px;
  }

    .headerRegistered a {
      display: inline-block;
      font-weight: 400;
      font-size: 16px;
      line-height: 22px;
      color: var(--green);
    }

  .headerRegistered_mobilePop[aria-hidden="true"] {
    display: none;
  }

  .personalInfo_MainLobby, .personalInfo_Proccess {
    padding-top: 65px;
  }

}

/* colors */

/* Set variables for all modes */
:root {
  --black: #000;
  --light-blue: #CAD8EA4D;
  --lightblue: #e1e9f3;
  --dark-blue: #040043;
  --blue-super-light: #0d2d6d0d;
  --blue-text: #3C65E3;
  --blue-dark-migdal: #020140;
  --blue-attention: #D4E5F580;
  --white: #ffffff;
  --grey-light: #f3f3f3;
  --disabled-gray: #B7C0D3;
  --grey: #FBFBFB;
  --grey-drop-down-box: #E5E5E5;
  --grey-line: #EFF3F9;
  --green: #A2EB9A;
}

