[canvas=container] {
	z-index: 100;
	position: relative; /* Required for container to scroll over banner */
	width:100%;
	background-color: #eef2f7;
	margin-bottom : 310px;
	border-radius: 0 0 20px 20px;
}

[canvas=container][banner=yes] {
/*	margin-top: 222px;*/
}

[canvas=container][banner=no] {
	margin-top: 50px;
}

[canvas=container][banner=edit] {
/*	margin-top: 50px;*/
}

.body-row_main{
	background-color: #FFF;
	text-align: center;
	padding: 10px;
	color: #323a45;
	box-shadow: 0 8px 10px 0 #E0E0E0;
}

.body-row_sub {
    background-color: #FFF;
    text-align: center;
    padding: 10px;
    color: #323a45;
    box-shadow: 0 0 20px 0 #e1e1e1;
}

#container_elements {
	display: flex;
	flex-direction: row;
}

#container_elements > #results {
	width: 100%;
}

/* Width : 0 - 960px */
@media all and (max-width: 960px) {
	#container_elements {
		flex-direction: column;
	}
	
	[canvas=container] {
		margin-bottom : 288px;
	}
}

/**
 * Responsive menu
 */

#sidebar_closed-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
	background: rgba(0,0,0,0.5);
    display: none;
    cursor: pointer;
}

#sidebar_responsivemenu {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	background-color: #2B73B6;
	overflow-x: hidden;
	transition: 0.3s;
	background-image: url(/core/gui/img/design/design_header_menu-background.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

#sidebar_responsivemenu > a {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	height: 50px;  /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	padding-left: 20px;
	color: #FFF;
	background-color: rgba(38, 113, 187, 0.9); /* Ensures link is visible when hover logo (small screens) */
	min-width: 250px; /* Required to have a clean effect */
}

#sidebar_responsivemenu > a:hover {
	background-color: #FFF;
	color: #2671BB;
}

#sidebar_responsivemenu > a[selected] {
	background-color: #FFF;
	color: #2671BB;
}

#sidebar_responsivemenu > .sub {}

#sidebar_responsivemenu > .sub > .title {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	height: 54px;  /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	padding-left: 20px;
	color: #FFF;
	cursor: pointer;
	background-color: rgba(38, 113, 187, 0.9); /* Ensures link is visible when hover logo (small screens) */
}

#sidebar_responsivemenu > .sub > .title:hover {
	background-color: rgba(59, 126, 193, 0.9); /* Ensures link is visible when hover logo (small screens) */
}

#sidebar_responsivemenu > .sub > .title[status=on] {
	background-color: rgba(59, 126, 193, 0.9); /* Ensures link is visible when hover logo (small screens) */
	background-image: url('/core/gui/img/design/design_header_sub.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
}

#sidebar_responsivemenu > .sub > .linkgrp {
	background-color: rgba(59, 126, 193, 0.9); /* Ensures link is visible when hover logo (small screens) */
}

#sidebar_responsivemenu > .sub > .linkgrp > a {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	height: 54px;  /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	padding-left: 20px;
	color: #FFF;
}

#sidebar_responsivemenu > .sub > .linkgrp > a:hover {
	background-color: #FFF;
	color: #2671BB;
}

/* 
 * Sub-navigation bar
*/

#subnav {
	display: flex;
	position: sticky;
	z-index: 10; /* Must be above sticky set */
	top: 50px;
	overflow-x: auto; /* scroll on overflow */
    padding: 0; /* Remove default ul style */
	list-style-type: none;  /* Remove default ul style */
	margin: auto; /* Horizontal centering */
	background-color: #FFF; /*#E6EFFA;*/
	box-shadow: 0 8px 16px -4px rgba(224, 224, 224, 0.5);
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}

#subnav[device=small-screen] {
	z-index: 2; /* Required to display shadow over second subnav (ex : Wiki on mobile) */
}

/* Add a color to the active/current link */
#subnav > li > a {
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50px;
    padding: 0 14px 0 14px;
    white-space: nowrap;
    position: relative;
    border-top: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
}

/* Add a color to the active/current link */
#subnav > li > a:hover {
	color: #064184;
	border-top: 4px solid #FFF; /*#E6EFFA;*/
	border-bottom: 4px solid #2B73B6;
}

/* Add a color to the active/current link */
#subnav > li > a.active {
	border-top: 4px solid #FFF; /*#E6EFFA;*/
	border-bottom: 4px solid #2B73B6;
}

#subnav > li > a > .amount {
	position: absolute;
    bottom: 0;
    right: 14px;
}

/* Add a color to the active/current link */
#subnav > a {
	margin: 4px 10px 0 10px;
}

/* Add a color to the active/current link */
#subnav > li > a:not(:hover):not([class=active])[blinking] {
	animation: blinking_nothover_unactive 1s infinite;  /* IE 10+, Fx 29+ */
}

#subnav > li > a:hover:not([class=active])[blinking] {
	animation: blinking_nothover_active 1s infinite;  /* IE 10+, Fx 29+ */
}
#subnav > li > a:hover[class=active][blinking] {
	animation: blinking_nothover_active 1s infinite;  /* IE 10+, Fx 29+ */
}
#subnav > li > a:not(:hover)[class=active][blinking] {
	animation: blinking_nothover_active 1s infinite;  /* IE 10+, Fx 29+ */
}

