﻿.hero-block {
    background-color: var(--hero-primary-color, aliceblue);
    background-repeat: no-repeat;
}

    .hero-block .hero-content .hero-title {
        max-width: 50%;
    }

        .hero-block .hero-content .hero-title h1 {
            font-size: 34px;
            line-height: 42px;
        }

        .hero-block .hero-content .hero-title h3 {
            font-size: 22px;
            line-height: 30px;
            font-weight: 400;
            max-width: 90%;
            margin: 0 0 15px;
        }

        .hero-block .hero-content .hero-title .product-name {
            text-transform: uppercase;
            color: var(--product-name-color, #333740);
            font-size: 18px;
            font-weight: 900;
            line-height: 62px;
            padding-top: 15px;
        }

@media (min-width: 992px) {
    .hero-block {
        padding-top: 5rem;
    }

        .hero-block .hero-content .hero-title h1 {
            font-size: 48px;
            line-height: 62px;
        }

        .hero-block .hero-content .hero-title h3 {
            font-size: 24px;
            line-height: 34px;
        }
}

@media (max-width: 767px) {
    .hero-block {
        padding-top: 3rem;
        padding-bottom: 12rem;
    }

        .hero-block .hero-content .hero-title {
            text-align: center;
            max-width: 330px;
            margin: auto;
        }

            .hero-block .hero-content .hero-title h3 {
                margin: 0 auto 5px;
            }
}

.hero-block .hero-content a.cta.primary {
    padding: 21px 16px;
    display: inline-block;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-block .hero-content a.cta.primary {
        width: auto;
        font-size: 18px;
        padding: 23.7px 80px;
        border: none;
        margin-left: 0
    }
}

html, body {
    margin: 0;
    padding: 0;
}

.hero-block .hero-content {
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-block .hero-content {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-block .hero-content .hero-title {
        margin: 0;
        text-align: left;
    }
}

.hero-block .hero-content .price-bubble {
    width: 185px;
    text-align: center;
    background-color: white;
    border-radius: 50%;
    height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    position: absolute;
    bottom: -185px;
    box-shadow: rgba(51, 55, 64, 0.1) 6px 7px 27px 0;
    /*z-index: calc(infinity);*/
    z-index: 2000;
}

@media (max-width: 767px) {
    .hero-block .hero-content .price-bubble {
        bottom: -200px;
    }
}

@media (min-width: 768px) {
    .hero-block .hero-content .price-bubble {
        margin-left: auto;
        margin-right: 15px;
        position: unset;
    }
}

@media (min-width: 2000px) {
    .hero-block .hero-content .price-bubble {
        margin-right: -35px;
    }
}

.hero-block .hero-content .price-bubble .hero-price {
    font-size: 44px;
    line-height: 53px;
    font-weight: 900;
    color: #11881B;
    position: relative;
    z-index: 9999
}

    .hero-block .hero-content .price-bubble .hero-price sup.cents {
        top: -0.25em !important;
    }

.hero-block .hero-content .price-bubble .states-additional {
    position: relative;
    z-index: 9999
}