/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Clear Fix */ 
.group:after {
  content: "";
  display: table;
  clear: both;
}

/*-------------------------------------------------*/

body {
    font-family: 'Lato', 'Helevetica Neue', Helvetica, Arial, sans-serif !important;
}

a {
    text-decoration: none;
    color: #111;
}

ul {
    list-style: none;
}

.desktop-navigation.moved {
    display:flex;
    width: 100%;
    align-items: center;
    font-weight: 700;
    position: fixed;
    /* background: #fff; */
    z-index: 9999;
    top: 0;
}

.logo {
    padding: 5px 20px
}

.menu {
    background-color: #222;
    padding: 8px 0px 2px;
    
}

.menu ul {
    display: flex;
    justify-content: space-between;
}

.menu a {
    color: #fff;
    font-size: 1rem;
}

.menu a:hover {
    border-bottom: 3px solid #fff;
}

/* ///////////////////////////////////////////////////////////// */
/* [MOBILE ONLY] Allows the Navigation to Progressively Collapse */
/* ///////////////////////////////////////////////////////////// */



.mobile-navigation a {
    color: #000;
    font-size: 1.5rem;
}
    
.mobile-navigation-wrapper {
    display: flex;
    justify-content: space-between;
    height: 50px;
    margin: 0 auto;
    overflow: hidden;
}

.toggle:checked ~ .mobile-navigation-wrapper {
   height: auto /* Full height when more is toggled */;
}

.mobile-navigation-link {
    display: block;
    padding: 0 20px;
    line-height: 50px /* Collapsed navigation height */;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
}

.mobile-navigation-link:hover {
   text-decoration: underline;
}

.mobile-navigation-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 0;
    border-right: 0;
    background: #222;
}

/*.mobile-logo {
    display: none;
    width: 301px;
    padding: 74px 0 0 0;
    height: 0;
    background: url(/assets/HIH-logo-new-black.png) no-repeat;
    overflow: hidden;
    margin: 0;
}*/


.mobile-navigation-toggle {
    flex-shrink: 0; /* Stops more button collapsing */
    background: #333;
}

.mobile-navigation-toggle .mobile-navigation-link {
    position: relative;
    padding-right: 50px;
}

/* More Button Arrow */
.mobile-navigation-toggle .mobile-navigation-link:after {
    content: '';
    position: absolute;
    top: 22px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #000 transparent transparent transparent;
}

/* Flip the arrow when toggled */
.toggle:checked ~ .mobile-navigation-wrapper .mobile-navigation-toggle .mobile-navigation-link:after {
    border-width: 0 5px 5px 5px;
   border-color: transparent transparent #000 transparent;
}

/* Hide the checkbox */
.toggle {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
    
/* ///////////////////////////////////////////////////////////// */
/* /////////////// END MOBILE ONLY NAVIGATION CSS ////////////// */
/* ///////////////////////////////////////////////////////////// */

#ad-content {
	background:#eeeeee;
	overflow: hidden;
}




#hero-form {
    width: 100%;
    background: url(../assets/hero-image.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero-form h1 {
    color: #fff;
    font-size: 3.5rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

input, button {
    font-family: 'Lato', Arial, sans-serif !important;
    font-weight: 700;
}

.search-form input {
    font-size: 1.5rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 3px;
    padding: 8px;
    box-shadow: none;
    border: none;
}

.search-form button {
    width: 100%;
    background-color: #0ea9e5;
    color: #fff;
    font-weight: bold;
    font-size: 1.7rem;
    padding: 5px;
    margin: 10px 0 0 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.search-form button:hover {
    background-color: #3dbdee;
}

.search-form .btn {
    color: #2484c0;
    font-weight: bold;
    font-size: 1.7rem;
    padding: 5px 20px;
    margin: 10px 0 0 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

#guides {
    background-color: #222;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}



.box-ad-1 span, .box-ad-2 span, .box-ad-3 span {
    text-align: center;
    display: block;
    color: #888;
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 0 0 5px 0;
}



#articles {
    width: 1000px;
    margin: 0 auto;
}



.object-fit-fill {
    width: 313px;
    object-fit: fill;
}

#articles .post h2 {
    margin: 10px 0 0 0;
}

#articles h2 {
    font-size: 1.5rem;
    font-weight: 900;
}


a.more-stories {
    display: block;
    background-color: #0ea9e5;
    color: #fff;
    font-weight: 600;
    padding: 15px 15px;
    font-size: 1.2rem;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    text-align: center;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

a:hover.more-stories {
    background-color: #3dbdee;
}

#realtors h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: #333;
}

#realtors-content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.profile {
    width: 313px;
    display:flex;
    margin: 25px 0 0 0;
}

