﻿/*--------------------------------------------------------------
CONTENTS:
- Resets
- Layout and Typography
- Forms
- Common Styles
- Search Landing Pages
- Full Search Landing Page
- Search Results Page
- Single Listing Page 
- Carousel
- Media Queries
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

#blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F1F1F1;
    filter: Alpha(opacity=1);
    opacity: 0.4;
    z-index: 12345673;
    height: 100%;
}

pre {
    clear: both;
    border-style: solid;
    border-width: 1px;
    overflow: auto;
    padding: 2em;
    line-height: 2em;
    font-size: .75rem;
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
    background-image: -moz-linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
    background-image: linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
    background-size: 100% 4em;
    font-family: Monaco, "Andale Mono", "Courier New", Courier, monospace;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    margin-bottom: 30px;
    position: relative;
    left: 0;
    text-transform: none;
    width: 100%;
}

code {
    font-family: Monaco, "Andale Mono", "Courier New", Courier, monospace;
}

iframe, object, embed {
    max-width: 100%;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

sub {
    vertical-align: sub;
    font-size: smaller;
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
    margin-top: 1.5em;
}

p {
    margin: 0.85em 0;
}

    p img {
        margin: 0;
    }

    p a, p a:visited {
        line-height: inherit;
    }

hr {
    border: solid #ddd;
    border-width: 1px 0 0;
    clear: both;
    margin: 10px 0 30px;
    height: 0;
}

em {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

blockquote {
    border-left-style: solid;
    border-left-width: 7px;
    padding-left: 20px;
    margin-bottom: 1em;
    margin-right: 1em;
    font-size: 1.235em;
    line-height: 1.5em;
}

    blockquote small, blockquote cite, blockquote small a, blockquote cite a, blockquote a small, blockquote a cite {
        font-size: .75rem;
    }

mark {
    background-color: transparent;
    color: inherit;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

img, a img {
    border: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    max-width: 100%;
    height: auto;
    image-rendering: optimizeQuality;
}

ul, ol {
    list-style: none;
    margin-bottom: 20px;
}

ol {
    list-style: decimal;
    /*margin-left: 15px;*/
}

/*ul li:before {
    content: "";
    margin-left: -0.5rem;
}*/

ol li:before {
    content: "";
    margin-left: 0.5rem;
}

ul.square {
    list-style: square outside;
}

ul.circle {
    list-style: circle outside;
}

ul.disc {
    list-style: disc outside;
}

ul ul, ul ol, ol ol, ol ul {
    margin: 4px 0 5px 30px;
}

    ul ul li, ul ol li, ol ol li, ol ul li {
        margin-bottom: 6px;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: .8125rem;
}

    table caption {
        padding: 0 0 5px 0;
        width: auto;
        font-style: italic;
        text-align: right;
        font-size: .75rem;
    }

th {
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    padding: 9px 12px;
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-top: none;
}

td {
    font-size: .8125rem;
    padding: 9px 12px;
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-top: none;
}

tr th:first-child,
tr td:first-child {
    border-left-style: solid;
    border-left-width: 1px;
}

tr:first-child th,
tr:first-child td {
    border-top-style: solid;
    border-top-width: 1px;
}
/* LAYOUT & TYPOGRAPHY*/
body {
    font: 16px/1.65em 'Open Sans','HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #444;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.1em;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
        text-decoration: none;
        color: inherit;
    }

    h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
        color: inherit;
    }

