/* SZIE Publications main stylesheet*/
/*
    DEFINE COLORS	
*/
:root {
    /*    BLACK's    */
    --black0: #000000;
    --black1: #202020;
    --black2: #313131;
    --black3: #888888;
    --black4: #e3e3e3;
    --black5: #f1f1f1;
	
	--main-background: #242943;
	--secondary-background: #41465c;
	--font-color: #212529;
	--font-color-alternative: #ffffff;
	--primary-blue: #50ADC9;
	--hover-gray: #3a3f56;
	--main-red: #982525;
	
	--vintage-red: #c97070;
    --vintage-orange: #d48960;
    --vintage-yellow: #e5c76a;
    --vintage-green: #739672;
    --vintage-blue: #78abc3;
	
}
/***************************************/
/*css reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
}
blockquote, q {
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
/***************************************/


/**************************/
/* BASIC STYLE */
*, body, a {
    font-family: Montserrat, Arial;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    color: var(--font-color);
}
button, input, textarea {
	outline: none;
}
a, a:hover {
	text-decoration: none;
	transition: 0.2s ease-in;
}
.hover-opacity-20 {
	opacity: 1;
	transition: 0.2s ease-in;
	cursor: pointer;	
}
.hover-opacity-20:hover {
	opacity: 0.8;
}
p {
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	text-align: justify;
	margin-bottom: 20px;
}
.line {
	margin-bottom: 20px;
	display: block;
}
.align_left {
	text-align: left !important;
}
.align_center {
	text-align: center !important;
}
.align_right {
	text-align: right !important;
}
h1 {
	font-weight: 600;
	font-size: 26px;
	line-height: 32px;
	margin-bottom: 10px;
}
h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 10px;
}
h3 {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 10px;
}
h4 {
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
}
h5 {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 10px;
}
h6 {
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 10px;
}


/*	scrollbar	*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #444; 
}
/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-blue); 
	border-radius: 0px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--black3); 
}





/**************************/
/* main elements */

