@charset "utf-8";
/************* Styles for Sale Barn Listings - 2025 ***********/

/* ..... // Begin Sale Barn Showcase Page // ..... */
#sb-showcase-pg {
	display: flex;
	flex-direction: column;
	position: relative;
    background-color: #f7e5e2;

    header {
        padding: 1rem;
        color: var(--cp-primary-dark);

        h1 {
            font-size: calc(2.4rem + 1vw);
            margin-bottom: .75rem;
            font-weight: 800;
            font-family: pt-sans-pro-narrow, sans-serif;
            line-height: 1;
        }

        h2 {
            position: relative;
            font-size: calc(.8rem + .3vw);
            font-weight: 800;
            text-transform: uppercase;
        }

        a.showcase-cta {
            background: var(--cp-primary-comp);
            color: white;
            font-size: calc(.6rem + .2vw);
            font-weight: 600;
            padding: .8rem 1rem;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 3px;
            transition: 0.4s ease;
            box-shadow: 3px 4px 12px 0px rgba(8,10,10,0.3);
            text-align: center;
            font-family: pt-sans-pro-narrow, sans-serif;
            text-transform: uppercase;
            letter-spacing: .1em;
            line-height: 1;
            text-wrap: nowrap;

            &:hover {
                filter: brightness(1.2);
            }
        }
    }   
}

/* return to top button */
#showcaseTopButton {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 10px; /* Place the button at the bottom of the page */
	right: 10px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	color: var(--cp-primary-bold); /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	font-size:3rem; /* Increase font size */
	background: var(--cp-primary-light);
	border-radius: 99em;
  }

#showcaseTopButton:hover {
	filter: brightness(1.4);
}

#sb-gallery-section {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#sb-gallery-section .gallery-wrap {
    margin: 0 auto;
    max-width: 1400px;

    .item-wrap {
        position: relative;
        width: 100%;
        min-height: 300px;
        margin: .5rem 0;
        clip-path: inset(0 round 4px);
        background-color: rgb(82, 49, 53);
        transition: all .4s ease;
        padding: 4px;
        filter: brightness(1);

        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            mix-blend-mode: none;
            background: var(--cp-primary-darkest);
            opacity: 0.13;            
        }

        &:hover {                 
            background: none; 
            filter: brightness(1.5);    
        }
        
        img {
            position: absolute;
            top: 4px;
            left: 4px;
            object-fit: cover;
            object-position: center;
            width: calc(100% - 8px);
            height: calc(100% - 8px);
            z-index: 1;
            
        }

        .img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            background-color: var(--black-trans-60);
            background: linear-gradient(16deg, rgba(0,0,0,1) 0%, rgba(5,5,5,0.36876757538953087) 43%, rgba(5,5,5,0.09145665101978295) 71%, rgba(0,0,0,0) 100%);
            transition: background-color .4s ease-in-out;
        }        

        .content-wrap {
            display: flex;
            flex-direction: column;
            position: absolute;
            z-index: 3;
            width: 100%;
            height: 100%;
            font-size: calc(1rem + .2vw);
            color: white;

            .location {
                position: relative;
                display: flex;
                align-items: center;
                color: white;
                text-transform: uppercase;
                font-weight: 400;
                font-size: calc(.65rem + .2vw);
                letter-spacing: .05em;
                line-height: 1;
                padding: 16px 8px;
                background: rgba(56, 22, 27, .8);
                font-family: pt-sans-pro-narrow, sans-serif;
            }


            .bottom-content {
                margin-top: auto;

                .inner {

                    a.title {
                        margin-bottom: .5rem;
                        display: flex;
                        color: white;
                        line-height: 1;
                        font-weight: 300;
                        font-family: "rama-gothic-e", pt-sans-pro-narrow, sans-serif;
                        font-size: clamp(1.5rem, 1.5vw + 1.5rem, 2.2rem);
                    }
                    
                    a.btn-visit {
                        padding: 4px 14px;
                        background: var(--cp-primary-ultra-light);
                        border: 1px solid var(--cp-primary-light);
                        border-radius: 3px;
                        display: inline-flex;
                        align-items: center;
                        justify-content: space-between;
                        transition: .4s ease;
                        border-radius: 3px;
                        background: var(--cp-primary-light);
                        color: var(--cp-primary-darker);
                        font-weight: 500;
                        text-transform: uppercase;
                        font-size: clamp(0.75rem, .5vw + 0.4rem, .9rem);
                        font-family: "rama-gothic-e", pt-sans-pro-narrow, sans-serif;
                        letter-spacing: .08rem;
                        line-height: 1;
                        margin-right: auto;                        

                        &:hover {
                            background: rgba(82, 49, 53, .6);
                            color: var(--cp-primary-ultra-light);
                        }
                    }                    

                }
                
                .next-show {
                    text-transform: uppercase;
                    font-size: calc(.525rem + .2vw);
                    letter-spacing: .05em;
                    text-align: right;
                    color: white;
                    padding: .75rem;
                    background: var(--black-trans-60);
                    font-weight: 600;
                }
            }
        }
    }
}

