﻿* {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

body {
    overflow: hidden;
}

.btn-open-dialog {
    background-color: transparent;
    border: none;
    outline: none;
}

/*Custom Scrollbar Desing*/
.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 3px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    background-color: #555;
}

/*Custom Scrollbar Desing*/
.container-fluid {
    overflow: auto;
}

a:hover {
    text-decoration: none;
}

hr {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

#menu-toggle:hover {
    box-shadow: 1px 1px 3px 0 gray;
}

.menu-hide {
    display: none;
}




/*Loading*/
.lds-ellipsis {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    opacity: 0.8;
    background: black;
}

    .lds-ellipsis div {
        border: 2px solid white;
        position: absolute;
        top: 50%;
        margin-left: 47%;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: black;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/*Responsive*/
@media (max-width: 768px) {
    .menu-hide {
        display: block;
    }

    .blur {
        filter: blur(2px);
        -webkit-filter: blur(2px);
        -moz-filter: blur(2px);
        -ms-filter: blur(2px);
    }

    /*Loading*/
    .lds-ellipsis div {
        margin-left: 42%;
    }

    .md-dialog-container {
        height: 100%;
        min-height: 100%;
        max-height: 100%;
    }
}
