@import url('font/font.css');

/* ============= General Page styles ============= */
html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--fontStyle), Helvetica, sans-serif;
	font-size: var(--fontSize);
	color: var(--contentFG);
	background-color: var(--rootBG);
	overflow-x: hidden;
	position: static !important;
}

menu{
	list-style: none;
    padding: 0;
    margin: 0;
}

p {
	text-align: justify;
	line-height: 155%;
	margin-block: 0.3em;
}

h2,
h3,
h4,
h5 {
	margin-bottom: 0.5em;
	color: var(--accentColor);
}

h3 {
	font-size: 1.4em;
}

h4,
h5 {
	font-size: 1.2em;
}

/* ============= Accessibility menu ============= */
#accessibility {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	width: auto;
	z-index: 90;
    font-size: 0.8em;
    top: 0;

    li {
		float: left;
		margin-right: 10px;

        a {
            opacity: 0;
			color: var(--headerFG);

            &:hover {
				text-decoration: none;
			}

            &:hover, &:focus {
				opacity: 1;
				color: var(--headerOver);
			}
        }
    }
} 

/* ============= header ============= */
#header {
	position: sticky;
	top: 0;
	padding: 0;
	margin: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;

	.inline {
		display: flex;
		background-color: var(--headerBG);

		.tplTitle {
			text-transform: uppercase;
			margin: 1px 0 0 0;
			height: 55px;
			overflow: hidden;
			flex: 0 0 auto;
			font-size: 2.5em;
			line-height: 55px;
			text-indent: 1em;

			a {
				color: var(--headerFG);
				text-decoration: none;

				&:hover {
					color: var(--headerOver);
				}
			}

			@media (max-width: 900px) {
				font-size: 2em;
				text-indent: 1.5em;
			}

			@media (max-width: 700px) {
				font-size: 1.5em;
				text-indent: 1em;
			}	
		}

		@media (max-width: 900px) {
			flex-direction: column;
		}

		@media (max-width: 1200px) {
			.multipleSections & {
				flex-direction: column;
			}
		}
	}

	button.menuBtn {
		display: none;
		border: none;
    	background-color: transparent;
		color:var(--headerFG);
		position: fixed;
		top:3px;
		right: 10px;
		cursor: pointer;

		&::before {
			content: "☰";
			font-size: 2.5em;
			font-weight: bold;
		}

		&:hover{
			color:var(--headerOver);
		}

		span{
			display: none;
		}

		@media (max-width: 700px) {
			display: block;
		}
	}
} 

/* NAVIGATION */
#navigation {
	flex: 1 1 auto;
	align-self: flex-end;

	ul {
		list-style-type: none;
		text-align: right;
		margin: 0;
		padding: 4px 2px 4px 6px;
		font-size: 110%;

		&.tileLinks li:first-child {
			display: none;
		}

		li {
			display: inline-block;
			padding: 8px 8px;
			font-size: 1.2em;
			margin-left: 7px;

			a.tileLink, .outBk_i {
				padding: 4px 5px;
				text-decoration: none;
				color: var(--headerFG);
				font-variant: small-caps;

				&:hover {
					color: var(--headerOver);
				}
			}

			&.currentTile a.tileLink {
				color: var(--headerOver);
			}

			img {
				vertical-align: middle;
				margin-right: 0.3em;
				max-height: 2em;
				width: auto;
			}
		}
	}

	@media (max-width: 700px) {
		display: none;
		align-self: flex-start;

		.menuOpen #header & {
			display: block;
		}

		ul {
			text-align: left;
			padding: .3em;

			li {
				display: block;
			}
		}
	}
}

.tt_fra.tile .tt_co{
	display:flex;
}
.tt_fra.tile .tileIcon{
	margin: 0 1em;

	img{
		max-width:64px;
		height:auto;
	}
}

#stack {
	color: var(--headerStackFG);
	padding: 0.5em 0.5em 0.5em 3em;
	display: flex;
	align-items: center;
	background-color:var(--headerStackBG);

	& > .sw_outStack_navRoot {
		flex: 2 1 auto;

		@media (max-width: 500px) {
			display: none;
		}
	}

	a {
		color: var(--headerStackFG);
		text-decoration: none;

		&:hover{
			color: var(--headerOver);
		}
	}

	span.page {
		font-style: italic;
	}
} 

/* Navigation */
.outNav {
	background: var(--contentBG);

	ul{
		display: flex;
		justify-content: flex-end;
		list-style-type: none;
		margin: 0;
		padding:.5em;
		gap: .5em;

		#btnNxt, #btnPrv {
			background-color: var(--accentColor);
			color: #ffffff;
			padding: 5px;
			text-decoration: none;
			display: block;

			&:hover{
				background-color: var(--accentColorLight);
			}

			& > span > span {
				display: none;
			}
		}

		#btnNxt > span::after {
			font-family:"fontello";
			content:'\203A';
			margin-left:5px;
		}
		#btnPrv > span::before {
			font-family:"fontello";
			content:'\2039';
			margin-right:5px;
		}

		span.outNav_i {
			visibility: hidden;
		}
	}
}

/* TILE BLOCKS */
.bkTileSet .pres {
	margin: 0.3em 0;
}
.bkTileSet .tiles {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;

	article.tile {
		display: flex;
		flex-direction: column;
		text-align: center;

		a.tileLink {
			flex: 2 1 auto;
			text-decoration: none;
			color:var(--tileFG);
			padding: 1em;
			border: var(--tileBorderWidth) solid var(--tileBorderColor);
			border-radius: var(--tileRadius);
			background-color: var(--tileBG);

			&:hover{
				box-shadow: 0 0 5px var(--tileBorderColor);
				border-width: calc(var(--tileBorderWidth) / 2);
				padding: calc(1em + var(--tileBorderWidth) / 2);
				transition: border-width .2s, padding .2s;
			}

			.tileTitle {
				color:var(--tileTitleColor);
				margin: 0.5em 0;
			}
		}
	}

	@media (max-width: 900px) {
		grid-template-columns: 1fr 1fr;
	}

	@media (max-width: 500px) {
		grid-template-columns: 1fr;
	}
}

