[canvas=container] {
	display: flex;
	flex-direction: column;
	z-index: 100;
	position: relative; /* Required for container to scroll over banner */
	width:100%;
	padding-bottom: 70px;
	box-sizing: border-box;
	background-color: var(--gc-color-canvas);
	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: 8px;
	color: #323a45;
	box-shadow: var(--gc-shadow);
}

.body-row_sub {
    background-color: #FFF;
    text-align: center;
    padding: 8px;
    color: #323a45;
    box-shadow: var(--gc-shadow);
}

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

/**
 * 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;
	pointer-events: none;
}

#sidebar_closed-overlay[overlay] {
	pointer-events: auto;
}

#sidebar_responsivemenu {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	background-color: #174f7b;
	overflow-x: hidden;
	transition: 0.3s;
	background-image: none;
    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: 30px;
	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: #064184;
}

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

#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: 30px;
	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: 30px;
	color: #FFF;
}

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

/* 
 * Sub-navigation bar
*/

#subnav {
	display: flex;
	position: sticky;
	z-index: 10; /* Must be above sticky set */
	top: 50px;
	overflow-x: auto; /* scroll on overflow */
	width: 100%;
	max-width: 1270px;
	min-height: 50px;
	box-sizing: border-box;
	padding: 0; /* Remove default ul style */
	list-style-type: none;  /* Remove default ul style */
	margin: 0 auto; /* Horizontal centering */
	background-color: var(--gc-color-surface);
	border: 1px solid var(--gc-color-border);
	box-shadow: var(--gc-shadow);
	border-radius: 0 0 14px 14px;
	scrollbar-width: thin;
}

#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;
	gap: 6px;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	padding: 0 14px;
	margin-right: -1px;
	white-space: nowrap;
	position: relative;
	border-bottom: 4px solid transparent;
	color: #064184;
	transition: background-color var(--gc-transition), border-color var(--gc-transition), color var(--gc-transition);
}

#subnav > li {
	display: flex;
	flex: 0 0 auto;
}

/* Add a color to the active/current link */
#subnav > li > a:hover {
	color: #064184;
	border-bottom-color: var(--gc-color-primary);
	background-color: #FFF;
}

/* Add a color to the active/current link */
#subnav > li > a.active {
	color: #064184;
	border-bottom-color: var(--gc-color-primary);
	background-color: #FFF;
}

#subnav > li > a > .amount {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: static;
	min-width: 20px;
	height: 20px;
	box-sizing: border-box;
	padding: 0 7px;
	border: 1px solid rgba(96, 117, 138, .22);
	border-radius: 999px;
	background-color: rgba(96, 117, 138, .12);
	color: var(--gc-color-primary-active);
	font-variant-numeric: tabular-nums;
	line-height: 1;
	transition: background-color var(--gc-transition), border-color var(--gc-transition), color var(--gc-transition);
}

#subnav > li > a > .amount:empty {
	display: none;
}

#subnav > li > a.active > .amount {
	border-color: var(--gc-color-primary);
	background-color: var(--gc-color-primary);
	color: #FFF;
}

/* 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: var(--gc-color-danger-soft);border-color: var(--gc-color-danger);color: var(--gc-color-danger);}
	50%, 100% {background-color: #FFF;border-color: #FFF;color: #064184;}
}

@keyframes blinking_nothover_active {
	0%, 49% {background-color: var(--gc-color-danger-soft);border-top-color: var(--gc-color-danger);border-bottom-color: var(--gc-color-primary);color: var(--gc-color-danger);}
	50%, 100% {background-color: #FFF;border-top-color: #FFF;border-bottom-color: var(--gc-color-primary);color: #064184;}
}

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

@media all and (max-width: 960px) {
	#subnav {
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	#subnav > li {
		flex: 0 0 auto;
	}

}

/* Full desktop width */
@media all and (min-width:1270px) {
	#subnav {
		width: 100%;
	}
}

/**
 * Element - breadcrumb
 */

#breadcrumb {
    width: 100%;
    display: flex;
    background-color: #FFF;
    margin: auto;
    height: 30px;
    z-index: 12;
    position: relative;
    box-shadow: var(--gc-shadow);
}

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

