:root {
    --color-lighter-gray: hsl(0, 0%, 75%);
    --color-lightest-gray: hsl(0, 0%, 90%);
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --padding-base: 1rem;
    --padding-sm: 0.75rem;
    --padding-xxs: 0.25rem;
    --padding-xxl: 2rem;
}


.cheap_rv_results .cheap_rv_result_item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    text-decoration: none !important;
}

.cheap_rv_results {
    display: flex;
    flex-flow: row wrap;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: space-between;
}

.cheap_rv_result {
    height: 100%;
    background: #f9f9f9;
    border: 3px solid #e5e5e5c9;
    padding: 15px;
    transition: all .3s ease-in-out .0s;
}

.cheap_rv_result_img_wrap {
    position: relative;
    margin-bottom: 13px;
}

.cheap_rv_result_img_wrap::before {
    content: "";
    padding-top: 61.53846153846154%;
    display: block;
}

img.cheap_rv_result_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cheap_rv_result_title {
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.4 !important;
    transition: all .3s ease-in-out .0s;
    margin-bottom: 6px;
}

.cheap_rv_result_title:hover {
    color: #3273af;
}

.cheap_rv_result_details {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-bottom: 8px;
}

.cheap_rv_result:hover {
    border-color: #3273af;
}
.cheap_rv_result_highlighted {
    background-color: #3273af;
}
.cheap_rv_result_highlighted * {
    color: #fff;
}
.cheap_rv_result_pagination {
    padding: 10px 1.5rem 30px;
    text-align: right;
}
a.cheaprv-pagiprev {
    padding: 5px 15px;
    background: #3273af;
    text-decoration: none;
    color: #fff;
    margin-right: 10px;
}
a.cheaprv-paginext {
    padding: 5px 15px;
    background: #3273af;
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
}
.cheap_rv_content {
    height: calc(100vh - 100px);
    overflow-y: auto;
}
.cheap_rv_content::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background-color: transparent;
}
.cheap_rv_content::-webkit-scrollbar-thumb{
    background-color: #3273AF;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
    border-radius:10px;
}
.cheap_rv_content::-webkit-scrollbar-track{
    background-color: transparent;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
    border-radius: 10px;
}

input {
    border: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

input[type=search],
input[type=text],
input[type=number] {
    -webkit-appearance: none;
}

input[type=search],
input[type=text],
input[type=date],
input[type=number] {
    height: 2rem;
    font-size: var(--font-size-base);
    border: 1px solid var(--color-lighter-gray);
    border-radius: 0.5rem;
    padding-left: var(--padding-base);
    padding-right: var(--padding-base);
}

input[type=checkbox] {
    width: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 1rem;
    border: 1px solid black;
    border-radius: 0.25rem;
}

input[type=checkbox]:checked {
    background-color: black;
}

input[type=checkbox]:checked:after {
    margin-left: 0.35rem;
    margin-top: 0.1rem;
    width: 0.15rem;
    height: 0.5rem;
    border: solid white;
    border-width: 0 0.15rem 0.15rem 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    display: inline-block;
}

input:focus {
    border-color: #262626;
    box-shadow: 0 0 0 1px #262626 inset;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    font-size: var(--font-size-base);
}

a {
    background-color: transparent;
}

b, strong {
    font-weight: bolder;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.text-decoration-none {
    text-decoration: none;
}

.main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        'topbar'
        'content'
        'footer';
}

#map-container {
    display: none;
}

@media screen and (min-width: 1025px) {
    .main {
        display: grid;
        grid-template-columns: 1fr calc(100% - 800px);
        grid-template-areas:
            'topbar topbar'
            'content map'
            'footer footer';
    }

    #map-container {
        display: block;
    }
}

.cheap_rv_content {
    grid-area: content;
}

.cheap_rv_header {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 24px;
}

.cheap_rv_header_title {
    font-size: 32px;
    color: #262626;
    font-weight: bolder;
    margin-top: 30px;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    width: max-content;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.checkbox-group > label {
    padding-left: 0.5rem;
    align-self: center;
}

.input-group > label {
    display: block;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin-left: calc(var(--filter-margin) * -1);
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.filter {
    display: inline-block;
    position: relative;
    color: #262626;
    margin-left: var(--filter-margin);
    /*margin-bottom: 8px;*/
}
.custom-check-group label {
    margin-left: var(--filter-margin);
    display: inline-block;
}

.custom-check-group label {
    user-select: none;
    cursor: pointer;
    background-color: #3273AF;
    color: #fff;
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: normal;
    font-size: 16px;
}

.custom-check-group input {
    display: none;
}
.custom-check-group input:checked + label {
    background-color: #F0B43B;
}
.filters .range {
    flex: 1;
    margin-right: 18px;
    margin-left: var(--filter-margin);
}

.filter-dropdown {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
    margin-top: 14px;
    border-radius: 5px;
    border: 1px solid #e5e5e5c9;
    left: 0;
    padding: 7px 18px;
}

.disclaimer {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: var(--font-size-sm);
    color: #737373;
}

.result {
    display: grid;
    padding: 24px;
    border-bottom: 1px solid var(--color-lightest-gray);
    grid-template-columns: 300px;
    grid-template-rows: 1fr repeat(4, auto);
    grid-template-areas:
        'thumbnail'
        'title'
        'details'
        'by'
        'rating'
        'rate';
}

@media screen and (min-width: 641px) {
    .result {
        display: grid;
        grid-template-columns: 300px 1fr 1fr 1fr;
        grid-template-rows: repeat(3, 1.75rem) 1fr;
        grid-template-areas:
            'thumbnail .       .       by'
            'thumbnail title   title   title'
            'thumbnail details details .'
            'thumbnail rating  .       rate';
    }

    .result-title {
        padding-left: var(--padding-base);
    }

    .result-details {
        padding-left: var(--padding-base);
    }

    .result-rating {
        padding-left: var(--padding-base);
    }
}

.result-thumbnail {
    grid-area: thumbnail;
    width: 300px;
    border-radius: 3px;
}

.result-title {
    grid-area: title;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    font-size: var(--font-size-lg);
    color: #262626;
}

.result-details {
    grid-area: details;
    color: #737373;
    font-size: var(--font-size-sm);
}

#map-container {
    grid-area: map;
    position: sticky;
    align-self: flex-start;
    top: 64px;
    right: 0;
}

#map-sub-container {
    height: calc(100vh - 36px);
    padding-top: 64px;
    margin-top: -64px;
}

