/*
::-webkit-scrollbar {
    display: none;
}

html {
    overflow: -moz-scrollbars-none;
}
*/

tr {
    height: 29px;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

input[type="radio"] {
    width: 20px;
    height: 18px;
}

ul {
    margin-top: 0;
}

body, input, button
{
    white-space: nowrap;
    font-weight: 700;
    font-family: Arial;
    font-size: 14px;
    color: black;
    background-color: white;
}

input {
    background-color: #d7d9da;
    width: 100%;
}

input:read-only {
  color: gray;
}

button:focus {outline:0;}

td {
    padding-left: 10px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#inputLabel {
    margin-right: 10px;
}

label.fileselector input
{
    opacity: 100;
}

#timezoneDropdown {
    width: 220px;
    height: 25px;
}

.zvLogo {
    height: 30px;
    position: absolute;
    left: 63px;
    padding-bottom: 2px;
}

.zvLogo img {
    max-height: 100%;
}


.overlay {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:#fff;
    opacity:0.8;
    z-index:1001;
}
.overlay-message{
    background-color:#fff;
    opacity:1;
    z-index:1002;
}

.overlay-message2{
    background-color:#fff;
    opacity:1;
    z-index:1010;
    margin-left: auto;
    margin-right: auto;

    border: 1px solid black;
    background-color:  white;
/*    background-image: url("art/windowback.png"); */
    background-repeat: repeat-x;
    padding: 0px 8px 8px 8px;

    -webkit-box-shadow: 5px 5px 5px #331958;
    box-shadow: 5px 5px 5px #331958;

    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
}

#validatetable
{
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
}
#validatetable td
{
    padding: 2px;
    vertical-align: middle;
}
#validateNotice
{
    color: red;
}

.noticeboxBody
{
    min-height: 25px;
}

.noticebox
{
    min-width: 160px;
    margin-left: auto;
    margin-right: auto;

    border: 1px solid black;
    background-color:  white;
/*    background-image: url("art/windowback.png"); */
    background-repeat: repeat-x;
    padding: 0px 8px 8px 8px;

    -webkit-box-shadow: 5px 5px 5px #331958;
    box-shadow: 5px 5px 5px #331958;

    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
}

.dialogbox
{
/*    border: 1px solid black; */
    background-color:  white;
    background-image: url("art/windowback.png");
    background-repeat: repeat-x;
    padding: 0px 8px 8px 8px;

    -webkit-box-shadow: 5px 5px 5px #331958;
    box-shadow: 5px 5px 5px #331958;

    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
}

.dialogbox h1
{
    text-align: center;
    padding: 0px;
    margin: 0px;
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
}

.dialogbox h2
{
    padding: 0px;
    margin: 8px 0px 8px 0px;
}

.dialogboxBody
{
    padding-left: 20px;
    padding-right: 20px;
    min-height: 145px;
}
.dialogboxNotice
{
    margin-top: 16px;
    text-align: center;
}

.dialogboxButtonrow
{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-top: 16px;
    text-align: center;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    max-width: 200px;
    min-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn {

    border-width: 2px;
    border-style: outset;
    border-color: buttonface;
    border-image: initial;

  background: #b7cfe8;
  background-image: -webkit-linear-gradient(top, #BB8DF9, #5e3693);
  background-image: -moz-linear-gradient(top, , #BB8DF9, #5e3693);
  background-image: -ms-linear-gradient(top, , #BB8DF9, #5e3693);
  background-image: -o-linear-gradient(top, , #BB8DF9, #5e3693);
  background-image: linear-gradient(to bottom, #BB8DF9, #5e3693);
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  text-shadow: 0px 2px 0px #666666;
  font-family: Arial;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 20px 5px 20px;
  text-decoration: none;
}

.btn:hover, .btn:focus {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #5e3693, #BB8DF9);
  background-image: -moz-linear-gradient(top, #5e3693, #BB8DF9);
  background-image: -ms-linear-gradient(top, #5e3693, #BB8DF9);
  background-image: -o-linear-gradient(top, #5e3693, #BB8DF9);
  background-image: linear-gradient(to bottom, #5e3693, #BB8DF9);
  text-decoration: none;
}

.btn:disabled {
  background: gray;
  color: LightGray;

}

.niceTable {
    border-collapse: collapse;
    -webkit-box-shadow: 2px 2px 2px #331958;
    box-shadow: 2px 2px 2px #331958;
}

.niceTable thead {
    background-color: #5e3693;
    color: #fdfdfd;
    border-bottom: solid white 3px;
}

.niceTable thead tr {
    display: table;     /* Wow, defaults to table-row which is completely messed up */
    position: relative;
}

.niceTable th, .niceTable td {
    padding: 5px;
    padding-left: 18px;
    text-align: left;
}

.niceTable th {
    position: relative;   /* need this for the sort arrows absolute positions */
 }

.niceTable tbody {
    display: block;
    overflow: auto;
    width: 100%;
    height: 180px;
}


.niceTable .selected  {
    background-color: #aaa5f8 !important;
}   


td {
    border-spacing: 0;
}


.text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}





