* {
    box-sizing: border-box;
}
body {
    font-family: "Roboto Condensed", helvetica, sans-serif;
    font-size: 16px;
    margin: auto;
    padding: 5vh 0vh;
    box-sizing: border-box;
}
prenotasyst-interactive {
    display:block;

    margin: auto;
    padding: 0vh 1vw;
    box-sizing: content-box;
    
    height: fit-content;
    max-width: 600px;
    max-height: 675px;
    overflow: auto;

    border-radius: 1em;
}
@media only screen and (max-width: 650px ) {
    body {
        padding:unset;
    }
    prenotasyst-interactive {
        height: calc(100% - 2rem);
        max-height:unset;
        padding: 2vh;
        box-sizing: border-box;
        border-radius: unset;
        z-index:99;
    }
}