.service-page {
    padding-top: 0;
    padding-bottom: 40px;
}
.service-top {
    position: relative;
}
.service-image {
    height: 360px;
}
.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}
.service-img img {
    width: 100%;
}
.bung-item:not(.busy) {
    cursor: pointer;
}
.bung-item.chosen {
    fill: var(--theme-color) !important;;
}
.bung-item.busy {
    fill: red !important;
}
.service-top-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 3;
}
.service-top-actions .fav-btn {
    position: static;
    width: 28px;
    height: 28px;
    background-size: 18px;
    background-color: rgba(255,255,255,0.4);
    background-image: url(../images/icons/heart-white.svg);
}
.service-top-actions .back-btn {
    width: 28px;
    height: 28px;
    background-color: rgba(255,255,255,0.4);
    background-image: url(../images/icons/arrow-left-white.svg);
    background-size: 22px;
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
}
.service-content {
    position: relative;
    margin-top: -20px;
    background: var(--bg-color);
    border-radius: 15px 15px 0 0;
    padding-top: 15px;
    z-index: 2;
}
.service-booking {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    gap: 20px;
}
.service-action {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: var(--bg-color);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    z-index: 9;
}
.service-action > div {
    font-size: 16px;
    font-weight: 600;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
}
.service-action .btn {
    min-width: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
}
.service-error {
    display: block;
    font-size: 12px;
    color: red;
}
.service-times {
    gap: 15px;
    flex-wrap: wrap;
}
.service-time > input {
    display: none;
}
.service-time > label {
    display: block;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--alter-color);
    background: var(--bg-color);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s ease;
}
.service-time > input:checked + label {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}
.service-time > input:disabled + label {
    background: #bfbfbf;
    color: #838383;
    border-color: #bfbfbf;
}
.service-form-block.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.bungalow-map {
    border: 2px solid #eee;
}
.bungalow-help {
    margin-bottom: 10px;
    font-size: 13px;
}
.bungalow-help-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.b-color {
    display: block;
    width: 12px;
    height: 12px;
}
.b-color.b-red {
    background: #ff0000;
}
.b-color.b-chosen {
    background: var(--theme-color);
}
.b-color.b-green {
    background: #2fc72f;
}
.service-type {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
}
.service-type:not(:last-child) {    
    border-bottom: 1px solid rgba(0,0,0,0.12);
}
.service-type-price {
    font-weight: 600;
}
.service-type-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.service-type-info > input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 50%;
    transition: 0.35s ease;
}
.service-type-info > input[type="radio"]:checked {
    background-color: var(--bg-color);
    background-image: url(../images/icons/radio.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-color: var(--theme-color);
}
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled) {
    color: var(--text-color) !important;
}
.services-row {
    flex-wrap: wrap;
    gap: 15px;
}
.service-item {
    flex-direction: column;
    width: calc((100% - 20px) / 2);
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}
.service-item-img {
    height: 150px;
}
.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item-info {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
    padding: 10px;    
}
.service-item-desc {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}
.service-item-desc > p:first-child {
    margin-top: 0;
}
.service-item-desc > p:last-child {
    margin-bottom: 0;
}
.service-item-info .service-item-more {
    width: 100%;
    min-width: 0;
    height: 36px;
    margin-top: auto;
}