/* Full desktop width */
@media all and (min-width:1270px) {
	#breadcrumb {
		width: 1270px;
	}
}

#banner_edit {
	border-top: 50px solid var(--gc-color-primary);
	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*/
}

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

#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: var(--gc-radius-lg);
    box-shadow: var(--gc-shadow);
    padding: 8px;
	transition: transform var(--gc-transition), border-color var(--gc-transition), box-shadow var(--gc-transition);
}

#box_elements > .element:hover {
	cursor: pointer;
	background-color: var(--gc-color-surface);
	color: #FFF; /* Override default link hover color */
	border-color: var(--gc-color-border-strong);
	box-shadow: var(--gc-shadow);
	transform: translateY(-3px);
}

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

#box_elements > .element:hover > .group {
	background-color: var(--gc-color-primary-hover);
}

#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: var(--gc-color-primary);
	border-radius: var(--gc-radius-md);
}

@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: 30px;
	padding: 9px 0 9px 0;
	text-align: center;
	cursor: pointer;
	color: #FFF;
	background-color: var(--gc-color-primary);
	border-radius: var(--gc-radius-sm);
	box-shadow: var(--gc-shadow);
	transition: background-color var(--gc-transition), box-shadow var(--gc-transition), transform var(--gc-transition);
}

.button[selected],
.button[selected]:hover {
	color: #FFF;	
	background-color: var(--gc-color-primary-active);
}

.button[cancel] {
	margin-top: 10px;
	color: #FFF;	
	background-color: var(--gc-color-danger);
}

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

.button:hover, .button[blinking]:hover {
	color: #FFF;
	background: var(--gc-color-primary-hover);
	box-shadow: var(--gc-shadow);
	transform: translateY(-1px);
}

.sub-button_content {
	border-radius: 12px;
	box-shadow: var(--gc-shadow);
}

.sub-button_content > .sub-button_header {
	width: 100%;
	margin-top: 30px;
	padding: 9px 0 9px 0;
	text-align: center;
	color: #FFF;
	background-color: var(--gc-color-primary);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
/*	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: #EAF2F9;
}

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

/**
 * Element - Notification
 */

#notification {
	display: flex;
	margin-top: 30px;
	padding: 8px 10px;
	border-radius: 10px;
	animation: anim_FadeInDown ease-out .2s;
}

#notification[type=error] {
	background-color: #fbe9e8;
	color: #8f2d2a;
}

#notification[type=success] {
	background-color: #d7f0e3;
	border: 1px solid #9ed5b8;
	color: #155f3d;
}

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

#notification > a {
	width: 16px;
	background-image: none;
}

#notification a {
	color: inherit;
    text-decoration: none; 
}


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

/* Shared contextual notice: optional title, list and action. */
.context-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: 100%;
	margin: 20px 0 0;
	padding: 16px 20px;
	box-sizing: border-box;
	color: #064184;
	background-color: var(--gc-color-surface);
	border: 1px solid var(--gc-color-border-strong);
	border-radius: 12px;
	box-shadow: var(--gc-shadow);
}

.context-notice[hidden] {
	display: none;
}

.context-notice__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 6px;
}

.context-notice__title {
	color: #064184;
	font-size: 16px;
	font-weight: 700;
}

.context-notice p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
}

.context-notice__link {
	color: #064184;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
	transition: color .2s ease;
}

.context-notice__link:hover {
	color: var(--gc-color-primary);
	text-decoration: none;
}

.context-notice__link:focus-visible {
	outline: 2px solid rgba(38, 120, 185, .35);
	outline-offset: 3px;
	border-radius: 2px;
}

.context-notice__items {
	display: grid;
	gap: 8px;
}

.context-notice__item {
	position: relative;
	padding-left: 16px;
	color: var(--gc-color-text-muted);
	font-size: 13px;
	line-height: 1.5;
}

.context-notice__item::before {
	position: absolute;
	top: .65em;
	left: 0;
	width: 4px;
	height: 4px;
	background-color: var(--gc-color-primary);
	border-radius: 50%;
	content: '';
}