@keyframes blinking_nothover_unactive {
	0%, 49% {background-color: red;border-color: red;color: #FCDF10;}
	50%, 100% {background-color: #FFF;border-color: #FFF;color: #064184;}
}

@keyframes blinking_nothover_active {
	0%, 49% {background-color: red;border-top-color: red;border-bottom-color: #2B73B6; color: #FCDF10;}
	50%, 100% {background-color: #FFF;border-top-color: #FFF;border-bottom-color: #2B73B6;color: #064184;}
}

@media all and (min-width: 960px) {
	#subnav[device=small-screen] {
		display: none;
	}
}

/* Width : 1250 and more */
@media all and (min-width:1270px) {
	#subnav {
		width: 1270px;
	}
}

/**
 * Element - breadcrumb
 */

#breadcrumb {
    width: 100%;
    display: flex;
    background-color: #FFF;
    margin: auto;
    height: 30px;
    z-index: 12;
    position: relative;
    box-shadow: 0 8px 16px -4px rgba(224, 224, 224, 0.5);
}

#breadcrumb[stick=yes] {
	position: sticky;
	top: 50px;
}

#breadcrumb > #link_previous {
	display: flex;
	min-width: 28px; /* min-max : Avoids image anomaly when browser window is reduced */
	max-width: 28px; /* min-max : Avoids image anomaly when browser window is reduced */
	background-image: url('/core/gui/img/design/design_icon_previous.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

#breadcrumb > #link_text {
	display: flex;
	white-space: nowrap; /* small screens : one line only*/
	overflow-x: auto; /* scroll on overflow */
	color: #072666;
	margin-top: auto;
	margin-bottom: auto;
	padding-left: 12px;
}

#breadcrumb > #link_text > a {
	display: flex;
	padding-right: 20px;
	background-image: url('/core/gui/img/design/design_icon_subarea.png');
	background-repeat: no-repeat;
	background-position: right 5px center;
}

/* Width : 1250 and more */
@media all and (min-width:1270px) {
	#breadcrumb {
		width: 1270px;
	}
}

/**
 * Element - Banner
 */

#banner {
    height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto auto;
    margin-top: 50px;
    overflow: visible;
    z-index: 25;

}

#banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    filter: blur(4px);
    z-index: -1;
}

#banner_edit {
	border-top: 50px solid #FCDF10;
	margin: auto;
	height: 200px;
	display: flex;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative; /* Required by croppic.js for edit  */
	overflow: hidden; /* Hack - Required to avoid window x-scroll*/
}

/* Christmas animation */
/*.banner_animation {
	height: 100%;
	background-image:
		url(https://i.imgur.com/uYjnk8N.png),
		url(https://i.imgur.com/iAGD6MA.png),
		url(https://i.imgur.com/hIJDjbg.png);
	animation: snow 30s linear infinite;
}*/

@keyframes snow {
    0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
    100% {background-position: 500px 1000px, 400px 400px, 300px 300px}
}

/**
 * Element - Large icons
 */
#box_elements {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start; /* Adjust this to control alignment */
	margin-top: 30px;
	gap: 30px; /* Ensures a 30px gap between items */
}

#box_elements > .element {
    display: flex;
    flex-direction: column;
    min-width: calc((100% - 154px) / 4);
    height: 180px;
    color: #FFF;
    text-align: center;
    font-size: 100%;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #e1e1e1;
    padding: 8px;
}

#box_elements > .element:hover {
	cursor: pointer;
	background-color: #FCDF10;
	color: #FFF; /* Override default link hover color */
}

#box_elements > .element > .image {
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

#box_elements > .element:hover > .group {
	background-color: #FCDD3B;
}

#box_elements > .element > .title {
	width: 100%; /* Required for .link_box_link to fit perfectly in .link_box */
	padding-top: 8px;
	padding-bottom: 8px;
	background-color: #2671BB;
	border-radius: 20px;
}

@media all and (max-width: 640px) {
	#box_elements {
		justify-content: center;
	}

	#box_elements > .element {
		min-width: calc((100% - 90px) / 2);
		height: 170px;
	}
	
	#box_elements > .element > .image {
		background-size: 75%;
	}
}

/**
 * Element - Buttons
 */
 
#button-group {
	padding-top: 10px;
}

.button {
	width: 100%;
	margin-top: 20px;
	padding: 9px 0 9px 0;
	text-align: center;
	cursor: pointer;
	color: #FFF;
	background-color: #2671BB;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);;
}

.button[selected] {
	color: #064184;	
	background-color: #FCDF10;
}

.button[cancel] {
	margin-top: 10px;
	color: #FFF;	
	background-color: red;
}

.button[blinking] {
	background-image: url('../img/img_inbox/button_blinking.gif');
	background-size: 100% 100%;
}

.button:hover, .button[blinking]:hover {
	color: #064184;
	background: #FCDF10;
}

.sub-button_content {
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);;
}

.sub-button_content > .sub-button_header {
	width: 100%;
	margin-top: 20px;
	padding: 9px 0 9px 0;
	text-align: center;
	color: #FFF;
	background-color: #2671BB;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
/*	font-size: 90%;*/
}

.sub-button {
	width: 100%;
	padding: 9px 0 9px 0;
	text-align: center;
	color: #064184;
	background-color: #FFF;
/*	font-size: 90%;*/
}

.sub-button:hover {
	color: #064184;
	background: #FCDF10;
}

.sub-button[selected] {
	color: #064184;
	background: #FCDF10;
}

/**
 * Element - Notification
 */

