/******************************************************************
	TABLE OF CONTENT
	
	01 - Reset
	02 - Globals
	03 - Typography
	04 - Layout
	05 - Widgets
	06 - Header
	07 - Content
	08 - Search results 
	09 - Single
	10 - Contact
	11 - Maps
	12 - Blog
	13 - Error page
	14 - Footer
	15 - Lightbox
	16 - Form elements
	17 - FrontEnd Submit Content
	18 - Plugins
	19 - Responsiveness
	20 - WP Core
	21 - Custom additions
**********************************/
/* ===== CSS Variables ===== */
:root {
    --primary: #5FC8C2;
    --primary-dark: #41AFAA;
    --primary-gradient: linear-gradient(to bottom,#5FC8C2 0%,#41AFAA 100%);
    --primary-gradient-hover: linear-gradient(to bottom,#41AFAA 0%,#5FC8C2 100%);
    --gray-bg: #E9E6E0;
    --gray-light: #f2f2f2;
    --gray-border: #ccc;
    --gray-text: #858585;
    --dark-text: #454545;
    --shadow: 0 0 2px rgba(0,0,0,0.1);
    --radius: 17px;
    --transition: all 0.1s ease-in 0.1s;
    --font-family: 'Open Sans',Helvetica,Arial,sans-serif
}

/* ===== 01 Reset ===== */
*,*:before,*:after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

body {
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* overflow-x: hidden; */
}

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,q,small,strong,sub,sup,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,input,table,caption,tbody,tfoot,thead,tr,th,td,figure {
    border: 0;
    margin: 0;
    padding: 0
}

html {
    overflow-y: scroll;
    -webkit-text-size-adjust: auto;
    -webkit-overflow-scrolling: touch
}

img,fieldset,abbr,acronym {
    border: 0
}

article,figure,figcaption,hgroup,footer,header,nav,section,video,object {
    display: block
}

audio,canvas,progress,video {
    display: inline-block;
    vertical-align: baseline
}

img {
    border: 0;
    max-width: 100%;
    vertical-align: middle;
    height: auto;
    display: block
}

figure img {
    display: block
}

iframe,.fb_iframe_widget {
    border: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden
}

input,button,select,textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

hr {
    background: #ccc;
    height: 1px;
    border: none;
    width: 100%;
    display: inline-block;
    margin: 15px 0
}

p {
    font-size: 16px;
    margin-bottom: 12px
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0 0 30px
}

table th {
    background: #E9E6E0;
    border: 1px solid #ccc;
    padding: 13px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    vertical-align: top
}

table td {
    background: #fff;
    border: 1px solid #ccc;
    color: #454545;
    padding: 6px;
    font-size: 16px
}

table p {
    padding: 0
}

a {
    color: #41AFAA;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
	outline: none !important;
}

article:empty,.widget h1:empty,.widget h2:empty,.widget h3:empty,.widget h4:empty,.widget h5:empty,.widget h6:empty {
    display: none!important
}

/* ===== 02 Globals ===== */
body {
    font: 13px/1.5 var(--font-family);
    text-align: center;
    color: var(--dark-text);
    background: #ffffff;
    padding: 0!important
}

.left {
    float: left
}

.right {
    float: right
}

/* ===== 02.1 Lists ===== */
ul {
    margin: 0 0 17px
}

ul>li {
    list-style: none;
    position: relative
}

ul ul {
    margin: 8px 0 -8px 15px
}

ol {
    margin: 0 0 17px 25px;
    display: inline-block
}

ol li {
    list-style: decimal;
    padding: 0 0 8px 5px
}

ol ol {
    margin: 8px 0 -8px 15px
}

.widget ul {
    margin: 0
}

nav ul,footer ul,.lSSlideOuter ul {
    margin: 0
}

nav ul>li,footer ul>li,.widget,aside ul>li,.lSSlideOuter li {
    padding: 0
}

nav ul>li:before,footer ul>li:before,.widget:before,aside ul>li:before,.widget>div>ul li:before,.fa-ul li:before,.nobullet li:before,.lSSlideOuter li:before,.social li:before {
    display: none
}

.social li {
    display: inline-block;
    padding: 0 4px 4px 0;
    font-size: 15px
}

.social li a {
    text-align: center;
    line-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    color: #fff!important;
    background: #b9aca4;
    display: block
}

.social li:last-child {
    padding-right: 0
}

.social li a:hover,.social li a:focus {
    background: var(--primary)
}

/* ===== 02.2 Buttons ===== */
.gradient-button,.wpcf7-submit,.form-submit #submit,button,input[type="button"],input[type="reset"],input[type="submit"] {
    font-size: 11.5px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff!important;
    height: 32px;
    text-align: center;
    display: inline-block;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
    border-radius: var(--radius);
    background: var(--primary-gradient);
    cursor: pointer;
    box-shadow: inset 0 0 1px rgba(0,0,0,.3);
    padding: 0 20px;
    border: none
}

.gradient-button:hover,.wpcf7-submit:hover,.form-submit #submit:hover,input[type="reset"]:hover,input[type="submit"]:hover {
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    background: var(--primary-gradient-hover)
}

.bottom-nav {
    float: left;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 -1px 0 rgba(0,0,0,0.15)
}

.pager {
    float: right
}

.pager span {
    white-space: nowrap;
    font-size: 11px;
    line-height: 33px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 3px;
    float: left;
    width: 33px;
    height: 33px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.pager a {
    font-weight: 700;
    color: #999;
    float: left;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.pager span:first-child,.pager span:last-child {
    width: auto
}

.pager span:first-child a,.pager span:last-child a {
    padding: 0 15px
}

.pager .current,.pager a:hover {
    background: var(--primary);
    color: #fff
}

.pager .dots {
    background: none;
    box-shadow: none;
    margin: 0;
    width: 100%!important
}

/* ===== 02.3 Icons ===== */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga'
}

.material-icons.md-18 {
    font-size: 18px
}

.material-icons.md-24 {
    font-size: 24px
}

.material-icons.md-36 {
    font-size: 36px
}

.material-icons.md-48 {
    font-size: 48px
}

/* ===== 02.4 Loading ===== */
.ball {
    background-color: transparent;
    border: 10px solid var(--primary);
    opacity: .9;
    border-top-color: transparent!important;
    border-left-color: transparent!important;
    border-radius: 60px;
    box-shadow: 0 0 35px #fff;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    animation: spin .5s infinite linear
}

.ball1 {
    background-color: transparent;
    border: 10px solid var(--primary);
    opacity: .9;
    border-top-color: transparent!important;
    border-left-color: transparent!important;
    border-radius: 35px;
    box-shadow: 0 0 15px #fff;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    top: -75px;
    animation: spinoff .5s infinite linear
}

.loading {
    text-align: center
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes spinoff {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(-360deg)
    }
}

/* ===== 03 Typography ===== */
h1,h2,h3,h4,h5,h6,.price em,.total_price,.reservation_total,.extra_items_total {
    font-family: 'Roboto Slab',serif;
    color: #555
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 24px 0 8px;
    padding: 0 10px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px
}

h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 6px
}

h4 {
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 10px
}

h5 {
    font-size: 14px;
    font-weight: 700;
    padding: 0 0 10px
}

h6 {
    font-size: 13px;
    font-weight: 700;
    padding: 0 0 10px
}

.full-width>h1 {
    font-size: 26px;
    padding: 20px 10px 44px;
    text-shadow: 0 1px 0 rgba(238,238,238,1);
    display: inline-block;
    width: 100%
}

/* ===== 04 Layout ===== */
.wrap {
    margin: 0 auto;
    text-align: left;
    width: 1280px;
    max-width: 98%;
    position: relative;
}
.new-aside+.row{
    margin: 0;
}
.row {
    margin: 0 0px;
}

.full-width {
    width: 100%;
    float: left;
    display: block;
    padding: 0 10px;
    margin: 0 0 20px
}

.three-fourth {
    width: 75%;
}

.two-third {
    width: 66.6667%
}

.one-half {
    width: 50%
}

.one-third {
    width: 33.3333%
}

.one-fourth {
    width: 25%
}

.one-fifth {
    width: 20%
}

.three-fourth,.two-third,.one-half,.one-third,.one-fourth,.one-fifth {
    float: left;
    display: block;
    padding: 0 10px;
    /* margin: 0 0 20px; */
}

.lower {
    margin-top: 93px
}

/* ===== 05 Widgets ===== */
.home-content-sidebar,.home-footer-sidebar,.above-footer-sidebar {
    display: inline-block;
    width: 100%
}

.s-title {
    display: inline-block;
    width: 100%
}

.s-title h2 {
    font-size: 26px;
    margin: 40px 0 0;
    padding: 35px 0 40px;
    display: inline-block;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 -1px 0 rgba(0,0,0,0.15)
}

.home-content-sidebar .offers .s-title h2 {
    margin: 0;
    padding-top: 15px;
    border-top: none;
    box-shadow: none
}

.home-content-sidebar .widget,aside>ul>li {
    display: inline-block;
    width: 100%
}

aside .widget,.accommodation-details,.tour-details,.cruise-details,.car_rental-details {
    float: left;
    display: block;
    background: #fff;
    padding: 13px 15px 15px;
    margin: 0 0 20px;
    width: 100%;
    box-shadow: var(--shadow)
}

aside .widget {
    width: 100%;
    margin: 0 5px
}

.testimonials {
    padding: 17px 20px 20px;
    width: 100%;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,0.1);
    background: var(--primary-gradient)
}

.testimonials blockquote {
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    padding: 0 0 10px
}

.testimonials .name {
    font-size: 13px;
    font-weight: 600
}

p.number {
    position: relative;
    font-weight: 700;
    padding: 0 0 5px 25px
}

p.number:before {
    content: "\e0cd";
    font-family: 'Material Icons';
    font-size: 24px;
    color: #B8ACA4;
    position: absolute;
    top: -5px;
    left: 0;
    font-weight: 400;
    transform: rotate(15deg)
}

.widget>div {
    max-width: 100%
}

.widget>ul,.widget>div>ul {
    margin: 0
}

.widget>ul>li,.widget>div>ul>li {
    padding: 0 0 5px
}

.widget a {
    color: var(--dark-text);
    outline: none;
}

.widget a:hover,.widget a:focus {
    color: var(--primary-dark)
}

aside .widget h4 {
    border-bottom: 1px solid #ccc;
    font-size: 18px;
    margin: 0 0 14px;
    padding: 0 0 13px;
    color: var(--gray-text)
}

aside .widget h5 {
    font: 700 14px var(--font-family);
    color: var(--primary-dark);
    padding: 0 0 5px
}

aside .widget h4 .rsswidget {
    color: var(--gray-text)
}

.rss-widget-icon {
    float: right
}

aside .details {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0
}

.widget .deals .full-width {
    margin: 0
}

.widget .small-list {
    margin: 0
}

.widget .small-list li {
    padding: 0;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    padding: 0 0 15px;
    margin: 0 0 15px
}

.widget .small-list li:last-child {
    border: none;
    margin: 0;
    padding: 0
}

.widget .small-list li a {
    color: var(--dark-text)
}

.widget .small-list li h3 {
    font: 700 14px var(--font-family);
    color: #AB9A8F;
    padding: 0;
    margin: 0;
    width: 100%
}

.widget .small-list li:hover h3 {
    color: var(--dark-text)
}

.widget .small-list li p {
    float: left;
    padding: 0;
    font-weight: 400
}

.widget .small-list li p span {
    font-weight: bold;
    color: #3f3f3f
}

.widget .small-list figure {
    float: left;
    width: 80px;
    margin: 0 15px 0 0
}

.widget .small-list.destinations li h3 {
    padding: 19px 0 0
}

.widget .small-list .rating {
    position: relative;
    top: 0;
    right: 0
}

.searchform input[type="submit"] {
    margin-top: 15px
}

.calendar_wrap caption {
    padding-bottom: 15px
}

.calendar_wrap table {
    margin: 0
}

.calendar_wrap th,.calendar_wrap td {
    padding: 7px 0;
    text-align: center
}

td#today {
    background: #b9aca4;
    color: #fff
}

.refine-search-results .checkbox {
    display: inline-block;
    width: 100%
}

.home-footer-sidebar {
    margin: 40px 0 0;
    padding: 65px 0 0;
    border-top: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 -1px 0 rgba(0,0,0,0.15)
}

.home-footer-sidebar>ul {
    margin: 0 -10px
}

.home-footer-sidebar .widget {
    float: left;
    width: 25%;
    padding: 0 10px;
    margin: 0 0 20px
}

