.info_content h2 {
    text-align: left;
}

.pictures {
    text-align: left;
}

.mt-30 {
    margin-top: 30px;
}

/* SLIDE */
.splide__arrow {
    background: #fff;
    border: 1px solid #e5e5e5;
    outline: none !important;
}

.splide__arrow svg {
    fill: #1b1d1f;
}

.splide__pagination__page {
    background: #fff;
    opacity: 1;
    outline: none !important;
}

.splide__pagination__page.is-active {
    background: var(--tree-poppy)
}

.splide__track--draggable {
    -webkit-touch-callout: auto;
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.splide__arrow {
    opacity: 0;
    transition: .4s;
}

.splide:hover .splide__arrow {
    opacity: 1;
}

.splide__arrow:disabled {
    display: none !important;
}

.pos-fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.w-100 {
    width: 100%;
}

.floating-sm-hor {
    animation-name: floating-sm-hor;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating-sm-hor {
    from {
        transform: translate(-5px, 0);
    }
    65% {
        transform: translate(5px, 0);
    }
    to {
        transform: translate(-5px, 0);
    }
}

@-webkit-keyframes floating-sm-hor {
    from {
        transform: translate(-5px, 0);
    }
    65% {
        transform: translate(5px, 0);
    }
    to {
        transform: translate(-5px, 0);
    }
}

#unfinished-reservations {
    position: fixed;
    top: 90px;
    right: 10px;
    z-index: 998;
    max-width: 300px;
    width: 100%;
    border-radius: 7px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    display: none;
}

#unfinished-reservations:empty {
    display: none;
}

#unfinished-reservations:hover {
    background: #F3F3F3FF;
}

#unfinished-reservations a {
    padding: 12px 20px;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

#unfinished-reservations a > * {
    color: #444;
}

#unfinished-reservations a > span {
    display: block;
    margin-bottom: 7px;
}

#unfinished-reservations a span {
    font-weight: 600;
    font-size: 9px;
}

#unfinished-reservations a h6 {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--tree-poppy);
    font-size: 15px;
    font-weight: 600;
}

#unfinished-reservations a strong {
    font-size: 11px;
}

#unfinished-reservations .btn-alert-close {
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
    color: #999;
    font-size: 20px;
    transition: .4s;
}

#unfinished-reservations .btn-alert-close:hover {
    color: #444;
}

/*--------------------------------------------------------------
Amenities
--------------------------------------------------------------*/
.amenities-list {
    padding: 0;
    margin: -5px;
}

.amenities-list li,
.objects-list > li,
.objects-filter-box li {
    display: inline-flex;
    align-items: center;
    list-style-type: none;
}

.amenities-list li,
.objects-filter-box li label {
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin: 5px;
}

.amenities-list li i,
.objects-filter-box li label i {
    display: block;
    margin-right: 10px;
    font-size: 15px;
}

.amenities-list li span,
.objects-filter-box li label span {
    font-weight: 500;
    font-size: 13px;
}

/*--------------------------------------------------------------
Objects
--------------------------------------------------------------*/
.objects-list {
    padding: 0;
    margin: -15px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.objects-list > li {
    margin: 15px;
    flex-direction: column;
    align-items: flex-start;
    max-width: calc(25% - 30px);
}

.objects-list li:not([role="presentation"]),
.objects-list .object-images li a {
    width: 100%;
    height: 100%;
}

.objects-list > li {
    height: auto !important;
    position: relative;
}

.objects-list .object-label, .object-name .object-label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 5px;
    font-size: 10px;
    background: #ffb822;
    color: #111;
    border-radius: 3px;
    font-weight: 500;
    margin: 5px;
}

.objects-list .object-images li a {
    background-position: center;
    background-size: cover;
    border-radius: 10px !important;
    display: block;
}

.objects-list .object-images {
    width: 100%;
    background: #e5e5e5;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .05);
    border-radius: 10px !important;
    overflow: hidden;
}

