#Notify {
    position: fixed;
    top: 30px;
    right: 15px;
    padding: 12px 45px;
    z-index: 999999999;
    border-radius: 5px;
    color: #fff !important;
    display: none;
}

.Notify.Success {
    display: block !important;
    background: #0abf30;
    -webkit-animation: bounce-in-right 1.1s both;
    animation: bounce-in-right 1.1s both;
}

.Notify.Danger {
    display: block !important;
    background: #f24d4c;
    -webkit-animation: bounce-in-right 1.1s both;
    animation: bounce-in-right 1.1s both;
}

@keyframes bounce-in-right {
    0% {
        transform: translateX(600px);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        transform: translateX(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        transform: translateX(68px);
        animation-timing-function: ease-in;
    }

    72% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }

    81% {
        transform: translateX(32px);
        animation-timing-function: ease-in;
    }

    90% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }

    95% {
        transform: translateX(8px);
        animation-timing-function: ease-in;
    }

    100% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
}

.fileinput .btn {
    padding: 9.5px 20px !important;
}

.fileinput-new .fileinput-exists {
    display: none;
}

.btn-file>input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    width: 100%;
    filter: alpha(opacity=0);
    font-size: 23px;
    direction: ltr;
    cursor: pointer;
    height: 100%;
}

.fileinput-exists .fileinput-new {
    display: none;
}

::file-selector-button {
    display: none !important;
}

.fileinput .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.fileinput-new .btn-file {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.fileinput-exists .btn-file {
    border-radius: 0;
}

.fileinput-exists .fileinput-exists {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.fileinput-filename {
    height: 100% !important;
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}