.loader-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    z-index: 55;
    background-color: rgba(0, 0, 0, .5);
}

.loader-full {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 5px;
    height: 200px;
    width: 200px;
    background-color: #fff;
    border-radius: 1rem;
    padding-bottom: 4rem;
}


.loader-full span {
    --duration: 1s;
    height: var(--height);
    width: 10px;
    background-color: rgba(0, 213, 255, 1);
    border: none;
    border-radius: 5px;
    animation: animation var(--duration) ease-in-out infinite;
}

.loader-full span:nth-child(1) {
    --height: 40px;
    animation-delay: 0.25s;
}

.loader-full span:nth-child(2) {
    --height: 60px;
    animation-delay: 0.55s;
}

.loader-full span:nth-child(3) {
    --height: 75px;
    animation-delay: 0.75s;
}

.loader-full span:nth-child(4) {
    --height: 60px;
    animation-delay: 1s;
}

.loader-full span:nth-child(5) {
    --height: 40px;
    animation-delay: 1.25s;
}

.attribute {
    position: absolute;
    bottom: 10px;
}

input[type=checkbox] {

    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    padding: 5px;
}


@media (max-width: 768px) {
    .nav-pills {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .nav-link {
        display: block;
        width: 100%;
        border-radius: 0.25rem;
    }

    .card-header {
        flex-direction: column;
        padding: 1rem;
    }
}

.spinning {
    text-align: center;
    white-space: nowrap!important;
    vertical-align: middle!important;
}