.context-notice a.context-notice__action {
	display: inline-flex;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 11px 30px;
	color: #fff;
	background-color: var(--gc-color-primary);
	border: 1px solid var(--gc-color-primary);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease;
}

.context-notice a.context-notice__action:hover {
	color: #fff;
	background-color: #15577f;
	border-color: #15577f;
	text-decoration: none;
}

.context-notice a.context-notice__action:focus-visible {
	outline: 3px solid rgba(38, 120, 185, .28);
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.context-notice {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		padding: 20px;
	}

	.context-notice__title {
		font-size: 15px;
	}

	.context-notice a.context-notice__action {
		width: 100%;
		min-height: 44px;
	}
}

.content {
    width: 100%;
    margin-top: 30px;
    background-color: var(--gc-color-surface);
    border: 1px solid var(--gc-color-border);
    box-shadow: var(--gc-shadow);
    border-radius: var(--gc-radius-md);
}

.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%;
	border: 1px solid var(--gc-color-border);
	box-shadow: var(--gc-shadow);
    border-radius: var(--gc-radius-md);
    background-color: var(--gc-color-surface);
}

/* 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: 12px;
    border-bottom-right-radius: 12px;
	line-height: 1.5;
}

.content_text-compact > p:first-child {
	margin-top: 0;
}

.content_data {
	background-color: var(--gc-color-surface);
	color: #064184;
	padding: 8px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.content_title {
	display: flex; /* Unable columns in/as content (ex: title+date)*/
	box-sizing: border-box;
	justify-content: space-between;
	align-items: center;
	padding: 10px 14px;
	background: #2671bb;
	color: #FFF;
	border-radius: var(--gc-radius-md) var(--gc-radius-md) 0 0;
	font-weight: normal;
	letter-spacing: -.01em;
}

.headlight {
	background-color: #FFF;
}

/* Account identity panels use the same calm, trustworthy palette as the marketplace. */
.content_text.profile-information {
	background-color: var(--gc-color-surface-accent);
}

.content_text.brand-yellow-panel {
	background-color: var(--gc-color-surface);
}

#connection_form,
#signup_form,
#resetpwd_form {
	background-color: var(--gc-color-surface);
	border: 1px solid var(--gc-color-border);
	box-shadow: var(--gc-shadow);
}

.content_title a {
	color: #FFF;
}

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


.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[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 {
	margin-top: 8px;
	padding: 2px 30px;
	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: var(--gc-color-surface-subtle);
	color: #064184;
	padding: 6px 9px; /* Adds-up to rows */
	box-sizing: border-box; /* Padding will not impact div width */
	font-size: 90%;
	margin-bottom: 8px;
	border-radius: 8px;	
}

.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: 8px;
}

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

.content_data .row:hover a {
	color: #064184;
}

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

/* Premium sidebar: quiet surfaces, with solid blue reserved for the active action. */
aside .content {
	border-color: var(--gc-color-border);
	box-shadow: var(--gc-shadow);
}

aside .content_text.profile-information {
	background: var(--gc-color-surface-subtle);
}

#content_left-column .button {
	border: 1px solid var(--gc-color-border-strong);
	background: var(--gc-color-surface);
	box-shadow: var(--gc-shadow);
	color: #064184;
}

#content_left-column .button:hover {
	border-color: var(--gc-color-primary);
	background: var(--gc-color-primary-soft);
	box-shadow: var(--gc-shadow);
	color: #064184;
}

#content_left-column .button[selected],
#content_left-column .button[selected]:hover {
	border-color: var(--gc-color-primary-active);
	background: var(--gc-color-primary-active);
	box-shadow: var(--gc-shadow);
	color: #fff;
}

#content_left-column .sub-button_content {
	overflow: hidden;
	border: 1px solid var(--gc-color-border);
	background: var(--gc-color-surface);
	box-shadow: var(--gc-shadow);
}

#content_left-column .sub-button_header {
	margin-top: 0;
	background: var(--gc-color-surface-subtle);
	border-bottom: 1px solid var(--gc-color-border);
	color: #064184;
	font-weight: 600;
}

