.bs_shdw1 {
    box-shadow: 0px 5px 12px -2px rgba(0, 0, 0, 0.1) !important;
}
.bs_shdw2 {
    box-shadow: 0px 12px 42px -2px rgba(0, 0, 0, 0.1), 0px 3px 12px -2px rgba(0, 0, 0, 0.1) , 0px 1px 1px 0px rgba(0, 0, 0, 0.1) !important;
}
.bs_shdw3 {
    box-shadow: 0px 18px 22px -2px rgba(0, 0, 0, 0.1), 0px 1px 1px 0px rgba(0, 0, 0, 0.1) !important;
}

.custom-submenu-itens .v-list-item__spacer {
    width: 10px !important;
}

.custom-submenu-itens .v-list-item-title {
    font-size: 0.8rem;
}

.v-combobox input{
    overflow: scroll !important;
    flex-wrap: nowrap !important;
}

/* Drag and Drop Upload */

.dropzone-container {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(58, 58, 58, 0.7) !important;
    transition: .5s;
    overflow: hidden;
}
.dropzone-container:hover {
    background-color: rgba(0, 96, 215, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(0, 96, 215, 0.8) !important;
    border: 1px dashed #0060d7 !important;
    transition: .5s;
}
.dragging, .dragging:hover {
    background: rgba(182, 182, 182, 0.3) !important;
    box-shadow: 0 0 0 2px rgba(122, 122, 122, 0.5) inset !important;
    transition: .5s;
    overflow: hidden;
    opacity: 0.3;
    filter: grayscale(1) brightness(0.90);
}
.drop_here {
    background-color: rgba(104, 255, 58, 0.209) !important;
    box-shadow: 0 0 0 0px rgba(73, 225, 27, 0.6) inset !important;
    transition: .5s !important;
}
.drop_none {
    background-color: rgba(225, 27, 27, 0.178) !important;
    box-shadow: 0 0 0 2px rgba(225, 27, 27, 0.423) inset !important;
    transition: .5s !important;
    cursor: not-allowed !important;
}
.dragging *, .drop_here *, .drop_none * {
    pointer-events: none !important;
}
.dragging .dg-bt {
    display: none !important;
}

.WhatsButtonFloat {
    padding: 2px;
    border-radius: 50%;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999 !important;
    animation: bounce-in 3s infinite;
}

@keyframes bounce-in {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}