html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    font-weight: 400;
    --sb-width: 72px;
}

body.sb-expanded{
    --sb-width: 290px;
}

main{
    margin-left: 5rem;
    transition: margin-left 0.5s ease-in-out;
    width: 100%;
    overflow-y: scroll;
}

strong{
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6{ color: var(--text-text-primary); }

p{
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 20px;
    color: var(--text-text-tertiary);
}

h1{
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin: 10px 0;
}

h2{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

h3{
    font-size: var(--mit-font-small);
    font-weight: 600;
    margin-bottom: 10px;
}

h4{
    font-weight: 700;
}

hr{
    width: 100%;
    border: none;
    border-top: 1px solid var(--mit-gray-200);
    margin: 20px 0;
}

form{
    width: 100%;
    display: grid;
    gap: 14px;
}

.select-language{
    color: var(--mit-gray-600);
    font-size: 14px;
    font-weight: 400;
    display:inline-block;
    clear:both;
    width:100%;
    text-align: center;
    margin-bottom:30px;
}

.language-buttons{
    margin:auto;
    text-align: center;
}

#mobile-menu{
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--surface-surface-primary);
    color: var(--text-text-primary);
    border-radius: 100%;
    font-size: var(--mit-font-large);
    position: fixed;
    right: 31px;
    z-index: 9999;
}

#steps:before{
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    top: calc(50% - 2px);
    background: var(--surface-brand-surface-brand-primary);
    z-index: 2;
    transition: width 0.2s ease;
}

#steps:after{
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    top: calc(50% - 2px);
    background: var(--mit-gray-300);
    z-index: 1;
}

.pagination-item { width: 32px; height: 32px; }
.pagination-inner { width: 24px; height: 24px; }
.pagination-dot { width: 8px; height: 8px; }

@media (min-width: 768px){
    main{ margin-left: var(--sb-width); }
}

@media (max-width: 768px){
    .hidden-mobile{ display: none!important; }

    main{ margin: 0; }
    .resize{ display: none; }

    aside{
        margin-left: -72px;
    }

    body.sb-expanded aside{
        margin-left: 0;
    }
}