:root {
	--color__green: #5ED921;
		--color__green--light: #aeee8e; /*** hover color ***/
	--color__yellow: #FFD400;
		--color__yellow--light: #ffea80; /*** hover color ***/
	--color__blue: #3333FF;
		--color__blue--light: #99DDFF; /*** used bg color ***/
		--color__blue--lighter: #ebf8ff; /*** 80 % svetlejša od --color__blue--light ***/
	--color__pink: #FF7A66;
		--color__pink--light: #ffbcb3; /*** hover color ***/
	--color__silver: #FCFAF2;
		--color__silver--dark: #B9B9B9;
	--color__text: #3D444D;
		--color__text--light: #f1f1f1; /*** 80 % svetlejša od --color__silver ***/
	
	--color__select: #343eb3;

	--flow-space: 1em;
	--bodyOffset: 1.5rem;
	--grid: grid;
	
	--br__small: 15px;
	/* --br__normal: 50px; */
	--br__normal: 1.8em;
	--br__big: 75px;
}

@media (max-width: 768px) {
	
	:root {
		--br__big: 2em;
	}
}


@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-Regular.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-Regular.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-SemiBold.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-SemiBold.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-ExtraBoldItalic.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-ExtraBoldItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-Bold.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-Bold.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-Italic.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-Italic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-SemiBoldItalic.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-SemiBoldItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-ExtraBold.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-ExtraBold.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-MediumItalic.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-MediumItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-BoldItalic.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-BoldItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rethink Sans';
    src: url('/css/fonts/RethinkSans-Medium.woff2') format('woff2'),
        url('/css/fonts/RethinkSans-Medium.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}





@media (min-width: 65em) {
	:root {
		--bodyOffset: 3rem;
	}
}

/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/

* {
	/* Remove default margin on everything */
	margin: 0;
	/* Remove default padding on everything */
	padding: 0;
	/* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
	line-height: calc(0.2rem + 1em + 0.2rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
	box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
	border-width: 0;
	border-style: solid;
	background-origin: border-box;
	background-repeat: no-repeat;
}

html {
	/* Allow percentage-based heights in the application */
	block-size: 100%;
	/* Making sure text size is only controlled by font-size */
	-webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
/*
@media (prefers-reduced-motion: no-preference) {
	html:focus-within {
		scroll-behavior: smooth;
	}
}
*/

body {
	/* Improve text rendering */
	-webkit-font-smoothing: antialiased;
	/* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
	text-rendering: optimizeSpeed;
	/* Allow percentage-based heights in the application */
	min-block-size: 100%;
	/* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
	/* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
	
	
	background-color: var(--color__silver);
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

:where(img, svg, video) {
	block-size: auto;
	max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
	stroke: none;
	fill: currentColor;
}

/* SVG's without a fill attribute */
/*
:where(svg):where(:not([fill])) {
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
*/

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
	inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type="file"])::-webkit-file-upload-button {
	color: inherit;
	font: inherit;
	font-size: inherit;
	letter-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
	resize: vertical;
}

@supports (resize: block) {
	:where(textarea) {
		resize: block;
	}
}

/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role="list"] {
	list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
	cursor: pointer;
	touch-action: manipulation;
}

:where(input[type="file"]) {
	cursor: auto;
}

:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
	cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
	:focus-visible {
		transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
	}

	:where(:not(:active)):focus-visible {
		transition-duration: 0.25s;
	}
}

:where(:not(:active)):focus-visible {
	outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	user-select: none;
	text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
	cursor: not-allowed;
}


a {
	text-decoration: none;
}





.offscreen {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px; 
}

.skipLink {
	position: fixed;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	z-index: 300;
	padding: 1em 2em;
	
	background-color: $color__turkiz;
	color: #000;
}

.skipLink.offscreen:focus {
	clip: auto;
	height: auto;
	overflow: auto;
	position: absolute;
	width: auto;
}

.iconInline {
	display: inline-block;
	width: 1em;
	height: 1em;
	
	fill: currentColor;
	pointer-events: none;
}


.icon {
    position: relative;
    pointer-events: none;
	display: inline-block;
	width: 100%;
	
	fill: currentColor;
}

.icon > .pfw {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.icon:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
	display: block;
}

.icon.logo_fleha:before {
    padding-top: 21.87%;
}

.icon.logo_fleha_v2:before {
    padding-top: 114.29%;
}

.icon.logo_fleha_mobile:before {
    padding-top: 50.67%;
}

.icon.metulj_del:before {
    padding-top: 73.7%;
}

.icon.title_sep_1:before {
    padding-top: 12%;
}

.icon.title_sep_2:before {
    padding-top: 12%;
}

.icon.valov_zgoraj:before {
    padding-top: 26.04%;
}

.icon.valov_spodaj:before {
    padding-top: 22.9%;
}

.icon.locilni_val:before {
    padding-top: 27.08%;
}

.icon.posoda_spodaj:before {
    padding-top: 15.11%;
}

.icon.valov_spodaj2:before {
    padding-top: 9.9%;
}

.icon.title_underline:before {
    padding-top: 29%;
}

