@charset "utf-8";

/* #2d70b2 - modrá v horním menu */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Urbanist',Arial,Helvetica,"Nimbus Sans L",sans-serif;
  font-size: 16px;
  background-color: #fafaff;
}

input[type="text"], input[type="password"], input[type="email"], textarea, select {
  font-family: inherit;
  font-size: inherit;
  padding: 0 2px;
  border: 1px solid #b3c5c9;
  border-radius: 4px;
}

input[type="text"], input[type="password"], input[type="email"], select {
  height: 30px;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border: 1px solid #2d70b2;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
}

input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: #2d70b2;
	cursor: pointer;
}

input[type="submit"], input[type="reset"], input[type="button"] {
	font-weight: 700;
  min-height: 0px;
  font-size: 16px;
  line-height: 1em;
  padding: 5px 12px;
  margin: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  color: #facd35;
  background-color: #2d70b2;
  border: 1px solid #2d70b2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  gap: 5px;
  cursor: pointer;
}

input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus,
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  color: #2d70b2;
	background-color: #facd35;
  border: 1px solid #facd35;
}

input[type="button"].wide, input[type="submit"].wide, input[type="reset"].wide {
  margin-left: 8px;
  margin-right: 8px;
}

input[type="button"].main, input[type="submit"].main, input[type="reset"].main {
  padding: 10px 20px;
}

.hidden {
  display: none;
}

.bold {
  font-weight: bold;
}

.nobold {
  font-weight: normal !important;
}

.italic {
  font-style: italic;
}

