﻿/* The container */
.chkContainer {
    width: 172px;
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgb(173, 187, 216);
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .chkContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid rgb(199,205,219);
}

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

/* Show the checkmark when checked */
.chkContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkContainer .checkmark:after {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 15px;
    border: 0.5px solid rgb(0,219,99);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



/* The container */
.chkContainer2 {
    vertical-align: 5px;
    width: 20px;
    display: inline-block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgb(173, 187, 216);
    text-decoration: underline;
    font-weight: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .chkContainer2 input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        /* Show the checkmark when checked */
        .chkContainer2 input:checked ~ .checkmark:after {
            display: block;
        }

    /* Style the checkmark/indicator */
    .chkContainer2 .checkmark:after {
        left: 8px;
        top: 3px;
        width: 8px;
        height: 15px;
        border: 0.5px solid rgb(0,219,99);
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }




/* custom checkbox - varianta noua */

.customChkContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    font-size: 16px;
    line-height: normal;
    color: #585D70;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


    /* Hide the browser's default checkbox */
    .customChkContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.customChkRate {
    width: 80%;
    margin-left: 15px;
}

/* Styling for the text label */
.customChkText {
    cursor: pointer;
    line-height: 16px;
    font-size: 16px;
}

/* Create a custom checkbox */
.customCheckmark {
    position: relative;
    height: 16px;
    width: 16px;
    border: 1px solid #949494;
    border-radius: 3px;
    flex-shrink: 0; /* Prevent shrinking of checkmark */
    background-color: transparent;
}

/* Show the checkmark when checked */
.customChkContainer input:checked ~ .customCheckmark {
    background-color: #7563F8;
    border: 0.5px solid #7563F8;
}

    .customChkContainer input:checked ~ .customCheckmark:after {
        display: block;
    }

/* Style the checkmark/indicator (hidden when not checked) */
.customChkContainer .customCheckmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: 0.5px solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
