/* General CSS apply to all */
.agentCardTitle{
    font-family: "_Alte-Black", Arial, sans-serif;
    font-weight: bold;
    font-size: 17px;
}

.agentCardMail{
    color: #1362FF;
}

.agentCardSubtitle{
    font-family: "SimplerPro-Regular", Arial, sans-serif;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.97px;
    color: #4A4A4A;
    margin: 0;
}
.agentCardImg{
    -webkit-box-shadow: -1px 3px 15px 2px rgba(0,0,0,0.43); 
    box-shadow: -1px 3px 15px 2px rgba(0,0,0,0.43);
    position: absolute;
    border-radius: 50%;
}
.rcmndTooltip{
  background-color: #FA4500;
  color: #FFFFFF;
  text-align: center;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  display: inline-block;
  z-index: 2;
}
.rcmndToolTail{
  display: inline-block;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 6px 0 6px;
    border-color: #FA4500 transparent transparent transparent;
    position: relative;
    right: 15px;
    bottom: -9.7px;
}
.goodImgtitleLabel{
  padding: 0 8px;
}

.titleLabelContent{
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.74px;
  color: #000000;
  font-weight: 700;
}
.dropbtn {
  /* background-color: #9B9B9B; */
  color: #9B9B9B;
  /* padding: 16px; */
  font-size: 16px;
  border: none;
  cursor: pointer;
  min-width: fit-content;
  width: 160px;
  text-align: center;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.customerRcmndTitle{
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0.97px;
  color: #000000;
}
.pencilImg{
  position: absolute;
  padding: 5px;
  }

  .datePickerWrapper{
    margin: auto 25%;
  }

/* Change the background color of the dropdown button when the dropdown content is shown */
/* .dropdown:hover .dropbtn {
  background-color: #9B9B9B;
} */


.savingsCardContainer{
  background-color: white;
  width: 90%;
  height: fit-content;
  margin: auto;
  margin-bottom: 3%;
  padding: 10px 0;
}

.savingsCard1stRow{
    display: flex;
    justify-content: space-between;
    /* width: 85%; */
    margin: auto;
    padding-top: 7%;
    padding-bottom: 6%;
}
.savingsCardRow{
    width: 85%;
}
.savingsCardRow > p{
  margin-bottom: 0.5rem;
}
.savingsContent{
  display: inline-block;
  margin: 0;
}

.savingsCardTitle{
  text-decoration: underline;
  font-size: 17px;
  color: #4a4a4a;
  letter-spacing: 1.6px;
  line-height: 25px;
}
.savingsCardContent{
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #4a4a4a;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
}
.savingsCardTagWrapper{
  position: relative;
  top: -12px;
}

#rcmndTooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px; 
  height: 19px; 
  background: #FA4500;
  position: absolute;
  -moz-border-radius: 10px; 
  -webkit-border-radius: 10px; 
  border-radius: 50%;
}
#rcmndTooltip:before {
  content:"";
  position: absolute;
  width: 0;
  height: 0;
  /* border-top: 2px solid transparent; */
  border-right: 13px solid #FA4500;
  border-bottom: 13px solid transparent;
  margin: 18px 0 0 -7px;
  transform: rotate(20deg);
}
#rcmndTooltipIphone{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px; 
  height: 22px; 
  background: #FA4500;
  position: absolute;
  -moz-border-radius: 10px; 
  -webkit-border-radius: 10px; 
  border-radius: 50%;
}
#rcmndTooltipIphone:before {
  content:"";
  position: absolute;
  width: 0;
  height: 0;
  /* border-top: 2px solid transparent; */
  border-right: 16px solid #FA4500;
  border-bottom: 18px solid transparent;
  margin: 10px 0 0 0;
  transform: rotate(20deg);
  right: 7px;
}

