#departure,
.overnight-time {
  caret-color: transparent;
}


.wpcf7-form-control.hidden{
	display: none !important;
}

.ptcz-step4-wrap .info-toggle-btn {
	display: none !important;
}

.tlacitko .text-pod-cenou {
    padding: 0;
	margin: 0;
    font-size: 12px;
}
.tlacitko .text-pod-cenou-wrapper {
	width: 100%;
    display: block;
    text-align: right;
    padding: 0;
    font-size: 12px;
    margin-top: -5px;
    margin-bottom: 0;
}

.custom-select2 {
  position: relative;
  width: 100%;
  min-width: 110px;
  font-family: inherit;
  font-size: 16px;
}

/* Vybraná položka */
.custom-select2 .selected {
    border: none;
    border-radius: 16px;
    padding: 0px 40px 0px 0px;
    background-color: white;
    cursor: pointer;
    color: var(--placeholderselectcolor);
    position: relative;
    display: flex;
    align-items: center;
}

/* Šipka (SVG z tvého původního selectu) */
.custom-select2 .selected::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg width='16' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M2 4l6 6 6-6' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 14px;
  pointer-events: none;
}

/* Seznam možností */
.custom-select2 .options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 100;
  display: none;
}

.custom-select2.open .options {
  display: block;
}

/* Jednotlivá položka */
.custom-select2 .options li {
  color: #1C1C2E;	
  padding: 7px 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-select2 .options li:hover {
  background-color: #f4faff;
}

/* Texty */
.custom-select2 .main-text {
  display: block;
}

.custom-select2 .sub-text {
  display: block;
  font-size: 14px;
}



.custom-select {
  position: relative;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
}

/* Vybraná položka */
.custom-select .selected {
  border: 1px solid var(--formb);
  border-radius: 16px;
  padding: 20px 50px 20px 15px;
  background-color: white;
  cursor: pointer;
  color: var(--placeholderselectcolor);
  position: relative;
  display: flex;
  align-items: center;
}

/* Šipka (SVG z tvého původního selectu) */
.custom-select .selected::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg width='16' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M2 4l6 6 6-6' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 14px;
  pointer-events: none;
}

/* Seznam možností */
.custom-select .options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 100;
  display: none;
}

.custom-select.open .options {
  display: block;
}

/* Jednotlivá položka */
.custom-select .options li {
  color: #1C1C2E;	
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-select .options li:hover {
  background-color: #f4faff;
}

/* Texty */
.custom-select .main-text {
  display: block;
}

.custom-select .sub-text {
  display: block;
  font-size: 14px;
}


.trip-stops .stop-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trip-stop-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.trip-stop-image img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
}

.trip-stop-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--barvap);
}

.trip-stop-content p {
  font-size: 0.95rem;
  color: var(--barvap);
}

@media (max-width: 768px) {
  .trip-stop-item {
    flex-direction: column;
  }
  .trip-stop-image img {
    width: 100%;
    height: auto;
    margin-bottom: 0.75rem;
  }
}


option {
    outline: none;
    border: none;
	padding: 5px !important;
}

.trip-seo .share-reservation .copy-tooltip {
    top: -15px;
}
.share-reservation .copy-tooltip {
    top: -35px;
}
.clean-reservation .clean-tooltip {
    top: -35px;
}