h1, h2, h3, h4, h5, h6, p, textarea {
    font-family: inherit;
    color: #000;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

h6 {
    font-size: .875rem;
}

a {
    color: #000;
    text-decoration: none;
    outline: 0;
}

    a:hover, a:active {
        outline: 0;
        color: #323537;
        text-decoration: none;
    }

.full-width {
    width: 100%;
    display: block;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.clearboth {
    clear: both;
}

.wrapper {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

.Language {
    float: right;
    text-align: right;
    margin-bottom: 5px;
    width: 100%;
}

.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    clear: both;
    font-family: inherit;
    color: #000;
    padding: 0 15px;
    word-break:break-word;
}

.row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    clear: both;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
}

.center {
    text-align: center
}

/*FORMS*/
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    background-color: #333333;
    color: #fff;
    vertical-align: middle;
    -webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .btn.focus, .btn:focus {
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(0,0,0,.1);
    }

    .btn:hover {
        background-color: #000
    }

.btn-small {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
    margin-right: .5rem;
}

    .btn-small:hover, .load-more .btn:hover {
        background-color: #e5e5e5;
        border-color: #e5e5e5;
    }

    .btn-small a {
        color: #323537;
    }

.glyphicon {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    font-size: 1.25rem;
    padding: 5px 10px;
}

.left-glyph input {
    padding-left: 38px !important;
    margin: 0 !important;
}

.form{
    margin-bottom: 20px;
}

form, fieldset {
    margin-bottom: 20px;
}

.input-text,
input[type="text"],
input[type="input"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="search"],
textarea,
select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 1em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0px;
}

    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    input[type="number"]:focus,
    input[type="url"]:focus,
    input[type="tel"]:focus,
    input[type="search"]:focus,
    textarea:focus {
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
        color: #555;
    }

input[type="text"] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 40px;
    width: 100%;
    font-size: .875rem;
}

input[type="submit"] {
    border: none;
    height: 40px;
    width: 100%;
    text-transform: uppercase;
    padding: 5px;
    margin-top: 10px;
    font-size: .875rem;
    cursor: pointer;
    -webkit-appearance: button;
}

textarea {
    min-height: 60px;
    line-height: 1.5em;
    width: 100%;
}

label {
    font-weight: bold;
    font-size: 0.92em;
}

legend {
    display: block;
    font-weight: normal;
    font-size: 1.2em;
}

select {
    width: 100%;
}

input[type=checkbox] {
    display: inline;
    padding: 0 !important;
    margin: 4px 5px 0 0 !important;
}

label span,
legend span {
    font-weight: normal;
    font-size: .8125rem;
    color: #444;
}

/*COMMON*/
.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

    .nav-buttons ul {
        display: flex;
        flex-wrap: wrap;
        border-radius: .25rem;
        margin-bottom: 1rem;
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .nav-buttons li {
        margin: 1px;
    }

    .nav-buttons a {
        position: relative;
        display: block;
        padding: .5rem .75rem;
        margin-left: -1px;
        line-height: 1.25;
        background-color: #fff;
        color: #323537;
        border: 1px solid #dae0e5;
    }

    .nav-buttons li:first-child a {
        margin-left: 0;
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }

    .nav-buttons li.all {
        background-color: #E5E5E5;
    }

    .nav-buttons li.active a {
        color: #323537;
        background-color: #f8f9fa;
        border-color: #dae0e5;
        font-weight: 600;
    }

.icon-list {
    display: flex;
    flex-wrap: wrap;
}

    .icon-list a {
        margin-right: 1em;
        white-space: nowrap;
    }

        .icon-list a i, .add-to-favorites i, .phone i, .sendemail i {
            margin-right: .3em
        }

.load-more .btn {
    background-color: #f8f9fa;
    color: #323537;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 2em
}

.category i, .status i, .special-offer i {
    padding-right: .5em;
}


/* LANDING PAGE (Full Search), ALPHABETICAL SEARCH, CATEGORICAL SEARCH */
.search-form {
    margin-bottom: 10px;
    padding: 50px 0 0;
    width: 100%;
}

.search-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 3em;
    padding: .5em 0;
    text-align: center
}

    .search-footer span, .search-footer a {
        padding-right: .8em;
    }

    .search-footer .directory-links a:last-child {
        padding-right: 0;
    }

    /*.extra-search .panel span {
        padding-right: .8em;
    }

    .extra-search a:last-child{
        padding-right:0;
    }

    .search-footer .panel{
        padding-right: .8em;
    }

    .directory-links .panel:last-child{
        padding-right:0;
    }*/