/* FOOTER */
footer {
	border-top: var(--borderWidth) solid var(--borderColor);
	background-color: var(--rootBG);

	img {
		vertical-align: middle;
	}

	#extras {
		width: 100%;
		min-height: 180px;
		padding-top: 20px;
		display: flex;
		justify-content: center;
		position: relative;

		.permMargin {
			display: flex;
			flex-flow: wrap;
			justify-content: center;

			div.margin {
				margin: 0 40px;
				padding: 5px;
				width: 250px;
				min-height: 160px;

				.margin_ti {
					text-align: center;
					font-size: 110%;
					margin: 0;
					font-weight: bold;
					margin-bottom: 0.5em;
				}

				.margin_co {
					font-size: 90%;
					overflow: auto;

					p {
						text-align: left;
					}
				}
			}
		}
	}

	.tplFootBanner {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap:5px;
        padding: .5em;
        color: var(--titleColor);
        font-size: 0.8em;
        cursor: default;

        span.copyright {
            order: 1;
            flex: 2 1 auto;
        }

        a.legalLnk {
            order: 2;
        }

        a.cookieWarnBtnBar {
            order: 3;
        }

        a.generatorLink {
            order: 4;
        }
    }
}

/* Event lists */
.margin .evtList {
	padding-right: 1px;
}

.evtListEvt {
	list-style-image: url("img/co/evt.svg");
}

.evtListDesc {
	list-style-type: square;
}

.event_closed, .event_open {
	&::before {
		font-family: "fontello";
		border: 1px solid var(--tileBorderColor);
		border-radius: var(--tileRadius);
		width: 12px;
		line-height: 12px;
		display: inline-block;
		text-align: center;
		margin-right: 0.5em;
	}

	&:hover{
        text-decoration: none;
        color: var(--accentColorLight);
    }
}
.event_closed::before {
    content: "\002B";
}
.event_open::before{
    content: "\2212";
}

.event {
    margin-bottom: 5px;

    .anchor {
        visibility: hidden;
        text-decoration: none;
        color: silver;
        font-size: .95em;
        margin-left: 0.2em;
    }

    .event_ti {
        font-weight: normal;
        margin: 0;
		font-size: 1em;
    }

    .event_co {
        margin-bottom: 10px;
        padding: 5px 10px;
		border: 1px solid var(--borderColor);

		&:empty {
			display: none;
		}
    }
}

/* CONTENT */
#content {
	background-color: transparent;
	width: 100%;
	overflow: hidden;
}

.bkBase_ti,
.seqCap_ti {
	text-align: center;
}

.bkBase:is(.bkInfo, .bkExtra, .bkCptTree, .bkGallery, .bkEvtList, .bkLegal, .bkPrivacy, .bkTyped, .bkTileSet),
.bkBase.bkSec > .bkBase_ti{
    background-color: var(--contentBG);
}

.bkBase:is(.bkInfo, .bkEmphasis, .bkExtra, .bkCptTree, .bkGallery, .bkEvtList, .bkLegal, .bkPrivacy, .bkTyped, .bkTileSet) > *,
.bkBase:is(.bkPage, .bkSec) > .bkBase_ti span {
    margin-inline: auto;
    max-width: var(--maxWidth);
}

.bkBase.bkPage > .bkBase_ti {
	background-color: rgba(255, 255, 255, 0.7);
	font-size: 3em;
	color:var(--titleColor);

	@media (max-width: 900px) {
		font-size: 2em;
	}

	@media (max-width: 700px) {
		padding: 0.5em 0;
	}	
}

.bkBase_ti>span {
	display: block;
}

.bkBase:is(.bkInfo, .bkEmphasis, .bkExtra, .bkCptTree, .bkGallery, .bkEvtList, .bkLegal, .bkPrivacy, .bkTyped, .bkTileSet) > .bkBase_co {
	padding: 0.5em 1em;
}

.bkBase_ti {
	margin-block: 0;
	padding: 1em;
}

.bkSec>h3.bkBase_ti {
	font-size: 1.8em;
}

/* bkTyped */
.bkBase.bkTyped {
    padding: 1.5em 0;
}

.bkTyped .bkBase_ti {
    position: relative;
	padding: 1em 8em;
    box-sizing: border-box;
}

.bkTyped .bkBase_ti:has(>a.bkBase_closed) {
    margin-bottom:0;
}

.bkBase.bkTyped i.type{
	box-shadow: 0 0 5px #ccc;
    background-color: var(--rootBG);
    box-shadow: 0 0 5px #ccc;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2em .5em;
    font-size: .8em;
    margin-right: .5em;
	vertical-align: sub;

	.icon {
		height: 32px;
	}
}

.bkEmphasis {
	background-color: var(--emphasisBG);
	padding: 1.5em 0;
}



/* VOIR + OU - */
#content .bkBase_open,
#content .bkBase_closed {
	color: var(--contentFG);
	padding-bottom: 60px;
	position: relative;
	text-decoration: none;
	display: block;

	&::before {
		font-family: "fontello";
		background-color: var(--contentFG);
		color: var(--contentBG);
		font-weight: normal;
		border-radius: 50%;
		height: 46px;
		width: 46px;
		position: absolute;
		line-height: 46px;
		font-size: 1.8em;
		bottom: 0;
		left: 50%;
		margin-left: -23px;
	}

	&:hover::before{
		opacity: .8;
	}
}

#content .bkBase_co.collBlk_open {
	border: var(--extraBorderWidth) solid var(--extraBorderColor);
	margin-top: -42px;
	padding: 30px 15px 15px;
	background-color: var(--extraBG);
	border-radius: var(--extraRadius);
	box-sizing: border-box;
}

#content .bkBase_open::before {
    content: "\2212";
}

#content .bkBase_closed::before {
	content:"\002b";
}

/* ---------- Options ---------- */
.optContent {
	background-color: #fff;
	padding: 30px 15px;
}

/* ---------- search, optSearch ---------- */
input.searchSubmit,
input.schBtnLaunch {
	border: 2px solid var(--headerStackBG);
	background-color: transparent;
}
/* ---------- text ---------- */
a {
    text-decoration: none;
    color: var(--accentColor);

    &:hover{
        text-decoration: underline;
        color: var(--accentColor);
    }
}

ul,
ol {
    margin: 5px 0 0 0;
    padding: 0 0 0 20px;
    list-style-position: outside;
}

