/*
Theme Name: Paradise 4.5
Theme URI: https://www.ansonika.com/paradise/demo.html
Author: Ansonika
Author URI: https://themeforest.net/user/Ansonika/

[Table of contents] 

1. SITE STRUCTURE and TYPOGRAPHY
- 1.0 Preloader
- 1.1 Typography
- 1.2 Animations title
- 1.3 Buttons
- 1.4 Structure
- 1.5 Menu
- 1.6 Hero

2. CONTENT
- 2.1 Carousel Slider
- 2.2 Facilities
- 2.3 Testimonials
- 2.4 Accordion
- 2.5 Room list 
- 2.6 Booking Section

3. COMMON
- 3.1 Misc
- 3.2 Datepicker
- 3.3 Forms
- 3.4 Success submit 
- 3.5 Spacing

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/

@import 'variables';
@import 'mixin';

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}

/*-------- 1.0 Preloader --------*/
@-webkit-keyframes background {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }
}

@-moz-keyframes background {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }
}

@-o-keyframes background {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }
}

@keyframes background {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: $color-2;
    z-index: 99999999999 !important;
    overflow: hidden;

    &.loaded {
        -webkit-animation: background .65s normal forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-animation: background .65s normal forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-animation: background .65s normal forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
        animation: background .65s normal forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -webkit-transition-delay: 1s;
        -moz-transition-delay: 1s;
        -o-transition-delay: 1s;
        transition-delay: 1s;
    }
}

[data-loader="circle-side"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite .95s linear;
    -moz-animation: circle infinite .95s linear;
    -o-animation: circle infinite .95s linear;
    animation: circle infinite .95s linear;
    border: 2px solid #111;
    border-top-color: rgba(255, 255, 255, 0.2);
    border-right-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    @include border-radius(100%);
}

@-webkit-keyframes circle {
    0% {
        @include rotate(0);
    }

    100% {
        @include rotate(360deg);
    }
}

@-moz-keyframes circle {
    0% {
        @include rotate(0);
    }

    100% {
        @include rotate(360deg);
    }
}

@-o-keyframes circle {
    0% {
        @include rotate(0);
    }

    100% {
        @include rotate(360deg);
    }
}

@keyframes circle {
    0% {
        @include rotate(0);
    }

    100% {
        @include rotate(360deg);
    }
}

/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/

html * {
    -webkit-font-smoothing: antialiased;
}

body {
    background: $body-color;
    @include fontSize(15px);
    line-height: 1.6;
    font-family: $font-main;
    color: $body-text-color;
}

main {
    position: relative;
    z-index: 2;
    background-color: $body-color;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: $heading-color;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.3;
}

h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p {
    margin-bottom: 25px;
}

strong {
    font-weight: 600;
}

p.lead {
    strong {
        font-weight: 500;
    }
}

hr {
    margin: 30px 0 30px 0;
    border-color: $border-color-2;
    opacity: 1;

    &.more_margin {
        margin: 60px 0 60px 0;
    }
}

/* General links color */
a {
    color: $color-3;
    text-decoration: none;
    @include transition-default;
    outline: none;

    &:hover,
    &:focus {
        color: $color-1;
        text-decoration: none;
        outline: none;
    }
}

.title {
    small {
        text-transform: uppercase;
        color: $color-3;
        letter-spacing: 3px;
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
        @include fontSize(12px);
    }

    h2,
    h3 {
        font-weight: 700;
        @include fontSize(38px);
        margin-bottom: 15px;
    }

    h3 {
        @include fontSize(31px);
    }

    &.center {
        text-align: center;
    }

    &.white {
        small {
            color: $color-6;
            opacity: 0.8;
        }

        h2,
        h3 {
            color: #fff;
        }
    }
}

/*-------- 1.2 Animations title --------*/
.slide-animated {
    @include transform (translateY(20px));
    opacity: 0;
    visibility: hidden;
    @include transition-default (all, 0.05s, ease);
}

