body.page{
    overflow-x: hidden;
}

#header-background:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.filter-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: #eee;
    padding: 0;
    gap: 0;
    border: 3px solid #770809;
    align-items: center;
}
.filter-row .filter-col{
    margin: 0;
}

.hotels-filters-selection{
    font-size: 2rem;
    color: #770809;
    font-weight: bold;
    margin-bottom: 2rem;
}
/*
.filter-destinations {
    
}

.filter-destination-label {
    cursor: pointer;
    border: 1px solid #666;
    padding: 10px 15px;
    border-radius: 0;
    position: relative;
    background: #fff;
    color: #000;
    display: inline-block;
}
.filter-destination-label:after{
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: relative;
    margin-left: 10px;
}

.filter-destination-menu {
    display: none;
    width: 200px;
    position: absolute;
    background: whitesmoke;
    border: 1px solid #666;
    list-style: none;
    padding: 0;
    z-index: 10;
    font-size: .9rem;
}
.filter-destination-menu li{
    padding: .2rem 0 .2rem .75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.filter-destination-menu-expand{
    cursor: pointer;
    padding: 0 .5rem;
    font-size: .75rem;
    width: 17%;
}

.filter-destination-menu-field {
    cursor: pointer;
}
.filter-destination-menu-name{
    flex-grow: 1;
}
.filter-destination-menu-field .filter-destination-menu-name:hover {
    color: #770809;
}



.filter-location-menu {
    display: none;
    list-style: none;
    padding: 0;
    width: 100%;
}
.filter-location-menu li{
    padding: .125rem .5rem;
}

.filter-location-menu-field {
    cursor: pointer;
}

.filter-location-menu-field:hover {
    color: #770809;
}

.availability-col{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.availability input[type=date]{
    padding: 10px 15px;
    border: 1px solid #666;
    border-radius: 0;
    cursor: text;
}
*/
.hotels-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hotel-card {
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    text-decoration: none !important;
    margin: 0;
    padding: 0;
    width: calc(33.3333% - 7px);;
}
@media screen and (max-width: 991px){
    .hotel-card {
        width: calc(50% - 5px);
    }
}
@media screen and (max-width: 599px){
    .hotel-card {
        width: 100%;
    }
}

.hotel-card-picture{
    width: calc(100% + 2px);
    margin-left: -1px;
}
.hotel-card-img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
    vertical-align: top;
}
.hotel-card-name {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0 20px;
}
.hotel-availability {
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}
.hotels-pagination {
    float: left;
    width: 100%;
    margin-top: 2rem;
}
.hotels-pagination .pagination-link{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: .9rem;
    border: 1px solid #770809;
}

.hotel-detail-image{
    width: 50%;
    float: right;
    margin-left: 4rem;
    margin-bottom: 2rem;
}

.hotel-detail-description-block {
    margin-bottom: 2rem;
}

.hotel-detail-pictures{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
}
.hotel-detail-pictures-image {
    height: 10vw;
    width: calc(20% - 10px);
}
.hotel-detail-pictures-image img{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hotel-detail-picture-img {
    height: 100%;
}

.hotel-detail-rooms-section{
    padding: 2rem 0;
    position: relative;
    margin-top: 4rem;
}
.hotel-detail-rooms-section:before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: #f5f5f5;
    transform: translateX(-50%);
    z-index: 1;
}
.hotel-detail-rooms-section > *{
    position: relative;
    z-index: 2;
}

.hotel-detail-rooms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-detail-room {
    width: 100%;
    padding: 0 0 2rem 0;
    margin-bottom: 2rem;
    background: #fff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hotel-detail-room-left{
    width: 70%;
}
.hotel-detail-room-right{
    width: 25%;
}
@media screen and (max-width: 991px){
    .hotel-detail-room-left{
        width: 60%;
    }
    .hotel-detail-room-right{
        width: 35%;
    }
}
@media screen and (max-width: 767px){
    .hotel-detail-room-left,
    .hotel-detail-room-right{
        width: 100%;
    }
}

.hotel-detail-room-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #770809;
}

.hotel-detail-room-pictures {
    width: 100%;
    display: flex;
    gap: 10px;
}

.hotel-detail-room-pictures-image {
    width: 100%;
    height: 200px !important;
    display: none;
}
.hotel-detail-room-pictures .hotel-detail-room-pictures-image:first-child{
    display: block;
}

.hotel-detail-room-picture-img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.hotel-detail-room-availability{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.rx-availability-status{
    font-size: 1.2rem;
    font-weight: bold;
}


.hotel-detail-location{
    float: right;
    width: 40%;
    background: #eee;
    padding: 2rem;
    margin: 0 0 2rem 3rem;
    text-align: center;
}
.hotel-detail-location .fas{
    font-size: 3rem;
    color: #770809;
    display: block;
    margin-bottom: 1rem;
}
.hotel-detail-location .hotel-detail-location-label{
    margin-bottom: 0;
}
.hotel-detail-location .hotel-detail-location-address{
    font-size: 1.2rem;
    font-weight: bold;
    color:#770809;
}
.hotel-detail-location .hotel-detail-location-button{
    margin-top: 2rem;
}

.order-room {
    float: left;
}

.order-form-space {
    float: inline-start;
    width: 100%;
}

.order-form {
    display: none;
    margin-top: 2rem;
}
.order-form-title{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #770809;
}

.order-form-guests-box{
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-basis: calc(33.3333% - 10px);
}

.order-title{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #770809;
    margin-top: 2rem;
}
.order-title-sub{
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #770809;
    margin-top: 1rem;
}
.order-table th, .order-table td{
    border: none;
    border-right: none;
}
.order-table th{
    text-align: left;
}


.order-form{
    background: #f9f9f9;
    margin: 0 auto;
    width: 800px;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 2rem;
}
.order-form-row{
    margin-bottom: 1rem;
}
.order-form-row label{
    font-weight: bold;
}
.order-form-row input[type="text"],
.order-form-row input[type="email"],
.order-form-row input[type="tel"],
.order-form-row select{
    width: 100%;
}

.rx-order-form #form-field-hf_pojisteni {
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: absolute;
    z-index: -1;
    padding: 0;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* Add dots under the hoverable text */
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 400px;
  background-color: black;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.insurance-radio {
    vertical-align: middle;
    text-align: center;
}

.insurance-price {
    vertical-align: middle;
    text-align: right;
}

.insurance-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #770809, #b91c1c, #770809);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: loading-animation 2s linear infinite;
}

/* Definice nekonečné animace pohybu */
@keyframes loading-animation {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}