.agent-info {
    padding: 0 0 0 10px;
    line-height: 1.2;
}

.agent-info a {
    text-decoration: underline;
    font-style: italic;
}

.agent-info h3 {
    font-weight: 600;
    color: #0ea9e5;
	font-size:1rem;
}

footer {
    background-color: #444;
    padding: 25px 0;
}

.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sa-logo, .realestate-footer, .hawaiirental-footer {
    width: 313px;
    margin: 0 25px;
}

.realestate-footer {
    line-height: 1.4;
}

.realestate-footer h4 {
    font-weight: 700;
    color: #0ea9e5;
}

.realestate-footer a {
    color: #aaa;
    display: block;
}

.hawaiirental-footer {
    line-height: 1.4;
}

.hawaiirental-footer h4 {
    font-weight: 700;
    color: #0ea9e5;
}

.hawaiirental-footer a {
    color: #aaa;
    display: block;
}

.supplementary {
    color: #ccc;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
}
 
 /*----------------------------------------------*/
 /*================= ARTICLE CSS ================*/
 /*----------------------------------------------*/
 
 #article-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
 }
 
 #article-story {
    width: 660px;
    line-height: 1.4;
    font-size: 1.1rem;
	margin-right:40px;
 }
 
 #article-story img {
    padding: 0 20px 20px 0;
 }

#article-story img.alignleft{
	float: left;
}

#article-story img.alignright{
	float: right;
	padding: 0 0 20px 20px;
}
 
 #article-story h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
 }
 
 #article-sidebar {
    margin: 25px 0 0 0;
 }
 
 .article-box-ad-1, .article-box-ad-2 {
    padding: 10px 0;
 }
 
 /*----------------------------------------------*/
 /*================= ARCHIVE CSS ================*/
 /*----------------------------------------------*/

 #archive-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
 }
 
 #archived-stories {
    width: 660px;
    padding-left: 20px;
    line-height: 1.2;
    margin-top: 20px;
    margin-right: 20px;
 }
 
 .archived-post {
    margin: 20px 0
 }
 
 .archived-post img {
    float: left;
    padding-right: 20px;
 }
 
 .archived-post h2 {
    font-size: 1.4rem;
    font-weight: 900;
 }
 
 .older-posts {
    font-weight: 900;
    font-size: 1.2rem;
 }
 
 /* Open House guide page */

 /* Setting Font */
 /* cyrillic */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 400;
    src: local('Helvetica LT Pro'), local('HelveticaLTPro-Roman'), url(https://fonts.gstatic.com/l/font?kit=JIAxUVNqfH9WuVQQRM4zUxOn&skey=22efecd2bc0e2cb0&v=v3) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 400;
    src: local('Helvetica LT Pro'), local('HelveticaLTPro-Roman'), url(https://fonts.gstatic.com/l/font?kit=JIAxUVNqfH9WuVQQRM4zWROn&skey=22efecd2bc0e2cb0&v=v3) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 400;
    src: local('Helvetica LT Pro'), local('HelveticaLTPro-Roman'), url(https://fonts.gstatic.com/l/font?kit=JIAxUVNqfH9WuVQQRM4zVxOn&skey=22efecd2bc0e2cb0&v=v3) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    src: local('Helvetica LT Pro Bold'), local('HelveticaLTPro-Bold'), url(https://fonts.gstatic.com/l/font?kit=JIA0UVNqfH9WuVQQRM477DayFhEi&skey=c9794b4fcbed8443&v=v3) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    src: local('Helvetica LT Pro Bold'), local('HelveticaLTPro-Bold'), url(https://fonts.gstatic.com/l/font?kit=JIA0UVNqfH9WuVQQRM477DayHBEi&skey=c9794b4fcbed8443&v=v3) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    src: local('Helvetica LT Pro Bold'), local('HelveticaLTPro-Bold'), url(https://fonts.gstatic.com/l/font?kit=JIA0UVNqfH9WuVQQRM477DayEhEi&skey=c9794b4fcbed8443&v=v3) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.page-template-page-open-house-guide .page-title-desktop,
.page-template-page-open-house-guide .page-title-mobile,
.page-template-page-open-house-guide .search-tablet-mobile,
.page-template-page-open-house-guide #archive-content,
.page-template-page-open-house-guide .page-pagination-section,
.page-template-page-open-house-guide button,
.page-template-page-open-house-guide input
{
    font-family: Helvetica !important;
}
/* End Setting Font */

/* Content and Sidebar area style */
.page-template-page-open-house-guide #archived-stories{
    margin-top: 0px !important;
    width: 728px;
}
.page-template-page-open-house-guide .search-desktop{
    width: 306px;
}
.page-template-page-open-house-guide #archive-content{
    margin-top: 10px;
}
.page-template-page-open-house-guide #archive-content{
    margin-top: 10px;
}
/* End Content and Sidebar area style */