#notification {
	display: flex;
	margin-top: 30px;
	padding: 9px;
	border-radius: 20px;
	animation: anim_FadeInDown ease 1s;
	animation-iteration-count: 1;
	transform-origin: 50% 50%;
	animation-fill-mode:forwards; /*when the spec is finished*/
	-webkit-animation: anim_FadeInDown ease 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
	-moz-animation: anim_FadeInDown ease 1s;
	-moz-animation-iteration-count: 1;
	-moz-transform-origin: 50% 50%;
	-moz-animation-fill-mode:forwards; /*FF 5+*/
	-o-animation: anim_FadeInDown ease 1s;
	-o-animation-iteration-count: 1;
	-o-transform-origin: 50% 50%;
	-o-animation-fill-mode:forwards; /*Not implemented yet*/
	-ms-animation: anim_FadeInDown ease 1s;
	-ms-animation-iteration-count: 1;
	-ms-transform-origin: 50% 50%;
	-ms-animation-fill-mode:forwards; /*IE 10+*/
}

#notification[type=error] {
	background-color: #e44236; /* Red */
	color: #FFF;
}

#notification[type=success] {
	background-color: #bbe31d; /* Green */
	color: #000;
}

#notification > #text {
	width: 100%;
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
}

#notification > a {
	width: 40px;
	background-image: url('/core/gui/img/design/design_close.png');
	background-repeat: no-repeat;
	background-position: center center;
}

#notification[type=error] a {
	color: #FFF;
    text-decoration: underline; 
}


#notification_banned {
    padding: 9px;
	margin-top: 30px;
	color: #FFF;
	text-align: center;
	background-color: #E44236;
	border-radius: 20px;
}

/* Width : 0 - 1020px */
@media all and (max-width: 1020px) {
	#notification {
		margin: 30px 0 0 0;
	}
}

/* Width : 0 - 1020px */
@media all and (max-width: 960px) {
	#notification {
		text-align: center;
	}
}

/**
 * Element - Content
 */
 
#introduction {
	display: none;
}

.content {
    width: 100%;
    margin-top: 30px;
    background-color: #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);;
    border-radius: 20px;
}

.content-twocolumns {
	margin-top: 30px;
	display: flex;
	align-items: flex-start; /* Override default align-items:stretch - This allows columns to have different heights  */
}

.content-twocolumns > .column {
	width: 100%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);;
    border-radius: 20px;
    background-color: #FFF;
}

/* Width : 960px and more */
@media all and (min-width: 720px) {
	.content-twocolumns > .column:first-child {
		margin-right: 30px;
	}
}

/* Width : 0-960px */
@media all and (max-width: 720px) {
	.content-twocolumns {
		flex-direction: column;
	}

	.content-twocolumns > .column:first-child {
		margin-bottom: 30px;
	}
}

.content_text {
	color: #323a45;
	padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    line-height: 1.5;
}

.content_data {
	background-color: #FFF;
	color: #323a45;
	padding: 8px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.content_title {
	display: flex; /* Unable columns in/as content (ex: title+date)*/
	justify-content: space-between;
	padding: 8px 12px 8px 12px;
	background-color: #2671BB;
	color: #FFF;
	border-radius: 20px;
}

.headlight {
	background-color: #FCDF10;
}

.content_title a {
	color: #FFF;
}

.content_title a:hover {
	color: #FCDF10;
}


.content_title > .column {
	display:flex;
}

.content_title > .column:last-child {
	text-align: right;
}

.content_title > .column badge {
    padding: 2px 6px 2px 6px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
}

@media all and (max-width: 960px) {
	.content_title {
		padding: 10px 14px 10px 14px;
	}
	
	.content_title[desktopOnly] {
		display: none;
	}
}

@media all and (min-width: 960px) {
	.content_title[mobileOnly] {
		display: none;
	}
}

aside .content_text .row {
	font-size: 90%;
}

.content_text > .row {
	display: flex;
	padding: 2px 0 2px 0;
}

.content_text > .row > .column {
	width: 100%;
}

.content_text > .row > .column:last-child {
	text-align: right;
}

.content_onecolumn {
	display: flex;
	flex-direction: column;
}

.content_onecolumn > .column{
	margin: auto;
}

.content_twocolumns {
	display: flex;
	margin: auto;
}

.content_twocolumns > .column{
	/* First column : width != 100% to enable content to be centered */
	width: 50%;
}

.content_twocolumns > .column:last-child {
	margin-left: 10px;
}

/* Width : 0 - 650px */
@media all and (max-width: 980px) {
	
	.content_twocolumns {
		flex-direction: column;
	}
	
	.content_twocolumns > .column {
		width: 100%;
		margin: auto;
	}
	
	.content_twocolumns > .column:last-child {
		margin-left: 0;
		margin-top: 10px;
	}
}

.bullet_line {
	background-image: url('/core/gui/img/design/design_icon_bullet.png');
	background-repeat: no-repeat;
	background-position: left 20px center;
	margin-top: 8px;
	padding: 2px 28px 2px 50px;
	text-align: justify;
}

.bullet_arrow {
	background-image: url('/core/gui/img/design/design_icon_arrow.png');
	background-repeat: no-repeat;
	background-position: left 8px center;
	margin-top: 4px;
	padding: 2px 0 2px 30px;
	text-align: justify;
}

.bullet_arrow > .row {
	display: flex;
}

.bullet_arrow > .row > .column {
	width: 100%;
}

.bullet_arrow > .row > .column:first-child {
	max-width: 200px;
}

/* Width : 0-520px */
@media all and (max-width: 520px) {
	.bullet_arrow > .row {
		flex-direction: column; /* (sub)Required by justify-content: center */
		justify-content: center; /* vertical centering */
	}

	.bullet_arrow > .row > .column {}

	.bullet_arrow > .row > .column:first-child {
		font-style: italic;
		color: #3D3D3D;
	}
}

.bullet_link {
	background-image: url('/core/gui/img/design/design_icon_link.png');
	background-repeat: no-repeat;
	background-position: left 8px center;
	margin-top: 4px;
	padding: 2px 2px 2px 30px;
	text-align: justify;
}

.img-full {
	max-width: 90%;
}

.subheader {
	display: flex;
	justify-content: center; /* vertical centering */
	width: 100%;
	background-color: #F7F7F7;
	color: #3D3D3D;
	padding: 4px 8px 4px 8px; /* Adds-up to rows */
	box-sizing: border-box; /* Padding will not impact div width */
	font-size: 90%;
	margin-bottom: 8px;
	border-radius: 20px;	
}

.content_data .row {
	display: flex;
	justify-content: center; /* vertical centering */
	width: 100%; /* (sub)Required for content (html link <a>) to stretch */
	min-height: 44px; /* Required when row does not contain double content, to preserve equal height - value to adapt with padding (top & bottom) */	
	padding: 0 8px 0 8px; /* Adds-up to rows */
	box-sizing: border-box; /* Padding will not impact div width */
	border-radius: 20px;
}

.content_data .row:hover {
	background-color: #FCDF10;
}

@media (max-width: 760px) {
	.content_data .row {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
}

.content_data .row_subdata {
	color: #838383;
	font-size: 90%;
}

.avatar {
	height: 210px;
	width: 210px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	margin: auto;
	position: relative;
}

.avatar[profil=yes] {
	height: 190px;
	width: 190px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 50%;
}


.userlink {
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 500px;
	white-space: nowrap; 
	display: inline-block;
	margin-bottom: -4px /* Hack to force correct alignment with text*/
}

/* Media query | Width : 0 - 300px */
@media all and (max-width: 500px) {
	.userlink {
		max-width: 200px;
	}
}

/* Profil avatar */
#content_left-column > .content > a > .avatar_default {
	display: none;
}

#content_left-column > .content {
	background-size: 100%;
}