.objects-list .object-images .splide__track {
    height: 100%;
}

.objects-list .object-images ul.splide__list {
    height: 270px;
}

.objects-list .object-content {
    text-align: left;
    padding-top: 10px;
    height: calc(100% - 280px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.objects-list .object-content h4 {
    font-size: 14px;
    margin-bottom: 7px;
}

.objects-list .object-content h4 + span {
    font-size: 11px;
    color: #999;
    line-height: 17px;
    display: block;
}

.objects-list .object-content div {
    margin-top: 10px;
    display: block;
    font-size: 12px;
    color: #444;
}

.objects-list .object-city {
    color: #999;
    font-size: 11px;
}

.objects-list + .object-muted {
    margin-top: 35px;
}

.no-object {
    display: none;
}

.no-object-box {
    color: #CD1818;
    border: 2px solid #CD1818;
    background: rgba(205, 24, 24, .15);
    padding: 10px;
}

/*--------------------------------------------------------------
Filters
--------------------------------------------------------------*/
.objects-filters {
    margin-bottom: 20px;
    margin-top: 15px;
}

.objects-filters-box {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .05);
    margin-top: 15px;
    display: none;
}

.objects-filters-box > div:not(:first-child) {
    margin-top: 15px;
}

.objects-filters-box h6 {
    font-size: 13px;
}

.objects-filter-box {
    padding: 5px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

.objects-filter-box li label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    transition: .4s;
}

.objects-filter-box li input:checked ~ label {
    background: var(--tree-poppy);
    color: #fff;
}

.objects-filter-box li input[type="checkbox"] {
    display: none !important;
}

.object-filters-search {
    overflow: auto;
    max-width: 100%;
    left: 0;
    width: 100% !important;
    background: var(--tree-poppy);
    position: relative;
}

.object-filters-search .preloader {
    border: 1px solid #e5e5e5;
    background: #fafafa;
}

.object-filters-search form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100% !important;
    overflow: auto;
    padding: 15px;
}

.object-filters-search form > div:not(:nth-child(2)) {
    margin-left: 15px;
}

.object-filters-search form > div > label {
    color: #fff;
    font-size: 11px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .05);
    font-weight: 500;
}

.c-form-group {
    display: flex;
    align-items: center;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
}

.c-form-group .c-form-prepend,
.c-form-group .c-form-append {
    background: #fafafa;
    height: 40px;
    display: flex;
    align-items: center;
    border-right: 1px solid #e5e5e5;
    padding: 0 10px;
    user-select: none;
    cursor: default;
}

.c-form-group .c-form-append {
    border-right: 0;
    border-left: 1px solid #e5e5e5;
}

.c-form-group .c-form-prepend i {
    font-size: 18px;
}

.c-form-group .btn-counter {
    cursor: pointer !important;
}

.c-form-group input {
    font-size: 12px;
    padding: 0 10px;
    height: 40px;
    border: 1px solid #fff;
    background: #fff;
    outline: none !important;
    font-weight: 500;
    cursor: default;
    text-align: center;
    border-radius: 0 !important;
}

.c-form-group input#search-date {
    width: 170px;
    cursor: pointer !important;
}

.object-filters-search button {
    height: 40px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--san-marino);
    color: #fff;
    border-radius: 0;
    margin-left: 15px;
}

.daterangepicker.opensright {
    margin-right: 15px;
}

.daterangepicker.opensleft {
    margin-left: 15px;
}

.daterangepicker td.active:not(.off), .daterangepicker td.active:not(.off):hover {
    background-color: var(--tree-poppy) !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.no-object {
    text-align: center;
}

/*--------------------------------------------------------------
Object
--------------------------------------------------------------*/
#object-gallery {
    width: 100%;
}

.object-galery-list {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: -5px;
    position: relative;
}

.object-galery-list > div:not(.object-galery-more) {
    height: 100%;
    width: 50%;
}

