@charset "utf-8";

/*
Styles for
Create Page
*/

@media (prefers-color-scheme: dark) {
    body {
        background: #242323;
    }

    .Wrap {
        background: #2e2e2e;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background: #EEEEEE;
    }

    .Wrap {
        background: #FFFFFF;
    }
}

ul {
    font-family: Arial;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #02b875;
    bottom: 0;
    height: 5vh;
    font-size: 1.8vh;
}

li {
    font-family: Impact;
    font-size: 4vh;
    -webkit-text-stroke: 0.1vh rgb(0, 0, 0);
    display: block;
    color: white;
    padding: 0vh 0vh;
    text-decoration: none;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
}

html {
    display: block;
}

html::after {
    content: "";
    display: table;
    clear: both;
}

body {
    margin: 0;
    display: block;
}

body::after {
    content: "";
    display: table;
    clear: both;
}

.Wrap {
    width: 72%;
    height: 86.8%;
    margin-left: auto;
    margin-right: auto;
    padding: 1%;
    padding-top: 2%;
    font-family: Impact;
    margin-bottom: 1%;
    position: relative;
}

.Wrap::after {
    content: "";
    display: table;
    clear: both;
}

.active {
    padding: 1.5vh 1.7vh;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
}

div a:hover:not(.Item) {
    background-color: #04AA6D;
}

.Title {
    text-align: center;
    font-size: 4vw;
    color: #FFFFFF;
    -webkit-text-stroke: 0.2vh rgb(0, 0, 0);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 100%;
}

.item {
    border: 0.2vh solid grey;
    border-radius: 0.5vw;
    background-color: #02b875;
    text-align: center;
    font-size: 2vw;
    color: #FFFFFF;
    -webkit-text-stroke: 0.2vh rgb(0, 0, 0);
    flex-grow: 1;
    margin: 1vw;
    transition: all .1s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.item:hover {
    background-color: #04AA6D
}

.item .ToolTip {
    visibility: hidden;
    background-color: #000000bb;
    width: 20vw;
    color: #FFFFFF;
    text-align: center;
    border-radius: 1vw;
    position: absolute;
    top: 21%;
    left: 37%;
    font-size: 1.5vw;
    -webkit-text-stroke: 0vh rgb(0, 0, 0);
    opacity: 0;
    transition: opacity 0.5s 1s;
}

.item:hover .ToolTip {
    visibility: visible;
    opacity: 1;
}

Input {
    width: 75%;
    font-size: 3vw;
    font-family: Impact;
}

.InputButton {
    width: 80%;
    background-color: #00000000;
    transition: all .1s ease;
    margin: 0%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.InputButton:hover {
    background-color: #00000044;
}

.Minus {
    width: 10%;
    background-color: #00000000;
    transition: all .1s ease;
    float: right;
    text-align: center;
    margin: 0%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.Minus:hover {
    background-color: #00000044;
}

.Title2 {
    text-align: center;
    font-size: 2vw;
    color: #FFFFFF;
    -webkit-text-stroke: 0.2vh rgb(0, 0, 0);
}

.Button {
    margin-top: 10%;
    border-top: 00.25vw solid #000000;
    text-align: center;
    font-size: 4vw;
    color: #000000;
    background: #02b875;
    text-decoration: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.Button:hover {
    transition: 0.3s;
    color: #FFFFFF;
    text-shadow: -0.1vh -0.1vh 0 #000000;
}


/*Error Box*/
div#Error {
    float: right;
    box-sizing: border-box;
    border: 0.11vw solid #E01010;
    width: 60%;
    text-align: center;
    margin-right: 3%;
    border-radius: 0.2vw;
    display: none;
    background-color: #FF000009;
}

div#Error::after {
    content: "";
    display: table;
    clear: both;
}

div#Error h1 {
    font-size: 2vw;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0%;
    color: #180000;
}

div#Error img {
    width: 4%;
    position: absolute;
    top: 62.25%;
    left: 33.5%;
}