/*
   This defines the new user interface for ZendTo version 5 and above.
   Please do not edit this file, but instead over-ride the definitions
   in the local.css file.

   This improved design borrows very heavily from the great work done by
   Mitchell St. Amant <mstamant@nnet.ca>.
*/
:root{
	--dark-blue: #004976;
	--light-blue: #009CDE;
	--white:#FFFFFF;
	--black:#000000;
	--white-blue:#DBF1FB;
}
body {
	font-family: 'Roboto', sans-serif;
	background-repeat: repeat;
	background-image: none;
	background-color: var(--white);
	font-size: 92%;
	margin: 0;
}
a {
	color: var(--light-blue);
	text-decoration: none;
}
.content a {
	font-weight: bold;
}
h4 {
	font-size: 1.1em;
  font-weight: normal;
}
label {
	font-weight: bold;
}
.content{
  max-width:1280px;
  width: auto;
  margin:auto;
}
@media(max-width:1280px){
  .content{
    margin:0 5vw 0 5vw;
  }
}
/* Light yellow background when being dragged over */
#overlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #ffffbc;
	background-color: rgba(255, 255, 188, 0.7);
	z-index: 10000;
	cursor: pointer;
}
#overlaytext {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	font-size: 4em;
	font-weight: bold;
	color: #1f88c1;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}
#overlaytextsub {
	font-size: 40%;
}
.downloading {
	background: #ffffbc;
	background-color: rgba(255, 255, 188, 1.0);
}

/* The language picker drop-down menu */
.dropdownMenu {
	position: relative;
	display: flex;
	float: left;
	margin: 34px 0 25px 25px;
}
.dropdownButton {
	cursor: default;
  background: var(--dark-blue);
  color: white;
  border-top-left-radius: 15px;
  padding: 10px 10px 10px 10px;
  line-height: 14px;
  font-size: 14px;
}
.dropdown-has-hover:hover, .dropdown-has-hover:focus {
	background-color: var(--light-blue);
  cursor: pointer;
}
.dropdownContent {
	display: none;
  position: absolute;
  top: 34px;
  background-color: var(--dark-blue);
  white-space: nowrap;
  z-index: 1;
}
.dropdownContent a {
	color: var(--white);
  font-size: 14px;
  padding: 4px 10px 4px 10px;
  display: block;
}
.dropdownContent a:hover {
	background-color: var(--light-blue);
}
.show {
	display: block;
}

/* End of the language picker drop-down menu */
.systemAnnouncementTitle {
	font-weight: bold;
	font-size: larger;
}

.systemAnnouncementText {
	font-weight: bold;
}

/*
 * All the grids and flexes needed for the Request form.
 */
#request-boxes {
	display: grid;
	display: -ms-grid;
	grid-template-columns: max-content 1fr max-content 1fr;
	-ms-grid-columns: max-content 1fr max-content 1fr;
	grid-template-rows: repeat(6, auto) 3px auto;
	-ms-grid-template-rows: (1fr)[6] 0px auto;
	align-items: center;
	-ms-grid-column-align: end;
}
#request-boxes .labels {
	display: block; /* IE */
	font-weight: bold;
	line-height: 26px;
	margin-right: 5px;
	justify-self: end;
	-ms-grid-row-align: center;
	-ms-grid-column-align: end;
}
#request-boxes .text {
	align-self: start;
	-ms-grid-row-align: stretch; /* Yes they are supposed to be different */
	display: block; /* IE */
	border-color: #2b3e89;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	padding: 2px 5px;
	clear: both;
	margin: 5px 0px;
}
/* IE can't auto-place items in a grid, so everything has
   to be manually placed. */