.object-galery-list > .object-gallery-item {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.object-galery-list .object-gallery-item {
    margin: 5px;
    cursor: pointer;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
    overflow: hidden;
}

.no-more-images .object-galery-list > .object-gallery-item {
    width: 100% !important;
    border-radius: 15px;
    cursor: default;
}

.object-galery-list .object-galery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.no-more-images .object-galery-list .object-galery-thumbnails {
    display: none;
}

.object-galery-list .object-galery-thumbnails > .object-gallery-item {
    height: calc(50% - 5px);
    width: calc(50% - 10px);
}

.object-galery-list .object-galery-thumbnails > .object-gallery-item:nth-child(2) {
    border-top-right-radius: 15px;
}

.object-galery-list .object-galery-thumbnails > .object-gallery-item:nth-child(4) {
    border-bottom-right-radius: 15px;
}

.object-galery-list .object-gallery-item > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease
}

#object-gallery:not(.no-more-images) .object-galery-list .object-gallery-item:hover > div {
    transform: scale(1.1);
}

.object-galery-more {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    margin: 5px 15px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    opacity: .7;
    transition: .4s;
}

.magnific-gallery .object-galery-more {
    margin: 15px;
}

.object-galery-more span {
    color: #444;
}

.object-galery-more:hover {
    opacity: 1;
}

.container.no-padding {
    padding: 0 !important;
    max-width: 100% !important;
}

.magnific-gallery {
    display: block;
}

.object-galery-list .more-none {
    display: none;
}

img.mfp-img {
    margin: 0;
}

.object-content > .info_content:first-child h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.object-content .map-target {
    display: inline-flex;
    align-items: center;
    margin-left: -3px;
    margin-bottom: 30px;
    color: #444;
    font-weight: 500;
}

.object-content .map-target span {
    display: block;
    margin-left: 5px;
}

.object-content .map-target:hover span {
    text-decoration: underline;
}

.object-list-info, .object-list-info > li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.object-list-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    padding: 10px;
    background: #fafafa;
}

.object-list-info > li span {
    font-weight: 500;
}

.object-list-info > li * {
    font-size: 12px;
}

.object-list-info > li:not(:first-child) {
    margin-top: 5px;
}

.object-muted {
    font-size: 10px;
    display: block;
    margin-top: 5px;
    color: #999;
}