/* Div only displayed on small screens (ex: profil information */
@media all and (min-width: 960px) {
	.smallscreen {
		display: none;
	}
}

/**
 * Element - Links
 */

#link_page_navigation {
	display: flex;
	width: 100%; 
	color: #6F6F6F;
	font-size: 90%;
	margin-top: 8px;
}

#link_page_navigation_left {
	width: 100%; 
	text-align: left;
}

#link_page_navigation_center {

}

#link_page_navigation_right {
	width: 100%; 
	text-align: right;
}

/**
 * Element - Include : left column box
 */

#content_left-column {
	width: 100%;
	max-width: 400px;
	margin: auto;
}

#content_left-column > .subtext {
	text-align: justify;
	color: #545454;
	padding-top: 4px;
	font-size: 90%;
}

.sublink {
	color: #545454;
	cursor: pointer;
	padding-top: 4px;
	font-size: 90%;
}

/**
 * Element - Include : Data (loading/empty)
 */

.loading_data {
    width: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    margin-top: 30px;
    color: grey;
    padding-top: 10px;
    text-align: center;
}

.loading_data:before {
	display: block;
    position: absolute;
    content: "";
    left: -100px;
    width: 100px;
    height: 3.4px;
    margin-top: -10px;
    background-color: #2671BB;
    animation: loading 1.5s linear infinite;
}

@keyframes loading {
    from {left: -200px; width: 30%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% { left: 50%;}
    95% {left: 120%;}
    to {left: 100%;}
}

.loading_img {
	width: 100%;
	min-height: 30px;
	background-image: url('/core/gui/img/design/design_processing_results.gif');
	background-repeat: no-repeat;
	background-position: center center;
}

.empty_data {
	width: 100%;
	padding: 10px 0 10px 0;
	color: #777777;
	background-color: #FFF;
	text-align: center;
}

.empty_data_alone {
	width: 100%;
	margin-top: 30px;
	padding-top: 170px;
	color: #777777;
	text-align: center;
	text-shadow: 2px 2px 10px #cbcbcb;
	background-image: url('/core/gui/img/design/design_empty.png');
	background-repeat: no-repeat;
	background-position: top center;
}


.empty_data_loading {
	width: 100%;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 10px 0 10px 0;
	background-color: #FFF;
	color: #777777;
	padding-top: 10px;
	text-align: center;
    border-radius: 20px;
}

.empty_data_loading:before{
	display: block;
	position: absolute;
	content: "";
	left: -100px;
	width: 100px;
	height: 4px;
	margin-top:26px;
	background-color: #cccccc;
	animation: loading 1.5s linear infinite;
}

#access_restriction {
	margin-top: 30px;
	color: #064184;
    text-align: center;
	text-shadow: 2px 2px 10px #cbcbcb;
    border-radius: 20px;
}

#access_restriction .text {
	padding: 10px;
	border-radius:30px;
	background-color:white;
	box-shadow: 0 0 24px 0 #e0e0e0;
	line-height: 200%;
}

