@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    background: #fff;
    font-size: 16px;
    color: #000;
    overflow-x: hidden;
    overflow-y: auto;
}

ul, ol, p, form, input, textarea, select, pre, em, sub, sup, canvas, section, article, aside, img, a, li, iframe, table, nav, header, footer, body, menu, button {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

*, after, before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

body {
    line-height: 1;
    min-height: 100vh;
}

a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}

    a:hover {
        text-decoration: none;
        color: #444;
    }

p {
    line-height: 1.4;
    margin-bottom: 10px;
}

b, strong {
    font-weight: 800;
}

u {
    text-decoration: underline;
}

i, em {
    font-style: italic;
}

img {
    max-width: 100%;
}

.clear {
    clear: both;
}

input[type="button"], input[type="submit"], input[type="reset"],
input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    -webkit-appearance: none;
}

input[type="button"], input[type="submit"], input[type="reset"] {
    cursor: pointer;
    font-size: 16px;
}
/*select::-ms-expand { display: none; }*/
.clearfix {
    clear: both;
}


sup {
    top: -2px;
}

:root {
    /* --pink: #E5366D; */
    --pink: #fc1424;
    --lightPink: #FFDCDC;
    --grey: #686868;
    --black: #000000;
    /* --oceanBlue: #0b399c; */
    --oceanBlue: #0b399c;
    --blue: #043A7F;
}

.pink-color {
    color: var(--pink);
}

.lightpink-color {
    color: var(--lightPink);
}

.grey-color {
    color: var(--grey);
}

.black-color {
    color: var(--black);
}

.oceanblue-color {
    color: var(--oceanBlue);
}

.blue-color {
    color: var(--blue);
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 1230px;
    }
}

h1 {
    font-size: 22px;
    font-weight: 800;
}

h2 {
    font-size: 20px;
    font-weight: 800;
}

h3 {
    font-size: 18px;
    font-weight: 800;
}

h4 {
    font-size: 16px;
    font-weight: 800;
}

.form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #868686;
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: #868686;
}

.form-control:-ms-input-placeholder {
    opacity: 1;
    color: #868686;
}

.form-control:-moz-placeholder {
    opacity: 1;
    color: #868686;
}

.form-label {
    color: var(--oceanBlue);
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 7px;
}

.form-control {
    border-radius: 8px;
    border-color: #A4A4A4;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
    color: #000;
}

.form-select {
    background-size: 18px 14px;
    padding-right: 30px;
}


.btn {
    display: inline-block;
    min-width: 60px;
    border-radius: 10px;
    font-size: 14px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    font-weight: 600;
}

    .btn.btn-primary {
        background: var(--oceanBlue);
        color: #fff;
        border-color: var(--oceanBlue);
    }

        .btn.btn-primary:hover {
            background: #184AB7;
            color: #fff;
            border-color: #184AB7;
        }

    .btn:focus,
    .btn:active {
        outline: none;
        box-shadow: none !important;
    }

    .btn.btn-primary-line {
        background: #fff;
        color: #1A5AD9;
        border-color: #1A5AD9;
    }

        .btn.btn-primary-line:hover {
            background: #2B6CEC;
            color: #fff;
            border-color: #2B6CEC;
        }

    .btn:active,
    .user_links:active,
    .searchbtn:active {
        background: #434955 !important;
        color: #C7D6F3 !important; /*margin-bottom: -2px !important;*/
    }


    .btn.btn-green {
        background: #007D3A;
        color: #fff;
        border-color: #007D3A;
    }

        .btn.btn-green:hover {
            background: #0B9F50;
            color: #fff;
            border-color: #0B9F50;
        }

    .btn.btn-default {
        background: transparent;
        color: var(--oceanBlue);
        border-color: var(--oceanBlue);
    }

        .btn.btn-default:hover {
            background: var(--oceanBlue);
            color: #fff;
            border-color: var(--oceanBlue);
        }

    .btn.btn-delete {
        background: #fff;
        color: #E22E53;
        border-color: #E22E53;
    }

        .btn.btn-delete:hover {
            background: #E22E53;
            color: #fff;
            border-color: #E22E53;
        }

    .btn + .btn {
        margin-left: 15px;
    }

    .btn.btn-sm {
        font-size: 13px;
        height: 34px;
        line-height: 34px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn.btn-back {
        background: #C7D6F3;
        color: #1A5AD9;
        border-color: #C7D6F3;
    }

        .btn.btn-back:hover {
            background: #B6C6E4;
            color: #1A5AD9;
            border-color: #B6C6E4;
        }

.btn-skip.btn.btn-default {
    background: #e3ecff;
    color: #1A5AD9;
    border-color: #C7D6F3;
}


.btn-primary-line:hover img {
    filter: brightness(0) invert(1);
}

/*checkbox*/
.checkbox {
    font-size: 14px;
    display: inline-block;
    position: relative;
    margin-right: 12px;
}

    .checkbox input[type="checkbox"] {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        visibility: hidden;
        border: 0;
        margin: 0;
        padding: 0;
    }

    .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 28px;
        margin-bottom: 5px;
        padding-top: 1px;
        font-weight: 400;
        line-height: 1.2;
    }

        .checkbox label:before {
            content: "";
            background: #fff;
            width: 22px;
            height: 22px;
            position: absolute;
            border: solid 1px var(--oceanBlue);
            border-radius: 4px;
            left: 0;
            top: -2px;
        }

        .checkbox label:hover:before {
            background: #F2F4F9;
            border-color: #707070;
        }

    .checkbox input[type="checkbox"]:checked + label:before {
        background: var(--oceanBlue) url(../images/checkicon.svg) center no-repeat;
        background-size: 12px;
        border-color: var(--oceanBlue);
    }