#cheap_rv_map_canvas {
    height: 100%;
}

.map-marker {
    display: flex;
    position: absolute;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: #3273af;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: bolder;
    padding: 5px 10px;
    color: #fff;
    line-height: 1;
    border: 2px solid #fff;
    transition: all .1s ease-in-out .0s;
}

.map-marker:hover {
    z-index: 1;
    transform: scale(1.2);
}

.map-marker-highlight {
    z-index: 1;
    font-size: var(--font-size-base);
    height: 1.75rem;
    color: white;
    background-color: black;
}

.hide {
    display: none
}

.cheap_rv_result_rate {
    text-align: right;
    font-family: Lato, sans-serif !important;
    font-size: 25px !important;
}


.gm-style-iw.gm-style-iw-c {
    padding: 12px !important;
    border-radius: 0 !important;
    left: 27px !important;
}
.gm-style .gm-style-iw-tc {
    left: 27px !important;
}
.gm-style .gm-style-iw.gm-style-iw-c .gm-style-iw-d {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: inherit !important;
}
.rv_map_infobox_thumb img {
    max-width: 100% !important;
}
.rv_map_infobox_wrap {
    max-width: 250px;
}
.rv_map_infobox_title {
    font-weight: 700;
    font-size: 16px;
    margin-top: 13px;
    transition: all .3s ease-in-out .0s;
}
.rv_map_infobox_wrap a {
    text-decoration: none !important;
}
.rv_map_infobox_title:hover {
    color: #3273af;
}
.rv_map_infobox_class {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 4px;
}
.rv_map_infobox_price {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
	font-family: Lato !important;
}
.rv_map_infobox_price b {
    font-weight: 700;
    font-size: 18px;
}
button.gm-ui-hover-effect {
    top: -9px !important;
    right: -9px !important;
}


@media screen and (min-width: 1025px) {
    .modal {
        padding-left: 6rem;
        padding-right: 6rem;
        width: auto;
    }
}

@media screen and (min-width: 700px) {
    .filter-dropdown.keywords,
    .filter-dropdown.rv-type
    {
        left: 0;

    }
}
@media only screen and (min-width: 582px) and (max-width: 699px){
    .filter-dropdown.rv-type
    {
        left: unset;
        right: 0;
    }
}

@media only screen and (max-width: 599px) {
    .cheap_rv_results .cheap_rv_result_item {
        width: 100%;
    }
}


.checkbox-group {
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.checkbox-group label::before {
    content: "";
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0px;
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    transition: opacity 0.3s ease-in-out;
}

.checkbox-group input[type="checkbox"]:checked + label::before {
    background: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 width%3D%2220px%22 height%3D%2220px%22 viewBox%3D%220 0 32 32%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23000000%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B%7D%3C/style%3E%3C/defs%3E%3Ctitle/%3E%3Cg id%3D%22checkmark%22%3E%3Cline class%3D%22cls-1%22 x1%3D%223%22 x2%3D%2212%22 y1%3D%2216%22 y2%3D%2225%22/%3E%3Cline class%3D%22cls-1%22 x1%3D%2212%22 x2%3D%2229%22 y1%3D%2225%22 y2%3D%227%22/%3E%3C/g%3E%3C/svg%3E') no-repeat center / contain;
    border-color: transparent;
}

.checkbox-group input[type="checkbox"]:checked + label {
    color: #000;
    background-color: #f6f6f6;
}

.checkbox-group {
    width: 262px;
    padding: 0;
    border-bottom: 1px solid #e5e5e5c9;
}
.filter-dropdown .checkbox-group:last-child {
    border-bottom: none;
}

.checkbox-group label {
    color: #666;
    position: relative;
    display: inline-block;
    padding: 11px 27px 11px 47px;
    cursor: pointer;
    border: none;
    transition: 500ms all;
    width: 100%;
    font-size: 16px;
}

.checkbox-group:hover {
    background-color: #F6F6F6;
}

.filter-dropdown {
    padding: 0;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
    text-decoration: none;
    opacity: 0.3;
}