.clean-tooltip {
  position: absolute;
  top: -32px;
  left: 0;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 16px;;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

.clean-code-wrap.show-tooltip .clean-tooltip {
  opacity: 1;
}

.share-reservation {
	display: flex;	
	height: 100%;
    justify-content: flex-end;	
}
.copy-btn {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.copy-btn-reservation {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.copy-btn-reservation i {
	color: #1C1C2E;
	font-size: 18px;
}

.sticky-price-label {
	font-size: 14px;
}

.sticky-price-wrapper {
	min-width: 105px;
}
.sticky-price {
	font-weight: 600;
}

.tlacitko {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}


.tlacitko-info .price-label {
  color: #1C1C2E;
  font-weight: 500;
}

.tlacitko-info .price-value {
  color: red;
  font-weight: bold;
  font-size: 18px;
}

.tlacitko-info {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  text-align: left;
}

@media(min-width:991px) {
	.text-pod-cenou-wrapper {
		display: none !important;
	}
	.tlacitko-info {
		display: none !important;
	}
}

/* Responsivní rozložení pod 991px */
@media (max-width: 991px) {
.tlacitko.sticky-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

  .tlacitko.sticky-fixed #continue-btn {
    width: 100%;
    margin: 0;
  }
.tlacitko.sticky-fixed {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.tlacitko.sticky-fixed .tlacitko-info {
  display: flex;
  flex-direction: row;
  text-align: left;
  font-size: 14px;
  min-width: 105px;	
}
	
.ptcz-step3-wrap .tlacitko.sticky-fixed .tlacitko-info, .ptcz-step4-wrap .tlacitko.sticky-fixed .tlacitko-info {
  flex-direction: row !important;
}

.tlacitko.sticky-fixed .tlacitko-info .price-label {
  color: #1C1C2E;
  font-weight: 500;
}

.tlacitko.sticky-fixed .tlacitko-info .price-value {
  color: #1C1C2E;
  font-weight: bold;
  font-size: 18px;
}	
	
  .tlacitko {
    flex-direction: column;
    align-items: stretch;
  }

  .tlacitko-info {
    width: 100%;
  }

  .tlacitko-buttons {
	display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .tlacitko-buttons button {
    flex: 1 1 48%;
  }
}

.tlacitko-buttons {
	width: 100%;
}

.form-group.hidden {
	display: none !important;
}

.time-row {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-wrap: nowrap;
}

@media (max-width: 600px) {
  .time-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .time-row .flatpickr-time {
    width: 100%;
  }

  .time-row .newbuttonpc {
	margin-left: 0 !important;
    width: 100%;
    text-align: center;
  }
}


.icon-right {
	margin-top: 0 !important;
}

@media(max-width:1200px) {
  .checkbox-group .seat-item {
    width: 100% !important;
  }	
}

@media (max-width: 991px) {
  .map-container {
    margin-top: 30px;
    margin-bottom: 30px;
    height: 300px;
  }

	#map {
	  height: 300px !important;
	}
	
	.ptcz-left {
		min-width: 100% !important;
	}
	.ptcz-right {
		min-width: 100% !important;
	}		
}

.add-note {
	background: #58C2F414;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #58C2F4;
    padding: 8px 10px;	
}
.add-note:hover {
	background: #58C2F4;
    border: none;
    color: #fff;
}
.add-note:hover i {
    color: #fff;
}

.note-line {
	margin-top: 5px;
}

.modal-stop-index {
	margin-bottom: 0 !important;
}

.modal-save-note {
	width: 100%;
}

.modal-wrap {
	display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;	
}

.stop-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;	
	align-items: flex-start;
}

.stop-photo img {
  width: 72px;
  height: 60px;
  object-fit: cover;
  border-radius: 16px;
}
.stop-photo img:hover {
	cursor: pointer;
}

.stop-name {
	color: #1C1C2E;
	font-weight: 500;
}

.stop-rating {
  font-size: 14px;
  color: #6B6B6B;
  margin-top: 5px;
  font-weight: 400;  
  min-height: 15px;
}

.stop-label-start,
.stop-label-end {
    display: flex;
    color: #58C2F4;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.destination-wrapper {
  position: relative;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.arrival-label {
  font-size: 14px;
  font-weight: 500;
  color: #6B6B6B;
  white-space: nowrap;
}

.destination-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.destination-input-wrap input.autoComplete {
  flex: 1;
  padding-right: 100px;
}

.autoComplete {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.arrival-box {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  pointer-events: none;
  line-height: 1;
}

#autoComplete2 {
	margin-bottom: 0 !important;
}
.destination-input-wrap {
	margin-bottom: 25px;
}

@media (max-width: 600px) {
  .stop-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto !important;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      ".     photo . ."
      "order name  drag remove"
      ".     stop  stop  stop";
    gap: 6px 10px;
    align-items: start;
    padding: 10px 0;
  }

  .drag-handle,
  .remove-stop {
    align-self: start;
  }
  .remove-stop {
    top: -10px !important;
  }
	
  .stop-order {
	 align-self: start; 
     grid-area: order;
	 margin-bottom: 0;
  }

  .stop-photo {
    grid-area: photo;
  }

  .stop-name {
	margin-top: 3px;
    grid-area: name;
  }


  .stop-duration-wrap {
    max-width: 130px !important;
  }

  .stop-duration-wrap select {
    max-width: 130px !important;
  }

  .drag-handle {
    grid-area: drag;
    justify-self: end;
  }

  .remove-stop {
    grid-area: remove;
    justify-self: end;
  }

  .stop-wrap {
    grid-area: stop;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .stop-duration-wrap,
  .overnight-time-wrap {
    grid-column: 1 / 2;
  }

  .add-note {
    grid-column: 2 / 3;
    justify-self: end;
    align-self: end;
    margin-top: auto;
  }
	
	
.overnight-time-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.overnight-label {
  margin: 0;
  white-space: nowrap;
}

.overnight-time {
  min-width: 100px;
  flex-grow: 1;
  padding: 6px 10px;
}
}


@media (max-width: 600px) {
	.stop-header-row {
		display: none !important;
	}

	#stops-list .empty-slot {
		display: none !important;
	}
	.drag-handle {
		margin-left: 0px !important;
	}	
  .car-info {
    display: block !important;
	}
}


.gm-style-iw-chr {
    height: 24px;
}
.gm-style-iw-chr button {
    width: 20px !important;
    height: 20px !important;
    margin-right: 4px !important;
}
.gm-style-iw-chr button span {
    width: 20px;
    height: 20px;
    margin: 0px !important;
}

.poi-suggestions-container {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
}
.poi-suggestion {
  padding: 8px 12px;
  cursor: pointer;
}
.poi-suggestion:hover {
  background-color: #f0f0f0;
}


.map-container {
	width: 100%;
	position: relative;
}

#map {
  position: relative;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 500px;
}

#stops-list {
  list-style: none;
  padding: 0;
  margin-top: 0px;
  margin-bottom: 30px;
}