#access_restriction img {
	margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
	width: 100%;
}

#access_restriction a:hover {
	color: red;
}

/**
 * Element - Shortcuts
 */

#small_link_box_img_index {
	background-image: url('/core/gui/img/design/design_shortcut_index.png');
	background-size: 100%;
}

#small_link_box_img_profil {
	background-image: url('/core/gui/img/design/design_shortcut_profil.png');
}

#small_link_box_img_inbox {
	background-image: url('/core/gui/img/design/design_shortcut_inbox.png');
}

#small_link_box_img_inbox_closed {
	background-image: url('/core/gui/img/design/design_shortcut_inbox_closed.gif');
}

#small_link_box_img_inbox_loading {
	background-image: url('/core/gui/img/design/design_shortcut_inbox_loading.gif');
}


#small_link_box_img_shop {
	background-image: url('/core/gui/img/design/design_shortcut_shop.png');
}

#small_link_box_img_collection {
	background-image: url('/core/gui/img/design/design_shortcut_collection.png');
}

#small_link_box_img_disconnect {
	background-image: url('/core/gui/img/design/design_shortcut_disconnect.png');
}

/**
 * Element - SEO
 */

#content_seo {
	display: flex;
	text-align: justify;
	color: #333333;
}

#content_seo > #seo-icons {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	min-width: 20%;
	margin-right: 10px;
}

#content_seo > #seo-icons > .icon {
	height: 100%;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 54px 54px;
	background-color: #ededed;
	border-radius: 20px;
}

#content_seo > #seo-icons > .title {
	text-align: center;
	margin: 12px 0 12px 0;
	padding: 8px;
	background-color: #ededed;
	border-radius: 20px;
}

#content_seo > #seo-icons > .title:last-child {
	margin-bottom: 0;
}

#content_seo > #seo-icons > #register_icon {
	background-image: url('/core/gui/img/design/design_seo_icon-check.png');
	background-color: #e4f1e5;
}

#content_seo > #seo-icons > #no-fee_icon {
	background-image: url('/core/gui/img/design/design_seo_icon-hands.png');
	background-color: #fae9d1;
}

#content_seo > #seo-icons > #easy_icon {
	background-image: url('/core/gui/img/design/design_seo_icon-yes.png');
	background-color: #e3eaf7;
}

#content_seo > #seo-icons > #register_title {
	background-color: #e4f1e5;
}

#content_seo > #seo-icons > #no-fee_title {
	background-color: #fae9d1;
}

#content_seo > #seo-icons > #easy_title {
	background-color: #e3eaf7;
}

#content_seo > #seo-text {
}

#content_seo > #seo-text > h2 {
	color: #064184;
}

#content_seo > #seo-text a {
	text-decoration:underline;
}

#content_seo > #seo-text > p:last-child {
	margin-bottom: 0;
}

/* Media query | Width : 0 - 300px */
@media all and (max-width: 960px) {
	#rsp-seo {
		display: none;
	}
}

/**
 * Element - Include : last connected users
 */

.row_lastconnected > .nickname {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	width: 100%;
}

.row_lastconnected > .shop {
	width: 24px;
	height: 20px;
	margin: auto;
}

/**
 * Element - Include : last shop updates
 */
 
.subheader_lastadd > .user {
	width: 100%;
	min-width: 150px; /* small screens - maintain a straight column */
}

.subheader_lastadd > .business {
	width: 100%;
	text-align: center;
}

.subheader_lastadd > .time {
	width: 100%;
	text-align: right;
}

.row_lastadd > .user {
	width: 100%;
	display: flex;
	justify-content: center; /* vertical centering */
	min-width: 150px; /* small screens - maintain a straight column */
}

.row_lastadd > .user > .nickname {
	display: flex;
    flex-direction: column;
    justify-content: center;
	width: 100%;
}

.row_lastadd > .business {
	display: flex;
	width: 100%;
}

.row_lastadd > .business > .type {
	width: 28px;
	height: 28px;
	margin: auto;
}

.row_lastadd > time {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	width: 100%; 
	text-align: right;
	color: #838383;
	font-size: 90%;
}

/* Width : 0-310px */
@media all and (max-width: 310px) {
	.subheader_lastadd >.business {
		display: none;
	}

	.row_lastadd > .business {
		display: none;
	}
}

/**
 * Element - Include : last topics
 */
 
.subheader_lasttopic > .topic {
	width: 100%;
}

.subheader_lasttopic > .user {
	min-width: 140px; /* small screens - maintain a straight column */
	padding-left: 8px;
}

.row_lasttopic > .topic {
	display: flex;
	justify-content: center; /* vertical centering */
	width: 100%;
}

.row_lasttopic > .topic > .type {
	min-width: 14px;
	max-width: 14px;
	min-height: 14px;
	max-height: 14px;
	margin: auto;
}

.row_lasttopic > .topic > .title {
	display: flex;
	align-items: flex-start; /* override the default align-items:stretch */
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	width: 100%;
	padding-left: 8px;
}

.row_lasttopic > .user {
	display: flex;
	justify-content: center; /* vertical centering */
	min-width: 140px; /* small screens - maintain a straight column */
	padding-left: 8px;
}

.row_lasttopic > .user > .nickname {
	width: 100%;
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center ; especialy required here for small screen - when row takes multiples lines */
	justify-content: center; /* vertical centering */
}

/**
 * Element - Include : reviews
 */
 