#request-boxes #fromLabel {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 1;
	-ms-grid-row: 1;
}
#request-boxes #orgLabel {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 1;
	-ms-grid-row: 1;
	margin-left: 10px;
}
#request-boxes #fromHolder {
	grid-column: 2;
	-ms-grid-column: 2;
	grid-row: 1;
	-ms-grid-row: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-height: 22px;
	line-height: 24px;

}
#request-boxes #senderOrg {
	grid-column: 4;
	-ms-grid-column: 4;
	grid-row: 1;
	-ms-grid-row: 1;
	padding-left: 6px;
	font-size: inherit;
	min-height: 22px;
	line-height: 24px;

}
#request-boxes #recipNameLabel {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 2;
	-ms-grid-row: 2;
	padding-left: inherit;
}
#request-boxes #recipEmailLabel {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 2;
	-ms-grid-row: 2;
	padding-left: inherit;
	margin-left: 10px;
}
#request-boxes #recipName {
	grid-column: 2;
	-ms-grid-column: 2;
	grid-row: 2;
	-ms-grid-row: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-height: 22px;
	line-height: 24px;
	font-size: 1em;
}
#request-boxes #recipEmail {
	grid-column: 4;
	-ms-grid-column: 4;
	grid-row: 2;
	-ms-grid-row: 2;
	padding-left: 6px;
	font-size: inherit;
	min-height: 22px;
	line-height: 24px;
}
#request-boxes #subjectLabel {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 3;
	-ms-grid-row: 3;
}
#request-boxes #subject {
	grid-column-start: 2;
	grid-column-end: 5;
	-ms-grid-column: 2;
	-ms-grid-column-span: 3;
	grid-row: 3;
	-ms-grid-row: 3;
	padding-left: 6px;
	font-size: inherit;
	min-height: 22px;
	line-height: 24px;
}
#request-boxes #timelimit {
	grid-column-start: 1;
	grid-column-end: 5;
	-ms-grid-column: 1;
	-ms-grid-column-span: 4;
	grid-row: 4;
	-ms-grid-row: 4;
	display: block;
	min-height: 22px;
	line-height: 24px;
}
#request-boxes #startLabel {
	display: inline;
}
#request-boxes #expiryLabel {
	display: inline;
	margin-right: 10px;
	margin-left: 10px;
}
#request-boxes #start {
	display: inline;
	padding-left: 6px;
	font-size: inherit;
	min-height: 22px;
	line-height: 24px;
}
#request-boxes #expiry {
	display: inline;
	padding-left: 6px;
	font-size: inherit;
	min-height: 22px;
	line-height: 24px;
}
#request-boxes #noteLabel {
	grid-column-start: 1;
	grid-column-end: 5;
	-ms-grid-column: 1;
	-ms-grid-column-span: 4;
	grid-row: 5;
	-ms-grid-row: 5;
	justify-self: start;
	-ms-grid-column-align: start;
}
#request-boxes #noteHolder {
	grid-column-start: 1;
	grid-column-end: 3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-row-start: 6;
	grid-row-end: 9;
	-ms-grid-row: 6;
	-ms-grid-row-span: 3;
	display: flex;
	flex-direction: column;
	margin-right: 2px;
}
#request-boxes #note {
	width: 100%;
	min-height: 90px;
	flex: 1;
}
#request-boxes #noteLengthText {
	text-align: right;
	margin-right: -14px;
	padding-right: 0px;
}
#request-boxes .request-checkbox {
	justify-self: end;
	-ms-grid-column-align: end;
	align-self: center;
	-ms-grid-row-align: center;
	margin-right: 1ch;
	grid-column: 3;
	-ms-grid-column: 3;
	display: block; /* IE */
}
#request-boxes .request-checklabel {
	justify-self: start;
	-ms-grid-column-align: start;
	align-self: center;
	-ms-grid-row-align: center;
	grid-column: 4;
	-ms-grid-column: 4;
	display: block; /* IE */
}
#request-boxes .request-encryptSpan {
	grid-row: 6;
	-ms-grid-row: 6;
	align-self: end;
	-ms-grid-row-align: end;
}
#request-boxes .request-space {
	grid-row: 7;
	-ms-grid-row: 7;
	-ms-grid-row-align: stretch;
	max-height: 5px;
}
#request-boxes .request-sendEmailSpan {
	grid-row: 8;
	-ms-grid-row: 8;
	align-self: start;
	-ms-grid-row-align: start;
}