.stops {
  margin-bottom: 0px;	
  margin-top: 0px;	
}

.stop-header-row {
  display: flex;
  padding: 10px 0px;
  font-weight: 600;
  font-size: 14px;
  color: #1C1C2E;
  border-bottom: 1px solid #e0e0e0;
}

.stop-header-col {
  flex: 1;
}

.stop-name-col {
  flex: 2;
}

.stop-time-col {
  flex: 1;
  text-align: right;
}


#stops-list li {	
  border-radius: 0px;
}

#stops-list li .drag-icon {
  cursor: grab;
  font-size: 18px;
  color: #aaa;
}

.trip-summary-box {
  margin-top: 0px;
  padding: 20px;
  background: #fff;
  font-size: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

#summary-breakdown-wrapper .summary-row:nth-child(1) {
  border-bottom: none !important;
    padding: 10px 0 !important;	
}



.bordertopc {
	border-top: 1px solid #eee !important;
}
.bordertops {
	border-top: 1px solid #000000 !important;
}

.tlacitko .payment {
    background: transparent;
    color: #9b9b9b;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px 5px;
    margin-top: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #9b9b9b;
}
.tlacitko .payment i {
    margin-right: 5px;
    color: #fff !important;
    background: #9b9b9b;
    border-radius: 100%;
    text-align: center;
    padding: 0;
    min-width: 20px;
    height: 20px;
    line-height: 16px;
    font-size: 10px;
}

.summary-title {
	color: #1C1C2E;
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 0px;	
}

#summary-breakdown-wrapper .summary-row {
  border-bottom: 1px solid #eee;
  padding: 10px 0 !important;
}
.tlacitko .payment {
		display: none;
}	
@media (max-width: 991px) {
	.summary-title {
		margin-bottom: 10px !important;
	}	
	.tlacitko .payment {
		display: flex !important;
	}	
#summary-breakdown-wrapper {
		display: none !important;
}

#summary-breakdown-wrapper-down {
    position: relative;
    top: 0;
    left: 0;
    background: white;
    width: 100%;
    height: auto;
    padding: 0px 0px;
    overflow-y: auto;
    z-index: 999999;
    display: none;
}

#summary-breakdown-wrapper-down.show {
    display: block;
}
#summary-breakdown-wrapper-down .summary-row {
		margin: 0px 0;
		padding: 3px 0;
		font-size: 14px;
}
#summary-breakdown-wrapper-down .summary-row:nth-child(1), #summary-breakdown-wrapper-down .summary-row:nth-child(2) {
    border-bottom: none !important;
}	
	
.info-toggle-btn {
    margin-left: 8px;
    cursor: pointer;
    color: #1c1c2e !important;
    font-size: 16px;
    margin-top: 1px;
    float: right;		
}	

.summary-close-btn {
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #58c2f4;
    z-index: 10;
    background: #f4f4f4;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 29px;
}
  .summary-row {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
  }
}


.summary-row-info {
    display: flex;
    justify-content: flex-end;
	text-align: right;
}
.summary-row-info p {
    font-size: 14px;	
	margin-top: 0px;
	padding-top: 0;
}

.summary-row-info-final {
    display: flex;
    justify-content: flex-start;
	text-align: left;
}
.summary-row-info-final p {
    font-size: 14px;	
	margin-top: 0px;
	padding-top: 8px;
}