.subheader_review > .nickname {
	min-width: 180px;
}

.subheader_review > .comment {
	width: 100%;
	padding-left: 8px;
}

.subheader_review > .rating {
	min-width: 260px;
	padding-left: 8px;
}

.row_review {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.row_review:hover {
	background-color: #fcfcfc !important;
}

.row_review > .user {
	display: flex;
	justify-content: center; /* vertical centering */
	min-width: 180px; /* small screens - maintain a straight column */
}

.row_review > .user > .nickname {
	display: flex;
	width: 100%; 
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
}

.row_review > .comment {
	width: 100%; /* (sub)Required for content (html link <a>) to stretch */
	margin: auto;
	padding-left: 8px;
}

.row_review > .rating {
	min-width: 260px;
	margin: auto;
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	color: #6F6F6F;
	padding-left: 8px;
	font-size: 90%;
}

.row_review > .rating > .line {
	width: 100%;
	position: relative;
	height: 20px;
}

.row_review > .rating > .line > .title {
	width: 173px;
	float: left;
}

/* Width : 0-550px */
@media all and (max-width: 600px) {
	
	.row_review > .user {
		min-width: 140px; /* small screens - maintain a straight column */
	}

	.subheader_review > .user {
		min-width: 140px; /* small screens - maintain a straight column */
	}

	.subheader_review > .rating {
		display: none;
	}

	.row_review > .rating {
		display: none;
	}
}

/* Avatar & Activity icon */

.user_container {
	position: relative; /* Required to display user_activity icon */
	margin: auto; /* Vertical centering */
}

.row .user_container	{
	margin-right: 8px;
}
.user_avatar {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	border-radius: 50%;
} 

.user_avatar[shadow_color=free] {box-shadow: 0 0 14px -2px #D3D3D3;}
.user_avatar[shadow_color=none] {box-shadow: 0 0 14px -2px #D3D3D3;}
.user_avatar[shadow_color=red] {box-shadow: 0 0 14px -2px red;}
.user_avatar[shadow_color=pink] {box-shadow: 0 0 14px -2px deeppink;}
.user_avatar[shadow_color=orange] {box-shadow: 0 0 14px -2px darkorange;}
.user_avatar[shadow_color=yellow] {box-shadow: 0 0 14px -2px #fcdc00;}
.user_avatar[shadow_color=green] {box-shadow: 0 0 14px -2px lightseagreen;}
.user_avatar[shadow_color=blue1] {box-shadow: 0 0 14px -2px dodgerblue;}
.user_avatar[shadow_color=blue2] {box-shadow: 0 0 14px -2px blue;}
.user_avatar[shadow_color=purple] {box-shadow: 0 0 14px -2px blueviolet;}
.user_avatar[shadow_color=brown] {box-shadow: 0 0 14px -2px brown;}
.user_avatar[shadow_color=black] {box-shadow: 0 0 14px -2px black;}

.user_container[avatar_size="32x32"] > .user_avatar {
	width: 32px; /* Force correct value */
	height: 32px; /* Force correct value */
}

.user_container[avatar_size="36x36"] > .user_avatar {
	width: 38px; /* Force correct value */
	height: 38px; /* Force correct value */
}

.user_container[avatar_size="70x70"] > .user_avatar {
	width: 70px; /* Force correct value */
	height: 70px; /* Force correct value */
} 

.user_container[avatar_size="80x80"] > .user_avatar {
	width: 80px; /* Force correct value */
	height: 80px; /* Force correct value */
}

.user_activity {
	position: absolute;
	background-repeat: no-repeat;
	background-position: right bottom;
}

@media (max-width: 760px) {
	.user_container_minimize .user_avatar {
		width: 40px !important;
		height: 40px !important;
	}

	.user_container_minimize > .user_activity[activity_icon=core_ten-minutes],
	.user_container_minimize > .user_activity[activity_icon=core_sixty-minutes],
	.user_container_minimize > .user_activity[activity_icon=core_offline] {
		bottom: 2px !important;
		right:  2px !important;
	}

	.user_container_minimize > .user_activity[activity_icon=star_ten-minutes],
	.user_container_minimize > .user_activity[activity_icon=star_sixty-minutes],
	.user_container_minimize > .user_activity[activity_icon=star_offline] {
		bottom: -2px !important;
		right:  -2px !important;
	}
}

/* Activity icon - Core */

.user_container[avatar_size="32x32"] > .user_activity[activity_icon=core_ten-minutes],
.user_container[avatar_size="32x32"] > .user_activity[activity_icon=core_sixty-minutes],
.user_container[avatar_size="32x32"] > .user_activity[activity_icon=core_offline] {
	width: 12px;
	height: 12px;
	background-size: 12px 12px;
    bottom: 2px;
    right: 0;
}

.user_container[avatar_size="36x36"] > .user_activity[activity_icon=core_ten-minutes],
.user_container[avatar_size="36x36"] > .user_activity[activity_icon=core_sixty-minutes],
.user_container[avatar_size="36x36"] > .user_activity[activity_icon=core_offline] {
	width: 12px;
	height: 12px;
	background-size: 12px 12px;
    bottom: 2px;
    right: 0;
}

.user_container[avatar_size="70x70"] > .user_activity[activity_icon=core_ten-minutes],
.user_container[avatar_size="70x70"] > .user_activity[activity_icon=core_sixty-minutes],
.user_container[avatar_size="70x70"] > .user_activity[activity_icon=core_offline] {
	width: 12px;
	height: 12px;
	background-size: 12px 12px;
    bottom: 4px;
    right: 10px;
}

.user_container[avatar_size="80x80"] > .user_activity[activity_icon=core_ten-minutes],
.user_container[avatar_size="80x80"] > .user_activity[activity_icon=core_sixty-minutes],
.user_container[avatar_size="80x80"] > .user_activity[activity_icon=core_offline] {
	width: 12px;
	height: 12px;
	background-size: 12px 12px;
    bottom: 8px;
    right: 10px;
}

.user_activity[activity_icon=core_ten-minutes] {
	background-image: url('/core/gui/img/design/design_icon_activity-core_green.png');
}

.user_activity[activity_icon=core_sixty-minutes] {
	background-image: url('/core/gui/img/design/design_icon_activity-core_yellow.png');
}

.user_activity[activity_icon=core_offline] {
	background-image: url('/core/gui/img/design/design_icon_activity-core_blue.png');
}

/* Activity icon - MAX */

.user_container[avatar_size="32x32"] > .user_activity[activity_icon=star_ten-minutes],
.user_container[avatar_size="32x32"] > .user_activity[activity_icon=star_sixty-minutes],
.user_container[avatar_size="32x32"] > .user_activity[activity_icon=star_offline] {
	width: 18px;
	height: 18px;
    bottom: 0;
    right: -3px;
}

.user_container[avatar_size="36x36"] > .user_activity[activity_icon=star_ten-minutes],
.user_container[avatar_size="36x36"] > .user_activity[activity_icon=star_sixty-minutes],
.user_container[avatar_size="36x36"] > .user_activity[activity_icon=star_offline] {
	width: 18px;
	height: 18px;
    bottom: 0;
    right: -3px;
}

.user_container[avatar_size="70x70"] > .user_activity[activity_icon=star_ten-minutes],
.user_container[avatar_size="70x70"] > .user_activity[activity_icon=star_sixty-minutes],
.user_container[avatar_size="70x70"] > .user_activity[activity_icon=star_offline] {
	width: 20px;
	height: 20px;
    bottom: 2px;
    right: 8px;
}

.user_container[avatar_size="80x80"] > .user_activity[activity_icon=star_ten-minutes],
.user_container[avatar_size="80x80"] > .user_activity[activity_icon=star_sixty-minutes],
.user_container[avatar_size="80x80"] > .user_activity[activity_icon=star_offline] {
	width: 20px;
	height: 20px;
    bottom: 8px;
    right: 8px;
}

.user_activity[activity_icon=star_ten-minutes] {
	background-image: url('/core/gui/img/design/design_icon_activity-star_green.png');
	image-rendering: pixelated; /* Improve image quality (remove blur) */
}

.user_activity[activity_icon=star_sixty-minutes] {
	background-image: url('/core/gui/img/design/design_icon_activity-star_yellow.png');
	image-rendering: pixelated; /* Improve image quality (remove blur) */
}

.user_activity[activity_icon=star_offline] {
	background-image: url('/core/gui/img/design/design_icon_activity-star_blue.png');
	image-rendering: pixelated; /* Improve image quality (remove blur) */
}

/* ------ */
/* Element - Include :  cart */
/* ------ */

#cart_vs {
	margin-top: 12px;
	display: none;
}

#cart_vs[feature=inbox] {
	margin-top: 12px;
	background-color: #FFF;
	padding: 1px 12px 12px 12px;
	border-radius: 20px;
    margin-left: 100px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);;
}

@media (max-width: 760px) {
	#cart_vs[feature=inbox] {
	   margin-left: 55px;
	}
}

