﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.notyf__message {
    font-size: small;
}

.notyf__toast {
    border-radius: .375rem !important;
}

.notyf__wrapper {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.notyf__icon {
    font-size: 1em !important;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #00000020
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #00000040;
    }

/* Progress Bar */
.progress {
    position: absolute;
    height: 4px;
    display: block;
    width: 100%;
    background-color: #acece6;
    border-radius: 2px;
    background-clip: padding-box;
    margin: 0;
    z-index: 1;
    overflow: hidden;
}

    .progress .determinate {
        position: absolute;
        background-color: inherit;
        top: 0;
        bottom: 0;
        background-color: #26a69a;
        transition: width .3s linear;
    }

    .progress .indeterminate {
        background-color: #2dce89;
    }

        .progress .indeterminate:before {
            content: '';
            position: absolute;
            background-color: inherit;
            top: 0;
            left: 0;
            bottom: 0;
            will-change: left, right;
            -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
            animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
        }

        .progress .indeterminate:after {
            content: '';
            position: absolute;
            background-color: inherit;
            top: 0;
            left: 0;
            bottom: 0;
            will-change: left, right;
            -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
            animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
            -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;
        }

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

.modal-backdrop {
    backdrop-filter: blur(2px);
    -webkit-filter: blur(2px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    background-color: transparent !important;
}

    .modal-backdrop.show {
        opacity: unset !important;
    }

.disabled {
    cursor: not-allowed !important;
}

.badge-notificacao {
    margin-left: -8px;
    position: absolute;
    margin-top: -8px;
}

.progress-identity {
    margin: 0;
    z-index: 1;
}

.pointer {
    cursor: pointer;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: pre;
    overflow: hidden;
}

tr.item:hover {
    background: #0000002e;
}

.hidden {
    display: none !important;
}

::-webkit-file-upload-button {
    display: none;
}

input[type=file] {
    color: transparent !important;
    width: 65px;
}

    input[type=file]:before {
        color: #000 !important;
        content: "Anexar";
    }

.quill p {
    line-height: 1rem;
}

.folder-shapes {
    position: relative;
    display: flex;
}

    .folder-shapes .folder {
        position: relative;
        max-width: 50px;
        width: 100%;
        height: 40px;
        background: var(--bg);
        border-radius: 0.75rem;
        padding: 1rem;
        --bg: #ecb842;
        transition: 0.2s ease-out;
    }

        .folder-shapes .folder:hover {
            --bg: var(--default);
            cursor: pointer;
        }

    .folder-shapes .folder-f {
        position: relative;
        max-width: 50px;
        width: 100%;
        height: 50px;
        background: var(--bg);
        border-radius: 0.75rem;
        padding: 1rem;
        --bg: #EEE;
        transition: 0.2s ease-out;
    }

        .folder-shapes .folder-f:hover {
            --bg: #AAA;
            cursor: pointer;
        }

    .folder-shapes .top {
        position: absolute;
        left: 0;
        top: -6px;
        height: 26px;
        max-width: 40px;
        width: 100%;
        background: var(--bg);
        -webkit-clip-path: polygon(50% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
        clip-path: polygon(50% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
        overflow: hidden;
        border-radius: 0.75rem;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        transition: 0.2s ease-out;
    }

    .folder-shapes .info {
        z-index: 11111;
        position: absolute;
    }

        .folder-shapes .info h5, h6 {
            color: #242526 !important;
        }

    .folder-shapes .head {
        bottom: 0;
        position: absolute;
        right: 0;
    }

.select2-container .select2-search--inline {
    display: block !important;
    margin-left: 10px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    color: var(--darker);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display:flex!important;
}

.item-canceled {
    background: #ffffff0f;
    opacity: .75;
}

.item-canceled a span {
    color:gray!important
}

.copyright {
    display: none;
}

.g-sidenav-show .copyright {
    display: block;
}

.dropdown-menu-right.dropdown-submenu {
    left: 100%;
    top: 0;
}

.dropdown-item.dropdown-item-submenu:hover + .dropdown-submenu {
    display: block;
}

.dropdown-submenu:hover {
    display: block;
}

.handle{
    cursor: move;
}