@media screen and (min-width:768px) {

    #sb-gallery-section .gallery-wrap .item-wrap {
        min-height: 360px;
    }    
}

@media screen and (min-width:1200px) {
     #sb-gallery-section .gallery-wrap .item-wrap {
        min-height: 400px;
    }

}

/* ..... // Begin Sale Barn Listing Page // ..... */

#sb-listing-page {
	width: 100%;
    position: relative;
}

#sb-listing-page.change-bg-on-scroll {
    background-color: rgb(82, 49, 53)
}

#sb-listing-page .wrap-in-white {
	background: var(--white-trans-60);
	border: 1px solid var(--white-trans-80);
	border-radius: 6px;
}

#sb-listing-page #contact-seller, #sb-listing-page #sb-horses {
  scroll-margin-top: 100px;
}

#sb-listing-page .sb-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mix-blend-mode: none;
    }
}

#sb-listing-page .sb-fixed-bg::after {
      content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        mix-blend-mode: none;
        background: var(--cp-primary-darkest);
        opacity: 0.8;
}

#sb-listing__container .page-title-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vh;
    width: 100%;
    color: white;

    h1 {
        font-size: calc(3rem + 4vw);
        line-height: 1;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(32,40,41,0.56);
        text-transform: uppercase;
        font-family: pt-sans-pro-narrow, sans-serif;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;       
        position: relative;

        &::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--white-trans-20);
        }
    }

    .hjx-sb-tag {
        font-size: calc(.55rem + 1vw);
        font-weight: 800;
        text-shadow: 1px 1px 2px rgba(32,40,41,0.56);
        color: var(--cp-primary-light);
        letter-spacing: .03em;
        text-transform: uppercase;
    }
    
}

#sb-listing__container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;

    ul#sbTabs.nav-pills {
        margin-bottom: 14px;
        .nav-link {
            background: white;
            color: var(--cp-primary-darker);
            font-family: pt-sans-pro-narrow, sans-serif;
            font-size: clamp(.6rem, .4vw + .6rem, 1rem);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: .05em;
            line-height: 1;
            padding: .8rem 1rem;
            margin-right: 4px;
            margin-bottom: 4px;
            border-radius: 4px;
            transition: .4s ease;

            &.active {
                background: var(--cp-primary-light);
                color: var(--cp-primary-bold);                
                font-weight: 600;
            }
        }
    }

    .sb-section-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;          
        margin-left: auto;
        margin-right: auto;
        color: white;
        border-radius: 6px;
        filter: grayscale(.3);
        background: var(--cp-primary-darker);
        border: 1px solid var(--cp-primary-light);
        padding: 1.5rem;
    }

    h3.section-title {
        font-size: calc(.8rem + .2vw);
        line-height: 1.6;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-weight: 600;
        background: rgba(56, 22, 27, .8);
        color: white;      
        padding: 1.2rem 1rem 1rem;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    a.hero-cta {
        display: flex;
        align-items: center;
        padding: .6rem 1rem;
        background: var(--cp-primary-light);
        color: var(--cp-primary-darkest);
        font-family: pt-sans-pro-narrow, sans-serif;
        font-size: calc(.65rem + .2vw);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: .05em;
        line-height: 1;
        border-radius: 4px;
        transition: .4s ease;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        filter: brightness(1);

        &:hover {
            filter: brightness(1.2);
        }
    }
}

