:root {
    --color-primary: #7FFBAE;
    --color-border-primary: #72D33F;
    --color-txt-dark: #1B1C1B;
    --color-txt-light1: #D8D7D5;
    --color-txt-light2: #86847E;
    --color-bg-primary: #75BE75;
    --color-bg-light: #F3F1EB;
    --color-bg-light2: #F2EDE1;
    --color-bg-dark: #1B1C1B;
    --color-bg-dark1: #252625;
}

body#cs {
    font-family: "Poppins", sans-serif;
    background-color: var(--color-bg-light);
    overflow-y: scroll;
    /* overflow-x: hidden; */
}

#cs button,
#cs a.btn {
    padding: 5px 25px;
    height: min-content;
}

#cs .btn-primary {
    color: var(--color-txt-dark);
    border: solid 1px var(--color-primary);
    background-color: var(--color-primary);
}

#cs .btn-primary {
    color: var(--color-txt-dark);
    border: solid 1px var(--color-primary);
    background-color: var(--color-primary);
}

#cs .btn-secondary {
    border: solid 1px var(--color-bg-dark1);
    background-color: var(--color-bg-dark1);
}

#cs .round {
    border-radius: 50px;
}

/* Effects */ 
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
  
.loader {
    border: 2px solid var(--color-txt-light1);
    border-top: 2px solid var(--color-bg-primary);
    border-radius: 50%;
    width: 30px !important;         /* Bootstrap will override the width when placed in a row*/
    height: 30px;
    animation: spin 1s linear infinite;
    margin-left: auto;
    margin-right: auto;
}
/* END Effects */

/* Header */
#cs-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.cs-solid-header {
    background-color: var(--color-bg-dark);
}

#cs-header nav > .container-fluid {
    width: 100%;
    align-items: start;
}

#cs-header.header-scroll {
    background-color: var(--color-bg-dark);
    transition: ease .5s;
}

#cs-header .navbar-brand > img {
    /* margin: -13px; */
    transition: ease .5s;
}

#cs-header.header-top .navbar-brand > img {
    height: 75px;
    width: auto;
}

#cs-header.header-scroll .navbar-brand > img {
    height: 50px;
    width: auto;
    background-color: var(--color-bg-dark);
}

@media only screen and (max-width: 991px) {

    #cs-header.header-top .navbar-brand > img {
        height: 50px;
        width: auto;
    }

    #cs-header.header-scroll .navbar-brand > img {
        height: 50px;
        width: auto;
        background-color: var(--color-bg-dark);
    }
}


#cs-header #navbarNav {
    margin-top: 10px;
    justify-content: center;
}

#cs-header .nav-item.active > .nav-link {
    color: var(--color-primary);
    font-weight: 600;
}
 #cs-header nav .btn-primary {
    margin-top: 10px;
 }
/* END Header */


/* Hero */
#cs-hero {
    margin-top: -101px;
    height: 1400px;
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
}

#cs-hero > .container #cs-hero--img {
    position: absolute;
    margin-top: 100px;
    right: -125px;
    height: 800px;
    width: auto;
}

#cs-hero #cs-hero-content {
    position: absolute;
    margin-top: 300px;
}

#cs-hero #cs-hero-content > #cs-hero-content-text {
    width: 58.33333333%
}


#cs-hero #cs-hero-content > #cs-hero-content-text > h1 {
    text-shadow: 5px 5px 20px var(--color-bg-dark);
}

#cs-hero #cs-hero-content > #cs-hero-content-text > p {
    text-shadow: 5px 5px 20px var(--color-bg-dark),
                 5px 5px 20px var(--color-bg-dark),
                 5px 5px 20px var(--color-bg-dark),
                 5px 5px 20px var(--color-bg-dark);
}

#cs-hero h1 {
    color: white;
    font-weight: 600;
    font-size: 74px;
}

#cs-hero p {
    font-size: 16px;
    /* color: var(--color-txt-light1); */
    color: white;
    margin: 70px 0 80px;
}

#cs-hero .spotify-wrapper {
    display: flex;
    margin-top: 75px;
    justify-content: center;
}

#cs-hero #cs-podcast-locations {
    display: flex;
    justify-content: center;
    margin-top: 75px;
    gap: 80px;
}
#cs-hero #cs-podcast-locations img {
    height: 50px;
}