.Unset {
    all: unset;
}

.landing-page .wrapper {
    padding: 0 1em;
}

.cat-search .wrapper {
    padding: 0 1em;
}

.alpha-search .wrapper {
    padding: 0 1em;
}

.filters {
    background: #eee;
    position: relative;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #000;
    font-size: .9375rem;
    font-weight: 500;
    border-radius: 6px;
    margin: 0;
}

    .filters.show + .facets, .filters.show ~ .facet-search {
        display: block;
    }

    

.facet-parent {
    position: static;
}

.facettitle {
    padding: 0 !important;
    line-height: 30px !important;
    border-bottom: 1px solid #eee;
    margin-bottom: .5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .facettitle:hover, .facetitem:hover {
        cursor: pointer;
    }

    .facettitle .direction .up, .facettitle.open .direction .down {
        display: block;
    }

    .facettitle.open .direction .up, .facettitle .direction .down {
        display: none;
    }

    .facettitle.open + .facetlist {
        display: grid;
    }

.facetlist {
    display: none;
    grid-template-columns: repeat(auto-fill,260px);
    overflow-y: auto;
    max-height: 178px;
    width: 100%;
    margin: 0 0 30px;
}

    .facetlist::-webkit-scrollbar {
        width: 12px !important;
    }

.facetitem {
    display: flex;
    font-size: .875rem;
    margin: 0 5px 10px;
    min-height: 25px;
}

.facetitemcount {
    padding: 0 5px;
}

.activefacet {
    color: gray !important;
    font-weight: 700 !important;
}

    /*.activefacet input[type="checkbox"] {
        display: none !important;
    }*/

    .activefacet .tick::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f14a";
        margin-right: 4px !important;
    }

.facetlist::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.listing-type-options {
    margin-bottom: 30px
}

    .listing-type-options .facetitem {
        display: inline-block
    }
/* Handle */
.facetlist::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: gray;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

    .facetlist::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(255,0,0,0.4);
    }

/* CATEGORICAL SEARCH PAGE */
.category-list {
    margin: 2rem 0 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    column-gap: 10px;
}

.grid-item {
    align-items: center;    
    /*display: flex;*/    
    /*justify-content: center;*/
    /*padding: 2rem;*/
    /*text-align: center;*/
}

.cat-name {
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid #dee3e5;
    border-radius: .25rem;
}

/* SEARCH RESULTS PAGE */
.search-results .listings-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 2rem 30px 0;
}

.search-results .listings-wrapper-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 2rem 30px 0;
}

.search-results .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    background: #fff;
}

    .search-results .buttons li {
        margin-bottom: 1em
    }

.search-results .list-item {
    margin-bottom: 3rem;
}

    .search-results .list-item .logo, .search-results .list-item .listing {
        padding: 20px;
        width:100%;
    }

        .search-results .list-item .logo img {
            border-radius: .25rem;
            max-height: 240px;
        }

        .search-results .list-item .listing .description * {
            font: inherit !important;
            font-family: inherit !important;
            font-size: inherit !important;
            color: inherit !important;
            background-color: inherit !important;
            border-top-style: none !important;
            border-top-width: 0 !important;
            text-align: inherit !important;
            border-left-style: none !important;
            border-left-width: 0 !important;
            padding: 0 !important;
            border-style: none !important;
            border-width: 0 !important;
            padding-left: 0 !important;
            text-shadow: inherit !important;
            width: 100% !important;
            margin: inherit !important;
            list-style-position: inside !important;
            text-decoration: none !important;
        }

        .search-results .listing-header {
            display: flex;
            word-break:break-word;
        }

    .search-results .listing-header h3 {
        flex-grow: 1
    }

.featured{
    font-size:initial;
    padding-left:10px;
    vertical-align:top;
}

.search-results .featured .listing-header div i {
    vertical-align: bottom
}

.search-results .listing-header i.far, i.fas {
    margin: 0 7px 0 0;
    cursor: pointer;
}

