#tuka dialog {
    border: 0;
@media screen and (max-width: 400px) {
      padding: 0;
}
@media screen and (max-width: 1199.9999px) {
      overflow: hidden;
}
}
#tuka dialog::backdrop {
    background: rgba(0, 0, 0, 0.75);
}
#dialog__container {
    display: grid;
    grid-template-columns: 100%;
    width: 90vw;
@media screen and (min-width: 1200px) {
      height: 90vh;
}
    padding: 1.25rem;
    max-width: 1200px;
}
#dialog__header {
    display: flex;
}
#tuka-dialog-close {
    flex: 0 0 auto;
    margin-left: auto;
}
#dialog__header button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #000;
    padding: 0;
    font-size: 28px;
}
#dialog__body {
    display: flex;
    justify-content: center;
    align-items: center;
}
#dialog__body figure {
    display: flex;
    flex-flow: column;
    align-items: center;
}
#dialog__body figure > figcaption {
    margin: 1.25rem 0;
    align-self: flex-start;
    order: 1;
}
#dialog__body figure > img { order: 2;
}
#dialog__footer {
    display: flex;
    justify-content: center;
    height: 44px;
    align-self: flex-end;
}
#dialog__footer button:focus {
    outline-offset: 2px;
}