/* 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;
}
.header-container .header .nav>ul>li:last-child a {
    padding-left: 10px;
    padding-right: 10px;
    color:#fff!important
}
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: 5;
    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-logo {
    max-height: 80px;
    object-fit: cover;
    object-position: 50% 50%;
}

.footer-container .footer:after {
    content: '';
    display: block;
    clear: both;
}

.footer-container .footer .wrapper {
    position: relative;
    display: flex;
    
}

.footer-container .footer .column {
    text-align: right;
    width: 36.6%;
    padding: 30px 0;
    font-weight: 400;
}

.footer-container.sticky .footer .column {
    padding: 10px 0;
}

.footer-container .footer .column:first-of-type {
    text-align: left;
    order: 1;
}
.footer-container .footer .column:nth-child(2) {
    order: 3;
}
.footer-container .footer .column h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-container.sticky .footer .column h3 {
    display: none;
}
.footer-container.sticky .footer .bottom .badge-carousel{
    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: 36px;
}

.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'; */
    content: '';
    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%); */
    width: 33%;
    order: 2;
    margin-top: 87px;
    position: unset;

}
.footer-container .footer .bottom *{
    text-align: center
}
.footer-container.sticky .footer .bottom {
    margin-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;
}

.footer-container .footer .bottom {
    top: 120px;
}
.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;
}
.footer-container.sticky .sha-logo-footer{
    display: none;
}
.footer-container.sticky .newbookingcom {
    display: none;
}
.footer-container.sticky .footer .bottom > #chse_badge {
    display: none;
}

/* 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: 9;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: scale(1);
    transition: 0.6s
}

.hero-container .slideshow .owl-nav .owl-prev {
    left: 2%;
}

.hero-container .slideshow .owl-nav .owl-next {
    right: 2%;
}
.hero-container .slideshow .owl-nav .owl-prev:hover,
.hero-container .slideshow .owl-nav .owl-next:hover {
    transform: scale(1.1);
    transition: 0.6s
}
.hero-container .slideshow .media {
    position: relative;
    overflow: hidden;
    /* max-height: calc(80vh - 150px); 
    min-height: calc(94vh - 150px);
    *min-height: 760px; */
    max-height: calc(94vh - 150px)!important;
    min-height: unset!important;
    height: calc(200px + (753 - 200) * (100vw - 400px) / (1920 - 320))!important;


}
.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: 17px;
    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: 17px;
    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;
}
.promo-highlight img{
    opacity: 0.9;
    transition: 0.6s
}
.promo-highlight img:hover{
    opacity: 1;
    transition: 0.6s
}
/* 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;
}
.contact-sent .wrap-this{
    display: none!important;
}
.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;
}

.guest-reviews .content-container .content .content-item .press-container.v2 .press-item.current{
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: flex-start
}
.guest-reviews .content-container .content .content-item .press-container.v2 .press-item.current img{
    margin: 0;
    width: 100%!important
}
.guest-reviews .content-container .content .content-item .press-container.v2 .press-item.current .press-img{
    margin-right: 2%;
    flex-basis: 16%;
}
.guest-reviews .content-container .content .content-item .press-container.v2 .press-item.current .desc{
    margin-right: 10px;
    flex-basis: 80%
}
/* VIDEO */
.video .content-container .content .content-item .video {
    width: 100%;
    background-size: cover;
    z-index: 5;
    position: relative;
    border: 1px solid #eee;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
}

.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: 575px;
    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: flex;
    flex-wrap:wrap;
    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;
    justify-content: center
}

.gallery .content-container .content .content-item .gallery-container li {
    width: 25%;
    padding: 2px;
    opacity: 1;
    display: none;
    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 .container .content-container .content .content-item .gallery-container li a,
.gallery .container .content-container .content .content-item .gallery-container li a img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    font-size: 0;
    height: calc(130px + (190 - 130) * (100vw - 320px) / (1920 - 320))!important;
    /* min-height: 100%; */
    object-fit: cover;
    text-decoration: none;
}

.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;
}
.guest-reviews .content-container .content .content-item .slides li{
    padding: 20px;
    border: 1px solid !important;
    text-align: right !important;
    width: 100% !important;
    opacity: 1 !important;
    padding: 20px !important;
}

