html {
    font-size: 9px;
}

@media (min-width: 460px) {
    html {
        font-size: 10px;
    }
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: url("../images/background-1920x1080-UrW361T.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

body,
button,
input {
    font-family: 'Inter', sans-serif
}

html * {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
tr,
td,
th,
input,
button {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

.text {
    line-height: 1.6;
}

/* ------------------------------------------------------------------
 * App
 * ---------------------------------------------------------------- */

.App {
    padding: 32px 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ------------------------------------------------------------------
 * Title & Subtitle
 * ---------------------------------------------------------------- */

.AppTitle {
    font-size: 3.4rem;
    font-weight: 200;
    text-align: center;
}

.AppTitle a {
    color: #000000;
    text-decoration: none;
}

.AppSubtitle {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .AppTitle {
        font-size: 4.6rem;
    }

    .AppSubtitle {
        font-size: 1.4rem
    }
}

/* ------------------------------------------------------------------
 * Language Switcher
 * ---------------------------------------------------------------- */

.AppLanguageSwitcher {
    text-align: center;
    margin-top: 15px;
}

.AppLanguageSwitcher .item {
    display: inline-block;
    line-height: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.AppLanguageSwitcher .item:hover,
.AppLanguageSwitcher .item.current {
    border-color: #ffffff;
}

/* ------------------------------------------------------------------
 * Footer
 * ---------------------------------------------------------------- */

.AppFooter {
    border-top: 1px solid #eee;
    text-align: center;

}

.AppFooter .cards img {
    max-width: 220px;
    height: auto;
}

.AppFooter .links {
    margin-top: 16px;
}

.AppFooter .copyright {
    margin-top: 8px;
}

.AppFooter {
    font-size: 1.2rem;
    font-weight: 500;
}

.AppFooter .copyright {
    font-weight: bold;
}

.AppFooter a {
    text-decoration: none;
    color: #000000;
}

.AppFooter a:hover {
    color: rgba(22, 0, 163, 1);
}

.AppFooter a:not(:last-child) {
    margin-right: 8px;
}

/* ------------------------------------------------------------------
 * Dialog - Common
 * ---------------------------------------------------------------- */

.AppDialog {
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    backdrop-filter: blur(4px);
    margin-top: 30px;
}

.AppDialogHeader,
.AppDialogFooter,
.AppFooter {
    padding: 24px;
}

/* ------------------------------------------------------------------
 * Dialog - Header
 * ---------------------------------------------------------------- */

.AppDialogHeader {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.AppDialogHeader .title {
    font-size: 2rem;
}

.AppDialogHeader .IconSuccess {
    color: #4caf50;
}

/* ------------------------------------------------------------------
 * Dialog - Body
 * ---------------------------------------------------------------- */

.AppDialogBody {
    padding: 24px 24px;
}

/* ------------------------------------------------------------------
 * Dialog - Footer
 * ---------------------------------------------------------------- */

.AppDialogFooter {
    text-align: right;
    border-top: 1px solid #eee;
}

.AppDialogFooter .action {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.AppDialogFooter .action.primary {
    text-decoration: none;
    background: rgba(22, 0, 163, 0.8);
    color: #fff;
    padding: 8px 12px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.AppDialogFooter .action.primary:hover {
    background: rgba(22, 0, 163, 1);
}

@media (max-width: 767px) {
    .AppFooter a {
        display: block;
    }

    .AppFooter a:not(:first-child) {
        margin-top: 6px;
    }
}


/* ------------------------------------------------------------------
 * Sections
 * ---------------------------------------------------------------- */

.section + .section {
    margin-top: 16px;
}

.section > .title {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.4);
}

.section .title + * {
    margin-top: 12px;
}

/* ------------------------------------------------------------------
 * Info Tables
 * ---------------------------------------------------------------- */

.info-table {
    background: rgba(0, 0, 0, 0.02);
    padding: 0 15px;
    border-radius: 10px;
    border-spacing: 0;
    width: 100%;
}

.info-table th:first-child,
.info-table td:first-child {
    width: 100%;
}

.info-table th:not(:last-child),
.info-table td:not(:last-child) {
    padding-right: 8px;
}

@media (min-width: 460px) {
    .info-table th,
    .info-table td {
        white-space: nowrap;
    }

    .info-table th:not(:last-child),
    .info-table td:not(:last-child) {
        padding-right: 16px;
    }
}

.info-table th {
    text-align: left;
    font-weight: 600;
}

.info-table th:not(:first-child),
.info-table td:not(:first-child) {
    text-align: right;
}

.info-table:not(.with-vertical-headers) tbody th {
    font-weight: normal;
}

.info-table tfoot th,
.info-table tfoot td {
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.info-table th,
.info-table td {
    padding: 12px 0;
}

.info-table tbody th,
.info-table tbody td {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.info-table.with-vertical-headers tbody tr:first-child th,
.info-table.with-vertical-headers tbody tr:first-child td {
    border-top: none;
}
