/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; 
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
em {
    font-style: italic !important;
}
/* v1.0 | 20190118
   License: Elite Havens
*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    display: block;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

a {
    cursor: pointer;
}

img[data-sizes="auto"] {
    display: block;
    width: 100%;
}

/* HELPER */
.group:after {
    content: '';
    display: block;
    clear: both;
}

.group .half {
    float: left;
    width: 50%;
}

.clear {
    clear: both;
}

.clear:after {
    content: '';
    clear: both;
    display: block;
}

.lazyload,
.lazyloading {
    opacity: 0;
    -webkit-transform: scale(.99);
    -ms-transform: scale(.99);
    -o-transform: scale(.99);
    transform: scale(.99);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

img.lazyload,
img.lazyloading {
    opacity: 0;
    width: 1000%;
    max-width: none;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.lazyloaded {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

div[id*="jarallax"] .lazyloaded {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.iframe-wrapper {
    height: 265px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 5px;
    -webkit-overflow-scrolling: touch;
}

.iframe-wrapper.iframe-booking {
    height: auto;
    margin-bottom: 50px;
}

.iframe-wrapper iframe {
    width: 100%;
    min-width: 700px;
    margin-top: -5px;
}

@keyframes swipehelper {
    from {
        opacity: 0;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translateX(50%);
    }

    30% {
        opacity: 1;
    }

    to {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes swipehelper {
    from {
        opacity: 0;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translateX(50%);
    }

    30% {
        opacity: 1;
    }

    to {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.top-arrow {
    display: none;
    position: fixed;
    bottom: 62px;
    cursor: pointer;
    right: 10px;
    z-index: 3;
    height: 48px;
    width: 48px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    padding: 13px 0 5px 0;
    text-align: center;
    font-family: sans-serif;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.top-arrow:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 27px;
    right: 20px;
    z-index: 3;
    height: 34px;
    width: 39px;
}

/* WRAPPER */
.wrapper {
    margin: 0 auto;
}

.sticky-wrapper,
.spy-wrapper {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

/* HEADER */
.header-container .header {
    background: #fff;
    position: relative;
    left: 0;
    width: 100%;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container .header.wrapped {
    position: fixed;
    top: 0;
    z-index: 1001;
}

.header-container.sticky .header {
    border-bottom: 1px solid #efefef;
}

.header-container .header .toggler {
    background: #fff;
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
    position: fixed;
    right: 4px;
    top: 8px;
    z-index: 100;
}

.header-container .header .toggler span,
.header-container .header .toggler span:before,
.header-container .header .toggler span:after {
    border-top: 3px solid #000000;
    display: block;
    width: 20px;
}

.header-container .header .toggler span:before,
.header-container .header .toggler span:after {
    content: '';
    margin-top: 3px;
}

.header-container .header .logo a {
    position: absolute;
    overflow: hidden;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container .header .logo a img {
    display: block;
    margin-top: 0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container .header .logo a img.lazyload,
.header-container .header .logo a img.lazyloading {
    width: auto;
    max-width: 100%;
}

.header-container .header .nav {
    text-align: center;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container.sticky .header .nav {
    border-bottom-color: transparent;
}

.header-container .header .nav ul {
    font-size: 0;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.header-container .header .nav ul li {
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.header-container .header .nav ul li:first-of-type {
    margin-left: 0;
}

.header-container .header .nav ul li a {
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container .header .nav ul li .subnav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    text-align: left;
    left: 0;
    z-index: 2;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container .header .nav ul li .subnav .subnav {
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    left: 100%;
    top: 0;
}

.header-container .header .nav ul li.hover > .subnav {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header-container .header .nav ul li .subnav li {
    display: block;
    margin-left: 0;
}

.header-container .header .nav ul li .subnav li a {
    border: none;
    display: block;
    white-space: nowrap;
    padding: 10px 8px;
    min-width: 150px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

/* FOOTER */
.footer-container.sticky .footer {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 99;
    -webkit-animation: footer_sticky .5s 1;
    animation: footer_sticky .5s 1;
    -webkit-animation-direction: linear;
    animation-direction: linear;
}

.footer-container .footer:after {
    content: '';
    display: block;
    clear: both;
}

.footer-container .footer .wrapper {
    position: relative;
}

.footer-container .footer .column {
    float: left;
    text-align: right;
    width: 50%;
    padding: 30px 0;
    font-weight: 400;
}

.footer-container.sticky .footer .column {
    padding: 10px 0;
}

.footer-container .footer .column:first-of-type {
    text-align: left;
}

.footer-container .footer .column h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-container.sticky .footer .column h3 {
    display: none;
}

.footer-container .footer .column a {
    text-decoration: none;
}

.footer-container .footer .column:first-of-type p a {
    text-decoration: underline;
}

.footer-container .footer .column .phone-numbers {
    margin-bottom: 37px;
}

.footer-container.sticky .footer .column .phone-numbers {
    display: none;
}

.footer-container .footer .column .phone-numbers a {
    line-height: 22px;
}

.footer-container .footer .column .phone-numbers a span {
    width: 120px;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.footer-container .footer .column address {
    max-width: 239px;
    margin-right: 0;
    margin-left: auto;
    margin-top: 12px;
    margin-bottom: 10px;
    line-height: 22px;
}

.footer-container.sticky .footer .column address {
    display: none;
}

.footer-container .footer .column address span {
    white-space: nowrap;
    page-break-inside: avoid;
    break-inside: avoid;
}

.footer-container .footer .column .socials {
    font-size: 0;
}

.footer-container.sticky .footer .column .socials {
    margin-bottom: 0;
}

.footer-container .footer .column .socials a {
    height: 29px;
    width: 29px;
    margin: 0 0 0 2px;
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: 14px;
    text-align: center;
    vertical-align: top;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.footer-container .footer .column .socials a:after {
    content: attr(title);
    display: block;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 12px;
    position: absolute;
    padding: 5px;
    top: -32px;
    z-index: 9;
    text-align: center;
    opacity: 0;
    margin-top: 10px;
    left: 50%;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.footer-container .footer .column .socials a:before {
    content: '';
    display: block;
    position: absolute;
    border-left: solid transparent 5px;
    border-right: solid transparent 5px;
    border-top: solid rgba(0, 0, 0, .7) 5px;
    top: -10px;
    left: 50%;
    margin-left: -5px;
    z-index: 9;
    opacity: 0;
    margin-top: 10px;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.footer-container .footer .column .socials a:hover:after,
.footer-container .footer .column .socials a:hover:before {
    opacity: 1;
    margin-top: 0;
    visibility: visible;
}

.footer-container .footer .column .socials a i {
    vertical-align: middle;
    line-height: 29px;
}

.footer-container .footer .column .footer-nav {
    margin-bottom: 7px;
}

.footer-container.sticky .footer .column .footer-nav {
    display: none;
}

.footer-container .footer .column .footer-nav li {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.footer-container .footer .column .footer-nav li:before {
    content: '\2022';
    margin-right: 5px;
    margin-left: 2px;
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: 6px;
    vertical-align: middle;
}

.footer-container .footer .column .footer-nav li:first-of-type:before {
    content: '';
    margin: 0;
}

.footer-container.sticky .footer .column .enquiries {
    display: none;
}

.footer-container.sticky .footer .column .copyright {
    position: absolute;
    left: 0;
    top: 18px;
}

.footer-container .footer .bottom {
    clear: both;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 87px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer-container.sticky .footer .bottom {
    top: 4px !important;
}

.footer-container.sticky .footer .bottom img {
    height: 40px;
}

.footer-container .footer .bottom .marketed {
    line-height: 20px;
    max-width: 280px;
    margin: 65px auto 15px;
}

.footer-container.sticky .footer .bottom .marketed {
    display: none;
}

.footer-container .footer .bottom .marketed a {
    color: #282828;
    text-decoration: none;
    display: block;
}

.footer-container .footer .bottom .marketed span a {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

/* Tripadvisor
------------------------------------------------------------ */
.tavr_certificate_of_excellence {
    margin: 0 auto 30px;
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    -ms-box-sizing: unset;
    -o-box-sizing: unset;
    box-sizing: unset;
}

.footer-container.sticky .tavr_certificate_of_excellence {
    display: none;
}

/* Mini Form */
.miniform .form-column {
    background: transparent;
    border: none;
    margin-right: 60px;
}

.miniform label {
    display: none;
}

.miniform .form-column input,
.miniform .form-column select {
    background: #fff;
    border: 1px solid #dbdbdb;
    margin-right: 60px;
    width: 390px;
    text-align: center;
}

.miniform .form-column input:last-of-type,
.miniform .form-column select:last-of-type {
    margin-right: 0;
}

.miniform .form-container:last-of-type .form-column {
    background: url(images/in-out.png) no-repeat center center;
}

.miniform .form-column.select:after {
    border-top-color: #282828;
}

.miniform button {
    background: #282828 !important;
}

/* HERO CONTAINER */
.owl-carousel {
    touch-action: manipulation; 
}

.hero-container {
    height: auto;
}

.hero-container .hero {
    display: block;
}

.hero-container .hero img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.hero-container .slideshow {
    overflow: hidden;
}

.hero-container .slideshow img.lazyload,
.hero-container .slideshow img.lazyloading,
.hero-container .slideshow > .item img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.hero-container .slideshow .caption {
    position: absolute;
    z-index: 3;
}

.hero-container .slideshow .caption big {
    display: block;
}

.hero-container .slideshow .caption small {
    margin-right: -15%;
    display: block;
    text-align: right;
}

.hero-container .slideshow .owl-nav {
    position: initial;
}

.hero-container .slideshow .owl-nav img {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    width: 2.08vw;
}

.hero-container .slideshow .owl-nav .owl-prev,
.hero-container .slideshow .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero-container .slideshow .owl-nav .owl-prev {
    left: 5%;
}

.hero-container .slideshow .owl-nav .owl-next {
    right: 5%;
}

.hero-container .media {
    position: relative;
    overflow: hidden;
    max-height: calc(80vh - 150px); /*adjustable*/
    min-height: calc(94vh - 150px);
    *min-height: 760px;

}
.hero-container .media:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
.hero-container .media .video {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hero-container .media #pause-button {
    position: absolute;
    z-index: 9;
    background: rgba(255, 255, 255, 0.4);
    bottom: 20px;
    left: 55px;
    text-transform: uppercase;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
    border-radius: 99px;
    height: 32px;
    width: 32px;
    text-align: center;
}
.hero-container .media #mute-button {
    position: absolute;
    z-index: 9;;
    background: rgba(255, 255, 255, 0.4);
    bottom: 20px;
    left: 15px;
    padding: 6px;
    text-transform: uppercase;
    font-size: 21px;
    cursor: pointer;
    border-radius: 99px;
    height: 32px;
    width: 32px;
    text-align: center;
}
.hero-container .media .video iframe {
    min-height: 1000vh;
}

@media all and (max-width:1024px){
    .hero-container .media {
        min-height: calc(84vh - 150px) !important;
    }
}
/* BUTTONS CONTAINER */
.buttons-container .button {
    text-align: center;
    font-size: 0;
}

.buttons-container .button a {
    text-transform: uppercase;
    text-decoration: none;
    margin: 5px;
    text-align: center;
    display: inline-block;
    *display: inline;
    zoom: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.home .buttons-container .button a {
    margin: 5px;
}

.buttons-container .prevnext {
    text-align: right;
}

.buttons-container .prevnext .wrapper {
    height: 0;
    position: relative;
}

.buttons-container .prevnext .group .half {
    float: right;
    height: 0;
}

.buttons-container .prevnext a {
    position: absolute;
    text-decoration: none;
    right: 0;
    text-transform: uppercase;
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.buttons-container .prevnext a.prev {
    right: auto;
    left: 0;
}

.buttons-container .prevnext a i {
    padding: 0;
    font-size: 0;
    height: 17px;
    width: 17px;
    padding: 17px;
    margin-top: -10px;
    vertical-align: top;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    border-radius: 99px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.buttons-container .prevnext a.prev i {
    margin-right: 5px;
}

.buttons-container .prevnext a.next i {
    margin-left: 5px;
}

/* EH CONTAINER */
.eh-container {
    text-align: center;
    position: relative;
}

.eh-container h2 {
    color: #282828;
    font-variant: small-caps;
    font-size: 85px;
    line-height: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.eh-container h2 img {
    display: block;
    margin: 20px auto 0;
}

.eh-container .grids {
    font-size: 0;
    margin: -2.5px;
    padding: 5px 0;
}

.eh-container .grids .grid {
    font-size: 25px;
    color: #fff;
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    width: 25%;
}

.eh-container .grids .grid a {
    display: block;
    background: #282828;
    color: #fff;
    margin: 2.5px;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.eh-container .grids .grid a:hover {
    color: #fff;
}

.eh-container .grids .grid a img {
    display: block;
    width: 100%;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.eh-container .grids .grid:hover a img {
    opacity: 0;
}

.eh-container .grids .grid a span {
    font-size: 50px;
    line-height: 45px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    -moz-text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    -ms-text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    -o-text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.eh-container .grids .grid a span::first-letter {
    font-size: 80px;
}

.eh-container .grids .grid:hover a span {
    opacity: 0;
}

.eh-container .grids .grid p {
    opacity: 0;
    color: #fff;
    position: absolute;
    top: 50%;
    text-align: left;
    text-transform: none;
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    left: 15px;
    right: 15px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.eh-container .grids .grid:hover p {
    opacity: 1;
}

.eh-container .grids .grid p a {
    background: transparent;
    margin: 5px;
}

.eh-container .book-now {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    color: #282828;
    font-size: 24px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 29px 27px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.eh-container .book-now img {
    display: block;
    margin: 0 auto 15px;
}

.eh-container .book-now span {
    display: block;
    max-width: 160px;
    margin: 0 auto;
}

/* MAP */
.map-container {
    position: relative;
}

.map-container .map {
    height: 400px;
}

.content-container .content .content-item {
    margin-bottom: 5px;
}

.content-container .content .content-item.odd,
.content-container .content .content-seo {
    background: #fff;
}

.content-container.scroll .content .content-item.odd {
    margin-top: 0;
    margin-bottom: 0;
}

.content-container.scroll .content .content-item:first-of-type {
    background: #fff;
}

.content-container .content .content-item .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.content-container.scroll .content .content-item:first-of-type .wrapper {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-container .content .content-item h1.entry-title,
.content-container .content .content-item h2.entry-title {
    text-transform: uppercase;
    text-align: center;
}

.links .content-container .content .content-item h1.entry-title,
.sitemap .content-container .content .content-item h1.entry-title,
.contact-sent .content-container .content .content-item h1.entry-title,
.reservation-sent .content-container .content .content-item h1.entry-title {
    margin-bottom: 30px;
    text-transform: none;
    text-align: center;
}

.content-container.scroll .content .content-item h1.entry-title {
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0;
    z-index: 21;
}

.content-container.scroll .content .content-item h1.entry-title.sticky {
    position: fixed;
    top: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.content-container .content .content-item h1.entry-title strong {
    display: block;
}

.content-container .content .content-item h3,
.content-container .content .content-item h3 p {
    margin-bottom: 15px;
    margin-top: 25px;
    line-height: 28px;
}

.content-container .content .content-item p {
    margin-bottom: 15px;
    line-height: 25px;
    text-align: justify;
}

.content-container .content .content-item p:last-of-type {
    margin-bottom: 0;
}

.content-container .content .content-item p:empty {
    display: none;
}

.content-container .content .content-item p strong,
.content-container .content .content-item ul strong,
.content-container .content .content-item ol strong,
.content-container .content .content-item p b,
.content-container .content .content-item ul b,
.content-container .content .content-item ol b {
    font-weight: bold;
}

.content-container .content .content-item p em,
.content-container .content .content-item ul em,
.content-container .content .content-item ol em,
.content-container .content .content-item p i,
.content-container .content .content-item ul i,
.content-container .content .content-item ol i {
    font-style: italic;
}

.content-container .content .content-item img {
    max-width: 100%;
    display: block;
}

.content-container .content .content-item .map_div img {
    max-width: none;
}

/* MENU SPY */
.content-container .content .content-item .spy {
    background: transparent;
    text-align: right;
    top: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.content-container .content .content-item .spy-tabs .spy {
    display: block;
}

.content-container .content .content-item .sticky .spy {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 20;
}

.content-container .content .content-item .spy ul {
    font-size: 0;
    text-align: right;
    display: block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.content-container .content .content-item .spy ul li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    position: relative;
    z-index: 25;
}

.content-container .content .content-item .sticky .spy ul li a {
    padding: 15px;
}

/* NEW PAGINATION PLUGIN 2020*/
.content-container .content .content-item .pagination li a:hover {
    background-color: #000;
    color:#fff;
}

.simple-pagination ul {
	margin: 25px 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #EEE;
    
}

.simple-pagination .current {
	color: #FFF;
	background-color: #666;
	border-color: #666;
	padding: 8px 10px;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #666;
}

/* END PAGINATION CSS */

/* PRESS */
.press .content-container .content .content-item .press-container {
    display: block;
}

.press .content-container .content .content-item .press-container .press-item {
    opacity: 1;
    display: block;
    overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.press .content-container .content .content-item .press-container .press-item.current {
    opacity: 1;
    padding: 0 3px 3px;
    display: block;
    margin-bottom: 25px;
}

.press .content-container .content .content-item .press-container .press-item.current:last-of-type {
    margin-bottom: 0;
}

.press .content-container .content .content-item .press-container .press-item:after {
    display: block;
    content: '';
    clear: both;
}

.press .content-container .content .content-item .press-container .press-item img {
    float: left;
    margin-right: 15px;
    margin-top: 0px;
    border: 1px solid #f0f0f0;
    max-width: 100px;
}

.press .content-container .content .content-item .press-container .press-item a {
    display: block;
}

.press .content-container .content .content-item .press-container .press-item em {
    font-style: italic;
}

.press .content-container .content .content-item .press-container .press-item strong {
    font-weight: 700;
}

.press .content-container .content .content-item .press-pagination {
    text-align: center;
    margin-top: 30px;
}

.press .content-container .content .content-item .press-pagination a {
    text-decoration: none;
    padding: 5px 10px;
    margin: 2px;
    display: inline-block;
    *display: inline;
    zoom: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* VIDEO */
.video .content-container .content .content-item .video {
    width: 100%;
    background-size: cover;
    z-index: 5;
    position: relative;
    border: 1px solid #eee;
}

.video .content-container .content .content-item .video:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, .8);
    padding: 20px 30px;
    z-index: 1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video .content-container .content .content-item .video:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-left: 20px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video .content-container .content .content-item .video iframe {
    display: block;
    width: 100%;
    height: 623px;
    opacity: 0;
    position: relative;
    z-index: 3;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.video .content-container .content .content-item .video iframe.active {
    opacity: 1;
}

/* FLOORPLAN */
.content-container .content .content-item .floorplan {
    margin: 0 auto;
    text-align: center;
}

.content-container .content .content-item .floorplan img {
    margin: 0 auto;
    border: 1px solid #282828;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

/* GALLERY */
.gallery .content-container .content .content-item .tabs,
.floorplan .content-container .content .content-item .tabs,
.floorplans .content-container .content .content-item .tabs,
body.video .content-container .content .content-item .tabs,
body.videos .content-container .content .content-item .tabs {
    background: transparent;
}

.gallery .content-container .content .content-item .tabs p,
.floorplan .content-container .content .content-item .tabs p,
.floorplans .content-container .content .content-item .tabs p ,
body.video .content-container .content .content-item .tabs p,
body.videos .content-container .content .content-item .tabs p {
    display: none;
}

.gallery .content-container .content .content-item .tabs > ul,
.floorplan .content-container .content .content-item .tabs > ul,
.floorplans .content-container .content .content-item .tabs > ul,
body.video .content-container .content .content-item .tabs > ul,
body.videos .content-container .content .content-item .tabs > ul {
    font-size: 0;
    margin-bottom: 1px;
    margin-right: -1px;
}

.gallery .content-container .content .content-item .tabs > ul li,
.floorplan .content-container .content .content-item .tabs > ul li,
.floorplans .content-container .content .content-item .tabs > ul li,
body.video .content-container .content .content-item .tabs > ul li,
body.videos .content-container .content .content-item .tabs > ul li {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.gallery .content-container .content .content-item .tabs > ul li a,
.floorplan .content-container .content .content-item .tabs > ul li a,
.floorplans .content-container .content .content-item .tabs > ul li a ,
body.video .content-container .content .content-item .tabs > ul li a,
body.videos .content-container .content .content-item .tabs > ul li a {
    text-decoration: none;
    padding: 10px 15px;
    text-transform: uppercase;
    border-right: none;
    display: block;
    min-width: 140px;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery .content-container .content .content-item .tabs > div,
.floorplan .content-container .content .content-item .tabs > div,
.floorplans .content-container .content .content-item .tabs > div,
body.video .content-container .content .content-item .tabs > div,
body.videos .content-container .content .content-item .tabs > div {
    display: none;
}

.gallery .content-container .content .content-item .tabs > div.current,
.floorplan .content-container .content .content-item .tabs > div.current,
.floorplans .content-container .content .content-item .tabs > div.current,
body.video .content-container .content .content-item .tabs > div.current,
body.videos .content-container .content .content-item .tabs > div.current {
    display: block;
}

.gallery .content-container .content .content-item .gallery-container {
    display: block;
    margin-left: -3px;
    margin-right: -3px;
    font-size: 0;
    line-height: 0;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery .content-container .content .content-item .gallery-container li {
    width: 25%;
    padding: 2px;
    opacity: 1;
    /* display: none; */
    display: inline-block;
    overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery .content-container .content .content-item .gallery-container li.current {
    opacity: 1;
    padding: 3px;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.gallery .content-container .content .content-item .gallery-container li a,
.gallery .content-container .content .content-item .gallery-container li a img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    font-size: 0;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery .content-container .content .content-item .gallery-container li a:hover img {
    opacity: 1;
}

.gallery .content-container .content .content-item .gallery-container li a:before {
    content: '';
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery .content-container .content .content-item .gallery-container li a:hover:before {
    background: rgba(255, 255, 255, .5);
}

.gallery .content-container .content .content-item .gallery-container li a:after {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0;
    line-height: initial;
    z-index: 3;
    background: transparent;
    padding: 15px 0;
    width: 10px;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    border-radius: 99px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.gallery .content-container .content .content-item .gallery-container li a:hover:after {
    font-size: 40px;
    width: 60px;
}

.gallery .content-container .content .content-item .gallery-container li a p {
    font-size: 0;
}

.gallery .content-container .content .content-item .gallery-pagination {
    text-align: center;
    margin-top: 30px;
}

.gallery .content-container .content .content-item .gallery-pagination a {
    text-decoration: none;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid;
    display: inline-block;
    *display: inline;
    zoom: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* PHOTO ALBUM */
.content-container .content .content-item .photo-album {
    position: relative;
    margin-top: 40px;
}

.content-container .content .content-item .photo-album .owl-prev,
.content-container .content .content-item .photo-album .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.content-container .content .content-item .photo-album .owl-prev {
    left: 5%;
}

.content-container .content .content-item .photo-album .owl-next {
    right: 5%;
}

.content-container .content .content-item .photo-album .owl-prev img,
.content-container .content .content-item .photo-album .owl-next img {
    -webkit-filter: grayscale(100%) invert(100%);
    -o-filter: grayscale(100%) invert(100%);
    filter: grayscale(100%) invert(100%);
}

.content-container .content .content-item .photo-album .owl-prev svg,
.content-container .content .content-item .photo-album .owl-next svg {
    height: 38px;
    width: auto;
}

.content-container .content .content-item .photo-album-thumbs {
    position: relative;
    padding: 10px;
    background: #e1e1e1;
}

.content-container .content .content-item .photo-album-thumbs .active {
    background: #fff;
}

.content-container .content .content-item .photo-album-thumbs .active img {
    opacity: .5;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.content-container .content .content-item .photo-album-thumbs .current img {
    opacity: 1;
}

/* GUEST REVIEW */
.guest-reviews .content-container .content .content-item .total-reviews {
    font-weight: bold;
    display: block;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    font: inherit;
    font-size: 14px;
    color: #3a3a3a;
}
.guest-reviews .content-container .content .content-item .reviews-container,
.guest-reviews .content-container .content .content-item .slides {
    display: block;
    background: transparent;
    overflow: hidden;
    padding-bottom: 1px;
}



.guest-reviews .content-container .content .content-item .reviews-container .review:after,
.guest-reviews .content-container .content .content-item .slides li:after {
    display: block;
    content: '';
    clear: both;
}

.guest-reviews .content-container .content .content-item .reviews-container .review strong,
.guest-reviews .content-container .content .content-item .slides li strong {
    font-weight: bold;
}

.guest-reviews .content-container .content .content-item .reviews-container .review .name,
.guest-reviews .content-container .content .content-item .slides li .rname {
    margin-bottom: 0;
    font-size: 16px;
    margin-top: 0 !important;
    font-style: italic;
    text-transform: capitalize;
}

.guest-reviews .content-container .content .content-item .reviews-container .review .dates,
.guest-reviews .content-container .content .content-item .slides li .gr-date {
    font-style: italic;
    margin-top: 0;
    text-align: right !important;
    display: block;
    font-size: 17px !important;
    margin-bottom: 0px !important;
}

.guest-reviews .content-container .content .content-item .reviews-pagination {
    text-align: center;
    margin-top: 0;
}

.guest-reviews .content-container .content .content-item .reviews-pagination a {
    text-decoration: none;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #282828;
    color: #282828;
    display: inline-block;
    *display: inline;
    zoom: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
/* NEW */
.guest-reviews .content-container .content .content-item .slides li{
    padding: 20px !important;
    border: 1px solid !important;
    text-align: right !important;
    width: 100% !important;
    opacity: 1 !important;
}


/* VIRGA UPDATE REVIEW */
.guest-reviews .content-container .content .content-item .pagination,
.gallery .content-container .content .content-item .pagination,
.press .content-container .content .content-item .pagination
{
    text-align: center;
    margin-top: 0;
}

.guest-reviews .content-container .content .content-item .pagination a,
.gallery .content-container .content .content-item .pagination a,
.press .content-container .content .content-item .pagination a {
    text-decoration: none;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #282828;
    color: #282828;
    display: inline-block;
    *display: inline;
    zoom: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
/* END UPDATE */

/* NEW */
.guest-reviews .content-container .content .content-item .slides li::before,
.guest-reviews .content-container .content .content-item .slides .gsrev::before,
.guest-reviews .content-container .content .content-item .reviews-container .review blockquote::before {
    content: '\2018\2018';
    display: block;
    float: left;
    columns: #000000;;
    font-size: 100px !important;
    margin: 25px 10px -10px -10px !important;
    line-height: 1px;
    font-family: serif;
    letter-spacing: -11px;
}


.guest-reviews .content-container .content .content-item .reviews-container .review:after, 
.guest-reviews .content-container .content .content-item .slides li:after,
.guest-reviews .content-container .content .content-item .reviews-container .review blockquote::after {
    display: block;
    content: '';
    clear: both;
}

.guest-reviews .content-container .content .content-item .info-villa {
    padding-bottom: 10px;
    text-align: left;
}

/* THE NEWEST GUEST REVIEW FIX 2020*/
/* GUEST REVIEW */
.guest-reviews .content-container .content .content-item .tabs {
    background: transparent;
}

.guest-reviews .content-container .content .content-item .tabs {
    margin: 0 -1px;
}

.guest-reviews .content-container .content .content-item .tabs > ul {
    font-size: 0;
    margin-bottom: 5px;
    margin-left: -1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.guest-reviews .content-container .content .content-item .tabs > ul li:first-of-type {
    flex-basis: 100%;
    margin-bottom:1px;
}

/* .guest-reviews .content-container .content .content-item .tabs > ul li {
    display: inline-block;
    *display: inline;
    zoom: 1;
} */

.guest-reviews .content-container .content .content-item .tabs > ul li {
    display: block;
    flex: 1;
    flex-basis: 25%;
}

.guest-reviews .content-container .content .content-item .tabs > ul li a {
    text-decoration: none;
    padding: 10px 15px;
    background: #e8e8e8;
    color: #525252;
    font-family: 'Open Sans',sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    border: 1px solid #fff;
    display: block;
    min-width: 140px;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.guest-reviews .content-container .content .content-item .tabs > ul li.current a {
    background: #7a7a7a;
    color: #fff;
}

.guest-reviews .content-container .content .content-item .tabs > div {
    display: none;
}

.guest-reviews .content-container .content .content-item .tabs > div.current {
    display: block;
    overflow-x: auto;
}

.guest-reviews .content-container .content .content-item .reviews-container,
.guest-reviews .content-container .content .content-item .slides {
    padding-bottom: 1px;
}


.guest-reviews .content-container .content .content-item .reviews-container .review,
.guest-reviews .content-container .content .content-item .slides li {
    /* opacity: 0 !important;
    display: none !important; */
    overflow: hidden;
    margin-bottom: 20px !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.guest-reviews .content-container .content .content-item .reviews-container .review.current,
.guest-reviews .content-container .content .content-item .slides li.current{
    display: block !important;
    float: none !important;
    opacity: 1 !important;
    background: #fff;
    padding: 20px !important;
    border: 1px solid !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

.guest-reviews .content-container .content .content-item .slides li:nth-of-type(2n) {
    background: none !important;
}

@media all and (min-width:768px) and (max-width:1024px) {
    .guest-reviews .content-container .content .content-item .tabs > ul{
        display: flex;
    }
    .guest-reviews .content-container .content .content-item .tabs > ul li{
        flex:auto;
    }
}
@media all and (max-width:600px){
   
    /* VIRGA UPDATE REVIEW */
    .guest-reviews .content-container .content .content-item .pagination,
    .gallery .content-container .content .content-item .pagination,
    .press .content-container .content .content-item .pagination {
        text-align: center;
        margin-top: 0;
        font-size: 14px;
    }
    .guest-reviews .content-container .content .content-item .tabs > ul li{
        width: 100%;
    }
    .guest-reviews .content-container .content .content-item .slides li{
        margin-bottom: 0px !important;
    }
}

/* RATES */
.rates .content-container .content .content-item .wrapper {
    position: relative;
}

.rates .content-container .content .content-item .rates-link {
    margin-top: 20px;
    text-decoration: underline;
    cursor: pointer;
    display: block;
}

.rates .content-container .content .content-item .teaser {
    margin-bottom: 30px;
    max-width: 65%;
}

.rates .content-container .content .content-item .teaser:empty {
    margin: 0;
}

.rates .content-container .content .content-item .teaser strong {
    font-size: 20px;
    display: block;
}

.rates .content-container .content .content-item .discounts,
.rates .content-container .content .content-item .promotions {
    border: 2px solid #7e7e7e !important;
    padding: 20px 30px;
    margin-bottom: 25px;
}

.rates .content-container .content .content-item .discounts td,
.rates .content-container .content .content-item .promotions td {
    background: transparent !important;
}

.rates .content-container .content .content-item .discounts .rates-title,
.rates .content-container .content .content-item .promotions .rates-title {
    font-size: 35px;
    margin-bottom: 20px;
    display: block;
}
/* .rates .content-container .content .content-item .teaser {
    margin-top: 20px;
} */

.rates .content-container .content .content-item .discounts .rates-tagline,
.rates .content-container .content .content-item .promotions .rates-tagline {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: -10px;
    display: block;
}
.rates .content-container .content .content-item tr.promotr h1,
.rates .content-container .content .content-item .promotions ul {
    color: #000 !important;
}
.rates .content-container .content .content-item .discounts ul,
.rates .content-container .content .content-item .promotions ul {
    list-style: disc;
    margin-left: 20px;
}

.rates .content-container .content .content-item .discounts ul li,
.rates .content-container .content .content-item .promotions ul li {
    margin-bottom: 5px;
}

.rates .content-container .content .content-item .discounts ul li.note,
.rates .content-container .content .content-item .promotions ul li.note {
    font-size: 11px;
    list-style: none;
    font-style: italic;
}

.rates .content-container .content .content-item .discounts ul li:last-of-type,
.rates .content-container .content .content-item .promotions ul li:last-of-type {
    margin-bottom: 0;
}

.rates .content-container .content .content-item .tabs {
    background: transparent;
}

.rates .content-container .content .content-item .tabs-end {
    margin: 0;
}

.rates .content-container .content .content-item .tabs-end p {
    display: none;
}

.rates .content-container .content .content-item .tabs > ul {
    font-size: 0;
    margin-bottom: 1px;
    margin-left: 0;
    margin-right: 0;
}

.rates .content-container .content .content-item .tabs-end > ul {
    margin: 0 0 1px 0;
}

.rates .content-container .content .content-item .tabs > ul li {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.rates .content-container .content .content-item .tabs > ul li a {
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    display: block;
    min-width: 140px;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.rates .content-container .content .content-item .tabs > div {
    display: none;
}

.rates .content-container .content .content-item .tabs > div.current {
    display: block;
    overflow-x: hidden;
}

.rates .content-container .content .content-item .tabs-end > div.current {
    overflow-x: auto;    
    margin-left: -1px;
    margin-right: -1px;
}

.rates .content-container .content .content-item .tabs-end table {
    border-spacing: 1px;
    border-collapse: separate;
    margin: -1px 0 0;
    table-layout: fixed;
    min-width: 100%;
    min-width: 800px;
}

.rates .content-container .content .content-item .tabs-end table th {
    text-align: center;
    color: #fff;
    padding: 9px 5px;
    width: 20%;
    font-size: 16px;
    text-transform: uppercase;
    vertical-align: middle;
    position: relative;
}

.rates .content-container .content .content-item .tabs-end table th:first-of-type {
    text-align: left;
    padding: 9px 10px;
}

.rates .content-container .content .content-item .tabs-end table th:last-of-type {
    width: 15%;
}

.rates .content-container .content .content-item .tabs-end table th .season {
    margin-bottom: 30px;
    position: relative;
}

.rates .content-container .content .content-item .tabs-end table th .minstay {
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    white-space: nowrap;
    
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.rates .content-container .content .content-item .tabs-end table th .season .minstay {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 5px 0 10px;
    
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.rates .content-container .content .content-item .tabs-end table td {
    text-align: center;
    font-size: 16px;
    padding: 5px 10px;
    vertical-align: middle;
}

.rates .content-container .content .content-item .tabs-end table td:first-of-type {
    text-align: left;
}

.rates .content-container .content .content-item .tabs-end table td.vrsubject {
    text-align: right;
    padding: 6px 10px;
    font-size: 15px;
}

.rates .content-container .content .content-item .tabs-end table tr:nth-of-type(2n) td {
    background: #fff;
}

.rates .content-container .content .content-item .tabs-end table td img {
    margin: 0 auto;
}

.rates .content-container .content .content-item .tabs-end table td .inclusions i {
    color: #fff;
    padding: 7px 8px;
    cursor: help;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    border-radius: 99px;
}

.rates .content-container .content .content-item .tabs-end table td img {
    margin: 0 auto;
    cursor: pointer;
}

/* .rates .content-container .content .content-item .promotions ul:first-of-type li{
    list-style-type: disc;
 } */
 
 .rates tr.promotr h1{
     margin-top: 30px;
 }
 
/* FORM */
.reservations .content-container .content .content-item .teaser,
.general-enquiries .content-container .content .content-item .teaser {
    max-width: 610px;
}

.general-enquiries .content-container .content .content-item form {
    margin-top: 20px;
}

.reservations .content-container .content .content-item form h2,
.general-enquiries .content-container .content .content-item form h2 {
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: 25px;
    line-height: 28px;
}

.reservations .content-container .content .content-item form p,
.general-enquiries .content-container .content .content-item form p {
    min-height: 28px;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}

.reservations .content-container .content .content-item form hr,
.general-enquiries .content-container .content .content-item form hr {
    border: 1px solid #ddd;
    border-bottom: 0;
    margin: 15px 0;
}

.reservations .content-container .content .content-item form .form-row,
.general-enquiries .content-container .content .content-item form .form-row {
    display: block;
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 0;
}

.reservations .content-container .content .content-item form .form-row .form-col,
.general-enquiries .content-container .content .content-item form .form-row .form-col {
    font-size: 0;
    vertical-align: middle;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.reservations .content-container .content .content-item form .form-row .form-col:first-of-type,
.general-enquiries .content-container .content .content-item form .form-row .form-col:first-of-type {
    width: 147px;
}

.reservations .content-container .content .content-item form .form-row .form-col:first-of-type label,
.general-enquiries .content-container .content .content-item form .form-row .form-col:first-of-type label {
    vertical-align: middle;
}

.reservations .content-container .content .content-item form .form-row label,
.general-enquiries .content-container .content .content-item form .form-row label {
    font-size: 16px;
    color: #282828;
    line-height: 25px;
    text-align: justify;
}

.reservations .content-container .content .content-item form .form-row span.required,
.general-enquiries .content-container .content .content-item form .form-row span.required {
    color: #ff0000;
    font-size: 16px;
    font-weight: bold;
    margin: 0 10px 0 3px;
    position: absolute;
    top: 0;
    right: -2px;
}

.reservations .content-container .content .content-item form .form-row .input,
.reservations .content-container .content .content-item form .form-row .select,
.reservations .content-container .content .content-item form .form-row .checkbox,
.general-enquiries .content-container .content .content-item form .form-row .input,
.general-enquiries .content-container .content .content-item form .form-row .select,
.general-enquiries .content-container .content .content-item form .form-row .checkbox {
    font-size: 16px;
    line-height: 28px;
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.reservations .content-container .content .content-item form .form-row .textarea,
.general-enquiries .content-container .content .content-item form .form-row .textarea {
    font-size: 15px;
    line-height: 28px;
    display: block;
}

.reservations .content-container .content .content-item form .form-row > .checkbox,
.general-enquiries .content-container .content .content-item form .form-row > .checkbox {
    line-height: 37px;
    display: block;
}

.reservations .content-container .content .content-item form .form-row .input label,
.reservations .content-container .content .content-item form .form-row .select label,
.general-enquiries .content-container .content .content-item form .form-row .input label,
.general-enquiries .content-container .content .content-item form .form-row .select label {
    margin-right: 5px;
}

.reservations .content-container .content .content-item form .form-row .input input,
.general-enquiries .content-container .content .content-item form .form-row .input input {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    width: 250px;
    margin-right: 16px;
    outline: none;
}

.reservations .content-container .content .content-item form .form-row .input input.prefix + input,
.general-enquiries .content-container .content .content-item form .form-row .input input.prefix + input {
    width: 196px;
}

.general-enquiries .content-container .content .content-item form .form-row .form-col:first-of-type .input input {
    width: 100%;
}

.reservations .content-container .content .content-item form .form-row .input input.prefix,
.general-enquiries .content-container .content .content-item form .form-row .input input.prefix {
    width: 55px;
    text-align: center;
    margin-right: -1px;
    background: #f0f0f0;
    padding-left: 0;
    padding-right: 0;
}

.general-enquiries .content-container .content .content-item form .form-row .input input.prefix {
    margin-right: -4px;
}

.general-enquiries .content-container .content .content-item form .form-row .input input#txtPhoneNumber {
    width: 196px;
}

.general-enquiries .content-container .content .content-item form .form-row .image {
    background: #fff;
    line-height: 40px;
    text-align: center;
    width: 250px;
    border: 1px solid #ddd;
}

.general-enquiries .content-container .content .content-item form .form-row .image img {
    vertical-align: middle;
    background: #fff;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.reservations .content-container .content .content-item form .form-row .select select,
.general-enquiries .content-container .content .content-item form .form-row .select select {
    padding: 9px 10px;
    background: #fff;
    border: 1px solid #ddd;
    margin-right: 15px;
    font-size: 16px;
    width: 250px;
    outline: none;
}

.reservations .content-container .content .content-item form .form-row .select select#numAdult,
.reservations .content-container .content .content-item form .form-row .select select#numChildren,
.reservations .content-container .content .content-item form .form-row .select select#numInfant {
    width: 65px;
}

.reservations .content-container .content .content-item form .form-row .textarea textarea,
.general-enquiries .content-container .content .content-item form .form-row .textarea textarea {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 820px;
    resize: vertical;
    display: block;
    font-size: 16px;
    outline: none;
}

.reservations .content-container .content .content-item form .form-row .checkbox label,
.general-enquiries .content-container .content .content-item form .form-row .checkbox label {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    margin-right: 15px;
}

.reservations .content-container .content .content-item form .form-row .checkbox input,
.general-enquiries .content-container .content .content-item form .form-row .checkbox input {
    visibility: hidden;
}

.reservations .content-container .content .content-item form .form-row .checkbox label:empty,
.general-enquiries .content-container .content .content-item form .form-row .checkbox label:empty {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    margin-left: 5px;
    background: #fff;
    border: 1px solid #ddd;
}

.reservations .content-container .content .content-item form .form-row .checkbox label.left:empty,
.general-enquiries .content-container .content .content-item form .form-row .checkbox label.left:empty {
    float: left;
    margin: 4px 5px 0 0;
}

.reservations .content-container .content .content-item form .form-row .checkbox label:empty:after,
.general-enquiries .content-container .content .content-item form .form-row .checkbox label:empty:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 3px;
    left: 3px;
    border: 3px solid #282828;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.reservations .content-container .content .content-item form .form-row .checkbox label:empty:hover::after,
.general-enquiries .content-container .content .content-item form .form-row .checkbox label:empty:hover::after {
    opacity: 0.3;
}

.reservations .content-container .content .content-item form .form-row .checkbox input[type=checkbox],
.general-enquiries .content-container .content .content-item form .form-row .checkbox input[type=checkbox] {
    visibility: hidden;
    width: 0;
}

.reservations .content-container .content .content-item form .form-row .checkbox input[type=checkbox]:checked ~ label:empty:after,
.general-enquiries .content-container .content .content-item form .form-row .checkbox input[type=checkbox]:checked ~ label:empty:after {
    opacity: 1;
}

.reservations .content-container .content .content-item form .form-row input[type=submit],
.general-enquiries .content-container .content .content-item form .form-row input[type=submit] {
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 30px;
    margin: 5px 10px 5px 0;
    text-align: center;
    min-width: 118px;
    display: inline-block;
    *display: inline;
    zoom: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.general-enquiries .content-container .content .content-item form .form-row input[type=submit] {
    padding: 11px 24px;
}

.reservations .content-container .content .content-item form .form-row .error-message,
.general-enquiries .content-container .content .content-item form .form-row .error-message {
    position: absolute;
    z-index: 10;
    background: rgba(255, 0, 0, .7);
    color: #fff;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 400;
    padding: 3px 5px;
    left: 0;
    margin-top: -1px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.reservations .content-container .content .content-item form .form-row .input .error-message:before,
.general-enquiries .content-container .content .content-item form .form-row .input .error-message:before {
    content: '';
    display: block;
    position: absolute;
    border-bottom: 5px solid rgba(255, 0, 0, .7);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.reservations .content-container .content .content-item form .form-row *:not([readonly]):valid ~ .error-message,
.general-enquiries .content-container .content .content-item form .form-row *:not([readonly]):valid ~ .error-message {
    opacity: 0;
}

.reservations .content-container .content .content-item form.reservations-contact .form-row span.required {
    margin: 0 auto;
    position: relative;
    top: 5px;
    right: auto;
    font-weight: normal;
}

.reservations .content-container .content .content-item form.reservations-contact .form-row .input input#txtEmail,
.reservations .content-container .content .content-item form.reservations-contact .form-row .select select#selCountry {
    width: 516px;
}

.reservations .content-container .content .content-item form.reservations-contact .form-row .select select#sel_villa {
    width: auto;
}

.reservations .content-container .content .content-item form.reservations-contact .form-row .input input.prefix {
    width: 90px;
    margin-right: 16px;
}

.reservations .content-container .content .content-item form.reservations-contact .form-row .input input.prefix + input {
    width: 250px;
}

/* SITEMAP */
.sitemap .content-container .content .content-item ul {
    list-style: disc;
    margin-left: 20px;
}

.sitemap .content-container .content .content-item ul li {
    margin-bottom: 10px;
}

.sitemap .content-container .content .content-item ul ul {
    margin-top: 2px;
}

.sitemap .content-container .content .content-item ul li li {
    margin-bottom: 2px;
}

.links .content-container .content .content-item a,
.links .content-container .content .content-item a h2,
.links .content-container .content .content-item a h3 {
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.links .content-container .content .content-item a:hover,
.links .content-container .content .content-item a:hover h2,
.links .content-container .content .content-item a:hover h3 {
    color: #282828;
}

.links .content-container .content .content-item h2 {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 25px;
    line-height: 28px;
}

.links .content-container .content .content-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    line-height: 28px;
}

/* POPUP CONTAINER */
.popup-container {
    position: fixed;
    z-index: 1008;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .9);
    display: none;
}

.popup-container .loader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.popup-container .loader i {
    font-size: 70px;
}

.popup-container .close {
    display: block;
    position: absolute;
    z-index: 1000;
    top: 20px;
    right: 29px;
    cursor: pointer;
    opacity: .3;
    font-size: 4em;
    line-height: 20px;
    font-weight: 100;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.popup-container .close:hover {
    opacity: 1;
}

.popup-container .close i {
    background: #fff;
    padding: 15px 19px;
    font-size: 30px;
}

.popup-container .social-share {
    position: absolute;
    z-index: 2;
    left: 120px;
    top: 20px;
}
.popup-container .social-share a {
    color: #eee;
    font-size: 20px;
    background: rgba(0, 0, 0, .70);
    line-height: 30px;
    text-align: center;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 30px;
    margin: 0 2px;
    position: relative;
    transition: all .25s;
}
.popup-container .social-share a.socshare.fb {
    color: #fff;
    background: #4267b2;
}
.popup-container .social-share a.socshare.pt {
    color: #fff;
    background: #e60023;
}
.popup-container .social-share a.socshare.tw {
    color: #fff;
    background: #1da1f2;
}
.popup-container .social-share a.socshare.li {
    color: #fff;
    background: #0077b5;
}
.popup-container .social-share a:hover {
    background: rgba(0, 0, 0, 1) !important;
    color: #fff;
}

.popup-container .social-share a:after {
    content: attr(title);
    display: block;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    padding: 5px;
    bottom: -32px;
    z-index: 9;
    text-align: center;
    opacity: 0;
    margin-top: 10px;
    left: 50%;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.popup-container .social-share a:before {
    content: '';
    display: block;
    position: absolute;
    border-left: solid transparent 5px;
    border-right: solid transparent 5px;
    border-bottom: solid rgba(0, 0, 0, .7) 5px;
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
    z-index: 9;
    opacity: 0;
    margin-top: 10px;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.popup-container .social-share a:hover:after,
.popup-container .social-share a:hover:before {
    opacity: 1;
    margin-top: 0;
    visibility: visible;
}

.popup-container .owl-carousel {
    position: absolute;
    height: 100%;
}

.popup-container .owl-carousel .owl-stage-outer,
.popup-container .owl-carousel .owl-stage-outer .owl-stage,
.popup-container .owl-carousel .owl-item {
    height: 100%;
}

.popup-container .owl-carousel li {
    text-align: center;
    height: 100%;
    display: none;
}

.popup-container .owl-carousel.owl-loaded .active li {
    display: block;
}

.popup-container .owl-carousel li img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    width: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.popup-container .owl-carousel li span {
    display: block;
    position: absolute;
    bottom: 15px;
    z-index: 999;
    left: 50%;
    background: #fff;
    padding: 15px;
    font-family: sans-serif;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.popup-container .owl-carousel .owl-prev,
.popup-container .owl-carousel .owl-next {
    opacity: 0.3;
    position: absolute;
    bottom: 10%;
    top: 10%;
    padding: 0 15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.popup-container .owl-carousel .owl-prev:hover,
.popup-container .owl-carousel .owl-next:hover {
    opacity: 1;
}

.popup-container .owl-carousel .owl-prev {
    left: 0;
}

.popup-container .owl-carousel .owl-next {
    right: 0;
}

.popup-container .owl-carousel .owl-prev i,
.popup-container .owl-carousel .owl-next i {
    position: relative;
    top: 50%;
    background: #fff;
    padding: 15px 19px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
}

.popup-container .owl-carousel .owl-prev img,
.popup-container .owl-carousel .owl-next img {
    position: relative;
    top: 50%;
    background: #000;
    padding: 15px 19px;
    -webkit-filter: invert(100%) grayscale(100%);
    -o-filter: invert(100%) grayscale(100%);
    filter: invert(100%) grayscale(100%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
}

.touchevents .popup-container .owl-carousel .owl-controls {
    opacity: 0.3;
}

/* Jquery Datepicker */
.ui-datepicker {
    padding: 0;
    border-radius: 0;
    background: #fff;
    z-index: 102 !important;
    margin-left: 0;
    margin-top: -1px;
}

.ui-datepicker .ui-datepicker-header {
    padding: 5px;
    border-radius: 0;
    background: none;
    border: none;
    border-bottom: 1px solid #ddd;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    border: none;
    border-radius: 0;
    padding: 7px 5px 5px;
    right: 2px;
    top: 5px;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    border-color: #ddd;
    padding: 2px 5px;
}

.ui-datepicker select.ui-datepicker-year {
    border-left: none;
}

.ui-datepicker table {
    margin-bottom: 0;
}

.ui-datepicker td {
    padding: 1px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    padding: 8px 5px;
}

/* GUARANTEE */
.content-guarantee {
    right: 0;
    margin-top: -7px;
    text-align: right;
    float: right;
    margin-left: 50px;
}

.content-guarantee .best-rates {
    width: 110px;
    height: 80px;
    background: url(images/guarantees.png) no-repeat;
    background-position: -129px 0;
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    margin-left: 25px;
}

.content-guarantee .best-rates a {
    display: block;
    width: 110px;
    height: 80px;
    position: relative;
    border-bottom: none !important;
}

.content-guarantee .best-rates a:hover {
    background: none;
}

.content-guarantee .pata-logo {
    width: 95px;
    height: 80px;
    background: url(images/guarantees.png) no-repeat;
    background-position: 0 -4px;
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
}

/* RATES - TOOLTIPS */
.tooltip {
    outline: none;
    cursor: help;
    text-decoration: none;
    position: relative;
}

.tooltip span {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    font-size: 14px;
    font-family: sans-serif;
    line-height: 22px;
    text-align: center;
    width: 250px;
    left: 50%;
    top: 100px;
    z-index: 9;
    color: #fff;
    padding: 0.8em 1em;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, .8)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: -ms-radial-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: -o-linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tooltip span:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #333;
    border-bottom-color: rgba(0, 0, 0, .6);
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    margin-left: -10px;
}

.tooltip:hover span {
    opacity: 1;
    visibility: visible;
}

/* RATES - POPOVER */
.popover {
    font-family: sans-serif;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    position: absolute;
    z-index: 100;
    list-style: none;
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    background: #333;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, .8)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: -ms-radial-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: -o-linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    background: linear-gradient(top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .8));
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-105%) translateX(-50%);
    -ms-transform: translateY(-105%) translateX(-50%);
    -o-transform: translateY(-105%) translateX(-50%);
    transform: translateY(-105%) translateX(-50%);
}

.popover:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #333;
    border-top-color: rgba(0, 0, 0, .7);
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
}

.popover.bottom:after {
    border-bottom: 10px solid #333;
    border-top: none;
    bottom: auto;
    top: -10px;
    border-bottom-color: rgba(0, 0, 0, .6);
}

.popover.hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-100%) translateX(-50%);
    -ms-transform: translateY(-100%) translateX(-50%);
    -o-transform: translateY(-100%) translateX(-50%);
    transform: translateY(-100%) translateX(-50%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.popover li {
    padding-left: 15px;
    text-align: left;
}

.popover em,
.popover i {
    font-style: italic !important;
}

.popover li:before {
    content: '\2022';
    display: inline-block;
    *display: inline;
    zoom: 1;
    margin-left: -16px;
    margin-right: 5px;
}

/* DIALOG */
#dialog {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.modal-box {
    display: none;
    position: fixed;
    z-index: 1001;
    width: 98%;
    max-width: 800px;
    background: white;
    background-clip: padding-box;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.modal-box.transparent {
    background: transparent;
}

.modal-box header,
.modal-box .modal-header {
    padding: 20px;
}

.modal-box.transparent header,
.modal-box.transparent .modal-header {
    padding: 0;
    position: absolute;
    z-index: 10;
    right: -20px;
}

.modal-box .modal-body {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 24px;
    font-family: sans-serif;
}

.modal-box.transparent .modal-body {
    border: none;
    padding: 0;
}

.modal-box .modal-body h1 {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 25px;
}

.modal-box .modal-body h2 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.modal-box .modal-body h3 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.modal-box .modal-body h4 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.modal-box .modal-body p,
.modal-box .modal-body div {
    margin-bottom: 15px;
    line-height: 24px;
}

.modal-box .modal-body ul,
.modal-box .modal-body ol {
    list-style: disc;
    margin-left: 15px;
    margin-bottom: 15px;
    padding-left: 15px !important;
}

.modal-box .modal-body li,
.modal-box .modal-body li {
    padding-left: 30px;
    margin-bottom: 10px;
    text-indent: -27px;
}

.modal-box .modal-body ul li,
.modal-box .modal-body ol li {
    padding-left: 17px;
    text-indent: 0;
}

.modal-box .modal-body br {
    display: none;
}

.modal-box .modal-body strong,
.modal-box .modal-body b {
    font-weight: bold;
}

.modal-box .modal-body em,
.modal-box .modal-body i {
    font-style: italic;
}

.modal-overlay {
    opacity: 0;
    filter: alpha(opacity=0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
}

.modal-box a.close {
    line-height: 1;
    font-size: 1.5em;
    position: absolute;
    top: 8px;
    right: 6px;
    text-decoration: none;
    color: #bbb;
    background: #ffffff;
    padding: 0 6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.modal-box a.close:hover {
    color: #222;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    transition: color 1s ease;
}

@keyframes footer_sticky {
    from {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        -o-transform: translateY(1px);
        transform: translateY(1px);
    }
}

@-webkit-keyframes footer_sticky {
    from {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        -o-transform: translateY(1px);
        transform: translateY(1px);
    }
}


/*rates added by christine */
.rates tr.promotr h1 {
    font-size: 18px !important;
    font-weight: bold;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}
.rates .content-container .content .content-item .promotions ul {
    list-style: disc;
    margin-left: 25px !important;
}

.rates .content-container .content .content-item .promotions ul li {
    /*list-style: none;*/
    margin-bottom: 15px !important;
}

.sha-logo-footer {
    position: absolute;
    bottom: 11vh;
    left: 205px;
}

.sha-logo-footer img {
    width: 140px;
}

.footer-container .footer .bottom {
    top: 120px;
}

.footer-container.sticky .sha-logo-footer{
    display: none;
}

@media all and (max-width:1200px){
    .sha-logo-footer{
        bottom: 0px;
        left: 0px;
        position: relative;
    }
    .sha-logo-footer img{
        width: 100px;
    }
}

@media all and (max-width: 767px) {
    .footer-container .footer .bottom {
        top: auto !important;
    }
}

/* BADGE */
.newbookingcom {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transform: translate(-1%, 0);
    bottom: 0;
    padding-bottom: 20px;
    z-index: -1;
}
.newbookingcom img {
    max-width: 118px;
}
.footer-container.sticky .newbookingcom {
    display: none;
}

@media all and (max-width: 767px) {
    .newbookingcom {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        transform: translate(0, 0);
    }
}


/* PRIVACY POLICY AND T&C*/
.terms .terms h4,
.privacy .descriptions h4 {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 20px !important;
    padding-top: 10px !important;
    color: #212121 !important;
}

.terms .terms p,
.privacy .descriptions a,
.terms .terms li,
.privacy .descriptions p {
    font-size: 16px !important;
    color: #212121 !important;
    font-family: fira sans,sans-serif !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    text-align: justify !important;
}
.terms .terms strong {
    font-weight: bold !important;
}
.terms .terms ul {
    padding-left: 18px !important;
    margin-bottom: 15px !important;
}
.terms .terms li {
    list-style: disc !important;
}

/* footer-nav */
.footer-nav li:nth-child(2) {
    padding-bottom: 5px;
}
.footer-container .footer .column .footer-nav li:nth-child(4) {
    padding-right: 5px;
}
.footer-container .footer .column .footer-nav li:first-child {
    padding-right: 3px;
}
/* ADJUSTED CSS FOR RATES 5-27-2021 */
.rates .content-container .content .content-item .promotions {
    background: none !important;
}
.rates .content-container .content .content-item .promotions .rates-title {
    margin-bottom: 0px !important;
}
.rates .content-container .content .content-item .promotions td {
    color: #000;
}
.rates .fa-minus:before,
.rates .fa-plus:before {
    font-size: 15px !important;
    position: relative !important;
    bottom: 2px !important;
}

.rates .content-container .content .content-item .discounts .rates-title, .rates .content-container .content .content-item .promotions .rates-title,
strong.rates-title a {
    font-family: 'Roboto', sans-serif !important;
    font-size: 25px !important;
    color: #000 !important;
    font-weight: 400 !important;
}
.rates tr.promotr h1 {
    font-family: 'Roboto', sans-serif !important;
}
.rates .promotions .fa-minus:before, .rates .fa-plus:before {
    font: normal normal normal 14px/1 FontAwesome;
}
.rates .promotions .fa {
    font-size: 25px !important;
    font-weight: normal !important;
    font: unset !important;
}