.sticky__store {
    position: fixed;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #001939;
    z-index: 9998;
    max-height: 400px;
    transition: max-height 1s ease;
}

.sticky__store.closed {
    max-height: 0;
}

.sticky__store .sticky__open {
    background-color: rgb(0 25 57 / 95%);
    position: absolute;
    right: 16px;
    top: -30px;
    border-radius: 10px 10px 0 0;
    padding: 0 20px;
    color: #FFF;
    font-weight: 600;
    text-decoration: underline;
    transition: transform .5s;
    transform: scaleY(1);
    transform-origin: 0 100%;
    height: 30px;
}


.sticky__store .sticky__open.closed {
    transform: scaleY(0);
}

.sticky__store .sticky__open a {
    padding: 2px 0;
    margin-right: 8px;
    display: inline-block;
    color: #FFF;
}

.sticky__store .sticky__information {
    background-color: rgb(0 25 57 / 95%);
    padding: 0 40px;
    color: #FFF;
    font-size: 13px;
    position: relative;
    overflow-y: hidden;
    max-height: 300px;
    transition: max-height 1s ease;
}

.sticky__store .sticky__information.closed {
    max-height: 0;
}

.sticky__store .sticky__information .store__close {
    position: absolute;
    top: 4px;
    right: 14px;
    width: 15px;
}

.sticky__store .sticky__information .store__close img {
    width: 100%;
    height: auto;
}

.sticky__store .sticky__information .store__title {
    font-weight: 700;
    font-size: 17px;
    padding-top: 15px;
}

.sticky__store .sticky__information .store__title img {
    margin-right: 8px;
}

.sticky__store .sticky__information .store__meta {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 10px 0 15px 0;
}

.sticky__store .sticky__information .store__meta a {
    color: #FFF;
    text-decoration: underline;
    font-weight: 600;
}

.sticky__store .sticky__information .store__meta .store-meta__details {
    width: 60%;
}

.sticky__store .sticky__information .store__meta .store-meta__change {
    width: 40%;
    text-align: right;
}

.sticky__store .sticky__footer {
    background-color: #fff;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    border-top: 1px solid #b5b5b5;
}
.sticky__store .sticky__footer .col-6 {
    width: 50%;
    text-align: center;
    padding: 10px;
}

.sticky__store .sticky__footer .col-6  a {
    color: #191919;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
}

.sticky__store .sticky__footer .phone {
    border-right: 1px solid #a7a7a7;
}

.sticky__store .sticky__footer .phone img {
    margin-right: 5px;
}

.sticky__store .sticky__footer .phone a {
    font-size: 12px;
    font-weight: 600;
}

.sticky__store .sticky__footer .book a {
    font-weight: 600;
}