.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;
}
.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;
}

.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: 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 {
    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;
}

/* 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 span{
    display: block

}
.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 .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 img {
    margin: 0 auto;
    cursor: pointer;
}
.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: 0px 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 tr.promotr h1 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}
.rates .content-container .content .content-item .promotions {
    background: none !important;
}
.rates .content-container .content .content-item .promotions ul {
    list-style: disc;
    margin-left: 25px !important;
    margin-top: 7px;
}
.rates .content-container .content .content-item .promotions ul li {
    margin-bottom: 5px !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 .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;
}
 
/* Fix for PATA and Best Rates logo on rates page */
.content-guarantee{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrap-this {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    min-height: 111px;
    margin-bottom: 30px;
    margin-top: 30px
}
.wrap-this .content-guarantee{
    width: auto;
    padding-left: 30px;
    top: unset!important;
    left: unset!important;
    right: unset!important;
    position: relative!important;
    transform: unset!important;
    margin: unset!important
}
body.rates .the-content > .wrap-this > .content-guarantee{
    margin-bottom: 30px
}
#tabs div div ul:not(.ui-tabs-nav),#tabs ul li:not(.ui-tabs-tab):not(.current.active){
    background: #fff!important;
}
body.rates .the-content .content-guarantee.main-,
body.rates .wrapper .content-guarantee.main-,
body.reservations .the-content .content-guarantee.main-{
    display: none
}
.wrap-this p.teaser,.wrap-this div.content-guarantee{
    margin-bottom: 0px!important;
    margin-top: 0px!important
}
.wrap-this p.teaser div{
    color: #000!important
}