q::before,
q::after {
    content: "";
}

.hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	visibility: hidden;
	top: -10000px;
	left: -10000px;
}

*:hover>.anchor, .anchor:focus {
    visibility: visible;
}

.txt_emphasis_is,
.txt_quote_ph,
.txt_special_ph {
    color: var(--accentColor);
}

/* CONTENT */
.binCap, .webCap {
    text-align: center;
    margin: 10px;
}

.animFra .binCap {
	margin: 0;
}

.binCap_ti, .webCap_ti, .capTi {
    color: #737373;
    font-style: italic;
}

div.margin_co .binCap,
div.margin_co .webCap {
    margin: 2px 0 3px 0;
}

.binImg, .binImgInline, .remoteImage {
	max-width: 100% !important;
	height: auto;
}
.binImgInline {
    vertical-align: middle;
}

.binNet, .binWeb {
    max-width: 100%;
}

/* info tt anc */
.txt_def_act,
.txt_doc_act,
.txt_ref_act {
    color: #ffffff;
    background-color: var(--accentColorLight);
}

/* External links */
.txt_url_ul::after,
li.outMnu_typ_ext .outMnu_i::after,
li.outCat_typ_ext .outCat_i span::after,
div.docUrl a::after {
    content: "\2BAB";
    font-family: "fontello";
    margin-left: 0.5em;
}

/* ---------- binary files lnks ---------- */
.infoVideo,
.infoAudio {
    font-style: italic;
    color: #777777;

    p {
        text-align: center;
    }
}

.lnkBin::before {
    content:"";
    display: inline-block;
    height: 16px;
    width: 14px;
    border-left: 2px solid var(--accentColor);
    background: var(--borderColor) url(img/co/types.svg) no-repeat center center;
    margin-inline-end: 2px;
}

.lnkBinWeb::before {
    content: none;
}

.lnkBinMp3::before {
    background-position: 0 -16px;
}

.lnkBinOdg::before {
    background-position: 0 -32px;
}

.lnkBinOdp::before {
    background-position: 0 -48px;
}

.lnkBinOds::before {
    background-position: 0 -64px;
}

.lnkBinOdt::before {
    background-position: 0 -80px;
}

.lnkBinPdf::before {
    background-position: 0 -96px;
}

.lnkBinPpt::before {
    background-position: 0 -112px;
}

.lnkBinRtf::before,
.lnkBinDoc::before {
    background-position: 0 -144px;
}

.lnkBinXls::before{
    background-position: 0 -176px;
}

.lnkBinZip::before {
    background-position: 0 -192px;
}

/* ============= Cookie warn bar ============= */
.cookieWarnBar {
    position: fixed;
    border-top: 2px solid var(--borderColor);
    box-shadow: 0 0 5px var(--borderColor);
    background-color: var(--contentBG);
    opacity: 1;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;

    &.acknowledged {
        display: none;
    }

    .cookieWarnContent {
        display: flex;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 6px 10px;
        box-sizing: border-box;

        .cookieWarnMsg {
            flex: 1 1 auto;
        }

        & > a {
            display: inline-block;
            background: var(--accentColor);
            color: #fff;
            padding: 0.1em 0.3em;
            margin: 0 0.3em;

            &:hover {
                background-color: var(--accentColorLight);
                text-decoration: none;
            }
        }
    }
}

/* ============= Table ============= */
table {
  border-collapse: collapse;

  &.layout_tb {
    width: 100%;
	}

  &.txt_tb {
    margin: auto;
    border: 2px solid var(--accentColor);
    background-color: var(--contentBG);

    caption {
        color: #737373;
        font-style: italic;
    }

    .txt_t_tbcl,
    .txt_t_tbtr {
        background-color: var(--emphasisBG);
    }

    td, th {
        border: 1px solid var(--accentColor);
        padding-inline:2px;
    }

    thead {
        border-bottom: 2px solid var(--accentColor);
    }

    tfoot {
        border-top: 2px solid var(--accentColor);
    }

    .txt_n_tbtd p {
        text-align: right;
    }

    .txt_w_tbtd p {
        text-align: center;
    }

    p {
        margin-bottom: 2px;
    }
	}

  &.docHead th {
    padding-right: 5px;
    text-align: right;
	}
}

@media (max-width: 650px){
	table[data-responsive],
	table[data-responsive] tbody{
		display:block;
	}
	table[data-responsive] tr{
		display:flex;
		flex-direction: column;
	}
}

/* ---------- tooltips ---------- */
.tt_act {
    font-weight: bold !important;

    &:hover {
        text-decoration: none;
        cursor: default;
    }
}

a.tt_a.info {
    font-weight: bold;
    font-style: normal;
    background: var(--accentColor);
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-left: 0.3rem;

    &:hover {
        text-decoration: none;
        background-color: var(--accentColorLight);
    }

    &::before {
        content: "i";
    }

    span {
        display: none;
    }
}

div.tt {
    font-size: 0.9em;
    border: 1px solid var(--accentColor);
    background-color: white;

    .tt_ti {
        background-color: var(--accentColorLight);
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 2px 15px 2px 2px;

        &.ttEvt_ti {
            display: none;
        }
    }

    .tt_co {
        padding: 5px;

        &.ttEvt_co {
            padding: 0 18px 0;
        }

        p {
            margin: 0 0 2px 0;
            text-align: left;
        }
    }

    .tt_x {
        display: block;
        width: 14px;
        height: 14px;
        position: absolute;
        top: 3px;
        right: 3px;
        font-family: "fontello";
        background-color: #fff;
        text-align: center;
        line-height: 13px;
        border-radius: 50%;
        font-size: .9em;

        &:hover {
            opacity: .8;
            text-decoration: none;
        }
    }
}