#summary-price {
  font-weight: 700;
  font-size: 24px;
  color: #1C1C2E;
}
#summary-distance, #summary-duration {
  font-weight: 500;
  font-size: 16px;
  color: #1C1C2E;
}

.empty-slot {
  width: 100%;
  height: 1em;
}

.car-section {
  background: #6B6B6B14;
  border: 1px solid #6B6B6B29;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.note-section {
  background: #6B6B6B14;
  border: 1px solid #6B6B6B29;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.car-info {
  display: flex;
  align-items: flex-start;
}

.car-image {
  max-width: 240px !important;
}

.car-title {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #000 !important;
  margin-bottom: 10px;
}
.car-photo {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.car-details {
	min-width: 215px;
}
.car-details ul {
	margin: 0;
	padding: 0;
}
.car-details ul li {
	list-style: none;
    color: #6B6B6B;
}

.ptcz-reservation {
	clear: both;
	margin-top: 30px;
}

.ptcz-reservation .newbutton {
	width: 100%;
}
.ptcz-reservation .calculate {
    width: 100%;
    background-color: #efefef;
    color: #000;
    padding: 20px 150px 20px 150px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    display: inline-block;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    border: none;
    cursor: pointer;
    background-repeat: no-repeat;
    transition: all 0.3s;
    margin-bottom: 15px;
  transition: all 0.3s;
}
.ptcz-reservation .calculate:hover {
	background: #000;
	color: #fff;
}
.ptcz-reservation #map {
	border-radius: 16px;
}
.ptcz-reservation h3 {
	margin-bottom: 0px !important;
}
.ptcz-reservation label {
	color: #6B6B6B;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	display: block;	
}
.ptcz-reservation .labelz {
    color: #1C1C2E;
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 12px;
}
.ptcz-reservation .form-group p {
    font-size: 16px;
    color: #6B6B6B;
}
.labelz img {
	max-width: 21px;
}
.ptcz-progress {
	display: flex; margin-bottom: 20px;
}
.ptcz-progress .ptcz-step:last-child {
	margin-right: 0 !important;
}
.ptcz-step {
    flex: 1;
    height: 3px;
    margin-right: 10px;
    background: color(srgb 0.35 0.76 0.96 / 0.16);
    border-radius: 0px;
}
.ptcz-step.active {
	background: #58C2F4;
}
.ptcz-step1-wrap {
	display: flex;
	gap: 40px;
	flex-wrap: nowrap;
}
.ptcz-step2-wrap {
	display: flex;
	gap: 40px;
	flex-wrap: nowrap;
}
.ptcz-step3-wrap {
	display: flex;
	gap: 40px;
	flex-wrap: nowrap;
}
.ptcz-step4-wrap {
	display: flex;
	gap: 40px;
	flex-wrap: nowrap;
}
.ptcz-left {
	flex: 1 1 50%;
	min-width: 300px;
}
.ptcz-right {
	position: relative;
	flex: 1 1 50%;
	min-width: 300px;
}
.ptcz-left input, .ptcz-left select, .ptcz-left textarea{
	width: 100%;
	padding: 20px 15px;
	margin-bottom: 30px;
	border-radius: 16px;
}
.ptcz-left .custom-select {
	width: 100%;
	margin-bottom: 30px;
}
.modal-body textarea {
	padding: 10px;
}

input#search-poi {
	padding-right: 40px !important;
}
.input-wrapper {
	position: relative;
	margin-top: 0px;
}
.input-wrapper .search-icon {
  position: absolute;
  right: 5px;
  top: 23px;
  pointer-events: none;
  color: #6B6B6B;
  font-size: 18px;
}

#selected-stops ul {
	list-style: none;
	padding-left: 0;
}

::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 0px;
}

#poi-results {
  background: #fff;
  border: 1px solid #6B6B6B29;
  border-radius:16px 0px 0px 16px;
  margin-top: -5px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);	
}

.poi-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #99999929;
    cursor: pointer;
    transition: background 0.2s ease;
}

.poi-item:last-child {
  border-bottom: none;
}

.poi-item:hover {
  background-color: #f5fbff;
}
.poi-item:hover strong {
  color: #58C2F4;
}


.poi-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.poi-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}


.poi-info img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  border-radius: 16px;
  object-fit: cover;
}



.poi-info strong,
.poi-info span {
  display: block;
  line-height: 1.2;
}


.poi-info strong {
  font-size: 15px;
  color: #222;
  display: block;
  margin-bottom: 3px;
}