#content_left-column .sub-button[selected] {
	background: var(--gc-color-primary-soft);
	box-shadow: var(--gc-shadow);
}

#content_left-column > .subtext {
	text-align: left;
	color: var(--gc-color-text-muted);
	padding-top: 14px;
	font-size: 90%;
	line-height: 1.55;
}

.sublink {
	color: var(--gc-color-text-muted);
	cursor: pointer;
	padding-top: 10px;
	font-weight: 500;
	text-align: center;
}

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

.loading_data {
    width: 100%;
	min-height: 50vh;
	box-sizing: border-box;
    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: var(--gc-color-primary);
    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 {
	box-sizing: border-box;
	width: calc(100% - 32px);
	max-width: 560px;
	margin: 40px auto 0;
	padding: 30px 30px;
	color: var(--gc-color-text-muted);
	background: var(--gc-color-surface);
	border: 1px solid var(--gc-color-border);
	border-radius: var(--gc-radius-md);
	box-shadow: var(--gc-shadow);
	font-size: 13px;
	line-height: 1.55;
	text-align: center;
}

.empty_data_alone a {
	color: var(--gc-color-link);
	text-decoration: none;
	text-underline-offset: 3px;
	transition: color var(--gc-transition);
}

.empty_data_alone a:hover,
.empty_data_alone a:focus-visible {
	text-decoration: underline;
	text-decoration-color: currentColor;
}


.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:30px;
	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: 8px;
	border-radius:30px;
	background-color:white;
	box-shadow: var(--gc-shadow);
	line-height: 200%;
}

#access_restriction img {
	margin-top: 30px;
    margin-bottom: 30px;
    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 {
	display: none;
}

.row_review {
	align-items: center;
	width: 100% !important;
	min-height: 88px !important;
	margin: 0;
	padding: 13px 12px !important;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #E3E9EF;
	border-radius: 0 !important;
}

.row_review:last-child {
	border-bottom: 0;
}

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

.row_review > .user {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 180px;
}

.row_review > .user > .nickname {
	display: flex;
	width: 100%; 
	flex-direction: column;
	justify-content: center;
	line-height: 1.35;
}

.row_review > .user > .user_container {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	margin: 0 10px 0 0;
}

.row_review > .comment {
	width: 100%;
	margin: auto;
	padding: 0 30px;
	color: #064184;
	font-size: 100%;
	line-height: 1.6;
}

.row_review > .rating {
	display: flex;
	min-width: 282px;
	margin: auto;
	padding: 9px 11px;
	box-sizing: border-box;
	color: #064184;
	background-color: #F8FAFC;
	border: 1px solid #E3E9EF;
	border-radius: 10px;
	flex-direction: column;
	font-size: 90%;
}

.row_review > .rating > .line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	gap: 12px;
	width: 100%;
	min-height: 20px;
}

.row_review > .rating > .line > .title {
	width: auto;
	float: none;
	white-space: nowrap;
	color: #064184;
	font-size: 100%;
	letter-spacing: 0;
}

.row_review .user_container[avatar_size="70x70"] > .user_avatar {
	width: 54px;
	height: 54px;
}

@media all and (max-width: 820px) {
	.row_review {
		align-items: flex-start;
		flex-wrap: wrap;
		margin: 0;
		padding: 14px 12px !important;
	}
	
	.row_review > .user {
		min-width: 150px;
	}

	.row_review > .comment {
		width: calc(100% - 150px);
		padding: 4px 0 12px 16px;
		box-sizing: border-box;
	}

	.row_review > .rating {
		display: flex;
		width: 100%;
		min-width: 0;
		margin-top: 14px;
		padding: 10px 12px;
		border: 1px solid #E3E9EF;
	}
}

@media all and (max-width: 520px) {
	.row_review > .user,
	.row_review > .comment {
		width: 100%;
		min-width: 0;
	}

	.row_review > .comment {
		padding: 14px 0 4px;
	}
}


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