/* ---------- footnotes ---------- */
ol.footNotes {
    margin: 10px;
    font-size: 0.8em;
    padding-top: 5px;
    padding-left: 20px;

    *:target {
        background-color: #eeecdd;
    }

    li.footNotes_it {
        margin-bottom: 10px;
        padding: 2px;

        div.footNotes_itti {
            font-weight: bold;
        }
    }

    .tt_x {
        display: none;
    }
}
/* ILLUS */
ul#accessibility li.tplWaiStopVideoIllustration a{
	width:30px;
	height: 30px;
	display: block;
	background-color: rgba(0, 0, 0, 0.6);
	color:#fff;
	position:absolute;
	right: 1em;
    top: 95px;
	opacity: 1;
	text-align: center;
	font-size:2em;
	line-height:30px;
	border-radius: 50%;

	a::before{
		font-family: 'fontello';
		content: "\23F8";
	}

	a.paused::before{
		font-family: 'fontello';
		content:"\23F5";	
	}

	a span{
		position:absolute;
		left:-9999px;
	}
}

/* ILLUS HOME	*/
.illus {
	position: fixed;
	z-index: -1;
	overflow: hidden;
	width: 100%;

	img, video {
		height: auto;
		width: 100%;
		position: absolute;
		top: 50%;
		transform: translate(0px, -50%);
	}
} 

/* ---------- Slider ---------- */
.sliderFra {
	height: 440px;
	overflow: hidden;
}

.hasSlider #content {
	min-height: 550px;
}

.sliderFra img {
	transition: left 1s ease-out;
}

.isResized.sliderFra>img {
	transition: none;
}

.sliderLoading .sliderFra>img {
	display: none;
}

.sliderLoading .sliderFra:before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("img/co/loader.svg");
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.scImgSliderTimer {
	position: absolute;
	width: 2.5em;
	height: 2.5em;
	bottom: 0.5em;
	right: 0.5em;

	.scImgSliderTimerProgressBar {
		position: absolute;
		z-index: 2;

		svg.scImgSliderTimerProgressBarSvg {
			stroke: #ffffff;
			stroke-linecap: round;
			fill: none;
			stroke-width: 12;
			width: 2.5em;
			height: 2.5em;
			transform: rotate(-90deg);
		}
	}
}

.scImgSliderBtnPause,
.scImgSliderBtnPlay {
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
	font-family: "fontello";
	color: #ffffff;
	z-index: 3;
	height: 2.5em;
	width: 2.5em;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	display: flex;

	&:hover{
		text-decoration: none;
	}

	span {
		display: none;
	}
}

a.scImgSliderBtnPause:before {
	content: "\23F8";
}

a.scImgSliderBtnPlay:before {
	content: "\23F5";
	margin-left: 3px;
}

a.scImgSliderBtnPrv,
a.scImgSliderBtnNxt {
	font-size: 2em;
	position: absolute;
	font-family: "fontello";
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	background: rgba(0, 0, 0, 0.3);
	top: 0;
	height: 100%;
	width: 30px;
	z-index: 2;
	visibility: hidden;

	&:hover{
		background: rgba(0, 0, 0, 0.6);
	}

	span {
		display: none;
	}
}

.sliderFra:hover a.scImgSliderBtnPrv, .sliderFra:hover a.scImgSliderBtnNxt{
	visibility: visible;
}

a.scImgSliderBtnPrv {
	left: 0;

	&::before {
		content: "\2039";
		margin-right: 2px;
	}
}

a.scImgSliderBtnNxt {
	right: 0;

	&::before {
		content: "\203A";
		margin-left: 4px;
	}
}

@media (max-width: 700px) {
    .illus img,
	.illus video {
		display: block;
		position: relative;
		width: 700px;
		left: 50%;
		margin-left: -350px;
	}
}
/* ---------- SCIMG ---------- */
.imgLoading .scImgGalCvs::before,
.imgLoading .scImgZmCvs::before,
.imgLoading .scImgSeqCvs::before{
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("img/co/loader.svg");
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 2001;
    width: 100%;
    height: 100%;
}