.cart_vs_element {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);;
    border-radius: 10px;
}

.cart_vs_title {
	display: flex; /* Unable columns */
	margin-top: 12px;
	padding: 5px 0 5px 9px;
	background-color: #2196d6;
	color : #FFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cart_vs_title:nth-child(2) {
	margin-top: 12px;
}

.cart_vs_title > .column {
	width: 100%;
    margin: auto;
}

.cart_vs_title > .column:last-child {
	text-align: right;
}

.cart_vs_content {
	background-color: #eef2f7;
	overflow-x: auto; /* scroll on overflow */
	border-radius: 10px;
}

.cart_userlist {
	position: fixed;
	z-index: 900;
	width: 160px;
		-webkit-box-shadow: 0 0 40px -15px rgba(100,100,100,1);
	       -moz-box-shadow: 0 0 40px -15px rgba(100,100,100,1);
				box-shadow: 0 0 40px -15px rgba(100,100,100,1);
}

.cart_userlist[status=opened] {
	background-color: #FFF;
}

.cart_userlist_title {
	text-align: center;
	background-color: #fcdc3e;
	color : #064184;
	cursor: pointer;
	user-select: none; /* Disable text selection on click */
    position: relative; /* Display bottom shadow */
	-webkit-box-shadow: 0 12px 32px -8px rgba(100,100,100,1);
	   -moz-box-shadow: 0 12px 32px -8px rgba(100,100,100,1);
	        box-shadow: 0 0px 32px -8px rgba(100,100,100,1);
}

.cart_userlist[status=closed] > .cart_userlist_content {
	display: none;
}