.home-footer-sidebar .widget>div {
    min-height: 200px;
    width: 100%!important;
    padding: 15px;
    margin: 0;
    background: linear-gradient(to bottom,#fff 0%,var(--gray-light) 100%);
    box-shadow: var(--shadow)
}

.home-footer-sidebar .widget>div h4 {
    border-bottom: 1px solid #ccc;
    font-size: 17px;
    margin: 0 0 14px;
    padding: 0 0 13px;
    color: var(--primary-dark)
}

.above-footer-sidebar {
    margin: 0 auto;
    width: 1280px;
    text-align: left;
    max-width: 94%;
    margin: 25px 0 0;
    padding: 65px 0 0;
    border-top: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 -1px 0 rgba(0,0,0,0.15)
}

.above-footer-sidebar>ul {
    margin: 0 -10px
}

.above-footer-sidebar .widget {
    float: left;
    width: 25%;
    padding: 0 10px;
    margin: 0 0 20px
}

.above-footer-sidebar .widget>div {
    padding: 15px;
    background: #fff;
    box-shadow: var(--shadow)
}

.footer-sidebar>ul {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.tagcloud a {
    color: var(--dark-text)
}

footer .byt_address_widget h3 {
    font-size: 18px;
    color: #999;
    padding: 23px 0 18px
}

.byt_address_widget h3 {
    font-size: 15px;
    padding: 0 0 10px
}

.byt_address_widget p {
    padding: 0 0 2px;
    margin: 0
}

.byt_address_widget em {
    font-style: normal;
    font-weight: 700;
    color: #3facaa
}

.byt_address_widget a {
    color: var(--dark-text);
    font-weight: 400
}

.widget .menu li {
    padding: 0 0 2px 15px
}

.widget .menu li:before {
    display: block
}

.widget .menu li a {
    color: var(--dark-text);
    font-weight: 400
}

/* ===== BYT Search widget ===== */
.home-content-sidebar {
    position: relative
}

.noslider .home-content-sidebar .byt_search_widget {
    margin: 20px 0 0;
    position: relative;
    top: 0;
    z-index: 10
}

.home-content-sidebar .byt_search_widget {
    position: absolute;
    top: -250px;
    left: 0;
    margin-top: 140px;
    z-index: 99;
    width: 100%;
    display: inline-block;
    padding: 15px 0 10px;
    border: 1px solid #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    background: linear-gradient(to bottom,#fff 0%,var(--gray-light) 100%)
}

.home-content-sidebar .byt_search_widget h2 {
    display: none
}

.home-content-sidebar .byt_search_widget form>div {
    border-bottom: none;
    margin: 0
}

.home-content-sidebar .byt_search_widget .column {
    position: relative;
    float: left;
    width: 25%;
    padding: 0
}

.home-content-sidebar .byt_search_widget .column:nth-child(2) {
    width: 50%
}

.home-content-sidebar .byt_search_widget .when .datepicker {
    float: left;
    width: 48%
}

.home-content-sidebar .byt_search_widget .when .datepicker:last-of-type {
    float: right
}

.home-content-sidebar .byt_search_widget .dt {
    float: left;
    width: 100%;
    border: none;
    background: none;
    padding: 0 15px 15px;
    font-size: 16px
}

.home-content-sidebar .byt_search_widget .dd {
    float: left;
    width: 100%;
    padding: 0 15px;
    border-right: 1px solid #ccc;
    min-height: 95px;
    margin: 0 0 5px
}

.home-content-sidebar .byt_search_widget .column:nth-of-type(4) .dd,.home-content-sidebar .byt_search_widget .column:nth-of-type(8) .dd {
    border-right: none
}

.home-content-sidebar .byt_search_widget .column .checkbox {
    float: left;
    width: 50%;
    padding: 5px 0;
    margin: 0
}

.home-content-sidebar .byt_search_widget .column:first-of-type .checkbox:nth-of-type(1),.home-content-sidebar .byt_search_widget .column:first-of-type .checkbox:nth-of-type(3) {
    width: 60%
}

.home-content-sidebar .byt_search_widget .column:first-of-type .checkbox:nth-of-type(2),.home-content-sidebar .byt_search_widget .column:first-of-type .checkbox:nth-of-type(4) {
    width: 40%
}

.home-content-sidebar .byt_search_widget .gradient-button {
    position: absolute;
    left: 41.5%;
    bottom: -3px;
    width: 17%;
    height: 34px;
    border: none;
    border-radius: 17px 17px 0 0
}

.byt_search_widget div.radio>div,.byt_search_widget div.checkbox>div {
    margin-right: 5px
}

.byt_search_widget .checkbox label,.byt_search_widget .radio label {
    padding: 0
}

.byt_search_widget div.radio span,.byt_search_widget div.radio input {
    width: 20px;
    height: 20px
}

.byt_search_widget div.radio span.checked:before {
    width: 10px;
    height: 10px;
    left: 4px;
    top: 4px
}

.byt_search_widget div.checker span,.byt_search_widget div.checker input {
    width: 20px;
    height: 20px
}

.byt_search_widget div.checker span.checked:before {
    left: 0;
    top: -1px
}

aside .byt_search_widget .dd {
    border-bottom: 1px solid #ccc;
    padding: 0 0 15px;
    margin: 0 0 15px
}

aside .byt_search_widget .dt {
    font-weight: 700;
    padding: 0 0 12px
}

aside .byt_search_widget .gradient-button {
    width: 100%
}

.search_widget_star {
    margin: 0 0 8px
}

.search_widget_star img {
    display: inline
}

.stars-info {
    float: right;
    font-size: 12px;
    line-height: 24px
}

.f-item,.destination {
    position: relative
}

.suggest-results {
    position: absolute;
    z-index: 9999;
    left: 0!important;
    top: 57px!important;
    width: 100%;
    background: #f5f5f5;
    box-shadow: 5px 5px 5px rgba(0,0,0,.3)
}

.suggest-results li {
    padding: 3px 4%;
    cursor: pointer
}

.suggest-results li:hover {
    color: #111
}

.suggest-results li:first-child {
    padding-top: 10px
}

.suggest-results li:last-child {
    padding-bottom: 10px
}

.destination .suggest-results {
    background: #fff;
    top: 31px!important
}

/* ===== 06 Header ===== */
header {
    background: #fff;
    width: 100%;
    position: relative;
    z-index: 999
}

.page-template-byt_home header,.page-template-byt_home-php header {
    margin: 0
}

.noslider header {
    margin: 0 0 20px!important
}

.noslider .home-content-sidebar .byt_search_widget {
    top: 0;
    position: relative;
    margin: 20px 0 0
}

.logo {
    display: block
}

.logo img {
    height: 105px
}

.main-nav {
    float: left;
    display: block;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom,#c1b6ae 0%,#baaca3 100%);
    box-shadow: 0 0 2px rgba(0,0,0,0.2)
}

.main-nav>ul {
    position: relative;
    z-index: 20;
    top: 0;
    display: inline-block;
    height: 100%
}

.main-nav li {
    white-space: nowrap;
    float: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 20px 0 0;
    line-height: 39px;
    letter-spacing: -1px;
    text-shadow: 0 0 1px rgba(0,0,0,0.3)
}

.main-nav li a {
    font-weight: 700;
    display: block;
    color: #fff
}

.main-nav li a:hover,.main-nav li.current-menu-item li a:hover,.main-nav li.current-menu-item a,.main-nav .current-menu-parent>a,.main-nav li.current_page_ancestor>a {
    color: #3F3F3F;
    text-shadow: 0 1px 0 rgba(255,255,255,0.15)
}

.main-nav li.current-menu-item li a {
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,0.3)
}

.main-nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    margin-left: -10px;
    padding-bottom: 10px;
    min-width: 130px;
    background: linear-gradient(to bottom,#c1b6ae 0%,#baaca3 100%)
}

.main-nav ul ul li {
    float: none;
    position: relative;
    padding: 10px 10px 0;
    background: none;
    line-height: normal
}

.main-nav ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0
}

.main-nav li:hover>ul {
    display: block
}

.main-nav .selector {
    display: none
}

.main-nav ul:after {
    content: "";
    clear: both;
    display: block
}

header .search {
    width: 153px
}

header .search form {
    position: relative;
    top: 0;
    left: 0;
    width: 100%
}

header .search form:after {
    font-family: 'Material Icons';
    content: "\e8b6";
    font-size: 22px;
    position: absolute;
    top: 2px;
    right: 10px;
    color: #B1A398
}

header .search input {
    padding: 8px 15px
}

header .search input[type="submit"] {
    z-index: 10;
    width: 37px;
    height: 37px;
    background: transparent;
    font-size: 0;
    text-align: right;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: none
}

.contact {
    display: block;
    position: relative;
    padding: 0 0 0 40px
}

.contact span {
    display: block;
    font-size: 12px;
    color: #858585
}

.contact .number {
    font-weight: 700
}

.contact:before {
    font-family: 'Material Icons';
    content: "\e0cd";
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 0;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    color: #fff;
    float: left;
    background: #5fc8c2;
    border-radius: 17px
}

header .ribbon {
    float: right;
    position: absolute;
    top: -1px;
    right: -2px;
    z-index: 99999;
    width: 110px;
    min-height: 90px;
    background: #5fc8c2;
    box-shadow: 1px 0 0 rgba(0,0,0,.1),-1px 0 0 rgba(0,0,0,.1)
}

header .ribbon:before {
    z-index: 2;
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 52px 0 0;
    border-color: #5fc8c2 transparent transparent transparent
}

header .ribbon:after {
    z-index: 2;
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 52px 20px 0;
    border-color: transparent #5fc8c2 transparent transparent
}

.ribbon nav:before {
    opacity: 0.1;
    z-index: 1;
    content: "";
    position: absolute;
    bottom: -22px;
    left: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21px 53px 0 0;
    border-color: #000 transparent transparent transparent
}

.ribbon nav:after {
    opacity: 0.1;
    z-index: 1;
    content: "";
    position: absolute;
    bottom: -22px;
    right: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 53px 21px 0;
    border-color: transparent #000 transparent transparent
}

.ribbon li {
    float: left;
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 0 9px 3px;
    letter-spacing: -0.034em;
    border-bottom: 1px solid rgba(0,0,0,.2);
    text-shadow: 0 0 1px rgba(0,0,0,0.3);
    text-align: center
}

.ribbon li:last-of-type {
    border-bottom: none
}

.ribbon li a {
    color: #fff
}

.ribbon li a:hover {
    color: rgba(0,0,0,.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15)
}

.ribbon nav {
    float: left;
    width: 100%;
    position: relative;
    min-height: 90px
}

.ribbon ul {
    padding: 12px 10px 0;
    width: 100%;
    float: left
}

.slider-wrap {
    position: absolute;
    float: left;
    width: 100%;
    overflow: hidden;
    height: 630px
}

/* ===== WPML ===== */
header #lang_sel,header #lang_sel_click {
    width: 100%;
    margin: 0;
    float: left;
    z-index: 999;
    font-family: var(--font-family)
}

header #lang_sel_click ul ul {
    width: 100%;
    margin: 0;
    float: left;
    padding: 0!important
}

#lang_sel ul,#lang_sel_click ul {
    background: none!important;
    padding: 0!important
}

#lang_sel li,#lang_sel_click li {
    width: 100%;
    padding: 0;
    background: none;
    border-bottom: none!important;
    font-size: 12px
}

#lang_sel li:hover a,#lang_sel_click li:hover a {
    text-shadow: none
}

header #lang_sel a,header #lang_sel a:visited,header #lang_sel a.lang_sel_sel,header #lang_sel_click a,header #lang_sel_click a:visited,header #lang_sel_click a.lang_sel_sel,header #lang_sel_click a:hover,header #lang_sel_click ul ul a:hover,header #lang_sel_click *:hover>a,header #lang_sel_click ul ul *:hover>a,header #lang_sel *:hover>a,header #lang_sel ul ul *:hover>a {
    background: none!important;
    color: #fff;
    padding: 9px 10px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.42;
    border: none;
    text-shadow: none
}

header #lang_sel li,header #lang_sel_click li {
    background: #5FC8C2
}

header #lang_sel_click ul ul,header #lang_sel ul ul {
    border-top: none;
    padding: 0!important
}

#lang_sel ul ul li a:hover {
    color: #000!important
}

#lang_sel ul ul {
    top: 30px;
    width: 100%
}

img.iclflag {
    display: inline
}

header .menu-item-language-current img {
    margin-bottom: -2px!important
}

#lang_sel_click img.iclflag {
    top: 2px;
    margin-right: 5px
}

#lang_sel img.iclflag {
    top: -1px!important
}

.ribbon #lang_sel_list {
    width: 100px;
    position: static;
    float: left;
    height: 100%;
    background: none!important;
    border: none!important;
    padding: 0!important
}

.ribbon #lang_sel_list ul {
    border: none;
    padding: 0 10px!important;
    width: 100%;
    float: left;
    margin: 0 2px!important;
    position: static;
    height: 100%
}

.ribbon #lang_sel_list li {
    width: 100%;
    padding: 9px 0!important
}

.ribbon #lang_sel_list a,.ribbon #lang_sel_list a:visited {
    background: none!important;
    color: #fff;
    border: none;
    padding: 0!important;
    font-size: 12px;
    font-weight: 600
}

.ribbon #lang_sel_list a:hover {
    color: #3F948F;
    text-shadow: 0 1px 0 rgba(255,255,255,0.15)
}

.ribbon #lang_sel_list a.lang_sel_sel,.ribbon #lang_sel_list a.lang_sel_sel:visited {
    background: none!important
}

.menu-item-language li:before {
    display: none
}

.menu-item-language {
    display: inline-block!important;
    padding: 0
}

/* ===== 07 Content ===== */
.main {
    float: left;
    width: 100%;
    min-height: 500px;
    padding-bottom: 100px;
    padding-top: 8px;
}
.main.new{
	background:#fff;
}
.breadcrumbs {
    float: none;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #c6c4bf;
    padding-bottom: 5px
}

.breadcrumbs ul {
    display: flex;
    width: 100%;
    padding: 0 0 0px;
    flex-wrap: wrap;
    gap: 5px 10px
}

.breadcrumbs li {
    display: block;
    font-size: 14px;
    font-weight: 600
}

.breadcrumbs li a {
    color: var(--dark-text)
}

.breadcrumbs li a:hover {
    color: #3F3F3F
}

/* ===== 07.1 Static elements ===== */
.static-content {
    float: left;
    display: block;
    background: #fff;
    padding: 20px;
    width: 100%;
    box-shadow: var(--shadow)
}

/* ===== 07.2 Offers, Deals lists ===== */
.offers .details h3 {
    padding: 0 0 12px;
    margin: 0 0 15px;
    border-bottom: 1px solid #ccc;
    font: 600 15px var(--font-family)
}

.offers .details h3 a {
    color: var(--dark-text);
    font-weight: 600
}

.details {
    float: left;
    display: block;
    position: relative;
    background: #fff;
    padding: 13px 10px 13px;
    width: 100%;
    box-shadow: var(--shadow)
}

.details h3 {
    padding: 0 75px 5px 0
}

.details .address {
    display: inline-block;
    width: 100%;
    color: #858585;
    padding: 0 65px 12px 0
}

.details .stars {
    position: absolute;
    top: 18px;
    right: 15px
}

.stars {
    float: right
}

.stars i {
    display: inline;
    float: left;
    color: #FFC904;
    font-size: 16px
}

.details .rating,.small-list .rating {
    position: absolute;
    padding: 0 0 0 19px;
    display: inline-block;
    float: right;
    white-space: nowrap;
    top: 44px;
    right: 15px
}

.details .rating:before,.small-list .rating:before {
    content: "\e8dc";
    font-family: 'Material Icons';
    color: #B8ACA4;
    font-size: 15px;
    position: absolute;
    top: -1px;
    left: 0
}

.details .price {
    border-top: 1px solid #ccc;
    padding: 13px 0;
    line-height: 16px
}

aside .accommodation-details .price,aside .tour-details .price,aside .cruise-details .price,aside .car_rental-details .price {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 13px 0;
    margin-top: 12px;
    line-height: 16px
}

.details .price em,aside article .price em {
    float: right;
    font-size: 16px
}

.price em {
    font-weight: 700;
    font-style: normal
}

.details .description {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    margin: 0 0 15px;
    min-height: 105px
}

.details .description a {
    font-weight: 600;
    font-style: italic;
    color: #41AFAA
}

.details .actions {
    text-align: center
}

.cruise_item .details h3,.car_rental_item h3 {
    padding-bottom: 13px
}

.car_rental_item h3,.tour_item .details h3 {
    padding-right: 0
}

.cruise_item .rating,.car_rental_item .rating {
    top: 18px
}

.car_rental_item .description div {
    padding: 5px 0;
    font-weight: 600
}

.car_rental_item .description div span {
    font-weight: 400;
    padding: 0 5px 0 0;
    width: 60%;
    display: inline-block
}

.single-location .car_rental_item .description div {
    padding: 0
}

.single-location .car_rental_item .description div span {
    width: 65%
}

.location_item h4 {
    font: 700 15px var(--font-family)!important;
    color: #3f3f3f!important;
    padding: 4px 90px 15px 0!important;
    margin: 0!important;
    border: none!important
}

.location_item .price {
    border: none;
    padding: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2)
}

.location_item .price em {
    float: none;
    font-size: 20px
}

.location_item .actions {
    padding: 0;
    position: absolute;
    top: 15px;
    right: 15px
}

.location_item .count {
    color: #858585;
    display: inline-block;
    width: 50%;
    white-space: nowrap;
    font-size: .965em
}

.location_item .ribbon {
    text-align: center;
    margin: 20px -20px 0;
    height: 50px;
    position: relative;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    background: linear-gradient(to bottom,#c1b6ae 0%,#baaca3 100%)
}

.location_item .ribbon:focus,.location_item .ribbon:hover {
    background: #5FC8C2;
    box-shadow: 0 0 2px rgba(0,0,0,0.2),inset 0 0 10px rgba(0,0,0,0.2)
}

.location_item .ribbon:focus em,.location_item .ribbon:hover em {
    color: #fff!important;
    text-shadow: none
}

.location_item .ribbon:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 0;
    border-color: transparent #A39385 transparent transparent
}

.location_item .ribbon:hover:before {
    border-color: transparent #30928C transparent transparent
}

.location_item .ribbon:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 0;
    border-color: #A39385 transparent transparent transparent
}

.location_item .ribbon:hover:after {
    border-color: #30928C transparent transparent transparent
}

.location_item .ribbon a {
    color: #fff
}

.location_item .ribbon>div {
    display: inline-block;
    width: 100%;
    height: 100%
}

.location_item .ribbon .small {
    font-weight: 600;
    padding: 0 40px 0 0;
    text-align: right;
    color: #fff!important
}

.location_item .ribbon>div>a {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    line-height: 50px
}

.location_item .ribbon>div>a * {
    display: table-cell;
    height: 100%;
    vertical-align: middle
}

.location_item .ribbon>div>a:before {
    font-family: 'Material Icons';
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 19px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    color: #fff!important
}

.location_item .ribbon .accommodation a:before {
    content: '\e7ee'
}

.location_item .ribbon .tour a:before {
    content: '\e553'
}

.location_item .ribbon .cruise a:before {
    content: '\e532'
}

.location_item .ribbon .car a:before {
    content: '\e531'
}

.full-width .home-content-sidebar .offers .one-fifth figure,.full-width .home-content-sidebar .deals .one-fifth figure,.full-width .home-content-sidebar .destinations .one-fifth figure {
    height: 160px
}

.full-width .home-content-sidebar .offers .one-fourth figure,.full-width .home-content-sidebar .deals .one-fourth figure,.full-width .home-content-sidebar .destinations .one-fourth figure {
    height: 200px
}