.is-transitioned .slide-animated {
    @include transform (none);
    opacity: 1;
    visibility: visible;
    @include transition-default (all, 0.5s, ease);

    &.one {
        transition-delay: 0.5s;
        -webkit-transition-delay: 0.5s;
        -moz-transition-delay: 0.5s;
        -o-transition-delay: 0.5s;
    }

    &.two {
        transition-delay: 0.7s;
        -webkit-transition-delay: 0.7s;
        -moz-transition-delay: 0.7s;
        -o-transition-delay: 0.7s;
    }

    &.three {
        transition-delay: 0.9s;
        -webkit-transition-delay: 0.9s;
        -moz-transition-delay: 0.9s;
        -o-transition-delay: 0.9s;
    }

    &.four {
        transition-delay: 2.5s;
        -webkit-transition-delay: 2.5s;
        -moz-transition-delay: 2.5s;
        -o-transition-delay: 2.5s;

    }
}

/*-------- 1.3 Buttons --------*/
a.btn_1,
.btn_1 {
    border: none;
    color: #fff;
    background: $color-3;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    padding: 14px 25px 14px 25px;
    font-weight: 600;
    @include transition-default;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;

    &:hover {
        background-color: $color-4;
    }

    &.inverse {
        background-color: #fff;
        color: $heading-color;
    }

    &.full-width {
        width: 100%;
        text-align: center;
    }

    &.outline {
        background-color: transparent;
        border: 2px solid $color-1;
        color: $color-1;

        &.white {
            border-color: #fff;
            color: #fff;
        }

        &:hover {
            background-color: $color-4;
            border: 2px solid transparent;
            color: #fff;
        }
    }
}


a.animated_link {
    position: relative;
    text-decoration: none;

    &::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: $color-1;
        transform: scaleX(0);
        transform-origin: top left;
        transition: transform 0.3s ease;
    }

    &:hover::before {
        transform: scaleX(1);
    }

    &.active::before {
        transform: scaleX(1);
    }
}

.lang_wp {
    position: absolute;
    right: 30px;
    bottom: 30px;
    text-align: right;
    z-index: 99999;
}


/*-------- 1.4 Structure --------*/

/* Header */
header {
    padding: 20px 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0);
    @include transition-default (all, 0.3s, ease);
    @include mobile {padding: 15px 0;}
    .logo_sticky {
        display: none;

    }

    .logo_normal {
        display: block;

    }

    nav {
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: right;

            li {
                display: inline-block;
                font-weight: 600;
                margin-left: 25px;

                &:first-child {
                    margin-left: 0;

                    @include tablet {
                        display: none;
                    }
                }
            }
        }
    }

    &.fixed_header {
        nav {
            ul {

                li a {
                    color: #fff;

                    &.animated_link:before {
                        background-color: #fff;
                    }
                }
            }
        }

        &.sticky {
            @include transition-default;
            border-bottom: 1px solid $border-color-2;
            background-color: #fff;

            .logo_normal {
                display: none;
            }

            .logo_sticky {
                display: inline-block;
            }

            nav {
                ul {
                    li a {
                        color: #333;

                        &.animated_link:before {
                            background-color: #333;
                        }

                        &.btn_1 {
                            color: #fff;
                        }
                    }
                }
            }

            .hamburger__inner,
            .hamburger__inner::before,
            .hamburger__inner::after {
                background-color: #333;
            }
        }
    }
}

