/* global */
* {
    font-size: 0px;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    margin-block-start: 0px;
    margin-block-end: 0px;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.link-hover:hover {
    text-decoration: underline;
}

.link-black, .link-black:visited, .link-black:active {
    color: #0d0d0d;
}

.link-blue, .link-blue:visited, .link-blue:active {
    color: #3C21ED !important;
}

.link-blue:hover {
    text-decoration: underline !important;
}

.link-p7s, .link-p7s:visited, .link-p7s:active {
    color: #f2f2f2;
    background-color: #1a0b82;
    font-weight: bold;
    font-size: 10px !important;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 3px;
    vertical-align: top;
}

.link-p7s:hover {
    text-decoration: underline !important;
}

.link-inherit, .link-inherit:visited, .link-inherit:active {
    color: inherit;
}

.link-with-icon {
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
}

.link-with-icon > p {
    font-size: 16px;
}

.link-with-icon > img {
    height: 12px;
}

.link-bigger-icon > img {
    height: 24px;
}

a > *, p > *, span > *, font, b > *, i > *, li > * {
    font-size: inherit;
}

/* specific */

/* default */
.button-big {
    display: inline-block;
    font-size: 16px;
    color: #f2f2f2 !important;
    background-color: #1a0b82;
    border: none;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: 0.2s;
    text-align: center !important;
}

.button-small {
    display: inline-block;
    font-size: 16px;
    color: #f2f2f2 !important;
    background-color: #1a0b82;
    border: none;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: 0.2s;
    text-align: center !important;
}

.button-tiny {
    display: inline-block;
    font-size: 16px;
    color: #f2f2f2 !important;
    background-color: #1a0b82;
    border: none;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
    text-align: center !important;
}

.button-big:hover, .button-small:hover, .button-tiny:hover {
    transition: 0.1s;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
}

.field-default {
    font-size: 16px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 8px;
    border: 2px solid #7f7f7f;
}

.test {
    color: #f2f2f2;
    background-color: #0d0d0d;
    font-size: 16px;
}

.container-common {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.view-common {
    display: flex;
    width: 1024px;
    align-items: center;
}

body {
    background-color: #f2f2f2;
}

.table-left > tbody > tr * {
    text-align: left !important;
}

.table-center > tbody > tr * {
    text-align: center !important;
}

.table-right > tbody > tr * {
    text-align: right !important;
}

.table-column-left, .table-column-left * {
    margin-right: auto;
    text-align: left !important;
}

.table-column-center, .table-column-center * {
    margin-right: auto;
    margin-left: auto;
    text-align: center !important;
}

.table-column-right, .table-column-right * {
    margin-left: auto;
    text-align: right !important;
}

.table-column-top, .table-column-top * {
    vertical-align: top;
}

.table-column-bottom, .table-column-bottom * {
    vertical-align: bottom;
}

.table-default {
    outline: 2px solid #7f7f7f;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 2px;
    outline-offset: -2px;
}

.table-default > tbody > tr > td:not(:last-of-type) {
    border-right: 2px solid #b9b9b9;
}

.table-default > tbody > tr:not(:last-of-type) > td {
    border-bottom: 2px solid #b9b9b9;
}

.table-default > tbody > tr > td {
    /*text-align: center;*/
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

.table-default > tbody > tr * {
    font-size: 16px;
}

.table-wrapper {
    overflow-x: scroll;
}

.input-text {
    font-size: 16px;
    border: 1px solid #b9b9b9;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 2px;
}

select {
    font-size: 16px;
}

/* overriders */
.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.align-justify {
    text-align: justify !important;
}

.decoration-underline {
    text-decoration: underline !important;
}

/* reusable */
.page-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 64px;
    max-width: 1024px;
}

.page-name > p, .page-name > a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #0d0d0d;
    text-align: center;
}

.page-name > div {
    display: block;
    width: 128px;
    height: 2px;
    background-color: #0d0d0d;
    opacity: 25%;
    border-radius: 1px;
}

/* main */
#main {
    font-family: "Arial";
    color: #0d0d0d;
}

/* medium-scaledown */
@media (max-width: 1056px) {
    body {
        zoom: 0.8;
    }
}

.mobile-only-flex {
    display: none !important;
}

.mobile-only-initial {
    display: none !important;
}

@media (max-width: 864px) {
/*@media (max-width: 1056px) {*/
    .mobile-only-initial {
        display: initial !important;
    }

    .mobile-only-flex {
        display: flex !important;
    }

    .mobile-hide {
        display: none !important;
    }
    
    .page-name {
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    body {
        zoom: 1.0;
    }

    .mobile-scaledown {
        zoom: 0.5;
    }

    .view-common {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .mobile-width-100 {
        width: 100% !important;
    }

    .mobile-max-width-100 {
        max-width: 100% !important;
    }

    .mobile-center {
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
        justify-self: center !important;
    }
}

@media (max-width: 400px) {
    .mobile-hide-small {
        display: none !important;
    }
}