/* Page Title style*/
.page-template-page-open-house-guide .page-title-mobile{
    border-top: 1px solid #3333;
}
.page-template-page-open-house-guide .page-title-desktop p{
    font-size: 90px;
}
.page-template-page-open-house-guide .page-title-desktop a{
    color: black;
    text-decoration: none;
}   
.page-template-page-open-house-guide .page-title-mobile p{
    font-size: 8vw;
}
.page-template-page-open-house-guide .page-title-mobile a{
    color: black;
    text-decoration: none;
}
/* End Page Title style*/

/* Page pagination style*/
.page-template-page-open-house-guide .pagination{
    width: 70%;
    margin: 0 auto;
    font-size: 14px;
}
.page-template-page-open-house-guide  .page-pagination{
    color: black;
    border: 1px solid #dee2e6;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
}
.page-template-page-open-house-guide .page-pagination-section{
    font-size: 17px;
}
.page-template-page-open-house-guide .page-link{
    color: black;
}
/* End Page pagination style*/

.page-template-page-open-house-guide .group-code,
.page-template-page-open-house-guide .group-type{
    display: inline-block;
}

/* Search input text style */
.page-template-page-open-house-guide .search-input {
    padding-left: 2.375rem;
}
.page-template-page-open-house-guide .fa-search{
    margin-top: 5px;
    margin-left: 5px;
    position: absolute;
    z-index: 2;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: black;
    content: url("/wp-content/themes/hi_homes/images/search-icon.jpg") !important;
}
.page-template-page-open-house-guide .search-properties{
    border: 1px solid;
}
/* End Search input text style */