.hamburger_2 {
    position: relative;
    top: 8px;
    padding: 0 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;

    @include tablet {
        top: 5px;
    }

    &:hover .hamburger__inner {
        animation: burger .4s ease;
    }

    &:hover .hamburger__inner:before {
        animation: burger .4s .1s ease;
    }

    &:hover .hamburger__inner:after {
        animation: burger .4s .2s ease;
    }

    .hamburger__box {
        width: 24px;
        height: 24px;
        display: inline-block;
        position: relative;
    }

    .hamburger__inner {
        display: block;
        top: 50%;
        margin-top: -2px;
    }

    .hamburger__inner,
    .hamburger__inner::before,
    .hamburger__inner::after {
        width: 24px;
        height: 2px;
        background-color: #fff;
        border-radius: 0px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

    .hamburger__inner::before,
    .hamburger__inner::after {
        content: "";
        display: block;
    }

    .hamburger__inner::before {
        top: -8px;
    }

    .hamburger__inner::after {
        bottom: -8px;
    }
}

@keyframes burger {
    0% {
        transform-origin: 0 100%;
        transform: scale(1, 1);
    }

    50% {
        transform-origin: 0 100%;
        transform: scale(0, 1);
    }

    100% {
        transform-origin: 0 100%;
        transform: scale(1, 1);
    }
}

.headroom--not-top .hamburger__inner,
.headroom--not-top .hamburger__inner::before,
.headroom--not-top .hamburger__inner::after {
    background-color: #333;
}

/* Hamburger with close */
.hamburger {
    position: relative;
    top: 8px !important;
}

.headroom--not-top .hamburger-inner,
.headroom--not-top .hamburger-inner::before,
.headroom--not-top .hamburger-inner::after {
    background-color: #333;
}

.phone_element {
    border-top: 1px solid $border-color-2;
    padding: 20px 0 20px 0;
    position: relative;
    line-height: 1.4;

    a {
        display: flex;
        align-items: center;

        span {
            @include fontSize(18px);
            font-weight: 600;
            color: $color-3;

            em {
                color: $body-text-color;
                display: block;
                font-style: inherit;
                text-transform: uppercase;
                @include fontSize(11px);
                font-weight: 500;
                letter-spacing: 2px;
            }
        }

        i {
            margin-right: 15px;
            @include fontSize(30px);
            color: $color-3;
        }
    }

    &.no_borders {
        padding-top: 5px;
        border-top: none;
    }
}


.closebt {
    @include transition-default;
    cursor: pointer;
    color: #ccc;
    display: inline-block;
    text-align: center;
    position: absolute;
    right: 25px;
    top: 0;

    i {
        @include fontSize(42px);
    }

    &:hover {
        @include rotate(90deg);
        opacity: 1;
    }
}

/*-------- 1.5 Menu --------*/
.logo_panel {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 135px;
    background-color: $color-5;
}
.menu_v1 {
    .hamburger_2 {
        top: 5px;
    }

    .hamburger_2,
    .closebt,
    .layer {
        display: none;

        @include tablet {
            display: block;
        }
    }

    .logo_panel {
        display: none;
        border-bottom: 1px solid $border-color;

        @include tablet {
            display: flex;
        }
    }
}

@media only screen and (max-width: 991px) {
    .main-menu {
        overflow-y: auto;
        transform: translateX(102%);
        top: 0;
        right: 0;
        bottom: 0;
        width: 350px;
        height: 100%;
        position: fixed;
        z-index: 99999;
        background-color: #fff;
        -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        -moz-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        -ms-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        -o-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        @include box-shadow (0px 0px 20px 0px rgba(0, 0, 0, 0.10));
        -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1);
        -moz-transition: all .4s cubic-bezier(.77, 0, .175, 1);

        #mainNav {
            padding: 30px;

            ul {
                text-align: left;

                li {
                    display: block;
                    margin: 0;

                    a {
                        display: block;
                        color: #333 !important;
                        text-transform: uppercase;
                        padding: 0.35rem 0.65rem !important;
                        margin: 0 0 10px 0;

                        &:before {
                            display: none !important;

                        }

                        &:hover,
                        &.active {
                            color: $color-3 !important;

                        }

                        &.btn_1 {
                            background-color: transparent;

                        }
                    }
                }
            }

        }
    }

    .main-menu.show {
        transform: translateX(0);
    }
}

/*-------- 1.6 Hero --------*/
.opacity-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: all .5s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

span[data-jarallax-element] {
    display: block;
}

.kenburns .owl-item.active .item img,
img.jarallax-img.kenburns {
    transform-origin: 50% 50%;
    animation: kenburns 15s linear 0s;
    transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    animation-fill-mode: forwards;
    /* or: backwards, both, none */
}

@keyframes kenburns {
    0% {

        transform: scale3d(1.4, 1.4, 1.4) translate3d(-5%, -2%, 0px);
        transition: transform 7000ms linear 1s
    }

    100% {
        transform: scale3d(1.25, 1.25, 1.25) translate3d(0px, 0px, 0px);
        transition: transform 7000ms linear 1s
    }
}

img.jarallax-img.kenburns-2 {
    transform-origin: 50% 50%;
    animation: kenburns 10s linear 0s;
    transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    animation-fill-mode: forwards;
    /* or: backwards, both, none */
}