/* main content wrapper */
.content_box {
	background-color: var(--font-color-alternative);
	padding: 20px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(77,77,77,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(77,77,77,0.5);
	box-shadow: 0px 0px 5px 0px rgba(77,77,77,0.5);
	margin-bottom: 20px;
}

/* message box */
.message_box { 
	background-color: var(--font-color-alternative);
	padding: 20px 10px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(77,77,77,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(77,77,77,0.5);
	box-shadow: 0px 0px 5px 0px rgba(77,77,77,0.5);
	margin-bottom: 20px;
	padding: left: 60px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}
.message_box i { 
	display: inline-block;
	font-size: 25px;
	vertical-align: middle;
	margin-right: 10px;
}
.message_box p { 
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 35px);
	text-align: center;
	font-weight: 500;
	font-size: 15px;
}
.message_box p a { 
	color: var(--primary-blue);
}
.message_box_info {
	background-color: var(--font-color-alternative);
}

/*input type design*/
.form_row  {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}
.multi_form_row {
	margin-bottom: 20px;
	position: relative;
}
.multi_form_row .form_row {
	margin-bottom: 0px;
}
.form_row label {
	display: inline-block;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 500;
    line-height: 12px;
    height: 13px;
    width: auto;
    margin-left: 12px;
    margin-bottom: -12px;
    background-color: var(--font-color-alternative);
    outline: none;
    z-index: 2;
    position: relative;
    top: 8px;
    padding-left: 6px;
    padding-right: 6px;
}
.form_row .input_required_star {
	color: var(--main-red);
}
.form_row input {
	display: block;
	width: 100%;
	border-radius: 3px;
	border: 2px solid var(--primary-blue);
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	padding: 20px 12px 14px 12px;
	height: 56px;
	z-index: 1;
	transition: 0.2s ease-in;
}
input:focus {
	border-color: var(--secondary-background);
}
.form_row .input_error {
	border-color: var(--main-red);
}
.form_row .input_readonly {
	border-color: var(--black4);
}
.input_error_text {
    position: absolute;
    left: 0;
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
    display: inline-block;
    color: var(--main-red);
	display: none;
}


/* checkbox design */
.checbox_row {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
input[type=checkbox] {
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
input[type=checkbox]:before {
	 content: "";
	 display: block;
	 position: absolute;
	 width: 20px;
	 height: 20px;
	 top: 0;
	 left: 0;
	 background-color:#e9e9e9;
}
input[type=checkbox]:checked:before {
	 content: "";
	 display: block;
	 position: absolute;
	 width: 20px;
	 height: 20px;
	 top: 0;
	 left: 0;
	 background-color: var(--primary-blue);
}
input[type=checkbox]:checked:after {
	 content: "";
	 display: block;
	 width: 7px;
	 height: 11px;
	 border: solid white;
	 border-width: 0 2px 2px 0;
	 -webkit-transform: rotate(45deg);
	 -ms-transform: rotate(45deg);
	 transform: rotate(45deg);
	 position: absolute;
	 top: 2px;
	 left: 6px;
}
input[type=checkbox].input_readonly {
	
}
.checbox_row label {
	vertical-align: middle;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    margin-bottom: -3px;
    margin-left: 5px;
	vertical-align: middle;
}
.multiple_select {
	display: block;
    outline: none;
    width: 100%;
    border: 2px solid var(--primary-blue);
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}
.multiple_select option {
	font-weight: 500;
	font-size: 15px;
}

/* button design */
.main_button {
	display: inline-block;
	outline: none;
	border-radius: 3px;
	padding: 20px 20px 16px 20px;
	font-size: 15px;
	line-height: 16px;
	font-weight: 500;
	color: var(--font-color-alternative);
	background-color: var(--primary-blue);
	border: none;
	height: 56px;
	text-align: center;
	min-width: 150px;
	vertical-align: bottom;
}
.inactive_button {
	background-color: #bbb;
    cursor: default;
}
.main_button i {
	vertical-align: middle;
	font-size: 20px;
	margin-right: 5px;
	color: var(--font-color-alternative);
	margin-top: -2px;
}
.main_button .glyphicon {
	vertical-align: middle;
	font-size: 20px;
	margin-right: 5px;
	color: var(--font-color-alternative);
	margin-top: -2px;
}
}

/* dividers */
.divider_normal {
	display: block;
	margin: 30px auto;
	width: 100%;
	height: 2px;
	background-color: var(--black4);
}

/* basic table design */
.basic_table_box {
	display: block;
	width: 100%;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(77,77,77,0.2);
	-moz-box-shadow: 0px 0px 3px 0px rgba(77,77,77,0.2);
	box-shadow: 0px 0px 3px 0px rgba(77,77,77,0.2);
	margin-bottom: 20px;
}
.basic_table_box table {
	width: 100%;
}
.basic_table_box table thead td, .basic_table_box table tfoot td { 
	font-size: 14px;
	color: var(--black3);
	font-weight: 500;
	line-height: 18px;
	padding: 15px 15px;
	text-align: left;
	border-bottom: 1px solid var(--black3);
}
.opacity50percent {
	opacity: 0.5;
}
.basic_table_box table thead .table_filters {
	margin-left: 15px;
}
.basic_table_box table thead .table_filters button {
	padding: 1px;
    line-height: 15px;
    vertical-align: middle;
    border: 1px solid var(--black3);
    border-radius: 3px;
}
.basic_table_box table thead .table_filters i {
	font-size: 15px;
	vertical-align: middle;
    color: var(--black3);
}
.basic_table_box table tfoot td {
	border-bottom: none;
	padding: 10px 15px;
}
.basic_table_box table tbody td { 
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	padding: 10px 15px;
	text-align: left;
	border-bottom: 1px solid var(--black4);
	vertical-align: middle;
}
.basic_table_box table tbody tr {
	transition: 0.2s ease-in;
}
.basic_table_box table tbody tr:hover { 
	background-color: rgba(0,0,0,0.05);
}
.table_with_nav table tbody tr:last-of-type td {
	border-bottom: 1px solid var(--black3);
}
.basic_table_box table tfoot.table_footer_nav td {
	text-align: right;
}
.basic_table_box table tfoot.table_footer_nav td button {
	height: 35px;
	padding: 5px;
	min-width: 34px;
}
.basic_table_box table tfoot.table_footer_nav td button i {
	margin-left: 0px;
	margin-right: 0px;
}
.basic_table_box table tfoot.table_footer_nav td .table_page_status {
	display: inline-block;
    line-height: 34px;
    margin: 0px 5px;
    vertical-align: middle;
    font-weight: 600;
}

.basic_table_box table tbody td .main_button {
	height: 25px;
	padding: 2px;
	line-height: 19px;
	min-width: 25px;
}
.basic_table_box table tbody td .main_button  i {
	margin-left: 0px;
	margin-right: 0px;
}


/* Two Column*/
.two_column {
	display: inline-block;
	width: calc(50% - 10px);
	vertical-align: top;
	margin-right: 20px;
}
.two_column:last-of-type {
	margin-right: 0;
}

/* Three column */
.three_column {
	display: inline-block;
	width: calc(33.333% - 13.3333px);
	vertical-align: top;
	margin-right: 20px;
}
.three_column:last-of-type {
	margin-right: 0;
}
/* Four column */
.four_column {
	display: inline-block;
	width: calc(25% - 15px);
	vertical-align: top;
	margin-right: 20px;
}
.four_column:last-of-type {
	margin-right: 0;
}


/* Custom select object*/
.customSelect {
    width: 100%;
}
.form_row .customSelect {
    position: relative;
	display: block;
	width: 100%;
	border-radius: 3px;
	border: 2px solid var(--primary-blue);
	height: 56px;
	z-index: 1;
	transition: 0.2s ease-in;
}
/* Custom select object*/
.customSelect select {
    display: none; /*hide original SELECT element:*/
}
.select-selected {
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	height: 52px;
	padding: 20px 12px 14px 12px;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 22px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--primary-blue) transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--primary-blue) transparent;
    top: 16px;
}
/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    cursor: pointer;
    user-select: none;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #e9e9e9;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
	margin-top: 4px;
}
.select-items div {
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	padding: 14px 12px 14px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}
.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.05);
}
.status_0 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-orange);
}
.status_1 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-orange);
}
.status_2 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-orange);
}
.status_3 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-orange);
}
.status_4 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-red);
}
.status_5 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-orange);
}
.status_6 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-blue);
}
.status_7 {
	padding: 3px 4px;
	border-radius: 2px;
	background-color: var(--vintage-green);
}






