﻿.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    padding-top: 5px;
    border: 1px solid #888;
    font-family: 'Segoe UI';
}

.splice-modal-content{
    height: 500px;
    width: 500px; /* Could be more or less, depending on screen size */
}
.renewal-modal-content{
    height: 160px;
    width: 300px; /* Could be more or less, depending on screen size */
}
.email-modal-content{
    height: 370px;
    width: 520px; /* Could be more or less, depending on screen size */
}
.tag-inactive-modal-content{
    height: 240px;
    width: 300px; /* Could be more or less, depending on screen size */
}

.BigLink {
    font-size: larger;
}

.ErrorText {
    font-size: x-large;
    color: red;
}
.modal-table{
    width: 100%;
}

.modal-header{
    width: 100%;
    text-align: left;
}

.modal-table-header-row{
    background-color: #aaa;
    color: #ffffff;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

.modal-table-header-col{
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.modal-table-content-row{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.modal-table-content-col{
    padding-left: 10px;
    padding-right: 6px;
}

.active {
    font-weight: normal; /* Was empty JM 11-2-18 */
}

.display-none{
    display: none;
}

.bold{
    font-weight: 600;
}

.btn-right{
    text-align: right;
    padding-bottom: 10px;
}

.btn-left{
    text-align: left;
    padding-bottom: 10px;
}

.btn-center{
    text-align: center;
    padding-bottom: 10px;
}

.modal-button{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 4px 15px 0 rgba(0,0,0,0.19);
    border-radius: 4px;
}

.modal-button:hover {
    background-color: #4B7460; /* Green */
    color: white;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.label-text{
    padding-left: 15px;
    padding-top: -10px;
    color: grey;
}

.splice-location-textbox{
    margin-left: 15px;
    width: 100px;
}

.error{
    color: red;
}



/*User Table Styles*/
.user-table-div{
    width: 100%;
    /*max-height: 650px;*/
}

.userTable{
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 750px;
    /*height: 650px;*/
    margin-left: auto;
    margin-right: auto;
}

#userTable{
    width: 700px;
}
#userTableAdmin{
    width: 100%;
}

.userTable tbody,
.userTable tfoot,
.userTable thead{
    width: 100%;
}

.userTable th{
    border: 1px solid #dddddd;
    /*text-align: left;*/
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #dddddd;
}

.userTable td {
    border: 1px solid #dddddd;
    /*text-align: left;*/
    padding-top: 8px;
    padding-bottom: 8px;
    /*width: 88.5px;*/
}

.userTable tfoot td{
    padding-top: 10px;
    text-align: center;
    background-color: #f0f0f0;
}

.link-div{
    padding-left: 20px;
    padding-right: 20px;
}

.userIDCell{
    text-align: left;
    padding-left: 10px;
}

.filter-row{

}

.filter-textbox{
    width: 95%;
}

.filter-label{
    margin-top: 3px;
    color: #4B7460;
}

.right{
    text-align: right;
}

.left{
    text-align: left;
}

.center{
    text-align: center;
}

.col01 { width: 1px; display: none;}
.col20 { width: 20px; }
.col75 { width: 75px; }
.col90 { width: 90px; }
.col100{ width: 100px; }
.col120{ width: 120px; }
.col250{ width: 250px; }
.col150{ width: 150px; }

.user-active{
    background-color: darkgreen;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border:groove;
    border-width: 3px;
    border-radius: 2px;
    border-color: grey;
}

.user-inactive{
    background-color: #d13939;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border:groove;
    border-width: 3px;
    border-radius: 2px;
    border-color: grey;
}

.pointer{
    cursor: pointer;
}

#sortingMessage{
    display: none;
}

/*Toggle switch styles*/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 18px;
}

.slider.round:before {
  border-radius: 50%;
}