.row_cart_userlist {
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.row_cart_userlist:hover {
	background-color: #FFF !important;
}

.row_cart_userlist > .nickname {
	display: flex;
	flex-direction: column; /* (sub)Required by justify-content: center */
	justify-content: center; /* vertical centering */
	width: 100%;
}

/* Width : 960px - and more */
@media all and (min-width: 960px) {
	.cart_userlist {
		top: 50px;
		right: 30px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	.cart_userlist_title {
		padding: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	.cart_userlist_content {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	
	.row_cart_userlist:hover {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}

/* Width : 0 - 960px */
@media all and (max-width: 959px) {
	.cart_userlist {
		bottom: 0;
		right: 0;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}
	.cart_userlist_title {
		padding: 12px;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}
}

.cart_empty {
	width: 100%;
    margin-top: 12px;	
	padding: 10px 0 10px 0;
	text-align: center;
	border-radius: 20px;
	color: #064184;
	background-color: #e7f0f8;
	display: none;
}

/**
 * Signup steps
 */

.signup_steps {
	display: flex; flex-direction: row;
	display: -webkit-flex; -webkit-flex-direction: row; /* Webkit */
	text-align: center;
	margin-top: 30px; 
	width: 100%;
}

.signup_steps_number {
	background-color: #eef2f7;
	color: #3D3D3D;
	width: 50%;
	padding: 10px;
}

.signup_steps_number > a {
	color: #3D3D3D;
}

.signup_steps_number[current] {
	background-color: #2671BB;
	color: #FFF;
	width: 50%;
	padding: 10px;
}

.signup_steps_number[next] {
	background-image: url('/core/gui/img/design/design_icon_arrow.png');
	background-repeat: no-repeat;
	background-size: 10px 100%;
	background-position: -3px 0px;
}

/* MISC */

.no-top-padding {
	padding-top : 0 !important;
}

.no-top-margin {
	margin-top : 0 !important;
}

.dropdown {
	
}

.dropdown > #content {
	
}

/*
// -- Freemium footer feature
*/

#feature-freemium-responsive-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.1); /* White background with slight transparency */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adding a slight shadow for depth */
    border-radius: 20px 20px 0 0; /* Optional: Rounding the top corners for a softer look */
    padding: 10px 0 0 0;
}

#feature-freemium-responsive-fixed #toggle {
	width: 100%;
	background-color: #FFF;
	text-align: right;
	position: relative;
}

#feature-freemium-responsive-fixed #toggle #toggle-pending,
#feature-freemium-responsive-fixed #toggle #toggle-button {
	position: absolute;
    z-index: 1;
    right: 0;
    background-color: #2671BB;
    top: 0;
    padding: 10px;
    color: #fff;
    border-radius: 20px 20px 0 20px;
}

#feature-freemium-responsive-fixed #toggle #toggle-button {
	cursor: pointer;
}

#feature-freemium-responsive-fixed #toggle #toggle-button:hover {
	background-color: #fcdc3e;
	color: #073795;
}

#feature-freemium-responsive-fixed .container {
    padding: 0 0 10px 0;
    background-color: #FFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: auto;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
}

#feature-freemium-responsive-fixed .banner-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 150px;
    border-radius: 20px 20px 0 0;
    background-position: center center;
    background-size: cover; /* Cover will ensure the image covers the area, might need adjustment */
    overflow: hidden;
}

#feature-freemium-responsive-fixed .avatar-container {
    position: absolute;
    top: 34px; /* Adjust the value to control the overlap */
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Avatar size */
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFF; /* Adjust color based on your design */
}

#feature-freemium-responsive-fixed .container .user-link {
    margin-top: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

#feature-freemium-responsive-fixed .banner {
    max-height: 120px;
    height: 150px;
    border-radius: 20px 20px 0 0;
}

#feature-freemium-responsive-fixed .avatar {
    width: 100%;
    height: auto;
}

#feature-freemium-responsive-fixed .info p {
	color: #064184;
    border-radius: 20px;
    /*background-color: #f5f5f5;
    padding: 10px;*/
    padding: 0 10px 10px 10px;
    margin: 0 10px 10px 10px;
    text-align: left;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    position: relative;
}

#feature-freemium-responsive-fixed .info p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px; /* Adjust the height based on your needs */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFFFFF 100%);
}

#feature-freemium-responsive-fixed .buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px; /* Space between buttons */
    padding: 0 10px;
}

#feature-freemium-responsive-fixed .store-link-button, .pokechange-max-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2671BB; /* Adjust as needed */
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    border-radius: 100px;
}

#feature-freemium-responsive-fixed .store-link-button {
    background-color: #E9F0FA; /* Different color for distinction */
}

#feature-freemium-responsive-fixed .pokechange-max-button {
    color: #ffffff;
}

#feature-freemium-responsive-fixed .store-link-button:hover {
	background-color: #d4e2f2;
}

#feature-freemium-responsive-fixed .pokechange-max-button:hover {
	background-color: #fcdc3e;
	color: #073795;
}

@media (max-width: 960px) {
    #feature-freemium-responsive-fixed .buttons-container {
        flex-direction: column;
    }
}

@media (max-width: 634px) {
	#feature-freemium-responsive-fixed {
    	background-color: rgba(0, 0, 0, 0);
	}
	
	#feature-freemium-responsive-fixed .info p {
		height: 70px;
	}
}

#feature-freemium-notification {
	background-color: #e44236; /* red */
	color: white;
	margin-top: 30px;
	border-radius: 20px;
	padding: 20px; /* Increased padding */
}

#feature-freemium-notification a {
	color: #ffcccb; /* Lighter red for contrast */
}
