
body.has-drawerOpen {
    overflow: hidden;
}
.Drawer{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
}
.Drawer .backdrop{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.Drawer__wrapper{
    position: fixed;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 30rem;
    max-width: 85%;
    min-height: 100vh;
    padding: 2.5rem 2.8rem;
}
.Drawer--left .Drawer__wrapper{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0;
    right: auto;
    display: block;
    overflow: auto;
}
.Drawer--right .Drawer__wrapper {
    left: auto;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}
.Drawer__contents{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ShowMore{
    overflow: hidden;
    position: relative;
}
.ShowMore:before{
    content:'';
    display:block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.ShowMore.is-open:before{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}
.ShowMore__content{
    padding-bottom: 6em;
    position: relative;
}
.ShowMore__controls{
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding-bottom: 6px;
}


.Reframe[data-v-b550cb20]{
    position: relative;
    width: 100%;
}
.Reframe iframe[data-v-b550cb20]{
    position: absolute;
    top: 0;
    height: 100%;
}


.Modal[data-v-06ae6803]{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    display: none;
}
.Modal--no-frame .Modal__box[data-v-06ae6803]{
    padding: 0;
}
.Modal__content[data-v-06ae6803]{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow: auto;
}
.Modal__box[data-v-06ae6803]{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -10%, 0);
            transform: translate3d(-50%, -10%, 0);
    width: 40rem;
    max-height: 95%;
    max-width: 90%;
    background: white;
    padding: 2rem;
    box-shadow: hsla(37, 6%, 17%, .1) 0 0 6px;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: auto;
}
.Modal--big .Modal__box[data-v-06ae6803]{
    width: 60rem;
}
.Modal--large .Modal__box[data-v-06ae6803]{
    width: 70rem;
}
.close[data-v-06ae6803]{
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em 0.75em;
    z-index: 2;
}
