html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.is-invalid {
    border-color: #dc3545;
    background-color: #f8d7da;
}
/*.hidden {
    display: none !important;
}*/

.notification-icon {
    display: inline-block;
    font-size: 1.5rem;
    transition: color .2s ease;
}

#notificationWrapper:hover .notification-icon {
    color: #0d6efd;
}

.notification-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #dc3545;
    color: #fff;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}
.notification-dropdown {
    position: absolute;
    right: 0;
    top: 32px;
    width: 360px;
    max-height: 420px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border: 1px solid #eee;
    display: none;
    overflow-y: auto;
    z-index: 1050;
    animation: dropdownFade .2s ease;
}
.notification-header {
    padding: 10px 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}
.notification-section {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #6c757d;
    background: #f1f3f5;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.notification-item {
    padding: 12px 14px;
    cursor: pointer;
    transition: background .15s ease;
}

    .notification-item:hover {
        background: #f1f5ff;
    }

    .notification-item.unread {
        background: #eef4ff;
        font-weight: 600;
    }

    .notification-item.read {
        color: #868e96;
    }

    .notification-item small {
        display: block;
        margin-top: 4px;
        font-size: 12px;
    }
.notification-empty {
    padding: 30px;
    text-align: center;
    color: #adb5bd;
    font-size: 14px;
}




@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*.notification-icon.shake {
    animation: shake 0.6s ease-in-out;
}
*/


