@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --main-color: #E72F13;
    --bg: #f1f4f7;
    --hover: #d5d9de;
    --border: #bec9d5;
    --font-color: #313850;
}

* {
    font-size: 13px;
}

html, body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    color: var(--font-color);
}

iframe {
    width: 100%;
    margin: -2px;
}

h1 {
    font-size: 24px;
}

.bar {
    color: white;
    background-color: var(--main-color);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bar svg {
    max-width: 80px;
    max-height: 80px;
    padding: 12px 12px;
    margin-right: 12px;
}

main {
    max-width: 1080px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

section {
    background-color: white;
}

.section-title {
    font-size: 1.5rem;
    padding-top: 50px;
    padding-bottom: 25px;
    margin: 0;
}

table.table {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    background: #ffffff;
    contain: strict;
}

table.table tr:nth-child(even) {
    background: var(--bg);
}

table.table tr:hover {
    background: var(--hover);
}

table.table td, .table__list th {
    display: table-cell;
    vertical-align: middle;
    padding: 5px 5px;
}

table.table td.left {
    text-align: left;
}

table.table th {
    background: var(--hover);
    color: var(--font-color);
    font-weight: 600;
}

table.table, th, td {
    border: 1px solid var(--border);
    border-collapse: collapse;
}
