<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */

label{
	margin:0;
	padding:0;
}
.main{
	margin: 3em auto;
    text-align: center;
    position: relative;
    height: 100%;
}

#submit-all, #nechci {
	color: #fff;
    cursor: pointer;
    font-size: 1em;
    margin: 1em auto;
    padding: 7px 45px;
    width: 60%;
	border: none;
    background: #6dc1e5;
	outline: none;
	white-space: normal;
	transition: all 0.5s ease 0s;  
}
#submit-all:hover, #nechci:hover{
	background:#549ac7;
}


#nechci2 {
	color: #fff;
    cursor: pointer;
    font-size: 1em;
    margin: 1em auto;
    padding: 7px 25px;
    width: 20%;
	border: none;
    background: #549ac7;
	outline: none;
	white-space: normal;
	float: right;
	margin-right: 18px;
	transition: all 0.5s ease 0s;  
}
#nechci2:hover{
	background:#FF8103;
}

.simple-form-button {
	color: #fff;
    cursor: pointer;
    font-size: 1em;
    margin: 1em auto;
    padding: 7px 45px;
    width: 60%;
    background: #001d57;
	outline: none;
	white-space: normal;
	transition: all 0.5s ease 0s;  
}
.simple-form-button:hover{
	background:#01102e;
}
.submit-button {
	background:#ee1c24;
	width: 40%;
	margin-right: 18px;
    float: right;
    display: none;
}

.form-controls {
    clear: both;
}

fieldset {
	border: none;
}
.previous-fieldset {
	display: none;
	float: left;
	width: 40%;
	margin-left: 18px;
	background-color: #001d57;
}
.next-fieldset {
	float: right;
	width: 40%;
	margin-right: 18px;
	background-color: #001d57;
}
.previous-fieldset:hover, .next-fieldset:hover {
	background-color: #00091c;
}
a.next-fieldset,
a.previous-fieldset {
	color: #ccc;
}

.clear {
	clear: both;
}
.progress {
	border-bottom: 1px solid #EEECE9;
    border-top: 1px solid #FFFFFF;
    height: 20px;
}

.progress-bar {
        height: 15px;  /* Can be anything */
        position: relative;
        background: #e2e2e2;
        -moz-border-radius: 25px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
        padding: 3px;
        -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
        -moz-box-shadow   : inset 0 -1px 1px rgba(255,255,255,0.3);
        box-shadow        : inset 0 -1px 1px rgba(255,255,255,0.3);
        margin: 10px 0;
        overflow: hidden;
}

.progress-bar .progress-bg{
        display: block;
        height: 100%;
        -webkit-border-top-right-radius:    20px;
        -webkit-border-bottom-right-radius: 20px;
        -moz-border-radius-topright:        20px;
        -moz-border-radius-bottomright:     20px;
        border-top-right-radius:            20px;
        border-bottom-right-radius:         20px;
        -webkit-border-top-left-radius:     20px;
        -webkit-border-bottom-left-radius:  20px;
        -moz-border-radius-topleft:         20px;
        -moz-border-radius-bottomleft:      20px;
        border-top-left-radius:             20px;
        border-bottom-left-radius:          20px;
        background-color: rgb(43,194,83);
        background-image: -webkit-gradient(
			linear,
			left bottom,
			left top,
			color-stop(0, rgb(43,194,83)),
			color-stop(1, rgb(84,240,84))
        );
        background-image: -webkit-linear-gradient(
			center bottom,
			rgb(43,194,83) 37%,
			rgb(84,240,84) 69%
		);
        background-image: -moz-linear-gradient(
			center bottom,
			rgb(43,194,83) 37%,
			rgb(84,240,84) 69%
		);
        background-image: -ms-linear-gradient(
			center bottom,
			rgb(43,194,83) 37%,
			rgb(84,240,84) 69%
        );
        background-image: -o-linear-gradient(
			center bottom,
			rgb(43,194,83) 37%,
			rgb(84,240,84) 69%
        );
        -webkit-box-shadow:
			inset 0 2px 9px  rgba(255,255,255,0.3),
			inset 0 -2px 6px rgba(0,0,0,0.4);
        -moz-box-shadow:
			inset 0 2px 9px  rgba(255,255,255,0.3),
			inset 0 -2px 6px rgba(0,0,0,0.4);
        overflow: hidden;
        width: 0%;
}

.progress-bar .progress-text {
/*-- w3layouts --*/
    position: absolute;
    left: 50%;
    top: 2px;
    z-index: 10;
	color: #000000;
	top: -3px;
}
#wrapper {
	width: 550px;
	margin: 0 auto;
	position: relative;
}