div.scImgGalCvs,
div.scImgZmCvs,
div.scImgSeqCvs  {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2001;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

div.scImgGalOver,
div.scImgZmOver,
div.scImgSeqOver {
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls {
    position: fixed;
    font-family: "fontello";
    color: #ffffff;
    top: 5px;
    right: 5px;
    font-size: 2em;

    &::before {
        content: "\2716";
    }

    &:hover{
      text-decoration:none;
      opacity:.8;
    }

    span{
        display: none;
    }

    .isMobile_true &{
      top: 10px;
    }
}

.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
    position: absolute;
}

/* ---------- gallery ---------- */
.imgLoading .scImgGalFra {
    display: none;
}

.galFra,
.galMiniFra {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.galMiniFra {
    justify-content: start;
}

.galFra img {
    padding: 5px;
}

.galMiniFra img {
    height: 80px;
    width: auto;
}

.imgPvCap {
    text-align: center;
    margin-top: -5px;
}

.scImgSep {
    display: none;
}

a.galPvLnk:hover {
    opacity: 0.8;
}

.scImgGalCo {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 0;

    .scImgGalImgFra {
        background-color: var(--contentBG);
        padding: 5px;
        padding-bottom: 30px;
        overflow: hidden;
    }
}

.scImgGalTbr {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    div.scImgGalTi {
        font-style: italic;
        color: gray;
        cursor: default;
        font-size: 12px;
        position: absolute;
        bottom: 5px;
        left: 5px;
    }

    .scImgGalBtns{

        a {          
            font-family: "fontello";
            
            &:hover {
                text-decoration: none;
            }

            span {
                display: none;
            }

            &.scImgGalBtnPly,
            &.scImgGalBtnPse {
                position: absolute;
                font-size: 1.5em;
                color: gray;
                bottom: 2px;
                right: 0;
                width: 30px;

                &:hover{
                  opacity:.8;
                }
            }
            &.scImgGalBtnPse:before {
                content: "\23F8";
            }
            &.scImgGalBtnPly:before {
                content: "\23F5";
            }
            &.scImgGalBtnPrv,
            &.scImgGalBtnNxt {
                font-size: 4em;
                position: fixed;
                width: 1em;
                top:60px;
                bottom:60px;
                display: flex;
                color: #ffffff;
                justify-content: center;
                align-items: center;

                &:hover{
                  opacity:.8;
                }
            }

            &.scImgGalBtnNoPrv {
                display: none;
            }

            &.scImgGalBtnPrv {
                left: 5px;

                &::before {
                    content: "\2039";
                }
            }

            &.scImgGalBtnNxt {
                right: 5px;

                &::before {
                    content: "\203A";
                }
            }
        }
    }

    .scImgGalCount {
        position: absolute;
        bottom: 5px;
        right: 35px;
        font-style: italic;
        color: gray;
        cursor: default;
    }
}

.isMobile_true a.scImgGalBtnPrv,
.isMobile_true a.scImgGalBtnNxt {
    position: absolute !important;
}

.noScroll {
    overflow: hidden;
}

/* ---------- sequence ---------- */
.scImgSeqMag {
    box-shadow: 0 0 5px 0 #000000;
    cursor: crosshair;
}

.seqFra,
.seqFraMini {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.scImgSeqToolsOver {
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    padding:3px;

    a {
        font-family: "fontello";
        width: 30px;
        text-align: center;
        color: #666;
        font-size: 1.7em;

        &:hover{
            text-decoration: none;
            opacity:.8;
        }

        span{
            display: none;
        }

        &.scImgSeqBtnPrv::before {
            content: "\2039";
        }

        &.scImgSeqBtnNxt::before {
            content: "\203A";
        }

        &.scImgSeqBtnPlay:before {
            content: "\23F5";
        }

        &.scImgSeqBtnPause:before {
            content: "\23F8";
        }
    }
} 

.seqFra .galPv {
    margin-top: 0.3em;
    visibility: hidden;
}

.seqFraMini .galPv {
    visibility: hidden;
}

.seqFraMini img {
    width: 180px;
    height: auto;
}

/* ---------- zoom ---------- */
div.scImgZmFra {
    background-color: var(--contentBG);
    padding: 5px;
}
/* ---------- search, optSearch ---------- */
input.searchText,
input.schInput {
  border: 2px solid var(--accentColor);
  box-shadow: inset 0 0 3px #bbb;
  background-color: var(--contentBG);
  font-size: 0.9em;
  width: 95px;
  height: 20px;
  padding-left: 5px;
}

.schLabel {
    position: absolute;
    left: -9999px;
}

form.schForm,
#optSearchForm{
    display: flex;
    align-items: center;
}

input.searchSubmit,
input.schBtnLaunch{
  background-image: url("img/co/search.svg");
  background-repeat:no-repeat;
  width: 27px;
  height: 26px;
  color: transparent;
	cursor: pointer;
  box-sizing: border-box;

  &:hover{
    background-position:0 -23px;
  }

  span {
      display: none;
  }
}

div.schNoRes {
    text-align: center;
    font-size: 1.063em;
    margin-top: 18px;
}

.schPgeBk span.schPgeRank::before{
  font-family: "fontello";
  font-size: 1.3em;
  color: #ffdb58;
  text-shadow: 0 0 1px #333;
  display: inline-block;
}

.schPgeBk span.schPgeRank > span {
  display: none;
}

.schPgeRank_1 span.schPgeRank::before {
   content:"\2606";
}
.schPgeRank_2 span.schPgeRank::before {
  content:"\2606" " " "\2606";
}
.schPgeRank_3 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606";
}
.schPgeRank_4 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606" " ""\2606";
}
.schPgeRank_5 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606";
}
.schPgeRank_6 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606";
}
.schPgeRank_7 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606";
}
.schPgeRank_8 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606";
}
.schPgeRank_9 span.schPgeRank::before {
  content:"\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606" " ""\2606";
}

div.schPropose a:hover {
    text-decoration: none;
}

.schPropose {
    position: absolute;
    width: 102px;
    border: 1px solid var(--accentColor);
    border-top: 0;
    background-color: white;
    z-index: 100;
    font-size: 0.9em;
}

.schBtnPropose {
    display: block;
    text-decoration: none;
    font-style: italic;
    padding: 2px 3px;
    margin: 1px;
}

.schBtnPropose:hover,
.schBtnPropose:active,
.schBtnPropose:focus {
    outline: none;
    text-decoration: none;
    background-color: var(--rootBG);
}

.schProposeExceeded {
    display: block;
    color: var(--accentColorLight);
    font-style: italic;
    padding: 2px 3px;
}

div.schProp_no {
    display: none;
}

.schCmds_act input.schInput {
    border: 2px solid var(--accentColor);
}

.schResFrame {
    position: fixed;
    left: 50%;
    bottom: -80px;
    width: 700px;
    margin-left: -350px;
    color: var(--accentColor);
    background-color: var(--rootBG);
    border-right: 1px solid var(--accentColor);
    border-top: 1px solid var(--accentColor);
    border-left: 1px solid var(--accentColor);
    height: 50px;
    transition: all 0.4s ease-out;
    z-index: 91;
}

.schDisplay_on .schResFrame {
    bottom: 0;
}

.schDisplayList_on .schResFrame {
    height: 530px;
}

.schResList {
    position: absolute;
    bottom: 5px;
    left: 5px;
    top: 5px;
    right: 5px;
    display: none;
}

.schDisplayList_on .schResList {
    display: block;
}

.schResListSrl {
    position: absolute;
    left: 0;
    right: 0;
    overflow: auto;
    padding: 5px;
}

.schBtnTgle {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  left: 6px;
  font-size: 2.5em;
  text-align: center;
}

.schBtnTgle:hover {
  text-decoration: none;
}

.schBtnTgle::before{
  content:"\F102";
  font-family:"fontello";
}

.schDisplayList_on .schBtnTgle::before {
  content:"\F103";
}

.schBtnTgle span {
    display: none;
}

.schBtnReset {
  background-color: var(--accentColor);
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fff;
}

.schBtnReset::before{
  content:"\2716";
  font-family:"fontello";
}

.schBtnReset:hover {
  background-color: var(--rootBG);
  text-decoration: none;
}

.schBtnReset span {
    display: none;
}

.schHitBox,
.schResBox,
.schPageBox {
  margin: 4px 6px 0 40px;
  font-size: 0.875em;
  line-height: 16px;
}

.schHitBox,
.schPageBox{
  position: absolute;
  left: 0;
  right: 0;
  display:flex;
  align-items:center;
  gap: .5em;
}

.schHitBox {
	bottom: 27px; 
}

.schPageBox {
  bottom: 6px;
}

.schHitLbl,
.schResLbl{
  order:1;
  flex: 2 1 auto;
}

.schResCnt,
.schHitCnt {
  order:3;
  display: inline-block;
  min-width: 40px;
  text-align: center;
}

