/*
 * randomslide base stylesheet
 *
 * color codes:
 *      #1e1e1e - dark grey
 *      #333333 - medium grey
 *      #007588 - indigo
 *      #68CDD3 - teal
 *      #912104 - burgundy
 *
 */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    width: 100%;
}

#category {
    height: 250px;
    overflow-y: auto;
}

body {
    margin: 0;
    padding: 0;
    background: url("../bg.jpg") no-repeat fixed center;
	background-size: cover;
	min-height: 100vh;
}

.wrapper {
    margin: 0 auto;
    max-width: 1080px;
	min-height: 100vh;
	height: 100%;
    padding: 0 40px;
    background-color: rgba(255, 255, 255, .8);
}

nav {
    display: none;
    position: fixed;
    width: 150px;
    background-color: rgba(255, 255, 255, .8);
    right: 20px;
    top: 100px;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
}

a {
    color: #1e1e1e;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

a:hover {
    color: #912104;
    transition: .3s;
}

h1 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #007588;
    text-decoration: underline 4px black;
}

h2 {
    font-weight: 700;
    font-size: 2em;
    color: #007588;
    margin-left: 50px;
    margin-bottom: 20px;
}

button {
    display: block;
    border: none;
    background-color: #1e1e1e;
    border-radius: 4px;
    outline: none;
    color: #eee;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    background-color: #007588;
    transition: .3s;
}

.mitm {
    margin: 5px;
    display: block;
    font-size: 1.2em;
    color: #1e1e1e;
    text-decoration: none;
    border-radius: 8px;
    padding: 10px;
    transition: .3s;
}

.mitm:hover {
    background-color: #007588;
    color: #fff;
    transition: .3s;
}

.mred:hover {
    background-color: #912104;
    transition: .3s;
}

#formwrapper {
    width: 100%;
    display: block;
}

.fsep {
    float: left;
    margin: 0;
    padding: 20px;
    width: 45%;
}

#slideTimer {
    position: relative;
    display: none;
    width: 40%;
    margin: 0 auto;
}

.slider {
    width: 100%;
}

#numsec {

}

#ghlink {
    position: relative;
    display: block;
    background: url("../logoimg/icon_github.png") no-repeat center;
    background-size: cover;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    margin-top: 5em;
    opacity: .4;
    transition: .3s;
}

#ghlink:hover {
    opacity: 1;
    transition: .3s;
}

.item {
    position: relative;
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    background: #fff;
    border: 2px #1e1e1e solid;
    border-radius: 4px;
    width: 100%;
    transition: .3s;
}

.item:hover {
    background-color: #eee;
    transition: .3s;
}

label {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    padding-left: 10px;
    padding-top: 10px;
    width: auto;
}

option:hover {
    background-color: lightgrey;
}

#timeDisplay {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 5px;
    padding: 5px;
    border-radius: 4px;
    color: #1e1e1e;
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, .4);
    z-index: 30;
}

#snum {
    display: block;
    position: fixed;
    bottom: 5px;
    padding: 10px;
    right: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    color: #1e1e1e;
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, .4);
    z-index: 30;
}

#cssPre {
    display: none;
}

.ulinput {
    width: 100%;
    display:block;
    font-size: 1.2em;
    padding: 5px;
    border: 2px #1e1e1e solid;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* TODO: Make a class of this */
#username, #password, #email, #regusername, #regpassword, #reptxt {
    font-size: 1.2em;
    font-weight: bold;
    border: 2px black solid;
    border-radius: 4px;
    width: 50%;
}

.clear {
    margin: 0;
    padding: 0;
    height: 0;
    width: 0;
    clear: both;
}

.genbutton {
    position: relative;
    display: block;
    float: none;
    background-color: #1e1e1e;
    border: 0;
    border-radius: 4px;
    margin: 0 auto;
    color: #fff;
    padding: 0.8em;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    margin-top: 2em;
    transition: .3s;
}

.genbutton:hover {
    background-color: #912104;
    transition: .3s;
}

.smallgap {
    height: 10px;
}

.biggap {
    height: 50px;
}

.alert {
    width: 60%;
    height: 110px;
    line-height: 115px;
    text-align: center;
    position: fixed;
    top: -10px;
    left: 20%;
    color: #1e1e1e;
    font-size: 1.2em;
    background-color: #eee;
    border: 4px #007588 solid;
    border-radius: 8px;
    z-index: 500;
}

#regwrapper {
    display: block;
    margin: 0 auto;
}

#seluser {
    margin-bottom: 10px;
}

.rad {
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-right: 30px;
}

.hide {
    display: none;
}

#prev {
    left: 0;
}

#next {
    right: 0;
}

#prev, #next {
    display: none;
    z-index: 10;
    position: fixed;
    cursor: pointer;
    top: 50%;
    padding: 30px;
    transform: translateY(-50%);
    color: #888;
    font-weight: bold;
    font-size: 3em;
    transition: .3s;
}

#prev:hover, #next:hover {
    color: #1e1e1e;
    transition: .3s;
}

#output {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1;
}

#logwrapper {
    margin: 10px, 30px;
}

#logfileMonitor, #logfileServer {
    display: block;
    border: 2px #1e1e1e solid;
    border-radius: 4px;
    padding: 8px;
    margin: 30px;
    background: #eee;
    height: 20em;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 0.8em;
}

textarea {
    width: 100%;
    height: 10em;
    resize: none;
    border: 2px #1e1e1e solid;
    border-radius: 8px;
    font-size: 1.2em;
    padding: 5px;
    margin-bottom: 10px;
}

#taginput {
    width: 30em;
}

#titelinput {
    width: 30em;
}

fieldset {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 80%;
    border: none;
    margin: 20px;
}

#usericon {
    display: block;
    position: fixed;
    height: 60px;
    width: 60px;
    top: 20px;
    right: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .8);
    font-family: 'Orbitron', sans-serif;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    font-size: 2.5em;
    transition: .3s;
    cursor: pointer;
}

#usericon:hover {
    background-color: rgba(255, 255, 255, 1);
    transition: .3s;
}

#loginscr, #regscr, #repscr {
    display: none;
    position: fixed;
    padding: 40px;
    z-index: 20;
    width: 300px;
    height: 220px;
    left: calc(50vw - 150px);
    top: calc(50vh - 110px);
    background: #eee;
    border-radius: 8px;
}

#repscr {
    height: 310px;
}

#reptxt {
    width: 100%;
    height: 5em;
    margin-top: 10px;
}

#repbtn {
    position: fixed;
    left: 15px;
    bottom: 5px;
    font-size: .8em;
    padding: 5px;
    border-radius: 4px;
    color: #333;
    z-index: 30;
    background-color: rgba(255, 255, 255, .4);
}

#tint {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, .5);
}

.cbtn {
    position: absolute;
    right: 7px;
    top: 7px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    transition: .3s;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
}

.cbtn:hover {
    background: #912104;
    color: #fff;
    transition: .3s;
}

#countdown {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #1e1e1e;
    z-index: 20;
}

#cdnum {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #eee;
    font-family: 'Orbitron', sans-serif;
    font-size: 15em;
    text-align: center;
}

#endscr {
    display: none;
    width: 400px;
    margin: 0 auto;
    font-size: 1.6em;
}

#output {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1;
}

#imgcred  {
    font-size: .8em;
    color: #777;
    text-align: right;
}

#imgcred a {
    color: #777;
}

#imgcred a:hover {
    color: #333;
}
