﻿/*
*
* Preloader
*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: .3s all ease;
    pointer-events: none;
    backface-visibility: hidden;
}

.preloader::before, .preloader::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    transition: .2s linear;
    transform: translateY(0);
    pointer-events: none;
}

.preloader::before {
    top: 0;
    bottom: 50%;
    background: #fff;
}

.preloader::after {
    top: 50%;
    bottom: 0;
    background: #f5f6fa;
}

.preloader.loaded::before, .preloader.loaded::after {
    transition: .4s linear;
}

.preloader.loaded::before {
    transform: translateY(-100%);
}

.preloader.loaded::after {
    transform: translateY(100%);
}

.preloader.loaded .preloader-logo, .preloader.loaded .preloader-body {
    opacity: 0;
    visibility: hidden;
    transition: 0s;
}

.preloader-logo, .preloader-body {
    transition: 0s .2s;
}

.preloader-logo {
    position: relative;
    z-index: 10;
    transform: translate3d(0, -50%, 0);
    padding: 40px;
}

.preloader-body {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}

#loadingProgressG {
    width: 100vw;
    height: 5px;
    overflow: hidden;
    background: #e8e9ee;
    border-radius: 6px;
    margin: auto;
}

.loadingProgressG {
    background: #ff6600;
    margin-top: 0;
    margin-left: -100vw;
    animation-name: bounce_loadingProgressG;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 100vw;
    height: 5px;
    transition: .5s;
}

@keyframes bounce_loadingProgressG {
    0% {
        margin-left: -100vw;
    }

    100% {
        margin-left: 100vw;
    }
}

/*
*
* datepicker
*/
#ui-datepicker-div {
    z-index: 99999 !important;
}

.ui-datepicker .ui-datepicker-title {
    width: 90%;
    margin: 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: 40%;
}

.ui-datepicker select.ui-datepicker-month {
    margin-right: 10px;
}

/*
*
* scrollbar
*/
/* width */
body::-webkit-scrollbar,
#menu::-webkit-scrollbar,
.modal-open .modal::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.ui-datepicker select.ui-datepicker-month::-webkit-scrollbar,
.ui-datepicker select.ui-datepicker-year::-webkit-scrollbar {
    width: 5px;
}

