  body.vu-modal--open {
    overflow: hidden !important;
}
.vu-modal__wrapper {
    z-index: 1501;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    height: 100vh;
    position: fixed;
}
.vu-modal {
    align-items: center;
    display: flex;
    height: min-content;
    min-height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    outline: none;
    z-index: 1050;
}
.vu-modal::before {
    background-color: #212121;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}
.vu-modal__dialog {
    box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
    margin: 24px;
    pointer-events: auto;
    width: 100%;
    z-index: 1051;
    height: min-content;
    line-height: 0;
    position: relative;
}
.vu-modal__btn-close {
    padding: 34px 34px 72px 48px;
    position: absolute;
    right: -24px;
    top: -20px;
    cursor: pointer;
    height: 0;
    color: var(--color);
    opacity: .7;
    z-index: 1052;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent
}
.vu-modal__btn-close:hover {
    opacity: 1;
}
.vu-modal__btn-close::before, .vu-modal__btn-close::after {
    position: relative;
    content: "";
    right: -13px;
    display: inline-block;
    height: 12px;
    width: 12px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(-135deg);
    z-index: 1052;
}
.vu-modal__btn-close::after{
    transform: rotate(45deg);
    right: 13px;
}
.vu-modal__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    position: relative;
}
.vu-modal__content > * {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
}
.vu-modal__content > * > * {
    width: 100%;
}
.vu-modal__content a:hover::before {
    content: "";
    background-color: rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vu-modal__dialog img {
    width: 100%;
}
.vu-modal__text {
    width: 100%;
    padding: 30px;
    line-height: 1;
}
.vu-modal__text * {
    color: inherit;
    outline: none;
}
.vu-modal__text a:hover {
    color: inherit;
}
.vu-modal__text a p {
    padding: 0 0 10px;
    margin: 0;
}
@media (min-width: 576px) {
    .vu-modal__dialog {
        --modal-width: 500px;
        max-width: var(--modal-width);
        margin-right: auto;
        margin-left: auto
    }
}
@media (min-width: 992px) {
    .vu-modal__dialog {
        --modal-width: 800px
    }
    .vu-modal__btn-close {
        color: var(--color-md);
    }
    .vu-modal__content {
        flex-direction: row;
    }
}