﻿body {
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

table {
    border-collapse: collapse;
    background-color: transparent;
}

*, ::after, ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

table {
    display: table;
    border-collapse: separate;
    border-spacing: 2px;
    border-color: grey;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

th {
    text-align: left;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #eceeef;
    text-align: left;
}

.table tr:first-child td, .table tr:first-child th {
    border-top: none;
}

* {
    box-sizing: border-box;
}

.admin-dropdown {
    width: 260px;
    position: relative;
    z-index: 1;
    float: right;
    margin-right: 10px;
}

.drop-target {
    position: relative;
    padding: 5px 10px;
    cursor: pointer;
    width: 100%;
    background: #e5e9e8;
    color: #000;
    border: 1px solid #9dcac9;
    border-radius: 4px;
    box-shadow: inset 0 1px #fff;
    font-weight: bold;
}

.drop-target::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 7px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    padding: 5px 10px;
    width: 100%;
    background: #e5e9e8;
    color: #000;
    border: 1px solid #9dcac9;
    border-radius: 4px;
    box-shadow: inset 0 1px #fff;
}

    .drop-menu > .menu-item {
        padding: 5px 0;
        cursor: pointer;
    }

.menu-item:hover {
    text-shadow: 0px 0px 1px #000;
}

.admin-dropdown:hover .drop-target::after {
    content: 'X';
    font-size: 10px;
}

.bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url(/Content/images/transp_bg.png);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
}

.center1 {
    border: 1px solid #000000;
    position: fixed;
    top: 19%;
    left: 50%;
    width: 400px;
    min-height: 200px !important;
    max-height: 400px !important;
    margin-left: -175px;
    margin-top: 80px;
    padding: 0px !important;
    background: #fff;
    overflow: auto;
}

    .center1 > table {
        height: 100%;
    }

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-direction: row-reverse;
}

.Arcoption {
    width: 50%;
    float: left;
    text-align: center;
    cursor: pointer;
    background-color: #efefef;
    border-bottom: 1px solid #447a96;
    border-top: 1px solid #447a96;
    padding: 4px 0px;
}

.activeNotify {
    background: #f1ab17 !important;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(16, 18, 70, 0.4);
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(16, 18, 70, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(16, 18, 70, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(16, 18, 70, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(16, 18, 70, 0.4);
        box-shadow: 0 0 0 0 rgba(16, 18, 70, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(16, 18, 70, 0);
        box-shadow: 0 0 0 10px rgba(16, 18, 70, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(16, 18, 70, 0);
        box-shadow: 0 0 0 0 rgba(16, 18, 70, 0);
    }
}

.right {
    float: right;
}

.left {
    float: left;
}

.clearfix {
    clear: both;
}

input[type=button]:disabled {
    cursor: not-allowed;
}

.ShowUsernamePassword img {
    width: auto;
    height: 16px;
}