.schDisplay_none .schResCnt,
.schDisplay_one .schResCnt {
    display: none;
}

.schHitCnt::before{
  content:"abc ";
  font-style: italic;
  font-size: .9rem;
  color: var(--accentColorLight);
}

.schResCnt::before{
  content:"\1F5CB";
  font-family:"fontello";
  margin-right: .5em;
  color: var(--accentColorLight);
}

.schDisplay_none .schResBox {
  text-align: center;
  margin: 20px 200px 6px 200px;
}

.schDisplay_none .schHitBox {
    display: none;
}

.schBtnNxt,
.schBtnPrv,
.schBtnPrvHit,
.schBtnNxtHit {
  flex: 0 0 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 1.3rem;
}

.schBtnPrv, 
.schBtnPrvHit{
  order:2;
}

.schBtnNxt,
.schBtnNxtHit{
  order:4;
}

.schBtnNxt:hover,
.schBtnPrv:hover,
.schBtnPrvHit:hover,
.schBtnNxtHit:hover {
  text-decoration:none;
}

.schBtnNxt::before,
.schBtnPrv::before,
.schBtnPrvHit::before,
.schBtnNxtHit::before{
  font-family:"fontello";
}

.schBtnAct_no,
.schBtnHitAct_no {
    visibility: hidden;
}

.schBtnNxt span,
.schBtnPrv span,
.schBtnPrvHit span,
.schBtnNxtHit span {
    display: none;
}

.schDisplay_none .schBtnNxt,
.schDisplay_none .schBtnPrv,
.schDisplay_none .schBtnPrvHit,
.schDisplay_none .schBtnNxtHit {
    display: none;
}

.schDisplay_one .schBtnNxt,
.schDisplay_one .schBtnPrv {
    display: none;
}

.schBtnNxt::before, .schBtnNxtHit::before {
  content:"\E800";
}

.schBtnPrv::before, .schBtnPrvHit::before {
  content:"\E802";
}

.schHitFrame {
    position: absolute;
    bottom: 8px;
    right: 40px;
    left: 40px;
    height: 20px;
    font-size: 1.2em;
}


.searchResults a.schPgeBtn,
.searchResults a.mnu_lnk {
  margin: 2px;
  display: flex;
  justify-content:space-between;
  color: var(--accentColor);
}

li.mnu_sel_yes .schPgeBtn,
div.mnu_sel_yes .mnu_lnk {
    font-weight: bold;
    text-decoration: underline;
    cursor: default;
}

div.mnu_sch_no a.mnu_lnk {
    color: var(--accentColor);
    cursor: default;
}

div.mnu_sch_no a.mnu_lnk:hover {
    text-decoration: none;
}

.searchResults a.mnu_tgle_o,
.searchResults a.mnu_tgle_c {
    position: absolute;
    left: -22px;
    top: 0;
    width: 7px;
    height: 7px;
    font-family: "fontello";
    font-size: 1rem;
}

.searchResults a.mnu_tgle_o:hover,
.searchResults a.mnu_tgle_c:hover{
    text-decoration: none;
}

.searchResults a.mnu_tgle_o span,
.searchResults a.mnu_tgle_c span {
    display: none;
}

.searchResults div.mnu_sch_yes a.mnu_tgle_c::before {
    content:"\25B8";
}

.searchResults div.mnu_sch_yes a.mnu_tgle_o::before {
    content:"\25BE";
}

.schResListSrl ul.mnu_root {
    padding: 0 0 0 20px;
}

.schResListSrl li.mnu_b {
    list-style-type: none;
    margin: 0;
}

.schResListSrl li.mnu_b div {
    position: relative;
}

.schResListSrl ul {
    color: var(--accentColor);
    margin: 0;
    list-style: disc;
    padding-left: 13px;
    list-style-position: outside;
}

.schResListSrl ul.schParentList {
    list-style-type: none;
}

.schResListSrl ul.schParentList_c {
    display: none;
}

.schResListSrl ul.schParentList_o {
    display: block;
}

li.schPgeBk {
    position: relative;
}

a.schParent_tgle_c,
a.schParent_tgle_o {
    position: absolute;
    margin-left: -16px;
    top: 2px;
    width: 7px;
    height: 7px;
    display: inline-block;
    font-family: "fontello";
    font-size: 1rem;
}

a.schParent_tgle_c span,
a.schParent_tgle_o span {
    display: none;
}

a.schParent_tgle_c::before {
    content:"\25B8";
}

a.schParent_tgle_o::before {
    content:"\25BE";
}

.schParent_tgle_c:hover,
.schParent_tgle_o:hover {
    text-decoration: none;
    color: var(--accentColor);
}

.schPgeBtn:hover,
.mnu_lnk:hover {
    color: var(--accentColorLight);
}

.schHit {
    background-color: #ffde07;
    border-radius: 3px;
    padding:1px 2px;
}

.schHit_current {
    background-color: #ffde07;
    box-shadow:0 0 5px #000;
    border-radius: 3px;
    padding:1px 2px;
}

.schTerm {
    font-weight: bold;
}

.schTerm em {
    font-weight: normal;
}

.schDisplay_on #menu ul.mnu_root .mnu_sch_no>a:hover {
    text-decoration: none;
}

.schDisplay_on #menu ul.mnu_root .mnu_sch_no>a.mnu_lnk {
    color: var(--accentColor);
    cursor: default;
}

.tplSchBox {
    position: relative;
    z-index: 2;
}
/* === ConceptTree ========================================================== */
.treeRoot>.nodeRoot>.nodeLblFra {
    border-left: 0;
}

.treeRoot>.nodeRoot>.nodeLblFra>.nodeLbl {
    border-width: 2px;
}

.treeRoot>.nodeChildren_hide>.nodeLblFra>.nodeLbl {
    border-bottom-width: 5px;
}

.treeRoot>.nodeRoot>.nodeLblFra>.nodeLbl div.nodeTi {
    font-size: 1.1em;
}

.nodeChild {
    padding-left: 10px;
}

.nodeChild_pre {
    border-left: 2px solid silver;
}

.nodeLbl,
.nodeRef {
    border: 1px solid gray;
    padding: 5px 8px;
    display: inline-block;
    margin-top: 5px;
    background-color: white;
    max-width: 300px;
}

