* {
    font-family: Arial, sans-serif;
    --base_text_color: #AEABAF;
    --border_color: #282828;
    --base_bg: #121212;
    --accent-color: #ff4d4f;
    margin: 0;
    box-sizing: border-box;
    --span-font-size: 0.85em;
    outline: none;
    cursor: none;
    text-decoration: none;
    background: transparent;
}

h1, h2, h3, h4, h5, p, span, textarea, a, input {
    overflow-wrap: break-all;
    word-wrap: break-all;
    word-break: break-all;
    text-align: center;
    text-align: start;
    color: var(--base_text_color);
    outline: none;
}

span {
    font-size: var(--span-font-size);
}

svg {
    color: var(--accent-color);
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    background-color: transparent;
    color: var(--base_text_color);
    padding: 0rem 1rem;
}

header {
    display: flex;
    flex-direction: row;
    background: transparent;
    width: 95%;
    position: fixed;
    top: 0;
    z-index: 2000;
    place-content: start;
    place-items: start;
    padding-top: 1rem;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

header .logo_a {
    display: flex;
    flex-direction: column;
    place-content: center;
    place-items: center;
    position: fixed;
    padding-top: 3rem;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1000;
    background: transparent;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 2000;
    place-content: center;
    place-items: center;
    gap: 10px;
    padding-top: 0.2rem;
    padding-bottom: 0.5rem;
}

header img, footer img {
    max-width: 50px;
    max-height: 50px;
    border-radius: 20px;
    margin-right: 10px;
}

h1 {
    font-size: 0.9em;
    color: var(--base_text_color);
}

.loader {
    display: flex;
    justify-content: space-between;
    margin: 0;
    background-color: transparent;
    place-content: center;
    place-items: center;
}

img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

a {
    text-decoration: none;
}

span {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    border-radius: 20px;
    color: var(--base_text_color);
    position: relative;
    outline: none;
    background-color: #282828;
    text-align: start;
    padding: 0.1rem 0.5rem;
}


.sidebar {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 100%;
    background: var(--base_bg);
    color: var(--base_text_color);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    border-radius: 20px;
    transform: translateX(-100%);
    transition: transform 0.1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sidebar.show {
    transform: translateX(0);
}

.sidebar a {
    display: flex;
    color: var(--base_text_color);
    padding: 10px;
    text-decoration: none;
    border-radius: 20px;
}

.sidebar img {
    width: 100%;
    height: 100%;
}

.sidebar a:hover {
    background: #575757;
}

section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
    gap: 0.5rem;
}

.progress_area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: transparent;
    width: 95%;
    position: fixed;
    top: 1;
    z-index: 2000;
    place-content: start;
    justify-content: center;
    margin-top: 4.0rem;
    gap: 1rem;
}

main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    background-color: transparent;
    color: var(--base_text_color);
    margin-top: 8.0rem;
    margin-bottom: 5.0rem;
    gap: 1rem;
}

.notification_area {
    display: flex;
    flex-direction: row;
    width: 50%;
    height: 100%;
    background: transparent;
    padding-top: 1rem;
    position: fixed;
    right: 0;
    top: 0;
    overflow-y: auto;
    z-index: -1000;
}

.notification_area.show {
    z-index: 1000;
}

.notification_area .notification {
    place-items: start;
    place-content: start;
    width: 100%;
    background-color: var(--base_bg);
    overflow-wrap: break-all;
    word-wrap: break-all;
    word-break: break-all;
    text-align: start;
    border-radius: 20px;
}

.notification_area .notification .info {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    padding: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: var(--base_bg);
    border-radius: 20px;
    box-shadow: 0px 0px 5px -3px #111;
}

.notification_area .notification .info__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

.notification_area .notification .info__icon path {
    fill: #fff;
}

.notification_area .notification .info__title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.notification_area .notification .info__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

.notification_area .notification .info__close path {
    fill: #fff;
}