@media only screen and (max-width: 991px) {
    #cs-hero {
        margin-top: -301px;
        height: max-content;
    }

    #cs-hero #cs-hero-content {
        position: static;
        margin-top: 300px;
    }

    #cs-hero > .container > #cs-hero--img-wrapper {
        display: flex;
        justify-content: center;
    }

    #cs-hero > .container #cs-hero--img {
        position: static;
        margin-top: 300px;
        margin-left: -5vw;
        width: 75%;
        height: auto;
    }

    #cs-hero #cs-hero-content {
        margin: 50px 0;
    }

    #cs-hero #cs-hero-content,
    #cs-hero #cs-hero-content > #cs-hero-content-text {
        width: 100%;
    }

    #cs-hero #cs-hero-content > #cs-hero-content-text > h1 {
        text-wrap: wrap;
    }

    #cs-hero #cs-hero-content #cs-hero-action {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media only screen and (max-width: 767px) {
    #cs-hero #cs-podcast-locations {
        flex-direction: column;
        align-items: center;
        margin-top: 45px;
        gap: 30px;
    }
}



/* END Hero */

/* Episodes Section */
#cs-episodes {
    margin: 120px 0;
}

#cs-episodes-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 30px;
}

#cs-episodes-list a {
    color: var(--color-border-primary)
}

#cs-episodes-list::-webkit-scrollbar {
    display: none;
}


#cs-episodes-list .cs-episodes-single .cs-episodes-single-card {
    margin: -150px 15px 20px;
    white-space: wrap;
    padding: 10px 10px 20px;
    border-radius: 15px;
    background-color: white;
}

#cs-episodes-list .episode-single-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

#cs-episodes-list .episode-single-card-detail {
    font-size: 12px;
    color: var(--color-txt-light2);
    margin: 0;
}

#cs-episodes-list .episode-single-card-description {
    color: var(--color-txt-light2);
    margin: 5px 0;
}

#cs-episodes-list .cs-episodes-single > img {
    position: relative;
    z-index: -1;
    height: 325px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media only screen and (max-width: 991px) {
    #cs-episodes-list {
        flex-wrap: wrap;
    }
    #cs-episodes-list .cs-episodes-single {
        width: 100%;
    }
}
/* END Episodes Section */

/* Meet the Hosts */
#cs-hosts {
    position: relative;
    color: white;
    background-color: var(--color-bg-primary);
}

#cs-hosts #cs-hosts-content-wrapper {
    display: flex;
    justify-content: end;
}

#cs-hosts .cs-hosts-content-inner-wrapper {
    flex: 0 0 auto;
    width: 41.66666667%;
}

#cs-hosts .cs-hosts-content {
    margin-top: 50px;
    margin-bottom: 300px;
}
#cs-hosts .cs-hosts-content h1 {
    margin-bottom: 30px;
}
#cs-hosts .cs-hosts-content p {
    margin-bottom: 25px;
}

#cs-hosts .cs-hosts-details {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    height: 100%;
}

#cs-hosts .cs-hosts-details .hosts-details-info {
    display: flex;
    justify-content: center;
    gap: 150px;
    padding-top: 50px;
}

#cs-hosts .cs-hosts-details .hosts-details-info h3 {
    font-size: 20px;
}

#cs-hosts .cs-hosts-details .hosts-details-single {
    position: relative;
}
#cs-hosts .cs-hosts-details .hosts-details-single > img {
    position: absolute;
}
#cs-hosts .cs-hosts-details #cs-hosts-brandon > img {
    height: 64px;
    width: auto;
    bottom: -20px;
    left: -30px;
}
#cs-hosts .cs-hosts-details #cs-hosts-jesse > img {
    height: 64px;
    width: auto;
    bottom: -30px;
    right: 30px;
}

#cs-hosts .cs-hosts-details .hosts-details-socials {
    display: flex;
    gap: 15px;
}
#cs-hosts .cs-hosts-details .hosts-details-socials img {
    height: 20px;
    width: auto;
}

#cs-hosts .cs-hosts-details img {
    height: 75%;
    width: auto;
}

@media only screen and (max-width: 1199px) {
    #cs-hosts > div.container {
        display: flex;
        flex-direction: column;
    }

    #cs-hosts #cs-hosts-content-wrapper {
        display: flex;
        justify-content: center;
    }

    #cs-hosts .cs-hosts-content-inner-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }

    #cs-hosts .cs-hosts-details {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #cs-hosts .cs-hosts-content {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    #cs-hosts .cs-hosts-details img {
        height: auto;
        width: 105%;
    }
    #cs-hosts .cs-hosts-details .hosts-details-info {
        gap: 10vw;
        margin-bottom: 30px;
    }

}

/* END Meet the Hosts */