/**************************/
/* SIDEBAR */
.sidebar-fixed {
	width: 280px;
	height: 100%;
	overflow: hidden;
	background-color: var(--main-background);
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	color: var(--font-color-alternative);
	z-index:3;
	border-right: 1px solid var(--black3);
	transition: 0.2s;
}
#site_title {
	padding: 10px 10px 10px 10px;
	border-bottom: 1px solid var(--black3);
}
#site_title a {
	display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
#site_title a img {
	width: 40px;
}
#site_title h1 {
	display: inline-block;
    color: var(--font-color-alternative);
    vertical-align: middle;
    font-weight: 500;
    font-size: 20px;
    margin-right: 10px;
    width: calc(100% - 100px);
	margin-bottom: 0px;
}
#site_title i {
	display: inline-block;
    vertical-align: middle;
    color: var(--primary-blue);
    font-size: 30px;
}
#main_navigation {
	display: block;
}
#main_navigation a {
	color: var(--font-color-alternative);
	border-left: 3px solid transparent;
	font-size: 16px;
	font-weight: 500;
	line-height: 21px;
	padding: 18px 20px;
	display: block;
	height: 60px;
	border-bottom: 1px solid rgba(255,255,255,.05);
}
#main_navigation a i {
	color: var(--primary-blue);
    font-size: 30px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
}
#main_navigation a:hover {
	border-left: 3px solid var(--primary-blue);
	background-color: var(--hover-gray);
}
#main_navigation #lang_button_login {
	margin-top: 60px;
	color: var(--primary-blue);
}

