/*SCROLLBAR*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #ccc;
}
::-webkit-scrollbar-thumb {
    background-color: #ccc;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.toupper {
    text-transform: uppercase;
}

/* MODAL */
.modal {
    z-index: 1020;
}

.modal .modal-content {
    border-radius: 0;
}

.modal .modal-full {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0;
    max-width: none;
}
.modal .modal-header {
    padding: 10px 20px;
}
.modal .modal-full .modal-content {
    height: 100%;
    margin-bottom: 58px;
}
.modal .modal-full .modal-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
}
.modal .modal-header,
.modal .modal-footer {
    background-color: #F8F8F8;
}
.modal .modal-dialog:not(.modal-full) {
    box-shadow: #333 1px 1px 5px;
}

.modal-header .close, .modal-slide .close {
    top: 45%;
}

@media screen and (min-width: 768px){
    .modal-lg {
        max-width: 80%;
    }

    .modal-md {
        max-width: 70%;
    }

    .modal-sm {
        max-width: 60%;
    }
}

.page-over-loader {
    background-color: rgba(255,255,255,.8);
    position: fixed;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

.page-over-loader > div {
    margin-top: 25%;
}

body.loading .layout-wrapper {
    -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
}

body.loading .page-over-loader {
    display: inherit;
}

