﻿
.pop {
    display: none;
    position: absolute;
    z-index: 8000;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    min-width: 400px;
    padding: 20px;
    background-color: antiquewhite;
    text-align: center;
    overflow: scroll
}

    .pop i {
        position: absolute;
        right: 4px;
        top: 2px;
        font-size: 2rem;
        cursor: pointer;
    }

        .pop i:hover {
            color: black;
        }

@media only screen and (min-width: 481px) {
    .pop {
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 50%;
        height: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    }
}


.row.align-flex-end [class*=" col-sm-"] {
    align-self: flex-end;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    background-color: #70193d;
    border-color: #70193d;
}

.ul.pagination {
    display: inline-block;
    padding: 0;
    margin: 0;
}

ul.pagination li {
    display: inline;
}

    ul.pagination li a {
        color: black;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
    }

        ul.pagination li a.active {
            background-color: #4CAF50;
            color: white;
        }

        ul.pagination li a:hover:not(.active) {
            background-color: #ddd;
        }

.radio-button-horizontal{
    display:inline-block !important;
}


.pleasewait-modal {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
    display: none;
}

.pleasewait-center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    padding: 10px;
    width: 130px;
    background-color: White;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

    .pleasewait-center img {
        height: 128px;
        width: 128px;
    }

.btn-same-row {
    margin-top: 32px;
}