body  {
  
  /*overflow: hidden;*/
  /*width: 100%;*/
  /*max-width: 100vw;*/
  /*height: auto;*/
}

img {
  
  max-width: 100%;
}

.landingPage *, .landingPage *:before, .landingPage *:after {
  
  box-sizing: border-box;
}

iframe {
  
  border: 0;
  width: 100%;
  height: 100%;
}


.landingPage  {
  
  & .aisparkleyellow {
    
    color: #ffd43b;
  }
  
  & h2{
    
    font-size: 30px;
    letter-spacing: -0.03rem;
  }
  
  & h3 {
    
    font-size: 20px;
    text-align: start;
  }
  
  & .updateProfileButtonWrapper {
    
    text-align: center;
    margin-top: 25px;
    
    > .button {

      border-radius: 100vh;
      font-size: 20px;
      height: 50px;
      padding: 0 50px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
  }
  
  & .TopSargelFixPlaceHolder {
  
    position: sticky;
    top: 0;
  }  
  
  & .TopSargelPadder {
  
    overflow-x: clip;
    padding: 0;
  }
  
  &.proJobsProductPageTopDesc {
  
    max-width: 550px;
    margin: auto;
    color: #979797;
    text-align: center;
  }
  
  & .container {

    max-width: 960px;
    margin: auto;
  }  

  & .mainBanner {
  
    background: var(--colorWhite);
    width: 100dvw;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.25);
    margin-inline-start: calc( -50dvw + 50% );
  }
  
  & .mainBannerWrap {

    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    max-width: 960px;
    margin: auto;
    
    & > div:nth-child(1)  {
  
      flex: 2;
    }
    
    & > div:nth-child(2)  {
    
      flex: 1;
      height: 396px;
      aspect-ratio: 212/376;
      padding: 20px;
    }
    
    & > div:nth-child(2) img {
  
      display: block;
      object-fit: cover;
     
      height: 100%;
      mix-blend-mode: multiply;
    }
    
    & > div {
      
      &  .mainBannerContent {
        
        text-align: center;
      }
    }
    
    & .mainBannerContentDesc {
        
      font-size: 20px;
      font-weight: bold;
      display: block;
      text-align: center;
      color: #979797;
    }
    
    & .mainBannerContentTitle {
      
      font-weight: bold;
      font-size: clamp(30px, 2.5vw, 35px);
      letter-spacing: -.05rem;
      max-width: 500px;
      margin: 10px auto;
      line-height: 1;
    }
    
    & .productPrices {
  
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 20px;
    }
    
    & .productPricesBox {
      
      position: relative;
      width: 140px;
      padding: 10px;
      padding-top: 20px;
      border: 2px solid #9E9E9E;
      background: var(--colorWhite);
      border-radius: 5px;
      display: flex;
      flex-flow: column wrap;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: 250ms;
    }
    
    & .productPricesBox:is(:hover, :focus) {
  
      transform: scale(1.05);
      z-index: 1;;
    } 
  }
  
  & .proJobsProductPagecontent {
  
    padding: 0 10px;
  }
  
  & .proJobsProductPagecontent > div {
    
    margin: 40px 0;
    text-align: center;
  }
  
  & .proJobsProductCartWrap {
    
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    justify-content: center;
  }
  
  & .proJobsProductCart {
  
    flex: 0 0 calc((100% / 3) - 7px);
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--colorWhite);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  }
  
  & .proJobsProductCartContentBottom, 
    .proJobsProductCartContentTop  {
   
    padding: 10px;
    padding-bottom: 30px;
    
    & h3 {
    
      margin: 0;
      margin-bottom: 10px;
      font-size: 20px;
      text-align: start;
    }
    
    & > div {
    
      font-size: 14px;
      line-height: 1.4;
      color: #000;
    }
  }
  
  & .proJobsProductCartContentBottom {
    
    & > div {
    
      color: #000;
    }
  }
  
  & .proJobsProductCartIconBottom,
    .proJobsProductCartIconTop {
    
    position: relative;
    min-height: 95px;
    background: #eee;
  }
  
  & .proJobsProductCartIconBottom > div,
    .proJobsProductCartIconTop > div {
    
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    padding: 20px;
  }
  
  & .proJobsProductCartIconBottom img,
    .proJobsProductCartIconTop img {
    
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  
  & .proJobsProductCartIconBottom {
    
    min-height: 50px;
    
    > div {
      
      padding-block: 10px;
    }
  }

}
body.ltr {
  
  
  &.landingPage {
    
    & .mainBannerWrap {
      
      & > div:nth-child(2) img {
         
        transform: scaleX(-1);  
      }
    }
  }
}

.accordion { 
  
  cursor: auto;
  background: none;
  padding: 0;
}

.accordionItem  {
  
  overflow: hidden;
  background: var(--colorWhite);
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.25);
  margin-bottom: 10px;
}

.accordionItem:last-child  {
  
  margin: 0;
}

.accordionTitle {
  
  cursor: pointer;
  padding: 15px;
  padding-inline-start: 30px;
  display: block;
  position: relative;
  color: var(--colorBlue);
  transition: 250ms;
}

.accordionTitle:is(:hover) {
 
  background: #eee; 
  border-radius: 5px;
}

.accordionTitle:before {
  
  content: '+';
  position: absolute;
  inset-inline-start: 10px;
  top: 50%;
  color: var(--colorBlue);
  transform: translateY(-50%);
  font-size: 20px;
}

.accordionTitle[aria-expanded="true"]:before {
  
  content: '-';
}

.accordion .accordionTitle h3 {
  
  font-size: 14px;
  margin: 0;
}

.accordionContent {
  
  transition: 250ms ease-out;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}

.accordionContent > div {
  
  min-height: 0;
}

.accordionTitle[aria-expanded="true"] + .accordionContent {
  
   grid-template-rows: 1fr;
}



.accordionContent .content {
  
  padding: 15px;
  padding-inline-start: 30px;
  font-size: 14px;
  line-height: 1.4;
  
}


@media screen and (max-width: 767px)  {
 
  .landingPage { 
    
    & .mainBannerWrap {
      
      padding: 40px 10px;
      
      & > div:nth-child(2) {
    
        display: none;
      }
    }
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
 
  .landingPage  {
    
    & .proJobsProductCart {
      
      flex: 100%;
    }
  }
}