#sb-horses {
    width: 100%;
    border-radius: 6px;
    margin-left: auto;
    margin-right: auto;

    h3.section-title {
        background: rgba(56, 22, 27, .8);
        color: white;
    }

    .wrap-horses {      
        display: block;
        column-count: 1;             /* number of columns */
        column-gap: 1rem;          /* space between columns */
        margin: 0 auto;

        .horse-card {
            height: 40vh;
            max-height: 400px;
            position: relative;
            display: block;
            break-inside: avoid;
            width: 100%;
            color: white;
            font-family: pt-sans-pro-narrow, sans-serif;
            font-size: calc(.65rem + .2vw);
            font-weight: 500;
            border-radius: 4px;
            clip-path: inset(0 round 4px); 
            margin-bottom: 1rem;

            img {
                position: absolute;
                top: 4px;
                left: 4px;
                object-fit: cover;
                object-position: center;
                width: calc(100% - 8px);
                height: calc(100% - 8px);
                z-index: 1;
                border-radius: 4px;
                clip-path: inset(0 round 4px); 
                border: 1px solid var(--cp-primary-darkest);
            }

            div.img-overlay {
                position: absolute;
                top: 4px;
                left: 4px;
                width: calc(100% - 8px);
                height: calc(100% - 8px);
                z-index: 2;
                background-color: var(--black-trans-60);
                background: linear-gradient(16deg, rgb(56,22,27) 0%, rgba(56,22,27,0.36876757538953087) 43%, rgba(56,22,27,0.09145665101978295) 71%, rgba(56,22,27,0) 100%);
                border-radius: 4px;
                transition: all .4s ease;
            }

            div:hover.img-overlay {
                background-color: var(--black-trans-10);               
            }

            .content-wrap {
                position: absolute;
                left: 0;
                display: flex;
                flex-direction: column;
                padding: 1rem;
                z-index: 15;

                .txt-link {
                    color: white;
                    font-family: "rama-gothic-e", pt-sans-pro-narrow, sans-serif;
                    font-size: clamp(1.4rem, 1.5vw + 1.2rem, 1.8rem);
                }

                .horse-details {
                    font-family: "rama-gothic-e", pt-sans-pro-narrow, sans-serif;
                    font-size: clamp(.8rem, .2vw + .8rem, 1rem);
                    text-transform: uppercase;
                    letter-spacing: .05em;
                }

                .btn-link {
                    padding: 4px 14px;
                    background: var(--cp-primary-ultra-light);
                    border: 1px solid var(--cp-primary-light);
                    border-radius: 3px;
                    margin-top: .5rem;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    color: var(--cp-primary-bold);
                    text-transform: uppercase;
                    font-size: .8em;
                    letter-spacing: .03em;
                    width: 120px;
                }
            }

            .content-wrap.top {
                top: 0;
            }

            .content-wrap.bottom {
                bottom: 0;
            }
        }
    }
}

/***********_________ SB Information__________ *************/
#sb-listing-page #sb-information {
    display: flex;
    flex-direction: column;
    padding: .5rem;
    margin-left: auto;
    margin-right: auto;
    background: var(--cp-primary-darker);
    color: white;
	border-radius: 6px;
    filter: grayscale(.3);

    .info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: .5rem;     
    }

     .contact-icons {
        display: flex;
        flex-flow: row wrap;
        align-items: center;

        a, button {
            display: inline-flex;
            background: var(--cp-primary-light);
            color: var(--cp-primary-darker);
            border-radius: 3px;
            border: 1px solid var(--cp-primary-light);
            margin: 3px;
            transition: .4s ease;
            width: 32px;
            height: 32px;
            justify-content: center;
            align-items: center;

            svg {
                font-size: calc(1rem + .2vw);
            }

            &:hover {
                background: var(--cp-primary-medium);
                border-color: var(--cp-primary-medium);
                color: var(--cp-primary-light);
            }
        }

        a:hover {
            filter: brightness(1.1)
        }
    }
}