/*
 * All the grids and flexes needed for the New-Dropoff form.
 */

#newdropoff-boxes {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 48% 40px auto;
	-ms-grid-columns: 48% 40px 1fr;
}
#newdropoff-boxes .labels {
	display: block; /* IE */
	font-weight: bold;
	line-height: 26px;
}
#newdropoff-boxes .text {
	align-self: start;
	-ms-grid-row-align: stretch; /* Yes they are supposed to be different */
	display: block; /* IE */
	border-color: #2b3e89;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	padding: 2px 5px;
	clear: both;
}
/* IE can't auto-place items in a grid, so everything has
   to be manually placed. */
#newdropoff-boxes #fromLabel {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 1;
	-ms-grid-row: 1;
}
#newdropoff-boxes #subjectLabel {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 1;
	-ms-grid-row: 1;
}
#newdropoff-boxes #fromHolder {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 2;
	-ms-grid-row: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-height: 22px;
	line-height: 24px;

}
#newdropoff-boxes #subject {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 2;
	-ms-grid-row: 2;
	padding-left: 6px;
	font-size: inherit;
	min-height: 22px;
	line-height: 24px;

}
#newdropoff-boxes #emailLabel {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 3;
	-ms-grid-row: 3;
}
#newdropoff-boxes #emailHolder {
	grid-column-start: 1;
	-ms-grid-column: 1;
	grid-column-end: 4;
	-ms-grid-column-span: 4;
	grid-row: 4;
	-ms-grid-row: 4;
	width: inherit;
	min-height: 28px;
	padding-left: 2px;
	padding-right: 2px;
}
#newdropoff-boxes #emailHolder a#addRecipients {
	display: block;
	float:left;
	margin-top:7px;
	margin-left:10px;
	width:20px;
	height:16px;
}
#newdropoff-boxes #noteLabel {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 5;
	-ms-grid-row: 5;
}
#newdropoff-boxes #noteHolder {
	grid-column: 1;
	-ms-grid-column: 1;
	grid-row: 6;
	-ms-grid-row: 6;
	display: flex;
	flex-direction: column;
	margin-right: 2px;
}
#newdropoff-boxes #note {
	width: 100%;
	min-height: 90px;
	flex: 1;
}
#newdropoff-boxes #noteLengthText {
	text-align: right;
	margin-right: -14px;
	padding-right: 0px;
}
#newdropoff-boxes #fromHolder #fromName {
}
#newdropoff-boxes #fromHolder #fromEmail {
}
#newdropoff-boxes #fromHolder #fromOrg {
	font-style: bold;
}
#newdropoff-boxes #fromHolder span {
	margin-right: 5px;
}

/*
   New implementation (grid) of the column of checkboxes
   as it has a number input at the bottom now too!
*/
#newdropoff-checkboxes {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 6;
	-ms-grid-row: 6;
	align-self: start;
	display: grid;
	display: -ms-grid;
	grid-template-columns: 1fr auto;
	-ms-grid-columns: 1fr auto;
}

#newdropoff-checkboxes input {
	justify-self: end;
	-ms-grid-column-align: end;
	align-self: center;
	-ms-grid-row-align: center;
	margin-right: 1ch;
	grid-column: 1;
	-ms-grid-column: 1;
	display: block; /* IE */
}

#newdropoff-checkboxes label {
	justify-self: start;
	-ms-grid-column-align: start;
	align-self: center;
	-ms-grid-row-align: center;
	grid-column: 2;
	-ms-grid-column: 2;
	display: block; /* IE */
}

.ndcbLabel {
	/* display: block;
	padding-left: 15px;
	text-indent: -17px; */
}

/* IE can't auto-place items in a grid */
.newdropoff-encryptSpan {
	grid-row: 1;
	-ms-grid-row: 1;
}
.newdropoff-checksumSpan {
	grid-row: 2;
	-ms-grid-row: 2;
}
.newdropoff-confirmSpan {
	grid-row: 3;
	-ms-grid-row: 3;
}
.newdropoff-informRecipientsSpan {
	grid-row: 4;
	-ms-grid-row: 4;
}
.newdropoff-informPasscodeSpan {
	grid-row: 5;
	-ms-grid-row: 5;
}
.newdropoff-waiverSpan {
	grid-row: 6;
	-ms-grid-row: 6;
}
.newdropoff-lifetimeSpan {
	grid-row: 7;
	-ms-grid-row: 7;
}