#cs > #cs-partners > .container {
    display: flex;
    justify-content: center;
}
#cs-partners .cs-partners-card {
    display: flex;
    justify-content: center;
    background-color: var(--color-bg-dark);
    background-image: url(/assets/images/cta-approved.png);
    background-size: cover;
    background-position: 50% 38%;
    background-repeat: no-repeat;
    border-radius: 25px;
    text-align: center;
    color: white;
    height: 100%;
    width: clamp(300px, 80vw, 1000px);
    margin: 75px 0;
    padding: 80px 0;
}
#cs-partners .partners-card-content {
    width: clamp(300px, 50vw, 600px);
}
#cs-partners .partners-card-content h1 {
    margin-bottom: 20px;
}
#cs-partners .partners-card-content p {
    color: var(--color-txt-light2);
    margin-bottom: 70px;
}

/* 
 * Directory listings 
 */
/* Search */
#cs-directory-search {
    margin-top: 75px;
}

#cs-directory-search #directory-search-actions {
    display: flex;
    gap: 50px;
    margin: 25px 0 0;
}

#cs-directory-search > .container,
#cs-directory-results > .container {
    padding: 0 clamp(10px, 11vw, 200px) 25px;
}

/* Locations */


#cs-directory-locations .cs-location-empty a {
    color: var(--color-border-primary)
}

#cs-directory-locations .cs-location-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#cs-directory-locations .cs-location-empty-img {
    height: 50px;
}
#cs-directory-locations .cs-location-empty-message {
    margin: 15px 0 50px;
    font-size: 18px;
}

#cs-directory-results .loader {
    margin: 50px auto;
}

.cs-location {
    padding: 8px;
}

.cs-location.basic_plan {
    margin-top: 55px;
}

.cs-location.grower_monthly_plan, 
.cs-location.grower_yearly_plan, 
.cs-location.flower_monthly_plan,
.cs-location.flower_yearly_plan {
    position: relative;
    border: solid 5px var(--color-border-primary);
    margin-top: 75px;
}

.cs-location-badge {
    position: absolute;
    top: -35px;
    left: -5px;
    background-color: var(--color-border-primary);
    color: white;
    padding: 5px 5px;
}

.cs-location.bud_monthly_plan > .cs-location-badge,
.cs-location.bud_yearly_plan > .cs-location-badge {
    display: none;
}

.cs-location-map {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.cs-location.bud_monthly_plan > .cs-location-map,
.cs-location.bud_yearly_plan > .cs-location-map,
.cs-location.flower_monthly_plan > .cs-location-map,
.cs-location.flower_yearly_plan > .cs-location-map {
    display: none;
}

.cs-location-details {
    display: flex;
    margin-top: 40px;
}
.cs-location-logo--wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
}

.cs-location.bud_monthly_plan .cs-location-logo--wrapper,
.cs-location.bud_yearly_plan .cs-location-logo--wrapper {
    display: none;
}

.cs-location-logo {
    width: 90%;
    max-height: 25%;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 20px auto 0;
}
.cs-location-information {
    flex: 2;
    margin-bottom: 15px;
}
.cs-location-information p {
    line-height: 1.75em;
}

.cs-location-contact {
    color: #4786EA;
}

.cs-location.bud_monthly_plan h2.cs-location-name,
.cs-location.bud_yearly_plan h2.cs-location-name {
    font-size: 18px;
}

.cs-location.bud_monthly_plan .cs-location-description,
.cs-location.bud_yearly_plan .cs-location-description,
.cs-location.bud_monthly_plan .cs-location-contact,
.cs-location.bud_yearly_plan .cs-location-contact {
    display: none;
}

/* 
 * END Directory listings 
 */

/* Footer */
footer {
    background-color: var(--color-bg-light2);
}

footer a {
    color: var(--color-txt-light2);
    text-decoration: none;
}
footer a:hover {
    color: var(--color-bg-primary);
}

#footer-top > .container, 
#footer-bottom > .container {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    color: var(--color-txt-light2);
}

#footer-top-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#footer-top-left h1 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
}

#footer-top-left #footer-social-icons {
    display: flex;
    gap: 10px;
}

#footer-top-left img {
    height: 32px;
    width: auto;
}

#footer-top-right {
    display: flex;
    gap: 100px;
}

#footer-top-right h2 {
    color: var(--color-txt-dark);
    font-size: 16px;
}
#footer-top-right a {
    font-size: 14px;
}

#footer-bottom {
    border-top: solid 1px rgb(27, 28, 27, .15);
}
 #footer-bottom > .container > p {
    margin: 0;
 }

/* END Footer */