.active_menu_item {
	border-left: 3px solid var(--primary-blue);
	background-color: var(--hover-gray);
}


/**************************/
/* MAIN CONTENT BOX */
#main_content {
	background-color: var(--black5);
	margin-left: 280px;
	min-height: 100vh;
	transition: 0.2s;
}
/*site header*/
#site_header {
	padding: 10px;
	background-color: var(--secondary-background); 
	border-bottom: 1px solid var(--black3);
	height: 64px;
	text-align: right;
}
#site_header #open_menu {
	color: var(--primary-blue);
	padding: 3px;
	display: inline-block;
	float: left;
	font-size: 35px;
	opacity: 0;
}
#site_header #user_box {
	width: 325px;
	overflow: hidden;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}
#site_header #user_box h2 {
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	line-height: 25px;
	color: var(--font-color-alternative);
	height: 25px;
	overflow: hidden;
	margin-bottom: 0px;
}
#site_header #user_box h3 {
	font-weight: 500;
	font-size: 12px;
	text-align: center;
	line-height: 16px;
	color: var(--font-color-alternative);
}
#site_header button {
	padding: 0px;
    background-color: transparent;
    border: none;
}
#site_header button i {
    padding: 3px;
    font-size: 26px;
    vertical-align: middle;
    margin-top: -10px;
    color: var(--black4);
}
/* page content */
#page_content {
	padding: 30px;
}
#page_content .page_title {
	font-size: 22px;
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 20px;
}


/**************************/
/* page footer */
#site_footer {
	padding: 10px;
	background-color: var(--secondary-background); 
	border-top: 1px solid var(--black3);
	text-align: right;
}
#site_footer p {
	margin-bottom: 0px;
	color: var(--primary-blue);
	font-size: 14px;
	line-height: 18px;
	text-align: center;
}



/**************************/
/* popup box */
section.popup_modal {
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 5;
	display: none;
}
section.popup_modal .content_box {
	max-width: 1230px;
	margin-left: auto;
	margin-right: auto;
	max-height: 80vh;
	margin-top: 15vh;
	overflow-y: auto;
}



/* PUBLICATIONS WELLCOME PAGE, LOGIN PAGE, RESET PASS PAGE */
.publications_open { 
	background-color: var(--main-background);
}
.publications_open .content_box { 
	max-width: 550px;
	margin-top: 12vh;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
}
.publications_open .content_box #lang_button_login {
	margin-top: -30px;
	float: right;
	font-weight: 600;
}
.publications_open .content_box img { 
	max-width: 430px;
	margin-bottom: 50px;
}
.publications_open .content_box h1 {
	font-size: 34px;
	line-height: 40px;
	font-weight: 600;
	margin-bottom: 20px;
}
.publications_open .content_box p {
	text-align: center;
}
.publications_open .content_box a { 
	font-size: 13px;
	line-height: 16px;
	color: var(--primary-blue);
	font-weight: 500;
	margin-bottom: 10px;
	display: block;
}
.publications_open .content_box a:last-of-type {
	margin-bottom:0;
}
.publications_open form {
	margin: 0px auto;
	max-width: 380px;
	text-align: left;
}
.publications_open .message_box {
	max-width: 550px;
}

/* ADD NEW JOURNAL PAGE */
#journal_search_popup {
	display: none;
}



/* PUBLICATIONS LIST PAGE */
#filter_line_dropdown {
	display: none;
}

.progress_bar {
    position: absolute;
    bottom: 5px;
    left: 5px;
    height: 10px;
    background-color: var(--vintage-yellow);
    width: 0px;
    z-index: 1;
}
.flex-container {
    display: flex;
    justify-content: space-between; /* Space between aligns the items to opposite ends */
    align-items: center; /* Vertically centers the content */
}

.align-right {
    margin-left: auto; /* Pushes the button to the right */
}