#lifedays::-webkit-outer-spin-button,
#lifedays::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
#lifedays {
	-moz-appearance: textfield;
	width: 4ch;
	text-align: right;
}

.error-highlight {
	background-color: pink;
	border-color: red;
}
#container{
  clear:both;
  position: relative;
}

/* #whoAmI {
  position: absolute;
  right: 10px;
  top: 100px;
} */

.round {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
/*
	TopMenu
*/
#topMenu{
  margin:15px 0 15px 0;
  font-size: 1.3em;
  float:right
}
#topMenu ul, #topMenu li {
	display: inline-block;
}
#topMenu ul{
  margin:0;
  padding:0;
}
#topMenu li {
  float: left;
  position: relative;
  margin-left: 15px;
  text-align: center;
  line-height: 36px;
}
#topMenu li a {
	color: var(--dark-blue);
	display: block;
	padding:5px 25px;
	font-weight: bold;
	text-decoration: none;
}
#topMenu li:hover a{
  color:var(--light-blue);
}
#topMenu li.selected {
	background: var(--dark-blue);
	color: white;
	border-bottom-right-radius: 15px;
	border-top-left-radius: 15px;
}
#topMenu li.selected a{
	color: white;
}
#topMenu li.selected:hover {
	background-color: var(--light-blue);
}

/* I can't make this work. Any volunteers please?
 * I want tabs where the selected one (or the hovered one)
 * is slightly wider left-right than the others, so it
 * appears to slightly overlap them.
#topMenu li.selected:before {
	content: ".";
	position: absolute;
	width: 15px;
	top: -1px;
	left: -8px;
	z-index: 1;
	background: inherit;
	color: #1f88c1;
	border-width: 1px 0px 1px 1px;
	border-color: inherit;
	border-radius: inherit;
}

#topMenu li.selected:after {
	content: ".";
	position: absolute;
	width: 15px;
	top: -1px;
	right: -8px;
	z-index: 1;
	background: inherit;
	color: #1f88c1;
	border-width: 1px 1px 1px 0px;
	border-color: inherit;
	border-radius: inherit;
}

#topMenu li:hover:before {
	background: inherit;
	background-color: inherit;
	color: #62c0f0;
	border-width: 1px 0px 1px 1px;
	z-index: 2;
}

#topMenu li:hover:after {
	background: inherit;
	background-color: inherit;
	color: #62c0f0;
	border-width: 1px 1px 1px 0px;
	z-index: 2;
}

#topMenu li:hover {
	background: #62c0f0;
	background-color: #62c0f0;
	border-width: 1px 0px 1px 0px;
	z-index: 2;
}
*/


#loginForm {
	position: absolute;
	left: 0;
	right:0;
	margin: auto;
	background-color: var(--dark-blue);
	padding: 10px 55px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#loginForm label {
	font-size:1rem;
	text-transform: uppercase;
	color: var(--white);
	margin-right:15px;
}
#loginForm input[type="text"], #loginForm input[type="password"] {
	margin-right: 35px;
}
input[type="file"] {
	margin-right: 5px;
}
#loginForm input[type="submit"] {
	float: right;
	text-align: center;
}
#loginForm input:hover[type="submit"] {
	float: right;
	text-align: center;
}
#progressouter {
    width:100%;
    height:30px;
    background: #e4dfdf;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-box-shadow: inset 0 2px 5px #b8b4b4;
    box-shadow: inset 0 2px 5px #b8b4b4;
    -moz-box-shadow: inset 0 2px 5px #b8b4b4;
    clear: both;
}