.full-width .home-content-sidebar .offers .one-third figure,.full-width .home-content-sidebar .deals .one-third figure,.full-width .home-content-sidebar .destinations .one-third figure {
    height: 280px
}

.full-width .home-content-sidebar .offers .one-half figure,.full-width .home-content-sidebar .deals .one-half figure,.full-width .home-content-sidebar .destinations .one-half figure {
    height: 420px
}

section .offers figure,section .deals figure,section .destinations figure {
    overflow: hidden;
    height: 85px;
    display: flex;
    align-items: center;
    background: #e9e6e0;
    border-bottom: 1px solid #52bdb8
}

.viz_item_li div figure {
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    background: #e9e6e0;
    height: 280px
}

section .offers figure a,section .offers figure img,section .deals figure a,section .deals figure img,section .destinations figure a,section .destinations figure img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

section .deals .full-width {
    padding: 0
}

.page-template-custom-search-results section .deals .full-width,.page-template-custom-search-results-php section .deals .full-width {
    padding: 0 10px
}

section .deals .full-width figure {
    float: left;
    width: 27%;
    height: 100%;
    min-height: 160px
}

section .deals .full-width figure a,section .deals .full-width figure img {
    height: 100%;
    min-height: 160px;
    width: 100%;
    max-width: none
}

section .deals .full-width .details {
    float: left;
    width: 73%;
    min-height: 160px;
    height: auto!important;
    padding-right: 150px;
    box-shadow: none
}

section .deals .full-width .details h3 {
    color: #666;
    padding: 0 65px 0 0
}

section .deals .full-width .details .stars {
    display: inline-block;
    float: none;
    position: static
}

section .deals .full-width .details .rating {
    top: 19px;
    right: 150px
}

section .deals .full-width .details .address {
    padding: 0
}

section .deals .full-width .details .description {
    padding-bottom: 0;
    margin: 13px 0 0 0;
    border-bottom: none
}

section .deals .full-width .details .price {
    position: absolute;
    top: 15px;
    right: 0;
    width: 135px;
    min-height: 130px;
    text-align: center;
    border-left: 1px solid #ccc;
    padding: 15px;
    border-top: none
}

section .deals .full-width .details .price em {
    display: inline-block;
    width: 100%;
    padding-top: 15px
}

section .deals .full-width .details .actions {
    display: inline
}

section .deals .full-width .details .gradient-button {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 105px;
    white-space: nowrap
}

section .deals .full-width .cars {
    padding-right: 15px;
    width: 73%
}

section .deals .full-width .cars .price {
    width: auto;
    height: auto;
    text-align: left;
    padding: 5px 15px;
    right: 115px;
    min-height: 0
}

section .deals .full-width .cars .price em {
    display: inline;
    width: auto;
    padding: 0 0 0 10px
}

section .deals .full-width .cars .text-wrap {
    float: left;
    width: 50%
}

section .deals .full-width .cars .gradient-button {
    position: absolute;
    right: 15px;
    top: 11px
}

/* ===== 08 Search results ===== */
.sort-by {
    height: 48px;
    background: #fff;
    display: inline-block;
    width: 100%;
    padding: 0 10px 0 15px;
    margin: 0 0 20px;
    box-shadow: var(--shadow)
}

.sort-by * {
    float: left
}

.sort-by h3 {
    padding: 0 20px 0 0;
    font-size: 16px;
    color: #858585;
    line-height: 48px
}

.sort-by li {
    position: relative
}

.sort {
    margin: 14px 0;
    border-left: 1px solid #ccc
}

.sort li {
    padding: 0 75px 0 0;
    margin: 0 0 0 20px;
    border-right: 1px solid #ccc
}

.sort li:before {
    display: none
}

.sort a {
    position: absolute;
    right: 15px;
    font-size: 0;
    width: 14px;
    height: 7px
}

.sort a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid
}

.ascending {
    top: 3px
}

.descending {
    top: 12px
}

.ascending:before {
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #b1a398 transparent
}

.ascending:hover:before,.ascending:focus:before {
    border-color: transparent transparent #5fc8c2 transparent
}

.descending:before {
    border-width: 7px 7px 0 7px;
    border-color: #b1a398 transparent transparent transparent
}

.descending:hover:before,.descending:focus:before {
    border-color: #5fc8c2 transparent transparent transparent
}

.view-type {
    margin: 10px 0 0 0;
    float: right
}

.view-type li {
    width: 28px;
    height: 28px;
    margin: 0 0 0 3px;
    background: #999;
    color: #fff;
    padding: 0;
    text-align: center;
    cursor: pointer
}

.view-type li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-indent: -99999px;
    cursor: pointer
}

.view-type li:before {
    font-family: 'Material Icons';
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 2px;
    color: #fff;
    line-height: 28px
}

.view-type .active {
    background: #5fc8c2
}

.view-type .grid-view:before {
    content: "\e8f0"
}

.view-type .list-view:before {
    content: "\e8ef"
}

/* ===== 09 Single ===== */
aside h1 {
    padding: 0;
    color: #555!important
}

aside .address {
    width: 100%;
    color: #858585
}

aside .description {
    padding: 15px 0
}

aside .description p {
    padding: 0
}

.tags {
    border-top: 1px solid #ccc;
    padding: 18px 0 0;
    margin: 0 0 15px;
    width: 100%
}

.tags ul {
    position: relative;
    width: 104%;
    overflow: hidden;
    margin: 0
}

.tags li {
    position: relative;
    float: left;
    display: block;
    margin: 0 5px 5px 0;
    padding: 0 10px 0 20px;
    background: #DFDCD1;
    height: 30px;
    line-height: 30px;
    border-radius: 15px 2px 2px 15px;
    box-shadow: 0 1px 0 #C1BBA8;
    transition: var(--transition)
}

.tags li:before {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 11px;
    left: 7px;
    border-radius: 4px;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,.3)
}

.tags li a {
    color: #454545!important
}

.leave-review,.contact-accommodation,.contact-tour,.contact-car_rental,.contact-cruise {
    width: 100%;
    height: 50px;
    padding: 10px 18px!important;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer
}

.contact-accommodation,.contact-tour,.contact-car_rental,.contact-cruise {
    margin-top: 10px
}

.room-types {
    margin: 0;
    display: inline-block;
    width: 100%;
    padding: 0 10px 5px
}

.room-types li {
    float: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin: 0 0 30px;
    padding: 0 0 30px
}

.room-types li:last-of-type {
    border-bottom: none;
    margin: 0;
    padding: 0
}

.room-types li figure {
    position: relative;
    width: 42%;
    height: auto;
    overflow: hidden;
    max-height: 162px;
    float: left
}

.room-types img {
    margin: 0
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition)
}

.image-overlay:before {
    content: "\e8ff";
    font: normal 36px/80px 'Material Icons';
    text-align: center;
    color: #fff;
    background: rgba(95,200,194,0.9);
    width: 80px;
    height: 80px;
    border-radius: 40px;
    position: absolute;
    top: 41px;
    left: 34%
}

.image-overlay:hover {
    opacity: 1
}

.tab-content .room-types .meta h3 {
    font: 700 15px/1.2 var(--font-family);
    color: #3FAEA9;
    padding: 0 0 10px
}

.tab-content .room-types .meta {
    float: left;
    width: 34.5%;
    padding: 0 20px;
    min-height: 152px
}

.tab-content .meta .text-wrap,.tab-content .more-information .text-wrap {
    padding: 0
}

.room-types li .meta p {
    padding: 0 0 11px
}

.room-types .more-info {
    font-size: 13px;
    font-weight: 600;
    color: #3f3f3f;
    text-decoration: none
}

.room-information {
    float: right;
    border-left: 1px solid #ccc;
    padding: 3px 0 0 20px;
    width: 23.5%;
    height: 163px;
    position: relative
}

.room-information>div {
    padding: 0 0 10px;
    line-height: 18px
}

.room-information .second {
    float: right
}

.room-information i {
    color: #B8ACA4;
    font-size: 18px;
    float: left;
    margin-left: -3px
}

.room-information .material-icons-small {
    font-size: 13px;
    margin-top: 4px
}

.room-information .price {
    font-size: 16px;
    float: right
}

.room-information .gradient-button {
    position: absolute;
    right: 0;
    bottom: 0
}

.more-information {
    float: left;
    display: block;
    width: 100%;
    margin: 20px 0 0
}

.more-information p>span {
    font-weight: 600;
    padding-right: 5px;
    color: #3f3f3f
}

.booking_form_controls {
    display: inline-block;
    width: 100%
}

.room-types .booking_form_controls {
    padding-top: 20px
}

.three-col {
    display: inline-block;
    width: 100%;
    margin: 0
}

.three-col li {
    float: left;
    width: 33.3333%
}

.three-col li:before {
    color: #BBADA4
}

.lSSlideOuter {
    margin: 0 0 20px;
    max-width: 100%;
    float: left;
    width: 100%;
    display: block
}

.lightSlider li {
    text-align: center;
    overflow: hidden;
    padding: 0
}

.lightSlider li:before {
    display: none
}

.lightSlider img {
    height: auto;
    display: inline;
    margin: 0 auto;
    max-width: initial;
    height: 100%;
    min-height: 582px;
    max-height: 582px
}

.inner-nav {
    float: left;
    display: block;
    width: 21.4%;
    position: relative;
    z-index: 50;
    z-index: 1
}
.inner-nav.new{
    float: none;
    display: flex;
    width: 100%;
}
.inner-nav.new ul{
    display: flex;
    gap: 10px;
    width: 100%;
}
.inner-nav.new ul li{
    width: auto !important;
    height: auto;
    margin: 0;
}
.inner-nav.new ul li a{
    padding: 10px 20px;
    float: none;
    line-height: normal;
}
.inner-nav.new ul li a::after{
	content:none;
}
.inner-nav li {
    padding: 0!important;
    float: left;
    display: block;
    height: 42px;
    width: 100%;
    margin: 0 0 1px;
    font-size: 14px;
    font-weight: 600;
    line-height: 42px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.15);
    background: linear-gradient(to bottom,#c1b6ae 0%,#baaca3 100%);
    transition: all 0.3s linear
}

.inner-nav li a {
    float: left;
    display: block;
    color: #fff;
    padding: 0 0 0 41px;
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: 600;
    outline: none;
}

.inner-nav li:hover {
    background: #5FC8C2
}

.inner-nav li.active,.inner-nav li.active:hover,.inner-nav li.current-menu-item,.inner-nav li.current-menu-item:hover {
    background: #5FC8C2;
    width: 110%
}

.inner-nav li.active a:after,.inner-nav li.current-menu-item a:after {
    content: "";
    position: absolute;
    top: 0;
    right: -21px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21px 0 21px 21px;
    border-color: transparent transparent transparent #5FC8C2
}

.inner-nav li a:before {
    font-family: 'Material Icons';
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 10px
}

.inner-nav .availability a:before {
    content: "\e878"
}

.inner-nav .description a:before {
    content: "\e88f"
}

.inner-nav .facilities a:before {
    content: "\e87a"
}

.inner-nav .location a:before,.inner-nav .map a:before {
    content: "\e55f"
}

.inner-nav .things-to-do a:before,.inner-nav .locations a:before {
    content: "\e553"
}

.inner-nav .reviews a:before {
    content: "\e8dc"
}

.single-location .inner-nav li a,.page-template-page-user-submit-content .inner-nav li a,.page-template-page-user-submit-content-php .inner-nav li a,.page-template-page-user-content-list .inner-nav li a,.page-template-page-user-content-list-php .inner-nav li a,.page-template-page-user-account .inner-nav li a,.page-template-page-user-account-php .inner-nav li a {
    padding-left: 21px
}

.tab-content {
    float: right;
    width: 76.4%;
    overflow: hidden
}
.tab-content.new{
    width: 100%;
    float: none;
    border-top: 2px solid #5fc8c2;
    padding: 0;
    margin: 0;
}

.tab-content article {
    float: left;
    width: 100%;
    padding: 15px 10px 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    font-size: 13px
}

.tab-content h2 {
    color: #B1A398;
    padding: 0 0 10px;
    margin: 0 0 20px;
    text-indent: 0;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%
}

.tab-content h2 a,.tab-content h3 a {
    color: #B1A398
}

.tab-content h3 {
    color: #1e6965;
    padding: 10px 0 5px
}

.tab-content h2 a:hover,.tab-content h2 a:focus,.tab-content h3 a:hover,.tab-content h3 a:focus {
    color: #41afaa
}

.tab-content h4 {
    color: #41afaa;
    padding: 0 0 15px;
    font-family: var(--font-family);
    font-size: 15px
}

#location.tab-content article,#map.tab-content article {
    padding: 15px
}

#things-to-do img {
    margin: 0 0 20px
}

#things-to-do article h2 {
    padding: 0 0 10px
}

.text-wrap {
    padding: 0 10px 30px;
    display: inline-block;
    width: 100%
}

.text-wrap h2 {
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
    display: block
}

.text-wrap table {
    margin: 0
}

.text-wrap tbody:empty,.text-wrap tfoot:empty {
    display: none
}

.booking_form_controls .dates_row {
    padding-bottom: 3px
}

.extraitems th:first-child,.extraitems td:first-child {
    width: 40%;
    text-align: left
}

.extraitems th,.extraitems td {
    text-align: center
}

.extraitems td>span {
    font-weight: 600;
    display: inline-block;
    width: 100%
}

.extraitems i {
    font-style: normal;
    color: #666
}

.extraitems em {
    font-style: normal;
    font-weight: 700;
    font-size: 15px
}

.summary th {
    width: 40%
}

.total_price,.reservation_total,.extra_items_total {
    font-weight: 700;
    font-size: 15px
}

.show_breakdown {
    color: #666;
    padding: 15px 0;
    display: inline-block;
    float: right
}

.score {
    float: left;
    width: 35%;
    text-align: center;
    padding: 0 30px 0 10px
}

.score span {
    font-size: 55px;
    letter-spacing: -0.1em;
    color: #b1a398;
    line-height: 60px
}

.score .achieved {
    color: #666;
    font-weight: 700;
    margin-left: -10px
}

.score .info {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 0 0
}

.score .disclaimer {
    border-top: 1px solid #ccc;
    width: 100%;
    padding: 10px 10px 0;
    margin: 12px 0 0;
    font-size: 12px;
    text-align: left
}

.chart {
    float: right;
    width: 65%;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    color: #fff;
    margin: 5px 0 0
}

.chart dt {
    position: relative;
    z-index: 5;
    float: left;
    margin: 0 0 0 10px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.1)
}

.chart dd {
    position: relative;
    height: 25px;
    margin: 0 0 1px;
    border-radius: 0 15px 15px 0;
    background: #E9E6E0
}

.chart dd span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    text-align: right;
    height: 100%;
    background: #5FC8C2;
    border-radius: 0 15px 15px 0
}

.reviews {
    margin: 5px 0 0;
    display: inline-block;
    width: 100%
}

.reviews li {
    float: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin: 0 0 20px;
    padding: 0 0 20px
}

.reviews li:before {
    display: none
}

.reviews li.last {
    border-bottom: none;
    margin: 0;
    padding: 0
}

.reviews li figure {
    padding-right: 20px;
    width: 35%
}

.reviews li figure img {
    float: left;
    margin-right: 15px
}

.reviews address {
    font-size: 11px;
    font-style: normal
}

.reviews address span {
    font-size: 12px;
    font-weight: 600
}

.reviews .rev {
    position: relative;
    padding: 0 0 20px 32px;
    display: table;
    width: 65%;
    float: right
}

.reviews .rev:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    float: left;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 11px;
    color: #fff
}

.reviews .pro:before {
    content: "+";
    background: #43a047
}

.reviews .con:before {
    content: "-";
    background: #E14242;
    line-height: 18px;
    font-size: 21px;
    font-weight: 700
}

.reviews p {
    padding: 0
}

.review-form table th,.review-form table td {
    text-align: center
}

.review-form table th:first-child,.review-form table td:first-child {
    text-align: left
}

.review-form table td .radio {
    float: none;
    margin: 0 auto
}

.single-car_rental .tab-content#description .text-wrap div {
    border-bottom: 1px solid #ccc;
    font-weight: 700;
    padding: 10px 0;
    width: 100%
}

