html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: helvetica, arial, sans-serif;
    margin: 0;
    color: #3d3d3d;
    --mdc-theme-primary: #007f8b;
    --mdc-theme-on-primary: #f1f3f4;
    --header-height: 60px;
    background: #fff;
}

.header {
    background-color: #E3F2FD;
    position: fixed;
    inset: 0 0 auto;
    z-index: 10;
    height: var(--header-height);
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
}

.header-logo img {
    display: block;
    width: auto;
    max-width: min(150px, 42vw);
    height: 32px;
}

.widget-shell {
    position: fixed;
    inset: var(--header-height) 0 0;
    overflow: hidden;
}

#tryglasses-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}
