﻿.toolbar-filter {
    background: #d2d6de;
    padding: 10px;
}
/*#region Snackbar*/
.snackbar {
    visibility: hidden;
    min-width: 320px;
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 12px 16px 16px 16px;
    position: fixed;
    z-index: 999999999999999999;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

    .snackbar.show {
        visibility: visible;
        animation: fadein 0.5s, fadeout 0.5s 6.5s;
    }

    .snackbar:before {
        display: inline-block;
        content: '';
        width: 20px;
        height: 20px;
        text-align: center;
        font-size: 20px;
        margin-right: 2px;
        font-family: typicons;
        width: 24px;
    }

    .snackbar.success {
        background: #00a65a;
    }

        .snackbar.success:before {
            background: url("../icons/white/tick.svg");
        }

    .snackbar.danger {
        background: #f56954;
    }

        .snackbar.danger:before {
            background: url("../icons/white/delete.svg");
        }

    .snackbar.warning {
        background: rgb(234, 131, 73);
    }

        .snackbar.warning:before {
            background: url("../icons/warning.svg");
            filter: brightness(0) invert(1);
        }
/*#endregion Snackbar*/

/*---toggleslider---*/
.togglebutton {
    margin-top: 4px;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 15px;
}

    .togglebutton input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggleslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .toggleslider:before {
        position: absolute;
        content: "";
        width: 13px;
        height: 13px;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .toggleslider {
    background-color: #2196F3;
    width: 30px;
    height: 15px;
}

input:focus + .toggleslider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .toggleslider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

.toggleslider.round {
    border-radius: 50px;
}

    .toggleslider.round:before {
        border-radius: 50%;
    }
/*---toggleslider---*/

/*modal dialog*/
.modal-full {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.modal-dialog-full {
    position: fixed;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.modal-body-full {
    position: absolute;
    top: 0px;
    bottom: 60px;
    width: 100%;
    font-weight: 300;
    overflow: auto;
}

.modal-content-full {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.modal-header-full {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.modal-footer-full {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    background: #f1f3f5;
    border-left: 1px solid darken(#f1f3f5, 10%);
}

::-webkit-scrollbar-thumb {
    background: darken(#f1f3f5, 20%);
}

.modal-dialog-fix90 {
    margin: auto 5% 0 5%;
    width: 90%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix80 {
    margin: auto 10% 0 10%;
    width: 80%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix70 {
    margin: auto 15% 0 15%;
    width: 70%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix60 {
    margin: auto 20% 0 20%;
    width: 60%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix50 {
    margin: auto 25% 0 25%;
    width: 50%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix40 {
    margin: auto 30% 0 30%;
    width: 40%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix30 {
    margin: auto 35% 0 35%;
    width: 30%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix20 {
    margin: auto 40% 0 40%;
    width: 20%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-dialog-fix10 {
    margin: auto 45% 0 45%;
    width: 10%;
    position: fixed;
    height: 100%;
    padding: 0;
}
.modal-body-fixed {
    position: absolute;
    top: 60px;
    bottom: 60px;
    width: 100%;
    font-weight: 300;
    overflow: auto;
}

.modal-content-fixed
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.modal-header-fixed {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.modal-footer-fixed {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (max-width: 767px) {
    .modal-dialog-fix90
    .modal-dialog-fix80
    .modal-dialog-fix70
    .modal-dialog-fix60
    .modal-dialog-fix50
    .modal-dialog-fix40
    .modal-dialog-fix30
    .modal-dialog-fix20
    .modal-dialog-fix10 
    {
        margin: 0;
        width: 100%;
    }
}
/*modal dialog*/

table.borderless td, table.borderless th {
    border: none !important;
}