.special-offer i.far, .special-offer i.fas {
    cursor: initial;
}

.special-offer img {
    max-height:24px;
    max-width:24px;
}

.offerimage {
    max-height: 24px;
    max-width: 24px;
    display:inline;
    padding-right:5px;
    float:left;
}

.offer {
    vertical-align: top;    
}

.filters i {
    padding-left: 5px;
}

.search-results .listing-header img {
    max-height:24px;
    max-width:24px;
}

.search-results .contact-details {
    clear: both;
    font-size: .85em;
    font-weight: bold;
    margin-bottom: .85em;
    line-height: 1.8em
}

.search-results a {
    text-decoration: none;
}

.search-results #map-col {
    margin-left: 0;
    padding: 0;
    height: 300px;
    max-width: 100%;
    position: relative;
    width: 100%;
}

.search-results #map-canvas {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.search-results .sidebar {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transition: 0.5s;
    width: 0;
    z-index: 10000;
    background-color: #f8f9fa;
    width: 0;
    overflow: hidden;
    
}

    .search-results .sidebar.open {
        width: 314px;
        overflow-y: auto;
    }

    .search-results .sidebar .closebtn {
        position: absolute;
        top: 0;
        right: 12px;
        font-size: 1.875rem;
        cursor:pointer;
    }

    .search-results .sidebar .top {
        position: relative;
        height: 210px;
        padding: 1em
    }

.openbtn {
    font-size: 1.2rem;
}

.search-results .facettitle.open + .facetlist {
    display: block
}

.filter-wrapper {
    padding: 1rem;
    overflow-x: hidden;
    height: calc(100% - 210px)
}

    .filter-wrapper .extra-search {
        margin: 40px 0
    }

.search-results .map-wrapper {
    z-index: 998;
    width: 100%;
    height: 100%;
}

/* SINGLE LISTING PAGE */
.single-listing .listing-header, .single-listing .listing-footer {
    background-color: #F7F8F9;
    padding: 1rem;
}

.single-listing .listing-footer {
    text-align: center
}

    .single-listing .listing-footer .phone {
        white-space: nowrap;
    }

    .single-listing .listing-footer .phone h1 {
        font-size: 1.7rem;
    }

.listing-header .breadcrumbs {
    display: none
}

.breadcrumbs-mobile {
    background-color: #F7F8F9;
    padding: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 0.85rem;
}

.nobreadcrumbs-mobile {
    margin-bottom: 3rem;
}

.breadcrumbs a, .breadcrumbs {
    color: #323537;
    text-decoration: none;
    font-size: 0.85rem;
}

    .breadcrumbs a:hover, .breadcrumb a:focus, .breadcrumb > .active {
        text-decoration: none;
    }

.single-listing .contact-info {
    margin-top: 1rem;
    text-align: center;
}

    .single-listing .contact-info .left, .single-listing .contact-info .right {
        flex: 0 0 100%;
    }

    .single-listing .contact-info .right {
        padding-top: 1em
    }

    .single-listing .contact-info .logo {
        flex: 0 0 50%;
        margin: 0 auto
    }

    .single-listing .contact-info .address {
        flex: 0 0 100%;
        word-break:break-word;
    }

    .single-listing .contact-info .logo img {
        border-radius: .25rem
    }

    .single-listing .contact-info .phone {
        white-space: nowrap
    }

        .single-listing .contact-info .phone h1 {
            font-size: 1.7rem
        }

.single-listing .contact-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    align-items: center;
}

.single-listing .listing-footer .contact-buttons {
    margin-bottom: 1em
}

.single-listing .contact-buttons button {
    min-width: 230px
}

.single-listing .contact-buttons .sendmessage {
    width:100%;
}

.single-listing .contact-buttons input[type="button"] {
    min-width: 230px;
}

.single-listing .contact-buttons button.add-to-favorites {
    min-width: 0
}

.single-listing .description :not(img) * {
    width: 100% !important;
    list-style-position: inside !important;
}