.poi-info span {
  color: #666;
  font-size: 13px;
}
.remove-stop {
    color: #6B6B6B;
    background: transparent;
    border: none;
    font-size: 30px;
    top: -3px;
    right: 0;
    position: relative;
}
.remove-stop:hover {
	color: var(--formbhover) !important;
}
.ptcz-step1-wrap #stops-container {
	margin-bottom: 30px;
}
.ptcz-step2-wrap #stops-container {
	margin-bottom: 40px;
}

.mapboxgl-popup-close-button:hover, .maplibregl-popup-close-button:hover {
    background-color: transparent !important;
	color: var(--formbhover) !important;
}

.mapboxgl-popup-content, .maplibregl-popup-content {
    border-radius: 16px !important;
    box-shadow: none !important;
    padding: 5px 25px 5px 8px !important;
    font-family: "Inter Tight", sans-serif !important;
}
.mapboxgl-popup-tip, .maplibregl-popup-tip {
    border: none !important;
    height: 15px !important;
    width: 15px !important;
}
.mapboxgl-popup-close-button, .maplibregl-popup-close-button {
    border-radius: 16px !important;
    font-size: 18px !important;
    right: 2px !important;
}

input.readonly {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--formb) !important;
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
    padding-right: 0px !important;
	padding-left: 0px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;	
    border-radius: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.stop-item .stop-name span {
	text-decoration: underline;
}
.stop-item .stop-name span:hover {
	text-decoration: none;
}

.stop-item {
  display: grid;
  grid-template-columns: 26px 80px 1fr auto auto auto;
  align-items: center;
  gap: 10px;
}
.stop-item {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border-bottom: 1px solid var(--formb) !important;
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
    padding-right: 0px !important;
	padding-left: 0px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;	
    border-radius: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.stop-item:hover {
    border-bottom: 1px solid var(--formbhover) !important;
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
}

/* Při aktivním dragování */
.drag-handle:active {
  cursor: grabbing;
}
.drag-handle:hover {
  cursor: grabbing;
}
.drag-handle:hover i {
	color: var(--formbhover) !important;
}

.stop-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stop-order {
  background: #58C2F43D;
  color: #58C2F4;
  font-weight: bold;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
	margin-bottom: 5px;
}
.stop-duration-wrap {
    position: relative;
    display: inline-block;
}
.stop-duration {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  max-width: 130px !important;
  border: none !important;
  padding-left: 0px !important;
  padding-right: 30px !important; /* místo pro šipku */
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  font-size: 16px;
  font-weight: 500;
  color: #1C1C2E;
  margin-bottom: 0 !important;
}

/* Vlastní šipka */
.stop-duration {
	display: none !important;
}

.stop-duration-wrap::after {
	display: none !important;
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%236B6B6B' d='M31.5 192h257c17.8 0 26.7 21.5 14.1 34L174.1 386c-7.8 7.8-20.5 7.8-28.3 0L17.4 226c-12.6-12.5-3.7-34 14.1-34z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.overnight-time-wrap {
    position: relative;
    display: inline-block;
	max-width: 120px;
}
.overnight-time-wrap::after {
    content: "";
    position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 14px;
	right: 0px;
  background-image: url("data:image/svg+xml;utf8,<svg width='16' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M2 4l6 6 6-6' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 14px;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
}

.overnight-time {
	margin-bottom: 0 !important;
	padding: 0px !important;
	border: none !important;
	font-weight: 500;
	font-size: 16px !important;
	color: #6B6B6B;	
    width: 70px !important;	
	min-width: inherit !important;
}

.overnight-time-wrap {
	align-items: center;
    gap: 10px;
}

.overnight-label {
	padding-left: 0px;
	margin-bottom: 0px !important;
	font-weight: 500;
	font-size: 16px !important;
	color: #6B6B6B;
	width: 50px;
}

.overnight-info-icon {
    color: rgb(182, 187, 196) !important;
    right: -30px;
    top: 2px;	
    position: absolute;
}
.overnight-info-icon:hover {
    color: #1C1C2E !important;
}



.drag-handle {
    margin-left: 15px;	
	padding-left: 5px;
}

/* Styl při přetahování */
.sortable-chosen {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: scale(1.02);
}

/* Místo, kam se prvek přesune */
.sortable-ghost {
  opacity: 0.3;
  background: #ddd;
}

.drag-handle i {
	font-size: 24px;
	color: #6B6B6B;
	opacity: 0.4;
}


.stop-input {
    border-bottom: 1px solid var(--formb) !important;
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
	padding-left: 0 !important;
    padding-right: 40px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;	
    border-radius: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.stop-input:hover {
    border-bottom: 1px solid var(--formbhover) !important;
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
}
.stop-input-wrap {
	position: relative;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.checkbox-group2 {
  margin-bottom: 30px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
  font-weight: 500;
  color: #1C1C2E;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group2 label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
  font-weight: 500;
  color: #1C1C2E;
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox-group .seat-item {
  width: calc(50% - 8px);
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
  font-weight: 500;
  color: #1C1C2E;
  cursor: pointer;
  margin-bottom: 0;
}

.seat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.seat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-button {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    margin-top: 1px;
    float: right;
}
.info-button:hover i {
	color: #1C1C2E !important;
}

.info-button i {
	color: rgb(182, 187, 196) !important;
	padding-right: 0 !important;
}

.seat-qty-wrapper {
    gap: 15px;
    align-items: center;
}

.seat-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
    background: #fff;
    border: 1px solid #6B6B6B29;
    padding: 4px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    color: #58c2f4;
}
.qty-btn:focus, .qty-btn:hover {
	border: 1px solid #1C1C2E !important
}

.qty-value {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
	font-weight: 500;
}


.seat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-height: 26px;	
}

.seat-label {
  min-width: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bottom30 {
	margin-bottom: 30px;
}

@media (max-width: 576px) {
	.tlacitko.sticky-fixed button {
		padding: 10px 30px 10px 30px !important;
	}
.tlacitko.sticky-fixed {
    gap: 5px !important;
}	
.tlacitko .payment i {
    margin-right: 2px;
    min-width: 15px;
    height: 15px;
    line-height: 10px;
    font-size: 6px;
}
    .tlacitko.sticky-fixed {
        padding: 10px 10px 20px 10px !important;
    }
.tlacitko .payment {
    font-size: 12px !important;
    padding: 2px 5px !important;
    margin-top: 0px !important;
	margin-bottom: 5px !important;
}	
	
  .checkbox-group label {
    width: 100%;
  }
  .checkbox-group .seat-item {
    width: 100%;
  }
}
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}


.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 1px solid #6B6B6B29;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: white;
  padding: 0;
  margin: 0;	
}

/* Po zaškrtnutí – volitelný vzhled fajfky */
.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #58C2F4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-group2 input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 1px solid #6B6B6B29;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: white;
  padding: 0;
  margin: 0;	
}

.checkbox-group2 input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #58C2F4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-group-one {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.checkbox-group-one label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 16px;
  font-weight: 500;
  color: #1C1C2E;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group input[type="radio"] {
  width: 24px;
  height: 24px;
  border: 1px solid #6B6B6B29;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: white;
  padding: 0;
  margin: 0;	
}


.checkbox-group input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 13px;
  height: 13px;
  background-color: #58C2F4;
  border-radius: 50%;
}