.hero {
    color: #fff;

    &.full-height {
        height: 100vh;

        @include tablet {
            min-height: 600px;
        }

        @include mobile {
            height: 87vh;
        }
    }

    &.medium-height {
        height: 70vh;

        @include tablet {
            min-height: 600px;
        }
    }

    &.small-height {
        height: 60vh;

        @include tablet {
            min-height: 600px;
        }
    }

    .wrapper {
        text-align: left;
        height: 100%;

        small {
            text-transform: uppercase;
            letter-spacing: 3px;
            display: block;
            margin: 0 0 10px 0;
            color: $color-6;
            font-weight: 600;
        }

        h1,
        h3 {
            color: #fff;
            @include fontSize(51px);
            margin: 0 0 10px 0;
            font-weight: 700;
            text-transform: uppercase;

            @include mobile {
                @include fontSize(42px);
            }

        }

        p {
            font-weight: 400;
            @include fontSize(24px);
            line-height: 1.4;
            margin-bottom: 0;

            strong {
                font-weight: 600;
            }

            @include mobile {
                padding: 0;
                @include fontSize(18px);
            }
        }
    }
}

.parallax_section_1 {
    height: 70vh;
    overflow: hidden;
    @include tablet {
        min-height: 650px;
    }
}

.copy {
    color: #fff;
        text-align: center;
        padding: 25px 0;
        background-color: #1f2127;
        @include fontSize(13px);
    }
.social ul {
    display: block;
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;

    li {
        display: inline-block;
        margin: 0 5px;

        a {
            display: block;
            color: $body-text-color;
            opacity: 0.7;
            &:hover {
                color: $color-3;
                opacity: 1;
            }
            i {
                @include fontSize(21px);
            }
        }
    }
}

.styled-select {
    max-width: 180px;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    border: none;
    @include rgba(bg, #fff, 0.05);
    @include border-radius(3px);
    padding-right: 35px;
    position: relative;

    &.lang-selector {
        &:after {
            font-family: "bootstrap-icons";
            content: "\F3EE";
            color: #fff;
            position: absolute;
            right: 15px;
            top: 0;
        }
    }

    select {
        background: transparent;
        width: 110%;
        padding-left: 15px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        height: 30px;
        color: #ccc;
        @include fontSize(13px);
        margin: 0;
        font-weight: 500;
        -moz-appearance: window;
        -webkit-appearance: none;
        cursor: pointer;
        outline: none;

        &:focus {
            color: #fff;
            outline: none;
            box-shadow: none;
        }

        &::-ms-expand {
            display: none;
        }
    }
}

.styled-select.lang-selector select option {
    color: #555;
}

/* Opacity mask when left open */
.layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.35);
    @include transition-default (all, 0.1s, ease);
    opacity: 0;
    visibility: hidden;
}

.layer-is-visible {
    opacity: 1;
    visibility: visible;
}


/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/

.intro {
    em {
        font-family: 'Caveat', cursive;
        @include fontSize(32px);
        font-style: normal;
        color: #555;
    }
}

/*-------- 2.1 Carousel Slider  --------*/
#carousel-home {
    position: relative;

    .static {
        position: static;
    }

    .cover {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        max-height: none !important;
        z-index: 2;
        opacity: 1 !important;
    }

    .owl-carousel {
        position: relative;

    }

    .owl-carousel .owl-slide {
        height: 100vh;
        position: relative;

        @include mobile {
            height: 90vh;
        }

    }

    .owl-carousel .owl-slide-animated {
        @include transform (translateY(20px));
        opacity: 0;
        visibility: hidden;
        @include transition-default (all, 0.05s, ease);
    }

    .owl-carousel .owl-slide-animated.is-transitioned {
        @include transform (none);
        opacity: 1;
        visibility: visible;
        @include transition-default (all, 0.5s, ease);
    }

    .owl-carousel .owl-slide-title.is-transitioned {
        transition-delay: 0.2s;
        -webkit-transition-delay: 0.2s;
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
    }

    .owl-carousel .owl-slide-title-2.is-transitioned {
        transition-delay: 0.4s;
        -webkit-transition-delay: 0.4s;
        -moz-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
    }

    .owl-carousel .owl-slide-title-3.is-transitioned {
        transition-delay: 0.6s;
        -webkit-transition-delay: 0.6s;
        -moz-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
    }

    .owl-carousel .owl-slide-title-4.is-transitioned {
        transition-delay: 0.8s;
        -webkit-transition-delay: 0.8s;
        -moz-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
    }

    .owl-carousel .owl-dots .owl-dot,
    .owl-carousel .owl-nav [class*="owl-"]:focus {
        outline: none;
    }

}

.owl-carousel .owl-dots {
    margin-top: 0 !important;
    right: 15px;
    width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 3;
}