.single-listing .description ul {
    list-style: initial !important;    
}

.single-listing .special-offer :not(i) * {
    padding: 0 !important;
    width: 100% !important;
    margin: inherit !important;
    list-style-position: inside !important;
}

.single-listing .special-offer ul {
    list-style: initial !important;
}

.add-to-favorites btn
.social {
    display: flex;
    justify-content: center
}

.social [class*="fab fa-"], .social [class*="far fa-"], .social [class*="fas fa-"] {
    background-color: #333333;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 5px;
    width: 30px;
    font-size: .9375rem;
    text-align: center;
}

.special-offer {
    background-color: #eeeff0;
    border: dashed 1px #adaeaf;
    padding: 10px;
}

    

.search-results .list-item .listing .special-offer :not(i) * {
    font: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
    background-color: inherit !important;
    border-top-style: none !important;
    border-top-width: 0 !important;
    text-align: inherit !important;
    border-left-style: none !important;
    border-left-width: 0 !important;
    padding: 0 !important;
    border-style: none !important;
    border-width: 0 !important;
    padding-left: 0 !important;
    text-shadow: inherit !important;
    width: 100% !important;
    height: inherit !important;
    /*display: inline;*/
    text-decoration: none !important;
}


.search-results .list-item .listing .special-offer span {
    width: inherit !important;
}

.featured:not(.sponsored) .listing {
    background-color: #f8f9fa;
    padding: 20px !important;
}

.override:not(.sponsored) .listing {
    padding: 20px !important;
}

.featured-badge {
    /*color: #fff;*/
    font-size: .8rem;
    font-weight: bold;
    letter-spacing: .3px;
    vertical-align: bottom;
    padding: 0 1em;
    /*background-color: #e4af1f;*/
    /*border-radius: .25rem;*/
    margin-top: 5px;
    display: none;
}

.search-results .featured .featured-badge, .search-results .sponsored i.fa-star {
    display: inline-block;
}

.search-results i.fa-star {
    display: none;
    color: #BC0000;
    cursor: pointer;
    margin: 0 5px 5px
}

.search-results .sponsored {
    /*border-bottom: 4px double #ddd;
    border-top: 4px double #ddd;*/
    /*padding-top: 20px*/
}

.dropdown-menu {
    animation-name: zoomIn;
    animation-duration: 0.1s;
    animation-fill-mode: both;
    right: auto;
    left: auto;
    bottom: auto;
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

    .dropdown-menu.show {
        display: block;
    }

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #323537;
    text-align: inherit;
    white-space: nowrap;
    border: 0;
}

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #585a5d;
    }

    .dropdown-item:focus, .dropdown-item:hover {
        color: #323537;
        text-decoration: none;
        background-color: #f1eff3;
    }

.social .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.single-listing .main, .single-listing .sidebar {
    width: 100%
}

    .single-listing .main > div, .single-listing .sidebar > div {
        /*margin-bottom: 3em*/
    }

    .ListingSection {
        margin-bottom: 3em;
    }

.one-column .main, .one-column .sidebar {
    flex-basis: 100% !important;
    max-width: 960px !important;
    padding: 0 !important;
    margin: 0 auto
}

.detail {
    /*background: #f8f9fa;*/
    padding: 1rem;
    margin: 10px 0;
}

/*.AboutUs ul, ol {
    list-style: initial !important;
    margin:initial !important;
}*/

.other-details .detail > div {
    padding-right: 1em;
}

.our-people .headshot {
    flex: 30%;
    max-width: 30%;
    padding: 0 20px 15px 0;
}

.our-people .name {
    flex: 70%;
    max-width: 70%;
}

.our-people .phone {
    flex: 100%;
    max-width: 100%;
}

.our-people button {
    margin-top: 10px;
    display: block
}

.sendmessagelink {
    cursor:pointer;
}

