#zipcodeWidget {
    top: -50px;
    width: 100%;
    color: #fff;
    height: 0px;
    cursor: pointer;
    opacity: 0;
    display: flex;
    overflow: hidden;
    position: relative;
    transform: scaleY(0%);
    background: #2a6ab3;
    transition: all 250ms ease-in-out;
    font-weight: bold;
    align-items: center;
    justify-content: space-around;
    z-index: 9999;
}

#zipcodeWidget .expand-only {
    opacity: 0;
    font-size: 0;
    transform: scale(0);
    transition: all 250ms ease-in-out;
}
#zipcodeWidget.visible .expand-only {
    opacity: 1;
    font-size: inherit;
    transform: scale(100%);
    transition: all 250ms ease-in-out;
}

#zipcodeWidget.visible {
    opacity: 1;
    transition: all 250ms ease-in-out;
    transform: scaleY(100%);
    height: 50px;
    top: 0px;
}

#zipcodeWidget.dock {
    top: 0px;
    right: 5em;
    width: auto;
    height: auto;
    opacity: 1;
    padding: 1em;
    position: fixed;
    z-index: 99999999;
    display: inline-block;
    transform: scaleY(100%);
    box-shadow: 0 0 15px #0007;
    border-radius: 0 0 4px 4px;
    transition: all 250ms ease-in-out;
}

#zipcodeWidget.minimize {
    top: -10%;
    right: 50%;
    width: auto;
    height: auto;
    opacity: 0;
    padding: 1em;
    position: fixed;
    z-index: 99999999;
    display: inline-block;
    transform: scaleY(0%);
    box-shadow: 0 0 15px #0007;
    border-radius: 0 0 4px 4px;
    transition: all 250ms ease-in-out;
}
