body.scroll-disabled {
    overflow-y: scroll;
    position: fixed;
    width: 100%;
}

body.scroll-disabled--hide-scrollbar {
    overflow-y: hidden;
}

.reservation {
    display: block;
    margin-top: 15px;
}

.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    max-height: 100%;
    padding: 40px 15px 15px;
    flex-direction: column;
    opacity: 0;

    background-color: #ffffff;
    transition: opacity 500ms cubic-bezier(.455, .03, .515, .955);
    z-index: 99995;
    box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
    .reservation-modal {
        padding: 60px;
    }
}

.reservation-modal.is-open {
    display: flex;
}

.reservation-modal--visible {
    opacity: 1;
}

.reservation-modal__content {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1780px;
    height: 100%;
    margin: auto;

    background-color: #222225;
    color: #ffffff;
    box-shadow: 0 22px 30px 0 rgba(0, 0, 0, .14);
    align-self: center;
    overflow: hidden;
}

.reservation-modal__text {
    position: relative;
    display: block;
    height: 100%;
    padding: 0 15px;
    line-height: 1.3;
}

.reservation-modal__text:before {
    content: '';
    display: block;
    height: 15px;
}

.reservation-modal__text:after {
    content: '';
    display: block;
    height: 110px;
}

@media only screen and (min-width: 1024px) {
    .reservation-modal__text {
        padding: 0 100px;
    }

    .reservation-modal__text:before {
        content: '';
        display: block;
        height: 55px;
    }

    .reservation-modal__text:after {
        content: '';
        display: block;
        height: 140px;
    }
}

.reservation-modal__close {
    position: absolute;
    top: 17px;
    right: 17px;

    display: flex;
    align-items: center;
    padding: 0;

    line-height: 30px;
    text-align: center;
    color: #000000;

    border: 0;
    outline: none;
    cursor: pointer;
    background-color: transparent;

    vertical-align: middle;
    z-index: 4;
}

.reservation-modal__close-text {
    display: inline-block;
    margin-right: 10px;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: inherit;
    transform: translate3d(0, 0, 0);
    transition: transform 400ms ease-in-out;
}

.reservation-modal__close-text:hover {
    transform: translate3d(6px, 0, 0);
}

.reservation-modal__close-icon {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
}

.reservation-modal__close-icon:before,
.reservation-modal__close-icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 18px;
    height: 1px;
    background-color: currentColor;
}

.reservation-modal__close-icon:before {
    top: 0;
    left: 0;
    transform: rotate(45deg);
    transform-origin: 0 0;
}

.reservation-modal__close-icon:after {
    bottom: 0;
    left: 0;

    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.reservation-modal__link-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;
    width: 100%;
    padding: 30px 0 20px 0;
    text-align: center;

    background: -moz-linear-gradient(top, rgba(34,34,37,0) 0%, rgba(34,34,37,1) 30%, rgba(34,34,37,1) 100%);
    background: -webkit-linear-gradient(top, rgba(34,34,37,0) 0%, rgba(34,34,37,1) 30%, rgba(34,34,37,1) 100%);
    background: linear-gradient(to bottom, rgba(34,34,37,0) 0%, rgba(34,34,37,1) 30%, rgba(34,34,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00222225', endColorstr='#222225',GradientType=0 );
}

@media only screen and (min-width: 1024px) {
    .reservation-modal__link-wrapper {
        padding: 80px 0 20px 0;
    }
}

.reservation-modal__link {
    transition: opacity 400ms ease-in-out;
}

.reservation-modal__link.is-disabled {
    pointer-events: none;
    opacity: 0.5;
}