/* Track */
body::-webkit-scrollbar-track,
#menu::-webkit-scrollbar-track,
.modal-open .modal::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.ui-datepicker select.ui-datepicker-month::-webkit-scrollbar-track,
.ui-datepicker select.ui-datepicker-year::-webkit-scrollbar-track {
    background: #f1f1f1;
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
body::-webkit-scrollbar-thumb,
#menu::-webkit-scrollbar-thumb,
.modal-open .modal::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.ui-datepicker select.ui-datepicker-month::-webkit-scrollbar-thumb,
.ui-datepicker select.ui-datepicker-year::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover,
#menu::-webkit-scrollbar-thumb:hover,
.modal-open .modal::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
.ui-datepicker select.ui-datepicker-month::-webkit-scrollbar-thumb:hover,
.ui-datepicker select.ui-datepicker-year::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*
*
* loading progress
*/
.loader-index {
    margin-top: 20px
}

.loader-index > div {
    display: inline-block;
    width: 5px;
    height: 30px;
    background: #ff6600;
    border-radius: 2px;
    -webkit-animation: loader-index .9s -.8s infinite cubic-bezier(.85,.25,.37,.85);
    -o-animation: loader-index .9s -.8s infinite cubic-bezier(.85,.25,.37,.85);
    animation: loader-index .9s -.8s infinite cubic-bezier(.85,.25,.37,.85);
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both
}

.loader-index > div:nth-child(2), .loader-index > div:nth-child(4) {
    -webkit-animation-delay: -.6s !important;
    -o-animation-delay: -.6s !important;
    animation-delay: -.6s !important
}

.loader-index > div:nth-child(1), .loader-index > div:nth-child(5) {
    -webkit-animation-delay: -.4s !important;
    -o-animation-delay: -.4s !important;
    animation-delay: -.4s !important
}

.loader-index > div:nth-child(6) {
    -webkit-animation-delay: -.2s !important;
    -o-animation-delay: -.2s !important;
    animation-delay: -.2s !important
}

@-webkit-keyframes loader-index {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }

    50% {
        -webkit-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@-o-keyframes loader-index {
    0% {
        -o-transform: scaleY(1);
        transform: scaleY(1)
    }

    50% {
        -o-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    100% {
        -o-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@keyframes loader-index {
    0% {
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1)
    }

    50% {
        -webkit-transform: scaleY(.4);
        -o-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    100% {
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@-webkit-keyframes loader-default {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-o-keyframes loader-default {
    0% {
        -o-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -o-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes loader-default {
    0% {
        -webkit-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

/*
*
* background colors
*/
.bg-blue {
    background: #4285F4 !important;
}

.bg-yellow {
    background: #FBBC05 !important;
}

.bg-green {
    background: #34A853 !important;
}

.bg-red {
    background: #EA4335 !important;
}

.bg-light-gray {
    background: #FFF6FA !important;
    background: #EFEFEF !important;
    background: #E8E9EE !important;
}

.bg-color {
    background: #ef6c00 !important;
}

/*
*
* floating-labels
*/
.form-label-group {
    position: relative;
    /*margin-bottom: 1rem;*/
}

.form-label-group input,
.form-label-group label {
    height: 3.125rem;
    padding: .75rem;
}

.form-label-group label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0; /* Override default `<label>` margin */
    line-height: 1.5;
    color: #495057;
    pointer-events: none;
    cursor: text; /* Match the input under the label */
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
    color: transparent;
}

.form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::placeholder {
    color: transparent;
}

.form-label-group input:not(:-moz-placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.form-label-group input:not(:-ms-input-placeholder) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.form-label-group input:not(:placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.form-label-group input:not(:-moz-placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input:not(:-ms-input-placeholder) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input:-webkit-autofill ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
    .form-label-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .form-label-group label {
        position: static;
    }

    .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}

/*
*
* home page categories
*/
.categorie figure.box-shadow {
    transition: all .2s ease-in-out;
}


.categorie figure.box-shadow:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0px 2px 10px #e8e9ee;
    -moz-box-shadow: 0px 2px 10px #e8e9ee;
    box-shadow: 0px 2px 10px transparent;
}

.categories .cat-img {
    background: #000;
}

/*.categorie .categorie-box .cat-img img,*/
.categories .categorie-box .cat-img img {
    opacity: 0.5;
}

.categories .categorie-box:hover .cat-img img {
    opacity: 0.3;
}

.categories .cat-desc {
    position: absolute;
    bottom: -25px;
    padding: 25px;
    width: 100%;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.categories .categorie-box .cat-desc,
.categories .categorie-box:hover .cat-desc {
    bottom: 0px;
}

.categories h3, .categories h4 {
    color: #fff;
}

.categories p {
    line-height: 20px;
}

.categories .cat-desc a.btn {
    opacity: 0;
}

.categories .cat-desc a.btn,
.categories .categorie-box:hover .cat-desc a.btn {
    opacity: 1;
}

.categories.owl-carousel .owl-item .item,
.place-details.owl-carousel .owl-item .item {
    padding: 0;
}

.categories.owl-carousel .owl-nav {
    display: none;
}

.categories.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}

.categories.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}
.categories.owl-carousel .owl-stage-outer {
    padding-top: 0;
    margin-top: 10px;
}
.categories .categorie-box.radius-5px {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.categorie figcaption.radius-5px {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.categorie figcaption a.btn h4:hover,
.categorie figcaption a.btn h5:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.categorie figcaption a.bg-light h4:hover,
.categorie figcaption a.bg-light h5:hover,
.categorie figcaption a.bg-light-gray h4:hover,
.categorie figcaption a.bg-light-gray h5:hover {
    color: #000000 !important;
}

@media (min-width:576px) {
    .categorie [class*="col-"] {
        width: 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .categories h3, .categories h4 {
        color: #fff;
        font-size: 22px;
        line-height: 25px;
    }
}

@media (min-width:768px) {
    .categorie [class*="col-"] {
        width: 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .categories h3, .categories h4 {
        color: #fff;
        font-size: 22px;
        line-height: 25px;
    }
}

@media (min-width:992px) {
    .categorie [class*="col-"] {
        width: 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .categories h3, .categories h4 {
        color: #fff;
        font-size: 22px;
        line-height: 25px;
    }
}

@media (min-width:1200px) {
    .categorie [class*="col-"] {
        width: 20%;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .categories h3, .categories h4 {
        color: #fff;
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width:576px) {
    .categorie [class*="col-"] {
        width: 50%;
    }

    .categories h3, .categories h4 {
        color: #fff;
        font-size: 22px;
        line-height: 25px;
    }

    .categories .categorie-box:hover .cat-desc {
        bottom: 25px;
    }

    .categories.owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }

    .categories.owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }

    .categories.owl-carousel .owl-nav button[class*="owl-"], .categories.owl-carousel .owl-nav button[class*="owl-"].disabled:hover {
        opacity: 0;
    }

    .categories.owl-carousel:hover .owl-nav button[class*="owl-"], .categories.owl-carousel:hover .owl-nav button[class*="owl-"].disabled:hover {
        opacity: 1;
    }

    .categorie figcaption a.pt-25 {
        padding-top: 25px !important;
    }
}

.place-details.owl-carousel .owl-nav button.owl-prev {
    left: 5px;
}

.place-details.owl-carousel .owl-nav button.owl-next {
    right: 5px;
}

.place-details.owl-carousel .owl-dots {
    bottom: 25px;
}

.available-room-img {
    align-self: self-start;
}

h3.main_title span {
    color: #ef6c00;
}

.list-type-disc {
    list-style: disc;
}

.opacity-05 {
    opacity: 0.5;
}

/*
*
* mega menu
*/
.exo-menu {
    width: 100%;
    float: left;
    list-style: none;
    position: relative;
    background: #23364B;
}

.exo-menu > li {
    display: inline-block;
    float: left;
}

.exo-menu > li > a {
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    border-right: 1px #365670 dotted;
    -webkit-transition: color 0.2s linear, background 0.2s linear;
    -moz-transition: color 0.2s linear, background 0.2s linear;
    -o-transition: color 0.2s linear, background 0.2s linear;
    transition: color 0.2s linear, background 0.2s linear;
}

.exo-menu > li > a.active,
.exo-menu > li > a:hover,
li.drop-down ul > li > a:hover {
    background: #009FE1;
    color: #fff;
}

.exo-menu i {
    float: left;
    font-size: 18px;
    margin-right: 6px;
    line-height: 20px !important;
}

.exo-menu li.drop-down,
.exo-menu .flyout-right,
.exo-menu .flyout-left {
    position: relative;
}

.exo-menu li.drop-down:before {
    content: "\f103";
    color: #fff;
    font-family: FontAwesome;
    font-style: normal;
    display: inline;
    position: absolute;
    right: 6px;
    top: 20px;
    font-size: 14px;
}

.exo-menu li.drop-down > ul {
    left: 0px;
    min-width: 230px;
}

.exo-menu .drop-down-ul {
    display: none;
}

.exo-menu .flyout-right > ul,
.exo-menu .flyout-left > ul {
    top: 0;
    min-width: 230px;
    display: none;
    border-left: 1px solid #365670;
}

.exo-menu li.drop-down > ul > li > a,
.exo-menu .flyout-right ul > li > a,
.exo-menu .flyout-left ul > li > a {
    color: #fff;
    display: block;
    padding: 20px 22px;
    text-decoration: none;
    background-color: #365670;
    border-bottom: 1px dotted #547787;
    -webkit-transition: color 0.2s linear, background 0.2s linear;
    -moz-transition: color 0.2s linear, background 0.2s linear;
    -o-transition: color 0.2s linear, background 0.2s linear;
    transition: color 0.2s linear, background 0.2s linear;
}

.exo-menu .flyout-right ul > li > a,
.exo-menu .flyout-left ul > li > a {
    border-bottom: 1px dotted #B8C7BC;
}


/*Flyout Mega*/
.exo-menu .flyout-mega-wrap {
    top: 0;
    right: 0;
    left: 100%;
    width: 100%;
    display: none;
    height: 100%;
    padding: 15px;
    min-width: 742px;
}

.exo-menu h4.row.mega-title {
    color: #eee;
    margin-top: 0px;
    font-size: 14px;
    padding-left: 15px;
    padding-bottom: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
}

.exo-menu .flyout-mega ul > li > a {
    font-size: 90%;
    line-height: 25px;
    color: #fff;
    font-family: inherit;
}

.exo-menu .flyout-mega ul > li > a:hover,
.exo-menu .flyout-mega ul > li > a:active,
.exo-menu .flyout-mega ul > li > a:focus {
    text-decoration: none;
    background-color: transparent !important;
    color: #ccc !important
}
/*mega menu*/

.exo-menu .mega-menu {
    left: 0;
    right: 0;
    padding: 15px;
    display: none;
    padding-top: 0;
    min-height: 100%;
}

.exo-menu h4.row.mega-title {
    color: #eee;
    margin-top: 0px;
    font-size: 14px;
    padding-left: 15px;
    padding-bottom: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid #547787;
    padding-top: 15px;
    background-color: #365670
}

.exo-menu .mega-menu ul li a {
    line-height: 25px;
    font-size: 90%;
    display: block;
}

.exo-menu ul.stander li a {
    padding: 3px 0px;
}

.exo-menu ul.description li {
    padding-bottom: 12px;
    line-height: 8px;
}

.exo-menu ul.description li span {
    color: #ccc;
    font-size: 85%;
}

.exo-menu a.view-more {
    border-radius: 1px;
    margin-top: 15px;
    background-color: #009FE1;
    padding: 2px 10px !important;
    line-height: 21px !important;
    display: inline-block !important;
}

.exo-menu a.view-more:hover {
    color: #fff;
    background: #0DADEF;
}

.exo-menu ul.icon-des li a i {
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    background-color: #009FE1;
    line-height: 35px !important;
}

.exo-menu ul.icon-des li {
    width: 100%;
    display: table;
    margin-bottom: 11px;
}
/*Blog DropDown*/
.exo-menu .Blog {
    left: 0;
    display: none;
    color: #fefefe;
    padding-top: 15px;
    background: #547787;
    padding-bottom: 15px;
}

.exo-menu .Blog .blog-title {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
}

.exo-menu .Blog .blog-des {
    color: #ccc;
    font-size: 90%;
    margin-top: 15px;
}

.exo-menu .Blog a.view-more {
    margin-top: 0px;
}
/*Images*/
.exo-menu .Images {
    left: 0;
    width: 100%;
    display: none;
    color: #fefefe;
    padding-top: 15px;
    background: #547787;
    padding-bottom: 15px;
}

.exo-menu .Images h4 {
    font-size: 15px;
    margin-top: 0px;
    text-transform: uppercase;
}
/*common*/
.exo-menu .flyout-right ul > li > a,
.exo-menu .flyout-left ul > li > a,
.exo-menu .flyout-mega-wrap,
.exo-menu .mega-menu {
    background-color: #547787;
}

/*hover*/
.exo-menu .Blog:hover,
.exo-menu .Images:hover,
.exo-menu .mega-menu:hover,
.exo-menu .drop-down-ul:hover,
.exo-menu li.flyout-left > ul:hover,
.exo-menu li.flyout-right > ul:hover,
.exo-menu .flyout-mega-wrap:hover,
.exo-menu li.flyout-left a:hover + ul,
.exo-menu li.flyout-right a:hover + ul,
.exo-menu .blog-drop-down > a:hover + .Blog,
.exo-menu li.drop-down > a:hover + .drop-down-ul,
.exo-menu .images-drop-down > a:hover + .Images,
.exo-menu .mega-drop-down a:hover + .mega-menu,
.exo-menu li.flyout-mega > a:hover + .flyout-mega-wrap {
    display: block;
}
/*responsive*/
@media (min-width:767px) {
    .exo-menu > li > a {
        display: block;
        padding: 20px 22px;
    }

    .mega-menu, .flyout-mega-wrap, .Images, .Blog, .flyout-right > ul,
    .flyout-left > ul, li.drop-down > ul {
        position: absolute;
    }

    .flyout-right > ul {
        left: 100%;
    }

    .flyout-left > ul {
        right: 100%;
    }
}

@media (max-width:767px) {
    .exo-menu {
        min-height: 58px;
        background-color: #23364B;
        width: 100%;
    }

    .exo-menu > li > a {
        width: 100%;
        display: none;
    }

    .exo-menu > li {
        width: 100%;
    }

    .display.exo-menu > li > a {
        display: block;
        padding: 20px 22px;
    }

    .mega-menu, .Images, .Blog, .flyout-right > ul,
    .flyout-left > ul, li.drop-down > ul {
        position: relative;
    }
}

.exo-menu a.toggle-menu {
    position: absolute;
    right: 0px;
    padding: 20px;
    font-size: 27px;
    background-color: #ccc;
    color: #23364B;
    top: 0px;
}

/*
*
* enquiry footer
*/
.enquiry-contact {
    bottom: 0;
    position: fixed;
    right: 55px;
    z-index: 1;
}


.enquiry {
    position: absolute;
    right: 0;
    background: #0088cc;
    display: block;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.enquiry::before {
    color: #fff;
    content: "\f0e0";
    background: rgba(0,0,0,0) no-repeat center center;
    top: 50%;
    left: 50%;
    position: absolute;
    width: 14px;
    height: 14px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.custom-tooltip {
    display: inline-block;
    opacity: 1;
    position: relative;
    bottom: 60px;
    right: -45px;
}

.custom-tooltip .tooltip-inner {
    background: #0088cc;
    width: max-content;
    font-weight: 500;
    
}

.custom-tooltip.top .tooltip-arrow {
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0088cc;
    position: absolute;
    bottom: -10px;
    right: 40%;
}

.enq-date {
    left: auto !important;
    right: 0;
}

.line-height-25{
    line-height: 25px;
}

#enquiry .form-control{
    background:#ffffff;
}

.enquiry-contact .sidebar-arrow,
.enquiry-contact .sidebar-box {
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.enquiry-contact .sidebar-arrow {
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffcacf;
    position: absolute;
    bottom: 50px;
    right: 10px;
    opacity: 1;
}

.enquiry-contact .sidebar-box {
    position: relative;
    right: -45px;
    min-width: 280px;
    bottom: 60px;
    opacity: 1;
    cursor: pointer;
}

.enquiry-contact .sidebar-box .sidebar-contant .support-service {
    border: solid 1px #ffcacf !important;
}

@media (max-width: 767px) {
    .enquiry-contact .sidebar-arrow,
    .enquiry-contact .sidebar-box {
        opacity: 1;/*0*/
        display: block !important;/*none*/
    }

        .enquiry-contact .sidebar-box .sidebar-contant {
            display: block;
            margin-bottom: 0;
        }

    .enquiry-contact .enquiry:hover + .sidebar-arrow,
    .enquiry-contact .enquiry:hover + .sidebar-arrow + .sidebar-block .sidebar-box {
        opacity: 1;
        display: block !important;
    }
}

/*
*
* booking modal
*/
#booking p {
    color: grey
}

#booking #heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: normal
}

#booking #msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#booking #msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

#booking .form-card {
    text-align: left
}

#booking #msform fieldset:not(:first-of-type) {
    display: none
}

#booking #msform input,
#booking #msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    /*font-family: montserrat;*/
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
}

#booking #msform input:focus,
#booking #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0
}

#booking #msform .action-button {
    width: 100px;
    background: #673AB7;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

#booking #msform .action-button:hover,
#booking #msform .action-button:focus {
    background-color: #311B92
}

#booking #msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#booking #msform .action-button-previous:hover,
#booking #msform .action-button-previous:focus {
    background-color: #000000
}

#booking .card {
    z-index: 0;
    border: none;
    position: relative
}

#booking .fs-title {
    font-size: 25px;
    color: #673AB7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

#booking .purple-text {
    color: #673AB7;
    font-weight: normal
}

#booking .steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

#booking .fieldlabels {
    color: gray;
    text-align: left
}

#booking #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#booking #progressbar .active {
    color: #673AB7
}

#booking #progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 16.6666667%;
    float: left;
    position: relative;
    font-weight: 400
}

#booking #progressbar #vehicles:before {
    font-family: "Font Awesome 5 Free";
    content: "\f13e";
    content: "\f1b9";
    font-weight: 900;
}

#booking #progressbar #stay:before {
    font-family: "Font Awesome 5 Free";
    content: "\f007";
    content: "\f594";
    font-weight: 900;
}

#booking #progressbar #meals:before {
    font-family: "Font Awesome 5 Free";
    content: "\f030";
    content: "\f2e7";
    font-weight: 900;
}

#booking #progressbar #breakfast:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    content: "\f805";
    font-weight: 900;
}

#booking #progressbar #guide:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    content: "\f007";
    font-weight: 900;
}

