/*
   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>.
*/

body {
	font-family: 'Roboto', sans-serif;
	background-repeat: repeat;
	background-image: url(../images/swish/background.png);
	background-color: #cbcccd;
	font-size: 92%;
	margin: 0;
}

a {
	color: #67709c;
	text-decoration: none;
}

h4 {
	font-size: 1.1em;
	font-weight: normal;
}

label {
	font-weight: bold;
}

/* 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: inline-block;
	float: right;
	padding-top: 40px;
	height: 20px;
}
.dropdownButton {
	color: white;
	cursor: default;
	border-style: solid solid none solid; /* no bottom border */
	border-radius: 4px 4px 0px 0px; /* rounded top corners */
	border-width: 1px;
	border-color: #1f88c1;
	padding: 5px 10px 5px 10px;
	height: 20px;
	line-height: 14px;
	font-size: 14px;
}
.dropdown-has-hover:hover, .dropdown-has-hover:focus {
	background: #62c0f0;
	background-color: #62c0f0;
	cursor: pointer;
}
.dropdownContent {
	display: none;
	position: absolute;
	top: 60px;
	background-color: #1f88c1;
	background: #1f88c1;
	white-space: nowrap;
	z-index: 1;
}
.dropdownContent a {
	color: white;
	font-size: 14px;
	padding: 4px 10px 4px 10px;
	text-decoration: none;
	display: block;
}
.dropdownContent a:hover {
	background: #62c0f0;
	background-color: #62c0f0;
	color: white;
}
.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;
}

.content a {
	font-weight: bold;
}

.content {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top:30px;
}

#container {
	clear: both;
	background: white;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding-top:20px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:30px;
	min-height: 250px;
	-moz-box-shadow: 0px 1px 5px #7f7e7e;
	box-shadow:0px 1px 5px #7f7e7e;
	color: #162637;
}

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

.round {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#topMenu {
	float:left;
	height:40px;
	padding-top: 20px;
	font-size: 1.3em;
}

#topMenu ul, #topMenu li {
	display: inline-block;
}

#topMenu ul {
	height:40px;
	margin:0;
	margin-left:20px; /* He has 0px */
	padding-left:0px;
}

#topMenu li {
	float:left;
	position: relative;
	width: 131px; /* This should equal #topMenu li.selected "width", and set #topMenu li a "width" to this minus 1 */
	height:39px;
	text-align: center;
	line-height:39px;
	border-style: solid solid none solid; /* no bottom border */
	border-radius: 4px 4px 0px 0px; /* rounded top corners */
	border-width: 1px;
	border-color: #1f88c1;
}

#topMenu li.selected {
	background: #1f88c1;
	background-color: #1f88c1;
	color: white;
	width: 131px; /* This should equal #topMenu li "width" */
	border-width: 1px 0px 1px 0px;
	z-index: 1;
}

/* 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;
}
*/

#topMenu li:hover {
	background: #62c0f0;
	background-color: #62c0f0;
}

#topMenu li a {
	color: white; /* #4f4e4e; */
	display:block;
	height:39px;
	width:130px; /* Set #topMenu li "width" to this plus 1 */
	font-weight: bold;
	text-decoration: none;
}

#loginForm {
	padding: 5px 10px;
	display: block;
	border-color: #9eadba;
	border-style: solid;
	border-width: 1px;
	border-top: 0px;
	width: auto;
	height: 35px;
	float: left;
	position: absolute;
	margin-right: 10px;
	top: 90px;
	background: #fcffe7;
	border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	clear: both;
}

#loginForm input[type="text"], #loginForm input[type="password"]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #465773;
	height: 20px !important;
	width: 120px !important;
	margin-bottom: 5px;
	margin-right: 10px;
	float: left;
}

input[type="file"] {
	margin-right: 5px;
	
}

#loginForm label {
	height: 32px;
	line-height: 32px;
	display: block;
	margin-bottom: 5px;
	float: left;
	margin-right: 10px;
}

#loginForm input[type="submit"]{
	float:left;
	margin-right:0px;
	margin-top:3px;
	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;
}

.homeButtons a.UD_textbutton, a.UD_textbutton_admin {
	width: 150px;
}

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;
	width: 150px;
	margin-bottom: 10px;
	margin-top: 10px;
	border: 1px solid #1271a7;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	padding: 5px 10px;
	text-decoration: none;
	margin-right: 10px;
	color: white;
	
	background: #1f88c1; /* old browsers */
	text-shadow: 0px -1px 1px #585858;
	font-size: 1em;
	font-weight: bold;
	background-clip: padding-box;
	background-origin: padding-box;
}

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_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; /* old browsers */
	cursor: pointer;
}

a.UD_buttonchosen {
	background: #1f88c1; /* old browsers */
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input[type="submit"][disabled], input[type="button"][disabled], button[disabled], .greyButton{
	float:left;
	margin-bottom:10px;
	border: 1px solid #636363;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:5px 10px;	
	text-decoration: none;
	margin-right:10px;
	color: white;
	background: #b4b2b2;
	text-shadow: none;
	font-size: 1em;
	font-weight: bold;
}

a.UD_textbutton, a.UD_textbutton_admin, .UD_textbutton_admin {
	text-align: center;
	border-radius: 4px;
}

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;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border:1px solid #465773;
	padding:6px;
}

.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 {
	float: right;
	height: 60px;
	/* line-height: 60px; */
	padding-left: 25px;
	padding-right: 20px;
	text-decoration: none;
	font-weight: bold;
	color: #a5abb0;
	font-size: 3.5em;
	text-shadow: 1px 1px 0px #fbfbfb;
	max-width: 270px;
	overflow: hidden;
}

#logoxclip {
	overflow-y: visible;
}

#logo a {
	color: #a5abb0;
}

#footer {
	color: #484848;
	margin-top: 25px;
	text-align: center;
}

#error {
	background-color: rgba(255, 248, 183, 0.5);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding:10px;
}

#info {
	background-color: rgba(188, 188, 188, 0.2);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	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;
}