@media all and (max-width: 767px) {
    .wrap-this{
        flex-wrap: wrap;
        justify-content: center;
    }
    .wrap-this >div{
        padding-left: 0;
        margin-bottom: 17px;
    }
    #tabs:not(.tabs-end) ul li {
        width: 100%;
    }
    .wrap-this >div:first-child{
        order: 2
    }
    .wrap-this >div:last-child{
        order: 1
    }
    .wrap-this >div.content-guarantee{
        display: none
    }
    body.rates .the-content .content-guarantee.main-,
    body.reservations .the-content .content-guarantee.main-,
    body.rates .wrapper .content-guarantee.main-{
        display: block!important;
        text-align: center;
        justify-content: center;
        margin-left: 0
    }
    .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;
        height: calc(100px + (490 - 100) * (100vw - 320px) / (1920 - 320))!important;
        /* min-height: 100%; */
        object-fit: cover;
        text-decoration: none;
    }
}
/* New slider with video and contents */
.text-contents .inner{
    display: none
}
.text-contents{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99999;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1300px;
    z-index: 8
}
.text-contents *{
    color: #fff
}
.text-contents h2{
    font-size: calc(30px + (54 - 30) * (100vw - 320px) / (1920 - 320));
}
.text-contents h3{
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
}
.text-contents.position-center{
    justify-content: center;
    text-align: center;
}
.text-contents.position-left{
    justify-content: flex-start;
    text-align: left;
}
.text-contents.position-right{
    justify-content: flex-end;
    text-align: right;
}
.text-contents.position-none{
    display: none
}
.text-left{
    text-align: left
}
@media all and (max-width: 567px) {
    .text-contents{
        justify-content: center!important;
        text-align: center!important
    }
}
/* 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;
}
.general-enquiries #txtPhoneAreaCode{
    width: 37%;
}
.general-enquiries #txtPhoneNumber{
    width: 65%;
}
.general-enquiries .content-container .content .content-item.odd >.wrapper{
    display: flex;
    flex-wrap: wrap;
}
.general-enquiries .content-container .content .content-item.odd >.wrapper .entry-title{
    width: 100%;
    order:1
}
.general-enquiries .content-container .content .content-item.odd >.wrapper .the-content{
    order:2;
    display: flex;
    flex-wrap: wrap
}
.general-enquiries .content-container .content .content-item.odd >.wrapper .the-content .content-guarantee{
    width: 30%;
    order:3
}
.general-enquiries .content-container .content .content-item.odd >.wrapper .the-content .teaser{
    width: 70%;
    order:2
}
.general-enquiries .content-container .content .content-item.odd >.wrapper .the-content .wpcf7-form{
    width: 100%;
    order:4
}
@media all and (max-width: 768px) {


    .general-enquiries .content-container .content .content-item.odd >.wrapper .content-guarantee{
        width: 100%;
        order:2
    }
    .general-enquiries .content-container .content .content-item.odd >.wrapper .teaser{
        width: 100%!important;
        order: 3;
    }
    .general-enquiries .content-container .content .content-item.odd >.wrapper .the-content .content-guarantee{
        width: 100%;
        order:1
    }
}

@media all and (max-width: 568px) {

    .general-enquiries #txtPhoneAreaCode{
        width: 100%;
    }
    .general-enquiries #txtPhoneNumber{
        width: 100%!important;
    }
}
/* 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: 1100;
    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;
    overflow: visible;
    z-index: 1005;
    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: 1005;
    overflow: visible;
    list-style: none;
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    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);
    }
}
/* PRIVACY POLICY AND T&C*/
.terms .terms h4,
.privacy .descriptions h4 {
    font-family: 'Open Sans', sans-serif;
    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,.terms .terms li a,
.privacy .descriptions p {
    font-size: 16px !important;
    color: #212121 !important;
    font-family: fira sans,sans-serif;
    font-weight: 400 !important;
    line-height: 30px !important;
    text-align: justify !important;
}
.terms .terms strong {
    font-weight: bold !important;
}
body.terms .the-content ul {
    padding-left: 18px !important;
    margin-bottom: 15px !important;
    list-style: disc !important;
}
.terms .terms li {
    list-style: disc !important;
}

body.privacy .the-content .descriptions ol{
    list-style: decimal!important;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 35px
}
body.privacy .the-content .descriptions ul{
    margin-left: 46px
}
body.privacy .the-content .descriptions h2{
    margin-left: -23px;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}
body.privacy .the-content .descriptions ol > p{
    margin-left: -23px;
    margin-bottom: 10px!important;
}

body.privacy .the-content .address-eh{
    display: block;
    margin-left:0;
}
body.privacy .the-content .address-eh p{
    margin-bottom: 0;
    
}
/* BOOKING 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;
}

/* CHSE BADGE */
#chse_badge img {
    max-width: 150px;
}

/* SHA BADGE */
.footer-container .sha-logo-footer{
    display: none
}
.sha-logo-footer {
    position: absolute;
    bottom: 11vh;
    left: 205px;
}

.sha-logo-footer img {
    width: 140px;
}

/* Quick facts auto icons */
.quick-facts .content-container .content .content-item .item, #quick-facts .item{
    padding-left: 95px!important
}
.quick-facts .content-container .content .content-item .group .half .item.nobefore:before,body.quick-facts .container .content-container .content .content-item .item.nobefore:before, #quick-facts .item.nobefore:before{
    display: none!important;
}
.quick-facts .content-container .content .content-item .item .icon-container, #quick-facts .item .icon-container{
    position: absolute;
    top: 0;
    left: 0;
    height: 55px;
    width: 55px;
}
.quick-facts .content-container .content .content-item .item .icon-container img, #quick-facts .item img{
    width: 100%;
}
/* Homepage Banner Updates */
.inner-img{
    display: inline-block;
	height: calc(240px + (750 - 240) * (100vw - 320px) / (1920 - 320));
	width: 100%;
	overflow: hidden;
}
.inner-img.split{
	height: calc(300px + (514 - 300) * (100vw - 320px) / (1920 - 320));
}
.inner-img img{
    width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center; /* To crop from the bottom */
}
.subpage .inner-img{
    max-height: 680px;
}
/* New footer badges */
.badge-container{
    display: none
}
.badge-carousel{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.badge-carousel .item{
    width: calc(70px + (125 - 70) * (100vw - 320px) / (1920 - 320));
    margin: 0 7px;
}
.badge-carousel .item img{
    width: 100%
}
.badge-carousel .item a{
    display: block;
}

@media all and (max-width: 1023px) {
   
    
    .footer-container .footer .wrapper .column{
        width: 50%;
    }

    .footer-container .footer .wrapper .bottom {
        margin-top: 0;
        order: 3;
        width: 100%
    }
    .footer-container .footer .wrapper{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-container .footer .wrapper .column:nth-child(2){
        order: 2;
    }
    .footer-container.sticky .footer .wrapper{
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .footer-container.sticky .footer .column:first-child{
        order: 1
    }
    .footer-container.sticky .footer .column:nth-child(2){
        order: 3
    }
    .footer-container.sticky .footer .bottom,.footer-container.sticky .footer .column:nth-child(3){
        order: 2
    }


}
@media all and (max-width: 767px) {

    .footer-container.sticky .footer .column{
        display: none!important
    }
}
@media all and (max-width: 749px) {
    .footer-container .footer .wrapper .column,.footer-container .footer .wrapper .bottom{
        width: 100%;
        max-width: 350px
    }
}

/* For Video Controls update*/
.hero-container .media #pause-button.push-up{
    bottom: 73px
}
.hero-container .media #mute-button.push-up{
    bottom: 73px
}

.owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    bottom: 13%;
    width: 100%;
}