.single-car_rental .tab-content#description .text-wrap div span {
    display: inline-block;
    font-weight: 400;
    min-width: 30%;
    padding-right: 10px
}

.booking-commands {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 20px
}

.booking-commands a:last-of-type,.booking-commands input[type="submit"] {
    float: right
}

.booking-commands .cancel-accommodation-booking {
    float: left!important
}

.booking {
    float: left;
    display: block;
    background: #fff;
    padding: 13px 20px 20px;
    width: 100%;
    margin: 0 0 20px;
    box-shadow: var(--shadow)
}

.booking h3 {
    font-size: 20px;
    color: #B1A398;
    padding: 0 0 10px;
    margin: 0 0 20px;
    text-indent: 10px;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%
}

.output p {
    padding: 0
}

.totals .output {
    margin: 0 0 5px
}

.totals .output:last-of-type {
    margin: 0 0 50px
}

/* ===== 10 Contact ===== */
.ico {
    position: relative;
    padding: 5px 0 5px 30px;
    font-weight: 600;
    margin: 0
}

.ico a {
    color: var(--dark-text)
}

.ico:before {
    font-family: 'Material Icons';
    font-size: 21px;
    position: absolute;
    top: 0;
    left: 0;
    color: #5FC8C2;
    font-weight: 400
}

.ico-phone:before {
    content: "\e0cd"
}

.ico-email:before {
    content: '\e0be'
}

/* ===== 11 Maps ===== */
.map-wrap {
    width: 100%;
    padding: 15px;
    background: #fff;
    box-shadow: var(--shadow)
}

.gmap {
    border: 1px solid #ccc;
    display: block;
    width: 100%;
    height: 550px
}

.gmap * {
    box-sizing: content-box
}

.infoBox {
    background: #5FC8C2;
    font-size: 14px;
    margin: -100px 0 0 50px;
    display: inline-block;
    padding: 15px 15px 20px;
    color: #fff;
    width: 200px!important;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3)
}

.infoBox:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 45%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #5FC8C2 transparent transparent transparent
}

.gmap strong {
    font-size: 15px;
    padding: 0 0 10px;
    margin: 0 0 13px;
    display: inline-block;
    width: 100%;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 1px 0 rgba(255,255,255,0.2)
}

#map_canvas img {
    max-width: none
}

#map_canvas label {
    width: auto;
    display: inline
}

.gm-style div,.gm-style span,.gm-style label,.gm-style a {
    font-family: Arial,Helvetica,sans-serif!important
}

/* ===== 12 Blog ===== */
.single .static-content,.entry-featured {
    margin-bottom: 20px
}

.req {
    position: absolute;
    color: #858585
}

.entry-meta span {
    position: relative;
    padding: 0 20px
}

.entry-meta span:before {
    font: 15px 'Material Icons';
    color: #b9aca4;
    position: absolute;
    top: 0;
    left: 0
}

.entry-meta .date:before {
    content: '\e8df'
}

.entry-meta .author:before {
    content: '\e7fd'
}

.entry-meta .categories:before {
    content: '\e2c7'
}

.entry-meta .tags:before {
    content: '\e89a'
}

.entry-meta .comments:before {
    content: '\e0bf'
}

.entry-meta span:empty {
    display: none
}

.entry-meta span a {
    color: #454545;
    font-weight: 400
}

.entry-meta span a:hover,.entry-meta span a:focus {
    color: #41AFAA
}

div.comments {
    display: inline-block;
    width: 100%
}

div.comments h2 {
    padding: 25px 0 40px
}

.comment {
    position: relative;
    background: #fff;
    padding: 15px;
    margin: 0 0 20px;
    display: inline-block;
    width: 100%;
    box-shadow: var(--shadow)
}

.comment .third {
    float: left;
    width: 30%
}

.comment .third figure {
    float: left;
    margin-right: 15px
}

.comment .third address {
    color: #858585;
    padding-top: 5px
}

.comment .third address span {
    font-weight: 600;
    font-style: normal
}

.comment .comment-content {
    float: left;
    width: 70%;
    min-height: 70px;
    height: 100%;
    border-left: 1px solid #ccc;
    padding-left: 15px
}

.comment .reply {
    position: absolute;
    top: 15px;
    right: 15px
}

.comments .children {
    margin: 0;
    padding-left: 100px
}

.entry-header h2 a {
    color: #555
}

.entry-header h2 a:hover,.entry-header h2 a:focus {
    color: #41AFAA
}

/* ===== 13 Error page ===== */
section.error {
    padding-top: 50px;
    display: inline-block;
    width: 100%
}

section.error .one-third {
    text-align: center
}

.error-type {
    display: inline-block;
    width: 270px;
    height: 270px;
    max-width: 100%;
    text-align: center;
    color: #40BFB8;
    border-radius: 135px;
    border: 1px solid #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    background: linear-gradient(to bottom,#fff 0%,var(--gray-light) 100%)
}

.error-type h1 {
    font-size: 96px;
    color: #40BFB8;
    padding: 38px 0 0;
    margin: 0 0 -13px;
    text-shadow: 0 1px 0 rgba(255,255,255,1)
}

.error-type p {
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255,255,255,1)
}

.error-content {
    display: inline-block;
    padding: 60px 0 0 70px;
    color: #3F3F3F
}

.error-content ul li:before {
    color: #666
}

.error-content a {
    color: #3F3F3F
}

/* ===== 14 Footer ===== */
footer {
    float: left;
    width: 100%;
    background: #fff;
    z-index: 999;
    /* box-shadow: 0 0 2px rgba(0,0,0,0.2); */
}

.footer-sidebar {
    border-bottom: 1px solid #ccc;
    display: inline-block;
    padding-bottom: 20px
}

footer .full-width {
    margin: 18px 0 20px
}

.copy {
    color: #858585;
    display: block;
    padding: 0
}

footer .full-width nav {
    float: right
}

footer .full-width nav li {
    float: left;
    border-left: 1px solid #e5e5e5;
    padding: 0 0 0 12px;
    margin: 0 0 0 12px
}

footer .full-width nav li a {
    color: #858585;
    font-weight: 400
}

footer .full-width nav li a:hover,footer .full-width nav li a:focus {
    color: #3f3f3f
}

footer .full-width nav li:first-child {
    border: none
}

footer h6 {
    font-size: 18px;
    color: #999;
    padding: 23px 0 18px
}

footer .details {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0
}

/* ===== 15 Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
    left: 0
}

.lb-wrap {
    text-align: left;
    color: rgba(0,0,0,.8);
    position: absolute;
    top: 10%;
    left: 35%;
    width: 30%;
    background: #5FC8C2;
    padding: 15px 20px;
    box-shadow: 0 0 3px rgba(0,0,0,.4)
}

.lb-wrap .close {
    float: right;
    color: #fff;
    font-size: 17px
}

.lb-wrap h2 {
    color: #fff;
    font-size: 18px;
    padding: 0 0 10px
}

.lb-wrap .one-half {
    width: 100%!important
}

.lb-wrap input,.lb-wrap div.checker span {
    border-color: rgba(0,0,0,.3)!important
}

.lb-wrap div.checker span.checked::before {
    color: #666
}

.lb-wrap a {
    color: #fff
}

.lb-wrap p {
    display: inline-block;
    width: 100%;
    font-weight: 600;
    margin: 0 0 20px;
    padding: 12px 0 13px;
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(0,0,0,.15);
    box-shadow: 0 1px 0 rgba(255,255,255,.2),0 -1px 0 rgba(0,0,0,.15)
}

.lb-wrap .gradient-button {
    width: 100%;
    background: rgba(0,0,0,.4)!important;
    height: 38px;
    line-height: 38px
}

.lb-wrap .gradient-button:hover,.lb-wrap .gradient-button:focus {
    background: rgba(0,0,0,.6)!important
}

/* ===== 16 Form elements ===== */
label {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding: 0 0 5px 1px;
    display: inline-block
}

.checkbox label,.radio label {
    text-transform: none;
    font-size: 13px;
    width: auto;
    padding: 1px 0px 0px 20px;
    max-width: 100%;
    font-weight: 400
}

label span {
    text-transform: none
}

input,textarea {
    outline: none
}

button,input,select,textarea {
    /* margin: 0; */
    /* vertical-align: baseline; */
    /* outline: none; */
    /* box-shadow: none; */
    transition: all 0.2s ease-in
}

input[type="checkbox"],input[type="radio"] {
    box-sizing: border-box;
    width: 15px;
    height: 15px
}

input[type="search"] {
    -webkit-appearance: textfield
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

input[type="search"],input[type="email"],input[type="text"],input[type="number"],input[type="password"],input[type="tel"],input[type="url"],input[type="date"],textarea {
    display: block;
    padding: 8px 10px;
    width: 100%;
    border: 1px solid #ccc;
    color: #454545;
    border-radius: 10px;
    text-align: left;
    font-size: 16px;
    color: #777;
    padding: 10px;
    font-size: 16px;
    background: #fff;
    display: block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transition: all 0.5s ease;
    max-width: 262px;
    font-weight: 600;
    border-color: #10daff
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

textarea {
    resize: none;
    height: 125px
}

input[type="text"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="password"]:focus,input[type="tel"]:focus,input[type="url"]:focus,input[type="date"]:focus,textarea:focus,div.selector.active,div.selector.focus,input.uniform-input.active,select.uniform-multiselect.active,textarea.uniform.active,input.uniform-input.focus,select.uniform-multiselect.focus,textarea.uniform.focus {
    border-color: #454545
}

input[type="file"] {
    border: 1px solid #ccc;
    color: #454545;
    padding: 6px;
    margin: 5px 0;
    border-radius: 15px
}

.one-fourth input[type="submit"].gradient-button {
    margin: 0
}

input.error,textarea.error {
    border-color: red!important
}

label.error {
    color: red!important;
    padding: 5px 0 0
}

div.error p,p.error {
    color: red!important
}

textarea:invalid {
    outline: none;
    box-shadow: none
}

p.success {
    color: #2DB200!important
}

.datepicker-wrap {
    position: relative;
    display: inline-block;
    width: 100%
}

.ui-datepicker-trigger {
    position: absolute;
    top: 10px;
    right: 10px
}

/* ===== 17 FrontEnd Submit Content ===== */
.wp-editor-container {
    border: 1px solid #ddd
}

.mce-tinymce button,.mce-tinymce button:hover,.mce-tinymce button:focus {
    background: none!important;
    text-shadow: none!important
}

.wp-switch-editor {
    color: #555!important;
    background: #ebebeb!important;
    text-shadow: none!important;
    border: 1px solid #e5e5e5;
    padding: 3px 8px 4px!important;
    border-radius: 0;
    text-transform: none
}

.mce-toolbar .mce-btn button,.qt-dfw {
    padding: 2px 3px!important;
    border-radius: 0;
    text-transform: none;
    text-shadow: none!important
}

.html-active .switch-html,.tmce-active .switch-tmce {
    background: #f5f5f5!important;
    border-bottom-color: #f5f5f5;
    color: #555!important;
    text-shadow: none!important
}

.wp-core-ui .quicktags-toolbar input.button.button-small {
    color: #555!important;
    text-shadow: none!important
}

.fes-input-wrapper {
    padding: 0 0 30px
}

.fes-inner-wrapper .fes-input-wrapper:last-of-type {
    padding: 0
}

.fes-input-wrapper>label,.fes-input-wrapper .checkbox-wrapper>label {
    padding: 0;
    display: inline-block;
    width: 100%
}

.fes-input-wrapper input[type="text"],.fes-input-wrapper .selector,.fes-input-wrapper textarea,.fes-input-wrapper input[type="file"] {
    margin-top: 7px;
    width: 100%;
    display: block;
    font-weight: 400
}

.fes-input-wrapper label small {
    font-weight: 400;
    font-size: 11px
}

.checkbox-option-wrapper {
    display: inline-block;
    width: 100%
}

.checkbox-option-wrapper label {
    line-height: 24px;
    font-weight: 400
}

.checkbox-wrapper {
    display: inline-block;
    width: 100%;
    padding: 5px 0 0
}

.checkbox-wrapper .checkbox-option-wrapper {
    float: left;
    width: 50%;
    padding: 10px 0 5px
}

.fes-input-wrapper .ui-datepicker-trigger {
    top: 36px
}

#wp-link {
    text-align: left
}

#wp-link p.howto {
    padding: 0
}

#wp-link label {
    position: static;
    cursor: initial;
    width: 100%;
    text-align: left!important
}

#wp-link label span {
    text-align: left!important
}

#wp-link .checker span {
    max-width: 100%!important;
    width: 24px!important
}

.query-results li:before,.link-target>label>span {
    display: none!important
}

#wp-link-close {
    color: #666!important;
    padding: 0!important
}

.myreviews .score {
    padding: 0;
    width: 25%
}

.myreviews .reviews {
    width: 75%
}

.page-template-page-user-account .full-width>h1,.page-template-page-user-account-php .full-width>h1,.page-template-page-user-content-list .full-width>h1,.page-template-page-user-content-list-php .full-width>h1,.single-location .full-width>h1 {
    padding-left: 0;
    padding-right: 0
}

.mysettings th,.b-info th {
    width: 30%
}

.b-info .gradient-button {
    float: right;
    margin-left: 10px
}

.mysettings .settings .gradient-button {
    margin: 15px 10px 0 0
}

.tab-content .filter {
    background: #fff;
    padding: 20px;
    width: 100%;
    margin: 0 0 20px;
    box-shadow: var(--shadow)
}

.tab-content .filter .selector {
    width: 70%!important;
    max-width: 100%;
    margin-left: 15px
}

.page-template-page-user-content-list #room-list article {
    padding: 0;
    background: none
}

.page-template-page-user-content-list .room-types {
    padding: 0
}

.page-template-page-user-content-list .room-types li {
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
    border: none;
    background: #fff;
    box-shadow: var(--shadow)
}

.page-template-page-user-content-list .room-types li figure {
    height: 160px;
    width: 27%
}

.page-template-page-user-content-list .room-types li figure img {
    height: 100%;
    max-width: none;
    width: 100%
}

.page-template-page-user-content-list .room-types .meta {
    width: 50%
}

.page-template-page-user-content-list .room-types .room-information {
    width: 23%;
    height: 120px;
    margin-top: 20px;
    padding: 0 20px
}

.page-template-page-user-content-list .room-types li h3 {
    padding-top: 20px!important
}

.page-template-page-user-content-list .room-types li .more-information {
    padding: 0 20px
}

.page-template-page-user-content-list .room-types li .gradient-button {
    right: auto;
    left: 20px;
    width: 105px
}

.button-delete {
    background: #b1a398!important
}

.button-delete:hover,.button-delete:focus {
    background: #888!important
}

.b-info td form {
    display: inline
}

/* ===== 18 Plugins ===== */
/* ===== 18.1 Uniform Custom Form Elements ===== */
div.selector,div.selector span,div.checker span,div.radio span,div.uploader,div.uploader span.action,div.button,div.button span {
    text-align: left;
    -webkit-font-smoothing: antialiased;
    transition: all 0.2s ease-in
}

div.selector,div.checker,div.button,div.radio,div.uploader {
    display: inline-block;
    zoom:1;vertical-align: middle
}

div.selector:focus,div.checker:focus,div.button:focus,div.radio:focus,div.uploader:focus {
    outline: 0
}

div.selector,div.selector *,div.radio,div.radio *,div.checker,div.checker *,div.uploader,div.uploader *,div.button,div.button * {
    cursor: pointer;
    margin: 0;
    padding: 0;
    transition: all 0.2s ease-in
}

input.uniform-input,select.uniform-multiselect,textarea.uniform {
    padding: 8px 10px;
    border: 1px solid #ccc
}

div.checker input,input[type="search"],input[type="search"]:active {
    -moz-appearance: none;
    -webkit-appearance: none
}

div.selector {
    border: 1px solid #ccc;
    line-height: 35px;
    height: 38px;
    position: relative;
    overflow: hidden;
    width: 100%!important;
    padding-left: 15px;
    background: #fff;
    border-radius: 18px
}