/*radio*/
.radio {
    font-size: 14px;
    display: inline-block;
    position: relative;
    margin-right: 12px;
}

    .radio input[type="radio"] {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        visibility: hidden;
        border: 0;
        margin: 0;
        padding: 0;
    }

    .radio label {
        display: inline-block;
        position: relative;
        padding-left: 28px;
        margin-bottom: 5px;
        padding-top: 1px;
        font-weight: 400;
        line-height: 1.2;
    }

        .radio label:before {
            content: "";
            width: 24px;
            height: 24px;
            position: absolute;
            border: solid 1px var(--oceanBlue);
            border-radius: 24px;
            left: 0;
            top: -1px;
        }

        .radio label:hover:before {
            background: #F2F4F9;
            border-color: #707070;
        }

    .radio input[type="radio"]:checked + label:before {
        background: var(--oceanBlue) url(../images/checkicon.svg) center no-repeat;
        background-size: 12px;
        border-color: var(--oceanBlue);
    }

    .checkbox:last-child,
    .radio:last-child {
        margin-right: 0;
    }






.header {
    display: block;
    width: 100%;
    padding: 10px 0 16px 0;
    background: #fff;
    position: relative;
    box-shadow: 0 2px 0 #ECF2F2;
}

.header_full {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items:center;
}

.logo {
    display: inline-block;
}

    .logo img {
        height: 82px;
    }

.header_right {
    padding-left: 30px;
}

.header_top {
    display: block;
    width: 100%;
    text-align: right;
}

.support_nbox {
    text-align: left;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    background: var(--lightPink);
}

.supportnumber {
    display: inline-block;
    padding-left: 55px;
    position: relative;
    padding-top: 5px;
}

    .supportnumber:before {
        content: "";
        width: 46px;
        height: 46px;
        border-radius: 60px;
        position: absolute;
        left: 0;
        top: 0;
        background: var(--pink) url(../images/call-icon.svg) center no-repeat;
    }

    .supportnumber span {
        display: block;
        width: 100%;
        font-size: 11px;
        color: #3D3D3D;
    }

    .supportnumber h2 {
        display: block;
        width: 100%;
        font-size: 20px;
        color: var(--pink);
        font-weight: 800;
        padding-top: 5px;
    }

.supportdays {
    text-align: left;
    display: inline-block;
    padding-left: 10px;
    vertical-align: top;
    padding-top: 2px;
}

    .supportdays div {
        display: inline-block;
        font-size: 12px;
        font-style: italic;
        color: var(--oceanBlue);
        margin-top: 4px;
        font-weight: 500;
    }

        .supportdays div:nth-of-type(2n) {
            padding-left: 5px;
            margin-left: 5px;
            border-left: solid 1px #3D3D3D;
        }

        .supportdays div:nth-of-type(3n) {
            display: block;
            clear: both;
        }

        .supportdays div span {
            color: #3D3D3D;
        }

.userProfileNav {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    vertical-align: top;
    margin-top: 0;
}

.userProfileNav_header {
    display: block;
    width: 100%;
    cursor: pointer;
    padding: 13px;
    text-align: right;
    font-size: 16px;
    border: solid 1px var(--oceanBlue);
    border-radius: 20px;
}

    .userProfileNav_header small {
        font-size: 12px;
        font-style: italic;
        color: var(--grey);
        display: block;
        width: 100%;
        padding-bottom: 4px;
    }

