* {
    box-sizing: border-box;
    background: initial;
    border: initial;
    outline: initial;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-decoration: inherit;
    margin: initial;
    padding: initial;
}

html {
    background-color: #f4f4f4;
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

.column-720 {
    margin: auto;
    max-width: 720px;
}

.column-1280 {
    margin: auto;
    max-width: 1280px;
}

.padding-16 {
    padding: 16px;
}

.padding-32 {
    padding: 32px;
}

.row {
    display: flex;
    align-items: flex-start;
}

.row .row-fill {
    flex-grow: 1;
    width: 0%;
}

header {
    background-color: #ffffff;
    position: sticky;
    position: -webkit-sticky;
    left: 0px;
    top: 0px;
    width: 100%;
}

header nav {
    display: flex;
    flex-direction: row;
    width: 100%;
}

header nav a {
    display: block;
}

header nav navitem {
    display: block;
    padding: 12px 16px;
}

main {

}

.navigation-button {
    background-color: #36304a;
    color: white;
    display: block;
    font-size: 16px;
    padding: 16px;
}

.flex-center {
    display: flex;
    justify-content: center;
    padding: 50px;
}

table {
    border-radius: 10px;
    border-collapse: collapse;
    overflow: hidden;
    width: 100%;
    table-layout: fixed;
}

table tr {
    transition: 0.4s opacity;
}

table tr:hover {
    opacity: 0.25;
}

table tr th {
    background-color: #36304a;
    color: white;
    font-size: 12px;
    padding: 16px;
}

table tr td {
    font-size: 16px;
    padding: 16px;
}

table tr td {
    background-color: #ffffff !important;
    color: #333;
    text-align: center;
}

table tr:nth-child(even) td {
    background-color: #f4f4f4 !important;
    color: #333;
}

iframe {
    display: block;
    width: 100%;
    height: 100%;
}

fieldset {
    border: 1px solid #7f7f7f;
    padding: 16px;
    margin: 16px auto;
}

fieldset legend {
    background-color: #7f7f7f;
    color: white;
    padding: 8px;
}

ul li {
    margin-left: 16px;
}

form {
    background-color: white;
    border-radius: 8px;
    display: block;
    padding: 16px;
}

form label {
    display: block;
    width: 100%;
}

input,
.input {
    background-color: #f4f4f4;
    border-radius: 8px;
    display: block;
    padding: 12px 16px;
    width: 100%;
}

select {
    background-color: #f4f4f4;
    border-radius: 8px;
    display: block;
    padding: 12px 16px;
    width: 100%;
}

textarea {
    background-color: #f4f4f4;
    border-radius: 8px;
    display: block;
    padding: 12px 16px;
    width: 100%;
    resize: vertical;
}

button,
.button {
    background-color: royalblue;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    text-align: center;
    padding: 12px 16px;
    width: 100%;
}

.validate[name] {
    transition: 0.4s background-color, 0.4s color, 0.4s border-color;
}

.validate[name][validate="error"] {
    color: crimson;
    border-color: crimson;
}

.popup {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.popup .popup-content {
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 75vw;
    height: 75vh;
    overflow-y: auto;
}