/* Search on Tablet and Mobile style*/
.search-tablet-mobile .group-min-max input{
    width: 134px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    font-size: 16px;
    border: 0;
    font-weight: normal;
}
.search-tablet-mobile .dropright .form-check-label{
    padding-top: 2px;
    font-size: 19px;
}
.search-tablet-mobile .dropright button{
    background: transparent;
    color: black;
    border: 0;
    font-size: 19px;
}
.search-tablet-mobile .dropright .dropdown-menu{
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    transform: translate3d(82px, 0px, 0px);
}
.search-tablet-mobile .card{
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem !important;
    box-shadow: 2px 2px lightgrey;
}
.search-tablet-mobile .card-header{
    padding: 0;
    background-color: #ebebeb;
    border-bottom: 0;
}
.search-tablet-mobile .card-body{
    padding-left: 42px;
}
.search-tablet-mobile .card-body .form-check-label{
    font-size: 19px;
}
.search-tablet-mobile .price-range-title{
    font-size: 19px;padding-left: 12px;
}
.search-tablet-mobile .search-input{
    border-radius: 0 !important;
    font-style: italic;
    font-weight: normal;
    border-color: #c7c7c7;
    font-size: 20px;
    height: 40px;
}
.search-tablet-mobile .search-button{
    background-color: #2372bd;
    border: 0;
    border-radius: 0;
    font-size: 20px;
    height: 40px;
    width: 100%;   
}
.search-tablet-mobile .bottom-button-group button{
    background: white;
    color: #e3473a;
    border: 1px solid lightgray;
    font-size: 16px;
    border-radius: 0;   
}
.group-min-max input::placeholder {
    color:#797979
}
.group-min-max input:not(:focus) {
    color: black;
}
.dropright .dropdown-toggle::after {
    color:#0072bb;
}
#optionsAccordion{
    color: #e3473a;
    text-decoration-line: none;
}
#closeAccordion{
    display: none;
    color: #e3473a;
    text-decoration-line: none;
    float: right;
}
#collapseSearch{
    background-color: rgb(235, 235, 235);
}
#bedrooms-selected-mobile,
#bathrooms-selected-mobile{
    width: 134px;
    font-weight: normal;
    background: white;
    color: #e3473a;
    border: 1px solid lightgray;
    font-size: 16px;
    border-radius: 0;
}

#property-type-selected-mobile{
    width: 292px;
    font-weight: normal;
    background: white;
    color: #e3473a;
    border: 1px solid lightgray;
    font-size: 16px;
    border-radius: 0;
}

.search-tablet-mobile .property-type .dropdown-menu{
    width: 292px;
}

.search-tablet-mobile .region-search-option-mobile{
    color: #075182;
}
.search-tablet-mobile .search-filter-label{
    font-size: 20px;
}
.search-tablet-mobile .region-label{
    font-size: 19px;
}
/* End Search on Tablet and Mobile style*/

/* Property Search text section on Desktop */ 
.property-search-text-section,
.property-search-section{
    background-color: #d5edcb;
}
.property-search-text-section p{
    font-size: 14px;
    padding-left: 12px;
}
.property-search-text-section .input-group{
    padding-right: -10px !important;
    width: 93%;
    margin: 0 auto;
}
.property-search-text-section input{
    border-radius: 3px;
    border: 0;
    font-size: 20px;
}
.property-search-text-section #search-input-desktop{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.property-search-text-section button{
    font-size: 14px;
    background-color: #0072bb;
    color: white;
    font-weight: bold;border: 0;
}
/* End Property Search text section on Desktop*/

/* Property Search option section on Desktop */ 
.property-search-section .search-filter-label{
    font-size: 24px;
    padding-left: 12px;
}
.property-search-section .region-label,
.property-search-section .price-range-label
{
    font-size: 17px;
    padding-left: 12px;
}
.property-search-section .region-search-option-desktop{
    font-size: 16px;
    padding-left: 12px;
    color: #075182;
}
.property-search-section .group-min-max input{
    width: 134px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    font-size: 16px;
    border: 0;
}
.property-search-section .group-beds-baths .dropdown{
    width: 134px;
}
.property-search-section .group-beds-baths .dropdown-menu{
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    transform: translate3d(0px, 34px, 0px);
}
.property-search-section .group-beds-baths button{
    background: #e8e8e8;
    color: black;
    width: 100%;
    font-weight: bold;
    width: 134px;
    height: 31px;
    border: 1px solid #abb6a5;
}
.property-search-section .property-type button{
    background: #e8e8e8;
    color: black;
    width: 288px;
    height: 31px;
    font-weight: bold;
    border: 1px solid #abb6a5;
}
.property-search-section .property-type #update-search-button-desktop{
    background-color: #0072bb;
    color: #ffffff;
    width: 288px;
    height: 31px;
    font-weight: bold;
    border: 1px solid #005286;
}
.property-search-section .property-type #update-search-button-desktop:hover{
    background-color: #6c757d;
}
.property-search-section .property-type .dropdown-menu{
    position: absolute; 
    will-change: transform; 
    top: 0px; 
    left: 0px; 
    transform: translate3d(8px, 34px, 0px);
}
.property-search-section .dropdown-header{
    cursor: default;
}
.property-search-section .dropdown-item{
    cursor: pointer;
}
/* End Property Search option section on Desktop */ 