#booking #progressbar #confirm:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
}

#booking #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#booking #progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#booking #progressbar li.active:before,
#booking #progressbar li.active:after {
    background: #673AB7
}

#booking .progress {
    height: 20px
}

#booking .progress-bar {
    background-color: #673AB7;
    height: 20px;
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
}

#booking .fit-image {
    width: 100%;
    object-fit: cover
}

.justify-content-even {
    justify-content: space-evenly;
}

/*categories*/

.cat-vehicle .categorie-box,
.cat-stay .categorie-box,
.cat-meal .categorie-box,
.cat-breakfast .categorie-box,
.cat-guide .categorie-box {
    transition: all .2s ease-in-out;
}

.cat-vehicle .custom-checkbox,
.cat-stay .custom-checkbox,
.cat-meal .custom-checkbox,
.cat-breakfast .custom-checkbox,
.cat-guide .custom-checkbox {
    position: absolute;
    top: 10px;
    right: 0;
}

.cat-vehicle .select-btn,
.cat-stay .select-btn,
.cat-meal .select-btn,
.cat-breakfast .select-btn,
.cat-guide .select-btn {
    background: transparent !important;
}

.cat-vehicle .checkbox + label::before,
.cat-vehicle .radio-button + label::before,
.cat-vehicle .checkbox + label::after,
.cat-stay .checkbox + label::before,
.cat-stay .radio-button + label::before,
.cat-stay .checkbox + label::after,
.cat-meal .checkbox + label::before,
.cat-meal .radio-button + label::before,
.cat-meal .checkbox + label::after,
.cat-breakfast .checkbox + label::before,
.cat-breakfast .radio-button + label::before,
.cat-breakfast .checkbox + label::after,
.cat-guide .checkbox + label::before,
.cat-guide .radio-button + label::before,
.cat-guide .checkbox + label::after {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.cat-vehicle .checkbox + label::after,
.cat-stay .checkbox + label::after,
.cat-meal .checkbox + label::after,
.cat-breakfast .checkbox + label::after,
.cat-guide .checkbox + label::after {
    margin-top: 4px !important;
    margin-left: 4px !important;
}

.cat-vehicle .categorie-box:hover .checkbox + label::before,
.cat-stay .categorie-box:hover .checkbox + label::before,
.cat-meal .categorie-box:hover .checkbox + label::before,
.cat-breakfast .categorie-box:hover .checkbox + label::before,
.cat-guide .categorie-box:hover .checkbox + label::before {
    background: #ef6c00 none repeat scroll 0 0 !important;
}

.cat-vehicle .categorie-box:hover .checkbox + label::after,
.cat-stay .categorie-box:hover .checkbox + label::after,
.cat-meal .categorie-box:hover .checkbox + label::after,
.cat-breakfast .categorie-box:hover .checkbox + label::after,
.cat-guide .categorie-box:hover .checkbox + label::after {
    background-image: url(../images/check-box-icon.png);
    background-repeat: no-repeat;
}

.cat-vehicle .categorie-box.active {
    background: #4285F4 !important;
}

.cat-stay .categorie-box.active {
    background: #34A853 !important;
}

.cat-meal .categorie-box.active {
    background: #FBBC05 !important;
}

.cat-breakfast .categorie-box.active {
    background: #EA4335 !important;
}

.cat-guide .categorie-box.active {
    background: #ef6c00 !important;
}

.cat-vehicle .categorie-box.active h5,
.cat-stay .categorie-box.active h5,
.cat-meal .categorie-box.active h5,
.cat-breakfast .categorie-box.active h5,
.cat-guide .categorie-box.active h5 {
    color: #ffffff !important;
}

.cat-vehicle .categorie-box.active .cat-img,
.cat-vehicle .categorie-box.active .cat-desc a.btn,
.cat-stay .categorie-box.active .cat-img,
.cat-stay .categorie-box.active .cat-desc a.btn,
.cat-meal .categorie-box.active .cat-img,
.cat-meal .categorie-box.active .cat-desc a.btn,
.cat-breakfast .categorie-box.active .cat-img,
.cat-breakfast .categorie-box.active .cat-desc a.btn,
.cat-guide .categorie-box.active .cat-img,
.cat-guide .categorie-box.active .cat-desc a.btn {
    background: #f8f9fa !important;
}

.cat-vehicle .categorie-box.active .cat-img,
.cat-stay .categorie-box.active .cat-img,
.cat-meal .categorie-box.active .cat-img,
.cat-breakfast .categorie-box.active .cat-img,
.cat-guide .categorie-box.active .cat-img {
    border: solid 5px #f8f9fa !important;
}

.cat-vehicle .categorie-box.active .cat-img:after,
.cat-vehicle .categorie-box.active .cat-desc a.btn:after,
.cat-stay .categorie-box.active .cat-img:after,
.cat-stay .categorie-box.active .cat-desc a.btn:after,
.cat-meal .categorie-box.active .cat-img:after,
.cat-meal .categorie-box.active .cat-desc a.btn:after,
.cat-breakfast .categorie-box.active .cat-img:after,
.cat-breakfast .categorie-box.active .cat-desc a.btn:after,
.cat-guide .categorie-box.active .cat-img:after,
.cat-guide .categorie-box.active .cat-desc a.btn:after {
    background: #6c757d !important;
}

.cat-vehicle .categorie-box.active:hover .cat-desc a.btn:after,
.cat-stay .categorie-box.active:hover .cat-desc a.btn:after,
.cat-meal .categorie-box.active:hover .cat-desc a.btn:after,
.cat-breakfast .categorie-box.active:hover .cat-desc a.btn:after,
.cat-guide .categorie-box.active:hover .cat-desc a.btn:after {
    left: 120%;
    -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.cat-vehicle .categorie-box.active:hover .cat-desc a.btn:hover:after,
.cat-stay .categorie-box.active:hover .cat-desc a.btn:hover:after,
.cat-meal .categorie-box.active:hover .cat-desc a.btn:hover:after,
.cat-breakfast .categorie-box.active:hover .cat-desc a.btn:hover:after,
.cat-guide .categorie-box.active:hover .cat-desc a.btn:hover:after {
    left: -75px;
    -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.cat-vehicle .categorie-box.active .checkbox + label::before,
.cat-stay .categorie-box.active .checkbox + label::before,
.cat-meal .categorie-box.active .checkbox + label::before,
.cat-breakfast .categorie-box.active .checkbox + label::before,
.cat-guide .categorie-box.active .checkbox + label::before {
    background: #343a40 none repeat scroll 0 0 !important;
    border-color: #343a40 !important;
}

.cat-vehicle .categorie-box.active .checkbox + label::after,
.cat-stay .categorie-box.active .checkbox + label::after,
.cat-meal .categorie-box.active .checkbox + label::after,
.cat-breakfast .categorie-box.active .checkbox + label::after,
.cat-guide .categorie-box.active .checkbox + label::after {
    color: #000000 !important;
}

.cat-vehicle .categorie-box.active:hover .checkbox + label::before,
.cat-stay .categorie-box.active:hover .checkbox + label::before,
.cat-meal .categorie-box.active:hover .checkbox + label::before,
.cat-breakfast .categorie-box.active:hover .checkbox + label::before,
.cat-guide .categorie-box.active:hover .checkbox + label::before {
    background: #000000 none repeat scroll 0 0 !important;
}

.cat-vehicle .categorie-box i:not(.i-vehicle),
.cat-stay .categorie-box i:not(.i-stay),
.cat-meal .categorie-box i:not(.i-meal),
.cat-breakfast .categorie-box i:not(.i-breakfast),
.cat-guide .categorie-box i:not(.i-guide) {
    font-size: xxx-large;
    text-decoration: none;
    height: auto;
    max-width: 100%;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    vertical-align: middle;
    padding-top: 15px;
}

.cat-vehicle .categorie-box:hover .cat-img i,
.cat-stay .categorie-box:hover .cat-img i,
.cat-meal .categorie-box:hover .cat-img i,
.cat-breakfast .categorie-box:hover .cat-img i,
.cat-guide .categorie-box:hover .cat-img i {
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.col-vehicle,
.col-stay {
    display: none;
}

/* common */

.text-color {
    color: #ef6c00;
}

.line-height-20{
    line-height: 20px;
}

.table-options tbody tr:nth-child(odd) {
    background: #f8f9fa;
}

.valign-super {
    vertical-align: super;
}

.bottom-10 {
    bottom: 10px;
}

.b-t-r-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.b-b-r-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.effect:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
}

.effect:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
}

.effect:before,
.effect:after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/*
*
* forts/*.aspx
*/
#places .about-part .about-part-1,
#places .about-part .about-part-2 {
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

#places .about-part .about-part-1:hover,
#places .about-part .about-part-2:hover {
    background: #f8f9fa !important;
}

#places .about-part .about-part-1:hover h2.main_title.heading,
#places .about-part .about-part-2:hover h2.main_title.heading {
    color: #ef6c00;
    text-decoration: underline;
}

