.quick-order-widget {
    position: fixed;
    z-index: 10;
    max-width: 200px;
    bottom: 0;
    right: 0;
    border-radius: 6px;
    background: #fff;
}
.quick-order-widget__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: #ffffff6b;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 34px;
    width: 24px;
    height: 24px;
    font-size: 18px;
    transition: border 200ms ease-in-out;
}
.quick-order-widget__close:hover,
.quick-order-widget__close:focus {
    border: 2px solid rgba(255, 255, 255, 0.692);
}
.quick-order-widget__link {
    position: relative;
    z-index: 1;
    display: block;
}
.quick-order-widget__text {
    display: flex;
    z-index: 2;
    align-items: flex-end;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 0 30px 25px 30px;
}
.quick-order-widget__text p{
    color: white;
    font-family: inherit;
    font-weight: bold;
    margin: 0;
}