.icon.separation_line:before {
    padding-top: 2%;
}

.icon.raketa:before {
    padding-top: 263%;
}

.icon.na_vrh:before {
    padding-top: 300%;
}

.icon.oblak_naslov:before {
    padding-top: 42%;
}

.icon.hand_pointer:before {
    padding-top: 263.2%;
}

.icon.otrok_in_zvezde:before {
    padding-top: 48%;
}

.icon.hitri_meni:before {
    padding-top: 42%;
}

.icon.voda_v1:before,
.icon.voda_v2:before,
.icon.voda_v3:before {
    padding-top: 34%;
}

.icon.valov_vsebina_zgoraj:before {
    padding-top: 4.17%;
}

.icon.valov_vsebina_spodaj:before {
    padding-top: 11.46%;
}

.icon.back_arrow:before {
    padding-top: 56%;
}

.icon.crta1:before,
.icon.crta2:before,
.icon.crta3:before,
.icon.crta4:before,
.icon.crta5:before,
.icon.crta6:before,
.icon.crta7:before,
.icon.crta8:before,
.icon.crta10:before,
.icon.crta11:before {
    padding-top: 4.45%;
}

.icon.crta9:before {
    padding-top: 2.92%;
}

.icon.dashed_arrow_top:before {
    padding-top: 66%;
}

.icon.oblaki:before {
    padding-top: 31.82%;
}




.separation_line {
	stroke: var(--color__text);
}

/*



.icon.logo:before {
    padding-top: 78%;
}
.iconBlock.emblem {
	color: var(--color__black);
}
*/


.masterWrapper {
	min-height: 100vh;
	display: flex;
	
	flex-direction: column;
}

.masterWrapper > * {
	flex: 0 0 auto;
}

/*
.masterWrapper__body > * + * {
	margin-top: var(--flow-space);
}
*/

/*
.masterWrapper {
	max-width: 1440px !important;
	margin: auto;
}
*/

@media (min-width: 120em) {
	
	.masterWrapper {
		max-width: 120em;
		margin: auto;
	}
}

.wrapper__masterLayout {
	flex: 1 0 auto;
}


.wrapper {
	width: 100%;
}

.wrapper--noPad {
	padding: 0;
}



.chromeframe { 
    background: var(--color__select); 
    color: #fff; 
    padding: 2em 2em; 
	z-index: 9999; 
	position: fixed;  
	bottom: 0; 
	width: 100%; 
	font-size: 1.6em; 
}

.chromeframe a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #fff;
}

.variables-debug {
	display: none;
}

.variables-debug--active {
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 70%;
	padding: 1em;
	
	background-color: #39CCCC;
	color: #000;
}

.lockWarning {
	width: 4px; 
	height: 100%;
	position: fixed; 
	right: 0; 
	top: 0; 
	z-index: 500; 
	
	background-color: #f00;
	font-size: 10px;
	color: #000;	
}

.lockWarning:hover {
	padding: 1em;
	width: 200px; 
}





.glightbox-container .gdesc-inner {
	padding: 0.5em !important;
}

.glightbox-container.glightbox-clean .gslide-title {
	font-size: 0.9em;
    line-height: 1.4;
	font-family: "Rethink Sans", Arial, Helvetica, sans-serif;
}

.glightbox-container.glightbox-clean .gslide-desc {
	font-size: 0.8em;
    line-height: 1.4;
	font-family: "Rethink Sans", Arial, Helvetica, sans-serif;
}













.ws__content.ws__content--projects {
	display: grid;
	justify-content: stretch;
	align-items: stretch;
	gap: 1em;
	column-gap: 1em;
	grid-template-columns: 1fr;
}

.mainContent--projekti .ws--projekti {
	padding-top: 0;
}

.bubblesSection--project .ws__text {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	flex-direction: column;
	height: 100%;
}

.bubblesSection.bubblesSection--project {
	background-color: #ffffff;
    color: var(--color__text);
    border-radius: var(--br__normal);
    border: 2px solid var(--color__text);
	
	transition: background 0.6s;
}


.bubblesSection.bubblesSection--project:hover {
	background-color: var(--color__yellow);
    color: var(--color__text);
    border-radius: var(--br__normal);
    border: 2px solid var(--color__text);
}

.bubblesSection--project .listItem__more {
	flex: 1 1 auto;
	display: flex;
	justify-content: end;
	align-items: end;
}

.ws__text--titleLogo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1em;
	margin-bottom: 2em;
}

.ws__text--titleLogo .projectLogo a {
	width: 5em;
}

.ws__text--titleLogo .projectLogo img {
	max-height: 5em;
}


@media (min-width: 768px) {
	
	.ws__content.ws__content--projects {
		grid-template-columns: 1fr 1fr;
	}
	
	.ws__text--titleLogo {
		display: flex;
		flex-direction: row;
		gap: 1em;
	}
	
	.ws__text--titleLogo {
		
	}
}


@media (min-width: 991px) {
	
	.ws__content.ws__content--projects {
		grid-template-columns: 1fr 1fr 1fr;
	}
}