#places .about-part .about-part-1:hover .image-part,
#places .about-part .about-part-2:hover .image-part {
    filter: drop-shadow(2px 4px 6px black) grayscale(1);
}

#places .about-part .about-part-1:hover .effect:before,
#places .about-part .about-part-2:hover .effect:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

#places .about-part .about-part-1:hover .effect:after,
#places .about-part .about-part-2:hover .effect:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/*
*
* booknow packages.aspx
*/
.book-now {
    bottom: 50px;
    position: fixed;
    right: 100px;
    z-index: 2;
    cursor: pointer;
}
.booknow {
    position: absolute;
    right: 0;
    background: #EA4335;
    display: block;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

    .booknow::before {
        color: #fff;
        content: "\f0b1";
        background: rgba(0,0,0,0) no-repeat center center;
        top: 50%;
        left: 50%;
        position: absolute;
        width: 14px;
        height: 14px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        -webkit-transition: all 0.4s ease 0s;
        -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

.book-now {
    right: 192px;
    bottom: 10px
}

.booknow {
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    background: #fff !important;
    border: solid 1px #EA4335;
    border-right: 0 !important;
}

.booknow::before {
    color: #EA4335;
}

.book-now div.text {
    position: relative;
    left: 90px;
    border: solid 1px #EA4335;
    height: 40px;
    padding: 10px;
    padding-top: 8px;
    background: #EA4335;
    color: #fff;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.book-now:hover .booknow {
    background: #EA4335 !important;
    border-radius: 0;
}

.book-now:hover .booknow::before {
    color: #fff !important;
}

.book-now:hover div.text {
    background: #fff;
    color: #EA4335;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

/*
*
* loading modal
*/
    .modal-icon {
    width: 80px;
    height: 80px;
    border: 4px solid #F8BB86;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box;
}

.modal-icon .icon-line {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #F8BB86;
}

.modal-icon .icon-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #F8BB86;
}

.modal-h2 {
    color: #575757;
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
}

.modal-p {
    display: block;
    color: #797979;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
}

.select2-container--focus .select2-selection--single, .select2-search__field:focus {
    border-color: #ef6c00;
    text-shadow: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 991px) {
    .side-toggle-contact {
        display: inline-flex;
        position: absolute;
        left: -30px;
    }

    .side-toggle-contact i {
        background: #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        padding: 5px;
        font-size: 10px;
        color: #ef6c00;
        line-height: 20px;
        height: 30px;
        width: 30px;
        text-align: center;
    }

    .side-toggle-contact small {
        display: block;
    }
}

@media (max-width: 450px) {
    .side-toggle-contact {
        left: -50px;
    }

    .side-toggle-contact h5:not(small) {
        font-size: 100%;
    }

    .side-toggle-contact .small {
        display: none;
    }
}

button.modal-close {
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 35px;
    background: white;
    color: red;
    border-radius: 50%;
    padding: 5px;
    border: red solid;
    z-index: 1;
}

#booking #msform .action-button-close {
    width: 100px;
    background: #EA4335;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: left;
}

#booking #msform .action-button-close:hover,
#booking #msform .action-button-close:focus {
    background-color: red;
}