.dropdown-toggle::after {
    border: 0;
    background: url(../images/down-arrow.svg) center no-repeat;
    width: 12px;
    height: 10px;
    vertical-align: middle;
    margin-left: 5px;
}

.dropdown-menu a i {
    width: 24px;
    text-align: center;
}

nav {
    display: block;
    width: 100%;
    margin-top: 20px;
}

    nav ul li {
        display: inline-block;
        margin-left: 10px;
    }

        nav ul li a {
            display: inline-block;
            font-size: 16px;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 400;
        }

            nav ul li a:hover {
                color: var(--grey);
            }

            nav ul li a.active {
                background: var(--oceanBlue);
                color: #fff;
            }

@media screen and (min-width: 768px) {
    .header .nav {
        display: block !important;
    }
}

.middleContent {
    display: block;
    width: 100%;
    min-height: calc(100vh - 350px);
}

.homebanner {
    display: block;
    width: 100%;
    background: url(../images/good_life_bg.jpg) no-repeat;
    background-size: cover;
    padding: 70px 0;
    position: relative;
    min-height: calc(100vh - 150px);
}

    .homebanner:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.15);
        z-index: 1;
    }

    .homebanner .container {
        position: relative;
        z-index: 2;
    }

.footer {
    display: block;
    width: 100%;
    background: var(--blue);
    padding: 40px 0;
}

.footerCol {
    color: #fff;
}

    .footerCol h4 {
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 24px;
    }

.copyrighttext {
    font-size: 12px;
}

.openinghoursp {
    font-size: 14px;
}

    .openinghoursp p {
        margin-bottom: 5px;
    }

.footernav {
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
}

    .footernav li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 13px;
    }

        .footernav li:before {
            content: "";
            width: 2px;
            height: 2px;
            background: #fff;
            position: absolute;
            left: 0;
            top: 7px;
            opacity: 0.7;
        }

    .footernav a {
        color: #fff;
        min-width: 86px;
        display: inline-block;
    }

        .footernav a:hover {
            text-decoration: underline;
        }

.cheakavalibility {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.welagent {
    display: block;
    width: 100%;
    color: var(--grey);
}


.supportBoxFooter {
    display: none;
}

.navMobile {
    display: none;
}


.cheakavalibility .row .col {
    max-width: 20%;
}

    .cheakavalibility .row .col.halfhalf-col {
        max-width: 25%;
    }

    .cheakavalibility .row .col.full-col {
        max-width: 100%;
    }

.searchFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.searchbutton {
    background: var(--pink);
    padding: 0;
    line-height: 46px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    height: 46px;
    width: 156px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .searchbutton:after {
        content: "";
        width: 20px;
        height: 20px;
        background: url(../images/search-white.svg) center no-repeat;
        display: inline-block;
        margin-left: 8px;
    }

    .searchbutton:hover {
        background: #f5598a;
    }

.clearbutton {
    display: inline-block;
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin-right: 15px;
    background: #fff;
    border-bottom: solid 1px;
    padding-bottom: 2px;
}

    .clearbutton img {
        margin-top: 1px;
        display: inline-block;
        vertical-align: top;
    }

    .clearbutton:hover {
        color: #000;
    }

.advancedSearch {
    display: inline-block;
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin-right: 15px;
    background: #fff;
    border-bottom: solid 1px;
    height: 18px;
    padding-bottom: 2px;
    cursor: pointer;
}

    .advancedSearch:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(../images/down-arrow.svg) center no-repeat;
        vertical-align: middle;
        margin-bottom: 1px;
    }

    .advancedSearch:hover {
        color: #000;
    }

    .advancedSearch.shows:after {
        transform: rotate(-180deg);
    }

/*.advancedSearchContent{ display: none; }*/

.cheakavalibility .nav-tabs {
    padding-left: 210px;
    margin-top: -36px;
}

.nav-tabs {
    border-bottom: 2px solid var(--oceanBlue);
}

    .nav-tabs button {
        font-size: 15px;
        color: #3D3D3D;
        font-weight: 500;
        padding: 15px 16px;
    }

    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
        border-color: transparent;
        color: #888;
    }

    .nav-tabs .nav-link {
        border-width: 2px;
        margin-bottom: -2px;
    }

        .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
            color: #000;
            border-color: var(--oceanBlue) var(--oceanBlue) #fff;
        }

.tab-content > .tab-pane {
    padding-top: 30px;
}



.page-title-section {
    display: block;
    width: 100%;
    padding: 28px 0;
    background: #EAF3FF;
}

