/**
Theme Name: Visita
Author: VISITA
Author URI: https://visita.com.au
Description: This is a prototype website to provide an example of VISITA search and book website functionality.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visita-prototype
Template: astra
*/

/* === Global Component Styles ===
- This is the global usage styles
- When you have reusable component use here to style
*/

/* --- Show Hide Content --- */

.show {
    display: block !important;
}
.hide {
    display: none !important;
}
.hidden{
    visibility:  hidden !important;
}
.visible{
    visibility: visible !important;
}

/* --- Layout Change Content --- */
/* - Make site wrapper 100% for search result page - */
.page-template-result-page .main-header-bar .ast-container {
    max-width: 100%;
    padding: 0 20px;
}
.page-template-result-page .site-footer .fl-row-fixed-width {
    max-width: 100%;
    padding: 0;
}
@media (min-width: 1200px){
    /* - Make site wrapper 1250px for all component - */
    .ast-container {
        max-width: 1250px;
        padding: 0;
    }
}

.site-content .ast-container{
    /* - Make page content align with header -*/
    margin-top: 85px;
}
.page-id-2 .site-content .ast-container{
    /* - Make home page content inside header -*/
    margin-top: 0;
}

.vp-sp-box{
    /* - Property page layout - */
    display: flex;
    position: relative;
}
@media only screen and (max-width: 1200px) {
    .vp-sp-box{
        flex-direction: column-reverse;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 480px){
    .reservation-item-container{
        padding: 40px 20px !important;
    }
}
.vp-col-4{
    width: 33.34%;
}
@media only screen and (max-width: 1200px) {
    .vp-col-4{
        width: 100%;
    }
}
.vp-col-8{
    width: 66.66%;
}
@media only screen and (max-width: 1200px) {
    .vp-col-8{
        width: 100%;
    }
}
@media only screen and (max-width: 1200px) {
    .vp-col-8{
        width: 100%;
    }
}
.vp-col-12{
    width: 100%;
}

/* --- Typography Change Content --- */

h1{
    text-align: center;
}
h3{
    text-transform: uppercase;
}
.vp-text-center{
    text-align: center !important;
}
.vp-result-header{
    text-align: center;
    margin: 40px 0 20px;
}
.vp-property-box h3{
    text-align: center;
    margin-bottom: 30px;
}
.reservation-main-box h1{
    text-align: center;
    margin-bottom: 30px;
}
.vp-pb-text h1{
    /* - Page banner Text - */
    text-transform: uppercase;
    text-align: center !important;
    font-size: 48px;
}
@media only screen and (max-width: 768px) {
    .vp-pb-text h1{
        font-size: 38px;
    }
}
@media only screen and (max-width: 480px) {
    .vp-pb-text h1{
        font-size: 30px;
    }
}
a:where(:not(.wp-element-button)) {
    text-decoration: none;
}

/* === Header Component Styles ===
- Header styles goes here
- Navigation also include inside header
- Header can be change according to request
 */

.site-header{
    position: fixed;
    width: 100%;
}
.main-header-bar{
    transition: all 0.5s ease;
    border-bottom: none !important;
    padding: 7px 0;
}
@media only screen and (max-width: 768px) {
    .main-header-bar{
        padding: 11px 0;
    }
}


/* === Navigation Component Styles ===
- This the menu and header styles
- Custom mega menu styles goes here
 */

/* --- Logo Content --- */

@media only screen and (max-width: 480px) {
    .custom-mobile-logo-link{
        display: block;
    }
}

.main-header-bar .ast-flex {
    flex-wrap: nowrap !important;
}

.main-header-menu .menu-link{
  color:#000000;
  font-size : 16px;
  letter-spacing : 0.8px;
}

/* --- Mega Menu Content --- */

#main-menu {
    /* - Hide main menu at the loading - */
    position: fixed;
    width: 100%;
    z-index: 99999;
    display: none;
    transition: 1s ease;
    overflow: hidden;
}
.sticky-menu{
    position: fixed !important;
}
/*
 - This will pre-open the main menu sections for editing.
 - This relies on the main menu page-id, if this is changed
   this will potentially break.
 - If this is found to change frequently we will find another way to achieve this
*/
.fl-builder-edit.page-id-79 #menu-close,
.fl-builder-edit.page-id-79 #main-menu,
.fl-builder-edit.page-id-79 #search-box {
    display: block;
    overflow: visible;
}
.fl-builder-edit.page-id-79 .site-content .ast-container{
    width: 100%;
    display: inline;
}
@media only screen and (max-width: 768px) {
    /* Ensure that the menu content is 100vh on mobile */
    .menu-open #main-menu .fl-row-content-wrap {
        /* 100% of view height - the menu height */
        height: calc(100vh - 150px);
        overflow-y: scroll;
    }
}

/* --- Navigation Hamburger Icon Content --- */

