/* TOMAR ESTA REFERENCIA CADA VEZ QUE SE SOBRESCRIBA EL ARCHIVO : Formato de fecha ISO 8601 aplicado al nombre de las version: YYYYmmddHHMM
/ versión 202512041323
*/

/*
   This is where you should put all your customisations to the swish.css
   file. Please do not edit swish.css, but instead put all your over-rides
   here.
*/

/* If your language version of the "Home", "Inbox", "Outbox" & "Logout"
 * tabs are too wide for the buttons, you can increase the width of the
 * buttons. Just uncomment this section, changing the "130" for whatever
 * you want, but make sure the "131" is exactly 1 greater than the "130".
 */

html, body {
    height: 100%;
    margin: 0;
   
}

body {
	font-family: 'Manrope', sans-serif;
	/*background-color: #ffffff;*/
	background-color: #00a9e0; /*by leo*/
	background-image: none !important; /*by leo*/
	font-size: 92%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;	
}

#page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.img_logo_cnea{
      margin-top: 25px;
	  margin-left: 25px;
}

.logo_login{
    display: block;
    margin: 35 auto;
}

.separador {
  border: none;
  border-top: 1px solid #ccc; /* gris suave */
  margin: 15px auto;
  width: 100%; /* o 100% si la querés completa */
}

.h2_login{
  text-align: center;
  color: #292358;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}

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

.h4_login {
  text-align: center;
  font-family: "Manrope", sans-serif;
  color: #899297;
  font-size: 16px;  
}

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);
}

/* Menú desplegable para selector de idioma */
.dropdownMenu {
	position: relative;
	display: inline-block;
	float: inline-end; /*by leo*/
	/*float: right;*/ /*by leo*/
	padding-top: 40px;
	height: 20px;
}
.dropdownButton {
	color: rgb(0, 0, 0);
	cursor: default;
	border-style: solid solid none solid; /* sin borde abajo */
	border-radius: 4px 4px 0px 0px; /* puntas redondeadas arriba */
	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: #ffffff;
	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;
}
/* Fin desplegable para selector de idioma */

.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 #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 #orgLabel {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 1;
	-ms-grid-row: 1;
	margin-left: 10px;
}
#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 #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 #recipEmailLabel {
	grid-column: 3;
	-ms-grid-column: 3;
	grid-row: 2;
	-ms-grid-row: 2;
	padding-left: inherit;
	margin-left: 10px;
}
#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;
}
/* This one only used in show_request.tpl */
#request-boxes #subjectShow {
	grid-column: 2;
	-ms-grid-column: 2;
	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;
}
/* This one only used in show_request.tpl */
#request-boxes #expiryLabelShow {
	display: inline;
	margin-right: 5px;
	margin-left: 5px;
}
#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;
}
/* The highlighting used to show requests in their Inbox */
/* Light yellow, copied from the drag-n-drop styling */
.inboxRowIsRequest {
	background: #ffffbc !important;
	background-color: rgba(255, 255, 188, 0.7) !important;
}
.inboxRowIsRequest td.sorting_1 {
	background: #ffffbc !important;
	background-color: rgba(255, 255, 188, 0.7) !important;
}

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

#newdropoff-boxes {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 48% 30px auto;
	-ms-grid-columns: 48% 50px 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;
	margin: 0px;
}
#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-oneTimeLinksSpan {
	grid-row: 7;
	-ms-grid-row: 7;
}
.newdropoff-lifetimeSpan {
	grid-row: 8;
	-ms-grid-row: 8;
}

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

/* The date/time picker showing the drop-off expiry */
#newdropoff-checkboxes #lifeexpiry {
	width: 8rem;
	display: inline-block;
	border-radius: 4px;
	padding: 2px 5px;
	margin: -4px -6px -4px 0px;
	line-height: 24px;
	font-size: 92%;
}

.error-highlight {
	background-color: pink;
	border-color: red;
}

.content a {
	font-weight: bold;
}

.content {
	width: 51%; /*by leo*/
	/*width: 100%;/* /*by leo*/
	/*height: 120px;*/ /*by leo*/
	margin-left: auto;
	margin-right: auto;
	background-color: #00A9E0;
}

#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;*/
	flex: 1; /* El contenido empuja al footer hacia el fondo */
    width: fit-content;
    /*max-width: 900px;*/ /* ajustable */ /*by leo*/
    /*max-width: inherit;*/
    margin: 0 auto;
}

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

/*Separación entre "Ingresar" y el Ícono*/
.UD_textbutton i {
    margin-left: 5px;
}

/* Sobrescribe reglas solo para el botón del login */
a.UD_textbutton.login-btn {
    float: none !important; /* cancela el float:left */
    width: auto !important; /* deja que el tamaño se ajuste */
    display: inline-block !important;
    margin: 10px auto !important; /* centra de verdad */
}

.UD_textbutton_content {
    text-align: center !important;
}

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; /*este atributo lo voy a suprimir solo para el boton de Ingresar en la pantalla de LOGIN*/
	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: #00A9E0; /* old browsers */
	/*text-shadow: 0px -1px 1px #585858;*/
	font-size: 1em;
	font-weight: bold;
	background-clip: padding-box;
	background-origin: padding-box;
  font-family: "Manrope", sans-serif;
  font-weight:500;
  text-align: center;
  

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: inline-start; /*by leo*/
    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;
    width: 20%;
    float: left;
    visibility: hidden;
}

/* by leo*/
/*
#logo a {
	color: #a5abb0;
}
*/
 
}

#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;
	visibility: collapse;
}

.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;
}

/* Disabled lines in lists of drop-offs */
.dataTable.disabled td {
	color: grey;
	text-decoration: line-through;
	cursor: default;
}
/* Can I just style the row and not the cells? */
.dataTable.disabled tr {
	color: grey;
	text-decoration: line-through;
	cursor: default;
}
/* Disabled file in a drop-off */
.linkUsed {
	opacity: 0.5;
	text-decoration: line-through;
	cursor: default;
}

.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;
}

/* by leo*/
div#logo {
    float: inline-start;
    background-image: url(../images/logo_CNEA_blanco.png);
    background-size: contain; /* Ajusta la imagen completa dentro del div */
    background-repeat: no-repeat; /* Evita que la imagen se duplique */
    background-position: left; /* Centra la imagen */
    /* Hace el texto invisible */
    color: transparent;
    /* Opcional: evita que el texto se pueda seleccionar o interfiera visualmente */
    user-select: none; 

}

/*by leo*/
div#logoxclip {
    overflow-y: visible;
    visibility: hidden;
}


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

#footer {
    width: 100%;
    height: 120px;
    padding: 20px 0;

    /* estilo visual */
    background-color: #292358 !important;
    color: white !important;
    text-align: center;
    border-top: 6px solid #E0B552; 

    /* centrado vertical + horizontal */
    display: flex;
    flex-direction: column;   /* en este caso por las dos líneas de texto que hay */
    justify-content: center;  /* centra verticalmente */
    align-items: center;      /* centra horizontalmente */
    visibility: hidden; /* by leo */
}
