div.offer-box {
    border: 1px dashed #000;
    background: #FAFAFA;
    -webkit-box-shadow: 0px 0px 4px 3px rgba(255, 184, 28, 0.2);
    box-shadow: 0px 0px 4px 3px rgba(255, 184, 28, 0.2);
    padding: 30px 25px;
    text-align: center;
}

div.offer-box .offer-box-title {
    color: #2C2A29;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.36;
    margin-bottom: 15px;
}

div.offer-box .offer-box-cta {
    width: 100%;
    font-size: 12px;
    height: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

div.offer-box .offer-box-photo {
    width: 180px;
    margin-bottom: 10px;
}

div.sticky-offer-box {
    position: fixed;
    z-index: 99999;
    bottom: -120px;
    width: 100%;
    background: #FAFAFA;
    -webkit-box-shadow: 4px 0px 8px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 0px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-transition: bottom 0.3s ease;
    -o-transition: bottom 0.3s ease;
    transition: bottom 0.3s ease;
    padding: 15px 0;
    left: 0;
}

div.sticky-offer-box .sticky-offer-box-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 25px;
}

div.sticky-offer-box .sticky-offer-box-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

div.sticky-offer-box .sticky-offer-box-cta {
    width: 100%;
    font-size: 12px;
    height: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 285px;
}

div.sticky-offer-box .sticky-offer-box-title {
    max-width: calc(100% - 300px);
    color: #2C2A29;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.36;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px 15px;
    width: 100%;
}

div.sticky-offer-box .sticky-offer-box-title span {
    max-width: calc(100% - 100px);
}

div.sticky-offer-box .sticky-offer-box-photo {
    width: 80px;
}

.quote-wrap {
    -webkit-transition: bottom 0.3s ease;
    -o-transition: bottom 0.3s ease;
    transition: bottom 0.3s ease;
}

body.show-sticky-offer-box div.sticky-offer-box {
    bottom: 0;
}

@media (max-width: 1000px) {
    div.sticky-offer-box .sticky-offer-box-cta {
        height: 50px;
        max-width: 220px;
    }

    div.sticky-offer-box .sticky-offer-box-title {
        max-width: calc(100% - 240px);
        font-size: 24px;
    }

    div.sticky-offer-box .sticky-offer-box-title span {
        max-width: calc(100% - 80px);
    }

    div.sticky-offer-box .sticky-offer-box-photo {
        width: 60px;
    }
}

@media (max-width: 767px) {
    div.sticky-offer-box {
        display: none;
    }
}

@media (min-width: 768px) {
    body.show-sticky-offer-box .quote-wrap {
        bottom: 100px;
    }
}

@media (min-width: 1001px) {
    body.show-sticky-offer-box .quote-wrap {
        bottom: 120px;
    }
}