#rcmndTooltipIpad{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px; 
  height: 22px; 
  background: #FA4500;
  position: absolute;
  -moz-border-radius: 10px; 
  -webkit-border-radius: 10px; 
  border-radius: 50%;
}

#rcmndTooltipIpad:before {
  content:"";
  position: absolute;
  width: 0;
  height: 0;
  /* border-top: 2px solid transparent; */
  border-right: 16px solid #FA4500;
  border-bottom: 18px solid transparent;
  margin: 10px 0 0 -3px;
  transform: rotate(20deg);
  right: 8px;
}

#rcmndTooltip > span {
  color: white;
  z-index: 1;
  font-size: 14px;
}

#rcmndTooltipIphone > span {
  color: white;
  z-index: 1;
  font-size: 14px;
  padding-left: 2px;
}

#rcmndTooltipIpad > span {
  color: white;
  z-index: 1;
  font-size: 14px;
}


.rcmndTooltipDesktop-he{
  position: relative;
  top: -25px;
  left: -15px;
}
.rcmndTooltipDesktop-en{
  position: relative;
  top: -25px;
  left: 120px;
}
.rcmndTooltipIpad{
  position: relative;
  top: -25px;
  right: 15px;
}
.rcmndTooltipMobile{
  position: relative;
  top: -2.5rem;
  right: 8.5rem;
}

.rcmndRextColor{
  color: #1362ff;
  font-weight: bold;
}

.newsNotification{
  height: 63px;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsNoteMobile{
  min-height: 20vh;
  width: 100%;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  gap:5%;
  padding: 23px 30px 49px;
  margin-bottom: 1.5rem;
  margin-top: calc(1.5rem - 10px);
}

.newsMobileTop{
  display: flex;
  flex-direction: row-reverse;

}
.newsCounter{
  direction: rtl;
  font-size: 1vh;
  height:2.2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  color: #1362FF80;
  border-radius: 16px;
}
.newsRightSection{
  display: flex;
  flex-grow: 1;
}
.newsMobileBottom{
  display: flex;
  flex-direction: column;
  gap:2.2vh;
  justify-content: right;
}
.newsNotificationContent{
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 17px;
}
.newsMobileContent{
  margin: 0;
  padding: 0;
  line-height: min(2.6vh,28px);
  font-size: min(1.9vh,17px);
  
}

    /* Mobile */
@media only screen and (max-width: 600px) {
    /* .rcmndTooltip{
      line-height: 25px;
    }
    .rcmndToolTail{
      display: inline-block;
      bottom: -10px;
      position: relative;
      right: -14.8px;
    } */

    #rcmndTooltip > span {
      font-size: 15px;
      padding-left: 1px;
    }
    .agentCardImg{
    width: 85px;
    height: 95px;
    bottom: 82%;
    }

    .modal-id-text{
      /* font-size: clamp(10px, 4vw, 14px); */
      font-size: clamp(10px, 4vw, 10px);
      font-weight: bold;
    }

    /* .NoRcmd-Subtitle{
      width: 43%;
      margin: auto;
      margin-top: 0;
      margin-bottom: 16px;
      letter-spacing: 0.18vw;
      font-size: 1.6vh;
      line-height: 2.16vh;
    }
    .NoRcmd-Subtitle-Inner{
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
    }
    .NoRcmd-textLink{
      color: #1362FF;
      cursor: pointer;
    } */
    .savingsCardTag{
      max-height: 30px;
      padding: 4px 10px;
      min-width: 90px;
      cursor: pointer;
      display: flex;
      justify-content: center;
      border-radius: 4px;
    }

  }
  @media only screen and (max-width:1024px ) {
  .modalTitle{
    /* font-size: clamp(13px, 5vw, 17px);     */
    font-size: 2.6vh;
    line-height: 3.1vh;
    letter-spacing: 0.15vh;
  }
  .modalSubtitle{
    font-size: 2.02vh;
    line-height: 3.03vh;
    letter-spacing: 0.20vh;
  }
  .modal-button-text{
    font-size: 1.41vh;
  }
  .modal-checkbox-text{
    letter-spacing: 0.18vw;
    font-size: 1.5vh;
    line-height: 2.16vh;
  }
  .modal-signpad-text{
    letter-spacing: 0.18vw;
    font-size: 1.6vh;
    line-height: 1.6vh;
  }
}
  /* Mobile-Horizontal */
  @media only screen and (max-height:450px ) {
    .rcmndToolTail{
      display: inline-block;
      bottom: -12px;
      position: relative;
      right: -13.5px;
    }
  }

    /* Tablet */
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .agentCardImg{
    width: 90px;
    height: 100px;
    bottom: 88%;
  }

 .modal-button-text{
  font-size: 17px;
  }

