.my_logo {
    /* background-image: url('../img/manager_logo_w.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1px;
    width: 100%;
}
.my_backdrop {
    align-items: center;
    background: #000000;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    background-image: url('../img/login_BG3.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.main-sidebar {
    background-color: #171e4f !important;
}

.brand-link {
    background-color: #171e4f !important;
}

.my_errors {
    color: red !important;
    font-size: 16px;
}
.my_success {
    color: #28a745 !important;
    font-size: 16px;
}

.profile_pic {
    margin-left: 8px;
    background-size: cover;
    width: 100px;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 5px;
}

.profile_banner {
    margin-left: 8px;
    background-size: cover;
    width: 200px;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 5px;
}

.input-group .form-control {
    float: none;
}
.input-group .input-buttons {
    position: relative;
    z-index: 3;
}
.mybreadcrumbs {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 10px;
        list-style: none;
        /* background-color: #e9ecef; */
        border-radius: .25rem;
}

@keyframes spinner {
    to {transform: rotate(360deg);}
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border: 1px solid #ccc;
    border-top-color: #07d;
    animation: spinner .6s linear infinite;
}