/* vynucené skrytí, pokud JS ručně "odškrtl" radio */
.checkbox-group input[type="radio"].force-unchecked::after {
  display: none !important;
}


@media (max-width: 576px) {
	.checkbox-group-one label {
		width: 100%;
		display: block !important;
	}
	.checkbox-group-one a {
    padding-left: 0px !important;
	}
	.checkbox-group-one input[type="checkbox"] {
		margin-top: -2px !important;
	}	
}

.checkbox-group-one a {
	padding-left: 5px;
	text-decoration: none;
}
.checkbox-group-one a:hover {
	padding-left: 5px;
	text-decoration: underline;
}
/* Styl checkbox inputu */
.checkbox-group-one input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 1px solid #6B6B6B29;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: white;
  padding: 0;
  margin: 0;
  margin-right: 0.5em;
}

/* Po zaškrtnutí – volitelný vzhled fajfky */
.checkbox-group-one input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #58C2F4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-info-icon {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  margin-left: 6px;
  vertical-align: middle;
}
.btn-info-icon span {
  font-size: 13px;
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background-color: #666;
  color: white;
}



@media(max-width:991px ){
.destination-input-wrap { margin-bottom: 0 !important;}	
.ptcz-step1-wrap { flex-wrap: wrap; }
.ptcz-step2-wrap { flex-wrap: wrap; gap:0 !important; }	
.ptcz-step3-wrap { flex-wrap: wrap; }	
.ptcz-step4-wrap { flex-wrap: wrap; }	
.ptcz-left textarea { margin-bottom: 0px !important;}
.trip-summary-box { padding: 20px 0 !important;}
}

.wpcf7-form {
	position: relative;
}

.wpcf7-form p {
	margin: 0;
	padding: 0;
}
.cf7ascaptcha {
	margin-top: 0px;
	padding-top: 0;
	display: block;
	font-size: 15px !important;
	margin-bottom: 0;
}
.cf7ascaptcha input {
	margin-bottom: 0 !important;
}