@media only screen and (max-width: 768px) {
    /* - Hamburger icon align middle at mobile - */
    nav.navigation-accessibility {
        display: flex;
        align-items: center;
    }
}
.nav-icon {
    /* - Icon common changes - */
    width: 45px;
    height: 38px;
    position: relative;
    margin-right: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.nav-icon span {
    /* - Ensure that the menu icon properly visible and align - */
    display: block;
    position: absolute;
    height: 5px;
    width: 90%;
    background: #000;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 4px;
}
.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
    top: 16px;
}
.nav-icon span:nth-child(4) {
    top: 28px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* --- Header Bar Main Icon Content --- */

@media only screen and (max-width: 480px)  {
    /* - Hide menu button at mobile screens - */
    .vp-menu-button{
        display: none;
    }
}
.vp-menu-button .vp-menu-link{
    padding-right: 0;
}
.vp-menu-button .vp-menu-link span{
    padding: 8.75px 28px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
}

/* -- Navigation Content Inside Mega Menu
- Main menu and secondary menu items inside Mega Menu
- Main menu and sub menu styles goes here
--*/

.vp-primary-menu .menu-item a{
    font-size: 24px;
    font-weight: 300;
    padding: 0 !important;
    line-height: 1.7;
}
.vp-primary-menu .menu-item a:focus{
    outline: none !important;
}
.vp-secondary-menu .menu .fl-has-submenu-container a{
    font-size: 18px;
    font-weight: 400;
    padding: 0 !important;
}
.vp-secondary-menu .menu .fl-has-submenu-container a:focus{
    outline: none;
}
.vp-secondary-menu .menu .sub-menu .menu-item a{
    font-weight: 200;
    font-size: 19px;
    padding: 0;
    line-height: 1.7;
}
.vp-secondary-menu .menu .sub-menu .menu-item a:focus{
    outline: none;
}
@media only screen and (max-width: 767px){
.vp-secondary-menu .sub-menu{
    display: block !important;
}
}
.vp-menu-box .fl-col-content{
    /* - Mega menu image box with image change - */
    display: flex;
    justify-content: center;
    align-items: center;
}
.vp-button .fl-button{
    border: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 13.5px 30px !important;
}
.vp-button {
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 12px 30px !important;
    border-radius: 3px;
}
.vp-button.vp-button-border{
    cursor: pointer;
    transition: all 0.5s ease;
}

/* === Datepicker Component Styles ===
 - This section will replace jQuery UI styles
 - Datepicker size changed and space reduced
 */

.ui-datepicker{
    min-width: 320px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
}
@media only screen and (max-width: 480px) {
    .ui-datepicker{
        position: fixed !important;
        width: 100% !important;
        left: 0 !important;
        top: 135px !important;
    }
}

.ui-datepicker .ui-datepicker-calendar{
    margin: 0 !important;
}
.ui-datepicker .ui-datepicker-header{
    background: none !important;
    border-radius: 0 !important;
    padding: 8px !important;
    border: 1px solid #ccc !important;
    border-bottom: none !important;
}
.ui-datepicker-header .ui-datepicker-title{
    font-weight: 500 !important;
    font-size: 16px !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
    top: 6px !important;
    cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover{
    background: none !important;
    border: none !important;
}

.ui-datepicker-calendar th{
    font-weight: 500 !important;
    border: 1px solid #ccc !important;
    padding: 2px 0 !important;
    font-size: 14px !important;
}
.ui-datepicker-calendar td{
    font-size: 14px !important;
    border: 1px solid #ccc !important;
    padding: 0 !important;
}

.ui-widget-content .ui-state-default{
    background: #f5f5f5 !important;
    border: none !important;
    text-align: center;
    padding: 2px 0 !important;
}

/*
- Datepicker date disable
- Picked date color for select dates
 */
.ui-widget-content .ui-state-disabled .ui-state-default{
    background: #FFf !important;
    color: #c0c0c0 !important;
    text-align: center;
}

.ui-widget-content .vp-day-na .ui-state-default{
    background: #bababa !important;
    color: #fff !important;
    text-align: center;
}
.ui-widget-content .vp-day-in .ui-state-default{
    background: linear-gradient(152deg,#bababa 50%,#f5f5f5 50%) !important;
    color: #fff !important;
    text-align: center;
}
.ui-widget-content .vp-day-out .ui-state-default{
    background: linear-gradient(152deg, #f5f5f5 50%,#bababa 50%) !important;
    color: #fff !important;
    text-align: center;
}
.ui-widget-content .vp-day-selected .ui-state-default{
    text-align: center;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled {
    opacity: 1 !important;
}
.ui-widget-content .ui-state-disabled.vp-day-selected {
    opacity: 0.7 !important;
}
/* === Fixed Favorite Icon Component === */

.vp-favorite-fix-icon{
    position: fixed;
    right: 0;
    z-index: 100;
    padding: 10px;
    top: 120px;
    cursor: pointer;
}
@media only screen and (max-width: 1200px)  {
    .vp-favorite-fix-icon{
        top: 90px;
    }
}
.vp-favorite-fix-icon i{
    position: relative;
    font-size: 22px;
    color: #fff;
}
.vp-favorite-fix-icon i span{
    position: absolute;
    font-size: 10px;
    top: -5px;
    right: -7px;
    border-radius: 50%;
    padding: 1px 4px;
}

/* === Global Component Styles Ends Here === */

/* === Home Banner Component ===
- Home banner images styles
- Homepage search section styles
*/

.vp-home-banner {
    /* - Home banner background styles - */
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background: url(/wp-content/uploads/custom_img/banner_img/AOY_Home_Port-Moorowie_Banner_1920x1080p.jpg) no-repeat center center/cover;
    transition: all 0.5s ease;
}
.vp-home-banner video {
    /* - If there is an background video this styles will apply - */
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
}
.vp-home-banner .overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/wp-content/uploads/2020/09/grid-image.png) !important;
    background-repeat: repeat;
    z-index: 2;
}
.vp-home-banner .vp-banner-container{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    width: 100%;
    height: 50%;
}
.vp-big-text{
    /* - Home Banner main header text - */
    text-align: center;
}
@media only screen and (max-width: 1200px)  {
    .vp-big-text{
        margin-top: 80px;
    }
}
@media only screen and (max-width: 768px) {
    .vp-big-text{
        margin-top: 140px;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 480px) {
    .vp-big-text{
        margin-top: 60px;
        padding: 0 20px;
    }
}

/* --- Main Search Component --- */

.vp-banner-search{
    /* -- Main Visita search styles -- */
    text-align: center !important;
}
.vp-banner-search .vp-search{
    width: 100%;
    list-style: none;
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    margin-left: 0 !important;
    justify-content: center;
    padding: 25px 45px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 1200px){
    .vp-banner-search .vp-search {
        flex-direction: column;
        width: 50%;
        padding: 60px 45px 50px 40px;
    }
}
@media only screen and (max-width: 768px) {
    .vp-banner-search .vp-search {
        width: 85%;
        padding: 40px 35px 30px 30px;
    }
}
@media only screen and (max-width: 1200px){
    .vp-banner-search .vp-search li{
        width: 100%;
        margin-bottom: 10px;
    }
}
.vp-banner-search .vp-search input.dates-input-home {
    font-size: 16px;
    background: transparent url(/wp-content/uploads/2020/08/calander-icon.svg) no-repeat right 10px center !important;
    color: #FFF;
    border: 1px solid #fff;
    margin: 0 5px;
    border-radius: 3px;
    height: 44px;
}
@media only screen and (max-width: 1200px){
    .vp-banner-search .vp-search input.dates-input-home{
        width: 100%;
    }
}
.vp-banner-search .vp-search select {
    height: 44px;
	font-size: 16px;
	line-height: 16px;
	margin: 0 5px;
    color: #fff;
    border: 1px solid #fff;
    min-width: 170px;
    background: url(/wp-content/uploads/2020/09/chevron-down-solid.svg) no-repeat right 10px center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-size: 14px;
}
.vp-banner-search .vp-search select option{
    background-color: #fff;
    color: #000;
}

@media only screen and (max-width: 1200px){
    .vp-banner-search .vp-search select{
        width: 100%;
    }
}
.button-input input{
    padding: 6px 45px;
    margin: 0 5px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
}
@media only screen and (max-width: 1200px)  {
    .button-input input{
        width: 100%;
    }
}
.vp-search li{
    position: relative;
}
.vp-search li .date-clear-icon{
    position: absolute;
    right: 45px;
    top: 16px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}
/* === Text Container Component === */

.vp-text-container{
    padding: 80px 40px 20px;
    max-width: 1000px;
}
.vp-text-container h1{
    margin-bottom: 40px;
}

/* === Loading Container Component ===
- Content shows before loading properties
- These content shows only limited time
*/

.loading-property-container{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.loading-image-box{
    text-align: center;
    width: 100%;
    margin: 80px 0;
}
.loading-dots{
    width: 60px;
}
.loading-property-container .loading-image-box{
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
}
.error-property-container{
    text-align: center;
    margin-top: 80px
}
.favourite-property-container{
    width: 100%;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* === Property Card Component ===
- Main property card
- This same styles repeating at every page with property card
 */

.see-more-container{
    /* -- Additional Parts At homepage only */
    display: inline-block;
    text-align: center;
    margin: 80px 0;
    width: 100%;
}

@media only screen and (max-width: 768px){
    .card-main-container{
        margin-bottom: 10px;
        left: auto !important;
    }
}

.card-container{
    margin: 5px;
}

.card-container .card-top{
    position: relative;
}
.card-container .card-top img{
    width: 100%;
}
.card-container .fl-icon-wrap{
    position: absolute;
    right: 12px;
    top: 12px;
}
.card-container .fl-icon-wrap .fl-icon{
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
    padding: 7px;
    border-radius: 50%;
}
.card-container .fl-icon-wrap .fl-icon i{
    font-size: 20px;
    position: relative;
    top: 2px;
}

.card-bottom{
    /* - Card Details goes here */
    padding: 20px 25px 35px 25px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-bottom h2 {
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}
.card-bottom ul {
    font-weight: 200;
    margin: 10px 0;
    list-style: none;
    padding-left: 0;
    display: flex;
}
.card-bottom ul li {
    font-size: 15px;
    color: #58595B;
}
.card-bottom ul li span {
    margin: 0 5px;
}
.card-bottom h3 {
    margin-top: auto;
    font-size: 16px;
    text-align: left;
    font-weight: 400;
}
.card-bottom h3 span {
    font-weight: 200 !important;
    font-size: 15px;
}

/* === Flip Box Component ===
- Beaver Builder component
- Colors will different site by site
*/

.vp-flip-box .uabb-face.uabb-front {
    min-height: 400px;
    border: none;
}

.vp-flip-box .uabb-face.uabb-front .uabb-flip-box-section {
    transform: translateY(-100%);
    width: fit-content;
    margin: 0 auto;
    padding: 10px 25px;
}

.vp-flip-box .uabb-face.uabb-front h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 300 !important;
    margin-bottom: 0;
    text-transform: uppercase;
}

.vp-flip-box .uabb-face.uabb-back {
    min-height: 400px;
    border: none;
}
.vp-flip-box .uabb-face.uabb-back p {
    color: #fff;
    font-weight: 300;
}

.vp-flip-box .uabb-face.uabb-back .uabb-flip-box-section {
    padding: 15px 40px;
}

.vp-flip-box .uabb-face.uabb-back .uabb-button {
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
}
.vp-flip-box .uabb-face.uabb-back .uabb-button-wrap {
    margin-top: 40px;
}

/* --- Double Flip Box --- */
.vp-double-flip-box .uabb-face.uabb-back .uabb-button-wrap {
    margin-top:40px;
}

.vp-double-flip-box .uabb-face.uabb-front  {
    display: flex;
    width: 100%;
    align-items: center;
}
.vp-double-flip-box .uabb-face.uabb-front .uabb-flip-box-section {
    background: rgba(0, 0, 0, 0.7);
    padding: 34px 0;
    width: 100%;
    height: 100px;
}

.vp-double-flip-box .uabb-face.uabb-back .uabb-flip-box-section {
    padding: 140px 40px;
}

@media only screen and (max-width: 1200px) {
    .vp-double-flip-box .uabb-face.uabb-back .uabb-flip-box-section {
        padding: 100px 20px;
    }
}
@media only screen and (max-width: 1200px) {
    .vp-double-flip-box .uabb-face.uabb-back .uabb-flip-box-section {
        padding: 60px 20px;
    }
}

.vp-double-flip-box .uabb-face.uabb-front h2 {
    font-size: 24px !important;
    color: #fff;
    font-weight: 300 !important;
    margin-bottom: 0;
}
.vp-double-flip-box  .uabb-face.uabb-back .uabb-button {
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 14px 45px;
}

.vp-flip-box.vp-white-back .uabb-face.uabb-back h2 {
    margin-top: 0;
}

/* === Page Bottom Subscribe Component ===
- This is repeating every page expect result page
- This is Beaver Component
- Inside Content loading trough Ninja Forms
 */

.vp-subscribe-form .nf-field-label{
    display: none;
}
.vp-subscribe-form input[type="text"], .vp-subscribe-form input[type="email"] {
    background: #fff;
    color: #000 !important;
    font-weight: 400 !important;
	font-style: italic !important;
    border: none !important;
    padding: 12px !important;
    font-size: 16px !important;
}
.vp-subscribe-form  input[type="button"] {
    border: none;
    padding: 8px 45px;
}
.vp-subscribe-form .nf-field-container{
    margin-bottom: 20px;
}
/* === Filter Bar Component ===
- Search Result Page Top bar
- Result page filters styles include here
- Inside loading modules included
*/

.vp-filter-container{
    display: flex;
    align-items: center;
    border-top: 1px solid #b0b2b3;
    border-bottom: 1px solid #b0b2b3;
}
@media only screen and (max-width: 768px) {
    .vp-filter-container{
        align-items: start;
        border-bottom: none;
        padding-top: 15px;
    }
}
@media only screen and (min-width: 768px) {
    .vp-filter-fixed{
        position: fixed;
        top: 86px;
        width: 100%;
        background: #fff;
        z-index: 2;
    }
}

/* --- Filter Button Component --- */

@media only screen and (max-width: 1300px) {
    .vp-filter-button {
        display: none;
    }
}
.vp-filter-button a{
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 25px;
    color: #fff;
}
@media only screen and (max-width: 1300px) {
    .vp-filter-button a{
        min-height: 234px;
    }
}
.vp-filter-button-mobile{
    display: none;
    width: 50%;
    text-align: center;
}
@media only screen and (max-width: 1300px) {
    .vp-filter-button-mobile{
        display: block;
    }
}
.vp-filter-button-mobile a{
    display: block;
    color: #fff;
    padding: 10px 15px;
    margin: 0 5px 0 10px;
}
.vp-filter-details{
    margin-right: auto;
    width: 100%;
}
@media only screen and (max-width: 1300px) {
    .vp-filter-details{
        display: none;
    }
}
.vp-filter-details-mobile{
    display: none;
    width: 50%;
    text-align: center;
}
@media only screen and (max-width: 1300px) {
    .vp-filter-details-mobile{
        display: block;
    }
}
.vp-filter-details-mobile a{
    display: block;
    color: #fff;
    padding: 10px 15px;
    margin: 0 10px 0 5px;
}

/* --- Filter Search Component --- */

.vp-filter-search{
    display: flex;
    list-style: none;
    margin-left: 25px;
    margin-bottom: 0;
}
@media only screen and (max-width: 1300px) {
    .vp-filter-search{
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media only screen and (max-width: 1300px) {
    .vp-filter-search li{
        margin: 10px 0;
    }
}
@media only screen and (max-width: 768px) {
    .vp-filter-search{
        flex-direction: column;
        margin-right: 25px;
    }
}
.vp-filter-search li{
    position: relative;
}
.vp-filter-search li .date-clear-icon{
    position: absolute;
    right: 38px;
    top: 16px;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}

.vp-filter-search input.dates-input-result {
    border: none;
    height: 44px;
    font-size: 16px;
    color: #58595b;
    margin-right: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-size: 15px !important;
}
@media only screen and (max-width: 768px) {
    .vp-filter-search input.dates-input-result{
        width: 100%;
    }
}
.vp-filter-search select {
    border: none;
    height: 44px;
    font-size: 16px;
    color: #58595b;
    margin-right: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-size: 10px !important;
    width: 150px;
}
@media only screen and (max-width: 768px) {
    .vp-filter-search select{
        width: 100%;
    }
}
.vp-filter-search input[type="submit"] {
    padding: 7px 45px;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
}
@media only screen and (max-width: 768px) {
    .vp-filter-search input[type="submit"]{
        width: 100%;
    }
}

/* --- Filter View Change Component --- */

.vp-filter-view{
    display: flex;
}

@media only screen and (max-width: 1300px) {
    .vp-filter-view{
        flex-direction: column;
    }
}
@media only screen and (max-width: 1300px) {
    .vp-filter-view{
        display: none;
    }
}
.vp-view-change:hover{
    background: #efefef;
}
.vp-view-change a.active {
    background: #efefef;
    color: #000000;
}
.vp-view-change a {
    display: block;
    color: #58595B !important;
    cursor: pointer;
    min-width: 85px;
    text-align: center;
    padding: 12px 10px;
    transition: all 0.5s ease;
}
.vp-view-change p{
    margin-bottom: 0;
    font-size: 14px;
}

/* --- Filter Modal Component ---
- Modal with advanced filters styles include here.
- Fully custom Modal
*/

.modal {
    /* - The Modal (background) - */
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll !important;
    background-color: rgba(0, 0, 0, 0.4);
}
.vp-modal-content {
    /*
    - Modal Content Box -
    -Could be more or less, depending on screen size
    */
    background-color: #fefefe;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
}
@media only screen and (max-width: 768px){
    .vp-modal-content{
        padding: 40px;
    }
}
@media only screen and (max-width: 480px){
    .vp-modal-content{
        width: 95%;
        padding: 40px 30px;
    }
}
.vp-filter-modal {
    max-width: 900px;
}
.close {
    /* - The Close Button - */
    color: #000 !important;
    float: right !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    opacity: .8 !important;
    position: absolute;
    right: 15px;
    top: -10px;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.vp-fm-content .vp-fm-box {
    border: none !important;
}
.vp-fm-box .vp-fm-list {
    max-width: 680px;
    margin-left: auto !important;
    margin-right: auto;
    list-style: none;
}
.vp-fm-list h2{
    margin: 2rem 0;
    text-align: left;
}
.vp-fm-items{
    margin-bottom: 40px !important;
}
.vp-fm-items select{
    width: 100%;
    border: none;
    height: 44px;
    font-size: 16px;
    color: #58595b;
    margin-right: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-size: 15px !important;
}
.filter-list-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px !important;
}
.filter-checkbox-container {
    width: 100%;
}
.filter-checkbox-container .feature-item-box{
    width: 25%
}
@media only screen and (max-width: 768px) {
    .filter-checkbox-container .feature-item-box{
        width: 100%
    }
}
.filter-checkbox-container input{
    margin: 0 5px 0 0;
}
.vm-fm-submit input{
    width: 100%;
    padding: 7px 45px;
    margin: 0 5px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 18px;
}


/* === Result Item Component ===
- Result page result include here
- Property Search styles
- Property card styles inherit from homepage
- Map result inculde here
*/

.vp-main-result-container{
    padding: 20px 0;
}
.vp-result-container{
    display: flex;
}
@media only screen and (max-width: 1200px) {
    .vp-result-container{
        flex-direction: column;
    }
}
.vp-result-container .vp-search-result{
    padding: 0 5px;
}

/* --- Property Find Component --- */

.vp-result-container .vp-search-result .not-available-toggle{
    text-align: right;
    padding: 0 20px;
}
.vp-result-container .vp-search-result .not-available-toggle label{
    cursor: pointer;
}
.vp-result-container .vp-search-result .not-available-toggle input{
    margin-right: 5px;
}
.vp-p_manage-container{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 5px 10px 15px 10px;
}
@media only screen and (max-width: 768px) {
    .vp-p_manage-container{
        justify-content: center;
        flex-direction: column;
    }
}
.vp-search-bar {
    width: 35%;
    position: relative;
    display: flex;
}

@media only screen and (max-width: 768px) {
    .vp-search-bar {
        width: 100%;
        margin-bottom: 15px;
    }
}
.vp-search-bar .vp-searchTerm {
    width: 100%;
    border-style: none;
    padding: 10px;
    height: 36px;
    border-radius: 3px 0 0 3px;
    outline: none;
    color: #58595B;
    background: #f4f5f5;
}
.vp-search-bar .vp-searchTerm:focus{
    color: #58595B;
    background: #f4f5f5;
}
.vp-search-bar .vp-searchButton {
    width: 50px;
    height: 36px;
    text-align: center;
    color: #58595B;
    border-style: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 18px;
    background: #f4f5f5;
    padding: 0;
}

/* --- Result Map Item Component ---*/

.vp-map-container{
    width: 100%;
    height: 585px;
    border-radius: 5px;
    box-shadow: rgb(228 228 228) 1px 1px 3px 2px;
    position: relative;
    overflow: hidden;
}
.gm-style-iw{
    padding: 25px 0 0 20px !important;
    max-width: 220px !important;
}
.gm-style-iw button{
    top: 0 !important;
    right: 0 !important;
}

.map-image-container img{
    width: 100% !important;
}
.map-image-container h1{
    font-size: 18px !important;
    margin: 10px 0 !important;
    text-align: left !important;
}

.map-image-container p{
    margin-bottom: 10px !important;
}

/* === Image Slider Component ===
- Override some Owl carousel styles
- Slider size change according to image count
*/

.owl-carousel {
    margin-left: auto;
    margin-right: auto;
}
.owl-carousel .owl-stage-outer{
    background: #fff;
}
.slider-banner {
    background: #b0b2b3;
}
.slider-banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    justify-content: space-between;
}
.slider-banner .owl-nav .owl-prev{
    float: left;
}
.slider-banner .owl-nav .owl-next{
    float: right;
}
@media only screen and (max-width: 768px) {
    .slider-banner .owl-nav {
        top: 35%;
    }
}
.slider-banner .owl-nav button {
    font-size: 45px !important;
    color: #fff !important;
    background: #000 !important;
}
.slider-banner .owl-nav button i {
    padding: 0 12px !important;
}

/* === Property Header Component ====
- Property detail page header
- Review  icons include here
*/

.property-header-main{
    box-shadow: 0 1px 3px rgba(17,17,17,0.25);
}
.vp-sp-header{
    padding: 10px 0;
}
.property-header-container{
    width: 66.66%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 1200px) {
    .property-header-container{
        width: 100%;
        justify-content: center;
        padding: 0 20px
    }
}
@media only screen and (max-width: 768px) {
    .property-header-container{
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 768px) {
    .property-header-container .property-header-item {
        margin-bottom: 15px;
        text-align: center;
    }
}
.property-header-item .review-count{
    font-size: 14px;
    margin: 0 0 0 5px !important;
}
.property-header-item h1 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 28px;
    text-align: left;
}
.main-features {
    /* - Header feature icons - */
    display: flex;
    text-align: center;
}
.featured-with-icon {
    padding: 0 10px;
}
.featured-with-icon i {
    font-size: 24px;
    color: #000;
}
.featured-with-icon h4 {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}

/* === Property Details Component ===
- Availability calender include here
- Property map include here
*/

.vp-sp-details{
    width: 66.66%;
}
@media only screen and (max-width: 1200px) {
    .vp-sp-details{
        width: 100%;
    }
}
.single-detail-container {
    padding: 40px 0;
    margin-right: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 1200px) {
    .single-detail-container {
        margin-right: 0;
    }
}
#read-more-content{
    display: none;
}
#read-more{
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
}
.single-detail-container ul{
    margin-left: 0;
    list-style: none;
}
.single-detail-container ul.post-feature-list {
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
    .single-detail-container ul.post-feature-list {
        flex-direction: column;
    }
}
.single-detail-container ul.post-feature-list .post-feature-item {
    width: 33.33%;
    margin-bottom: 15px;
    font-weight: 400;
}
@media only screen and (max-width: 768px) {
    .single-detail-container ul.post-feature-list .post-feature-item {
        width: 100%;
    }
}
.single-detail-container h3 {
    font-weight: 400;
    font-size: 21px;
    margin-bottom: 10px;
    border-top: 1px dotted #000;
    padding-top: 30px;
}
.single-detail-container h3:first-child {
    border: none;
    padding-top: 0;
}
.single-detail-container ul.post-feature-list .post-feature-sublist{
    margin: 0;
    list-style: none;
}
@media only screen and (max-width: 768px) {
    .single-detail-container ul.post-feature-list .post-feature-sublist {
        width: 100%;
    }
}
ul.post-feature-list .post-feature-sublist .post-feature-subitem{
    margin: 0;
    font-weight: 400;
}

/* === Availability Calender Component === */

.vp-sp-calendar .calendar-wrapper {
    margin: 20px auto;
    background: #fff;
}
.vp-sp-calendar table {
    clear: both;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    border-collapse: collapse;
    color: #444;
}
.vp-sp-calendar td {
    height: 48px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    width: 14.28571429%;
    padding: 20px;
    transition: all .2s ease;
}

@media only screen and (max-width: 480px) {
    .vp-sp-calendar td{
        padding: 0;
    }
}
.vp-sp-calendar td.not-current {
    color: #c0c0c0;
}
.vp-sp-calendar td.today {
    font-weight: 400;
    color: #28283b;
}
.vp-sp-calendar thead td {
    border: none;
    color: #28283b;
    font-size: 22px;
}
.vp-sp-calendar  #btnPrev {
    float: left;
    margin-bottom: 20px;
}

.vp-sp-calendar #btnNext {
    float: right;
    margin-bottom: 20px;
}
.vp-sp-calendar #btnPrev,
.vp-sp-calendar #btnNext {
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #c0c0c0;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.vp-sp-calendar .fl-icon{
    padding: 10px 12px;
    margin: 0 !important;
}
.vp-sp-calendar #btnPrev:hover,
.vp-sp-calendar #btnNext:hover {
    color: #28283b;
    font-weight: 400;
}
.vp-sp-calendar {
    background-color: #ffffff;
}

.vp-sp-calendar th {
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;
    color: #9ba8b7;
}
.vp-sp-calendar .vp-day-av{
    background: #f5f5f5;
}
.vp-sp-calendar .vp-day-in{
    background: linear-gradient(152deg,#a5a5a5 50%,#f5f5f5 50%);
    color: #444 !important;
}

.vp-sp-calendar .vp-day-out{
    background: linear-gradient(152deg,#f5f5f5 50%,#a5a5a5 50%);
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    color: #444 !important;
}
.vp-sp-calendar .vp-day-na{
    background: #a5a5a5;
    color: #fff !important;
}
.vp-map-single-result{
    width: 100%;
    height: 585px;
    border-radius: 5px;
    box-shadow: rgb(228 228 228) 1px 1px 3px 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
.vp-mp-box h3{
    font-size: 1.2em;
    font-weight: 400;
    color: #34393c;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: left;
}
.vp-av-details h3{
    font-size: 1.2em;
    font-weight: 400;
    color: #34393c;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: left;
}
.vp-av-main-box{
    display: flex;
}
@media only screen and (max-width: 480px) {
    .vp-av-main-box{
        flex-wrap: wrap;
    }
}
.vp-availability-boxes{
    display: flex;
    align-items: center;
    margin-right: 30px;
}
@media only screen and (max-width: 480px) {
    .vp-availability-boxes{
        width: 50%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.vp-availability-boxes .vp-av-item.available{
    padding: 5px 10px;
    margin-right: 10px;
    background: #f5f5f5;
}
.vp-availability-boxes .vp-av-item.unavailable{
    padding: 5px 10px;
    margin-right: 10px;
    background: #a5a5a5;
    color: #fff;
}
.vp-availability-boxes .vp-av-item.arrive{
    padding: 5px 10px;
    margin-right: 10px;
    background: linear-gradient(128deg,#a5a5a5 50%,#f5f5f5 50%);
}
.vp-availability-boxes .vp-av-item.depart{
    padding: 5px 10px;
    margin-right: 10px;
    background: linear-gradient(128deg,#f5f5f5 50%,#a5a5a5 50%);
}
.vp-availability-boxes h3{
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 300;
}

/* --- Review Items Component --- */

.vp-review-container h3{
    font-size: 1.2em;
    font-weight: 400;
    color: #34393c;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: left;
}
.vp-review-main{
    /* - property page reviews with icons -
       -Only use when there is reviews
    */
    list-style: none;
    margin: 0;
}
.vp-review-list{
    border-top: 1px dotted #000;
    padding-top: 30px;
}
.vp-review-list h4{
    font-weight: 400;
}
.vp-review-list .vp-review-name{
    margin-bottom: 0;
}
.vp-star-ratings.fl-icon-group i{
    color: #e8b923;
}
.vp-star-ratings.fl-icon-group i.star-percentage{
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}
.vp-review-list .vp-review-date{
    font-size: 12px;
}
.vp-review-list .vp-review-text{
    margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) {
    .vp-map-fixed{
        position: fixed;
        top: 162px;
        z-index: 2;
        right: 0;
    }
}

/* --- Single Item map Component --- */

#map {
    margin-top: 8px;
}
.vp-main-map-container{
    margin-bottom: 40px;
    width: 100%;
    height: 535px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px 2px #e4e4e4;
}

/* === Side Availability Component === */

.vp-sp-availability{
    width: 33.33%;
    position: absolute;
    top: -40px;
    max-width: 400px;
    right: 0;
}
@media only screen and (max-width: 1200px) {
    .vp-sp-availability{
        width: 100%;
        position: initial;
        max-width: 550px;
        margin: 40px auto auto;
    }
}
@media only screen and (min-width: 1200px) {
    .vp-sp-availability.vp-availability-fixed{
        max-width: 400px;
        z-index: 10;
        position: fixed;
        top: 90px;
        right: calc((100vw - 1250px)/2);
    }
}
.vp-side-search form{
    background: #fff;
    border: 1px solid;
    border-radius: 5px;
    padding: 20px 30px;
}
.vp-side-search .vp-side-list{
    margin: 0;
    list-style: none;
}
.vp-side-list li {
    display: flex;
    margin-bottom: 15px;
}
.vp-side-list li.vp-price-details{
    flex-direction: column;
}
.vp-av-dates-inputs {
    display: flex;
}
.vp-av-dates-inputs li{
    position: relative;
}
.vp-av-dates-inputs li .date-clear-icon{
    position: absolute;
    right: 37px;
    top: 17px;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}
.coupon-item-box{
    display: flex;
}
.vp-side-list li.vp-price-coupon{
    margin-bottom: 10px;
}
.vp-side-list li.vp-coupon-text{
    margin-bottom: 10px;
}
.vp-side-list li.vp-price-coupon input[type="button"]{
    width: 100%;
    background: transparent;
    font-weight: 400;
    border: 1px solid #323C50;
    align-items: center;
    font-size: 16px;
    color: #323C50;
    transition: all 0.5s ease;
    text-transform: uppercase;
    padding:5px 40px;
}
.vp-side-list li.vp-price-coupon input[type="button"]:hover{
    background: #323C50;
    color: #fff;
}
.vp-side-list li.vp-book-now-button{
    margin-bottom: 10px;
}
.vp-price-coupon input[type="text"]{
    padding: 0 15px;
}
.vp-stay-details h5{
    font-size: 16px;
}
.vp-stay-details h5 span{
    font-weight: 400;
}
.vp-side-search .vp-side-list input.dates-input-single{
    font-size: 16px;
    background: #f4f5f5 url(/wp-content/uploads/2022/06/calander-icon-2.svg) no-repeat right 8px center;
    height: 44px;
    width: 100%;
    border-radius: 3px;
    color: #58595b;
    border: none;
    margin-right: 10px;
    background-size: 14px;
}
.vp-side-search .vp-side-list select {
    border: none;
    height: 44px;
    width: 100%;
    font-size: 16px;
    color: #58595b;
    margin-right: 10px;
    background: #f4f5f5 url(/wp-content/uploads/2020/09/chevron-down-solid-black.svg) no-repeat right 8px center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-size: 10px;
}
.vp-price-details h2{
    text-align: left;
    margin-top: 15px;
}
.vp-search-button{
    margin-bottom: 10px !important;
}
.available-text-container .available-icon {
    color: #12805a;
    font-size: 18px;
    margin-left: 5px;
}
.available-text-container .notavailable-icon {
    color: #ff0000;
    font-size: 18px;
    margin-left: 5px;
}
.available-text-container span{
    margin-left: 8px;
}
.vp-side-list .vp-stay-details {
    margin-bottom: 0;
}
.vp-side-list .vp-available-details {
    margin-bottom: 0;
}
.vp-side-list .vp-guest-details {
    margin-bottom: 0;
}
.vp-side-list .vp-price-detail{
    margin-top: 20px;
    margin-bottom: 20px;
}
.button-book-now{
    width: 100%;
    padding: 6px 45px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    text-align: center;
}
.vp-side-search .vp-side-list input[type="submit"] {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    transition: all 0.5s ease;
    text-transform: uppercase;
}
.sidebar-button-box{
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.button-sidebar, .button-sidebar:focus  {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    margin-bottom: 10px;
}
.button-sidebar i {
    font-size: 18px;
    margin-right: 5px;
}

/* === More Info Modal Component ===
- Modal styles inherit from Modal above component
*/

.vp-mi-list{
    max-width: 680px;
    margin-left: auto !important;
    margin-right: auto;
    list-style: none;
}
.vp-mi-list h2 {
    margin: 2rem 15px;
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .vp-mi-list h2 {
        margin: 0 0 2rem;
    }
}
.vp-mi-items {
    display: flex;
}
@media only screen and (max-width: 768px) {
    .vp-mi-items {
        flex-direction: column;
    }
}
.vp-mi-box .vp-mi-list select {
    font-size: 16px;
    width: 100%;
    border: none;
    margin-bottom: 25px;
    background: #f4f5f5;
    margin-right: 15px;
    margin-left: 15px;
}
@media only screen and (max-width: 768px){
    .vp-mi-box .vp-mi-list select {
        margin-right: 0;
        margin-left: 0;
    }
}
.vp-mi-box .vp-mi-list input {
    font-size: 16px;
    width: 100%;
    border: none;
    background: #f4f5f5;
    margin-bottom: 25px;
    margin-right: 15px;
    margin-left: 15px;
}
@media only screen and (max-width: 768px){
    .vp-mi-box .vp-mi-list input {
        margin-right: 0;
        margin-left: 0;
    }
}
.vm-mi-submit input {
    width: 100% !important;
    padding: 6px 45px;
    margin: 0 5px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
}

.vp-mi-items textarea{
    border: none;
    margin-bottom: 40px;
    background: #f4f5f5;
    margin-right: 15px;
    margin-left: 15px;
}
@media only screen and (max-width: 768px){
    .vp-mi-items textarea {
        margin-right: 0;
        margin-left: 0;
    }
}

/* === Reservation Property Detail Component ===
- Some styles inherit to all details boxes
*/

.reservation-container{
    background: #f5f5f5;
}
.reservation-container h2{
    padding: 10px;
    margin-bottom: 0;
    text-align: left;
}
.reservation-detail-box{
    display: flex;
    padding: 15px 25px;
    margin-bottom: 25px;
}
@media only screen and (max-width: 480px) {
    .reservation-detail-box{
        flex-direction: column;
    }
}
.reservation-image-box{
    width: 25%;
}
@media only screen and (max-width: 480px) {
    .reservation-image-box{
        width: 100%;
    }
}
.reservation-image-box img{
    width: 100%;
}
.reservation-list-box{
    padding: 0 40px;
    line-height: 1.6;
    width: 75%;
}
@media only screen and (max-width: 480px) {
    .reservation-list-box{
        width: 100%;
        padding: 20px;
    }
}
.reservation-list-box p{
    margin: 0 0 5px 0;
}
.reservation-list-box h3{
    font-weight: 500 !important;
    font-size: 22px;
    margin-top: 10px;
}
.reservation-list-box h3 span{
    font-weight: 300 !important;
    font-size: 14px;
}

/* === Reservation Schedule Component === */

.reservation-schedule-box{
    padding-right: 10px;
}
@media (max-width: 768px) {
    .reservation-schedule-box{
        padding-right: 0;
        margin-bottom: 10px;
    }
}
.reservation-schedule-box.completed{
    padding-right: 0;
    padding-left: 10px;
    margin-bottom: 20px;
}
.reservation-schedule-box h2{
    padding: 10px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}
.reservation-schedule-box table tr td{
    padding: 8px;
}
.reservation-schedule-box table{
    width:100%;
}

/* === Reservation Charges Component === */

.reservation-charges-box{
    padding-left: 10px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .reservation-charges-box{
        padding-left: 0;
        margin-bottom: 20px;
    }
}
.reservation-charges-box.completed{
    padding-right: 0;
    padding-left: 10px;
}
.reservation-charges-box h2{
    padding: 10px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}
.reservation-charges-box table tr td{
    padding: 8px;
}
.reservation-charges-box table{
    width:100%;
}

/* === Reservation Guest Component === */

.reservation-guest-box h2{
    padding: 10px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}
.reservation-guest-box{
    padding-right: 10px;
}
@media (max-width: 768px) {
    .reservation-guest-box{
        padding-right: 0;
        margin-bottom: 20px;
    }
}
.reservation-guest-box .fieldset-wrapper{
    padding: 25px;
    background: #f5f5f5;
}
.reservation-guest-box .fieldset-wrapper p{
    margin-bottom: 10px;
}
.reservation-guest-box .form-item{
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.reservation-guest-box .form-item span{
    color: #e60d0d;
}
.reservation-guest-box .form-item label{
    font-weight: 400;
}
.reservation-guest-box input{
    padding: 7px 15px;
    border-radius: 5px;
    background: #fff;
}
.reservation-guest-box select{
    padding: 7px 15px;
    border-radius: 5px;
    background: #fff;
}

/* === Reservation Comment Component === */

.reservation-comment-box h2{
    padding: 10px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}
.reservation-comment-box h3.fieldset-description{
    font-size: 14px;
    margin-bottom: 15px;
}
.reservation-comment-box{
    padding-left: 10px;
}
@media (max-width: 768px) {
    .reservation-comment-box{
        padding-left: 0;
        margin-bottom: 20px;
    }
}
.reservation-comment-box .fieldset-wrapper{
    padding: 15px;
    background: #f5f5f5;
}
.reservation-comment-box textarea{
    width: 100%;
    border-radius: 5px;
    background: #fff;
}
/* === Reservation Payment Component === */

.reservation-payment-box h2{
    padding: 10px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}
.reservation-payment-box{
    padding-left: 10px;
}
@media (max-width: 768px) {
    .reservation-payment-box{
        padding-left: 0;
        margin-bottom: 20px;
    }
}
.reservation-payment-box  .fieldset-wrapper{
    padding: 15px;
    background: #f5f5f5;
}
.reservation-payment-box{
    margin-top: 20px;
}
@media (max-width: 768px) {
    .reservation-payment-box{
        padding-left: 0;
        margin-bottom: 20px;
    }
}
.reservation-payment-box label{
    font-weight: 400;
}
.reservation-payment-box span{
    color: #e60d0d;
}
.reservation-payment-box input{
    border-radius: 5px;
    background: #fff;
    padding: 7px 15px;
}

/* === Reservation Terms Component === */

.reservation-terms-box{
    margin-top: 20px;
}
.reservation-terms-box h2{
    padding: 10px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}
.reservation-terms-box .fieldset-wrapper{
    padding: 40px;
    background: #f5f5f5;
    max-height: 500px;
    overflow-y: scroll;
}
.reservation-terms-box .fieldset-wrapper ul{
    list-style: none;
}
.form-item-terms-accepted{
    padding: 10px 15px;
}
.form-item-terms-accepted input{
    margin-right: 5px;
}
#error-terms{
    color: #e60d0d !important;
}
.reservation-terms-box{
    margin-bottom: 40px;
}

/* === Reservation Submit Component === */

.reservation-submit-box{
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}
.fieldset-wrapper .form-item{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}
.button-submit {
    padding: 6px 45px !important;
    border-radius: 5px !important;
    text-transform: uppercase;
    cursor: pointer !important;
    transition: all 0.5s ease;
    margin-top: 15px;
}

/* === Contact Form Component === */

.contact-form-container .nf-form-fields-required {
    display: none;
}

.contact-form-container .nf-field-element input[type="text"], .contact-form-container .nf-field-element input[type="email"], .contact-form-container .nf-field-element input[type="tel"] {
    color: #58595b;
    padding: 15px 20px;
    border: 1px solid #58595b;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 300 !important;
}

.contact-form-container .nf-field-label label{
    display: none;
}

.contact-form-container .nf-field-element input[type="text"]::placeholder, .contact-form-container .nf-field-element input[type="email"]::placeholder, .contact-form-container .nf-field-element input[type="tel"]::placeholder {
    color: #58595b;
    font-size: 18px;
    font-weight: 300 !important;
}

.contact-form-container .nf-field-element select::placeholder {
    color: #58595b;
    font-size: 16px;
}

.contact-form-container .nf-field-element textarea {
    font-size: 18px;
    padding: 15px 20px;
    color: #58595b;
    border: 1px solid;
    border-radius: 3px;
}

.contact-form-container .nf-field-element textarea::placeholder {
    font-size: 18px;
    color: #58595b;
}

.contact-form-container .nf-field-element input[type="button"] {
    text-transform: uppercase;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    padding: 6px 45px;
}
@media only screen and (max-width: 768px) {
    .contact-form-container .nf-field-element input[type="button"] {
        width: 100%;
    }
}

.contact-form-container .nf-field-element p {
    font-size: 18px;
    font-weight: 400;
    color: #58595b;
    margin-bottom: 0;
}

.contact-form-container .nf-field-element ul li {
    font-size: 18px;
    color: #58595b;
    font-weight: 400;
}

/* === Read More Accordion Component ===*/

.read-more-accordion .fl-accordion-button {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
}
.read-more-accordion .fl-accordion-button a {
    padding-left: 0;
}
.read-more-accordion .fl-accordion-button a i{
    opacity: 1 !important;
}
.read-more-accordion .fl-accordion-item{
    border: none;
}

/* === Testimonial Component === */

.testimonials-box .testimonial-arrow-down{
    display: none;
}
.testimonials-box .uabb-testimonial-author-name{
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 32px;
}
.testimonials-box .uabb-testimonial-author-designation{
    font-size: 18px;
    color: #fff;
}
.testimonials-box .uabb-testimonial{
    padding: 80px 40px;
}
.uabb-testimonial-author-description{
    color: #fff;
}

/* === Footer Component === */
.ast-small-footer{
    border: none !important;
}
.vp-footer-container{
    position: relative;
    z-index: 3;
}
.ast-footer-overlay{
    padding: 0 !important;
}
.ast-footer-overlay .ast-container{
    margin-top: 0;
}
.ast-small-footer .ast-container{
    padding: 0 !important;
}
.vp-footer-container p{
    margin-bottom: 0 !important;
}
@media only screen and (min-width: 768px) {
    /* - Hide footer from result page -*/
    .page-template-result-page .site-footer .footer-top-box {
        display: none;
    }
}

/* Button Styles ==================== */
.button-style .fl-button {
  border: none !important;
  font-size: 20px !important;
  padding: 16px 25px !important;
  border-radius: 0 !important;
}

.button-style .button-primary .fl-button{
  background: #00BFBC !important;
}
.button-style .button-primary .fl-button span{
  color: #fff !important;
}

@media only screen and (max-width: 800px) {
.text-center-mob {
  text-align: center !important;
}
}

.text-center {
  text-align: center !important;
}