.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #000;
}
.owl-dots {
    text-align: center;
    padding-top: 15px;
}
.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}
.owl-dots button.owl-dot.active {
    background-color: #000;
}
.owl-dots button.owl-dot:focus {
    outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav button:focus {
    outline: none;
}

body.gallery .popup-slide .owl-dots{
    display: none
}
@media all and (max-width: 991px) {

    .tabs .tblrates tr{
        display: flex;
        flex-direction: column;
    }
}
div#popup select#drpCountry{
    margin-top: 0
}
#popup .row label{
    text-align: left;
    display: block;
}

#signUpForm .row label{
    text-shadow: 0 2px 2px rgba(0, 0, 0, .6);
    display: block;
}
#signUpForm .row:first-child{
    margin-bottom: 7px;
}

.subscription .row.col-2,div#popup .row.col-2{
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}
.subscription .row label{
    font-family: 'NewsCycle', serif;
}
.subscription .row.col-2 .col-md-6,div#popup .row.col-2 .col-md-6{
    width: 49.5%;
    margin-bottom: 5px;
}

.subscription .row.col-2 input,.subscription .row.col-2 select{
    width: 100%!important;
    margin: 0
}
div#popup .row.col-2 input,div#popup .row.col-2 select{
    width: 100%!important;
    margin: 0
}
.the-video{
    background: #000;
}
.the-video a{
    position: relative;

}
.the-video a:after{
    width: 63px;
    height: 26px;
    position: absolute;
    top: 0;
    left:0;right:0;bottom:0;
    margin: auto;
    content: "\f144";
    color: #fff;
    font-family: FontAwesome;
    font-size: 73px;
    transition: 0.5s;
    z-index: 1;
    opacity: 0.7;
    transition: 0.5s
}
.the-video a:hover:after{
    transform: rotate(120deg);
    transition: 0.5s;
    opacity: 1
}
.the-video a img{
    transition: 0.5s
}
.the-video a:hover img{
    opacity: 0.7;
    transition: 0.5s
}
body.video .tobii__slider .tobii__slider-slide > div{
    width: 98%;
    max-width: 950px;
    height: calc(250px + (553 - 250) * (100vw - 400px) / (1920 - 320))!important;

}
body.video .tobii__slider .tobii__slider-slide iframe,[data-type] iframe{
    width: 100%;
    height: 100%;
}