.nodeChildren_hide>div>.nodeLbl {
    background-position: bottom left;
    background-repeat: repeat-x;
    background-image: url(img/tree/nodeChiHideBk.png);
}

.nodeLblCo {
    padding-left: 20px;
    background-position: center left;
    background-repeat: no-repeat;
}

.nodeRef {
    border-color: silver;
}

.nodeDesc {
    font-size: 0.8em;
    color: #737373;
}

.nodeChildren {
    padding-left: 5px;
}

div.nodeChildren_hide>div.nodeChildren {
    opacity: 0;
    height: 0 !important;
    transition-property: opacity, display;
    transition-duration: 0.1s;
}

div.nodeChildren_show>.nodeChildren {
    opacity: 1;
    height: auto;
    transition-property: opacity, display;
    transition-duration: 1.5s;
}

.nodeLead {
    display: inline-block;
    height: 18px;
    border-left: 2px solid silver;
    border-bottom: 2px solid silver;
    border-bottom-left-radius: 10px;
    vertical-align: top;
}

.nodeLeadSpacer {
    display: inline-block;
    width: 12px;
    height: 18px;
}

.nodeRoot {
    display: inline-block;
}

.nodeLblFra,
.nodeRefFra {
    display: inline-block;
}

.nodeChildren_1 .nodeLbl {
    min-width: 60px;
}

.nodeChildren_2 .nodeLbl {
    min-width: 120px;
}

.nodeChildren_3 .nodeLbl {
    min-width: 180px;
}

.nodeChildren_4 .nodeLbl {
    min-width: 240px;
}

.nodeChildren_5 .nodeLbl {
    min-width: 300px;
}

.nodeChildren_6 .nodeLbl {
    min-width: 360px;
}

.nodeChildren_7 .nodeLbl {
    min-width: 420px;
}

.nodeChildren_8 .nodeLbl {
    min-width: 480px;
}

.nodeChildren_9 .nodeLbl {
    min-width: 540px;
}

.nodeIco {
    float: left;
    margin-right: 3px;
}

div.nodeTi {
    line-height: 16px;
    font-weight: bold;
    word-wrap: break-word;
}

span.nodeTi,
a.nodeTi {
    color: #464646;
}

.nodeChildren span.nodeTi,
.nodeChildren a.nodeTi {
    color: #525252;
}

.nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren a.nodeTi {
    color: #5e5e5e;
}

.nodeChildren .nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren .nodeChildren a.nodeTi {
    color: #6b6b6b;
}

.nodeChildren .nodeChildren .nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren .nodeChildren .nodeChildren a.nodeTi {
    color: #787878;
}

.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren a.nodeTi {
    color: #858585;
}

.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren a.nodeTi {
    color: #919191;
}

.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren a.nodeTi {
    color: #9e9e9e;
}

.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren span.nodeTi,
.nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren .nodeChildren a.nodeTi {
    color: #ababab;
}

div.nodeChildren_hide>div.nodeChildren>.nodeChild {
    display: none;
}

a.nodeMoreDesc_a {
    display: inline-block;
    background: url('img/co/search.svg') no-repeat 0 -16px / 16px auto;
    width: 16px;
    height: 16px;
    vertical-align: bottom;
    margin-left: 5px;
    border: 0;

    &:hover {
        opacity: .8;
        border: 0;
    }

    span {
        display: none;
    }
} 

/* Node types */
.nodeType_normal .nodeLblCo {
    padding-left: 0;
}

.nodeType_back .nodeLblCo {
    background-image: url(img/tree/back.png);
}

.nodeType_date .nodeLblCo {
    background-image: url(img/tree/date.png);
}

.nodeType_down .nodeLblCo {
    background-image: url(img/tree/down.png);
}

.nodeType_flag .nodeLblCo {
    background-image: url(img/tree/flag.png);
}

.nodeType_forbn .nodeLblCo {
    background-image: url(img/tree/forbn.png);
}

.nodeType_forward .nodeLblCo {
    background-image: url(img/tree/forward.png);
}

.nodeType_home .nodeLblCo {
    background-image: url(img/tree/home.png);
}

.nodeType_idea .nodeLblCo {
    background-image: url(img/tree/idea.png);
}

.nodeType_imp .nodeLblCo {
    background-image: url(img/tree/imp.png);
}

.nodeType_imp {
    border: 1px solid var(--accentColor);
}

.nodeChildren_hide>div>.nodeType_imp {
    background-image: url(img/tree/nodeChiHideBkImp.png);
}

.nodeType_info .nodeLblCo {
    background-image: url(img/tree/info.png);
}

.nodeType_key .nodeLblCo {
    background-image: url(img/tree/key.png);
}

.nodeType_nok .nodeLblCo {
    background-image: url(img/tree/nok.png);
}

.nodeType_ok .nodeLblCo {
    background-image: url(img/tree/ok.png);
}

.nodeType_pers-female .nodeLblCo {
    background-image: url(img/tree/pers-female.png);
}

.nodeType_pers-group .nodeLblCo {
    background-image: url(img/tree/pers-group.png);
}

.nodeType_pers-male .nodeLblCo {
    background-image: url(img/tree/pers-male.png);
}

.nodeType_quest .nodeLblCo {
    background-image: url(img/tree/quest.png);
}

.nodeType_sm-happy .nodeLblCo {
    background-image: url(img/tree/sm-happy.png);
}

.nodeType_sm-sad .nodeLblCo {
    background-image: url(img/tree/sm-sad.png);
}

.nodeType_star .nodeLblCo {
    background-image: url(img/tree/star.png);
}

.nodeType_stop .nodeLblCo {
    background-image: url(img/tree/stop.png);
}

.nodeType_up .nodeLblCo {
    background-image: url(img/tree/up.png);
}

.nodeType_wait .nodeLblCo {
    background-image: url(img/tree/wait.png);
}

.nodeType_0 .nodeLblCo {
    background-image: url(img/tree/0.png);
}

.nodeType_1 .nodeLblCo {
    background-image: url(img/tree/1.png);
}

.nodeType_2 .nodeLblCo {
    background-image: url(img/tree/2.png);
}

.nodeType_3 .nodeLblCo {
    background-image: url(img/tree/3.png);
}

