@import "colors.css";


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-repeat: no-repeat;
    background-color: #f0f0f2;
    background-position-y: 25%;
    background-size: 100%;
    background-repeat: repeat;
    height: 100%;
}


h1 {
    font-size: 38px;
    color: black;
    text-align: center;
    margin-top: 10px;
    padding-left: 10% !important;
    padding-right: 10% !important;
    font-weight: bold;
    word-wrap: break-word;
    hyphens: manual;
    -ms-hyphens: manual;
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
}

h2 {
    font-size: 35px;
    color: black;
    text-align: center;
    margin-top: 10px;
    padding-left: 10% !important;
    padding-right: 10% !important;
    font-weight: normal;
}

h3 {
    font-size: 29px;
    color: black;
    text-align: center;
    margin-top: 10px;
    padding-left: 10% !important;
    padding-right: 10% !important;
    font-weight: normal;
}

h5 {
    text-align: center;
    padding-left: 10% !important;
    padding-right: 10% !important;
}

p {
    font-size: 20px;
    color: black;
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 10%;
    padding-right: 10%;
    font-weight: normal;
}

section {
    font-size: 20px;
}

hr {
    margin-top: 30px;
    margin-bottom: 16px;
    align-self: center;
    margin-right: 10% !important;
    margin-left: 10% !important;

    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(75, 77, 82), rgba(0, 0, 0, 0));
}

li {
    color: black;
    text-align: left;
    font-size: 20px;
}

a:hover {
    text-decoration: underline;
}
a:visited {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

.table {
    position: relative;
    display: block;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-left: 10% !important;
    margin-right: 10% !important;
    width: 80%;
}

.table-content {
    overflow-x: auto;
    width: 100%;
    position: absolute;
    top: 0;
}

.infobox-parent {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.infobox {
    display: block;
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    border-color: #fdfdff;
    border-style: solid;
    border-width: 1.6px;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}

table {
    margin-bottom: 10px;
    background-color: rgb(30, 30, 30);
    border-color: rgb(71, 71, 71);
    border-style: solid;
    border-width: 1.6px;
    border-radius: 10px;
    border-spacing: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px
}

th, td {
    color: black;
    padding: 5px;
    text-align: center;
    font-size: 20px;
    border: none;
}

th.big-padding {
    padding: 15px;
}

td.big-padding {
    padding: 15px;
}

th {
    font-weight: bold;
    font-size: 23px;
}

tbody tr:nth-child(even) {
    background-color: rgb(48, 48, 48);
}

tbody.no-background tr:nth-child(even) {
    background-color: transparent;
}

footer {
    width: 100%;
}

span {
    color: black;
}

main {
    margin-top: 71px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
a:visited {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

span.icon {
    font-size: 35px;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

span.icon.close {
    color: var(--red-50);
}

div.page-button {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-right: 4% !important;
    margin-left: 4% !important;
    align-items: center;
    justify-content: center
}

div.page-button .btn{
    display: block;
    width: fit-content;
}

div.icon {
    display: flex;
    box-sizing: border-box;
    width: fit-content;
    padding: 2px;
    align-items: center;
    justify-content: center;
    float: left;
}

div.table-item-button {
    align-self: center;
    border-style: solid;
    border-radius: 10px;
    border-width: 1.6px;
    background-color: transparent;
    border-color: rgb(71, 71, 71);
    cursor: pointer;
    float: right;
    transition: all 0.2s ease;
}

div.table-item-button:hover {
    background-color: rgb(71, 71, 71);
}

@keyframes show{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes hide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

div.list {
    padding-left: 10% !important;
    padding-right: 10% !important;
    padding-top: 1%;
    padding-bottom: 1%;
}

a.blue {
    color: #42A5F5;
    text-decoration: none;
}

a.blue:hover {
    color: #42A5F5;
    text-decoration: underline;
}

a.blue:visited {
    color: #42A5F5;
    text-decoration: none;
}

a.blue:active {
    color: #42A5F5;
    text-decoration: none;
}

a.orange {
    color: orange;
    text-decoration: none;
}

a.orange:hover {
    color: orange;
    text-decoration: underline;
}

a.orange:visited {
    color: orange;
    text-decoration: none;
}

a.orange:active {
    color: orange;
    text-decoration: none;
}

.btn {
    background-color: #ffffff;
    border-radius: 100px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.2s ease;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.btn:disabled {
    cursor: not-allowed;
}

.btn:hover {
    background-color: var(--gray-30);
    text-decoration: none;
}

.btn:hover:disabled {
    background-color: var(--gray-30);
    text-decoration: none;
}
.btn:hover:disabled {
    background-color: #ffffff;
}

.btn:active {
    background-color: var(--gray-50);
    text-decoration: none;
}

.btn:active:disabled {
    background-color: #ffffff;
}

.btn.hide {
    visibility: hidden;
}

@media screen and (max-width: 1228px) {

    h1, h2, h3, h5, hr {
        padding-right: 4% !important;
        padding-left: 4% !important;
    }

    div.page-button {
        margin-top: 35px !important;
        margin-right: 4% !important;
        margin-left: 4% !important;
        margin-bottom: 35px !important;
    }

    .table {
        margin-right: 4% !important;
        margin-left: 4% !important;
        width: 92%;
    }

    div.list {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }
}

@media screen and (max-width: 500px) {

    h1, h2, h3, h5, hr {
        margin-right: 1% !important;
        margin-left: 1% !important;
    }

    div.page-button {
        margin-right: 1% !important;
        margin-left: 1% !important;
    }

    .table {
        margin-right: 1% !important;
        margin-left: 1% !important;
        width: 98%;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    p {
        font-size: 19px;
    }

    li {
        font-size: 19px;
    }

    p {
        padding-top: 3% !important;
        padding-bottom: 3% !important;
    }

    td {
        font-size: 19px;
    }
    th {
        font-size: 22px;
    }

    .btn {
        text-align: center;
        font-size: 16px;
    }

    div.list {
        padding-left: 1% !important;
        padding-right: 1% !important;
    }
}