div.selector span {
    position: relative;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    height: 38px;
    line-height: 35px;
    background: none;
    cursor: pointer;
    width: 100%!important;
    padding-right: 30px;
    border-radius: 18px
}

div.selector span:before {
    font-family: 'Material Icons';
    content: "\e313";
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 23px;
    color: #B8ACA4
}

div.selector select {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    height: 37px;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 18px
}

div.checker {
    position: relative;
    top: 0;
    margin-right: 15px;
    float: left
}

div.checker,div.checker span,div.checker input {
    width: 24px;
    height: 24px
}

div.checker span {
    display: inline-block;
    zoom:1;text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
    border-radius: 3px
}

div.checker span.checked:before {
    font: bold 17px 'Material Icons';
    content: "\e5ca";
    position: absolute;
    top: 1px;
    left: 2px;
    color: #B8ACA4
}

div.checker input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: inline-block;
    zoom:1}

div.radio {
    position: relative;
    top: 0;
    margin-right: 15px;
    float: left
}

div.radio,div.radio span,div.radio input {
    width: 24px;
    height: 24px
}

div.radio span {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    zoom:1;text-align: center
}

div.radio span.checked:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #B8ACA4;
    border-radius: 6px;
    position: absolute;
    top: 5px;
    left: 5px
}

div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: inline-block;
    zoom:1;text-align: center
}

/* ===== 18.2 Mega menu ===== */
#mega-menu-wrap-primary-menu #mega-menu-primary-menu {
    width: 1280px;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px
}

/* ===== 18.3 UI Slider ===== */
.ui-slider-horizontal {
    height: 8px;
    border: 1px solid #ccc;
    position: relative;
    border-radius: 3px;
    margin: 0 12px
}

.ui-slider-horizontal .ui-slider-handle {
    cursor: pointer;
    background: #5fc8c2;
    width: 24px;
    height: 24px;
    position: absolute;
    top: -9px;
    margin-left: -12px;
    border-radius: 12px;
    box-shadow: 1px 1px 2px 1px rgba(0,0,0,.2),0 0 10px rgba(0,0,0,0.3) inset
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: #ccc;
    border-radius: 3px
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.user_rating span {
    padding-top: 8px;
    display: inline-block
}

.user_rating span.max {
    float: right
}

/* ===== 18.4 UI Datepicker ===== */
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0
}

.ui-datepicker a {
    transition: none
}

.ui-datepicker {
    width: 22em;
    padding: 0;
    display: none;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2)
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 5px 0;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom: none
}

.ui-icon {
    position: absolute;
    font-size: 0;
    cursor: pointer;
    z-index: 999
}

.ui-icon:before {
    text-indent: 0;
    position: relative;
    top: 0;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    color: #B9ACA4;
    font-size: 30px;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga'
}

.ui-datepicker-multi-2 .ui-icon:before {
    top: 183px;
    font-size: 40px;
    color: #666
}

.ui-icon-circle-triangle-w:before {
    content: '\e314'
}

.ui-icon-circle-triangle-e:before {
    content: '\e315'
}

.ui-datepicker-prev,.ui-datepicker-next {
    position: absolute;
    cursor: pointer;
    top: 6px
}

.ui-datepicker-prev {
    left: 0
}

.ui-datepicker-next {
    right: 29px
}

.ui-datepicker .ui-datepicker-title {
    margin: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #B9ACA4
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month-year {
    width: 100%
}

.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year {
    width: 49%
}

.ui-datepicker table {
    width: 100%;
    font-size: 12px;
    border-collapse: collapse;
    margin: 0
}

.ui-datepicker th {
    padding: 0;
    text-align: center;
    background: #b9aca4;
    border-color: #b9aca4;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    width: 14.2857%
}

.ui-datepicker th span {
    padding: 7px 0;
    display: inline-block;
    width: 100%;
    height: 100%
}

.ui-datepicker td {
    padding: 0;
    text-align: center;
    width: 14.2857%;
    font-weight: 600;
    vertical-align: middle
}

.ui-datepicker td span,.ui-datepicker td a {
    text-align: center;
    width: 100%;
    height: 33px;
    line-height: 33px;
    color: #454545;
    display: inline-table;
    font-weight: 600
}

.ui-datepicker .ui-datepicker-unselectable {
    background: #e9e6e0
}

.ui-datepicker .ui-datepicker-today {
    background: #b9aca4
}

.ui-datepicker-multi-2 .ui-state-hover,.ui-datepicker-multi-2 .dp-highlight a {
    background: #43a047!important;
    color: #fff
}

.ui-datepicker-multi-2 .dp-highlight span,.ui-datepicker-multi-2 .dp-highlight-selected span {
    background: #ffa000!important;
    color: #fff
}

.ui-datepicker .ui-state-hover,.ui-datepicker .dp-highlight a,.ui-datepicker .dp-highlight span {
    background: var(--primary-gradient);
    color: #fff!important
}

.calendar .f-item>label {
    padding: 0 10px 20px 10px
}

.ui-datepicker-inline {
    width: 100%!important;
    box-shadow: none
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    float: left;
    width: 50%!important;
    padding: 0 10px
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    margin: 0 0 20px
}

.ui-datepicker-multi-2 .ui-datepicker .ui-datepicker-header {
    position: static
}

.ui-datepicker-multi-2 .ui-datepicker-prev {
    left: -37px
}

.ui-datepicker-multi-2 .ui-datepicker-next {
    left: auto;
    right: 3px
}

.ui-datepicker-multi-2 td {
    height: 37px
}

.ui-datepicker-multi-2 td span,.ui-datepicker-multi-2 td a {
    padding: 0;
    line-height: 37px
}

.calendar-colors .f-item {
    text-align: center
}

.calendar-colors .f-item>div {
    display: inline-block;
    padding: 0 27px
}

.calendar-colors .f-item>div>span {
    width: 20px;
    height: 20px;
    float: left;
    border: 1px solid #ccc;
    margin: 0 10px 0 0
}

.f-item .available span {
    background: #43a047
}

.f-item .unavailable span {
    background: #e9e6e0
}

.f-item .selected span {
    background: #ffa000
}

.f-item .today span {
    background: #b9aca4
}

.availability_text p {
    padding: 0
}

.booking_terms {
    padding: 0 10px 21px
}

.booking_terms>div {
    display: inline-block;
    width: 100%;
    background: #f7f7f7;
    color: #333;
    border: 1px solid #ccc;
    padding: 15px 15px 0
}

.booking_terms p {
    display: inline-block;
    width: 100%
}

.booking_terms p>span {
    width: 50%;
    float: left;
    display: block
}

/* ===== 18.5 WooCommerce ===== */
.woocommerce-page ul.products li.product.one-third {
    width: 31.5%;
    margin: 0 2.5% 20px 0
}

.woocommerce-page ul.products li.product.last {
    margin-right: 0
}

.woocommerce .full-width>h1 {
    padding-left: 0;
    padding-right: 0
}

.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button {
    color: #fff!important;
    font-size: 11.5px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    height: 32px;
    padding: 0 18px!important;
    text-align: center;
    display: inline-block;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
    border-radius: 17px;
    background: var(--primary-gradient);
    cursor: pointer;
    box-shadow: inset 0 0 1px rgba(0,0,0,.3)
}

.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover,.woocommerce #respond input#submit:focus,.woocommerce a.button:focus,.woocommerce button.button:focus,.woocommerce input.button:focus {
    color: #fff!important;
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    background: var(--primary-gradient-hover)
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    height: 50px;
    line-height: 50px;
    border-radius: 5px
}

.woocommerce table.shop_table,.woocommerce table.shop_table td,.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th {
    border-color: #ccc
}

.woocommerce-cart table.cart th,.woocommerce-cart table.cart td {
    text-align: center
}

.woocommerce-cart table.cart th.product-name,.woocommerce-cart table.cart td.product-name {
    text-align: left
}

.woocommerce table.shop_table {
    border-collapse: collapse!important;
    border-radius: 0
}

.woocommerce table.shop_table td {
    padding: 10px 12px
}

.woocommerce-cart table.cart .product-thumbnail {
    width: 120px;
    text-align: center
}

.woocommerce-cart table.cart img {
    width: 120px
}

.woocommerce table.shop_table .product-subtotal {
    font-weight: 700
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    padding: 8px 10px;
    min-width: 212px;
    border-color: #ccc
}

.woocommerce .quantity .qty {
    width: 60px;
    margin: 0 auto
}

.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register {
    border-color: #ccc;
    border-radius: 0
}

.woocommerce form.checkout_coupon .form-row-last input {
    margin-top: 3px
}

.woocommerce .woocommerce-error,.woocommerce .woocommerce-info,.woocommerce .woocommerce-message {
    background: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc
}

.woocommerce .woocommerce-error a,.woocommerce .woocommerce-info a,.woocommerce .woocommerce-message a {
    color: #454545
}

.woocommerce-error li:before {
    display: none
}

.woocommerce-password-strength {
    margin-top: 10px;
    width: 200px
}

.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea {
    line-height: inherit
}

.woocommerce form .form-row textarea {
    height: 8em
}

.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1,.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2 {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 0 0 20px;
    margin: 0 0 40px
}

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 20px
}

.woocommerce form .form-row .select2-container {
    line-height: 40px
}

.select2-drop {
    text-align: left
}

.select2-results li {
    padding: 0 5px
}

.select2-results li:before {
    display: none
}

.woocommerce-checkout-review-order-table {
    float: left;
    width: 70%!important
}

.woocommerce-checkout-review-order-table tfoot th,.order_details tfoot th {
    background: #fff;
    text-align: right;
    font-weight: 400!important
}

.customer_details th {
    background: #fff;
    font-weight: 400
}

.woocommerce-checkout-payment {
    float: right;
    width: 25%;
    border-radius: 0
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none;
    padding: 0
}

.payment_methods li {
    padding: 15px 15px 0 15px;
    border-bottom: 1px solid #ccc
}

.payment_methods li:before {
    display: none
}

.payment_methods li label {
    padding: 0 0 15px;
    max-width: 85%
}

.woocommerce-checkout #payment {
    border: 1px solid #ccc;
    background: #fff
}

.woocommerce-checkout #payment input[type="checkbox"],.woocommerce-checkout #payment input[type="radio"] {
    width: auto;
    height: auto
}

.woocommerce-checkout #payment div.payment_box {
    background: #dfdcde;
    margin: 0 -15px;
    padding: 20px;
    width: auto
}

.woocommerce-checkout #payment div.payment_box:after {
    display: none
}

.woocommerce-checkout #payment div.payment_box p {
    padding: 0
}

.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
    text-align: right;
    line-height: normal;
    padding: 5px 0 0 10px
}

.woocommerce-checkout #payment .payment_method_paypal img {
    max-height: 32px;
    display: inline
}

.woocommerce #payment .place-order {
    margin: 0
}

.woocommerce #payment #place_order {
    padding: 20px;
    width: 100%
}

.woocommerce .order_details {
    margin: 20px 0 35px
}

.woocommerce .order_details li {
    padding: 0 20px 0 0;
    font-size: 13px
}

.woocommerce .order_details li:before {
    display: none
}

.woocommerce .order_details li.total {
    background: none
}

.woocommerce .order_details li strong {
    font-size: 15px
}

.woocommerce .customer_details,.woocommerce .customer_details * {
    border: none!important;
    padding: 0 0 10px!important;
    color: #34394a!important
}

.widget_shopping_cart_content .empty {
    padding: 20px!important
}

.price_slider {
    margin: 0 8px
}

.price_slider_amount {
    padding: 20px 0
}

.price_label {
    float: right
}

.widget .product-categories {
    margin-top: -15px
}

.widget .product-categories li {
    border-bottom: 1px solid #ccc;
    padding: 8px 0
}

.widget .product-categories .children {
    margin: 0 0 3px
}

.widget .product-categories .children li {
    border: none;
    padding: 5px 0 0
}

.widget .product-categories .count {
    float: right
}

.widget .product-categories .children li a {
    padding: 0 20px 10px;
    color: #858585
}

.widget .product-categories .children a:hover,.widget .product-categories .children a:focus,.widget .product-categories .children .current-cat a,.current-cat.cat-parent a,.current-cat-parent a {
    color: #41AFAA
}

.woocommerce-product-search input[type="submit"] {
    margin: 20px 0
}

.widget ul.cart_list,.widget ul.product_list_widget {
    margin-top: -14px
}

.widget ul.cart_list li img,.widget ul.product_list_widget li img {
    width: 70px;
    float: left;
    margin-right: 10px;
    margin-left: 0
}

.widget ul.cart_list li,.widget ul.product_list_widget li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 0
}

.widget ul.cart_list li a,.widget ul.product_list_widget li a {
    color: #454545;
    font-weight: 400
}

.widget ul.cart_list .amount,.widget ul.product_list_widget .amount {
    font-weight: 700
}

.widget ul.product_list_widget .product-title {
    padding-top: 15px;
    display: block;
    font-weight: 600;
    color: #41AFAA
}

.widget .reviewer {
    color: #858585
}

.widget_shopping_cart_content .mini_cart_item a {
    padding-top: 15px
}

.widget_shopping_cart_content .remove {
    position: absolute;
    top: 25px;
    right: 0;
    padding: 0!important
}

.widget_shopping_cart_content .mini_cart_item img {
    margin-top: -15px
}

.widget_shopping_cart_content .total {
    padding: 15px 0;
    font-size: 15px;
    display: inline-block;
    width: 100%
}

.widget_shopping_cart_content .total .amount {
    float: right;
    font-weight: 700
}

.widget_shopping_cart_content .buttons {
    clear: both;
    padding: 0
}

.widget_shopping_cart_content .buttons .checkout {
    float: right
}

.widget_shopping_cart_content .wc-forward {
    color: #41AFAA!important
}

.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering {
    margin-top: -30px!important
}

.added_to_cart {
    margin: -10px 20px 20px;
    font-weight: 700
}

.woocommerce div.product p.price,.woocommerce div.product span.price {
    padding: 0
}

.woocommerce div.product .summary div {
    padding: 0 0 20px;
    margin: 0!important
}

.woocommerce div.product .single_variation_wrap div {
    padding: 0
}

.woocommerce div.product form.cart div.quantity {
    margin-right: 10px!important
}

.woocommerce div.product form.cart div.quantity .qty {
    padding: 11px 10px 12px;
    border-radius: 5px
}

.woocommerce div.product form.cart .button {
    height: auto;
    line-height: normal;
    padding: 10px 30px!important;
    font-size: 15px;
    border-radius: 5px
}

.page-template-page-user-account address {
    font-style: normal;
    background: #fff;
    padding: 20px;
    margin: 0 0 30px;
    border-radius: 3px;
    border: 1px solid #ccc
}

.page-template-page-user-account .customer_details th,.page-template-page-user-account .customer_details td {
    padding: 17px 20px 16px!important
}

.woocommerce td.product-name dl.variation dd,.woocommerce td.product-name dl.variation dt,dd p {
    padding: 0;
    margin: 0
}

.woocommerce table.shop_table td,.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th {
    border-top: none
}

.woocommerce ul.products li.product,.woocommerce-page ul.products li.product {
    background: #fff;
    box-shadow: var(--shadow)
}

.woocommerce ul.products li.product .price {
    white-space: nowrap;
    font-size: 18px;
    padding: 0 20px;
    color: #454545;
    font-weight: 700
}

.woocommerce ul.products li.product .price del {
    display: inline
}

.woocommerce .star-rating {
    color: #ffc107!important
}

.woocommerce ul.products li.product h3 {
    padding: 0 20px 10px;
    font-size: 18px
}

.woocommerce ul.products .star-rating {
    margin: 0 20px 10px
}

.page-numbers {
    background: #fff
}

.woocommerce span.onsale {
    background: #ffc107;
    text-transform: uppercase;
    padding: 4px 8px
}

.woocommerce ul.products li.product:before,.woocommerce-page ul.products li.product:before {
    display: none
}

.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button {
    color: #fff
}

.woocommerce ul.products li.product .button {
    margin: 10px 20px 20px
}

.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images,.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary {
    width: 50%
}

.woocommerce div.product div.images div.thumbnails {
    padding: 0
}

.woocommerce #content div.product div.thumbnails a,.woocommerce div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a {
    margin: 0;
    width: 33.3333%
}

