.date-picker-wrapper
{
}

.date-picker-wrapper--absolute
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.date-picker-wrapper > .month-wrapper
{
    width: 100% !important;
}

.date-picker-wrapper > .month-wrapper > table
{
    width: 100%;
}

.date-picker-wrapper > .month-wrapper > table > thead > tr > th
{
    padding: 20px 10px;
}

.date-picker-wrapper > .month-wrapper > table > tbody > tr > td
{
    position: relative;
    z-index: 1;
}

.date-picker-wrapper > .month-wrapper .prev,
.date-picker-wrapper > .month-wrapper .next
{
    display: block;
    width: 30px;
    height: 30px;
    background: #fafafa;
    text-indent: -9999em;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.date-picker-wrapper > .month-wrapper .prev:hover,
.date-picker-wrapper > .month-wrapper .next:hover
{
    background-color: #eaeaea;
}

.date-picker-wrapper > .month-wrapper .prev:after,
.date-picker-wrapper > .month-wrapper .next:after
{
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: no-repeat center;
    background-size: contain;
    margin-top: -6px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.date-picker-wrapper > .month-wrapper .prev:after
{
    background-image: url(/assets/images/icons/chevron-left.svg);
    margin-left: -7px;
}

.date-picker-wrapper > .month-wrapper .next:after
{
    background-image: url(/assets/images/icons/chevron-right.svg);
    margin-left: -5px;
}

.date-picker-wrapper > .month-wrapper .month-name
{
    white-space: nowrap;
}

.date-picker-wrapper > .month-wrapper .month-element
{
    display: inline;
    font-size: 14px;
    font-weight: normal;
    line-height: 1em;
    text-transform: capitalize;
    color: #71D321;
}

.date-picker-wrapper > .month-wrapper .week-name
{
}

.date-picker-wrapper > .month-wrapper > table > tbody > tr > td
{
    border-top: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
}


.date-picker-wrapper > .month-wrapper > table > tbody > tr > td:first-child
{
    border-left: 1px solid #E0E0E0;
}

.date-picker-wrapper > .month-wrapper > table > tbody > tr:last-child > td
{
    border-bottom: 1px solid #E0E0E0;
}

.date-picker-wrapper > .month-wrapper .week-name > th
{
    font-size: 14px;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    color:#71D321;
    padding: 10px 10px;
}

.date-picker-wrapper > .month-wrapper .day
{
    width: 50px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
    color: #515151;
    margin: 2px auto;
    padding: 10px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.date-picker-wrapper > .month-wrapper .day:hover
{
    background-color: #eaeaea;
}

.date-picker-wrapper > .month-wrapper .day.checked
{
    background-color: #71d321;
}

.date-picker-wrapper > .month-wrapper .day.first-date-selected,
.date-picker-wrapper > .month-wrapper .day.last-date-selected
{
    background-color: #5aae16;
    color: #ffffff;
}

.date-picker-wrapper > .month-wrapper .day:before
{
    content: '';
    background: #71d321;
    margin-top: 2px;
    margin-bottom: 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    transition: opacity 0.4s ease-in-out, visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out;
}

.date-picker-wrapper > .month-wrapper .day.checked:before
{
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
}

.date-picker-wrapper > .month-wrapper .day.first-date-selected:before
{
    left: 50%;
    transform-origin: left center;
}

.date-picker-wrapper > .month-wrapper .day.last-date-selected:before
{
    right: 50%;
    transform-origin: right center;
}

.date-picker-wrapper > .month-wrapper .day.first-date-selected.single:before
{
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
}

.date-picker-wrapper > .month-wrapper .day.invalid
{
    background-color: transparent;
    color: #afafaf;
    position: relative;
    cursor: default;
}

.date-picker-wrapper > .month-wrapper .day.invalid:after
{
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #afafaf;
    margin-top: -1px;
    margin-left: -15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg);
}

.date-picker-wrapper > .footer
{
    display: none;
}

.date-picker-wrapper .select-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 14px;
    color:#71D321;
    text-decoration: underline;
}

.date-picker-wrapper .select-wrapper:hover
{
    text-decoration: none;
}

.date-picker-wrapper .select-wrapper select {
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
    top: -1px;
    font-weight: normal;
    cursor: pointer;
    background: 0 0;
    border: 0;
    outline: 0;
    opacity: .01;
    font-size: 14px;
    color:#515151;
}

.date-picker-wrapper .month-wrapper table .day.lastMonth,
.date-picker-wrapper .month-wrapper table .day.nextMonth {
    display: none;
}

@media (max-width: 480px)
{
    .date-picker-wrapper > .month-wrapper .day
    {
        width: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .modal .date-picker-wrapper > .month-wrapper .day
    {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 0;
        padding-right: 0;
        width: auto;
        font-size: 14px;
    }

    .modal .date-picker-wrapper > .month-wrapper .week-name > th
    {
        font-size: 14px;
        padding: 10px 5px;
    }
}






.single-property
{
    padding-bottom: 60px;
    padding-top: 30px;
}


/* HEADER */
.single-property__header
{
    margin-bottom: 15px;
}
.single-property__header__subtitle
{
    font-size: 0.75em;
    font-weight: bold;
}
.single-property__header__subtitle__star
{
    color:#71d321;
}
.single-property__header__subtitle__icon
{
    width: 10px;
    vertical-align: middle;
}
.single-property__header__description
{
    font-size: 0.75em;
}



/* tabs */
.single-property__tabs .tabs__items
{
    z-index:6;
}

.single-property__tabs .tabs__item
{
    width: 19%;
    font-size: 24px;
    position: relative;
    z-index: 6;
}
.single-property__tabs .tabs__content
{
    padding: 20px 0;
}

/* info */

.single-property__info
{
    position: relative;
    min-height: 450px;
    margin-top: -60px;
}

.single-property__info:after
{
    content: '';
    display: table;
    clear: both;
}
.single-property__info-section
{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E0E0E0;
    width: 64%;
    float: left;
}
.single-property__info-section--first
{
    margin-top: 60px;
}
.single-property__info-section:last-child
{
    border-bottom: none;
    margin-bottom: 0;
}
.single-property__info-title
{

}

/*Info-video*/

.property__videos
{

}


.property__videos__item
{
    cursor: pointer;
}

.property__videos__item-title
{
    font-size: 14px;
    line-height: 1.25em;
}
.property__videos__item-picture
{
    padding-bottom: 56.25%;

    background: no-repeat center;
    background-size: cover;
    position: relative;
    margin-bottom: 10px;

}

.property__videos__type
{
    position: absolute;
    background: #FA2B56;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    border-radius: 10px;
    left: 5px;
    top: 5px;
    padding: 0 10px;
    transition: linear 0.2s;

}

.property__videos__item-picture:hover .property__videos__type
{
    opacity: 0;
}


.property__videos__item-play
{
    content: '';
    display: block;
    position: absolute;
    width:45px;
    height:45px;
    left:0;
    right:0;
    bottom:0;
    top:0;
    margin: auto;
    fill:#FA2B56;
    transition: fill 0.3s ease-in-out;
}

.property__videos__item-picture:hover .property__videos__item-play
{
    fill: #fff;
}



/* info-book */
.single-property__info__book
{
    position: sticky;
    width: 35%;
    right: 0;
    top: 0;
    padding-left: 30px;
    float: right;
    padding-top: 60px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 5;
}

/* info-features */

.single-property__info__features__item
{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.single-property__info__features__item:last-child
{
    margin-bottom: 0;
}

.single-property__info__features__item-icon
{
    position: absolute;
    left:0;
    top:3px;
    width: 20px;
}
.single-property__info__features__item-title
{

}
.single-property__info__features__item-description
{
    font-size: 14px;
    line-height: 14px;
    color:#AFAFAF;
}


/* info-params */



.single-property__info__param-list
{
    display:flex;
    width: 100%;
    justify-content: space-between;
}

.single-property__info__param
{

}
.single-property__info__param-value
{
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    text-transform: capitalize;
}
.single-property__info__param-label
{
    font-size: 14px;
}

.single-property__info__param-label > svg
{
    width: auto;
    height: 20px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;
    fill:#373737;
}

/* info-quality */
.single-property__info__quality + .single-property__info__quality
{
    margin-top: 10px;
}
.single-property__info__quality-icon
{
    width:24px;
    vertical-align: middle;
    margin-top: -4px;
    fill:#71d321;
}

/* Calendar */

.single-property__calendar
{

}


.single-property__calendar .dp-clearfix
{
    clear: both;
}

.single-property__calendar .date-picker-wrapper > .month-wrapper > table
{
    float: left;
    width: 45%;
}
.single-property__calendar .date-picker-wrapper > .month-wrapper > table.month2
{
    float: right;
}

.single-property__calendar .gap
{
    float: left;
}
/*Media tabs and info*/

@media (max-width: 1200px) {

    .single-property__tabs .tabs__item {

        padding: 20px 0;
        font-size: 20px;
    }

    .single-property__info-section {

        width: 56%;
    }
    .single-property__info__book
    {
        width: 44%;
        padding: 60px 15px 0;
    }
}


@media (max-width: 994px)
{
    .single-property__calendar .date-picker-wrapper > .month-wrapper > table
    {
        float: none;
        width: 100%;
        height: 60%;

    }
    .booking-widget {

        background-color: #fff;
    }

    .single-property__tabs .tabs__item {

        font-size: 16px;
    }

    .single-property__info__book
    {
        width: 100%;
        padding: 60px 0 0;
    }

    .single-property__info-section {

        width: 100%;
    }
    .single-property__info-title {

        text-align: center;
    }

}

@media (max-width: 594px) {

    .single-property__tabs .tabs__item
    {

        width: 100%;
        font-size: 12px;
    }


  /*  .single-property__info__video__item
    {
        font-size: 10px;
    }

    .single-property__info__video__item:first-child {
        padding-left: 40px;
    }

    .single-property__info__video__item:before
    {
        width: 60%;
        right: 52px;

    }*/

    .single-property__info__param-list
    {

        flex-direction: column;
    }

    .single-property__info__param
    {

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

}

/*end tabs and info*/


/* AMENITIES */
.single-property__amenities
{
}
.subtitle--center
{
    margin-top: 100px;
    text-align: center;
}
.single-property__amenities-item
{
    position: relative;
    padding:1px 0 1px 40px;
    margin-bottom: 30px;
    margin-right: 60px;
    display: inline-block;
}

.single-property__amenities-item__icon
{
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    width: 32px;
    height: 32px;
    margin: auto;
}

.single-property__amenities-item__icon > svg
{
    max-height:32px;
}


.single-property__amenities-category
{
    margin-bottom: 10px;
}

/* REVIEWS */
.single-property__review-list
{
    display: flex;
    flex-flow: wrap;
    margin: 0 -15px;
}
.single-property__review-item
{
    line-height: 1.25em;
    margin-bottom: 30px;
    width: 50%;
    padding: 0 15px;
}
.single-property__review-item__header
{
    position: relative;
    margin-bottom: 10px;
    padding:0px 0 12px 70px;
}
.single-property__review-item__avatar
{
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: url(/assets/images/misc/VerifiedGuest.png) no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top:0;
}
.single-property__review-item__name
{
    font-size: 20px;
}
.single-property__review-item__date
{
    font-size: 14px;
    color:#AFAFAF;
}


.single-property__review-item__description
{
    font-size: 14px;
}


.single-property__review__description
{
    height: auto;
}

.single-property__review-item .single-property__review-item__description
{
    height: 70px;
    position: relative;
    overflow: hidden;
}

.single-property__review-item .single-property__review-item__description::after {

    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 30px;
    background: linear-gradient(0deg, rgba(255, 255, 255,0) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
    right: 0;

}
.reviews__item-description__more
{
    cursor: pointer;
    color: #71d321;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease-in-out;
    float: right;
    font-size: 12px;
    line-height: 14px;
}

.reviews__item-description__more:hover
{
    border-bottom-color: #71d321;
}


.single-property__review-item.single-property__review-item__description--show .single-property__review-item__description
{
    height: auto;
}
.single-property__review-item.single-property__review-item__description--show .reviews__item-description__more,
.single-property__review-item.single-property__review-item__description--show .single-property__review-item__description::after
{
    display: none;

}




/*.single-property-reviews.single-property__review-item__description--hide .single-property__review-item__description--show
{
    height: auto;
}*/
/*.single-property__review-item__description--full*/
/*{*/
/*    height: auto;*/
/*}*/
/*.single-property__review-item__description-more*/
/*{*/
/*    border-bottom: 1px solid #515151;*/
/*    transition: border-bottom-color 0.3s ease-in-out;*/
/*    display: none;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*}*/
/*.single-property__review-item__description-more:hover*/
/*{*/
/*    border-bottom-color: transparent;*/
/*}*/
/*.single-property__review-item__description.ddd-truncated + .single-property__review-item__description-more*/
/*{*/
/*    display: inline-block;*/
/*}*/

@media (max-width: 768px)
{
    .single-property__review-item__description
    {
        height: 40px;
    }


    .single-property__review-item
    {
        width: 100%
    }

}
/* MAP */
.single-property__location
{
    position: relative;
    padding-bottom: 56.25%;
}

.single-property__location> div
{
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    right: 0;
}


/* KNOWLEDGE */
.single-property__knowledge
{
    margin-bottom: 30px;
}
.single-property__knowledge-list li
{
    position: relative;
    padding-left: 16px;
    font-size: 16px;
}
.single-property__knowledge-list li:before
{
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #71d321;
    position: absolute;
    left:0;
    top:8px
}

/* RATINGS */

.single-property__ratings-item
{
    font-size: 0.75em;
}
.single-property__ratings-item:after
{
    content: '';
    display: table;
    clear: both;
}

.single-property__ratings-item__title
{
    float: left;
    width: 40%;
}

.single-property__ratings-item__progress
{
    float: left;
    width: 50%;
    height: 6px;
    border-radius: 3px;
    background: #f6f6f6;
    margin-top: 10px;
}
.single-property__ratings-item__progress-bar
{
    border-radius: 3px;
    height: 6px;
    background: #71d321;
}

.single-property__ratings-item__label
{
    float: left;
    width: 10%;
    text-align: right;
    font-weight: bold;
}




/* PHOTOS */

.single-property__photos
{
    padding-bottom: 50%;
    position: relative;
    margin-bottom: 30px;
    margin-left: -7px;
    margin-right: -7px;
}

.single-property__photo
{
    display: none;
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    background: no-repeat center;
    background-size: cover;
    border: 7px solid #fff;
}

.single-property__photo:nth-child(1),
.single-property__photo:nth-child(2),
.single-property__photo:nth-child(3),
.single-property__photo:nth-child(4),
.single-property__photo:nth-child(5)
{
    display: block;
}

.single-property__photo:nth-child(1)
{
    width: 50%;
    top: 0;
    bottom: 0;
    left: 0;
}

.single-property__photo:nth-child(2)
{
    width: 25%;
    top: 0;
    bottom: 50%;
    left: 50%;
}

.single-property__photo:nth-child(3)
{
    width: 25%;
    top: 50%;
    bottom: 0;
    left: 50%;
}

.single-property__photo:nth-child(4)
{
    width: 25%;
    top: 0;
    bottom: 50%;
    left: 75%;
}

.single-property__photo:nth-child(5)
{
    width: 25%;
    top: 50%;
    bottom: 0;
    left: 75%;
}

.single-property__photo:before
{
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.single-property__photos:hover > .single-property__photo:before
{
    opacity: 1;
}

.single-property__photos:hover > .single-property__photo:hover:before
{
    opacity: 0;
}


.single-property__photos:hover > .single-property__photo:after
{
    opacity: 1;
}

.single-property__photo__image
{
    background: center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.4s ease-in-out;
}

.single-property__photo__image:hover
{
    transform: scale(1.1);
}
@media (max-width: 480px)
{
    .single-property__photos
    {
        padding-bottom: 56.25%;
    }
    .single-property__photo:nth-child(1)
    {
        width: 100%;
    }
    .single-property__photo:nth-child(2),
    .single-property__photo:nth-child(3),
    .single-property__photo:nth-child(4),
    .single-property__photo:nth-child(5)
    {
        display: none;
    }
}







/* Attractions */
.single-property__attractions
{
    margin-top: 30px;
}


.single-property__attractions__item
{
    cursor: pointer;
}

.single-property__attractions__item-description
{
    font-size: 14px;
    line-height: 1.25em;
}

.single-property__attractions__item-title
{
    font-size: 16px;
    line-height: 1.25em;
    font-weight: bold;
    margin: 5px 0;
}
.single-property__attractions__item-picture
{
    padding-bottom: 56.25%;
    background: no-repeat center;
    background-size: cover;
    position: relative;
    margin-bottom: 10px;
}
