@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	box-sizing: border-box !important;
}

body{
	margin: 0px;
	padding: 0px;
	color: #151231;
	overflow-x: hidden !important;
}

select option:disabled
{
	color: rgba(0,0,0,0.2)!important;
}

[locationNextButton][disabled]{
	pointer-events: none;
	opacity: 0.4;
}

.w10 {width: 10%}
.w20 {width: 20%;}
.w25 {width: 25%;}
.w30 {width: 30%;}
.w33 {width: 33%;}
.w40 {width: 40%;}
.w50 {width: 50%;}
.w60 {width: 60%;}
.w70 {width: 70%;}
.w80 {width: 80%;}
.w90 {width: 90%;}
.w100 {width: 100%;}

.left {float: left}
.right {float: right;}

.table {display: table !important;}
.grid {display: grid !important;}
.flex {display: flex !important;}
.block {display: block !important;}
.itemsCenter {align-items: center;}

.textLeft {text-align: left;}
.textRight {text-align: right;}
.textCenter {text-align: center;}

.note {
	font-size: 12px;
	opacity: 0.5;
	text-decoration: italic;
}


.emptyInput{border: 2px solid red;}


header{
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
}

header .wrap{
	width: 1400px;
	background-color: white;
	padding: 9px 60px;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	border-radius: 0px 0px 10px 10px;
	margin: 0px auto;
	display: table;
	border: 1px solid rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .wrap a:not(.button){
	padding: 8px 14px;
	font-family: "Poppins";
	font-size: 16px;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	color: black;
}

header .wrap a:not(.button):after{
	content: "";
	width: 0%;
	height: 2px;
	background-color: black;
	display: table;
	transition: 0.1s ease-out;
	margin-top: 2px;
}

header .wrap a:not(.button):hover:after{
	width: 100%;
	transition: 0.1s ease-out;
}

header .wrap .button{
	padding: 5px 14px;
	cursor: pointer;
}

header .menuButton{
	width: 25px;
	cursor: pointer;
	display: none;
}



.section{
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background: white;
	margin: 0px;
	font-family: "Poppins";
	display: flex;
	align-items: center;
}

.section.blue {
	background: rgb(233,233,244);
	background: linear-gradient(90deg, rgba(233,233,244,1) 0%, rgba(205,205,224,1) 100%);
}


.section.white{
	background-image: url(images/bgDot.png);
	background-size: 20px;
	padding-bottom: 80px;
}

.section.textSection.firstTextSection{
	padding-top: 210px;
	padding-bottom: 110px;
}

.section .wrap{
	max-width: 1200px;
	width: 100%;
	margin: 0px auto;
}

.section.hero{
	overflow: hidden;
	padding-bottom: 140px;
}

.section.hero .left .textWrap{
	max-width: 500px;
	float: right;
	position: relative;
}

.section.hero .left h1{
	font-size: 60px;
	line-height: 1em;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.section.hero .right img{
	width: 755px;
    margin-left: -105px;
    z-index: 2;
    position: relative;
}

.section.hero .right{
	padding: 100px 50px 50px 50px;
	position: relative;
}

.section.hero .right .background-graphics{
	background-image: url(images/hero-background.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 1122px;
    height: 691px;
    position: absolute;
    display: table;
    left: -212px;
    top: 0px;
    z-index: 1;
}


.section.hero .left{
	padding: 50px;
	margin-right: 80px;
}

.section.hero .left img{
	width: 200px;
	margin-bottom: 20px;
}

.section.hero .heroFeatures{
	position: absolute;
	left: -100px;
	bottom: 0px;
	background-color: white;
	border-radius: 8px;
	height: auto;
	width: auto;
	padding: 25px 35px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.07);
	display: table;
	z-index: 5;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.section.hero .heroFeatures span{
	width: 100%;
	display: table;
	margin: 11px 0px;
	color: #151231;
	font-size: 16px;
}

.section.hero .heroFeatures h3{
	font-size: 23px;
	margin-top: 0px;
}


.section.hero .heroFeatures span:before{
	content: "+";
	width: 10px;
	height: 10px;
	margin-right: 15px;
	display: table;
	float: left;
	font-weight: bold;
	background-color: #dcebff;
	border-radius: 100px;
	padding: 7px;
	line-height: 10px;
	color: #84c4ee;
}

.button{
	padding: 10px 20px;
    border-radius: 7px;
    border: none;
    border-bottom: 3px solid rgba(0,0,0,0.3);
    outline: none;
    color: white;
    font-weight: bold;
    background-color: #9f9f9f;
    font-family: "Poppins";
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 17px;
    cursor: pointer;
}

.button:hover{
	filter: brightness(1.12);
}

.button.blank{
	background-color: transparent;
    color: #151231;
    border: none !important;
    margin: 0px !important;
}

.button.blank[icon]:before{
	filter: invert(0%) !important;
	transform: rotate(180deg);
}

.button.blank[icon].white:before{
	filter: invert(100%) !important;
}

.button.blank.white:hover{
	opacity: 0.9 !important;
	color: white;
}

.button.blank.white:hover[icon]:before{
	opacity: 0.9 !important;
}

.button.blank:hover[icon]:before{
	opacity: 0.5;
}

.button.blank:hover{
    color: #6f6f6f;
}

.button.blue{
	background-color: #1b4583;
    color: white;
}

.button.green{
	background-color: #25a91b;
	color: white;
}

.button.white{
	color: white;
}

.button[icon]:before {
    content: "";
    width: 15px;
    height: 15px;
    display: table;
    float: left;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2px;
    filter: invert(100%);
}

.button[icon="check"]:before {
	margin-top: 3px;
    background-image: url(images/check.png);
}

.button[icon="user"]:before {
	margin-top: 3px;
    background-image: url(images/user.png);
}

.button[icon="download"]:before {
	margin-top: 3px;
    background-image: url(images/download.png);
}

.button[icon="cart"]:before {
	margin-top: 3px;
    background-image: url(images/cart.png);
}

.button[icon="arrowAfter"]:before {
	margin-top: 3px;
    background-image: url(images/arrow.png);
    float: right !important;
    margin-right: 0px;
    margin-left: 12px;
}

.button[icon="arrowBefore"]:before {
	margin-top: 3px;
    background-image: url(images/arrow.png);
}

.button[icon="arrowAfter"]{
	display: inline-flex;
	flex-direction: row-reverse;
}

.section video{
	margin: -70px auto -70px auto;
	height: 788px;
	width: 1400px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
	display: table;
	z-index: 5;
	background-color: white;
}

.section.features{
	padding-top: 170px;
	padding-bottom: 50px;
	display: table;
}


.section.features .buttonWrap{
	display: inline-flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.section.features .buttonWrap h4{
	margin-right: 15px;
}

.section.features .wrap{
	grid-template-columns: 1fr 1fr 1fr;
}


.section.features .bubble{
	background-color: #e9e9f4;
	padding: 30px;
	margin: 10px;
	float: left;
	width: calc(100% - 20px);
	text-align: center;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.section.features .bubble .button{
	font-size: 15px;
	margin-top: 15px;
}

.section.features img{
	width: 40px;
}

.section.features .icon{
	background-color: #d0cfdb;
	border-radius: 100px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	padding: 20px;
	margin-bottom: 15px;
}

.section.features h2{
	width: 100%;
	text-align: center;
	font-size: 35px;
	margin: 0px;
}

.section.features p{
	margin: 10px auto 20px auto;
	padding: 0px;
	max-width: 700px;
	text-align: center;
}

.section.features .bubble h4{
	margin: 0px;
	font-size: 20px;
	padding: 0px;
}

.section.features .bubble h3{
	color: #1c7915;
}

.section.features .bubble h3 span{
	font-size: 14px;
}

.section.features .bubble p{
	padding: 0px;
	font-size: 16px;
	margin: 10px 0px 0px 0px;
}



.section.textSection{
	position: relative;
}

.section.textSection .wrap{
	padding: 40px 0px;
}

.section.textSection img{
	width: 900px;
}

.section.textSection .left{
	position: relative;
	display: flex;
	align-items: center;
	height: 500px;
	box-sizing: border-box;
	margin-right: 40px;
}

.section.textSection .right{
	height: 100%;
	position: relative;
}

.section.textSection .right *:not(.background-graphics){
	z-index: 3;
	position: relative;
}

.section.textSection h2{
	font-size: 35px;
	line-height: 1.2em;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.section.textSection h3{
	margin: 0px 0px 10px 0px;
}

.section.textSection p{
	margin: 0px 0px 10px 0px;
}

.section.textSection .button{
	margin: 10px 0px 0px 0px;
}

.section.textSection .list{
	list-style: none;
	margin: 15px 0px 0px 0px;
	padding: 0px;
}

.section.textSection .list li{
	margin: 0px;
	padding: 0px;
}

.section.textSection .list li:before{
	content: "";
	background-image: url("images/check-rounded.png");
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
	width: 20px;
	height: 70px;
	float: left;
	margin-top: 4px;
	margin-right: 10px;
}

.section.textSection .list li p{
	margin-left: 32px;
}

h2{
	font-size: 35px;
}

h4 {
	font-size: 17px;
	margin: 10px 0px;
}

p{
	line-height: 1.6em;
}

.section.textSection .left img{
	width: 100%;
	z-index: 2;
}

.section.textSection .background-graphics{
    width: 100%;
    height: 100%;
    display: table;
    position: absolute;
    left: 0px;
    top: 0px;

    background-image: url(images/textSection-background.png);
    background-size: 150%;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.1;

    transform: scaleX(-1);
}

.section.textSection .icons{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	height: auto;
	margin: 20px 0px 10px 0px;
}

.section.textSection .icons div{
	width: 100%;
	height: auto;
}

.section.textSection .icons div h3{
	font-weight: 500;
	font-size: 15px !important;
}

.section.textSection .icons div .number{
	width: 100%;
	display: table;
	font-size: 25px;
}


.section.pricing{
	padding: 50px 0px;
}

.section.pricing .wrap{
	margin: -200px auto;
}

.section.pricing h2{
	text-align: center;
	width: 100%;
	font-size: 35px;
}

.section.pricing .pricingWrap{
	width: 1200px;
	margin: 0px auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
} 

.section.pricing .pricingWrap .pricingBubble{
	height: auto;
	min-height: 300px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.07);
	background-color: white;
	text-align: center;
	margin: 10px;
	z-index: 10;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.section.pricing .pricingWrap .pricingBubble h3{
	font-size: 25px;
}

.section.pricing .pricingWrap .pricingBubble .pricintFeatures{
	list-style: none;
	margin: 0px;
	padding: 0px;
	margin: 30px 0px;
	font-size: 16px;
}

.section.pricing .pricingWrap .pricingBubble .pricintFeatures li{
	display: flex;
	margin: 6px 0px;
}

.section.pricing .pricingWrap .pricingBubble .pricintFeatures li[icon]:before{
	content: "+";
	width: 10px;
	height: 10px;
	margin-right: 15px;
	display: table;
	float: left;
	font-weight: bold;
	background-color: #dcebff;
	border-radius: 100px;
	padding: 7px;
	line-height: 10px;
	color: #84c4ee;
}

.section.pricing .pricingWrap .pricingBubble .note{
	font-size: 16px;
	opacity: 0.5;
	width: 100%;
	display: table;
}

.section.pricing .pricingWrap .pricingBubble .price{
	font-weight: bold;
	font-size: 25px;
	color: #151231;
}

.section.pricing .pricingWrap .pricingBubble .button{
	margin-top: 15px;
}

.section.pricing .pricingWrap .pricingBubble[marked]{
	z-index: 99;
	background-color: #4c4977;
	color: white !important;
}

.section.pricing .pricingWrap .pricingBubble[marked] .price, .section.pricing .pricingWrap .pricingBubble[marked] span{
	color: white;
}

.section.functions{
	margin: 80px 0px;
}




.section.footer img{
	width: 150px;
}

.section.footer span{
	width: 100%;
	display: table;
}

.section.footer{
	padding: 30px;
}


.section.firstTextSection{
	overflow: hidden;
}


.section.fadingNumbers{
	text-align: center;
	padding: 0px;
	min-height: 150px !important;
	width: 1400px;
	margin: 0px auto;
	border-radius: 10px;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.section.fadingNumbers .progress{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 3px;
	background-color: #182b55;
	animation-name: progressAnimation;
  	animation-duration: 7s;
  	animation-timing-function: linear;
}

@keyframes progressAnimation {
  0% {width: 0%;}
  100% {width: 100%;}
}

.section.fadingNumbers [changeQuote].disabled{
	opacity: 0.1 !important;
	cursor: auto;
}

.section.fadingNumbers [changeQuote]{
	width: 15px;
	opacity: 0.3;
	position: absolute;
	cursor: pointer;
}

.section.fadingNumbers [changeQuote]:hover{
	opacity: 0.5;
}

.section.fadingNumbers [changeQuote="previous"]{
	left: 30px;
	top: calc(50% - 7.5px);
	transform: rotate(180deg);
}

.section.fadingNumbers [changeQuote="next"]{
	right: 30px;
	top: calc(50% - 7.5px);
}

.section.fadingNumbers .fadingNumbersWrap{
	width: 100%;
	text-align: center;
	list-style: none;
}

.section.fadingNumbers .fadingNumbersWrap h1{
	font-weight: 400;
	padding: 0px;
	margin: 0px;
}

.section.fadingNumbers .fadingNumbersWrap p{
	padding: 0px;
	margin: 0px;
}


.section.fadingNumbers .fadingNumbersWrap h1 .number{
	font-weight: bold;
}

.fadingNumberOuter{
	width: 100%;
	background-image: url(images/bgDot.png);
    background-size: 20px;
    display: flex;
}

.menu{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100%;
	align-items: center;
	z-index: 9999;
	background-color: white;
	padding: 30px;
	box-sizing: border-box;
	text-align: center;
	display: none;
}

.menu .wrap{
	height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    flex-direction: column;
}


.menu ul{
	margin: 0px auto;
	list-style: none;
	padding: 0px;
}

.menu ul img{
	width: 150px;
	margin-bottom: 20px;
}

.menu ul a{
	margin: 0px auto;
	font-family: "Poppins";
	font-size: 16px;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	color: black;
}

.menu ul a.button{
	margin-bottom: 10px;
}

.menu hr{
	opacity: 0.3;
}

.menu .closeMenuButton{
	position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9999;
    cursor: pointer;
}

@media(max-width: 1500px){
	.section.hero .right img{
		width: 640px;
	}

	.section.textSection{
		padding-left: 50px;
		padding-right: 50px;
		box-sizing: border-box;
	}

	.section.textSection img{
		width: 100% !important;
	}
}

@media(max-width: 1400px){
	.section.fadingNumbers{
		width: 1100px;
	}

	.section.fadingNumbers h1{
		font-size: 25px;
	}

	header .wrap{
		width: 1100px;
	}

	video{
		width: 1100px;
		height: 619px;
	}
}

@media(max-width: 1300px){
	.section.hero h1{
		font-size: 40px !important;
	}
}

@media(max-width: 1200px){
	
	.section.hero .right img{
		width: 640px;
	}

	.section.textSection h2{
		font-size: 30px;
	}

	.section.textSection .number{
		font-size: 20px !important;
	}

	.pricingBubble{
		padding: 20px !important;
	}

	.section.pricing .pricingWrap{
		width: 100%;
	}
}

@media(max-width: 1100px){

	.section.fadingNumbers{
		width: 90%;
	}

	.fadingNumberOuter{
		padding: 50px 0px;
	}

	.section.fadingNumbers h1{
		font-size: 25px;
	}

	header .wrap{
		width: 900px;
	}

	.background-graphics{
		opacity: 0.2;
	}

	video{
		width: 90% !important;
		height: auto !important;
	}

	.section.features .grid{
		grid-template-columns: 1fr 1fr;
		margin: 50px;
		width: calc(100% - 100px);
	}
}

@media(max-width: 1050px){
	.section.textSection div{
		width: 100% !important;
	}

	.section.textSection .wrap{
		display: table !important;
		padding: 0px;
		max-width: 730px !important;
		margin: 0px auto;
	}

	.section.textSection .left, .section.textSection .right{
		display: table !important;
		padding: 0px;
		margin: 0px;
		height: auto;
	}

	.section.textSection img{
		margin: 0px;
		padding: 0px;
	}

	.section.hero .right img{
		width: 500px;
	}

	.section.hero .heroFeatures{
		padding: 20px;
	}

	.section.hero .heroFeatures h3{
		font-size: 20px;
	}

	.section.hero .heroFeatures span{
		margin: 5px 0px;
	}

	.section.pricing .pricingWrap{
		grid-template-columns: 1fr;
		margin: 50px auto;
		width: calc(100% - 100px);
		max-width: 600px;
	}

	.section.pricing .pricingWrap .pricingBubble{
		padding: 30px !important;
	}

	.section.pricing .pricingWrap .pricingBubble .pricintFeatures{
		max-width: 300px !important;
		margin: 0px auto !important;
	}


	.section.pricing .pricingWrap .pricingBubble .price{
		width: 100% !important;
		display: table;
	}

	.section.features{
		padding: 150px 50px;
	}

	.section.hero .left{
		padding-top: 170px;
	}

	.section.hero .left img{
		width: 170px;
	}

	.section.hero .left h1{
		font-size: 30px !important;
		line-height: 1.2em;
	}

	.section.hero .left .blank{
		padding-left: 0px;
	}

	.section.firstTextSection{
		padding-top: 100px !important;
		padding-bottom: 50px !important;
	}

	.section.secondTextSection{
		padding-top: 30px !important;
		padding-bottom: 50px !important;
	}

	.section.textSection .icons{
		max-width: 500px;
	}

	header .menuButton{
		display: table;
	}

	header .left{
		display: none;
	}

	header .wrap{
		width: 90%;
		padding: 5px 15px;
	}
}


@media(max-width: 900px){
	.section.hero{
		display: table !important;
		padding: 100px 50px 370px 50px;
	}

	.section.hero .blank{
		padding-left: 20px !important;
	}

	.section.hero .background-graphics{
		display: none !important;
	}

	.section.hero .left, .section.hero .right{
		width: 100% !important;
		margin: 0px;
		padding: 0px;
		position: relative;
		text-align: center;
	}

	h2{
		font-size: 25px !important;
	}

	.section.hero .left .textWrap{
		width: 100%;
		margin: 0px auto 50px auto;
		text-align: center;
		float: none;
		max-width: 100%;
	}

	.section.hero .right img{
		position: relative;
		margin: 0px auto;
		width: 100%;
	}

	.section.hero .right .heroFeatures{
		position: absolute;
        right: 0px !important;
        left: initial !important;
        bottom: -290px;
        text-align: left;
	}

	.fadingNumbers{
		padding: 20px 40px !important;
	}

	.section.fadingNumbers [changeQuote="previous"]{
		left: 15px;
	}

	.section.fadingNumbers [changeQuote="next"]{
		right: 15px;
	}

	.footer .wrap{
		grid-template-columns: 1fr !important
	}

	.footer{
		padding: 30px;
	}

	.footer p{
		font-size: 15px !important;
	}

	.section video{
		margin: -30px auto;
	}

	.section.features .bubble{
		margin: 10px 0px;
		width: 100%;
	}

	.section.features{
		padding-bottom: 50px !important;
	}

	.section.pricing .pricingBubble{
		margin: 10px 0px !important;
		width: 100% !important;
		padding: 20px;
	}

	.section.firstTextSection{
		padding-top: 150px !important;
		padding-bottom: 0px !important;
	}
}

@media(max-width: 800px){
	.section.features{
		padding: 150px 50px 50px 50px;
	}

	.section.features .wrap{
		grid-template-columns: 1fr;
	}

	.section.textSection.firstTextSection{
		padding-bottom: 0px;
		text-align: center;
	}

	.section.textSection.firstTextSection h2{
		text-align: center;
	}

	.fadingNumberOuter{
	 padding: 80px 0px 30px 0px;
	 display: table;
	}

	.section.textSection .left{
		height: auto;
	}

	.section.textSection .icons{
		grid-template-columns: 1fr;
		text-align: center;
		margin: 0px auto;
	}

	.section.textSection .icons div h3{
		font-size: 15px !important;
		margin: 10px 0px;
	}

	.section.textSection .icons .number{
		font-size: 25px !important;
	}

	.references{
		width: 100%;
		padding: 40px;
		margin-bottom: 50px !important;
	}

	.references .wrap{
		grid-template-columns: 1fr 1fr !important;
	}
}

@media(max-width: 600px){
	.section.features{
		padding: 80px 30px 30px 30px;
	}

	.section.features .grid{
		padding: 0px;
		margin: 0px;
		width: 100%;
	}

	.section.pricing{
		padding: 30px;
	}

	.section.pricing .pricingWrap {
        margin: 100px auto 50px auto;
        width: 100%;
        max-width: 100%;
    }

    .fadingNumbers h1{
		font-size: 20px !important;
	}

	.section.textSection .right{
		margin-top: 50px !important;
	}
}


@media(max-width: 500px){
	span, p{
		font-size: 14px !important;
	}

	.price{
		font-size: 25px !important;
	}

	.pricingBubble li{
		font-size: 14px !important;
		text-align: left !important;
	}

	header .wrap .button, header .wrap a:not(.button){
		font-size: 14px !important;
	}

	.fadingNumbers h1, .fadingNumbers h1 span{
		font-size: 17px !important;
	}

	
}















/*OBJEDNÁVKA*/
.mapaCR{
	width: 900px;
	height: 500px;
	position: relative;
	margin-left: 260px;
	margin-right: -40px;
}

.mapaCR g{
	transform: scale(0.91);
}

.mapaCR.okresy g path{
	fill: #1b4583;
	opacity: 0.3;
	transition: 0.1s all;
	cursor: pointer;
	stroke: #00366b !important;
    stroke-width: 3;
}

.mapaCR.okresy g path[disabled]{
	fill: gray !important; /* Výrazná barva pro okres */
	pointer-events: none;
}

/*ZVÝRAZNĚNÍ OKRESU*/
.mapaCR.okresy path:hover, .mapaCR.okresy path.active{
    fill: #1b4583 !important; /* Výrazná barva pro okres */
    opacity: 1;
    transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
    stroke: #6b699a !important;
    stroke-width: 2;
}

.mapaCR.okresy path.active:hover{
	opacity: 0.9;
}


.mapaCR.kraje path{
	fill: #c1c5d9;
	transition: 0.1s all;
	cursor: pointer;
	stroke: #8d95b1b0;
    stroke-width: 3;
}

.mapaCR.kraje path:hover{
	fill: #1b4583;
	transition: 0.1s all;
	cursor: pointer;
	stroke: #1b4583;
    stroke-width: 3;
}

/*ZVÝRAZNĚNÍ OKRESU*/
.mapaCR.kraje path:hover, .mapaCR.kraje path.active{
    fill: #1b4583 !important; /* Výrazná barva pro okres */
    opacity: 1;
    transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
    stroke: #6b699a !important;
    stroke-width: 2;
}

.mapaCR.kraje path.active:hover{
	opacity: 0.9;
}

.mapBubble{
	width: 260px;
	position: absolute;
	left: 20px;
	bottom: 20px;
	padding: 30px;
    margin: 10px;
    text-align: left;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: white;
    outline: 2px solid #4c4977;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
}

.mapBubble.regions{
	   display: none;
}

.mapBubble span{
	display: table;
	width: 100%;
	font-weight: 500 !important;
}

.mapBubble strong{
	font-weight: 500 !important;
	text-align: right;
	float: right;
}

.orderStepContent .infoDistricts, .orderStepContent .infoRegions{
	position: absolute;
	left: 150px;
	top: 20px;
	font-weight: 500;
}

.orderStepContent .infoDistricts:after, .orderStepContent .infoRegions:after{
	content: "";
	position: absolute;
	left: 135px;
	top: 45px;
	width: 70px;
	height: 70px;
	opacity: 0.4;
	background-image: url("images/curved-arrow.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	transform: rotate(10deg);
}


.order{
	display: table;
	background-color: white;
    margin: 10px auto;
    text-align: center;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
}


.order .priceBubble{
	padding: 30px;
    margin: 10px;
    text-align: left;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    outline: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
    transition: 0.1s ease-in;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order .priceBubble:after{
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("/data/images/check-rounded.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	display: table;
	opacity: 0;
	position: absolute;
	bottom: 30px;
	right: 30px;
	transition: 0.2s all;
}

.order .priceBubble.active:after{
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("/data/images/check-rounded.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	display: table;
	opacity: 1;
	position: absolute;
	bottom: 30px;
	right: 30px;
}

.order .priceBubble:hover, .order .priceBubble.active{
	background-color: white;
	outline: 3px solid #4c4977;
	box-shadow: 0px 0px 10px #c7d8ff;
}

.order .priceBubble h3{
	padding: 0px;
	margin: 20px 0px 20px 0px;
	line-height: 0px;
}

.order .priceBubble p{
	font-size: 15px;
}

.order .priceBubble .pricingFeatures{
	padding: 0px;
}

.order .priceBubble .pricingFeatures li{
	text-align: left !important;
	list-style: none;
	padding: 2px 0px;
	font-size: 15px;
}

.order .priceBubble .pricingFeatures li[icon]:before {
    content: "+";
    width: 5px;
    height: 5px;
    margin-right: 15px;
    display: table;
    float: left;
    font-weight: bold;
    background-color: #dcebff;
    border-radius: 100px;
    padding: 5px;
    line-height: 10px;
    color: #84c4ee;
    margin-top: 2px;
}

.order .priceBubble span{
	width: 100%;
	display: table;
	opacity: 0.5;
	font-size: 13px;
	font-weight: 500;
}

.order .priceBubble .price{
	width: 100%;
	display: table;
	opacity: 1;
	margin: 0px;
	font-size: 18px;
}



.order .orderStepContent{
	padding: 30px;
	min-height: 570px;
	min-width: 1200px;
	max-height: 570px;
	position: relative;
}


.order .orderStepHeader{
	width: 100%;
	display: table;
	height: 20px;
	background-color: #1b4583;
	padding: 10px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.order .orderStepHeader h2{
	font-size: 16px;
	margin: 5px 0px;
	text-align: left;
	color: white;
}

.order .orderStepFooter{
	width: 100%;
	display: inline-flex;
	align-items: center;
	height: 60px;
	background-color: #1b4583;
	padding: 10px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	justify-content: space-between;
}

.order .orderStepFooter .button.green{
	padding: 5px 15px;
}

.order .grid{
	gap: 10px;
}

.order .orderRecap{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    text-align: left;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
    transition: 0.1s ease-in;
    position: relative;
    border: 1px solid #151231;
    margin-left: 30px;
}

.order .orderRecap legend{
	color: #151231;
	font-weight: 700;
}

.orderRecap h4, .orderRecap h3{
	width: 100%;
    display: table;
    float: left;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-weight: 400;
    margin: 2px 0px;
}

.orderRecap h3{
    font-size: 17px;
    font-weight: 600;
}

.orderRecap h4 span, .orderRecap h3 span{
	float: right;
}

.orderRecap label{
	margin: 2px 0px;
	white-space: nowrap;
}

label{
	width: 100%;
    display: table;
    float: left;
    font-size: 14px;
    font-style: italic;
    text-align: left;
}

input, textarea{
	width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 14px;
    box-sizing: border-box;
    resize: none;
    outline: none;
    margin-top: 3px;
}

input::placeholder, textarea::placeholder{
	opacity: 0.5;
}

select{
	width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 6px;
    outline: none;
    font-size: 14px;
    margin-top: 3px;
}

fieldset{
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	padding: 20px;
}


fieldset legend{
	color: #666;
	font-family: "Poppins";
	font-weight: 500;
	white-space: nowrap;
}




.paymentWrap, .paymentRecapWrap{
	display: table;
    background-color: white;
    margin: 10px auto;
    text-align: center;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 800px;
    min-height: 200px;
    text-align: left;
    padding: 20px 40px;
}

.paymentWrap .price{
	color: darkgreen;
	font-size: 30px;
	font-weight: bold;
}

.paymentWrap .price:before{
	content: "K úhradě:";
	font-size: 17px;
	color: black;
	width: 100%;
	display: block;
	line-height: 15px;
}

.paymentWrap span, .paymentRecapWrap span{
	display: block;
	width: 100%;
}

.paymentRecapWrap span{
	width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paymentWrap p{
	font-size: 13px;
}

.paymentRecapWrap{
	padding-bottom: 40px;
}

span[finalPrice]{
	font-size: 25px;
	font-weight: bold;
	color: darkgreen;
	margin: 0px;
	float: right;
	text-align: right;
}

span[finalPrice]:before{
	content: "K úhradě:";
	font-size: 15px;
	font-weight: bold;
	color: darkgreen;
	margin: 0px;
	width: 100%;
	display: block;
	line-height: 15px;
	color: #151231;
}

span[finalPrice]:after{
	content: "Cena je včetně DPH";
	opacity: 0.5;
    font-size: 13px;
    font-weight: 500;
	color: darkgreen;
	width: 100%;
	display: block;
	line-height: 15px;
	color: #151231;
}





#notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.notification {
  width: 350px;
  margin-bottom: 10px;
  padding: 15px 20px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  transform: translateX(120%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  font-size: 14px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  background-color: #4CAF50; /* Zelená */
}

.notification.error {
  background-color: #F44336; /* Červená */
}


#tooltip {
  position: absolute;
  display: none;
  padding: 5px 10px;
  background-color: #0f213d;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  color: white !important;
  font-family: "Poppins";
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1000;
}

.references {
	display: table;
	max-width: 800px;
	margin: 0px auto;
}

.references h2, .references h5{
	width: 100%;
	text-align: center;
}

.references h5{
	font-size: 18px;
}


.references img{
	width: 100%;
}