.profile-background {
    min-height: calc(100vh - 194px);
    background-color: blueviolet;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/storage/app/media/sliders/cropped-images/Wsj3BJN-0-0-0-0-1594043693.jpg");
    opacity: 1;
}

.user-background {
    min-height: calc(100vh - 190px);
    background-color: blueviolet;
    display: flex;
    justify-content: center;
    background-image: url("/storage/app/media/sliders/cropped-images/Wsj3BJN-0-0-0-0-1594043693.jpg");
    opacity: 1;
}

.profile-header {
    background-color: var(--blue-02);
    color: #fff;
}

.user-login {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .user-background .card {
    height: fit-content;
} */

#auth_form .nav-link {
    color: var(--blue-02);
}

#auth_form .nav-link:hover {
    color: var(--blue-01);
}

#auth_form h5 {
    color: var(--blue-02);
}

#user-menu .dropdown-menu {
    left: -140px;
}

@media (max-width: 575.98px) {
    .navbar-nav .dropdown-menu {
        max-width: 100%;
    }
}

#user-profile .card {
    border: 0;
}

.flash-message {
    position: fixed;
    width: 500px;
    left: 50%;
    top: 13px;
    margin-left: -250px;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 30px 10px 15px;
    z-index: 10000;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.flash-message.fade {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s, width 0s;
    transition: all 0.5s, width 0s;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9)
}

.flash-message.fade.in {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.flash-message.success {
    background: #8da85e
}

.error {
    background: var(--blue-01) !important;
}

.flash-message.warning {
    background: #f0ad4e
}

.flash-message.info {
    background: #5fb6f5
}

.flash-message button {
    float: none;
    position: absolute;
    right: 10px;
    top: 8px;
    color: white
}

.flash-message button:hover {
    color: white
}

.flash-message.static {
    position: static !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important
}