.premium-avatar-shadow[shadow_color="red"] {box-shadow: 0 0 20px rgba(230, 36, 48, .38), 0 0 38px rgba(230, 36, 48, .20);}
.premium-avatar-shadow[shadow_color="pink"] {box-shadow: 0 0 20px rgba(255, 20, 147, .38), 0 0 38px rgba(255, 20, 147, .20);}
.premium-avatar-shadow[shadow_color="orange"] {box-shadow: 0 0 20px rgba(255, 140, 0, .38), 0 0 38px rgba(255, 140, 0, .20);}
.premium-avatar-shadow[shadow_color="yellow"] {box-shadow: 0 0 20px rgba(224, 181, 0, .38), 0 0 38px rgba(224, 181, 0, .20);}
.premium-avatar-shadow[shadow_color="green"] {box-shadow: 0 0 20px rgba(32, 178, 170, .38), 0 0 38px rgba(32, 178, 170, .20);}
.premium-avatar-shadow[shadow_color="blue1"] {box-shadow: 0 0 20px rgba(30, 144, 255, .38), 0 0 38px rgba(30, 144, 255, .20);}
.premium-avatar-shadow[shadow_color="blue2"] {box-shadow: 0 0 20px rgba(32, 76, 220, .38), 0 0 38px rgba(32, 76, 220, .20);}
.premium-avatar-shadow[shadow_color="purple"] {box-shadow: 0 0 20px rgba(138, 43, 226, .38), 0 0 38px rgba(138, 43, 226, .20);}
.premium-avatar-shadow[shadow_color="brown"] {box-shadow: 0 0 20px rgba(165, 42, 42, .36), 0 0 38px rgba(165, 42, 42, .18);}
.premium-avatar-shadow[shadow_color="black"] {box-shadow: 0 0 20px rgba(20, 25, 32, .34), 0 0 38px rgba(20, 25, 32, .18);}

.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: -5px;
}

.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: var(--gc-shadow);;
}

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

.cart_vs_element {
	box-shadow: var(--gc-shadow);;
    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;
		-webkit-box-shadow: var(--gc-shadow);
	       -moz-box-shadow: var(--gc-shadow);
				box-shadow: var(--gc-shadow);
}

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

.cart_userlist_title {
	text-align: center;
	background-color: var(--gc-color-primary);
	color: #fff;
	cursor: pointer;
	user-select: none; /* Disable text selection on click */
    position: relative; /* Display bottom shadow */
	-webkit-box-shadow: var(--gc-shadow);
	   -moz-box-shadow: var(--gc-shadow);
	        box-shadow: var(--gc-shadow);
}

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

.row_cart_userlist {
	align-items: center;
	gap: 6px;
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.row_cart_userlist:hover {
	background-color: var(--gc-color-surface-subtle) !important;
}

.cart_userlist_user {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
}

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

.cart_userlist_remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 50%;
	background: var(--gc-color-surface-subtle);
	color: var(--gc-color-text-muted);
	cursor: pointer;
	font-size: 19px;
	line-height: 1;
	margin-top: 0;
}

.cart_userlist_remove:hover,
.cart_userlist_remove:focus-visible {
	border-color: var(--gc-color-border);
	background: #fff;
	color: var(--gc-color-heading);
}

.cart_userlist_remove:focus-visible {
	outline: 1px solid var(--gc-color-border-strong);
}

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

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

.signup_steps_number[current] {
	background-color: var(--gc-color-primary);
	color: #FFF;
	width: 50%;
	padding: 8px;
}

.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: var(--gc-shadow); /* 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: var(--gc-color-primary);
    top: 0;
    padding: 8px;
    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: var(--gc-color-primary-hover);
	color: #fff;
}

#feature-freemium-responsive-fixed .container {
    padding: 0 0 10px 0;
    background-color: #FFF;
    box-shadow: var(--gc-shadow);
    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: 8px;*/
    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 {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--gc-color-primary);
    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 .freemium-max-link {
    display: inline-block;
    padding: 10px 0;
    color: #064184;
    background: transparent;
    text-decoration: none;
}

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

#feature-freemium-responsive-fixed .freemium-max-link:hover {
	text-decoration: underline;
}

@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: 30px; /* Increased padding */
}

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