/* life simulation insured card */

.life-insured-card {
    background: #FFFFFF;
    border: 1px solid #E5EAEF;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 12px;
    padding: 20px 12px;  
    min-height: 106px;
  }
  
  .life-insured-card.active {
    border: 0.75px solid #004F8B;
  }
  
  .life-insured-card.disabled {
    background: #F8F9FB;
    border: 1px solid #E5EAEF;
  }
  
  .life-insured-card header {
    margin-bottom: 23px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
  }
  
  .life-insured-card header .insured-status {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    
  }
  
  .life-insured-card header .insured-status .dot-insured {
    width: 2px; 
    height: 2px; 
    background: #CACCCE;
    border-radius: 100%; 
    margin-right: 8px; 
  }
  
  .life-insured-card header .insured {
    font-family: "Source Sans Pro";
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #CACCCE; 
    margin-right: 8px; 
  }
  
  .life-insured-card header .img-options-insured {
    background: url(../../../images/insured-options-icon.svg) center no-repeat; 
    width: 18px; 
    height: 18px; 
    cursor: pointer; 
  }
  
  
  .life-insured-card header .img-options-insured .options-insured-container {
    overflow: hidden;
    max-height: 0; 
    transition: 0.3s all ease-in-out;
    width: 110px; 
    position: relative; 
    top: 18px; 
    right: 98px; 
    background-color: #fff; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
  }
  
  .life-insured-card header .img-options-insured.active .options-insured-container {
    max-height: 88px; 
  }
  
  .life-insured-card header .img-options-insured .option-insured {
    width: 100%;
    height: 44px; 
    margin: 0; 
    display: flex; 
    justify-content: flex-start;
    align-items: center; 
    padding-left: 8px;  
  }
  
  .life-insured-card.taker header .img-options-insured .option-insured.delete-option {
    display: none; 
  }
  
  .life-insured-card.hiring header .img-options-insured .option-insured.delete-option {
    display: none; 
  }
  
  .life-insured-card header .img-options-insured .option-insured:hover {
    background: #F8F9FB;
  }
  
  .life-insured-card header .img-options-insured .option-insured .text {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #01112F;
  }
  
  .life-insured-card header .img-options-insured.active .options-insured {
    display: block; 
  }
  
  
  .life-insured-card header .insured-progress {
    font-family: "Source Sans Pro";
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
  }
  
  .life-insured-card header .insured-progress.edit {
    color: #FFAE46;
  }
  
  .life-insured-card header .insured-progress.complete {
    color: #35C6AC;
  }
  
  .life-insured-card header .insured-progress.not-complete {
    color: #EA010F;
  }
  
  .life-insured-card .insured-info {
    cursor: pointer; 
  }
  
  .life-insured-card .insured-info .name,
  .life-insured-card .insured-info .surname {
    font-family:"Source Sans Pro";
    font-size: 18px;
    line-height: 21px;
    color: #000A1E;
    font-weight: 600;  
    margin-bottom: 5px; 
  }
  
  
  .life-insured-card.active .insured-info .name,
  .life-insured-card.active .insured-info .surname {
    color: #004F8B;
  }