﻿
p {
    margin-bottom: 0px;
}

.form-group {
    margin-bottom: 4px;
}

.modal-backdrop {
    opacity: 0.05 !important;
}

.myclick {
    cursor: pointer;
}

.myhover {
    background: #010101;
}

.myhover:hover {
    background: #404040;
}

.mytable > tbody > tr {
    color: #ffffff;
}

.mytable > thead > tr > td, th {
    max-width: 100px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mytable > tbody > tr > td {
    max-width: 100px;
    overflow: hidden;
    border-top: none;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mynobars::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.mynobars {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.navbar-default .navbar-nav > li > a {
    cursor: pointer;
}

.navbar-inverse .navbar-nav > li > a {
    cursor: pointer;
}

.panel {
    margin-bottom: 6px;
    border-radius: 0px;
}

.panel-heading {
    padding: 9px 15px;
    border-radius: 0px;
}

.panel-title {
    font-size: 15px;
}

/* image */
.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

/* checkbox */
.material-switch > input[type="checkbox"] {
    display: none;
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative;
    width: 40px;
}

    .material-switch > label::before {
        background: rgb(0, 0, 0);
        box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
        border-radius: 8px;
        content: '';
        height: 16px;
        margin-top: -8px;
        position: absolute;
        opacity: 0.3;
        transition: all 0.4s ease-in-out;
        width: 40px;
    }

    .material-switch > label::after {
        background: rgb(255, 255, 255);
        border-radius: 16px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
        content: '';
        height: 24px;
        left: -4px;
        margin-top: -8px;
        position: absolute;
        top: -4px;
        transition: all 0.3s ease-in-out;
        width: 24px;
    }

.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}

.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}
                  