/* Responsive Open House Guide page */
@media (max-width: 1040px) and (min-width: 1001px) {
    .page-template-page-open-house-guide #archived-stories{
        width: auto;
    }
    .page-template-page-open-house-guide .item-image{
        width: 200px;
        height: 150px;
    }
}

/* Desktop */
@media (min-width: 769px){
    /* Hide on Mobile */
    .page-template-page-open-house-guide .d-tablet-mobile,
    .page-template-page-open-house-guide .flex-tablet-mobile,
    .page-template-page-open-house-guide .mobile-navigation,
    .page-template-page-open-house-guide .guides-mobile,
    .page-template-page-open-house-guide .search-tablet-mobile{
        display: none !important;
    }
    /* Show on Desktop */
    .page-template-page-open-house-guide .d-desktop,
    .page-template-page-open-house-guide #archived-stories .desktop,
    .page-template-page-open-house-guide #article-sidebar,
    .page-template-page-open-house-guide #ad-content,
    .page-template-page-open-house-guide .guides-desktop{
        display: block !important;
    }
    .page-template-page-open-house-guide .flex-desktop{
        display: flex !important;
    }
}

@media (max-width: 850px){
    .page-template-page-open-house-guide .page-title-desktop p{
        font-size: 82px !important;  
    }
    .page-template-page-open-house-guide .page-pagination-section{
        font-size: 16px !important;
    }
}

@media (max-width: 1000px){
    /* Hide */
    .page-template-page-open-house-guide .desktop-navigation,
    .page-template-page-open-house-guide #article-sidebar{
        display: none !important;
    }
    /* Show */
    .page-template-page-open-house-guide .mobile-navigation{
        display: block !important;
    }
    .page-template-page-open-house-guide .search-tablet-mobile{
        display: flex !important;
    }
}

/* Tablet & Mobile */
@media (max-width: 768px){
    /* Hide on Desktop */
    .page-template-page-open-house-guide .d-desktop,
    .page-template-page-open-house-guide .flex-desktop,
    .page-template-page-open-house-guide .desktop-navigation,
    .page-template-page-open-house-guide #archived-stories .desktop,
    .page-template-page-open-house-guide #article-sidebar,
    .page-template-page-open-house-guide #ad-content,
    .page-template-page-open-house-guide .guides-desktop{
        display: none !important;
    }
    /* Show on Mobile */
    .page-template-page-open-house-guide .d-tablet-mobile,
    .page-template-page-open-house-guide .mobile-navigation,
    .page-template-page-open-house-guide .guides-mobile{
        display: block !important;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile,
    .page-template-page-open-house-guide .search-tablet-mobile{
        display: flex !important;
    }
    .page-template-page-open-house-guide #archived-stories{
        padding-left: 0px !important;
    }
    .page-template-page-open-house-guide .property-type{
        font-weight: bold;
    }
    #archived-stories .flex-tablet-mobile:last-child {
        padding-bottom: 10px;
        border-bottom: 1px solid #28a745!important;
    }
}