.single-listing .add-to-favorites {
    margin-top: .5em;
    color: #2a2a2a;
    border-color: #2a2a2a;
    background-color: #fff
}

    .single-listing .add-to-favorites:hover {
        background-color: #2a2a2a;
        color: #fff
    }

.single-listing #place-map-wrapper {
    width: 100%;
    height: 422px;
    border: 1px solid #dee3e5;    
}

.single-listing #place-map-canvas {
    width: 100%;
    height: 100%;
}

.single-listing .map-wrapper {
    z-index: 998;
    width: 100%;
    height: 100%
}

.single-listing #place-map-wrapper2 {
    width: 100%;
    height: 422px;
    border: 1px solid #dee3e5;    
}

.single-listing #place-map-canvas2 {
    width: 100%;
    height: 100%;
}

.single-listing #place-map-wrapper3 {
    width: 100%;
    height: 422px;
    border: 1px solid #dee3e5;
}

.single-listing #place-map-canvas3 {
    width: 100%;
    height: 100%;
}


.single-listing .largermap {
    text-align: center;
    font-size: .9em;
    margin-top: 7px;
}

    .single-listing .largermap a {
        margin: 0 .5em;
    }

.single-listing .directions {
    text-align: center;
    font-size: .9em;    
}

    .single-listing .directions a {
        margin: 0 .5em;
    }

/* Modal Windows */
.close-button {
    float: right;    
    cursor:pointer;    
}

.ui-dialog .ui-dialog-titlebar-close {
    display: none;
}

.modal {
    padding: 1em
}

    .modal form {
        margin-top: 2em
    }

    .modal .actions {
        justify-content: space-around;
    }

        .modal .actions a {
            margin-bottom: .5em;
        }

        .modal .actions i {
            padding-top: .3em;
        }

.contact-list {
    margin: 2em 0;
    border-top: 1px solid #dee3e5;
}

    /*.contact-list .icon-list a {
        margin-right: unset;
    }*/

    .contact-list li {
        display: flex;
        /*flex-wrap: nowrap;*/
        flex-wrap: wrap;
        justify-content: space-between;
        border-bottom: 1px solid #dee3e5;
        padding: 20px 0;
    }

    .contact-list .name {
        white-space: normal;
        flex-basis:65%;
            
    }

    .contact-list .remove-contact {
        margin-right: 0
    }

.print.contact-list li {
    display: block
}

.contact-list .line-item {
    display: flex;
    margin-bottom: 1em
}

.contact-list label {
    flex-basis: 37%;
    margin-right: 3%;
    min-width: 150px
}

.contact-list .value {
    flex-basis: 60%
}

/* CAROUSEL */
.splide__arrow {
    background: transparent;
    color: #fff;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
    border-color: #343a40;
}

.splide svg {
    fill: #fff;
}

.splide__arrow svg {
    width: 2em;
    height: 2em;
}

.splide__arrow.splide-arrow-small svg {
    width: 1em;
    height: 1em;
}

.filter-shadow {
    filter: drop-shadow(1px 0 1px #1d2124);
}

.splide__video__play {
    background: #343a40;
    width: 60px;
    height: 60px;
    opacity: .7;
}

    .splide__video__play:after {
        border-left-color: #fff !important;
        display: inline-block;
        border-color: transparent transparent transparent #000;
        border-style: solid;
        border-width: 14px 0 14px 24px;
    }
/* end CAROUSEL */

/*Start of carousel*/

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    min-height: 500px;
}


.mySlides {
    display: none;
    min-height:500px;
}

.mySlides img {
    max-height: 500px;
}


.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background:grey;
    opacity: 20%;
}


.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
        color:white;
    }


.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #717171;
    }


.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Start of Gallery */
.gallery-container {
    max-width: 1000px;
    position: relative;
    margin: auto;    
}

.gallery-insidecontainer {
    min-height:500px;
}

.galleryheight {
    min-height:500px;
}

.gallery-container img {
    max-height:500px;
}

.cursor {
    cursor: pointer;
}


