﻿/* DASHBOARDKIT OVERRIDE */
.pc-container .pcoded-content {
    padding: 0px !important;
}

.list-group-item {
    background-color: #f6f6f6 !important;
    cursor: pointer;
    padding: 5px !important;
    border-bottom: 1px solid #ddd !important;
}

@media (max-width: 575.98px) {
    .pc-container {
        top: 70px !important;
    }
}
/* DASHBOARDKIT OVERRIDE */

/* SITE */
.list-item-separator {
    background-color: #f6f6f6;
    border-left: 1px solid #ddd;
}

.btn-no-text {
    width: 40px;
    height: 40px;
    padding-top: 0px !important;
    padding-bottom: 1px !important;
    padding-right: 0px !important;
    padding-left: 2px !important;
}
/* SITE */

/* STICKY FOOTER */
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
}

main {
    flex: 1; /* Pushes footer to the bottom */
}

footer {
    background: #161c25;
    color: white;
}
/* STICKY FOOTER */

/* QR SCANNER */
.camera-wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 130px);
}
/* QR SCANNER */

/* LOADING DARTS ANIMATION */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

#element-0 {
    animation: float 1s ease 0s infinite alternate forwards;
}
/* LOADING DARTS ANIMATION */