.breadcrumbs_nav {
    display: block;
    width: 100%;
}

    .breadcrumbs_nav ul li {
        display: inline-block;
        font-size: 12px;
        color: var(--grey);
        position: relative;
    }

        .breadcrumbs_nav ul li a {
            color: var(--oceanBlue);
            font-weight: 500;
        }

        .breadcrumbs_nav ul li:after {
            content: "/";
            display: inline-block;
            padding-left: 5px;
        }

        .breadcrumbs_nav ul li:last-child:after {
            display: none;
        }

.filterbysection {
    display: block;
    width: 100%;
}

    .filterbysection .cheakavalibility {
        padding: 0;
        background: transparent;
    }

.section-full {
    display: block;
    width: 100%;
    padding: 70px 0;
}

    .section-full:before, .section-full:after {
        content: "";
        display: block;
        clear: both;
    }

.accordion-button {
    outline: none;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0px;
    border-radius: 0 !important;
}

.accordion-item {
    border: 0;
    border-bottom: solid 1px #959595;
    border-radius: 0;
}

@media screen and (min-width: 992px) {
    .filterbysection {
        display: block !important;
    }
}

.accordion {
    border-top: solid 1px #959595;
}

.filterbysection .accordion-button {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
    font-weight: 600;
}

    .accordion-button:not(.collapsed)::after {
        filter: invert(0) brightness(0);
        -webkit-filter: invert(0) brightness(0);
    }

.filterbysection .cheakavalibility .row .col {
    max-width: 100%;
    flex: 1 0 100%;
}

    .filterbysection .cheakavalibility .row .col.half-col-filter {
        max-width: 50%;
        flex: 1 0 50%;
    }

.accordion-body {
    padding-left: 0;
    padding-right: 0;
}

.accordion-item:last-of-type .accordion-collapse,
.accordion-item:last-of-type {
    border-radius: 0;
}

.filterbysection .searchwithclear {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center;
}

.filterbysection .cheakavalibility .row .col .mb-4 {
    margin-bottom: 0.7rem !important;
}

.filterbysection .cheakavalibility .row .col .mt-4 {
    margin-top: 0 !important;
}

.filterbysection .cheakavalibility .checkbox {
    min-width: 49%;
    margin-right: 0;
    font-size: 13px;
}

.result_sortcontent {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: solid 2px var(--oceanBlue);
    padding-bottom: 16px;
}

.viewingtext {
    color: #868686;
}

.result_blocks {
    display: block;
    padding-left: 30px;
}

.sortbysearch {
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
}

    .sortbysearch span {
        color: #868686;
        display: inline-block;
        padding-right: 5px;
    }

    .sortbysearch .form-select {
        height: 32px;
    }

.sorttxtbox {
    display: inline-flex;
    align-items: center;
}

.rowcolbuttons button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
    border: 0;
    display: inline-block;
    margin-right: 5px;
}

    .rowcolbuttons button.active {
        background: #ECF2F2;
    }

