.clsLink {
    color: #0645AD;

}
.clsLink:hover {
    text-decoration: underline;
    color: #F13C3B;

}
.custom-control-label:checked:after 
{
    content: "";
}
.custom-control-label:checked:after {
    
    background-color: #2196F3;
}

 /* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;

    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    background-color: #ededed;
    border: 1px solid #71748D;
    border-radius: 4px;
    height: 18px;
    left: 0;
    margin-top: -1px;
    position: absolute;
    top: 0;
    width: 18px;
}
.container {
    cursor: pointer;
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    padding-left: 0px;
    position: relative;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #ededed;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: 1px solid #454545;
    border-width: 0 3px 3px 0;

    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.container {
    margin-left: -25px;
}
.fiTextarea {
    border:none;
    border-bottom: 1px solid #D2D2E4;
    outline: none;
    color: #71748D;
}
