/* CHECKBOX */

/* Blue checkbox */
.blue-check-box-container {
    display: flex;  
    align-items: center; 
  }

  .blue-check-box {
    width: 16px; 
    height: 16px; 
    border: 1px solid #004F8B;
    border-radius: 2px;   
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-right: 15px;   
    cursor:pointer;
  }

  .blue-check-box .blue-checkbox-square {
    display: none;
  }

  .blue-check-box.active .blue-checkbox-square {
    display: block;
    width: 10px; 
    height: 10px; 
    background-color:#004F8B;
    border-radius: 2px; 
  }

  .blue-check-box-container.error .blue-check-box {
    border: 1px solid #ED3D12;
  }

  .blue-check-box-container.error .label-blue-check-box {
    color: #ED3D12 !important;
  }

  .label-blue-check-box {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    color: #004F8B;
  }

  /* Tick checkbox */

  .tick-checkbox-container {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
  }

  .tick-checkbox-container .tick-checkbox {
    cursor: pointer; 
    border: 1px solid #004F8B;
    background-color: #fff; 
    width: 16px;
    height: 16px; 
    margin-right: 16px; 
    transition: all 0.2s;
  }

  .tick-checkbox-container .tick-checkbox.active {
    background: url('../../../images/img-tick-checkbox.svg') center no-repeat;
    background-color: #004F8B;
    
  }

  /* Tick checkbox circle*/

  .tick-checkbox-circle-container {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
  }

  .tick-checkbox-circle-container .tick-checkbox-circle {
    cursor: pointer; 
    border: 1px solid #004F8B;
    background-color: #fff; 
    width: 16px;
    height: 16px; 
    margin-right: 16px; 
    transition: all 0.2s;
    border-radius: 100%;
  }

  .tick-checkbox-circle-container .tick-checkbox-circle.active {
    background: url('../../../images/img-tick-checkbox.svg') center no-repeat;
    background-color: #004F8B;
    
  }