@media screen and (max-width:768px) {
	
	
	h1.aglaia-page-title,
	h2.aglaia-page-title {
		margin-left:0;
	}

	/**
	* FOOTER MOBILE
	*/
	#footer {
		position:relative;
		background:var(--theme-palette-color-4);
	}
	
	
	
	/**
	* TERMINE MOBILE
	*/
	
	
	/* Termine filters */
	.filter-row-wrap {
		flex-direction:column;
		justify-content:stretch;
		width:100%;
		height:auto;
		gap:10px;
		padding-bottom:30px;
		margin-bottom:0;
	}
	
	.filter-row-wrap select {
		width:100%;
		min-width:100%;
		text-align:left;
		font-size: 14px;
	}
	
	.termine-date-filter select {
		width:100%;
		min-width:100%;
		padding: 7px 20px;
	}
	
	/* majhna puščica na desni */
	.termine-date-filter {
	  	width:100%;
	}
	
	.termine-type-filter {
	  display: flex;
	  gap: 7px;
	  width:100%;
	  flex-wrap: nowrap;
	  justify-content:stretch;
	}
	
	.filter-btn {
	  display: inline-block;
	  padding: 7px 20px;
	  font-size: 16px;
	  line-height: 20px;
	  width:100%;
	}
	
	/* Termine List */
	
	.termine-list {
	
		position: relative;
		padding-bottom:20px;
		width:100%;
		height:auto;
		
  	
	}
	
	.termin-item {
		display:flex;
		flex-direction:row;
		flex-wrap:nowrap;
		width:100%;
		margin:0 auto;
	}
	
	.termin-item svg {
		display:none;
	}
	
	.termin-item-inner {
		display:flex;
		flex-direction:column;
		gap:10px;
	}
	
	/* Termin title */
	.termin-title {
		text-align:center;
	}
	
	
	
	/**
	* TERMINE OVERLAY
	*/
	
	#termin-overlay .overlay-content {
	  width: calc(100vw - 0px);
	  height:calc(100vh - 0px);
	  /*
	  overflow:hidden;
	  */
	  overflow-y:scroll;
	  margin: 0px auto 0px auto;
	  background: #fff;
	  color: #111;
	  padding: 0px;
	  border-radius: 0px;
	}
	
	.termin-overlay-left,
	.termin-overlay-right {
	  /*flex: 0 0 50%;*/
	  width: 100%;
	  max-width:100%;
	  height:100%;
	  min-height: 100%;     /* <- prisili raztezanje po višini parenta */
	  box-sizing: border-box;
	}

	.termin-overlay-left {
		position:relative;
		background-color: #777; /* da je viden tudi brez slike */
		height:400px;
		max-height:400px;
		min-height:auto;
		overflow:hidden;
	}

	.termin-overlay-right {
		padding:40px 40px 60px;
		/*background:#efefef;*/
		overflow-y:visible;
		scrollbar-width: thin;
		scrollbar-color: #333 transparent; /* Firefox */
		/*mask-image: linear-gradient(to bottom, #fff 85%, transparent);*/
	
		/* višine fade efektov */
	  	--fade-top: 0px;
	  	--fade-bottom: 60px;
  	
	  	/* en sam gradient s kombinacijo obeh fadeov */
	  	-webkit-mask-image: linear-gradient(
	  	  to bottom,
	  	  transparent 0,
	  	  #FFF var(--fade-top),
	  	  #FFF calc(100% - var(--fade-bottom)),
	  	  transparent 100%
	  	);
	  	mask-image: linear-gradient(
	  	  to bottom,
	  	  transparent 0,
	  	  #FFF var(--fade-top),
	  	  #FFF calc(100% - var(--fade-bottom)),
	  	  transparent 100%
	  	);

	  	-webkit-mask-repeat: no-repeat;
	  	mask-repeat: no-repeat;
	  	-webkit-mask-size: 100% 100%;
	  	mask-size: 100% 100%;
	}
	
	
} /* end (max-width:768px) */