.rez-kal-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: .6rem;
}
.rez-kal-day {
position: relative;
aspect-ratio: 1/1;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--light-blue);
font-size: 1.4vw;
font-weight: 700;
letter-spacing: 1.5%;
line-height: 100%;
border-radius: 5px; cursor: pointer;
}
@media screen and (max-width: 768px) {
.rez-kal-day {
font-size: 5.4vw;
}
}
.rez-kal-day:hover,
.rez-kal-day:focus {
background: var(--light-green);
}
.rez-kal-day.rezervacia-pol {
background: linear-gradient(135deg, var(--light-blue) 50%, var(--yellow) 50%);
}
.rez-kal-day.rezervacia-pol:hover,
.rez-kal-day.rezervacia-pol:focus {
background: linear-gradient(135deg, var(--light-green) 50%, var(--yellow) 50%);
color: var(--brown);
}
.rez-kal-day.rezervacia-full {
background-color: var(--yellow);
color: var(--brown);
font-weight: bold;
}
.rez-kal-nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.rez-kal-prev,
.rez-kal-next,
.rez-kal-prev:focus,
.rez-kal-next:focus {
cursor: pointer;
background: orange;
border-radius: 50px;
aspect-ratio: 1/1;
color: var(--brown);
font-size: 25px;
}
.rez-kal-prev:hover,
.rez-kal-next:hover {
background: var(--brown);
color: var(--yellow);
}
.rez-kal-blank {
visibility: hidden;
}
.rez-kal-selected {
border: 2px solid var(--orange);
background-color: #ffe08a !important;
}
#rezervacny-kalendar-wrapper .rez-kal-double {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}
@media (min-width: 1280px) {
#rezervacny-kalendar-wrapper .rez-kal-double {
max-width: 82%;
margin: 0 auto;
} 
}
@media (max-width: 768px) { #rezervacny-kalendar-wrapper .rez-kal-double {
grid-template-columns: 1fr;
row-gap: 3rem;
column-gap: 0;
}
} .rez-kal-tooltip {
position: absolute;
top: -67px;
left: 50%;
transform: translateX(-50%);
color: var(--wheat);
padding: 6px 25px;
border-radius: 10px;
text-align: center;
font-size: 13px;
font-weight: 500;
line-height: 20px;
white-space: nowrap;
z-index: 999;
display: none;
}
.rez-kal-tooltip img,
.rez-kal-tooltip svg  {
position: absolute;
z-index: -1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
object-fit: fill;
}
.rez-kal-tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -2px);
background: transparent url(//obrovo.sk/wp-content/plugins/obrovo/assets/img/bg-podklad__time-calendar__triangle.png) 
center center no-repeat;
background-size: 100%;
width: 22.5px;    
height: 19px;
}
.rez-kal-day:hover .rez-kal-tooltip {
display: block;
} .rez-kal-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
font-weight: bold;
text-align: center;
margin-bottom: 5px;
}
.rez-kal-weekdays > div {
position: relative;
aspect-ratio: 1/1;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
letter-spacing: 1.5%;
line-height: 100%; color: var(--brown);
} #rezervacia-odpoved {
background: transparent;
width: 34%;
margin: 0 auto;
text-align: center;
}
@media screen and (max-width: 991px) {
#rezervacia-odpoved {
width: 85%;
}   
}
#rezervacia-odpoved p {
font-size: 35px;
font-weight: 900;
line-height: 46px;
color: var(--green);
text-align: center;
}
#rezervacia-odpoved a {
color: var(--orange);
text-decoration: none !important;
}
#rezervacia-odpoved a:hover,
#rezervacia-odpoved a:focus {
text-decoration: underline !important;
}
@media screen and (max-width: 480px) {
.rezervacia-odpoved {
width: 100%;
}
}
@media screen and (max-width: 480px) {
#rezervacia-odpoved img {
max-width: 60%;
margin-top: 50px;
}
} .form-error {
color: red;
font-size: 0.9rem;
position: absolute;
bottom: -1.5rem;
padding: 0 12px;
border-radius: 50px;
}
#rezervacia-form .note div,
.form-error__alert {
text-align: left;
color: var(--orange);
font-size: 22px;
font-weight: 500;
line-height: 100%;
margin-top: 11px;
margin-bottom: 35px;
} .rez-kal-month-label {
font-size: 35px;
font-weight: 900;
line-height: 46px;
color: var(--brown);
text-align: left;
} .rez-kal-grid-container {
position: relative;
padding: 46px 49px 64px 52px;
}
@media screen and (max-width: 480px) {
.rez-kal-grid-container {
padding: 35px;
}
}
.rez-kal-grid-container .rez-kal__bg-img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
z-index: -1;
} .rez-kal-footer {
display: block;
text-align: center;
margin: 55px auto;
cursor: pointer;
}
.rez-kal-footer.active {
display: none;
} #rezervacia-form.hidden {
display: flex !important;
}
form,
#rezervacia-form {
display: flex;
flex-direction: column;
gap: 19px;
width: 100%;
margin: 71px auto 0;
}
.cutko-input__wrapper-message {
position: relative;
width: 100%;
}
.cutko-input__wrapper-message.has-error {
border: 2px solid red;
border-radius: 50px;
}
@media screen and (min-width: 768px) {
form,
#rezervacia-form {
width: 60%;
}
}
.form-row {
display: flex;
gap: 26px;
}
@media screen and (max-width: 768px) {
.form-row {
flex-direction: column;
}
} .btn__vylety-send {
margin-top: 31px;
} .checkbox-label {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
font-size: 15px;
cursor: pointer;
}
.checkbox-label span {
font-size: 22px;
font-weight: 500;
line-height: 100%;
color: var(--brown);
width: 80%;
} .checkbox-label input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
position: relative;
width: 40px !important;
height: 40px !important;
border: 2px solid var(--wheat) !important;
border-radius: 50%;
background-color: var(--wheat);
cursor: pointer;
transition: all 0.2s ease;
padding: 0 !important;
}
.checkbox-label input[type="checkbox"].has-error {
border: 2px solid red !important;
} .checkbox-label input[type="checkbox"]:hover {
box-shadow: 0 0 0 2px rgba(243, 122, 77, 0.3);
} .checkbox-label input[type="checkbox"]:checked {
background-color: #f37a4d;
border-color: #f37a4d;
} .checkbox-label input[type="checkbox"]:checked::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(45deg);
width: 8px;
height: 16px;
border: solid var(--wheat);
border-width: 0 2px 2px 0;
} .custom-number-input {
position: relative;
display: flex;
align-items: center;
gap: 4px;
width: 100%;
}
.custom-number-input input[type=number] {
width: 60px;
text-align: center;
padding: 5px;
}
.custom-number-input button {
border: none;
outline: none;
background: var(--orange);
border: 1px solid var(--brown);
padding: 5px 10px;
cursor: pointer;
user-select: none;
font-weight: bold;
color: var(--wheat);
border-radius: 5px;
font-size: 16px;
}
.custom-number-input button:hover,
.custom-number-input button:focus,
.custom-number-input button:active {
background: var(--brown);
color: var(--wheat);
}
.btn-decrement {
position: absolute;
left: 10px;
}
.btn-increment {
position: absolute;
right: 10px;
} .datum__input {
box-sizing: border-box;
width: 100%;
height: 100%;
background: var(--wheat);
display: flex;
align-items: center;
border-radius: 50px;
font-size: 18px;
font-weight: 900;
color: var(--gray);
background-color: var(--wheat);
padding: 25px 37px 25px 26px !important;
line-height: 21px;
}
.datum__input.filled {
color: var(--brown) !important; }
@media screen and (max-width: 480px) {
#cutko-rez-form__container {
padding-top: 0;
padding-bottom: 25px;
}
}
@media screen and (min-width: 480px) {
.widget.widget_cutko_story_widget {
padding: 45px 0 90px;
}
.widget.widget_cutko_galerie_widget {
padding: 85px 0 45px;
}
}
@media screen and (max-width: 480px) {
.widget.widget_cutko_galerie_widget {
padding-bottom: 65px;
}
} .cutko-input__wrapper-message select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
width: 100%;
height: 100%;
border: none !important;
outline: none !important;
border-radius: 50px;
background: var(--wheat);
padding: 25px;
font-family: 'Mikado', sans-serif;
color: var(--brown);
font-weight: 700 !important;
font-size: 16px;
cursor: pointer !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C4956A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 25px center;
} .input-wrapper { position: relative; }
.error-bubble {
display: none;
position: absolute;
top: 75%;
right: 50%;
transform: translate(50%, 0);
background: #ff4444;
color: white;
padding: 5px 10px;
border-radius: 100px;
font-size: 12px;
width: fit-content;
white-space: nowrap;
}
.error-bubble.show { display: block; }