#slideshow {
	width: 100%;
    height: 100%;

    .splide {
        height: 100%;
        max-height: 450px;

            .splide__track {
                height: 100%;

                ul {
                    max-width: 1600px;
                    margin: 0 auto;
                    min-height: 45vh;

                    li img {
                        width: 100%;
                        height: 100%;
                        max-height: 450px;
                        object-fit: cover;
                        object-position: center center;
                        border-radius: 4px;
                    }

                    li div {
                        z-index: 99;
                        position: absolute;
                        color: white;
                        background: var(--secondary-trans-40);
                        right: 0;
                        top: 0;
                        padding: .5em 1em;
                        font-size: .5rem;
                        font-weight: 600;
                        text-transform: uppercase;
                        letter-spacing: .1em;
                    }
                }
            }

            .splide__controls {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                padding: 1em 0;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: var(--secondary-ultra-dark-trans-40);

                .splide__pagination {
                    position: relative;
                    bottom: unset;
                    left: unset;
                    padding: 0 1em;
                    right: unset;
                }

                .splide__toggle {
                    align-items: center;
                    background: var(--accent-hover);
                    border-color: var(--accent-light);
                    border-radius: 50%;
                    display: inline-flex;
                    height: 1.8rem;
                    justify-content: center;
                    margin-right: 0.5rem;
                    transition: background-color .2s ease;
                    width: 1.8rem;

                    button {
                        border: 0;
                        cursor: pointer;
                        padding: 0;
                    }

                    svg {
                        fill: #e5eeee;
                        height: 46%;
                        transition: fill .2s ease;
                        width: 46%;
                    }
                }
            }
    }
}

#sb-listing-page .sb-share__container {
	display: flex;
	flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin-left: 3px;

    .copy-link__wrap {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        font-size: calc(.7rem + .3vw);   
        line-height: 1em;        
        color: var(--cp-primary-darker);
        border: 1px solid var(--cp-primary-darker);
        font-weight: 500;
        padding: 0;
        border-radius: 3px;
        

        .text-to-copy {
            font-family: pt-sans-pro-narrow, sans-serif;
            padding: 6px;
            border-radius: 3px 0 0 3px;
            background: var(--white-trans-90);
            height: 32px;
            line-height: 1;
            display: flex;
            align-items: center;
        }

        .copy-tooltip {
            position: relative;
            display: inline-block;

            .tooltiptext {
                visibility: hidden;
                width: 100px;
                background-color: var(--cp-primary-medium);
                color: #fff;
                text-align: center;
                border-radius: 3px;
                padding: 5px;
                position: absolute;
                z-index: 1;
                bottom: 150%;
                left: 50%;
                margin-left: -50px;
                opacity: 0;
                transition: opacity 0.3s;
                font-size: .5rem;
            }

            .tooltiptext::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 50%;
                margin-left: -5px;
                border-width: 5px;
                border-style: solid;
                border-color: var(--cp-primary-medium) transparent transparent transparent;
            }

            button.copy-link {
                background: var(--cp-primary-light);
                display: flex;
                height: 32px;
                padding: 0 .5em;
                align-items: center;
                justify-content: center;
                border-radius: 0 3px 3px 0;            
                border: none;
                margin: 0;
                text-decoration: none;
                color: var(--cp-primary-darker);
                cursor: pointer;
                text-align: center;
                transition: background 250ms ease-in-out, 
                            transform 150ms ease;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                line-height: 1em;

                svg {
                    width: 16px;
                    height: 16px;
                }

                span {
                    font-size: calc(.5rem + .2vw);
                    font-weight: 600;
                    line-height: 1;
                    letter-spacing: .05em;
                    font-family: pt-sans-pro-narrow, sans-serif;
                    text-transform: uppercase;
                }
            }
                
            button.copy-link:hover,
            button.copy-link:focus {
                    background: var(--cp-primary-medium);
                    color: var(--cp-primary-light);
                }
                
            button.copy-link:focus {
                outline: 1px solid var(--cp-primary-medium);
                outline-offset: -4px;
            }

            button.copy-link:active {
                transform: scale(0.99);
            }
        }

        .copy-tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
    }
}