.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary {
    background: #fff;
    padding: 25px 30px 0;
    min-height: 731px;
    box-shadow: var(--shadow)
}

.woocommerce .woocommerce-product-rating .star-rating {
    padding: 0!important;
    margin: 0!important;
    color: #ffc107
}

.woocommerce-review-link {
    float: left;
    width: 100%;
    padding: 10px 0 0
}

.woocommerce div.product .product_title {
    padding: 0 0 10px
}

.pp_gallery li:before {
    display: none
}

.woocommerce-review-link {
    color: #454545;
    font-weight: 400
}

.woocommerce div.product p.price {
    color: #454545;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 700
}

.woocommerce div.product span.price {
    color: #454545;
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 20px;
    display: block
}

.woocommerce div.product form.cart .variations td {
    padding: 0
}

.woocommerce div.product form.cart .variations select {
    padding: 5px
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border: none
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a,.woocommerce div.product .woocommerce-tabs ul.tabs li:focus a {
    background: none!important
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:after {
    display: none
}

.woocommerce #reviews #comments ol.commentlist li {
    list-style: none
}

.woocommerce-tabs .panel {
    float: left;
    width: 100%;
    background: #fff;
    padding: 25px 30px!important;
    box-shadow: var(--shadow)
}

.woocommerce-tabs .panel #comments {
    float: left;
    width: 50%;
    padding-right: 15px
}

.woocommerce-tabs .panel #review_form_wrapper {
    float: left;
    width: 50%;
    padding-left: 15px
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    padding: 0
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
    box-shadow: none;
    padding: 0
}

.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span {
    padding: 15px
}

.woocommerce #review_form #respond p {
    padding: 0
}

.comment-form-rating a {
    color: #ffc107;
    font-weight: 400
}

.woocommerce p.stars {
    float: none;
    font-size: 15px
}

.woocommerce-tabs,.related.products {
    display: inline-block;
    width: 100%
}

.related.products h2 {
    padding: 10px 0 35px
}

.order_details .order_item .variation {
    display: none
}

.woocommerce-checkout-review-order-table .product-quantity {
    float: left;
    width: 100%
}

.wc-item-meta {
    display: none
}

section .widget .product_list_widget {
    margin: 0 -10px
}

section .widget .product_list_widget li:before {
    display: none
}

section .widget .product_list_widget li {
    float: left;
    padding: 0 10px!important;
    border: none!important;
    width: 25%!important;
    margin: 0 0 20px!important
}

section .widget .product_list_widget li>a {
    float: left;
    width: 100%;
    background: #fff
}

section .widget .product_list_widget li>a img {
    width: 100%
}

section .widget .product_list_widget li>span {
    float: left;
    width: 100%;
    background: #fff;
    padding: 15px
}

section .widget .product_list_widget li .product-title {
    display: inline-block;
    font-size: 18px;
    padding: 13px 15px 0;
    font-family: 'Roboto Slab',serif;
    color: #555
}

section .widget .product_list_widget li>del,section .widget .product_list_widget li>ins {
    background: #fff;
    width: 50%;
    float: left;
    padding: 15px
}

/* ===== 18.6 Contact Form 7 ===== */
.wpcf7-form-control-wrap {
    width: 100%;
    display: inline-block;
    padding: 0 0 15px
}

.wpcf7-form label {
    width: 100%;
    max-width: 100%
}

.wpcf7-list-item {
    width: 100%;
    display: inline-block;
    margin: 0 0 5px!important
}

.wysija-paragraph {
    padding: 0;
    display: inline-block;
    width: 100%
}

/* ===== 19 Responsiveness ===== */
@media screen and (max-width: 750px) {
    header .search {
        display:none
    }
}

@media screen and (max-width: 1060px) {
    header {
        height:inherit;
        display: block
    }

    .slider-wrap {
        height: 520px
    }

    .logo img {
        height: 80px
    }

    .mini-flex {
        justify-content: flex-end
    }

    .logo-text {
        font-size: 15px
    }

    .deals .one-fourth,.deals .one-third,.deals .one-fifth,.deals .one-sixth,.destinations .one-fourth,.destinations .one-third,.destinations .one-fifth,.destinations .one-sixth,.offers .one-fourth,.offers .one-third,.offers .one-fifth,.offers .one-sixth,.home-footer-sidebar .widget,.above-footer-sidebar .widget {
        width: 50%
    }

    .home-content-sidebar .byt_search_widget {
        padding-bottom: 20px;
        position: relative;
        top: 0;
        margin: 20px 0 0
    }

    .home-content-sidebar .byt_search_widget .column {
        width: 100%!important;
        padding: 0 15px
    }

    .home-content-sidebar .byt_search_widget .column .dt {
        padding: 0 0 15px
    }

    .home-content-sidebar .byt_search_widget .column .dd {
        min-height: auto;
        border-bottom: 1px solid #ccc;
        border-right: none;
        margin-bottom: 15px;
        padding: 0 0 15px
    }

    .home-content-sidebar .byt_search_widget .column:last-of-type .dd {
        border: none
    }

    .home-content-sidebar .byt_search_widget .column .checkbox {
        width: 25%
    }

    .home-content-sidebar .byt_search_widget .gradient-button {
        width: auto;
        min-width: 17%
    }

    .woocommerce-checkout-review-order-table,.woocommerce-checkout-payment {
        width: 100%!important
    }

    .lb-wrap {
        width: 46%;
        left: 27%
    }
}

@media screen and (max-width: 1001px) {
    .slider-wrap {
        height:495px
    }
}

@media screen and (max-width: 682px) {
    .slider-wrap {
        height:540px
    }
	.inner-nav.new ul{
	    display: flex;
	    gap: 10px;
	    width: 100%;
	    flex-wrap: wrap;
	}
}

@media screen and (min-width: 831px) and (max-width:1059px) {
    aside .location_item .count {
        width:100%
    }
}

@media screen and (max-width: 1024px) {
    section .deals .full-width {
        height:auto!important
    }

    section .deals .full-width figure,section .deals .full-width .details,.page-template-page-user-content-list .room-types figure {
        height: auto!important;
        width: 100%!important;
        max-height: none
    }

    .inner-nav {
        width: 26.4%
    }

    .tab-content {
        width: 70.4%
    }
}

@media screen and (max-width: 960px) {
    .room-types li figure {
        width:50%;
        max-height: none
    }

    .tab-content .room-types .meta {
        width: 50%;
        min-height: 0
    }

    .room-types .room-information {
        width: 50%;
        height: auto;
        border-left: none
    }

    .room-information .gradient-button {
        position: static
    }

    footer .full-width nav {
        float: left;
        width: 100%;
        padding: 20px 0 0
    }

    footer .full-width nav li:first-child {
        margin: 0;
        padding: 0
    }
}

@media screen and (max-width: 830px) {
    .full-width,.three-fourth,.one-half,.one-third,.two-third,.one-fourth,.one-fifth,.one-sixth,.home-footer-sidebar .widget,.above-footer-sidebar .widget {
        width: 100% !important;
    }
	.flex-stran{
		justify-content: center !important;
	}

    .right-sidebar.lower.one-fourth {
        width: 100%
    }

    .one-fourth {
        width: 50%
    }

    .home-footer-sidebar .widget>div {
        min-height: auto
    }

    .lb-wrap {
        width: 80%;
        left: 10%;
        max-width: 80%
    }

    .ui-datepicker-multi-2 .ui-datepicker-group {
        width: 100%!important
    }

    .ui-datepicker-group-first {
        margin: 0 0 20px
    }

    .calendar-colors .f-item>div {
        padding: 0 0 10px 10px;
        float: left;
        width: 25%;
        text-align: left
    }

    .booking_terms p>span {
        width: 100%
    }

    table.responsive,.review-form table {
        overflow-x: auto;
        display: block
    }

    table.responsive thead,table.responsive tbody,table.responsive tfoot,.review-form table thead,.review-form table tbody,.review-form table tfoot,.score,.chart {
        width: 100%
    }

    .page-template-page-user-content-list .room-types .meta {
        width: 67%
    }

    .page-template-page-user-content-list .room-types .room-information {
        width: 33%
    }

    .woocommerce-page ul.products li.product {
        width: 100%!important;
        margin: 0 0 20px!important
    }
}

@media screen and (max-width: 600px) {
    .viz_item_li {
        width:100%
    }

    header .search {
        display: none
    }

    header .contact {
        margin: 5px
    }

    .logo {
        width: 50%
    }

    .home-content-sidebar .byt_search_widget .column .checkbox {
        width: 50%
    }

    .lb-wrap {
        width: 90%;
        left: 5%;
        max-width: 90%
    }

    .chart {
        margin-top: 10px
    }

    .inner-nav,.inner-nav li.active,.inner-nav li.active:hover,.tab-content {
        width: 100%
    }

    .inner-nav {
        margin-bottom: 20px
    }

    .inner-nav li.active a:after,.inner-nav li.active a:after {
        display: none
    }

    .calendar-colors .f-item>div {
        width: 50%
    }

    .sort-by {
        height: auto
    }

    .sort {
        margin: 0;
        border-left: none
    }

    .sort,.sort li {
        width: 100%
    }

    .sort li {
        border-right: none;
        margin: 0;
        padding: 10px 0;
        border-top: 1px solid #ccc
    }

    .view-type {
        position: absolute;
        right: 10px
    }

    .ascending {
        top: 11px
    }

    .descending {
        top: 20px
    }

    .room-types li figure,.tab-content .room-types .meta,.room-types .room-information {
        width: 100%
    }

    .tab-content .room-types .meta {
        padding: 20px 0 0
    }

    .room-types .room-information {
        padding: 13px 0 0
    }

    .copy {
        width: 100%;
        text-align: center
    }

    footer .full-width nav {
        text-align: center;
        margin: 20px 0 0;
        border-top: 1px solid #ccc
    }

    footer .full-width nav li {
        float: none;
        display: inline-block;
        border: none;
        margin: 0;
        padding: 0 15px 15px
    }
}

@media screen and (max-width: 500px) {
    .logo-text {
        font-size:11px
    }

    aside .widget {
        width: 100%
    }

    .lightSlider img {
        height: auto;
        display: inline;
        margin: 0 auto;
        max-width: initial;
        height: 100%;
        min-height: 250px;
        max-height: 250px
    }

    .logo img {
        width: 125px;
        height: auto
    }
}

/* ===== 20 WP Core ===== */
.alignnone {
    margin: 5px 20px 20px 0
}

.aligncenter,div.aligncenter {
    display: block;
    margin: 5px auto 5px auto
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px
}

a img.alignnone {
    margin: 5px 20px 20px 0
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto
}

.wp-caption .wp-caption-text,.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px
}

.bypostauthor {
    border-top: 3px solid #B1A398;
    position: fixed
}

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute!important
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
    clip: auto!important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    line-height: normal;
    padding: 15px 23px 14px;
    position: absolute;
    left: 5px;
    top: 5px;
    text-decoration: none;
    width: auto;
    z-index: 100000
}

.entry-content img,.entry-summary img,.comment-content img,.widget img,.wp-caption {
    max-width: 100%
}

.entry-content img,.entry-summary img,.comment-content img[height],img[class*="align"],img[class*="wp-image-"],img[class*="attachment-"] {
    height: auto
}

img.size-full,img.size-large,img.wp-post-image {
    height: auto;
    max-width: 100%
}

embed,iframe,object,video {
    max-width: 750px;
    max-height: 450px
}

img.wp-smiley,.rsswidget img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

.wp-caption.alignleft+ul,.wp-caption.alignleft+ol {
    list-style-position: inside
}

.entry-content {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word
}

.gallery {
    margin-bottom: 20px
}

.gallery img {
    display: inline
}

.gallery-item {
    float: left;
    margin: 0 4px 4px 0;
    overflow: hidden;
    position: relative
}

.gallery-columns-1 .gallery-item {
    max-width: 100%
}

.gallery-columns-2 .gallery-item {
    max-width: 48%;
    max-width: calc(50% - 4px)
}

.gallery-columns-3 .gallery-item {
    max-width: 32%;
    max-width: calc(33.3% - 4px)
}

.gallery-columns-4 .gallery-item {
    max-width: 23%;
    max-width: calc(25% - 4px)
}

.gallery-columns-5 .gallery-item {
    max-width: 19%;
    max-width: calc(20% - 4px)
}

.gallery-columns-6 .gallery-item {
    max-width: 15%;
    max-width: calc(16.7% - 4px)
}

.gallery-columns-7 .gallery-item {
    max-width: 13%;
    max-width: calc(14.28% - 4px)
}

.gallery-columns-8 .gallery-item {
    max-width: 11%;
    max-width: calc(12.5% - 4px)
}

.gallery-columns-9 .gallery-item {
    max-width: 9%;
    max-width: calc(11.1% - 4px)
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),.gallery-columns-2 .gallery-item:nth-of-type(2n),.gallery-columns-3 .gallery-item:nth-of-type(3n),.gallery-columns-4 .gallery-item:nth-of-type(4n),.gallery-columns-5 .gallery-item:nth-of-type(5n),.gallery-columns-6 .gallery-item:nth-of-type(6n),.gallery-columns-7 .gallery-item:nth-of-type(7n),.gallery-columns-8 .gallery-item:nth-of-type(8n),.gallery-columns-9 .gallery-item:nth-of-type(9n) {
    margin-right: 0
}

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
    clear: left
}

.gallery-caption {
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-height: 50%;
    opacity: 0;
    padding: 6px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%
}

.gallery-caption:before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.gallery-item:hover .gallery-caption {
    opacity: 1
}

.gallery-columns-7 .gallery-caption,.gallery-columns-8 .gallery-caption,.gallery-columns-9 .gallery-caption {
    display: none
}

/* ===== Print ===== */
@media print {
    * {
        color: #000!important;
        text-shadow: none!important;
        background: transparent!important;
        box-shadow: none!important;
        font-size: 10pt!important;
        line-height: normal!important
    }

    a,a:visited {
        text-decoration: underline
    }

    pre,blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,img {
        page-break-inside: avoid
    }

    img {
        max-width: 100%!important
    }

    p,h2,h3 {
        orphans: 3;
        widows: 3
    }

    h2,h3 {
        page-break-after: avoid
    }

    select {
        background: none!important
    }

    body {
        background: none!important
    }

    .wrap,.three-fourth {
        width: 100%!important;
        max-width: 100%
    }

    .text-wrap .output p {
        width: 50%!important
    }

    .text-wrap {
        padding: 0 10px 10px
    }

    header,footer,.breadcrumbs,.lSSlideOuter,.inner-nav,.tab-content#location,.tab-content#reviews,.above-footer-sidebar,#things-to-do img,.home-footer-sidebar,.calendar-colors,.calendar {
        display: none!important
    }

    .tab-content {
        display: block!important;
        width: 100%!important
    }
}

/* ===== Custom additions ===== */
.bold {
    font-weight: 800
}

img.center-block {
    height: 70px
}

a.list-group-item p {
    text-align: center;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 0
}

.center {
    display: flex;
    justify-content: center
}

.calculator {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.block_credita {
    border: 2px solid #50bcb6;
    padding: 15px;
    border-radius: 15px;
    margin-right: 30px;
    min-width: 250px;
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 250px;
    margin-bottom: 30px
}

.summa_credita,.srok_credita,.platezh {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
    width: 100%
}

#credit-calc-sum {
    max-width: 200px;
    border-bottom: 2px solid;
    text-align: right;
    font-size: 24px;
    padding-right: 10px;
    color: #41AFAA
}

.moths input {
    max-width: 200px;
    border-bottom: 2px solid;
    text-align: right;
    font-size: 24px;
    padding-right: 10px;
    color: #41AFAA
}

.block_credita p {
    width: 100%;
    font-size: 12px;
    color: #9c9c9c;
    text-align: center;
    padding: 0;
    height: 3px
}

.rubl {
    font-size: 24px;
    color: #41AFAA;
    float: right
}

.moths {
    display: flex;
    justify-content: space-around;
    font-size: 24px
}

.moths label {
    cursor: pointer;
    border-bottom: 2px solid #fff;
    transition: 0.3s;
    min-width: 30px;
    text-align: center;
    color: #41AFAA
}

