@font-face {
    font-family: 'newyorkregular';
    src: url('/font/newyork-webfont.woff2') format('woff2'),
        url('/font/newyork-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sk-modernistbold';
    src: url('/font/sk-modernist-bold-webfont.woff2') format('woff2'),
        url('/font/sk-modernist-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sk-modernistregular';
    src: url('/font/sk-modernist-regular-webfont.woff2') format('woff2'),
        url('/font/sk-modernist-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body, html {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'sk-modernistregular' !important;
}

#intro {
    background-color: var(--intro-background-color);
    color: var(--intro-text-color);
    overflow-x: hidden;
    padding-top: 20px;
}

#contactButton {
    background-color: var(--contact-button-background-color);
    color: var(--contact-button-text-color);
    border: 1px solid var(--contact-button-border-color);
    text-transform: uppercase;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'sk-modernistregular';
}

#announcement {
    background-color: var(--announcement-bar-background-color);
    color: var(--announcement-bar-text-color);
}

/* custom styles start here */
#avatar {
    border-radius: 0px;
    border-top-right-radius: 125px;
    border-top-left-radius: 125px;
    outline: none;
    border: none;
    width: 200px;
    height: 200px;
    box-shadow: 0 0px 0px 19px var(--intro-background-color), 0px 2px 0px 19px var(--intro-background-color), 0 0px 0px 20px var(--intro-text-color);
}

#social svg {
    fill: var(--intro-text-color);
}

#name {
    font-family: 'newyorkregular';
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -0.5rem;
    padding-top: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1em;
    background-color: var(--intro-background-color);
}

.title_block {
    color: var(--title-color);
    font-family: 'sk-modernistbold';
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1em;
}

.link_block a {
    border: 1px solid var(--link-button-border-color);
    background-color: var(--link-button-background-color);
    color: var(--link-button-text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'sk-modernistregular';
}

.link_block img {
    border-radius: 0px;
}

.review_block {
    border-radius: 1rem;
    overflow: hidden;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* listing styles */
.listing_block {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    z-index: 0;
}

.listing_block .feature .listing_info {
    border-top: 1px solid var(--text-color);
}

.listing_block .condensed .listing_info {
    border-left: 1px solid var(--text-color);
}

.listing_info {
    padding: 15px;
    width: 100%;
}

.price_actual {
    font-family: 'newyorkregular';
    font-size: 24px;
}

.price_compare {
    font-family: 'newyorkregular';
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.5;
}

.listing_stats {
    border-top: 1px solid var(--text-color);
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-bottom: -15px;
    margin-top: 10px;
    gap: 0px !important;
}


.bed_count, .bath_count, .property_size {
    font-size: 14px;
    flex: 1;
    justify-content: center;
    padding: 10px 5px;
    border-right: 1px solid var(--text-color);
}

.property_size {
    flex-shrink: 0;
    border-right: none;
}

.bed_bath_icon {
    font-size: 16px;
}

/* listing styles end */

@media screen and (max-width: 768px) {
    #intro {
        border-right: none;
    }
}