.nodeType_4 .nodeLblCo {
    background-image: url(img/tree/4.png);
}

.nodeType_5 .nodeLblCo {
    background-image: url(img/tree/5.png);
}

.nodeType_6 .nodeLblCo {
    background-image: url(img/tree/6.png);
}

.nodeType_7 .nodeLblCo {
    background-image: url(img/tree/7.png);
}

.nodeType_8 .nodeLblCo {
    background-image: url(img/tree/8.png);
}

.nodeType_9 .nodeLblCo {
    background-image: url(img/tree/9.png);
}

.nodeType_add .nodeLblCo {
    background-image: url(img/tree/add.png);
}

.nodeType_delete .nodeLblCo {
    background-image: url(img/tree/delete.png);
}

.nodeType_tfc-go .nodeLblCo {
    background-image: url(img/tree/tfc-go.png);
}

.nodeType_tfc-stop .nodeLblCo {
    background-image: url(img/tree/tfc-stop.png);
}

.nodeType_attach .nodeLblCo {
    background-image: url(img/tree/attach.png);
}

.nodeType_cog .nodeLblCo {
    background-image: url(img/tree/cog.png);
}

.nodeType_tag-blue .nodeLblCo {
    background-image: url(img/tree/tag-blue.png);
}

.nodeType_tag-green .nodeLblCo {
    background-image: url(img/tree/tag-green.png);
}

.nodeType_tag-orange .nodeLblCo {
    background-image: url(img/tree/tag-orange.png);
}

.nodeType_tag-pink .nodeLblCo {
    background-image: url(img/tree/tag-pink.png);
}

.nodeType_tag-red .nodeLblCo {
    background-image: url(img/tree/tag-red.png);
}

.nodeType_tag-yellow .nodeLblCo {
    background-image: url(img/tree/tag-yellow.png);
}

.nodeType_pencil .nodeLblCo {
    background-image: url(img/tree/pencil.png);
}

.nodeType_puzzle .nodeLblCo {
    background-image: url(img/tree/puzzle.png);
}

.nodeType_wand .nodeLblCo {
    background-image: url(img/tree/wand.png);
}

.nodeType_zoom .nodeLblCo {
    background-image: url(img/tree/zoom.png);
}

.treeSearch_mach>.nodeLblFra>.nodeLbl {
    border: 1px solid var(--accentColor);
}

.treeSearch_mach>.nodeLblFra>.nodeLbl .nodeTi {
    color: #fff;
}

.treeSearch_cur>.nodeLblFra>.nodeLbl {
    animation: glow 0.5s ease-in-out 0s 1 alternate;
    background-color: var(--accentColorLight);
}

@keyframes glow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* === TOOLBAR - ConceptTree ========================================================== */
div.treeRoot.treeHasToolbar {
    border: 1px solid var(--accentColor);
    margin-right: 5px;
}

div.treeRoot.treeHasToolbar .nodeDepth_0 {
    margin: 3px;
}

div.treeRoot.treeHasToolbar.treeSearch_off .treeScroll {
    overflow: hidden;
}

div.treeRoot.treeHasToolbar.treeSearch_on .treeScroll {
    max-height: 600px;
    overflow: auto;
}

div.treeToolbar {
    background-color: var(--accentColorLight);
    border-bottom: 1px solid var(--accentColor);
    padding: 0;
    height: 20px;
    text-align: right;
    z-index: 2;
    font-size: 0.75em;
    position: relative;
}

div.treeStatusbar {
    background-color: #fff5ea;
    border-top: 1px solid var(--accentColor);
    padding: 0;
    text-align: left;
    padding: 3px;
    z-index: 2;
    font-size: 0.75em;
    position: relative;
    display: none;
    color: #737373;
}

div.treeRoot.treeSearch_on .treeStatusbar {
    display: block;
}

div.treeToolbar form.treeSearchForm {
    display: inline-block;
    position: absolute;
    left: 3px;
    top: 2px;
}

div.treeToolbar span.treeSearchLabel {
    display: inline-block;
    margin-right: 5px;
    color: #ffffff;
}

div.treeToolbar span.treeSearchResultLabel {
    display: inline-block;
    margin-left: 5px;
    color: #737373;
}

div.treeToolbar input.treeSearchInput {
    border: 1px solid var(--accentColor);
    margin: 0;
    padding: 0;
}

div.treeSearch_off div.treeToolbar form.treeSearchForm {
    display: none;
}

div.treeToolbar a.treeBtnSearch {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url('img/co/search.svg') no-repeat 0 0 / 12px auto;
    margin: 0 8px 4px;
}

div.treeSearch_on div.treeToolbar a.treeBtnSearch {
    background-color: var(--accentColor);
}

div.treeToolbar a.treeBtnOpenAll {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(img/tree/open.png) center center no-repeat;
    margin-right: 3px;
}

div.treeToolbar a.treeBtnCloseAll {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(img/tree/close.png) center center no-repeat;
    margin-right: 3px;
}

div.treeToolbar a.treeBtnPrv {
    display: inline-block;
    width: 20px;
    height: 14px;
    background: url(img/tree/prv.png) center center no-repeat;
    margin-left: 3px;
    vertical-align: middle;
}

div.treeToolbar a.treeBtnNxt {
    display: inline-block;
    width: 20px;
    height: 14px;
    background: url(img/tree/nxt.png) center center no-repeat;
    margin-left: 3px;
    vertical-align: middle;
}

div.treeToolbar a.treeBtnSearch:hover,
div.treeToolbar a.treeBtnPrv:hover,
div.treeToolbar a.treeBtnNxt:hover,
div.treeToolbar a.treeBtnOpenAll:hover,
div.treeToolbar a.treeBtnCloseAll:hover {
    opacity: 0.5;
}

div.treeToolbar span.treeSep,
div.treeToolbar a.treeBtnSearch span,
div.treeToolbar a.treeBtnPrv span,
div.treeToolbar a.treeBtnNxt span,
div.treeToolbar a.treeBtnOpenAll span,
div.treeToolbar a.treeBtnCloseAll span {
    display: none;
}

div.treeSearch_noact a.treeBtnNxt,
div.treeSearch_noact a.treeBtnPrv {
    display: none;
}

/* === STOP - ConceptTree ========================================================== */