.owl-carousel.nav-dots-orizontal .owl-dots {
    margin-top: 20px !important;
    width: 100%;
    position: static;
}


.slide-text {

    h2,
    h3 {
        @include fontSize(51px);
        text-transform: uppercase;
        font-weight: 700;

        @include mobile {
            @include fontSize(42px);
        }
    }

    small {
        text-transform: uppercase;
        color: $color-6;
        letter-spacing: 4px;
        font-weight: 600;
        display: block;
        margin: 0 0 10px 0;
    }

    p {
        @include fontSize(21px);
    }

    &.white {
        color: #fff;

        h2,
        h3 {
            color: #fff;
        }
    }

    &.black {
        color: #111;

        h2 {
            color: #000;
        }
    }
}

#icon_drag_mobile {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: url(../img/drag_icon.svg) 0 0 no-repeat;
    width: 50px;
    height: 30px;
    opacity: 0.6;
    z-index: 99;
    display: none;

    @include mobile {
        display: block;
    }
}

a.box_cat_rooms {
    display: block;
    margin-bottom: 25px;
    height: 500px;
    position: relative;
    overflow: hidden;
    background-color: #ccc;
    border-radius: 10px;
    @include box-shadow (0px 0px 30px 0px rgba(0, 0, 0, 0.20));

    @include tablet {
        height: 400px;
    }

    .info {
        position: absolute;
        width: 100%;
        z-index: 9;
        display: block;
        padding: 25% 30px 0 30px;
        color: #fff;
        left: 0;
        bottom: -75px;
        padding-bottom: 60px;
        @include backface-visibility (hidden);
        @include transform (translate(0, 0));
        @include transition-default (all, 0.4s, ease);
        @include background-gradient(transparent, #000, 'vertical');

        small {
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 2px;
            color: #999;
            display: block;
            margin-bottom: 0;
            @include fontSize(12px);
            color: #fff;
        }

        h3 {
            color: #fff;
            @include fontSize(26px);
            font-weight: 600;
            margin-bottom: 15px;
        }

        span {
            @include fontSize(15px);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            opacity: 0;
            position: relative;

            &:before {
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 10px;
                height: 2px;
                content: "";
                transition: width 500ms ease;
                background-color: #fff;
            }

            &:hover {
                background-color: $color-1;
                border-color: transparent;
            }
        }
    }

    figure {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

    &:hover .info {
        @include transform (translate(0, -65px));

    }

    &:hover .info span {
        opacity: 1;
    }

    &:hover .info span:before {
        width: 100%;
    }

    &:hover .background-image {
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

}

/*-------- 2.2 Facilities --------*/
.box_facilities {
    padding: 0 25px 25px 25px;
    border-width: 2px;
    text-align: center;
    border-style: solid;
    border-right: 0;
    border-image: linear-gradient(to bottom, #ededed, rgba(0, 0, 0, 0)) 1 60%;

    @include desktop {
        border-width: 0;
    }

    i {
        @include fontSize(62px);
        color: $color-3;
    }

    h3 {
        @include fontSize(21px);

        @include mobile {
            @include fontSize(18px);
        }
    }

    &.no-border {
        border-width: 0;
    }

    &.white {
        border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0)) 1 60%;

        h3 {
            color: #fff;
        }

        i {
            color: #ebd7b2;
        }

        @include mobile {
            padding: 0;
            margin-bottom: 25px;

            i {
                @include fontSize(62px);
            }
        }
    }
}

/*-------- 2.3 Testimonials --------*/
.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

.box_overlay {
    @include rgba(bg, $color-1, 1);
    padding: 45px 45px 45px 225px;
    min-height: 170px;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;

    @include mobile {
        padding: 30px;
    }
}

.pic {
    position: absolute;
    left: 45px;
    top: 45px;
    text-align: left;

    @include mobile {
        position: static;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    h4 {
        position: absolute;
        left: 95px;
        top: 18px;
        color: #fff;
        @include fontSize(14px);
        font-weight: 500;

        @include mobile {
            position: static;
        }

        small {
            display: block;
            color: #fff;
            margin-top: 3px;
            letter-spacing: normal !important;
        }
    }

    figure {
        width: 80px;
        height: 80px;
        overflow: hidden;
        @include border-radius(50%);

        @include mobile {
            margin: 0 auto 10px;
        }

        img {
            width: 80px;
            height: auto;
        }
    }
}

.comment {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 30px;
    @include fontSize(18px);
    font-style: italic;
    text-align: left;

    @include mobile {
        text-align: center;
        border: 0;
        padding: 0;
    }
}

/*-------- 2.4 Accordion --------*/
.accordion {

    .card {
        border: 0;
        margin-bottom: 10px;
        @include box-shadow (0px 0px 10px 0px rgba(0, 0, 0, 0.05));
        border-radius: 5px;

        .card-header {
            background-color: #fff;
            padding: 20px;

            border: 0;
        }
    }

    .card-body {
        padding: 0 20px;

    }

    .card-header h5 {
        @include fontSize(17px);
        color: $body-text-color;

        a {
            border: 0;
            display: block;
            color: $body-text-color;

            i.indicator {
                @include fontSize(18px);
                font-weight: normal;
                float: right;
                color: $body-text-color;
                @include rotate(45deg);
                @include transition-default;
            }

            &.collapsed i {
                @include rotate(0deg);
            }
        }
    }
}

/*-------- 2.5 Room list --------*/
.box_item_info {
    background-color: #fff;
    z-index: 9;
    position: relative;
    padding: 40px 40px 20px 40px;
    @include box-shadow (0px 0px 30px 0px rgba(0, 0, 0, 0.10));

    small {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 0;
        @include fontSize(14px);
        color: $color-3;
    }

    h2 {
        @include fontSize(30px);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .facilities {
        ul {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;

            li {
                float: left;
                display: flex;
                align-items: center;
                line-height: 1;
                margin: 0 25px 10px 0;

                &:last-child {
                    margin: 0;
                }

                i {
                    height: 36px;
                    @include fontSize(30px);
                    color: $color-3;
                    margin-right: 15px;
                }

                @include mobile {
                    float: none;
                    width: 100%;
                }
            }
        }
    }

    .box_item_footer {
        border-top: 2px solid #ededed;
        margin-top: 15px;
        padding: 25px 0 15px 0;

        a.animated_link {
            color: $body-text-color;
        }
    }
}

.row_list_version_1 {
    margin-bottom: 60px;

    .box_item_info {
        max-width: 750px;
        margin: -250px 60px 60px 60px;

        @include mobile {
            margin: -150px 10px 0 10px;
            padding: 20px 25px 10px 25px;
        }
    }
}

.row_list_version_2 {
    margin-bottom: 120px;

    @include mobile {
        margin-bottom: 70px;
    }

    .owl-carousel .owl-dots {
        right: auto;
        left: 15px;
    }

    .box_item_info {
        margin: 0 0 0 -100px;

        @include desktop {
            margin: -150px 30px 0 30px;
        }

        @include mobile {
            margin: -50px 10px 0 10px;
            padding: 20px 25px 10px 25px;
        }
    }

    &.inverted {

        .owl-carousel .owl-dots {
            left: inherit;
            right: 15px;

        }

        .box_item_info {
            margin: 0 -100px 0 0;

            @include desktop {
                margin: -50px 30px 0 30px;

            }

            @include mobile {
                margin: -50px 10px 0 10px;
                padding: 20px 25px 10px 25px;
            }
        }
    }
}

.row_list_version_3 {
    margin-bottom: 60px;

    .box_item_info {
        max-width: 750px;
        margin: -100px 60px 60px 60px;

        @include mobile {
            margin: -40px 10px 0 10px;
            padding: 20px 25px 10px 25px;
        }
    }
}

/*-------- 2.6 Booking Section --------*/
.booking_wrapper {
    border-radius: 0 0 10px 10px;
    @include rgba(bg, $color-3, 0.05);
    padding: 20px 20px 0 20px;

    hr {
        border-color: $border-color-2;
        opacity: 1;
        margin: 0 0 25px 0;
    }
    .form-control {
            &::-moz-placeholder {
                color: #333;
            }

            &::placeholder {
                color: #333;
            }
        }
}

.contacts_wrapper {
    border-radius: 0 0 10px 10px;
    @include rgba(bg, $color-3, 0.05);
    padding: 20px 20px 0 20px;

    hr {
        border-color: $border-color-2;
        opacity: 1;
        margin: 0 0 25px 0;
    }
}


.nav-tabs#customTab {
    border-bottom: none;

    .nav-link{
        border-color: transparent;
        color: #999;
        font-weight: 600;
        &:hover {
        color: $color-3;
    }
        &.active {
            @include rgba(bg, $color-3, 0.05);
            border-color: transparent;
            color: $body-text-color;
        }
    }
}

.owl-carousel.border-radius .owl-item {
    border-radius: 10px;
    overflow: hidden;
}

.map_contact iframe {
    width: 100%;
    filter: grayscale(85%);
    height: 450px;
    margin-bottom: -10px;
}


/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/

/*-------- 3.1 Misc --------*/
/* Quantity incrementer input */
.qty-buttons {
    position: relative;
    width: 100%;
    display: inline-block;

    label {
        position: absolute;
        color: #999;
        left: 15px;
        top: 13px;
        font-weight: 500;
        color: #6c757d;
        @include fontSize(15px);
    }

    input.qty {
        width: 100%;
        text-align: left;
        padding-left: 80px;
    }

    input.qtyminus,
    input.qtyplus {
        position: absolute;
        width: 36px;
        height: 36px;
        border: 0;
        outline: none;
        cursor: pointer;
        -webkit-appearance: none;
        text-indent: -9999px;
        box-shadow: none;
        border-radius: 50%;
        top: 8px;
    }

    input.qtyplus {
        background: #f5f5f5 url(../img/plus.svg) no-repeat center center;
        right: 15px;
    }

    input.qtyminus {
        background: #f5f5f5 url(../img/minus.svg) no-repeat center center;
        right: 55px;
    }

    &.version_2 {
        .form-control {
            height: 50px;
        }

        input.qty {
            padding-left: 15px;
        }

        input.qtyplus {
            background: #fff url(../img/plus.svg) no-repeat center center;
            right: 5px;
        }

        input.qtyminus {
            background: #fff url(../img/minus.svg) no-repeat center center;
            right: 40px;
        }
    }
}

.custom_badge {
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-left: 5px;
    display: inline-block;
    border-radius: 3px;
    background-color: red;
    @include fontSize(11px);
    padding: 3px 5px;
    position: relative;
    top: -1px;
}

/* Carousel Centered */
.carousel_item_centered .owl-item,
.carousel_item_centered_rooms .owl-item {
    opacity: 0.5;
    transform: scale(0.85) !important;
    @include backface-visibility (hidden);
    -webkit-transform: translateZ(0) scale(0.85, 0.85) !important;
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
}

.carousel_item_centered .owl-item.active.center,
.carousel_item_centered_rooms .owl-item.active.center {
    opacity: 1;
    @include backface-visibility (hidden);
    -webkit-transform: translateZ(0) scale(1, 1) !important;
    transform: scale(1) !important;
}

/* Marquee */
.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100px;
    overflow: hidden;
    font-size: 120px;
    font-weight: bold;
    margin-top: -60px;

    .track {
        position: absolute;
        white-space: nowrap;
        will-change: transform;
        animation: marquee 140s linear infinite;
    }

    .content {
        opacity: 0.05;
        line-height: 1.2;
    }
}


@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-30%);
    }
}


