:root { --app-header-bg: #012e40; --app-header-link: #54a1e8; --app-header-link2: #68e1fd; --app-footer-bg: #012e40; --app-footer-link: #54a1e8; --app-footer-link2: #68e1fd; --app-font: "AudioWide", cursive; --app-font-2: "Open Sans", sans-serif; --app-color-link: #c2a87b; --app-color-link2: #cebca3; --app-color-1: #39badb; --app-color-2: #54a1e8; --app-color-3: #012e40; --app-color-4: #011c26; --app-color-5: #f2ccb6; --app-color-6: #a37962; --app-color-7: #d12e2e; --app-color-8: #ad2e61; --app-color-body: #eeeeee; --app-color-light: #eeeeee; --app-color-dark: #141414; --app-color-valid: #22c55e; --app-color-valid2: #16a34a; --app-color-delete: #ef4444; --app-color-delete2: #b91c1c; --app-color-cancel: #012e40; --app-color-cancel2: #011c26; --app-color-show: #60a5fa; --app-color-show2: #2563eb; --svg-base-size: 16px; --svg-size-1: 12px; --svg-size-2: 24px; --svg-size-3: 48px; --app-size-1: 1em; --app-size-2: 1.5em; --app-size-3: 2em; --border-width-1: 0.5px; --border-width-2: 2px; --border-width-3: 5px; --rad-1: 4px; --rad-2: 12px; --rad-3: 24px; --trans-1: 0.2s; --trans-2: 0.5s; --trans-3: 1s; --trans-4: 1.5s; --trans-del-1: 0.2s; --trans-del-2: 0.5s; --trans-del-3: 1.0s; --trans-del-4: 1.5s; --scale-1: 0.75; --scale-2: 1.05; --scale-3: 1.25; --scale-4: 1.35; --percent-pos-1: 5%; --percent-pos-2: 10%; --percent-pos-3: 20%; }header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    text-transform: uppercase;
    background: var(--app-header-bg);
    color: var(--app-header-link);
}

header a,
header li,
header a:visited {
    color: var(--app-header-link);
    margin: 0px 8px;
    font-weight: 900;
}

header a:hover,
header li:hover {
    color: var(--app-header-link2);
    cursor: pointer;
}

/* header a {
    text-decoration: none;
} */

header li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    letter-spacing: 2px;
}

.header-drop {
    position: relative;
    margin: 0px 8px;
    font-weight: 900;
    padding: 12px;
}

.header-drop-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: fit-content;
    height: 0;
    transition: all 0.2s ease-in;
    overflow: hidden;
}

.header-drop:hover .header-drop-content {
    height: fit-content;
    border: 1px solid var(--app-header-link);
    background: var(--app-header-bg);
    padding: 8px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    border-bottom: 1px var(--app-header-link) solid;
    width: 100%;
}

.main-nav a {
    position: relative;
    padding: 12px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    top: 80%;
    left: 0;
    z-index: 200;
    background-color: var(--app-header-link2);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.main-nav a:hover::after {
    opacity: 1;
}

/* burger */
#link {
    display: none;
    height: 30px;
    width: 30px;
    position: relative;
}

.burger-envelop {
    position: absolute;
    top: -45%;
    left: -50%;
    transform: translateX(15%);
    height: 45px;
    width: 45px;
    background-color: var(--app-color-light);
    padding: 8px;
    border-radius: 50%;
    border: 3px solid var(--app-header-link2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

@media screen and (max-width: 770px) {
    #link {
        display: block;
        position: relative;
        position: absolute;
        right: 30px;
        top: 25px;
        z-index: 500;
    }



    .main-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        overflow: hidden;
        width: 0;
        top: 0;
        padding-top: 45px;
        height: fit-content;
        right: 0;
        background-color: var(--app-header-bg);
        transform: translateX(110%);
        border-top: 1px var(--app-header-link) solid;
    }

    li {
        text-align: center;
    }

    #link.open+ul {
        width: 100%;
        transform: translateX(0);
    }

    .header-drop {
        display: block;
        position: relative;
        height: fit-content;
    }

    .header-drop-content {
        display: none;
        height: fit-content;
        width: 100%;
        text-align: center;
        border: none;
        position: relative;
        margin-top: var(--app-size-1);
        background: var(--app-header-bg);
    }

    .header-drop:hover .header-drop-content {
        display: block;
    }

    .header-drop-content a {
        display: block;
    }
}.theme-form textarea{width:100%;font-family:"Source Serif Pro",serif;font-size:large;padding:8px;border-radius:8px;margin:8px 0 12px;min-height:120px;max-height:800px}.theme-form input::placeholder,.theme-form textarea::placeholder{color:var(--app-color-dark)}.theme-form #togglePassword,.theme-form input,.theme-form select{width:100%;font-size:large;border-radius:8px;font-family:"Source Serif Pro",serif;padding:8px;margin:8px 0 12px;border:1px solid}.theme-form #togglePassword{width:fit-content}.theme-form input[type=checkbox]{width:fit-content;box-shadow:none}.theme-form input:focus,.theme-form textarea:focus{outline:var(--app-color-1) solid 2px}