.info-content-wrap {
    display: block;
    column-count: 1;             /* number of columns */
    column-gap: 1rem;          /* space between columns */
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 3rem;

    .info-content-item {
        display: block;  /* important - makes the element respect the column layout */
        break-inside: avoid;         /* prevent item from breaking between columns */
        width: 100%; 
        margin: 0 0 1rem;
        font-size: calc(.7rem + .2vw);
        color: var(--cp-primary-dark);
        background: var(--white-trans-90);
        border-radius: 4px;
        font-weight: 500; 
        padding-bottom: .75rem;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

        &.location {
            padding-bottom: 0;

            .list-heading {
                border-radius: 4px;
                margin-bottom: 0;

                h6 {
                    font-size: 1.2em;
                    font-weight: 600;
                }
            }
        }
        
        .list-heading {
            display: flex;
            background: #351d21;
            padding: 18px 12px 18px 18px;
            margin-bottom: .75rem;
            border-radius: 4px 4px 0 0;
            color: white;

            h6 {
                text-transform: uppercase;
                font-size: calc(.6rem + .2vw);  
                font-weight: 600;
                letter-spacing: .05em;
                margin-bottom: auto;
                margin-top: auto;                          
            }

            svg {
                font-size: calc(1.5rem + .2vw);
                margin-right: .5rem;
            }
        }

        ul {
            list-style-type: none;
            padding-left: 0; 
            margin: 0 1rem;     
            font-family: pt-sans-pro-narrow, sans-serif;                             
            
            li {
                margin: 0 0 .4rem 0;            
                line-height: 1.2;            
            }
            
        }

        ul.sideways {
            display: flex;
            flex-flow: row wrap;
            gap: .25rem;

            li {
                margin: 0;
                background: var(--white-trans-60);
                padding: 8px 9px 7px;
                border-radius: 3px;
                line-height: 1;
            }
        }

        ul.upcoming-shows-list li a {
            background: var(--white-trans-50);
            padding: 8px 9px 7px;
            border-radius: 3px;
            line-height: 1;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            transition: .4s ease;
            color: var(--cp-primary-bright);

            &:hover {
                background: var(--white-trans-80);
                color: var(--cp-primary-comp);
            }
        }
    }
}

.sb-specialties-wrap {
    display: flex;
    flex-flow: row wrap;
    gap: .5rem;
    margin-top: .5rem;
    justify-content: center;
    font-family: pt-sans-pro-narrow, sans-serif;

    .specialty-box {
        background: rgba(235, 149, 147, .3);
        color: var(--cp-primary-bold);
        padding: .5rem 1rem;
        border-radius: 3px;
        font-size: calc(.85rem + .2vw);
        font-weight: 500;
        white-space: nowrap;
        flex-grow: 1;
    }

    .sub-specialty-box {
        color: var(--cp-primary-bold);
        padding: .2rem .3rem;
        border-radius: 3px;
        font-size: calc(.75rem + .2vw);
        font-weight: 500;
        white-space: nowrap;
    }
}

.sb-share-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-primary-bold);
    width: 100%;
    padding: .75rem;
    border-radius: 6px 6px 0 0;

    h5 {
        font-size: calc(.6rem + .3vw);
        text-transform: uppercase;
        text-align: center;
        color: white;
        font-weight: 500;
        letter-spacing: .08em;
        margin: auto;
    }
}

#sb-bio {
	font-size: calc(.75rem + .2vw);
	margin: 0 auto;

    p {
        line-height: 1.6;
    }

    p:last-of-type {
        margin-bottom: 0;
    }

    .sb-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .5rem;
        width: 100%;
        max-width: 180px;
        margin: auto;        
        border: 2px solid rgba(56, 22, 27, .3);
        background: rgba(56, 22, 27, .3);
        border-radius: 6px;

        img {
            width: 100%;
            height: auto;
            object-fit: contain;
            clip-path: inset(0 round 4px);
        }     
    }
}

#sb-sponsors {
	h6 {
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .05em;
        margin-bottom: 0;
        font-weight: 500;
        font-size: calc(.55rem + .2vw);
        line-height: 1.6;
    }

    .logo-outer {
        display: flex;
        justify-content: center;
        position: relative;
        background: rgba(248, 208, 208, .25);
        padding: 8px;
        border-radius: 4px;
        border: rgba(248, 208, 208, .25) 1px solid;


        a {
            margin: auto;
            border: 2px solid white;
            background: white;
            border-radius: 3px;
            padding: .25rem;

            .logo-img {
                display: block;            
                height: 80px;
                aspect-ratio: 1 / 1;
            }
        }
    }
}

#contact-seller {
	width: 100%;
    background: var(--cp-primary-dark);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    filter: grayscale(.3);

    h3.section-title {
        background: var(--cp-primary-dark);
        color: white;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
    
    svg.bg-icon {
        position: absolute;
        bottom:-170px;
        left: -80px;
        color: var(--cp-primary-ultra-light);
        font-size: 680px;
        opacity: .5;
    }

    .wrap-seller-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        border-radius: 4px;
        background: var(--black-trans-20); 
    }
}