#progressouter #progressinner {
    height:30px;
    background: #0072cf;
    -moz-border-radius: 15px 0px 0px 15px;
    -webkit-border-radius: 15px 0px 0px 15px;
    border-radius: 15px 0px 0px 15px;
    -webkit-box-shadow: inset 0 -3px 5px #004c8a;
    box-shadow: inset 0 -3px 5px #004c8a;
    -moz-box-shadow: inset 0 -3px 5px #004c8a;
}

#uploadDialog {
	background-color: #fafafa;
	width:400px;
	border: 1px solid #a1b6c3;
	border-radius: 5px;
	margin-right:auto;
	margin-left:auto;
	text-align: center;
	position: absolute;
	
	-moz-box-shadow: 0px 1px 5px #7f7e7e;
	box-shadow:0px 1px 20px #7f7e7e;
	display: none;
}

#uploadDialog #progressContainer {
	padding-bottom:20px;
}

#uploadDialog h1 {
	margin-top:0;
	display:block;
	background: #eff3f7;
	border-bottom: 1px solid #d0e1ea;
	padding-top: 10px;
	padding-bottom:10px;
}

#percentText {
	font-size: 1.1em;
	font-weight: bold;
	color: #293753;
	margin-top:10px;
	visibility:hidden;
	width:100%;
	text-align: center;
}
#jsloginafter{
  height:51px;
}
.homeButtons{
  display:flex;
}
.homeButtons tbody{
  display:flex;
  flex-direction:column;
  width:100%;
}
.homeButtons tbody tr:nth-child(2){
  display:inline-flex;
  justify-content:center
}
.homeButtons tbody tr:nth-child(2) h4{
  font-size:1.3em;
  font-weight:bold;
}
.homeButtons tbody tr:nth-child(3),.homeButtons tbody tr:nth-child(4){
  display:flex;
  margin-bottom: 35px;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
}
.homeButtons a.UD_textbutton, a.UD_textbutton_admin {
	width: 150px;
  padding: 25px 55px;
  text-transform:uppercase;
  font-size: 1.5em;
}

a.UD_textbutton, a.UD_textbutton_admin, .UD_textbutton_admin, button.dt-button, a.dt-button, a.button.dt-button, input[type="submit"], input[type="button"], button {
	float: left;
	outline: unset;
	border:none;
	padding: 8px 25px;
	border-bottom-right-radius: 15px;
	border-top-left-radius: 15px;
	color: white;
	background-color: var(--light-blue);
}

button.dt-button, a.dt-button {
	width: auto;
	min-width: 150px;
	margin-top: 0px;
	margin-bottom: 20px;
	text-align: center;
}

/* A button with no styling at all */
.resetButton {
	float: none;
	width: auto;
	margin: 0px 0px 0px 0px;
	border: none;
	padding: 0px 0px 0px 0px;
	color: inherit;
	background: none;
	text-shadow: none;
	font-size: inherit;
	font-weight: normal;
}

a.UD_buttonchosen {
	background-color: var(--dark-blue); /* old browsers */
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
}
a.UD_buttonchosen:hover {
	background-color: var(--light-blue);
}
a.UD_textbutton:hover, button.dt-button:hover:not(.disabled), a:not(.disabled).dt-button:hover, input[type="submit"]:hover, input[type="button"]:hover, button:hover {
	background: #62c0f0;
	cursor: pointer;
}
input[type="submit"][disabled], input[type="button"][disabled], button[disabled], .greyButton{
	float:left;
	margin-bottom:10px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	padding:5px 10px;
	text-decoration: none;
	margin-right:10px;
	color: white;
	background: var(--light-blue);
	text-shadow: none;
	font-size: 1em;
	font-weight: bold;
}
.greyButton:hover{
	background-color:#62c0f0;
}
a.UD_textbutton, a.UD_textbutton_admin, .UD_textbutton_admin {
	text-align: center;
}

a.UD_textbutton_admin, .UD_textbutton_admin {
	background: #d64545; /* old browsers */
	border:#9c0b09 1px solid;
	border-radius: 4px;
}

a.UD_textbutton_admin:not(.greyButton):hover, .UD_textbutton_admin:not(.greyButton):hover {
	background: #d50606; /* old browsers */
}