.object-name {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.object-name h2 {
    margin-bottom: 0 !important;
    margin-right: 10px;
    margin-top: 5px;
}

.object-name .object-label {
    position: relative;
    margin: 5px 0 0;
    inset: 0;
}

.object-price {
    margin-bottom: 10px;
}

.object-price span {
    font-size: 13px;
    font-weight: 600;
    color: #D80032;
    text-transform: uppercase;
}

.reservation-conditions {
    margin-top: 20px;
}

.reservation-conditions ul {
    margin-top: 10px;
}

.object-breadcrumbs {
    margin-bottom: 15px;
    font-weight: 500;
}

.object-breadcrumbs a {
    color: var(--tree-poppy);
}

.object-breadcrumbs a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
Checkout
--------------------------------------------------------------*/
.checkout-reservation .box_booking_2 .main ul li span,
.checkout-reservation .sign_up .main ul li span {
    float: none !important;
}

.checkout-reservation h6:not(.no-style) {
    margin-bottom: 15px;
}

.basket-summary li small {
    font-weight: 500;
    font-size: 12px;
    color: #666;
}

.checkout-reservation .form-control,
.checkout-reservation .c-form-group input,
.checkout-reservation .c-form-group i {
    font-size: 12px;
    font-weight: 500;
}

.checkout-reservation .button-group > button:last-child {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    background: #ffb822;
    color: #111;
}

.checkout-reservation .button-group > button:first-child {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    color: #999;
    opacity: .5;
    filter: brightness(100%) !important;
    margin-right: 8px;
}

.checkout-reservation .basket-summary-cost {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px !important;
    margin-bottom: 20px;
}

.checkout-reservation .basket-summary-cost li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-reservation .basket-summary-cost li:not(.subtotal):not(:first-child) {
    margin-top: 5px;
}

.checkout-reservation .basket-summary-cost li:last-child {
    margin-bottom: 0 !important;
}

.checkout-reservation .basket-summary-cost .subtotal {
    font-size: 10px;
    color: #999;
    padding-left: 20px;
}

.checkout-reservation .object-info {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 7px;
    box-shadow: inset 0 0 12px 0 rgba(0, 0, 0, .05);
}

.checkout-reservation .object-info div {
    width: 65px;
    height: 65px;
    border-radius: 7px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    background-position: center;
    background-size: cover;
    margin-right: 15px;
}

.checkout-reservation .object-info strong {
    color: #000;
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.checkout-reservation .custom-checkbox input {
    display: none !important;
}

.checkout-reservation .custom-checkbox label {
    cursor: pointer;
    padding: 7px;
    font-size: 11px;
    border-radius: 3px;
    border: 1px solid #d2d8dd;
    font-weight: 500;
    transition: .4s;
}

.checkout-reservation .custom-checkbox input:checked + label {
    background: var(--royal-blue);
    color: #fff;
    border-color: var(--royal-blue);
}

.checkout-reservation .invoice-inputs {
    margin-top: 1rem;
    display: none;
    padding: 10px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.checkout-reservation .invoice-inputs h6 {
    font-size: 13px;
}

.checkout-reservation .invoice-inputs > .row:last-child {
    margin-bottom: -1rem;
}

.checkout-reservation .discount-container {
    margin-bottom: 0;
}

.checkout-reservation .basket-summary-cost li.discount-price-wrapper {
    display: none;
    position: relative;
}

.checkout-reservation .btn-delete-discount {
    color: #000;
    position: absolute;
    top: 1px;
    right: -15px;
    font-size: 12px;
    cursor: pointer;
}

.checkout-reservation .custom-select-items > li {
    display: block;
}

.checkout-reservation .hour-of-arrival-info {
    display: block;
    margin-top: 10px;
    font-size: 10px;
}

.checkout-reservation .title-info-product h6 {
    font-size: 12px;
}

.checkout-reservation small {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    color: #777;
}

.checkout-reservation .c-form-group {
    box-shadow: none;
    border: 1px solid #e5e5e5;
}

.checkout-reservation .input-counter {
    width: 100%;
}

.checkout-reservation .c-form-group .c-form-prepend,
.checkout-reservation .c-form-group .c-form-append,
.checkout-reservation .c-form-group input {
    height: 38px;
}

.checkout-reservation h6 + p {
    font-size: 12px;
}

.checkout-reservation .summary-cost-in-object {
    opacity: .6;
}

.checkout-reservation .summary-cost-in-object li.total {
    color: #444 !important;
    font-size: 14px !important;
}

.checkout-reservation .summary-cost-in-object li:not(.total) {
    font-size: 12px !important;
}

.checkout-reservation .basket-summary-cost {
    margin-bottom: 7px;
}

.checkout-instant-booking {
    border: 1px dashed #e5e5e5;
    background: #fafafa;
    padding: 10px;
    border-radius: 3px;
    margin-top: 20px;
    text-align: center;
}

.checkout-instant-booking strong {
    font-size: 12px;
}

.reservation-page .payment-method {
    margin-top: 5px;
    color: #777;
}

.reservation-page .total {
    color: #2748eb;
    font-weight: 700;
    border-top: 1px solid #e5e5e5;
    margin-top: 10px !important;
    padding-top: 10px;
}

.reservation-page .total strong {
    font-weight: 700;
}

.reservation-page .discount-price-wrapper {
    display: flex !important;
}

.reservation-status-alert {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    color: #111;
    text-align: center;
    background: #ffa41b;
    margin-bottom: 45px;
}

.reservation-page.object-content a {
    margin-bottom: 0;
    font-weight: 600;
    text-decoration: underline;
}

.reservation-object-name {
    font-weight: 600;
    color: #444;
    text-decoration: underline !important;
}

.reservation-page .discount-price-wrapper > div {
    display: flex;
    align-items: center;
}

.reservation-page .discount-price-wrapper small {
    margin: 0;
}

/*--------------------------------------------------------------
Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
    .objects-list .object-images ul.splide__list {
        height: 220px;
    }

    .objects-list .object-content {
        height: calc(100% - 230px);
    }

    .object-galery-list {
        height: 400px;
    }
}

@media screen and (max-width: 1100px) {
    .objects-list > li {
        max-width: calc(33% - 27px);
    }
}

@media screen and (max-width: 991px) {
    hr {
        margin: 15px 0;
    }

    .amenities-list li span,
    .objects-filter-box li label span,
    .object-list-info li * {
        font-size: 11px;
    }

    .objects-list > li {
        max-width: calc(50% - 33px);
    }

    .objects-filters-box {
        padding: 10px;
        margin-top: 10px;
    }

    .amenities-list li,
    .objects-filter-box li label {
        padding: 5px;
        margin: 2px;
    }

    .object-list-info {
        padding: 5px;
    }

    .object-list-info li:not(:first-child) {
        margin-top: 0;
    }

    .c-form-group input {
        width: 40px;
    }

    .c-form-group input#search-date {
        width: 140px;
    }

    .object-galery-list {
        height: 350px;
    }

    .object-galery-list > .object-gallery-item {
        width: 45% !important;
    }

    .object-galery-list .object-galery-thumbnails {
        width: 55% !important;
    }

    .opening-time-shop-banner span {
        font-size: 12px;
    }

    .checkout-reservation .box_booking_2 .main {
        padding: 25px 15px;
    }

    .checkout-reservation .button-group > button {
        padding: 8px 15px;
        font-size: 12px;
    }

    .basket-payments span {
        font-size: 11px;
    }

    .checkout-order .container {
        padding-top: 20px;
    }

    .checkout-reservation .object-info div {
        width: 50px;
        height: 50px;
    }

    .checkout-reservation .object-info strong {
        max-width: 250px;
    }

    .basket-summary li small + strong,
    .basket-summary li small + div {
        font-size: 13px;
    }
}

@media screen and (max-width: 860px) {
    .object-galery-list {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .object-filters-search form {
        flex-direction: column;
    }

    .object-filters-search form > *,
    .object-filters-search form input {
        width: 100% !important;
    }

    .object-filters-search form button {
        margin-top: 20px;
    }

    .banner .banner-content > .info-banner-text {
        margin-top: 15px;
    }

    .banner .banner-content > .info-banner-text p {
        font-size: 12px;
        margin-top: 3px;
    }

    .no-object-box {
        font-size: 12px;
    }

    .object-filters-search {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
    }

    .object-breadcrumbs {
        font-size: 13px;
    }

    #filters-search #search-date {
        padding-right: 42px;
    }
}

@media screen and (max-width: 680px) {
    #object-gallery,
    #widget-reservation {
        padding: 0;
    }

    .object-galery-list {
        margin: 0;
    }

    .object-galery-list > .object-gallery-item {
        width: 100% !important;
        border-radius: 0 !important;
        margin: 0;
    }

    .object-galery-list .object-galery-thumbnails {
        display: none;
    }

    .object-galery-list .object-galery-more {
        display: block;
    }

    .object-galery-more {
        margin: 10px;
    }
}

@media screen and (max-width: 540px) {
    .objects-list > li {
        max-width: calc(100% - 30px);
    }

    .objects-list .object-images ul.splide__list {
        height: 240px;
    }

    .objects-list .object-content {
        height: calc(100% - 250px);
    }
}