#contact-seller .seller-box {
    position: relative;
    padding: 1rem 0 0 0;
    color: white;
    font-size: calc(1rem + .2vw);
    overflow: hidden;
    height: 100%;

    .group-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        height: 100%;

        h5 {
            font-weight: 700;
            font-size: calc(.65rem + .3vw);
            text-transform: uppercase;
            color: var(--cp-primary-light);
            margin-bottom: 1.5rem;
            text-align: start;
        }

        .seller-info {
            display: flex;
            flex-direction: column;
            color: white;
            font-size: calc(2rem + .6vw);

            .name {
                font-family: pt-sans-pro-narrow, sans-serif;
                margin-bottom: .5rem;
                font-weight: 800;
            }

             .details {
                font-size: calc(.75rem + .3vw);
                text-transform: uppercase;
                margin-bottom: .25rem;
                font-weight: 500;
            }
        }

        .contact-icons {
            margin-bottom: 2rem;

            a {
                display: inline-flex;
                background: var(--white-trans-80);
                color: var(--cp-primary-bold);
                padding: 6px;
                border-radius: 4px;
                margin: .5rem .5rem .5rem 0;
                transition: .4s ease;

                svg {
                    font-size: calc(1.2rem + .3vw);
                }
            }
        }
    }
}


#sb-contact-form {
	padding-top: 0;
	display: flex;
	flex-direction: column;
	background: var(--cp-primary-dark);
	border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    .form-wrap {
        padding: 3rem 1rem 0;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border:none;

        #sb-contact__form {
            p {
                margin-bottom: 3em;
            }

            label {
                margin-bottom: 8px;
                color: white;
                font-size: .7rem;
                font-weight: 500;
            }

            textarea {
                height: 12rem;
            }

            input, textarea {
                border-radius: 3px;
                padding: .8em 1em;
                font-size: calc(.8rem + .2vw);
                line-height: 1.4;
                font-family: pt-sans-pro-narrow, sans-serif;
                background: var(--white-trans-80);
                width: 100%;
            }

            input[type=submit] {
                background: var(--cp-primary-comp);
                font-size: calc(.6rem + .2vw);
                border-radius: 3px;
                width: 8em;
                color: white;
                font-weight: 600;
                border: var(--cp-primary-comp) 1px solid;
                text-transform: uppercase;
                letter-spacing: .08em;
                font-weight: 700;
                line-height: 1;
            }
        }
    }
}

/*** QR Modal ***/
 #sb-listing-page .modal#qrModal {
	background: var(--black-trans-60); 

	.modal-content {
		background: black;
		padding: 12px;
		padding: 0;

		.modal-footer {
			padding: 6px 6px 4px 12px;
			border-top: none;
			width: 100%;
			background: var(--cp-primary-bold) !important;
			height: 5%;

			button.close-modal {
				padding: 6px;
				border: 1px solid white;
				color: white;
				font-size: .5rem;
				line-height: 1;
				text-transform: uppercase;
				border-radius: 99em;
				background: none;
				font-weight: 500;
				letter-spacing: .08em;
			}
		}		

		.qr-wrap {
		max-width: 300px;
		margin: 0 auto 3rem;

			img {
				width: 100%;
				object-fit: contain;		
			}
		}
	}

	.modal-footer {
		padding-bottom: 12px;
		padding-top: 12px;
	}
 }

@media screen and (min-width: 576px) {

    #sb-hero .hero-content {
        padding: 3rem;
    }

    #sb-listing-page .info-content-wrap {
        column-count: 2;
    }
}
@media screen and (min-width: 768px) {

    #sb-horses .wrap-horses {
        column-count: 2;
    }
    #contact-seller {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
        'note    note' 
        'details form';
    }
    /*
    #sb-listing-page #sb-information .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    */    
}

@media screen and (min-width: 992px) {
    #sb-listing-page .info-content-wrap {
        column-count: 3;
    }
}

@media screen and (min-width: 1920px) {
  #sb-horses .wrap-horses {
    grid-template-columns: 1fr 1fr 1fr;
  }

}