@font-face {
    font-family: "IBM Plex Sans";
    src: url(/src/fonts/ibmplexsans-regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    color: #d6d6d6;
}

body {
    background: #171717;
    margin: 0;
    padding: 0;
    font-size: 1.2em;
}

.pin-up-button {
    display: inline-block;
    position: fixed;
    min-width: 116px;
    text-align: center;
    bottom: 10px;
    left: 20px;
    padding: 26px 20px;
    font-size: 15px;
    background-color: #d5944f;
    color: #fff;
    border: none;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    opacity: 1;
    animation: shine 3s ease-in-out infinite;
    border-radius: 10px;
    transition: background-color 0.4s;
}

.pin-up-button:hover {
    color: #fff;
    background-color: #101010;
}

@keyframes shine {
    0% {
        box-shadow: 0 0 10px #101010;
    }
    50% {
        box-shadow: 0 0 20px #101010, 0 0 30px #101010;
    }
    100% {
        box-shadow: 0 0 10px #101010;
    }
}

#pin-up-content {
    max-width: 1159px;
    margin: 0 auto;
    padding: 26px;
    min-height: 352px;
}

.header {
    flex-direction: column;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px solid #dbdbdb;
    gap: 64px;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
}

.header .pin-up-menu {
    padding: 20px 30px;
    font-size: 2em;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header .pin-up-menu a {
    margin-top: 0;
    padding: 17px 21px;
    text-decoration: none;
    font-size: 1em;
    color: #fff;
    transition: border 0.3s, box-shadow 0.3s;
}

.header .pin-up-menu .login {
    display: inline;
    align-content: center;
    min-width: 119px;
    border: 2px solid #effffa;
    border-radius: 23px;
    background: 0 0;
    box-shadow: none;

}

.header .pin-up-menu .login:hover {
    border: 2px solid #ff2500;
}

.header .pin-up-menu .registration {
    margin-top: 28px;
    min-width: 119px;
    align-content: center;
    background: #ff2400;
    background-position: 50%0;
    background-size: 200%;
    box-shadow: 0 5px 10px 0 rgba(6, 8, 15, 0.1), inset 0 0 3px 0#ff2b00;
    border-radius: 23px;
    transition: box-shadow 0.3s, text-shadow 0.3s;
}

.header .pin-up-menu .registration:hover {
    background-position: 0 0;
    box-shadow: 0 2px 2px 1px rgba(6, 8, 15, 0.1),
    0 4px 4px 1px rgba(6, 8, 15, 0.1), 0 8px 8px 1px rgba(6, 8, 15, 0.1),
    0 16px 16px 1px rgba(6, 8, 15, 0.1), 0 32px 32px 1px rgba(6, 8, 15, 0.1),
    inset 0 0 3px 0#991500;
    text-shadow: 0 1px 3px #7f1200;
}

.header #logo {
    padding-left: 15px;
}

.header #logo img {
    max-width: 260px;
    height: auto;
    position: relative;
    top: 4px;
    padding: 30px 15px 5px 15px;
}

#pin-up-promo {
    background-color: #171717;
    overflow-x: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 400px;
    border-bottom: 2px solid #dbdbdb;
}

#pin-up-promo a {
    display: inline-flex;
}

#pin-up-promo img {
    height: 100%;
    width: auto;
    max-height: 400px;
    border-radius: 8px;
}

@media (min-width: 600px) {
    .header .pin-up-menu {
        flex-direction: row;
        font-size: 1em;
    }
    .header .pin-up-menu .registration {
        margin-left: 27px;
        margin-top: 0;
    }
    #pin-up-promo img {
        left: 0;
    }
    #pin-up-promo {
        justify-content: center;
    }
}

@media (min-width: 850px) {
    .header {
        flex-direction: unset;
    }
    .header #logo img {
        padding: 0;
    }
    #scrollToTopBtn {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .header {
        justify-content: center;
    }
    #pin-up-promo img {
        max-width: 1200px;
    }
}

body a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

body a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4 {
    font-weight: bold;
    color: #e0e0e0;
    text-align: center;
}

h1 {
    margin: 20px 0;
    text-decoration-color: #e0e0e0;
}

h5 {
    color: #e4e4e4;
    text-decoration: underline;
}

#pin-up-content img {
    display: block;
    border-radius: 10px;
    max-width: 100%;
}

#pin-up-content img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

body table {
    margin: 25px 0;
    overflow-x: auto;
    border-collapse: collapse;
    white-space: nowrap;
    border-spacing: 0;
    width: 100%;
    color: #fdfdfd;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

thead tr,
tr th {
    background-color: #141414;
}

tr {
    background-color: #292929;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

li.active {
    text-decoration: underline;
}

li h2,
li h3,
li h4 {
    margin: 10px 0;
    padding: 0;
    font-weight: bold;
}

li a {
    color: #0066cc;
    text-decoration: none;
}

li a:hover {
    text-decoration: underline;
}

ul ul,
ol ul {
    margin-left: 20px;
}

ol {
    counter-reset: my-counter;
}

ol li:before {
    content: counter(my-counter);
    counter-increment: my-counter;
    position: absolute;
    left: -20px;
    top: -2px;
    background-color: #141414;
    color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
}

ul li:before {
    content: "";
    position: absolute;
    left: -13px;
    top: 3px;
    width: 14px;
    height: 14px;
    background-color: #141414;
    border-radius: 50%;
}

span.pin-up {
    display: flex;
    justify-content: center;
    background-color: #e0e0e0;
    color: #202020;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px 0;
}

footer {
    background-color: #1f1f1f;
    text-align: center;
    bottom: 0;
    width: 100%;
    padding-bottom: 75px;
    border-top: 2px solid rgb(255, 255, 255);
}

footer #pin-up-content p {
    margin: 0;
    padding: 5px 10px;
    color: #cecece;
    font-size: 0.9em;
}

.footer-pin-up-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-pin-up-wrap .pin-up-item-mobile {
    align-items: center;
    padding-bottom: 39px;
    display: flex;
    flex-direction: column;
    gap: 39px;
}

.footer-pin-up-wrap .pin-up-item-mobile .footer-item {
    max-width: 150px;
}

.footer-pin-up-wrap .pin-up-simple {
    display: flex;
    flex-direction: unset;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.footer-pin-up-wrap .pin-uplinks {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 17px;
    gap: 19px;
    margin-bottom: 28px;
}

.footer-pin-up-wrap .pin-up-item h5 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-pin-up-wrap .pin-up-item img {
    max-width: 67px;
    height: auto;
    padding: 2px;
}

.footer-flag-container img {
    width: 24px;
    height: 24px;
}

#footerdown {
    font-size: 12px;
    padding: 10px 0;
    border-top: 2px solid #e3e3e3;
    text-align: center;
}

@media (min-width: 400px) {
    button.readmore {
        width: 320px;
        padding: 15px 25px;
    }
}

@media (min-width: 600px) {
    #pin-up-content img {
        max-width: 600px;
    }
}

@media (min-width: 500px) {
    .footer-pin-up-wrap {
        flex-direction: unset;
        justify-content: space-around;
        align-items: normal;
    }
    .footer-pin-up-wrap a {
        align-items: start;
        gap: 10px;
    }
}

@media (min-width: 740px) {
    .footer-pin-up-wrap .pin-up-item-mobile {
        justify-content: center;
        flex-direction: unset;
        gap: 10px;
    }
    .pin-up-button {
        position: fixed;
        left: 27%;
        transform: translateX(-50%);
    }
}

@media (min-width: 800px) {
    #pin-up-content img {
        max-width: 600px;
    }
}