.moths label:hover {
    border-bottom: 2px solid;
    transition: 0.3s
}

#credit-calc-result {
    text-align: right;
    font-size: 24px;
    padding-right: 10px;
    color: #41AFAA;
    background: none;
    max-width: 100px
}

.mini-text {
    margin-top: 10px;
    color: #9c9c9c
}

article table.copy {
    margin: 0 auto;
    width: auto;
    float: none!important;
    margin-bottom: 30px;
    display: table
}

.h2-samolet {
    border-top: 2px solid #9c9c9c;
    text-align: center;
    padding-top: 20px;
    width: 50%;
    margin: 0 auto
}

.klass_item_li {
    list-style: none;
    width: 46%;
    margin: 10px;
    text-align: center;
    transition: 0.3s
}

.klass_item_li:hover {
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.8);
    transition: 0.3s
}

#aside1 {
    z-index: 1;
    right: 0;
    width: 25%;
    position: absolute;
    top: 90px
}

#aside2 {
    display: none
}

@media screen and (max-width: 830px) {
    #aside2 {
        display:block;
        width: 100%;
        margin-top: 30px
    }

    #aside2 .widget {
        width: 100%
    }
}

.sticky {
    position: fixed;
    z-index: 101
}

.stop {
    position: relative;
    z-index: 101
}

aside.widget {
    background: white;
    padding: 10px 20px
}
aside.widget.new{box-shadow: 0px 0px 7px 1px #5fc8c2a3;}
.zakaz_t td {
    border: none
}

.zakaz_t input,.zakaz_t textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 30px;
    padding-left: 10px
}

.cdays {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.cdays div {
    margin: 0 5px
}

.red_t {
    color: red
}

.input_z {
    width: 100%;
    max-width: 375px
}

.run-title {
    background: white;
    left: 0;
    z-index: 999999;
    position: fixed;
    bottom: 0;
    color: red;
    font-weight: 600;
    font-size: 14px
}

.TVTourContainer .TVTourBlock .TVPriceBlock {
    padding: 5px;
    background: linear-gradient(-45deg,#f56c6c,#b90f1f);
    border-radius: 35px;
    transition: 0.5s
}

.TVTourContainer .TVTourBlock .TVPriceBlock:hover {
    padding: 5px;
    background: linear-gradient(45deg,#f56c6c,#b90f1f);
    border-radius: 35px;
    transition: 0.5s
}

.TVTourContainer .TVTourBlock .TVPriceValue {
    color: white
}

.TVTourBlock .TVPriceSuffix {
    color: white!important
}

.TVTourBlock .TVPriceArrow {
    background: #8383d4!important
}

.TVTourBlock .TVPriceArrow:hover {
    background: #00ab1f!important
}

.all-blue,.all-blue-footer {
    background: linear-gradient(05deg,#4ec6de,#38a1e7);
    margin-bottom: 20px
}

.flex-form,.flex-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0px;
    height: auto!important
}

#foto-personal,#foto-personal-footer {
    width: 140px;
    height: 140px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 100px
}

#name-personal,#name-personal-footer {
    font-size: 16px;
    color: white;
    font-weight: 600
}

.all-blue-footer {
    margin-top: 30px;
    margin-bottom: 30px
}

.pers-tanja {
    background: url(/tour/persona02.jpg)
}

.pers-alena {
    background: url(/tour/persona03.jpg)
}

.pers-polina {
    background: url(/tour/persona04.jpg)
}

.pers-anna {
    background: url(/tour/persona05.jpg)
}

.pers-alina {
    background: url(/tour/persona06.jpg)
}

.pers-alinaa {
    background: url(/tour/persona07.jpg)
}

.pers-ekaterina {
    background: url(/tour/persona08.jpg)
}

.pers-irina {
    background: url(/tour/persona09.jpg)
}

.up-tex {
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 22px
}

.alert2.alert-success2 {
    position: absolute;
    left: 35%;
    z-index: 9999;
    top: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 200px;
    font-size: 20px
}

.closex2 {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 20px;
    transform: rotate(0deg);
    transition: 0.3s
}

.closex2:hover {
    transform: rotate(-45deg);
    transition: 0.3s
}

.big-button {
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 16px;
    background: #ec0f0f;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s
}

.big-button:hover {
    background: #b30000;
    transition: 0.5s
}

.big-button a {
    color: white
}

.flex-center {
    display: flex;
    justify-content: center
}

.TVSearchButton,.TVNavButton,.TVSRButtonWatch {
    border-radius: 20px!important;
    padding-bottom: 5px!important
}

.TVMultyFilter {
    display: none!important;
    z-index: 99999
}

.TVTheme2 .TVNavButton {
    background: rgba(48,188,209,1.00)!important;
    color: white!important;
    border: none!important
}

.TVTheme2 .TVNavButton:hover {
    background: rgb(85,206,224)!important
}

.modal-content .alert {
    width: 80%;
    left: 0;
    background: #ffffffe6;
    padding: 10px;
    left: 10%;
    top: 101%;
    color: #005955
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    background: #bd0000;
    color: white;
    padding: 35px;
    font-size: 20px;
    font-weight: 600;
    left: 41%
}

.js-body iframe,.s-partnership iframe {
    max-width: 100%;
    padding: 0;
    max-height: 100%
}

figure.left_pic {
    margin: 15px 0
}

.g-recaptcha iframe {
    padding: 0
}

article .TVSRBtnBlock {
    height: auto
}

p+img {
    margin-bottom: 15px;
    border-radius: 10px
}

p+ul {
    margin-top: -10px!important;
    margin-bottom: 15px!important
}

ul.spisok li {
    padding-left: 0px;
    font-size: 16px;
    margin-left: 25px;
    list-style: disc
}

ul.spisok li::marker {
    color: #5fc8c2
}

ol.spisok li {
    padding-left: 5px;
    font-size: 16px;
    margin-left: 20px;
    list-style: decimal
}

.interes {
    background: #46b3ae;
    padding: 20px 15px;
    border-left: 6px solid #fe892e;
    margin-bottom: 15px
}

.interes h4 {
    color: white;
    text-transform: uppercase
}

.interes p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: justify
}

.TVHotelResultItem .TVHotelResulItemInfo {
    padding: 8px!important
}

.lSAction {
    display: none!important
}

.TVSiteLogo,.TVBackButton {
    display: none
}

.plus-flex,.in-flex,.in-flex-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 310px
}

.in-flex-end {
    width: 100%;
    justify-content: end;
    margin-right: 30px;
    color: #47afaa;
    max-width: 322px
}

.in-flex-end a {
    margin-left: 5px
}

.in-flex {
    margin-right: 30px
}

@media screen and (max-width: 1060px) {
    .in-flex {
        margin-right:10px
    }

    .in-flex-end {
        margin-right: 10px
    }
}

@media screen and (max-width: 936px) {
    .in-flex {
        margin-right:5px
    }

    .in-flex-end {
        margin-right: 5px
    }
}

.tab-content p+h2 {
    margin: 0;
    border: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 5px
}

a.micro {
    font-size: 75%;
    color: #858585
}

#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 23px;
    left: 50%;
    width: 900px;
    z-index: 9;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0,0,0,0.4)
}

#cookie_notification p {
    margin: 0;
    font-size: 85%;
    text-align: center
}

@media (min-width: 576px) {
    #cookie_notification.show {
        display:flex
    }
	
    .cookie_accept {
        margin: 0;
        border: none
    }
}

@media (max-width: 575px) {
    #cookie_notification.show {
        display:block;
        text-align: left
    }
	h1{
	    font-size: 18px;
	    margin-bottom: 16px;
	    margin-top: 16px;
	}
	h2,.up-tex{
		font-size:18px;
	}
	.flex-form, .flex-form-footer{
    justify-content: center;
}
    .cookie_accept {
        margin: 10px 0 0 0
    }
}

.call-button.orange {
    background: linear-gradient(to bottom,#fbab72 0%,#ff7200 100%)
}

.call-button.orange:hover {
    background: linear-gradient(to top,#fbab72 0%,#ff7200 100%)
}

#marquee {
    display: block;
    width: 100%;
    line-height: 21px;
    white-space: nowrap;
    color: red;
    overflow: hidden;
    box-sizing: border-box
}

#marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite
}

@keyframes marquee {
    0% {
        transform: translate(0%,0)
    }

    100% {
        transform: translate(-100%,0)
    }
}

.stat-li {
    display: flex;
    align-items: center;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: #e9e6e0;
    padding: 10px 0px;
    margin: 5px 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center
}

.stat-li img {
    width: 100%;
    height: 150px;
    padding-right: 15px;
    object-fit: cover
}

.stat-li h4 {
    font-size: 20px
}

.stat-img {
    width: 100%;
    max-width: 320px;
    position: relative
}

.stat-info {
    width: 100%;
    max-width: 900px;
    position: relative
}

.stat-img a,.stat-info a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.stat-li+.stat-li {
    border-top: none;
    margin-top: 0;
    padding-top: 5px
}

.date-public {
    text-align: right;
    font-size: 12px;
    color: #5fc8c2
}

.stat-h1 {
    font-size: 28px;
    margin-bottom: 16px
}

.fotorama {
    display: flex;
    justify-content: center
}

.review-author {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    max-width: 300px;
    margin-bottom: 10px;
    padding-bottom: 10px
}

.review-avatar {
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #46b4ae;
    color: white;
    font-size: 20px;
    border-radius: 50px;
    margin-right: 10px
}

.photos-indicator {
    display: none
}

.review-photos-gallery {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: center
}

.photos-label {
    display: none
}

.review-photos-gallery a {
    cursor: pointer;
    height: 140px;
    width: 300px;
    transition: 0.3s
}

.review-photos-gallery a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    transition: 0.3s
}

.review-photos-gallery a img {
    height: 140px;
    width: 300px;
    object-fit: cover;
    max-height: 100%;
    transition: 0.3s
}

.review-item {
    border-bottom: 2px solid #eeeeee;
    padding: 10px 0
}

.review-item::last-child {
    border: none
}

.reviews-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px
}

.reviews-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee
}

.reviews-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700
}

.page-description {
    color: #7f8c8d;
    font-size: 18px;
    margin-bottom: 30px
}

header-actions {
    margin-top: 20px
}

.btn-add-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3498db;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #3498db
}

.btn-add-review:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.3)
}

.btn-add-review svg {
    stroke: currentColor
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 40px;
    flex-wrap: wrap
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 180px;
    border: 1px solid #e9ecef
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.reviews-list {
    margin: 15px 0
}

.reviews-footer {
    margin-top: 20px;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    color: white
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600
}

.footer-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: black
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #46b4ae;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3)
}

.btn-primary svg {
    stroke: currentColor
}

@media (max-width: 768px) {
    .reviews-page {
        padding:15px
    }

    .reviews-header h1 {
        font-size: 28px
    }

    .reviews-stats {
        gap: 20px
    }

    .stat-item {
        min-width: 140px;
        padding: 15px
    }

    .stat-number {
        font-size: 24px
    }

    .reviews-footer {
        padding: 30px 20px;
        margin-top: 40px
    }

    .footer-content h3 {
        font-size: 24px
    }
}

.review-form {
    max-width: 600px;
    margin: 0 auto
}

.review-form label {
    cursor: auto
}

.review-form input[type="text"],.review-form input[type="email"],.review-form textarea {
    text-align: left;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px
}

.review-form button {
    border: none;
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 180px;
    margin-top: 10px
}

.review-after {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px
}

.review-after p {
    margin-bottom: 6px
}

.review-form input[type="file"] {
    border: none
}

.review-after li {
    padding-bottom: 0px
}

.preview-bt {
    max-width: 160px
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 40px);
    max-width: 860px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    border: 1px solid #2a3a38;
    transition: opacity 0.3s ease
}

.cookie-notice[hidden] {
    display: none
}

.cookie-notice__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px
}

.cookie-notice__text h2 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600
}

.cookie-notice__text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0
}

.cookie-notice__text a {
    color: #ffd54a;
    text-decoration: none
}

.cookie-notice__text a:hover {
    text-decoration: underline
}

.cookie-notice__actions {
    display: flex;
    justify-content: flex-end
}

.cookie-notice__btn {
    background-color: #50c878;
    color: #0f1c18;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease
}

.cookie-notice__btn:hover {
    background-color: #3aa85f
}

@media (min-width: 768px) {
    .cookie-notice__inner {
        flex-direction:row;
        align-items: center;
        justify-content: space-between
    }

    .cookie-notice__text {
        flex: 1
    }

    .cookie-notice__actions {
        flex-shrink: 0
    }
}

.privacy h5 {
    margin-top: 20px
}

.privacy-files {
    border-top: 1px solid grey;
    margin-top: 10px;
    padding-top: 10px
}

.privacy-files p {
    margin-bottom: 20px;
    font-weight: 600
}

.privacy-files li {
    position: relative;
    color: #60afaa
}

.privacy-files li:hover {
    color: #3d7b77
}

.privacy-files a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.samolet {
    display: flex;
    justify-content: center
}

.samolet img {
    width: 100%;
    max-width: 640px;
    max-height: 320px;
    object-fit: cover;
    margin-bottom: 30px;
    margin-top: 10px
}

.image-container {
    margin: 1.5rem 0;
    text-align: center
}

.plane-image {
    max-width: 100%;
    height: auto;
    display: inline-block
}

.note {
    color: #5a5a5a;
    font-size: 12px;
    margin: 0 0 2.5rem 0;
    text-align: left;
    border-left: 3px solid #ccc;
    padding-left: 1rem
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    margin: 2rem 0 1.5rem 0;
    color: #000
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    max-width: 640px;
    margin: 20px auto
}

.spec-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    flex-wrap: wrap
}

.spec-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #5a5a5a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 16px
}

.spec-value {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.8
}

.spec-property {
    font-weight: 500;
    color: #000
}

.description-text {
    text-align: left;
    color: #2a2a2a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 16px
}

@media (min-width: 768px) {
    .spec-item {
        flex-direction:row
    }

    .spec-label {
        width: 250px;
        margin-bottom: 0
    }

    .spec-value {
        flex: 1
    }
}

.tab-content table {
    margin: 0;
    margin-bottom: 5px
}

table.new th{
	background: #46b3ae;
	color: white;
	border: none;
	border-bottom: 1px solid white;
	width: 18%;
	vertical-align: middle;
}
table.new td{
	border: none;
	border-bottom: 1px solid #46b3ae;
}
.breadcrumbs li.B_lastCrumb {
    display: none
}

.B_crumbBox li:last-child {
    display: block
}

/* ===== Custom fixes ===== */
#ruspo-results.ruspo-results {
    min-width: 340px!important
}

table.ruspo-results-table tr td:first-child {
    width: auto!important;
    padding-left: 5px!important
}

#ruspo-results table.ruspo-results-table table tr td:first-child {
    padding-left: 0px!important
}

#ruspo-results table.ruspo-results-table table tr td {
    padding-left: 0px!important;
    padding-right: 0px!important
}

#ruspo-results table.ruspo-results-table table tr td:last-child {
    padding-left: 0px!important
}

#ruspo-results table.ruspo-results-table table tr th {
    padding-left: 0px
}

#ruspo-results table.ruspo-results-table table tr th:first-child {
    padding-left: 0px!important
}

@media screen and (max-width: 550px) {
    .ruspo-results-foot {
        height:auto!important
    }

    .ruspo-results .ruspo-results-pager {
        float: none!important
    }

    aside .widget {
        width: 100%!important;
        margin: 0px 5px
    }
}

.ruspo-results .ruspo-results-pager-alt {
    margin-bottom: 10px
}

.soc-a {
    margin: 0 5px
}

.flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center
}

.mini-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.call-button {
    background: linear-gradient(to bottom,#5FC8C2 0%,#41AFAA 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    height: 32px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 11.5px;
    line-height: 32px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 auto;
    justify-content: center
}

.call-button:hover {
    background: linear-gradient(to bottom,#41AFAA 0%,#5FC8C2 100%)
}

.logo-text {
    padding: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bolder;
    margin-top: 5px
}

.location_item_li {
    list-style: none;
    width: 235px;
    text-align: center;
    transition: 0.3s
}

.location_item_li:hover {
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.8);
    transition: 0.3s
}

.viz_item_li {
    list-style: none;
    width: 46%;
    margin: 10px;
    text-align: center;
    transition: 0.3s
}

.viz_item_li:hover {
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.8);
    transition: 0.3s
}