.modal-content {
    border: none !important;
    border-radius: 0 !important;
    padding: 25px;
}

.list_ok {
    ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;

        li {
            padding-left: 45px;
            position: relative;

            strong {
                color: $heading-color;
            }

            &:before {
                color: $color-3;
                position: absolute;
                left: 0;
                top: -7px;
                font-family: "bootstrap-icons";
                content: "\F19F";
                @include fontSize(32px);
            }
        }
    }
}

/* Pinned content */
.pinned-image {
    display: flex;
    height: 90vh;
    justify-content: center;
    position: relative;
    overflow: hidden;

    &.rounded_container {
        border-radius: 15px;
    }
}

.pinned-image--medium {
    height: 75vh;
}

.pinned-image--small {
    height: 45vh;
}

.pinned-image__container {
    position: relative;
    transform: scale(0.80);
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.pinned-image__container-overlay {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.pinned-image__container img,
.pinned-image__container video,
.pinned-image__container {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #ccc;
}

.pinned_over_content {
    text-align: center;
    padding: 0 60px;
    width: 100%;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);

    @include mobile {
        padding: 0 15px;
    }
}

.pinned_over_content h2 {
    color: #fff;
    @include fontSize(52px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.parallax_wrapper {
    position: relative;
    margin-bottom: 25px;

    @include tablet {
        padding-left: 25%;
    }

    .img_over {
        left: -25%;
        bottom: 10%;
        position: absolute;
        z-index: 99;

        @include tablet {
            left: 0;
        }

        img {
            border: 5px solid #fff;
            width: 50%;
            height: auto;
        }
    }

    &.inverted {
        @include tablet {
            padding-left: inherit;
            padding-right: 25%;
        }

        .img_over {
            text-align: right;
            left: inherit;
            right: -25%;

            @include tablet {
                left: inherit;
                right: 0;
            }
        }
    }
}

img.rounded-img {
    border-radius: 10px;
}

.bg_gray {
    background-color: #f4f4f4;
}

.bg_color_1 {
    background-color: $color-4;
}

.bg_white {
    background-color: #fff;
}

/*-------- 3.2 Datepicker --------*/
.daterangepicker {
    border: 0 !important;
    font-family: $font-main !important;
}

.daterangepicker .calendar-table th {
    font-size: 13px !important;
}

.daterangepicker .calendar-table td {
    width: 40px !important;
    height: 35px !important;
    font-size: 13px !important;
    font-weight: 500;
}

/* Fix for scroll issue */
@media screen and (min-width: 560px) {
    .daterangepicker.single {
        width: auto !important;
    }
}

.applyBtn.btn.btn-sm.btn-primary {
    background-color: $color-4;
    border: 0;
}

.drp-selected {
    display: none !important;
}

@media screen and (max-width: 600px) {
    .daterangepicker .drp-calendar {
        max-width: 100% !important;
    }

    .daterangepicker .drp-calendar.left,
    .daterangepicker .drp-calendar.right {
        clear: none !important;
        float: none !important;
        margin-right: 0;
    }
}

.daterangepicker {
    @include box-shadow (0 12px 35px 2px rgba(0, 0, 0, 0.12));
}

/*-------- 3.3 Forms --------*/
.nice-select {
    font-weight: 400 !important;
}
.error_message {
    color: red;
}

.form-group {
    margin-bottom: 25px;

    label {
        font-weight: 500;
        margin-bottom: 3px;
    }
}

.form-control {
    border-color: $border-color;
    @include fontSize(14px);
    color: $body-text-color;
    height: 50px;

    &:focus {
        border-color: #ddd;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.0);
    }

}

textarea.form-control {
    height: 130px !important;
}

/*-------- 3.4 Success submit --------*/
#success_page {
    padding: 30px 0;
    text-align: center;
    @include fontSize(24px);
    h5 {
        margin-top: 15px;

        span {
            display: block;
            margin-top: 7px;
            font-size: 16px;
        }
    }
}

#confirm {
    text-align: center;
    padding: 60px 15px;
}

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

.inlinesvg .svg svg {
    display: inline;
}

.icon--order-success svg path {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards
}


/*-------- 3.6 Spacing --------*/
.margin_120_95 {
    padding-top: 120px;
    padding-bottom: 95px;

    @include mobile {
        padding-top: 90px;
        padding-bottom: 65px;
    }
}

.margin_120_0 {
    padding-top: 120px;
}

.margin_120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.margin_60_35 {
    padding-top: 60px;
    padding-bottom: 35px;

    @include extra-small-mobile {
        padding-top: 30px;
        padding-bottom: 5px;
    }
}

.margin_80 {
    padding-top: 80px;
    padding-bottom: 80px;

    @include tablet {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

.margin_80_55 {
    padding-top: 80px;
    padding-bottom: 55px;

    @include tablet {
        padding-top: 60px;
        padding-bottom: 35px;
    }
}

.margin_80_0 {
    padding-top: 80px;

    @include tablet {
        padding-top: 60px;
    }

    @include extra-small-mobile {
        padding-top: 45px;
    }
}

.margin_60_0 {
    padding-top: 60px;

    @include tablet {
        padding-top: 60px;
    }

    @include extra-small-mobile {
        padding-top: 45px;
    }
}

.add_bottom_60 {
    padding-bottom: 60px;
}

.add_bottom_120 {
    padding-bottom: 120px;

    @include mobile {
        padding-bottom: 90px;
    }
}

.add_bottom_90 {
    padding-bottom: 90px;

    @include mobile {
        padding-bottom: 60px;
    }
}

.add_top_90 {
    padding-top: 90px;

    @include mobile {
        padding-top: 60px;
    }
}