/******* Kontakt slide kartica *******/
.kontakt-sekcija {
	display: none;
}
@media (max-width: 960px) {
	.kontakt-sekcija {
		display: block;
		position: fixed;
		z-index: 99999;
		background-color: #f4f4f4;
		padding: 25vh 25px 0 25px;
		right: 0px;
		bottom: 0px;
		height: 100vh;
		width: 100%;
		text-align: center;
		border-radius: 15px;
		transform: translateX(100%);
		transition: transform 0.4s ease-in-out;
		font-family: "Poppins", sans-serif;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5;
	}
	.kontakt-sekcija-aktivna{
		transform: translateX(0);
	}
	.kontakt-sekcija .naslov {
		font-size: 26px;
		line-height: 1.1em;
		font-weight: 600;
		margin-top: 90px;
	}
	.kontakt-sekcija a {
		text-decoration: underline blue;
	}
}
/******* END slide kartice ******/

/********** Ikonica za telefon na mobilnom **********/
.ikonica-telefon {
	display: none;
}
@media only screen and (max-width: 981px) {
	.ikonica-telefon {
		z-index: 999999;
		position: fixed;
		right: 14px;
		bottom: 110px;
		display: flex;
		background:white;
		align-items: center;
		flex-direction: row;
		transform: translateX(100%);
		transition: 0.2s ease;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.ikonica-telefon:before {
		content: "";
		position: absolute;
		display: block;
		top: 50%;
		left: -58px;
		width: 58px;
		height: 48px;
		transform: translateY(-50%);
	}
	.subikonica-telefon {
		position: absolute;
		top: 50%;
		left: -58px;
		background: #008000;
		width: 48px;
		height: 48px;
		border: 1px solid #EEEEEE;
		border-radius: 100%;
		padding: 4px;
		box-sizing: border-box;
		transform: translateY(-50%);
		overflow: hidden;
		cursor: pointer;
		-webkit-animation: expand 3s;
	}
	.subikonica-telefon-close {
		display: none!important;
	}   
	.ikonica {
		display: block;
		margin-top: 7px;
		margin-left: 10px;
		color: #ffffff;
	}
	.ikonica-close { 
		margin-left: 7px; 
		opacity: 1;
	}
	.btn-close-white {
		filter: invert(1) grayscale(100%) brightness(200%);
	}
	.btn-close {
		box-sizing: content-box;
		width: 1em;
		height: 1em;
		padding: 0.25em 0.25em;
		color: #000;
		background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
		border: 0;
		border-radius: 0.25rem;
		opacity: 0.5;
	}
}