::selection {
    background-color: rgb(255, 145, 0) !important;
    color: white !important;
}
.nav-link.dropdown-toggle::after {
    content: none;
}
.bg-orange {
    background-color: rgb(255, 145, 0) !important;
}
.text-orange {
    color: rgb(255, 145, 0) !important;
}
.border-orange {
    border-color: rgb(255, 145, 0) !important;
}
.badge-orange {
    background-color: rgb(255, 145, 0) !important;
    font-size: 9px !important;
}
@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.shine {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    background-size: 200% 100%;
    animation: shine 1.7s linear infinite;
}
#mainNavBar li{
    cursor: pointer;
}
input:focus, textarea:focus {
    border-color: rgb(255, 145, 0) !important;
}
body {
    margin-bottom: 70px;
}
footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: -200px;
}
main {
    min-height: 100vh;
    background: white;
    position: relative;
    z-index: 1;
}
.modal-backdrop {
    z-index: 0 !important;
}