.flex-stran {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-bottom: 30px; */
    gap: 14px;
}

@media screen and (max-width: 1100px) {
    .single-location .car_rental_item .text-wrap {
        width:100%!important
    }

    aside .widget {
        width: 100%;
        margin: 0px 0px
    }
}

@media screen and (max-width: 400px) {
    .single-location .car_rental_item .price {
        visibility:hidden
    }

    .single-location .car_rental_item .price em {
        visibility: visible
    }

    .viz_item_li,.one-fourth {
        width: 100%!important;
        padding: 0 25px;
    }
}

@media screen and (max-width: 1000px) {
    .full-width .home-content-sidebar .offers .one-fifth figure,.full-width .home-content-sidebar .deals .one-fifth figure,.full-width .home-content-sidebar .destinations .one-fifth figure {
        height:280px
    }

    .full-width .home-content-sidebar .offers .one-fourth figure,.full-width .home-content-sidebar .deals .one-fourth figure,.full-width .home-content-sidebar .destinations .one-fourth figure {
        height: 330px
    }

    .full-width .home-content-sidebar .offers .one-third figure,.full-width .home-content-sidebar .deals .one-third figure,.full-width .home-content-sidebar .destinations .one-third figure {
        height: 330px
    }

    .full-width .home-content-sidebar .offers .one-half figure,.full-width .home-content-sidebar .deals .one-half figure,.full-width .home-content-sidebar .destinations .one-half figure {
        height: 330px
    }
}

@media screen and (max-width: 830px) {
    aside .widget {
        width:48%;
        /* margin: 0px 5px; */
    }

    #aside1 {
        display: none
    }

    .full-width .home-content-sidebar .offers .one-fifth figure,.full-width .home-content-sidebar .deals .one-fifth figure,.full-width .home-content-sidebar .destinations .one-fifth figure,.full-width .home-content-sidebar .offers .one-fourth figure,.full-width .home-content-sidebar .deals .one-fourth figure,.full-width .home-content-sidebar .destinations .one-fourth figure,.full-width .home-content-sidebar .offers .one-third figure,.full-width .home-content-sidebar .deals .one-third figure,.full-width .home-content-sidebar .destinations .one-third figure,.full-width .home-content-sidebar .offers .one-half figure,.full-width .home-content-sidebar .deals .one-half figure,.full-width .home-content-sidebar .destinations .one-half figure {
        height: auto
    }
}
.country-new{
	max-height: 600px;
    overflow-y: scroll;
}
.TVMiniForm.TVTheme2,.TVSearchResults{
	width:100% !important;
}
.tab-content.new p {
    margin-bottom: 8px;
    line-height: 1.6; /* ÃƒÂÃ¢â‚¬ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â·ÃƒÂÃ‚Â´Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¶ÃƒÂÃ‚Â´Ãƒâ€˜Ã†â€™ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¾ÃƒÂÃ‚Âº */
    color: #333; /* ÃƒÂÃ…â€œÃƒâ€˜Ã‚ÂÃƒÂÃ‚Â³ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¹ Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°, ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾ */
}

.tab-content.new h2 {
     /* ÃƒÂÃ‚Â¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹ ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã†â€™ÃƒÂÃ‚Â¿, Ãƒâ€˜Ã¢â‚¬Â¡Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â‚¬Â¹ ÃƒÂÃ‚Â½ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ ÃƒÂÃ‚Âº Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã†â€™ */
     color: #1e6965;
     font-weight: 600; /* ÃƒÂÃ‚Â¡ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ Ãƒâ€˜Ã¢â‚¬Â¡Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒÂÃ‚Âµ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â° */
     /* ÃƒÂÃ¢â‚¬Å“ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â±ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¹ Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â·ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ */
     letter-spacing: 0.3px; /* ÃƒÂÃ¢â‚¬ÂºÃƒâ€˜Ã¢â‚¬ËœÃƒÂÃ‚Â³ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â·Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¶ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â²ÃƒÂÃ‚Â° */
     margin-top: 8px;
}
.tab-content.new h3{
	padding: 0;
}


/* ===== ÃƒÂÃ‚Â£ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Â¹ ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¹ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â Ãƒâ€˜Ã¢â‚¬Â¹ ÃƒÂÃ¢â‚¬Â¢ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¿Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â° ===== */
.egypt-country-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    transition: all 0.2s ease;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    color: #1e2a3a;
    padding: 40px 0;
}

/* ===== ÃƒÂÃ¢â‚¬â€ÃƒÂÃ‚Â°ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ===== */
.egypt-country-wrapper .egypt-h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
    color: #1e2a3a;
}

.egypt-country-wrapper .egypt-h2 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 2.2rem;
    margin-bottom: 1.2rem;
    border-left: 6px solid #d68c45;
    padding-left: 18px;
    color: #1e2a3a;
    padding-top: 8px;
}

.egypt-country-wrapper .egypt-h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1e2a3a;
}

.egypt-country-wrapper .egypt-h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 4px;
    color: #1e2a3a;
}
.egypt-country-wrapper .egypt-h4+ul li{
	font-size: 14px;
}
/* ===== ÃƒÂÃ‚Â¢ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ ===== */
.egypt-country-wrapper .egypt-lead {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.egypt-country-wrapper .egypt-text {
    line-height: 1.7;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 16px;
}

.egypt-country-wrapper .egypt-text-muted {
    color: #5a6c7e;
    line-height: 1.6;
}

/* ===== ÃƒÂÃ…Â¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ===== */
.egypt-country-wrapper .egypt-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0 10px;
}

.egypt-country-wrapper .egypt-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 15px 0 10px;
}

.egypt-country-wrapper .egypt-card {
    background: #faf8f5;
    border-radius: 24px;
    padding: 24px 28px;
    transition: 0.2s;
    border: 1px solid #edeae4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.egypt-country-wrapper .egypt-card-accent {
    background: #f2eee9;
    border-radius: 24px;
    padding: 20px 24px;
    border: 1px solid #edeae4;
}

.egypt-country-wrapper .egypt-card-icon {
    font-size: 2rem;
    color: #d68c45;
    margin-bottom: 10px;
    display: inline-block;
}

/* ===== ÃƒÂÃ‚Â¡ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ===== */
.egypt-country-wrapper .egypt-list-inline {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 10px 0;
}

.egypt-country-wrapper .egypt-list-inline li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.egypt-country-wrapper .egypt-list-shop {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 12px 0;
}

.egypt-country-wrapper .egypt-list-shop li {
    background: #f2eee9;
    padding: 8px 18px 8px 40px;
    border-radius: 40px;
    position: relative;
    font-weight: 500;
}

.egypt-country-wrapper .egypt-list-shop li i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b38b60;
    font-size: 1.1rem;
}

.egypt-country-wrapper .egypt-list-bullet {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.egypt-country-wrapper .egypt-list-bullet li {
    padding: 5px 0 5px 28px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23d68c45" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') left center no-repeat;
    background-size: 18px;
    line-height: 1.6;
}

/* ===== ÃƒÂÃ…Â¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸-ÃƒÂÃ‚Â·ÃƒÂÃ‚Â°ÃƒÂÃ‚Â³ÃƒÂÃ‚Â»Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ===== */
.egypt-country-wrapper .egypt-img-placeholder {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 16px 0 8px;
    min-height: 70px;
}

.egypt-country-wrapper .egypt-img-placeholder i {
    font-size: 2rem;
    color: #b38b60;
}

.egypt-country-wrapper .egypt-img-placeholder span {
    font-weight: 500;
    color: #3d4a5a;
}

/* ===== ÃƒÂÃ‚Â¢ÃƒÂÃ‚ÂµÃƒÂÃ‚Â³ÃƒÂÃ‚Â¸ ===== */
.egypt-country-wrapper .egypt-tag {
    display: inline-block;
    background: #e8e0d6;
    border-radius: 40px;
    padding: 4px 18px;
    font-size: 0.9rem;
    color: #1e2a3a;
    margin-right: 6px;
}

.egypt-country-wrapper .egypt-tag-gold {
    background: #d68c45;
    color: #fff;
    padding: 2px 16px;
    border-radius: 30px;
    font-weight: 500;
}

/* ===== ÃƒÂÃ‚Â ÃƒÂÃ‚Â°ÃƒÂÃ‚Â·ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ ===== */
.egypt-country-wrapper .egypt-hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #d68c45, #f4d4b0, transparent);
    margin: 35px 0 25px;
}

/* ===== Flex-ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¹ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¹ ===== */
.egypt-country-wrapper .egypt-flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.egypt-country-wrapper .egypt-flex-row .egypt-flex-grow {
    flex: 1 1 250px;
}

.egypt-country-wrapper .egypt-flex-row .egypt-flex-shrink {
    flex: 1 1 200px;
}

/* ===== ÃƒÂÃ¢â‚¬ËœÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚Âº Ãƒâ€˜Ã‚Â Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹ / CTA ===== */
.egypt-country-wrapper .egypt-cta-box {
    background: #1e2a3a;
    color: #ffffff;
    border-radius: 24px;
    padding: 28px 34px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.egypt-country-wrapper .egypt-cta-box .egypt-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 2 1 300px;
}

.egypt-country-wrapper .egypt-cta-box .egypt-cta-text strong {
    color: #f4a261;
}

.egypt-country-wrapper .egypt-cta-box .egypt-cta-btn {
    background: #f4a261;
    color: #1e2a3a;
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.egypt-country-wrapper .egypt-cta-box .egypt-cta-btn:hover {
    background: #e6904a;
    transform: scale(1.02);
}

/* ===== ÃƒÂÃ‚ÂÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¿Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â² ===== */
@media (max-width: 800px) {
    .egypt-country-wrapper {
        padding: 25px 0px;
    }
    .egypt-country-wrapper .egypt-grid-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .egypt-country-wrapper .egypt-grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .egypt-country-wrapper .egypt-h1 {
        font-size: 1.8rem;
    }
    .egypt-country-wrapper .egypt-h2 {
        font-size: 1.5rem;
    }
    .egypt-country-wrapper .egypt-cta-box {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .egypt-country-wrapper .egypt-cta-box .egypt-cta-btn {
        white-space: normal;
    }
}
.mini-galery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px;
}
.mini-galery img{
    width: 100%;
    max-width: 148px;
    height: 148px;
    object-fit: cover;
    transition:0.3s;
}
.mini-galery img:hover{
	transform:scale(1.1);
	transition:0.3s;
	height: auto;
}
.fa-mask-snorkel:before{
    content: "\f043"
}
.fa-rug:before {
    content: "\f140"
}
.location_item_li{
	position: relative;
	transform:scale(1.0);
	transition:0.3s;
	outline: none;
	box-shadow: 0px 0px 7px 1px #5fc8c2a3;
}
.location_item_li:hover{
	transform:scale(1.1);
	transition:0.3s;
}
.location_item_li h4{
	padding: 0;
	color: black;
	font: 13px / 1.5 var(--font-family);
	font-size: 16px;
	font-weight: 600;
}
.location_item_li .ssilka{
    position: relative;
}
.location_item_li .ssilka img{
    position: relative;
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.location_item_li a{
	position: absolute;
	left: 0;
	top: 0;
	width:100%;
	height:100%;
	outline: none;
}
.location_item_li .details{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    height: 60px;
}
.location_item_li .details img{
    width: 50px;
    box-shadow: 0px 0px 2px 1px #41afaa;
}
.new-aside{
    max-width: 240px;
    box-shadow: 0px 0px 7px 1px #5fc8c2a3;
}
.three-fourth.new-block{
    width: calc(100% - 260px);
}

.seo-block {
    background: #ffffff;
    padding: 15px 25px;
    margin: 30px 0;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 60px;
    box-shadow: 0 0 6px 1px #4ec6de;
}
.seo-block h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 26px;
    color: #0971a5;
    margin-top: 0;
    margin-bottom: 15px;
    align-items: center;
    text-align: center;
}
.seo-block h2 span {
    background: #41AFAA;
    color: white;
    font-size: 14px;
    padding: 2px 12px;
    border-radius: 30px;
    font-weight: 400;
}
.seo-block .intro-text {
    font-size: 16px;
    font-weight: 500;
    color: #41AFAA;
    border-left: 4px solid #41AFAA;
    padding-left: 18px;
    margin-bottom: 10px;
}
.seo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
}
.seo-grid .col{
	max-width: 240px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.seo-grid .col p {
    margin: 0 0 12px 0;
    font-size: 15px;
}
.seo-grid .col strong {
    color: #1f4e4b;
}
.seo-block .hidden-text {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.seo-block .hidden-text p {
    font-size: 15px;
}
.seo-block .read-more-btn {
    display: inline-block;
    margin-top: 0px;
    color: #41AFAA !important;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dashed #41AFAA;
    transition: 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0;
    font-size: 15px;
    height: auto;
    padding: 0px 5px;
    border-radius: 0;
    text-shadow: none;
}
.seo-block .read-more-btn:hover {
    color: #2b7a76;
    border-bottom-color: #2b7a76;
	background:none;
}
.seo-block .read-more-btn:after {
    content: ' ▸';
    font-size: 15px;
}
.seo-block .read-more-btn.active:after {
    content: ' ◄';
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð°Ñ†Ð¸Ñ Ð´Ð»Ñ Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… */
@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .seo-block {
        padding: 20px 15px;
    }
}
.seo-img{
	height: 30px;
	margin-right: 10px;
}
.seo-p{
	display: flex;
	align-items: center;
}
.call_label{
	font-weight: 600;
}

.iblock-add-form__row {
	display: flex;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
.iblock-add-form__label {
	padding-right: 10px;
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 5px;
}
.iblock-add-form__value, .iblock-add-form__value input,.iblock-add-form__value textarea{width: 100%;max-width: 100%;}
.iblock-add-form{
	width: 100% !important;
	max-width: 500px;
	margin: 30px auto 0;
}
.iblock-add-form__footer{
    display: flex;
    justify-content: center;
}
.iblock-add-form__footer input[type="submit"]{
	height: auto;
	line-height: normal;
	padding: 10px 20px;
	font-size: 16px;
}
.podborka-new{
	max-width: 500px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.phone-button{
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
}
.phone-button input[type="text"]{
	max-width: 200px;
	text-align: center;
}
.ttv-search.tablet .ttv-field, .ttv-search.pc .ttv-field{
	display: flex;
	align-items: center;
}
.ttv-catalog .ttv-tour-item .ttv-tour-data .ttv-tour-prices .ttv-tour-price{
	font-size: 18px;
}
.call_label+input{
	text-align: center;
}
.widget .call_label+input{
	text-align: left;
}
.adm-workarea textarea{
	color: black;
	font-weight: 400;
	max-width: 100%;
}
.adm-workarea input[type=button]{
	color: black !important;
	text-transform: none;
	line-height: normal;
}
.scroll-to-top {
    position: fixed;
    right: 8.35rem;
    bottom: 2.5rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #466fff;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
    z-index: 9999;
    padding: 0;
}
.scroll-to-top:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
.scroll-to-top:active {
    transform: translateY(0);
}
.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .scroll-to-top {
        left: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        z-index: 9999999;
    }
}


/* ===== Аккордеоны ===== */
.seo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 4px 16px;
    background: #fff;
    transition: box-shadow 0.2s ease;
    max-width: 290px;
}
.accordion-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 4px 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: #41afaf;
    transition: color 0.2s ease;
    user-select: none;
    outline: none;
}
.accordion-header:hover {
    color: #0071bc;
}
.accordion-header .bold {
    flex: 1 1 auto;
    line-height: normal;
}

.accordion-arrow {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 4px;
    font-style: normal;
}
.accordion-header[aria-expanded="true"] .accordion-arrow {
    transform: rotate(-135deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}
.accordion-body p {
    margin: 0;
}
.accordion-item.open .accordion-body {
    padding: 0 0 16px;
}

/* Класс для выделения */
.bold {
    font-weight: 700;
}

/* Кнопка "Читать подробнее" как div */
.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #0071bc;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}
.read-more-btn:hover {
    background: #005a96;
}