.article-toppart {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

.articleTitleblock {
    padding-right: 30px;
}

    .articleTitleblock h3 {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: var(--oceanBlue);
        margin-bottom: 8px;
        min-height:47px;
    }

        .articleTitleblock h3 a {
            color: inherit;
        }

.article-box {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 2px var(--oceanBlue);
    padding: 26px 0;
}

.article-image {
    width: 314px;
    height: 234px;
    min-width: 314px;
    position:relative;
}

    .article-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-content {
    flex-grow: 1;
    padding-left: 26px;
}

.filterbysection .form-label {
    font-size: 13px;
    margin-bottom: 4px;
}
/*.filterbysection .form-control{ height: 30px;  }*/
.filterbysection .form-select {
    padding-right: 22px;
    background-position: right 0.25rem center;
}

.filterbysection .cheakavalibility .checkbox.mb-3 {
    margin-bottom: 0.4rem !important;
}

.locationblock {
    display: inline-block;
    font-size: 12px;
    padding-left: 20px;
    color: var(--grey);
    background: url(../images/locationicon.svg) 0 0 no-repeat;
    line-height: 15px;
}

.typeoftext {
    display: inline-block;
    font-size: 12px;
    padding-left: 15px;
    color: var(--grey);
    line-height: 15px;
}

    .typeoftext:before {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50px;
        background: #686868;
        display: inline-block;
        margin-right: 15px;
        vertical-align: middle;
    }

.ratingblock {
    display: block;
    font-size: 12px;
    margin-top: 15px;
    color: var(--grey);
    line-height: 15px;
    font-style: italic;
}

    .ratingblock img {
        display: inline-block;
        vertical-align: top;
    }

    .ratingblock span {
        padding-top: 2px;
        display: inline-block;
    }

.articlePriceblock {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 1;
}


.threeOptionss {
    display: inline-flex;
}

    .threeOptionss a {
        width: 32px;
        height: 32px;
        display: inline-block;
        min-width: 32px;
        border-radius: 50px;
        margin-right: 2px;
    }

        .threeOptionss a.emailClick {
            background: url(../images/email-icon.svg) center no-repeat;
        }

        .threeOptionss a.printClick {
            background: url(../images/print-icon.svg) center no-repeat;
        }

        .threeOptionss a.downloadClick {
            background: url(../images/download-icon.svg) center no-repeat;
        }

        .threeOptionss a.favouriteClick {
            background: url(../images/heart-icon.svg) center no-repeat;
        }

            .threeOptionss a.favouriteClick.favorite {
                background: var(--lightPink) url(../images/heart-filled-icon.svg) center no-repeat;
            }

        .threeOptionss a:hover {
            background-color: var(--lightPink);
        }

.articlePrice {
    display: inline-block;
    text-align: right;
    padding-left: 20px;
    white-space: nowrap;
}

    .articlePrice strong {
        color: var(--pink);
        font-size: 18px;
        font-weight: 600;
    }

    .articlePrice p {
        font-size: 12px;
        color: var(--grey);
        font-style: italic;
    }

.amenities_show {
    display: block;
    width: 100%;
    padding: 8px 0;
}

    .amenities_show ul {
        display: flex;
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: center;
    }

        .amenities_show ul li {
            padding: 0;
            font-size: 12px;
            color: var(--grey);
            margin: 15px 0;
        }

            .amenities_show ul li span {
                width: 100%;
                height: 20px;
                display: block;
            }

            .amenities_show ul li label {
                display: block;
                margin: 0;
                padding: 3px 0 0 0;
            }

.article-bottom-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 0;
}

    .article-bottom-box .article-desc {
        max-width: 70%;
        font-size: 13px;
        color: var(--grey);
        line-height: normal;
        max-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

        .article-bottom-box .article-desc p {
            line-height: normal;
        }

.result_blocks_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.paginationBlock {
    display: inline-block;
}

    .paginationBlock ul {
        display: flex;
        align-items: center;
    }

        .paginationBlock ul li {
            display: inline-block;
            margin: 5px 3px;
        }

            .paginationBlock ul li a {
                min-width: 34px;
                height: 34px;
                line-height: 32px;
                border: solid 1px #000;
                border-radius: 4px;
                text-align: center;
                padding: 0 10px;
                font-size: 14px;
                font-weight: 500;
                display: inline-block;
            }

                .paginationBlock ul li a:hover,
                .paginationBlock ul li.active a {
                    background: var(--pink);
                    color: #fff;
                    border-color: var(--pink);
                }

            .paginationBlock ul li.active a {
                cursor: default;
                pointer-events: none;
            }

            .paginationBlock ul li.prev a:after {
                content: "Prev";
                padding-left: 5px;
            }

            .paginationBlock ul li.next a::before {
                content: "Next";
                padding-right: 5px;
            }

            .paginationBlock ul li.disabled {
                display: none;
            }



.selectpicker_custom {
    display: block;
    clear: both;
    width: 100%;
    position: relative;
    z-index: 10;
}


    .selectpicker_custom .picker {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        position: relative;
        font-weight: 400;
        min-height: 38px;
        opacity: 1;
        box-shadow: none;
        outline: none;
        border: solid 1px #9ea2ab;
        border-radius: 4px;
        background-color: #fff;
        padding-left: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 8px;
        border-color: #A4A4A4;
        padding-right: 35px;
        font-size: 14px;
        color: #000;
    }

        .selectpicker_custom .picker > .pc-element {
            font-size: 14px;
            color: #fff;
            background-color: var(--oceanBlue);
            padding: 5px 28px 5px 10px;
            border-radius: 50px;
            font-weight: 400;
            border: 0;
            margin: 3px 8px 3px 0;
        }

        .selectpicker_custom .picker .pc-select {
            height: 100%;
            display: block;
            width: auto;
            max-width: 100%;
            position: absolute;
            z-index: 0;
            top: 0;
            min-width: 100%;
            left: 0;
        }

            .selectpicker_custom .picker .pc-select .pc-trigger {
                margin: 0;
                position: absolute;
                border: 0;
                line-height: 37px;
                padding-left: 12px;
                color: #000;
                border-radius: 8px;
                top: 0;
                bottom: 0;
            }

        .selectpicker_custom .picker .pc-element + .pc-select .pc-trigger {
            color: transparent;
        }

        .selectpicker_custom .picker .pc-select .pc-trigger:after {
            content: "";
            width: 14px;
            height: 14px;
            background: url(../images/down-arrow.svg) center no-repeat;
            position: absolute;
            top: 50%;
            right: 7px;
            z-index: 1;
            transform: translate(0, -50%);
            -webkit-transform: translate(0, -50%);
            background-size: 100%;
        }

        .selectpicker_custom .picker .pc-select .pc-list {
            border-radius: 0px;
            border: 0;
            top: 100%;
        }

            .selectpicker_custom .picker .pc-select .pc-list ul {
                border: solid 1px #000;
                border-radius: 0;
                max-height: 175px;
                -webkit-overflow-scrolling: touch;
                padding: 0 0;
                box-shadow: 0 2px 3px rgb(0 0 0 / 30%);
            }

            .selectpicker_custom .picker .pc-select .pc-list li {
                padding: 5px 14px;
                color: #000;
                font-weight: 400;
            }

                .selectpicker_custom .picker .pc-select .pc-list li:hover {
                    background: var(--oceanBlue);
                    color: #fff;
                }

        .selectpicker_custom .picker:focus {
            border-color: #86b7fe;
        }

.picker .pc-element .pc-close, .picker .pc-trigger .pc-close {
    right: 1px;
    width: 20px;
    height: 20px;
    font-size: 0;
    background: url(../images/close-white.svg) center no-repeat;
}

.filetypesSelect {
    display: block;
    font-size: 13px;
    font-style: italic;
    margin-top: 2px;
    color: #888;
}


.selected_images {
    display: block;
    width: 100%;
}

    .selected_images ul li {
        display: inline-block;
        position: relative;
        margin: 15px 15px 0 0;
    }

        .selected_images ul li img {
            width: 135px;
            height: 135px;
            border-radius: 6px;
            object-fit: cover;
        }

        .selected_images ul li.primaryImage img {
            border: solid 2px #F2C300;
        }

.ratings_select {
    position: relative;
    z-index: 11;
}

.homebanner.beforelogins {
    min-height: 50px
}

.donthavetext {
    display: block;
    width: 100%;
}

    .donthavetext a {
        color: var(--oceanBlue);
        font-weight: 600;
        white-space: nowrap;
    }

        .donthavetext a:hover {
            text-decoration: underline;
        }

.anchorlink {
    display: inline-block;
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
    border-bottom: solid 1px;
    padding-bottom: 2px;
}

.userwhitebox {
    display: block;
    width: 100%;
    max-width: 394px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.logforpass.userwhitebox {
    min-height: 415px;
    margin-left: auto;
}

.section-title {
    display: block;
    color: var(--oceanBlue);
    border-bottom: solid 2px var(--oceanBlue);
    font-size: 22px;
    padding-bottom: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.userwhitebox-bordered {
    border: solid 1px var(--oceanBlue);
}

.bgdesktop {
    display: block;
    width: 96%;
    height: 760px;
    background: url(../images/good_life_bg.jpg) no-repeat;
    background-size: cover;
}


.refno {
    display: inline-block;
    font-size: 12px;
    color: var(--grey);
    line-height: 15px;
    font-style: italic;
}

    .refno span {
        color: var(--oceanBlue);
    }

.article-box .refno:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50px;
    background: #686868;
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

.article-box .refno {
    padding-left: 15px;
}

.articleDetail-page .locationblock,
.articleDetail-page .typeoftext,
.articleDetail-page .refno {
    font-size: 14px;
}

.ratingtype {
    margin-left: 24px;
}

.articleDetail-page .articlePrice strong {
    font-size: 28px;
}

.articleDetail-page .articleTitleblock {
    flex-grow: 1;
}

.articleDetail-page .articlePriceblock {
    flex-grow: 0;
}

.communityInfo {
    padding-left: 65px;
}

.articleTitleblock h1 {
    font-size: 24px;
}

@media screen and (min-width: 992px) {
    .amenities_show ul li label {
        font-size: 16px;
    }
}

@media screen and (max-width:991px) {
    .result_blocks_footer {
        padding-left: 0 !important
    }
}

.featuresList {
    display: flex;
    flex-wrap: wrap;
}

    .featuresList li {
        width: 32%;
        padding-right: 20px;
        position: relative;
        padding-left: 13px;
        color: var(--grey);
        line-height: normal;
        margin-bottom: 10px;
    }

        .featuresList li:before {
            content: "";
            width: 2px;
            height: 2px;
            background: var(--grey);
            position: absolute;
            left: 0;
            top: 12px;
        }

.avalibilitydata {
    width: 100%;
}

    .avalibilitydata th, .avalibilitydata td {
        text-align: center;
        padding: 10px;
    }

    .avalibilitydata thead th {
        font-size: 14px;
        color: var(--grey);
        font-weight: 400;
    }

    .avalibilitydata td {
        font-size: 15px;
        font-weight: 600;
        color: var(--grey);
        vertical-align: middle;
    }

    .avalibilitydata .repeattr {
        background: #F5FFFE;
        border: solid 1px #A8F1ED;
    }

.blanktr td {
    padding: 5px;
}

.articleSlider {
    display: flex;
    width: 100%;
}

.articleMainimg {
    width: 74%;
    min-width: 74%;
    flex-grow: 1;
    position: relative;
}

    .articleMainimg img {
        height: 540px;
    }

.articleSlider img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.articleSubimg {
    margin-left: 4px;
    min-width: 26%;
}

    .articleSubimg div {
        margin-top: 4px;
        position: relative;
    }

        .articleSubimg div:first-child {
            margin-top: 0;
        }

    .articleSubimg img {
        height: 177px;
    }

.otherimagesCount {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    line-height: normal;
}

.communityimages {
    display: inline-block;
    position: relative;
    width: 270px;
}

    .communityimages img {
        height: 178px;
        width: 100%;
        display: block;
        object-fit: cover;
    }

.articleMainimg .otherimagesCount {
    display: none;
}

.communityInfo .featuresList li {
    width: 49%;
}

.hidden-article-images {
    display: none;
}



/*/ Loader Style /*/
.fullloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 85%);
    z-index: 1062;
    /* backdrop-filter: blur(1.5px);*/
}

    .fullloader div {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .fullloader svg {
        overflow: visible;
    }

        .fullloader svg path {
            stroke: #0b399c;
            stroke-width: 2px;
            stroke-linecap: round;
            fill: none;
            stroke-dasharray: 200;
            stroke-dashoffset: 400;
            animation: loaderline 4s linear infinite;
            -webkit-animation: loaderline 4s linear infinite;
        }

@keyframes loaderline {
    0% {
        stroke-dashoffset: 200;
        stroke-dashoffset: 400;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 200;
        stroke-dasharray: 400;
        stroke-width: 1px;
        fill: #0b399c;
    }
}

@-webkit-keyframes loaderline {
    0% {
        stroke-dashoffset: 0;
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0;
        stroke-width: 1px;
        fill: #0b399c;
    }
}

/*/ Loader Style END /*/


textarea.form-control {
    min-height: 100px;
}

.listoflist .refno {
    margin-right: 24px;
}

.infoset {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px #dbdbdb;
}

    .infoset label {
        color: var(--grey);
    }

    .infoset strong {
        font-weight: 600;
    }

/*    booking end*/
.flfull.featuresList li {
    max-width: 100%;
    width: 100%;
    color: #000;
}

.userwhitebox {
    max-width: 500px;
}

.titleText {
    color: #184AB7;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

.idText {
    color: #184AB7;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 20px;
}

.subTitleText {
    color: #777;
    font-weight: normal;
    font-size: 16px;
}

.rowWiseShow .articlePriceblock .articlePrice {
    flex-grow: 1;
}


.article-desc.full-desc {
    overflow: visible;
    text-overflow: inherit;
    display: block;
    max-height: inherit;
    max-width: 100%;
}

.articleouter-box .article-box {
    border: 0;
}

.articleouter-box {
    border-bottom: solid 2px var(--oceanBlue);
    padding-bottom: 16px;
}

.villasdetails {
    display: block;
    width: 100%;
    border-top: dashed 1px #CFCFCF;
    padding: 18px 0 0 0;
    margin-top: 10px;
}

.villasdetails-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 1.05rem;
}

    .villasdetails-header .prshowleft {
        display: inline-flex;
        align-items: center;
    }

        .villasdetails-header .prshowleft h5 {
            margin-bottom: 0;
            padding-right: 5px;
        }

.villasdetails-list {
    display: flex;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;
}

    .villasdetails-list div {
        display: block;
        text-align: center;
        padding: 10px 5px;
        border: solid 1px #A8F1ED;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .villasdetails-list label {
        display: block;
        font-size: 12px;
        font-weight: 400;
        color: var(--grey);
        padding-bottom: 8px;
    }

.article-box + .villasdetails {
    margin-top: 0;
}

.villasdetails-list div {
    width: 12.50%;
    margin-right: 2%;
}

    .villasdetails-list div:nth-of-type(7n-14) {
        margin-right: 0;
    }

@media screen and (max-width: 1199px) {
    .villasdetails-list div {
        width: 18.33%;
        margin-right: 2%;
    }

        .villasdetails-list div:nth-of-type(7n-14) {
            margin-right: 2%;
        }

        .villasdetails-list div:nth-of-type(5n-10) {
            margin-right: 0%;
        }
}

@media screen and (max-width: 767px) {
    .villasdetails-list {
        overflow: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

        .villasdetails-list div {
            width: auto;
            padding-left: 15px;
            padding-right: 15px;
        }

    .villasdetails-header .prshowleft span {
        display: inline;
    }

    .villasdetails-header .prshowleft strong {
        display: inline;
        white-space: nowrap;
    }

    .villasdetails-header .prshowleft {
        flex-wrap: wrap;
        padding-right: 10px;
        max-width: 70%;
        display: block;
        padding-top: 5px;
    }

    .villasdetails-header {
        font-size: 1rem;
    }

        .villasdetails-header .btn {
            white-space: nowrap;
        }

    .articleouter-box .article-bottom-box {
        margin-left: 0;
    }

    .villasdetails-list div {
        margin-right: 2% !important;
    }
}

@media screen and (max-width: 575px) {
    .articleouter-box .article-image {
        width: 100%;
        height: 150px;
    }

    .articleouter-box .article-box {
        flex-wrap: wrap;
    }

    .articleouter-box .article-content {
        padding-left: 0;
        padding-top: 15px;
    }
}


.prrates .avalibilitydata td,
.prrates .avalibilitydata th {
    font-size: 12px;
}

/*-- index with feature list--*/
.bannertop {
    display: block;
    width: 100%;
    background: url(../images/front/bannerimg.png) no-repeat;
    background-size: cover;
    padding: 70px 0;
    position: relative;
    min-height: 520px;
}

.feature-section {
    padding: 55px 0 60px;
}

    .feature-section h2 {
        font-weight: normal;
        font-size: 30px;
        margin: 0 0 20px;
    }

        .feature-section h2 span {
            font-weight: 600;
        }

.featured-item {
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
    min-height: 369px
}

.featured-item-img {
    height: 235px;
    width: 100%;
    object-fit: cover
}

.featured-item-content h3 {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--oceanBlue);
    margin: 10px 0 0;
    min-height: 152px
}

.featured-item-content {
    padding: 15px 15px 5px;
}

    .featured-item-content .amenities_show ul {
        justify-content:flex-start
    }
       

        .featured-item-content .amenities_show ul li label {
            font-size: 12px;
        }
        .featured-item-content .amenities_show ul li:first-child {
            margin-left:0
        }
        .featured-item-content .amenities_show ul li:last-child {
            margin-right:0px
        }
            .featured-item-content .amenities_show ul li {
                margin: 5px 10px 5px
            }

.feature-section.news-section {
    background: #E3F0EF;
}

.news-items {
    background: #fff;
    padding: 15px;
    font-size: 16px;
    color: #383838;
    min-height:260px
}

.news-post-by {
    font-size: 14px;
    color: #797979;
}

.news-items h3 {
    font-size: 18px;
    color: #0b399c;
    font-weight: 500;
    margin: 0 0 10px;
}

.news-date {
    font-size: 13px;
    color: #797979;
}

.banner-item {
    position: relative;
}

    .banner-item img {
        width: 100%;
        height: 314px;
        object-fit: cover;
    }

.banner-item-content {
    position: absolute;
    width: 88%;
    margin: auto;
    bottom: 20px;
    background: rgba(255,255,255,.9);
    padding: 15px;
    left: 0;
    right: 0;
}

    .banner-item-content h4 {
        font-size: 19px;
        font-weight: 500;
        color: #000;
    }

    .banner-item-content .banner-date {
        font-size: 13px;
        color: #0b399c;
    }

@media screen and (max-width:1440px) {
    .featured-item-content .amenities_show ul li {
        margin: 5px 7px 5px;
    }
}
    

    @media screen and (max-width:992px) {
        .banner-item-content h4 {
            font-size: 15px;
        }
    }

    @media screen and (max-width:991px) {
        .featured-item-content .amenities_show ul {
            justify-content: flex-start;
        }

            .featured-item-content .amenities_show ul li {
                margin-right: 8px;
            }
    }

    @media screen and (max-width:767px) {
        .banner-item-content h4 {
            font-size: 19px;
        }
    }

    /*-- index with feature list--*/

#propertyMap {
    height: 350px
}

.like-unlike-btn{
    position:absolute;
    right:10px;
    top:10px;
}
.textTrunk {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sp-offer-tag {
    color: var(--oceanBlue);
    font-size:15px;
    margin:15px 0 0;
}
.sp-offer-tag span{
    font-weight:500
    }