﻿
.list-item-text {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.button-panel-small {
    width: 2rem;
    white-space: nowrap;
    float: right;
}

.input-small {
    width: 8rem;
}

.button-panel {
    width: 16rem;
    white-space: nowrap;
    float: right;
}

.list-item-input {
    width: 2rem;
}

.alert-fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    border-radius: 0px
}

a.close {
    text-decoration: none !important;
    font-size: 28px !important;
    line-height: 1.2;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    border: 0px solid #fff;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.td-right {
    text-align: right;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-top: 4px solid rgb(131, 179, 250);
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 0 auto;
}

    .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-bottom: 4px solid #005ca2;
        border-left: 4px solid transparent;
    }

.pagecenter {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}