.emailButton {
	background: #3fb8e5;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border: 1px solid #2692b8;
	padding: 4px 10px 5px 10px;
	color: white;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	float:left;
	width: auto;
	margin-right:10px;
	cursor: default;
}

.emailButton a.remove {
	font-weight: bold;
	margin-left:10px;
	color: white;
	cursor: pointer;
}

.emailButton a.remove img {
	top: 4px;
	position: relative;
}

/* #emailHolder, #fromHolder, .infoBox { */
.infoBox {
	border-color: #2b3e89;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	padding:2px;
	width: 100%;
	float:left;
	min-height: 22px;
	clear:both;
}

/*
#emailHolder {
	min-height: 28px;
}
#fromHolder {
	line-height: 24px;
}
#fromHolder #fromName {
	padding-left: 5px;
}
#fromHolder #fromEmail {

}
#fromHolder #fromOrg {
	font-style: bold;
}
#fromHolder span {
	margin-right: 5px;
}
*/


#recipNameLabel, #recipEmailLabel {
	padding-left: 5px;
}

.UILabel {
	float:left;
	font-weight: bold;
	margin-right:10px;
	line-height:26px;
	/* width:50px; */
	text-align: left;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

input[type="text"], textarea, input[type="password"] {
	font-family: 'Roboto', sans-serif;
	padding: 6px;
}
input:focus{
  outline: var(--light-blue) auto 2px;
}
.toosmall {
	font-size: inherit;
}

textarea {
	font-size: smaller;
}

.fleft {
	float:left;
}

.fright {
	float:right;
}

.clear {
	clear:both;
}

.center {
	text-align: center;
	margin-top:10px;
}

.center button {
	float: none;
}

.mono {
	font-family: 'Roboto Mono', monospace;
}

.ndfilename {
	width: 400px;
	max-width: 400px;
	font-family: 'Roboto Mono', monospace;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.checksum {
  font-family: 'Roboto Mono', monospace;
  font-size: 80%;
  white-space: nowrap;
}

.filelabel, .ndfilesize {
	text-align: right;
	white-space: nowrap;
}

#libraryselector {
	margin-left: 10px;
}

#AddFilesButton {
	width: auto;
}

a img {
	border:0;
}

#addNewRecipient {
	display: none;
}

#sendMultiple {
	display: none;
}

#commentsArea {
	margin:20px 0px 20px 0px;
	text-align: left;
}

.row {
	background-color: #e3e3e3;
}

.rowalt {

}

thead {
	font-weight: bold;
	font-size: 1.1em;
}

/*
	Logo
*/
#logo {
  float: left;
  height: auto;
  padding-left: 0px;
  padding-right: 20px;
  margin:15px 0 15px 0;
  text-decoration: none;
  font-weight: bold;
  color: var(--dark-blue);
  font-size: 3.5em;
  text-shadow: 1px 1px 0px var(--white-blue);
  max-width: 270px;
  overflow: hidden;
}
#logoxclip {
   overflow-y: visible;
}
#logo a{
  color:var(--dark-blue);
}
#footer {
	color: #484848;
	margin-top: 25px;
	margin-bottom: 10px;
	text-align: center;
}

#error {
	background-color: var(--dark-blue);
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	padding: 10px;
	color:var(--white);
}

#info {
	background-color: var(--white-blue);
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	padding:10px;
}

.buttonHolder button {
	margin-bottom:10px;
}


/* Facebox overrides */

#facebox h1 {
	text-align: center;
}

#facebox .customHeader {
	position: absolute;
	height:22px;
	color: white;
	font-weight: bold;
}

#facebox .customHeader h1 {
	font-size: 1.1em;
	margin: 0;
	margin-top: 4px;
	margin-left: 10px;
}

/* other stuff */
#progress {
	visibility:hidden;
	width:450px;
	height:75px;
	padding:0px;
	margin: 5px 0px 0px 0px;
	border:2px solid #C01010;
	background:#FFF0F0;
	color:#C01010;
	text-align:justify;
}

#overallFileSize {
	text-align: center;
	margin-top: 10px;
	font-size: 1.1em;
}