.small {
  font-size: 0.9em;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.nowrap {
  white-space: nowrap;
}

.wrap {
  white-space: normal !important;
}

.noborder {
  border: 0 !important;
}

.error-field {
  background: #f66 !important;
}

.info-error {
  font-weight: bold;
  color: #f00 !important;
}

span.cbox {
  margin-left: 4px;
  position: relative;
  top: -2px;
}

div.app-outer {
  width: 100%;
  max-width: 1440px; 
	padding: 0 20px;
	margin: 0 auto;
}

div.app-header {
	width: 100%;
	height: 30px;
	margin-top: 20px;
}

div.app-header-left {
	float: left;
  height: 30px;
}

div.app-header-left a {
	color: #2d70b2;
	font-size: 0.8rem;
	font-weight: bold;
	text-decoration: none;
}

div.app-header-left a:hover {
	text-decoration: underline;
}

div.app-header-right {
	float: right;
	height: 30px;
}

div.lang {
  display: inline-block;
  width: 24px;
  height: 15px;
  padding: 0 3px;
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
}

div.lang.x-inactive {
  opacity: 0.5;
}

div.lang.x-inactive:hover {
  opacity: 1.0;
}

div.lang-en {
  background: url('img/flag-en.png') no-repeat;
  background-size: 24px 15px;
}

div.lang-cs {
  background: url('img/flag-cs.png') no-repeat;
  background-size: 24px 15px;
}

div.lang-de {
  background: url('img/flag-de.png') no-repeat;
  background-size: 24px 15px;
}

div.app-main {
	width: 100%;
	padding: 0;
	border: solid 1px #7db4fc;
	border-radius: 4px;
	background-color: #fff;
	display: flex;
}

div.app-main-left {
	flex: 1;
	color: #fff;
	background-color: #2d70b2;
	padding: 20px;
}

div.app-main-left-text {
	width: 100%;
	white-space: pre-wrap;
	text-align: center;
	font-family: 'Sansita',Arial,Helvetica,"Nimbus Sans L",sans-serif;
	font-size: 24px;
	margin-top: 60px;
}

div.app-main-left-photo {
	width: 100%;
	aspect-ratio: 1333/893;
	background: url('img/photo-1.jpg') no-repeat center center;
	background-size: contain;
	border-radius: 4px;
}

div.app-footer {
  font-size: 0.75rem;
  color: #2d70b2;
  margin-top: 10px;
  margin-bottom: 20px;  
}

div.app-footer-row {
  width: 100%;
  text-align: center;
}

div.app-main-left-contact {
  font-size: 0.9rem;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 20px;  
}

div.app-main-left-contact-row {
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}

div.app-main-right {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

div.form-row-space {
	height: 16px;
}

div.form-info {
	font-size: 0.8rem;
	margin-bottom: 16px;
}

span.form-info {
	font-size: 0.8rem;
}

div.required-mark {
  color: #f00;
  padding: 2px 5px 0 2px;
  display: inline-block;
  font-family: Monospace, 'Courier New';
  font-size: 14px;
  vertical-align: middle;
  height: 19px;
}

div.required-mark-info {
  color: #f00;
  display: inline-block;
  font-family: Monospace, 'Courier New';
  font-size: 14px;
}

div.form-label {
	font-size: 0.9rem;
	margin-bottom: 3px;
}

div.form-input {
	margin-bottom: 10px;
}

div.form-input input[type="text"], div.form-input input[type="password"], div.form-input input[type="email"], div.form-input textarea {
	width: calc(100% - 10px);
}

div.form-input div.required-mark {
	position: relative;
	margin-left: -20px;
	font-size: 18px;
	height: 24px;
}

div.form-section-switch {
	margin-bottom: 8px;
}

div.form-section {
	padding-bottom: 8px;
}

div.form-section-2 {
	padding-top: 8px;
	padding-bottom: 8px;
}

div.form-buttons {
	padding-top: 4px;
}

input.button-pay-method {
  width: 280px;
  margin-right: 8px;
  margin-bottom: 10px;
  padding: 10px 12px 10px 60px;
  text-align: left;
}

input.button-pay-method[data-pm="ONLINE_CARD"] {
	background: #2d70b2 url('img/credit-card-yellow.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-pay-method[data-pm="ONLINE_TRANSFER"] {
  background: #2d70b2 url('img/money-transfer-yellow.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-pay-method[data-pm="BANK"] {
  background: #2d70b2 url('img/bank-yellow.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-pay-method[data-pm="CASH"] {
  background: #2d70b2 url('img/coins-yellow.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
  width: 310px;
}

input.button-pay-method[data-pm="ONLINE_CARD"]:hover, input.button-pay-method[data-pm="ONLINE_CARD"].x-selected {
  background: #facd35 url('img/credit-card-blue.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-pay-method[data-pm="ONLINE_TRANSFER"]:hover, input.button-pay-method[data-pm="ONLINE_TRANSFER"].x-selected {
  background: #facd35 url('img/money-transfer-blue.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-pay-method[data-pm="BANK"]:hover, input.button-pay-method[data-pm="BANK"].x-selected {
  background: #facd35 url('img/bank-blue.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-pay-method[data-pm="CASH"]:hover, input.button-pay-method[data-pm="CASH"].x-selected {
  background: #facd35 url('img/coins-blue.png') no-repeat;
  background-size: 24px 24px;
  background-position: 16px center;
}

input.button-price {
	margin-bottom: 10px;
}

input.button-price:focus:not(:hover):not(.x-selected), input.button-pay-method:focus:not(:hover):not(.x-selected) {
	color: #facd35;
  background-color: #2d70b2;
  border: 1px solid #2d70b2;
}

input.button-price.x-selected, input.button-pay-method.x-selected {
	color: #2d70b2;
  background-color: #facd35;
  border: 1px solid #facd35;
}

input.price {
	width: 200px !important;
}

select.currency {
	margin-left: 10px;
}

div.recap-row {
  width: calc(100% - 10px);
  margin-bottom: 1px;
}

div.recap-label {
  display: inline-block;
  width: 25%;
  padding: 2px 0;
  vertical-align: top;
}

div.recap-value {
  display: inline-block;
  width: calc(75% - 20px);
  padding: 2px 0;
  font-weight: bold;
}

.c1704-attr {
  font-weight: bold;
  white-space: nowrap;
}

img.pay-qrcode {
	padding: 10px;
	margin: 16px 0 10px 0;
	border: solid 1px #000;
	width: 154px;
	height: 154px;
}

div.public-error {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: #f00;
}