@media (max-width: 680px) and (min-width: 575px) {
    .page-template-page-open-house-guide .flex-tablet-mobile .price{
        font-size: 20px !important;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .keyword,
    .page-template-page-open-house-guide .flex-tablet-mobile .textcode{
        font-size: 12px;
    }
}

@media (max-width: 500px){
    .page-template-page-open-house-guide .search-tablet-mobile .col-search-button{
        padding-left: 0 !important;
    }
}

@media (max-width: 574px) and (min-width: 480px){
    .page-template-page-open-house-guide .flex-tablet-mobile .price{
        font-size: 20px !important;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .keyword{
        font-size: 10px;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .textcode{
        font-size: 11px;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .region,
    .page-template-page-open-house-guide .flex-tablet-mobile .location{
        font-size: 14px;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .beds-baths,
    .page-template-page-open-house-guide .flex-tablet-mobile .property-type,
    .page-template-page-open-house-guide .flex-tablet-mobile .type{
        font-size: 13px;
    }
}

@media (max-width: 479px){
    .page-template-page-open-house-guide .flex-tablet-mobile .price{
        font-size: 20px !important;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .keyword,
    .page-template-page-open-house-guide .flex-tablet-mobile .textcode{
        font-size: 10px;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .region,
    .page-template-page-open-house-guide .flex-tablet-mobile .location,
    .page-template-page-open-house-guide .flex-tablet-mobile .beds-baths,
    .page-template-page-open-house-guide .flex-tablet-mobile .property-type,
    .page-template-page-open-house-guide .flex-tablet-mobile .type{
        font-size: 12px;
    }
    .search-tablet-mobile .group-min-max input{
        width: 40% !important;
    }
    .search-tablet-mobile #property-type-selected-mobile,
    .search-tablet-mobile .property-type .dropdown-menu{
        width: 87% !important;
    }

}

@media (max-width: 450px){
    .page-template-page-open-house-guide .flex-tablet-mobile .region{
        margin-bottom: 5px !important;
    }
    .page-template-page-open-house-guide .flex-tablet-mobile .price{
        font-size: 20px !important;
    }
    /* OPI-1537 style for hide the image section for now
    .page-template-page-open-house-guide .center-content{
        padding-left: 30px !important;
    }
    */
    .page-template-page-open-house-guide .sharp-code{
        font-size: 10px !important;
    }
    .search-tablet-mobile .group-beds-baths .dropdown{
        margin-right: auto !important;
    }
}

@media (max-width: 480px){
    .page-template-page-open-house-guide .pagination{
        width: 80% !important;
        font-size: 13px !important;
    }
}

@media (max-width: 380px){
    .page-template-page-open-house-guide .pagination{
        width: 85% !important;
        font-size: 12px !important;
    }
    .page-template-page-open-house-guide .search-tablet-mobile .search-input,
    .page-template-page-open-house-guide .search-tablet-mobile .search-button{
        font-size: 16px !important;
    }
    .page-template-page-open-house-guide .search-tablet-mobile .region-group button,
    .page-template-page-open-house-guide .search-tablet-mobile .region-group label,
    .page-template-page-open-house-guide .search-tablet-mobile .bedrooms-group button,
    .page-template-page-open-house-guide .search-tablet-mobile .bedrooms-group label,
    .page-template-page-open-house-guide .search-tablet-mobile .bathrooms-group button,
    .page-template-page-open-house-guide .search-tablet-mobile .bathrooms-group label,
    .page-template-page-open-house-guide .search-tablet-mobile .property-type-group button,
    .page-template-page-open-house-guide .search-tablet-mobile .property-type-group label
    {
        font-size: 17px !important;
    }
}

@media (max-width: 380px){
    .search-tablet-mobile #bedrooms-selected-mobile,
    .search-tablet-mobile #bathrooms-selected-mobile{
        width: 120px;
    }
}

@media (max-width: 339px){
    .search-tablet-mobile #bedrooms-selected-mobile,
    .search-tablet-mobile #bathrooms-selected-mobile{
        width: 109px;
    }
}
/* End Responsive Open House Guide page */
/* End Open House guide page */