.savingsCardTag{
  max-height: 30px;
  padding: 5px 10px;
  min-width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 4px;
}
   #rcmndTooltip > span {
      font-size: 15px;
    }
}

    /* Desktop-Medium */
@media only screen and (min-width: 1025px) and (max-width: 1450px){
  .agentCardImg{
    width: 80px;
    height: 90px;
    bottom: 88%;
   }
  .modalTitle{
    font-size: 28px;
   }
   .modalSubtitle{
    font-size: 18px;
   }
   .savingsCardTag{
    padding: 0px 10px;
    min-width: 129px;
    cursor: pointer;
    display: flex;
      justify-content: center;
    }
    #rcmndTooltip > span {
      font-size: 15px;
    }
}

      /* Desktop-Big */
@media only screen and (min-width: 1450px){
  .agentCardImg{
   width: 90px;
   height: 100px;
   bottom: 88%;
  }
  .modalTitle{
   font-size: 28px;
  }
  .modalSubtitle{
   font-size: 18px;
  }
  .savingsCardTag{
    padding: 0px 10px;
    min-width: 129px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    }
  #rcmndTooltip > span {
    position: absolute;
    top: 1px;
    }
  }
  /* .newsSwiper{
    width: 80vw;
  } */



  .loginQuestionsWrapper{    
    height: 50%;
    width: 100%;
    margin-top: 30%;
  }

  .loginQuestionsContainer{
    display: grid; 
    grid-template-rows: 1fr auto 1fr;
    row-gap: 40px;
  }

  .titleContainer{
      display: grid;
      justify-content: center;
      row-gap: 10px;
  }
  .titleContainer p{
    font-size:22px;
    line-height: 40px;
    letter-spacing: 0.27px;
    text-align: center;
  }

  .titleContainer p:last-child {
    font-weight: bold;
    font-size: 28px;
  }

  .loginQuestionsController{
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-template-rows: repeat(2,1fr);
    justify-items: center;
    gap: 25px;
  }

  .loginQustBtn{
    display: grid;
    width: 188px;
    height: 57px;
    border: 1px solid #979797;
    cursor: pointer;
  }

  .loginQustBtn span{
    margin: auto;
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 0.25px;
  }

  .qustBtn1{
    grid-column-start: 3;
    grid-row-start: 1;
  }
  .qustBtn2{
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .qustBtn3{
    grid-column-start: 3;
    grid-row-start: 2;
  }
  .qustBtn4{
    grid-column-start: 2;
    grid-row-start: 2;
  }

  .loginQustBtn:hover{
    background-color: #F1F6F6;
  }

  .loginQuestionsSkip{
    display: grid;
    justify-content: center;
  }

  .loginQuestionsSkip span{
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.22px;
    color: #1362FF ;
  }
  .loginQuestionsSkip span:hover{
   text-decoration: underline;
   cursor: pointer;
  }

  @media only screen and (max-width: 1100px)  {
    .loginQuestionsController{
      display: flex;
      flex-direction: column;
      justify-self: center;
      gap: 30px;
    }
    .loginQuestionsWrapper{    
      margin-top: 10%;
    }
  }
  