form { 
    border-radius: 10px;
    border: 3px solid #ccc;
    box-shadow: 0px 2px 5px 0px #444;
   background-color: #8287b7;
    position: relative;
    padding: 10px;
    overflow: hidden;
} 
form#testform {
    min-height: 0 !important;
}
input, textarea, select {
	background: #fff;
    border: none;
    color: #403D3A;
    font-size: 14px;
    padding: 10px;
    width: 68%;
}
textarea {
	min-height: 140px;
    resize: none;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
label.error{
    font-size: 14px;
	margin: 3px 0 15px 0;
    color: #fff;
	background-color: #f00;
	float: right;
	position: relative;
	right: 20px;
	padding-left: 0;
}
.required {
    font-size: 12px;
    color: white;
	float: right;
	position: relative;
	right: 20px;
}
.checkbox label.error {
	position: relative;
	top: 45px;
	margin-bottom: 40px;
}
i.required {
	position: relative;
	right: 5px;
}
label.agileits_label {
    float: left;
    width: 25%;
    font-size: 14px;
    text-transform: uppercase;
	margin: .8em 0 0;
/*-- agileits --*/
	color: #fff;
}
.w3_agileits_field span {
    display: block;
    padding: .8em 0;
}
.up {
	position: relative;
	top: -13px;
}
#specializace, #stat, #fakt_udaje, #stat2, #druh_ucasti, #druh_platby, #uvitaci_vecere, #doprovod {
	width: 230px;
	float: left;
	margin-left: 8px;
}
#fakt_udaje, #uvitaci_vecere, #doprovod {
	width: 90px;
}
#foto {
	  margin-top: 12px;
    }
form h2 {
	color: white;
	margin: 30px 10px;
	font-weight: bold;
}
.popisek {
	float:left; 
	margin-left: 10px; 
	margin-top: 10px;
	font-size: 0.8em;
	color: yellow;
}
.cena {
	float:left; 
	margin-left: 10px; 
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 1.3em;
	color: white;
}
.checkbox {
	float:left; 
	margin-left: 10px; 
	margin-top: 10px; 
	color: white;
	font-size: 0.9em;
}
#kalkulace, #WD_cena, #WD_partner_cena, #obed_cena {
	display: inline;
}

/*-- start-responsive-design --*/
@media (max-width:991px){
	.agileits_copyright p {
		margin: 5em 0 0;
	}
}
@media (max-width:800px){
	.simple-form-button {
        width: 100%;
}
	
}
@media (max-width: 600px){
	#wrapper {
		width: 465px;
	}
	.agileits_copyright p {
		margin: 3em 0 0;
	}
	label.agileits_label {
		font-size: 12px;
	}
}
@media (max-width: 568px){
	.main {
		margin: 2em auto;
	}
}
@media (max-width: 480px){
	#wrapper {
		width: 415px;
	}
	.simple-form-button {
        padding-left: 5px;
		padding-right: 5px;
		font-size: 1em;
     }	
}
@media (max-width: 414px){
	#wrapper {
		width: 355px;
	}
	.simple-form-button {
		margin: 1em auto;
	}	
}
@media (max-width: 375px){
	.simple-form-button {
		margin: 1em auto;
	}
}
@media (max-width: 320px){
	#wrapper {
		width: 275px;
	}
	.progress-bar {
		height: 10px;
	}
	.progress-bar .progress-text {
		font-size: 12px;
		line-height: 1.2;
	}
	label.agileits_label {
		float: none;
		width: 100%;
		text-align: left;
		margin-bottom: .8em;
		display: block;
	}
	.up {
		top: 0;
	}
	#specializace, #stat, #fakt_udaje, #stat2, #druh_ucasti, #druh_platby, #uvitaci_vecere, #doprovod  {
	  margin-left: 0;
    }
	.popisek, .cena {
	  margin-left: 0; 
    }
   .checkbox {
	  margin-left: 0; 
	  margin-top: 0; 
    }
	input, textarea, select {
		width: 91%;
		font-size: 13px;
	}
	.w3_agileits_field span {
		padding: .8em 0 0;
	}
	.simple-form-button {
		margin: 1em auto;
		padding: 7px 15px;
		font-size: 14px;
	}
	.agileits_copyright p {
		margin: 2em 0 0;
		font-size: 13px;
/*-- agileits --*/
	}
	textarea#comments {
		width: 100%;
	}
}</pre></body></html>