/*table*/
.ogrenci-table {
    border: 0;
}

    .ogrenci-table td,
    .ogrenci-table th {
        border: 0;
        border-top: 1px solid #dee2e6;
    }

    .ogrenci-table .grid-selected {
        background: #ef5285 !important;
        color: #fff !important;
    }

        .ogrenci-table .grid-selected a {
            color: #fff !important;
        }

/*checkbox-template*/
.i-checks.ogrenci-checks input[type="checkbox"] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
}

    .i-checks.ogrenci-checks input[type="checkbox"]::before {
        margin-right: 10px;
        content: '';
        display: inline-block;
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
        width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        background: #dae2e7;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .i-checks.ogrenci-checks input[type="checkbox"]::after {
        content: '\f00c';
        width: 12px;
        height: 12px;
        line-height: 12px;
        text-align: center;
        display: block;
        font-family: 'FontAwesome';
        position: absolute;
        top: 1px;
        left: 1px;
        font-size: 0.7em;
        opacity: 0;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        color: #fff;
    }

    .i-checks.ogrenci-checks input[type="checkbox"]:checked::before {
        background: #ef5285;
    }

    .i-checks.ogrenci-checks input[type="checkbox"]:checked::after {
        opacity: 1;
    }

    .i-checks input[type="checkbox"] + label {
        margin-left: 10px;
    }