body.video .the-content{
    overflow: hidden;

}
.video-grid.v2{
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: hidden;
}
.video-grid.v2 .the-video img{
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.video-grid.v2 .vid-container .the-video{
    margin-bottom: 7px
}
.video-grid.v2 .vid-container .the-video a{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.video-grid.v2 .vid-container .the-video .tobii-zoom__icon{
    zoom: 2
}
.video-grid.v2 .vid-container{
    margin-bottom: 10px
}
.video-grid.v2 .vid-container p,.video-grid.v2 .vid-container h4{
    line-height: normal;
}

#sync1.owl-carousel .owl-video-tn{
    background-size: cover!important;
}
#sync1.owl-theme .owl-dots .owl-dot{
    background: none
}
#sync1 .item, #sync1 .item-video{
    background: #0c83e7;
    height: calc(200px + (560 - 200) * (100vw - 320px) / (1920 - 320));   
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#sync2 .item{
    background: #C9C9C9;
    padding: 5px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    height: calc(50px + (140 - 50) * (100vw - 320px) / (1920 - 320));   
}
#sync2 .item h1{
  font-size: 18px;
}
#sync2 .synced .item{
  background: #0c83e7;
}
#sync2 .item img{
    object-fit: cover;
    object-position: center;
    height: 100%;
}
body.gallery .container .content-container .content .content-item .gallery-container li{
    max-width: 100%
}

body.terms .content-container .content .content-item .the-content h4{
    font-weight: bold;
    font-size: 20px; 
}

#new-div {
    position: relative;
    display:none
}
#new-div a{
    position: fixed;
    bottom: 53px;
    left: 0;
    right: 0;
    margin: auto;
    display: inline;
    width: 160px;
    text-align: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    z-index: 20
}
.header-container .header .nav >ul>li:last-child a{
    color:#fff;
    background: #333
}
@media all and (max-width: 768px) {

    #new-div {
        display: block
    }
}
.header-container .header .nav >ul>li:last-child a:hover{
    opacity: 0.7;
    transition: 0.5
}