.gallprev,
.gallnext {
    cursor: pointer;
    position: absolute;
    top: 42%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background: grey;
    opacity: 20%;
}


.gallnext {
    right: 0;
    border-radius: 3px 0 0 3px;
}


    .gallprev:hover,
    .gallnext:hover {
        color: white;
        background-color: rgba(0, 0, 0, 0.8);
    }

.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.galleryrow:after {
    content: "";
    display: table;
    clear: both;
}


.column {
    float: left;
    width: 16.66%;
}


.gallery {
    opacity: 0.6;
}

    .active,
    .gallery:hover {
        opacity: 1;
    }


/*GRID IMAGES*/
.gridrow {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.gridrow img {
    max-height:500px;
}


.gridcolumn1 {
    flex: 100%;
    padding: 0 4px;
}

.gridcolumn2 {
    flex: 50%;
    padding: 0 4px;
}

.gridcolumn4 {
    flex: 25%;
    padding: 0 4px;
}

.gridcolumn img {
    margin-top: 8px;
    vertical-align: middle;
}

.Details {
    display:block;
}

.Location {
    display:block;
}

.Connect {
    display:block;
}

.DetailsMobile {
    display: none;
}

.LocationMobile {
    display: none;
}

.LocationMobile2 {
    display:none;
}

.ConnectMobile {
    display: none;
}

.clear {
    clear: both;
}

.H_ui {
    font: 16px/1.65em 'Open Sans','HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

    .H_ui a {
        color: #000;
        text-decoration: none;
        outline: 0;
    }

        .H_ui a:hover, a:active {
            outline: 0;
            color: #323537;
            text-decoration: none;
        }

    .H_ui .contact-details {
        font-size: .85em;
        font-weight: bold;
        line-height: 1.8em;
        margin-bottom: 0;
    }

.H_ib {
    background: white;
    color: black;
    font: inherit;
}

.H_ib_body {
    background: white;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.3);
}


.H_ib_close svg.H_icon {
    fill: #000;
}

.H_ib_close {
    font-size: 0.4em;
    right: 0.6em;
    top: 0.6em;
}

.H_btn {
    background: white;
}

.H_ib h3 {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.1em;
    font-size: 1.5rem;
    flex-grow: 1;
}

.H_ib_content {
    max-width: 654px;
    min-width: 400px;
    min-height: 140px;
}

.mapContents {
    max-width: 654px;
    max-height: 235px;
    padding: 12px;
    padding-bottom: 0px;
    padding-right: 0px;
    min-width: 290px;
    /*font: 400 11px Roboto, Arial, sans-serif;*/
    font: inherit;
    box-sizing: border-box;
    overflow: auto;
    background-color: white;
}

.mapdiv {
    margin: 0 0 3px 0;
}



.white-popup {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 600px;
    margin: 20px auto;
}

.captchaerror {
    font-family: inherit;
    font-weight: normal;
    color: #ed1c24;
}

body.magnificpopupnoscroll {
    overflow-y: hidden !important;
}

.noresults {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 1em;
    margin-bottom: 20px;
}



@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    

    .search-results .list-item .logo {
        flex: 0 0 40%;
        max-width: 40%;
        padding-top: 0;
    }

    .search-results .list-item .listing {
        flex: 0 0 60%;
        max-width: 60%;
        padding-top: 0;
    }

        
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .container {
        max-width: 782px;
        width: 85%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        float: none;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .breadcrumbs-mobile {
        display: none
    }

    .nobreadcrumbs-mobile {
        display: none;
    }

    .listing-header .breadcrumbs {
        display: block
    }

    .single-listing .listing-header {
        margin-bottom: 3rem;
    }

    .single-listing .contact-info {
        text-align: left;
        margin-top: 2rem
    }

        .single-listing .contact-info .row {
            flex-wrap: nowrap
        }

        .single-listing .contact-info .left {
            flex: 0 0 60%;
            padding-right: 15px;
        }

        .single-listing .contact-info .right {
            flex: 0 0 40%;
            padding-left: 15px;
            padding-top: 0;
            text-align: right;
        }

        .single-listing .contact-info .logo {
            flex-basis: 30%;
            padding-right: 30px
        }

        .single-listing .contact-info .address {
            flex: 70%;
        }

    .single-listing .main, .single-listing .sidebar {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .single-listing .main {
        padding-right: 30px
    }

    .single-listing .listing-header .contact-buttons {
        align-items: flex-end;
    }

    .social {
        justify-content: flex-end
    }

        .social [class*="fab fa-"], .social [class*="far fa-"], .social [class*="fas fa-"] {
            margin: 5px 0 5px 8px;
        }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .search-results #map-col {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
        margin-left: 60%;
        padding: 0;
        max-width: 40%;
        width: 40%;
        height: 1440px;
    }

    .search-results .listings-wrapper {
        flex: 0 0 60%;
        max-width: 60%;

    }

    .search-results .listings-wrapper-full {
        flex: 0 0 100%;
        max-width: 100%;        
    }

    .search-results .buttons.top {
        justify-content: flex-end;
    }

    .search-footer {
        justify-content: space-between;
    }

    .contact-info .logo {
        flex: 0 0 25%;
    }

    .contact-info .address {
        flex: 0 0 75%;
    }

    .single-listing .main {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .single-listing .sidebar {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .other-details .detail > div:first-child {
        flex-basis: 30%;
    }

    .other-details .detail > div:nth-child(2) {
        flex-basis: 70%;
    }

    .our-people .headshot {
        flex: 0 0 20%;
        max-width: 20%;
        padding-right: 1em;
    }

    .our-people .name {
        flex: 0 0 40%;
        max-width: 40%;
        padding-right: 1em;
    }

    .our-people .phone {
        flex: 0 0 40%;
        max-width: 40%;
        text-align: right;
    }

    .our-people button {
        display: inline-block
    }
}

@media (max-width: 500px) {
    .search-footer, .search-footer span, .search-footer a {
        padding: 0 !important
    }

        .search-footer, .search-footer span, .directory-links a {
            display: block !important
        }
}

@media (min-width: 200px) and (max-width: 812px) {

    .Details {
        display: none;
    }

    .Connect {
        display:none;
    }

    .Location {
        display:none;
    }

    .DetailsMobile {
        display: block;
    }

    .LocationMobile {
        display: block;
    }

    .LocationMobile2 {
        display: block;
    }

    .ConnectMobile {
        display: block;
    }

    .filters {
        display: flex;
        height: 40px;
        margin-bottom: 40px;
    }

    .facet-parent {
        padding-bottom: 20px;
    }

    .facettotalcount {
        display: block !important;
        font-size: .875rem !important;
    }

    .landing-page .facets, .facet-search {
        display: none
    }

    .slideshow-container {
        min-height: 350px;
    }

    .mySlides {
        height:350px;
    }

    .mySlides img {
        max-height:350px;
    }

    .gallery-insidecontainer {
        min-height: 367px;
    }


    .galleryheight {
        min-height: 367px;
    }

    .gallery-container img {
        max-height: 367px;
    }

    .search-results .listings-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 2rem 0 0;
    }


    .H_ib_content {
        max-width: 317px;
        min-width: 317px;
        min-height: 140px;
    }

    .mapContents {
        max-width: 317px;
        max-height: 235px;
        padding: 12px;
        padding-bottom: 0px;
        padding-right: 0px;
        min-width: 290px;
        /*font: 400 11px Roboto, Arial, sans-serif;*/
        font: inherit;
        box-sizing: border-box;
        overflow: auto;
        background-color: white;
    }

}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .single-listing.one-column .container {
        max-width: 960px
    }
}

@media (max-width: 992px) {
    .single-listing #map-col {
        margin-left: 0;
        padding: 0;
        margin-top: 0;
        height: 300px;
    }

    .single-listing #sticker {
        height: 300px;
    }

    .single-listing #map-canvas {
        height: 300px;
    }
}