﻿

.kachuwa-grid .table a.table-link.danger {
    color: #e74c3c;
}

.kachuwa-grid .label {
    border-radius: 3px;
    font-size: 0.875em;
    font-weight: 600;
}

.kachuwa-grid tbody td .user-subhead {
    font-size: 0.875em;
    font-style: italic;
}

.kachuwa-grid table tbody td .user-link {
    display: block;
    font-size: 1.25em;
    padding-top: 3px;
    margin-left: 60px;
}
.kachuwa-grid-header{
    word-break:break-all;
}

.kachuwa-grid a {
    color: #3498db;
    outline: none !important;
}

.kachuwa-grid table tbody td > img {
    position: relative;
    max-width: 50px;
    float: left;
    margin-right: 15px;
}

.kachuwa-grid .table thead tr th {
    font-size: 0.9em;
    font-weight: 500;
    color: #a5a5a5;
}

.kachuwa-grid .table thead tr th {
    border-bottom: 2px solid #e7ebee;
}

.kachuwa-grid .table tbody tr td:first-child {
    font-size: 1.125em;
    font-weight: 300;
}

.kachuwa-grid .table tbody tr td {
    font-size: 1em;
    vertical-align: middle;
    border-top: 1px solid #e7ebee;
    padding: 12px 8px;
}
.kachuwa-filters {
    justify-content: flex-end;
}
    .kachuwa-filters .navbar-form {
        padding:0;
    }
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 15px;
    margin: 13px 27px -3px 25px;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.switchslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .switchslider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: -5px;
        bottom: -3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        box-shadow: 0 1px 5px #bbb9b9;
    }

.switch input:checked ~ .switchslider.round {
    background-color: #2196F3;
    width: 34px;
}
    

input:focus + .switchslider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .switchslider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded switchsliders */
.switchslider.round {
    border-radius: 34px;
    height: 14px;
    width: 34px;
}

    .switchslider.round:before {
        border-radius: 50%;
    }
.uploader {
    background: #fff;
    width: 300px;
}

    .uploader h2 {
        color: #999;
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 6px;
        line-height: 24px;
    }

    .uploader a[data-action] {
        cursor: pointer;
        color: #555;
        font-size: 14px;
        line-height: 24px;
        transition: color 0.2s;
    }

        .uploader a[data-action] i {
            width: 1.25em;
            text-align: center;
        }

        .uploader a[data-action]:hover {
            color: #f80;
        }

        .uploader a[data-action].disabled {
            opacity: 0.35;
            cursor: default;
        }

            .uploader a[data-action].disabled:hover {
                color: #555;
            }

.image_picker .settings_wrap {
    overflow: hidden;
    position: relative;
}

    .image_picker .settings_wrap .drop_target,
    .image_picker .settings_wrap .uploader-actions {
        float: left;
    }

    .image_picker .settings_wrap .drop_target {
        margin-right: 18px;
    }

    .image_picker .settings_wrap .uploader-actions {
        margin-top: 12px;
    }

.uploader-actions.vertical a {
    display: block;
}

.drop_target {
    position: relative;
    cursor: pointer;
    background: #e6e6e6;
    border-top: 1px solid #cccccc;
    border-radius: 4px;
    width: 72px;
    height: 72px;
    padding: 4px 6px 6px;
    transition: all 0.2s;
}

    .drop_target input[type="file"] {
        visibility: hidden;
    }

    .drop_target:before {
        content: '\f0ee';
        font-family: FontAwesome;
        position: absolute;
        display: block;
        width: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 32px;
        color: rgba(0, 0, 0, 0.3);
        transition: color 0.2s;
    }

    .drop_target:hover,
    .drop_target.dropping {
        background: #f80;
        border-top-color: #cc6d00;
    }

        .drop_target:hover:before,
        .drop_target.dropping:before {
            color: rgba(0, 0, 0, 0.6);
        }

    .drop_target .image_preview {
        width: 100%;
        height: 100%;
        background: no-repeat center;
        background-size: contain;
        position: relative;
        z-index: 2;
    }

.image_details {
    width: 192px;
    padding: 4px;
    background: #e6e6e6;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 84px;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.dropped ~ .image_details {
    opacity: 1;
    pointer-events: all;
}

.image_details:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #e6e6e6;
    position: absolute;
    left: -12px;
    top: 10px;
}

.image_details .input_line {
    display: block;
    overflow: hidden;
    margin-bottom: 4px;
}

    .image_details .input_line:last-of-type {
        margin-bottom: 0;
    }

    .image_details .input_line span,
    .image_details .input_line input {
        float: left;
        line-height: 24px;
    }

    .image_details .input_line span {
        font-size: 12px;
        color: #666;
        width: 20%;
    }

    .image_details .input_line input[type="text"] {
        width: 100%;
        color: #444444;
        appearance: none;
        border: 1px solid #e6e6e6;
        border-radius: 3px;
        background: #fff;
        height: 24px;
        line-height: 18px;
        padding: 3px 5px;
        font-size: 14px;
        transition: border 0.2s;
    }

        .image_details .input_line input[type="text"]:hover,
        .image_details .input_line input[type="text"]:focus {
            outline: 0;
            border: 1px solid #f80;
        }

        .image_details .input_line input[type="text"]::-webkit-input-placeholder {
            font-size: 14px;
            color: #999;
        }

.image_details a.confirm {
    position: absolute;
    right: -12px;
    top: 50%;
    margin-top: -12px;
    display: block;
    width: 21px;
    height: 21px;
    border-radius: 100%;
    background: #eee;
    line-height: 23px;
    text-align: center;
    font-size: 16px;
}
