
.rate-my-parks-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: #D14C29;
}

.rate-my-parks-widget__bubble {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    width: 150px;
    transition: all .2s;
    background-color: #fff;
    border-radius: 8px;
}

.rate-my-parks-widget__overlay {
    display: none;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 90px;
    bottom: 0;
    right: 0;
}

.rate-my-parks-widget__bubble:before {
    background-color: #fff;
    content:"\00a0";
    display: block;
    height: 8px;
    width: 8px;
    right: 32px;
    position: absolute;
    bottom: -3.5px;
    transform: rotate(47deg) skew(5deg);
    -moz-transform: rotate(47deg) skew(5deg);
    -ms-transform: rotate(47deg) skew(5deg);
    -o-transform: rotate(47deg) skew(5deg);
    -webkit-transform: rotate(47deg) skew(5deg);
}

.rate-my-parks-widget__bubble__heading {
    width: 100%;
    transition: all .2s;

    padding: 0 20px;

    background-color: #2B5D70;
    background-image: url('data:image/svg+xml,<svg width="784" height="122" viewBox="0 0 784 122" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M839.07 103.905C839.07 78.7193 829.065 54.5648 811.256 36.7557C793.447 18.9465 769.292 8.94141 744.106 8.94141C718.92 8.9414 694.766 18.9465 676.957 36.7557C659.148 54.5648 649.143 78.7192 649.143 103.905L744.106 103.905H839.07Z" fill="%23F79741"/><path d="M615.074 26.1171C615.074 0.931175 605.069 -23.2232 587.26 -41.0324C569.451 -58.8416 545.296 -68.8467 520.11 -68.8467C494.924 -68.8467 470.77 -58.8416 452.961 -41.0324C435.152 -23.2233 425.146 0.93116 425.146 26.1171L520.11 26.1171H615.074Z" fill="%23E86749"/><path d="M95.0819 77.581C95.0819 52.395 85.0769 28.2406 67.2677 10.4314C49.4585 -7.37772 25.3041 -17.3828 0.118126 -17.3828C-25.0678 -17.3828 -49.2223 -7.37773 -67.0314 10.4314C-84.8406 28.2406 -94.8457 52.395 -94.8457 77.581L0.118118 77.581H95.0819Z" fill="%23F79741"/><path d="M375.252 153.607C375.252 128.421 365.247 104.267 347.438 86.4578C329.628 68.6486 305.474 58.6436 280.288 58.6436C255.102 58.6436 230.948 68.6486 213.138 86.4578C195.329 104.267 185.324 128.421 185.324 153.607L280.288 153.607H375.252Z" fill="%23E86749"/></svg>');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    color: #F8F1E8;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

    font-size: 1.375rem;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: -0.75px;
    text-align: center;

}

.rate-my-parks-widget__bubble--hide {
    position: absolute;
    opacity: 0.01;
}

.rate-my-parks-widget__bubble__content {
    font-size: 1rem;
    line-height: 1.3125rem;
    padding: 26px;
}

.rate-my-parks-widget__bubble__title {
    opacity: 1;
    position: relative;
    padding: 15px;
    font-weight: 800;
    margin: auto;
    font-size: 0.75rem;
}


/* Active bubble: Focused or hovered */
.rate-my-parks-widget:hover .rate-my-parks-widget__bubble, .rate-my-parks-widget:focus-within .rate-my-parks-widget__bubble {
    width: 350px;
}

.rate-my-parks-widget:hover .rate-my-parks-widget__bubble:not(.rate-my-parks-widget__bubble--hide), .rate-my-parks-widget:focus-within .rate-my-parks-widget__bubble:not(.rate-my-parks-widget__bubble--hide) {
    opacity: 0;
}

.rate-my-parks-widget:hover .rate-my-parks-widget__bubble--hide, .rate-my-parks-widget:focus-within .rate-my-parks-widget__bubble--hide {
    opacity: 1;
}

.rate-my-parks-widget:hover .rate-my-parks-widget__overlay, .rate-my-parks-widget:focus-within .rate-my-parks-widget__overlay {
    display: block;
}

.rate-my-parks-widget__bubble--hide * {
    opacity: 0.01;
    transition: none;
    max-height: 0;
    user-select: none;
    pointer-events: none;
}

.rate-my-parks-widget:hover .rate-my-parks-widget__bubble--hide *, .rate-my-parks-widget:focus-within .rate-my-parks-widget__bubble--hide * {
    opacity: 1;
    transition: opacity .2s;
    max-height: 100vh;
    user-select: auto;
    pointer-events: all;
}

.rate-my-parks-widget__link {
    display: block;
    text-decoration: none;
    width: calc(100% - 52px);
    height: 42px;
    background-color: #3c885d;
    color: white;
    text-align: center;
    font-weight: 700;
    line-height: 42px;
    border-radius: 21px;
    margin: auto 26px 28px 26px;
}

.rate-my-parks-widget__link:hover {
    background-color: #D14C29;
    color: #fff;
}