.P00215 #new-div a { background: #b8a674}
.P00215 .header-container .header .nav >ul>li:last-child a{ background: #b8a674}
.BaanTawantokEstate #new-div a { background: #b8a674}
.BaanTawantokEstate .header-container .header .nav >ul>li:last-child a{ background: #b8a674}
.P00167 #new-div a { background: #90732c}
.P00167 .header-container .header .nav >ul>li:last-child a{ background: #90732c}
.P00069 #new-div a { background: #41abe1}
.P00069 .header-container .header .nav >ul>li:last-child a{ background: #41abe1}
.Mana #new-div a { background: #8cb2b0}
.Mana .header-container .header .nav >ul>li:last-child a{ background: #8cb2b0}

.Mana #new-div a { background: #8cb2b0}
.Mana .header-container .header .nav >ul>li:last-child a{ background: #8cb2b0}

.Cendrawasih #new-div a { background: #ad7f1c}
.Cendrawasih .header-container .header .nav >ul>li:last-child a{ background: #ad7f1c}

.P00166 #new-div a { background: #174f5c}
.P00166 .header-container .header .nav >ul>li:last-child a{ background: #174f5c}

.Adasa #new-div a { background: #7d7470}
.Adasa .header-container .header .nav >ul>li:last-child a{ background: #7d7470}

.Adenium #new-div a { background: #b5b496}
.Adenium .header-container .header .nav >ul>li:last-child a{ background: #b5b496}

.Akuvara #new-div a { background: #3dc6f4}
.Akuvara .header-container .header .nav >ul>li:last-child a{ background: #3dc6f4}

.Amanzi #new-div a { background: #0e6983 }
.Amanzi .header-container .header .nav >ul>li:last-child a{ background: #0e6983}

.AmanziKataNoi #new-div a { background:#222 }
.AmanziKataNoi .header-container .header .nav >ul>li:last-child a{ background: #222}

.P00127 #new-div a { background: #937638}
.P00127 .header-container .header .nav >ul>li:last-child a{ background: #937638}

.P00363 #new-div a { background: #518397}
.P00363 .header-container .header .nav >ul>li:last-child a{ background: #518397}

.Sava7 #new-div a { background: #333d4c}
.Sava7 .header-container .header .nav >ul>li:last-child a{ background: #333d4c}

.Arnalaya #new-div a { background: #a68552}
.Arnalaya .header-container .header .nav >ul>li:last-child a{ background: #a68552}

.Asada #new-div a { background: #a98c3d}
.Asada .header-container .header .nav >ul>li:last-child a{ background:#a98c3d }

.Asante #new-div a { background: #1f3e72}
.Asante .header-container .header .nav >ul>li:last-child a{ background: #1f3e72}

.Asta #new-div a { background: #761d16}
.Asta .header-container .header .nav >ul>li:last-child a{ background: #761d16}

.atasombak #new-div a { background: #c49a6c}
.atasombak .header-container .header .nav >ul>li:last-child a{ background: #c49a6c}

.P00061 #new-div a { background: #2da2cc}
.P00061 .header-container .header .nav >ul>li:last-child a{ background: #2da2cc}

.BaanPuri #new-div a { background: #844b11}
.BaanPuri .header-container .header .nav >ul>li:last-child a{ background: #844b11}

.P00019 #new-div a { background: #6b9541}
.P00019 .header-container .header .nav >ul>li:last-child a{ background: #6b9541}

.P00415 #new-div a { background: #7697c3}
.P00415 .header-container .header .nav >ul>li:last-child a{ background:#7697c3 }

.P00168 #new-div a { background: #a98926}
.P00168 .header-container .header .nav >ul>li:last-child a{ background: #a98926}

.P00318 #new-div a { background: #52b7ce}
.P00318 .header-container .header .nav >ul>li:last-child a{ background: #52b7ce}

.P00126 #new-div a { background: #7e7466}
.P00126 .header-container .header .nav >ul>li:last-child a{ background:#7e7466 }

.P00230 #new-div a { background:#0b4e9c }
.P00230 .header-container .header .nav >ul>li:last-child a{ background: #0b4e9c}

.P00271 #new-div a { background: #9dcccb}
.P00271 .header-container .header .nav >ul>li:last-child a{ background:#9dcccb }

.VillaatEchoBeach #new-div a { background: #4a4a49}
.VillaatEchoBeach .header-container .header .nav >ul>li:last-child a{ background: #4a4a49}

.P00225 #new-div a { background: #99694b}
.P00225 .header-container .header .nav >ul>li:last-child a{ background:#99694b }

.WWBeachHouse #new-div a { background: #12adde}
.WWBeachHouse .header-container .header .nav >ul>li:last-child a{ background: #12adde}

.Kailasha #new-div a { background: #799a05}
.Kailasha .header-container .header .nav >ul>li:last-child a{ background: #799a05}

.Kakatua #new-div a { background: #0e6983}
.Kakatua .header-container .header .nav >ul>li:last-child a{ background: #0e6983}

.Kalyani #new-div a { background: #b29e61}
.Kalyani .header-container .header .nav >ul>li:last-child a{ background: #b29e61}

.Kedidi #new-div a { background: #1f9b70}
.Kedidi .header-container .header .nav >ul>li:last-child a{ background:#1f9b70 }

.P00030 #new-div a { background: #72abbe}
.P00030 .header-container .header .nav >ul>li:last-child a{ background: #72abbe}

.VillaLilibel #new-div a { background: #bcafa2}
.VillaLilibel .header-container .header .nav >ul>li:last-child a{ background: #bcafa2}

.Lulito #new-div a { background: #084f95}
.Lulito .header-container .header .nav >ul>li:last-child a{ background: #084f95}

.Luwih #new-div a { background: #8cc63f}
.Luwih .header-container .header .nav >ul>li:last-child a{ background: #8cc63f}

.P00153 #new-div a { background: #ab8d0d}
.P00153 .header-container .header .nav >ul>li:last-child a{ background: #ab8d0d}

.P00431 #new-div a { background: #6a94b2}
.P00431 .header-container .header .nav >ul>li:last-child a{ background: #6a94b2}

.liberty #new-div a { background: #b19b7a}
.liberty .header-container .header .nav >ul>li:last-child a{ background: #b19b7a}

.P00244 #new-div a { background: #6c7c8b}
.P00244 .header-container .header .nav >ul>li:last-child a{ background: #6c7c8b}

.P00157 #new-div a { background: #c1a15e}
.P00157 .header-container .header .nav >ul>li:last-child a{ background: #c1a15e}

.P00481 #new-div a { background: #95765b}
.P00481 .header-container .header .nav >ul>li:last-child a{ background: #95765b!important}

.OceanEdge #new-div a { background: #01b7aa}
.OceanEdge .header-container .header .nav >ul>li:last-child a{ background:#01b7aa }

.PandawaGeneric #new-div a { background: #285d50}
.PandawaGeneric .header-container .header .nav >ul>li:last-child a{ background: #285d50}

.P00433 #new-div a { background: #63bcb1}
.P00433 .header-container .header .nav >ul>li:last-child a{ background: #63bcb1}

.P00231 #new-div a { background: #285a80}
.P00231 .header-container .header .nav >ul>li:last-child a{ background: #285a80}

.Samadhana #new-div a { background: #adcf72}
.Samadhana .header-container .header .nav >ul>li:last-child a{ background: #adcf72}

.P00111 #new-div a { background: #8ab9da}
.P00111 .header-container .header .nav >ul>li:last-child a{ background: #8ab9da}

.Sapi #new-div a { background:#a0c34b }
.Sapi .header-container .header .nav >ul>li:last-child a{ background:#a0c34b }

.SayangDAmour #new-div a { background: #947b64}
.SayangDAmour .header-container .header .nav >ul>li:last-child a{ background: #947b64}

.P00185 #new-div a { background: #5ba1d4}
.P00185 .header-container .header .nav >ul>li:last-child a{ background: #5ba1d4}

.Semarapura #new-div a { background: #85a9b8}
.Semarapura .header-container .header .nav >ul>li:last-child a{ background: #85a9b8}

.SepoiSepoi #new-div a { background:#aa862e }
.SepoiSepoi .header-container .header .nav >ul>li:last-child a{ background: #aa862e}

.Simona #new-div a { background: #8c8c8c}
.Simona .header-container .header .nav >ul>li:last-child a{ background: #8c8c8c}

.SiraBeachHouse #new-div a { background: #9e9679}
.SiraBeachHouse .header-container .header .nav >ul>li:last-child a{ background:#9e9679 }

.Suralai #new-div a { background: #9fc7cc}
.Suralai .header-container .header .nav >ul>li:last-child a{ background: #9fc7cc}

.TamanAhimsa #new-div a { background: #866949}
.TamanAhimsa .header-container .header .nav >ul>li:last-child a{ background: #866949}

.P00029 #new-div a { background:#c49a6c }
.P00029 .header-container .header .nav >ul>li:last-child a{ background: #c49a6c}

.P00016 #new-div a { background: #00acc8}
.P00016 .header-container .header .nav >ul>li:last-child a{ background: #00acc8}

.P00364 #new-div a { background: #518397}
.P00364 .header-container .header .nav >ul>li:last-child a{ background: #518397}

.P00139 #new-div a { background: #64b3a3}
.P00139 .header-container .header .nav >ul>li:last-child a{ background: #64b3a3}

.WinduSari #new-div a { background: #b1a998}
.WinduSari .header-container .header .nav >ul>li:last-child a{ background: #b1a998}

.YlangYlang #new-div a { background: #c7b153}
.YlangYlang .header-container .header .nav >ul>li:last-child a{ background: #c7b153}

.Arsana #new-div a { background: #75c3d4}
.Arsana .header-container .header .nav >ul>li:last-child a{ background: #75c3d4}

.Sohamsa #new-div a { background: #0392a6}
.Sohamsa .header-container .header .nav >ul>li:last-child a{ background: #0392a6}

.Beji #new-div a { background: #86b7bd}
.Beji .header-container .header .nav >ul>li:last-child a{ background: #86b7bd}

.Voyage #new-div a { background: #46999c}
.Voyage .header-container .header .nav >ul>li:last-child a{ background: #46999c}

.P00128 #new-div a { background: #333}
.P00128 .header-container .header .nav >ul>li:last-child a{ background: #333}

.PandawasPala #new-div a { background: #4a9285}
.PandawasPala .header-container .header .nav >ul>li:last-child a{ background: #4a9285}

.Zelie #new-div a { background: #a88869}
.Zelie .header-container .header .nav >ul>li:last-child a{ background: #a88869}

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:42px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:40px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:40px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