/* Over-ride stuff hard-wired in facebox.css */
#facebox .popup .content {
	display: block;
	width: auto;
	padding: 10px 35px;
}

#sendconfirm {
  display: none;
}

.dark-red {
	color: #cc0000;
}

.ui-widget {
	font-family: 'Roboto', sans-serif !important;
}

#sendContainer {
	padding: 15px;
	background-color: #3fb8e5; /* rgba(8,146,208, 0.8); */
	margin-left: 0px; /* 11px; */
	font-size: 1em;
	color: #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	text-align: left;
}

#sendContainerIcon {
  	text-align: left;
	float:left;
	margin-right: 2px;
}

.sendContainerLinkText {
	color: #ffffff;
}

.g-recaptcha {
	margin-bottom: -15px; 
	margin-top: 15px;
}

#dropoff_list_info {
	margin-top: 15px;
}

.UD_error_message {
	padding-top: 8px;
}

.UD_error_title {
  padding-top: 10px;
}

.UD_error_logo {
  width: 3em;
}

#uploadTable, #DropoffButton {
  display: none;
}

.disabledtext {
  color: grey;
}

.dataTable td {
  cursor: pointer;
}

.toggle-vis:hover {
	cursor: pointer;
}

.notetoolong {
  font-weight: bold;
  color: red;
}

.password-error {
  font-weight: bold;
  color: red;
}

/* This .ui-menu .ac-col .x-col stuff is all for the extension
 * to the JQuery-UI autocomplete widget. It adds the delete button
 * at the right end of every entry. */
.ui-menu-item .ac-col2.ui-menu-item-wrapper {
	padding-left: 0px;
	padding-right: 0px;
}

.ac-row {
	display: flex;
    justify-content: stretch; /* horizontal */
    /* align-items: stretch; */ /* vertical */
    padding-right: 0;
}

.ac-col1 {
    flex: 99%;
    white-space: nowrap;
    padding-right: 1em !important;
}

.ac-col2 {
	align-self: center; /* vertical */
	text-align: right;
	/*padding: 3px 0 3px 0 !important;*/
	padding-top: 0px;
	padding-bottom: 0px;
	color: red;
}

.x-col.deleteme {
        text-align: right;
        padding: 3px 10px 3px 10px;
        /* padding-top: 3px; */
        /* padding-bottom: 3px; */
        /* background-color: white; */
        /* color: red; */
}

.ac-col2.deleteme.ui-state-active {
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	border-left: 0;
	border-right: 1px solid #c5c5c5;
	background-color: white;
	color: red;
}

.ac-col2.deleteme.ui-state-active:hover {
	border-top: 1px solid red;
	border-bottom: 1px solid red;
	background-color: red;
	color: white;
}

.request-link-text {
	font-size: 120%;
	font-weight: bold;
	border-style: dashed;
	border-width: 1px;
	border-radius: 4px;
	border-color: grey;
	padding: 3px 5px;
}

.request-link-text:hover {
	background: #ffffbc;
	cursor: pointer;
}


div.ui-menu-item-wrapper {
	/* This overrides the definition in jquery-ui.css */
	padding-right: 0px;
}

.waiverBox {
	border: 4px solid #2b3e89;
	margin: 1em 5px 2em 2px;
	padding: 5px;
	width: calc(100% - 14px);
}

.nowrap {
	white-space: nowrap;
}

.hidden {
	display: none;
}

.cc-animate.cc-revoke.cc-bottom {
	-webkit-transform: translateY(0em);
	transform: translateY(0em);
}
.cc-color-override--1105790508.cc-revoke {
	color: var(--black);
	background-color: var(--white-blue);
}
.cc-color-override--1105790508.cc-window {
	color: var(--black);
	background-color: var(--white-blue);
}
.cc-color-override--1105790508 .cc-link, .cc-color-override--1105790508 .cc-link:active, .cc-color-override--1105790508 .cc-link:visited {
	color: var(--dark-blue);
}
.cc-revoke.cc-bottom {
	bottom: 0;
	left: 5vw;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}