.localmodal-iframe{
  width: 100%;
  min-height: 100%;
  overflow-y: auto;
}

.localmodal-wrapper{
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    pointer-events: none;
}

.localmodal-wrapper{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 400;
    transition: visibility .2s linear;
    visibility: hidden;
}

.localmodal-wrapper--open{
    transition: visibility 0ms linear;
    visibility: visible;
    pointer-events: all;
}
.localmodal-wrapper--close{
    display: none;
}

.localmodal-wrapper__backdrop{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 0;
    transition: opacity .2s linear;
}
.localmodal-wrapper__backdrop--dark{
    background: rgba(0,0,0,.15);
}
.localmodal-wrapper--open .localmodal-wrapper__backdrop{
    opacity: 1;
}

.localprompt, .localprompt__content-wrapper{
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.localprompt{
    position: relative;
    justify-content: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    width: 90%;
    height: 90%;
    max-width: 600px;
    max-height: 480px;
}

.localprompt--enter{
    -webkit-animation: modalEnter .2s cubic-bezier(.8,0,0,1);
    animation: modalEnter .2s cubic-bezier(.8,0,0,1);
}

.localprompt__content-wrapper{
    height: 100%;
}

.localprompt__closemodal{
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

@-webkit-keyframes modalEnter {
0% {
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
to {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}
@keyframes modalEnter {
0% {
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
to {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}