.wpcf7-list-item {
    margin: 0 !important;
}
.wpcf7-acceptance {
	margin-bottom: 10px !important;
}

.formular {
	transition: all 0.5s;
}
.wpcf7-submit  {
    padding: 15px 45px !important;
}

@media(max-width:1200px) {
	.wpcf7-acceptance{
		font-size: 14px !important;
	}
}

.formular h3{
	margin-bottom:25px !important;
}


.submit-wrapper {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.submit-wrapper p {
  position: relative;
  margin: 0;
}

.submit-wrapper input[type="submit"] {
  width: 100%;
  padding-right: 40px; /* rezerva pro spinner uvnitř */
  position: relative;
  z-index: 1;
}

.submit-wrapper .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3); /* světlé na tmavém pozadí */
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  background: transparent;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}




.iti {
	width: 100%;
	margin-bottom: 30px !important;	
}
.iti__selected-flag {
    border-radius: 16px 0px 0 16px;
}

.recap-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px; 
  margin-bottom: 0;
}
.recap-list li {
    padding: 15px 0;
    border-bottom: 1px solid #6B6B6B1F;
    display: flex;
    align-items: flex-start;
    color: #1C1C2E;
    font-weight: 500;
}

.recap-list li:last-child {
    border-bottom: none !important;
    padding-bottom: 0;
    margin-bottom: 0;
}
.recap-list .sluzba_vypis {
    padding: 0;
	margin: 0;

}
.recap-list .sluzba_vypis li {
    padding: 0;
    border-bottom: none;
	display: block !important;
	padding-bottom: 5px !important;
}
.recap-list li p {
	padding: 0;
	margin: 0;
}
.recap-list strong {
  display: inline-block;
  min-width: 180px;
  color: #1C1C2E !important;
  font-weight: 400;
}

input[type=date], input[type=tel], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea, select {
	font-family: "Inter Tight", sans-serif !important;
	font-size: 16px;
	border: 1px solid var(--formb);
	margin-bottom: 25px;
	border-radius: 16px;
	background-color: #fff;
	padding: 20px 15px;
}

input[type=text]:hover, input[type=email]:hover, textarea:hover, input:focus, select:hover, select:focus, textarea:focus, input:focus-visible, textarea:focus-visible, input[type=number]:hover, input[type=number]:focus, input[type=number]:focus-visible, input[type=tel]:hover, input[type=tel]:focus, input[type=tel]:focus-visible {
	outline: none;
	border: 1px solid var(--formbhover);
}
.wpcf7-submit:focus, .wpcf7-submit:focus-visible { 
	outline: none;
	border: none !important;
}

.iti__arrow {
    margin-left: 3px !important;
    height: 100% !important;
    appearance: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg width='16' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M2 4l6 6 6-6' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-opacity='0.4'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 10px;
    background-color: transparent;
    border: none !important;
    width: 13px !important;
}



select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg width='16' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M2 4l6 6 6-6' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 14px;

  background-color: white;
}


.wpcf7-list-item-label a:hover {
	text-decoration: none;
}

span[data-name="acceptance-897"] .wpcf7-not-valid-tip {
    text-align: center;
    margin-top: 0px;
}
input[type=date], input[type=tel], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
textarea {
	height: 115px;
	min-height: 115px;
	max-height: 500px;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 10px;
}

::placeholder, select {
	color: var(--placeholderselectcolor);
}

.wpcf7-acceptance, .wpcf7-acceptance a {
	font-size: 14px;
}
.wpcf7-acceptance a {
	text-decoration: underline;
}

.cf7as-captchcode .wpcf7-not-valid-tip {
    margin-top: 0;
}

.wpcf7-form-control:not(textarea).wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border-color: #dc3545; /* červený okraj */
  background-image: radial-gradient(circle, #dc3545 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: right 10px top 10px;
  background-size: 4px 4px;
}

.wpcf7-form-control.wpcf7-not-valid {
  animation: shake 0.2s 2;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}


.wpcf7-not-valid-tip {
	display: none !important;
}

.wpcf7-acceptance{
    width: 100%;
    text-align: center;
    display: block;
}

.wpcf7-response-output {
    border-color: #c6e5b0 !important;
    background: #c6e5b0 !important;
    color: #4a742c !important;
    font-size: 13px;
    font-weight: 500;
    border-radius: 16px;
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: #e9d2d2!important;
    background: #e9d2d2!important;
    color: #7e4848 !important;
    font-size: 13px;
    font-weight: 500;
	border-radius: 16px;
	text-align: center;
}

/*Detail místa*/
#place-detail-content img {
	border-radius: 16px;
}

.place-detail-modal-content {
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  border: none;
  max-width: 700px;
}

.place-detail-header img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}


.place-detail-body .detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.place-detail-body .detail-row i {
    width: 20px;
    text-align: center;
    color: var(--barvaodkazuhover);
    padding-right: 0;
}


.stop-name:hover span {
    color: var(--barvaodkazuhover); 
}

.place-detail-body a {
  word-break: break-word;
}

/* Grid rozložení */
.place-detail-body.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Levý a pravý sloupec */
.detail-left,
.detail-right {
  display: flex;
  flex-direction: column;
}

/* Jednotlivé řádky */
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.detail-row i {
  color: #58C2F4;
  min-width: 20px;
  text-align: center;
}

/* Otevírací doba */
.detail-opening-title {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1C2E;
}

.opening-hours div {
  padding: 4px 0;
}

/* Responzivní úprava pro mobily */
@media (max-width: 767px) {
  .place-detail-body.grid-layout {
    grid-template-columns: 1fr;
  }

  .detail-left,
  .detail-right {
    width: 100%;
  }
}
.opening-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 6px;
  column-gap: 12px;
  font-size: 15px;
}

.opening-hours-grid .day {
  font-weight: 500;
  white-space: nowrap;
}

.detail-opening-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 125% !important;
    margin-bottom: 20px !important;
    color: var(--pbarvah3) !important;
    margin-top: 27px !important;
    padding-bottom: 0 !important;
}

.place-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  grid-auto-rows: 100px;
}

.photo-large {
  grid-column: span 4;
  grid-row: span 2;
}

.photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.place-detail-body.two-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.place-main-info {
  flex: 1 1 56%;
}

.place-opening-info {
  flex: 1 1 40%;
}

@media (max-width: 768px) {
  .place-detail-body.two-cols {
    flex-direction: column;
  }
  .place-main-info,
  .place-opening-info {
    flex: 1 1 100%;
  }

  .place-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-large {
    grid-column: span 2;
  }
}

.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.opening-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 3px;
}

.timev {
	display: block;
    margin-left: 14px;	
}


@media (min-width: 992px) {
    .modal-xl {
        max-width: 700px;
    }
}

.flatpickr-calendar.hasTime .flatpickr-time {
    border: 1px solid #eee;
    width: 130px;
    margin-top: 10px;
    padding: 0;
}
.flatpickr-time .flatpickr-am-pm {
    width: 25% !important;
}
.flatpickr-calendar {
    background: #fff;
    box-shadow: none !important;
	width: 100% !important;
}
.flatpickr-innerContainer {
    display: block !important;
    display: -webkit-block !important;
    display: -ms-block !important;
    width: 100% !important;
}
.flatpickr-rContainer {
	width: 100%;
}
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
    color: var(--barvaodkazuhover) !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--barvaodkazuhover) !important;
}

.flatpickr-time input {
	font-size: 16px !important;
}
.flatpickr-calendar  .custom-time-label {
    font-weight: 500;
    margin-bottom: 0px;
    text-align: left;
    margin-top: 10px;
    font-size: 16px;
    color: #3c3f40;
}
@media(min-width:768px) {
.flatpickr-calendar .flatpickr-days {
    gap: 10px;
}	
}
.flatpickr-calendar .flatpickr-days {
	width: 100% !important;
}
.flatpickr-calendar .flatpickr-days .dayContainer {
	width: 100%;
    max-width: 100%;	
}

#departure:hover {
	cursor: pointer;
}
#calendar-detail-modal .modal-body {
    padding: 40px 15px 30px 15px;
}
#calendar-detail-modal .close {
    margin-top: -30px !important;
    margin-right: -5px!important;
}
@media (max-width: 768px) {
    #calendar-detail-modal .modal-body {
        padding: 40px 15px 30px 15px !important;
    }
}

.form-group.checks a{
	text-decoration: none !important;
}
.form-group.checks a:hover{
	text-decoration: underline !important;
}
.form-group.checks label {
    display: flex;
    align-items: start;
    flex-wrap: wrap; /* povolíme zalomení */
	gap:5px;
	margin-bottom: 15px;
}

.form-group.checks input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

/* Desktop a tablety – držet v jedné řádce */
@media (min-width: 500px) {
    .form-group.checks label {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}
#ptcz-contact-form label {
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
/* Na mobilech – checkbox nad textem, vše zarovnáno na střed */
@media (max-width: 499px) {
    .form-group.checks label {
        flex-direction: row;
        align-items: start;
        text-align: left;
    }
}

