/*

    BASE ON :
    https://dev.to/niorad/keeping-the-footer-at-the-bottom-with-css-grid-15mf

*/

@font-face {
    font-family: walkwayfont;
    src: url(../../fonts/walkway_semi_bold.ttf);
}


* {
    box-sizing: border-box;
}

body, html {
    background-color: rgb(10,30,78); /*or #0a1e4e*/
    color: #7e8ba3;
    font-family: walkwayfont;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
}

.ntls_header {
    display: grid;
    grid-template-columns: 5fr 2fr;
    grid-template-areas: "header-left header-right";
    border-bottom: 1px solid lightgrey;
    font-size: 30px;
    color: white;
    /*    padding:20px 10px 20px 10px;*/
}

header-left {
    grid-area: header-left;
    padding-left: 20px;
    padding-top: 10px;
    /*    padding: 20px 10px 20px 10px;*/
}

header-right {
    grid-area: header-right;
    /*    background-color: lightcoral;*/
    font-size: 15px;
    padding-left: 50px;
    padding-top: 30px;
}

.ntls_sidebar {
    border-right: 1px solid lightgrey;
}

    .ntls_sidebar overflow-auto {
        overflow-y: auto;
    }

    .ntls_sidebar overflow-hidden {
        overflow-y: hidden;
    }

.ntls_footer {
    border-top: 1px solid lightgrey;
    /* background: black; */
    background: rgb(74,74,74);
    padding-top: 10px;
    text-align: center;
    color: greenyellow
}

.ntls_container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px 1fr 40px;
}

.ntls_container-2r-c {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-rows: 1fr 40px;
}

.ntls_body {
    display: grid;
    grid-template-columns: 250px 3fr;
    overflow: hidden;
}

.ntls_content {
    overflow-y: scroll;
    padding: 20px;
}

li {
    /*    margin: 0 20px 10px 0;*/
    color: #fff;
    font-size: 22px;
}


.title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.left {
    margin-top: 5px;
    text-align: left;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.fontsize-30px {
    font-size: 30px;
}

.fontsize-25px {
    font-size: 25px;
}

.fontsize-20px {
    font-size: 20px;
}

.fontsize-18px {
    font-size: 18px;
}

.fontsize-15px {
    font-size: 15px;
}

.label-input-content-container {
    display: grid;
    grid-template-areas: "label inputcontent";
    grid-template-columns: 150px 250px;
    font-size: 20px;
    grid-column-gap: 20px;
    padding: 5px;
}

.label-input-content-container-3cells {
    display: grid;
    grid-template-areas: "label inputcontent inputcontent-small";
    grid-template-columns: 150px 250px 100px;
    font-size: 20px;
    grid-column-gap: 20px;
    padding: 5px;
}

.textbox {
    width: 100%;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.3);
    border: none;
    outline: none;
    padding: 10px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 4px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
    -webkit-transition: box-shadow .5s ease;
    -moz-transition: box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -ms-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
    font-family: walkwayfont;
    font-weight: bold;
    font-size: 20px;
}

.textarea {
    width: 100%;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.3);
    border: none;
    outline: none;
    padding: 10px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 4px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
    -webkit-transition: box-shadow .5s ease;
    -moz-transition: box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -ms-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
    font-family: walkwayfont;
    font-weight: bold;
    font-size: 20px;
}

    .textarea:focus {
        box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2);
    }

.textarea-w120 {
    width: 120%;
}


label {
    padding: 5px 5px 5px 0;
}

.active {
    color: #fff;
}

login {
    position: absolute;
    top: 35%;
    left: 50%;
    margin: -150px 0 0 -150px;
    width: 300px;
    height: 300px;
    border-color: lightblue;
}

    login h1 {
        color: #fff;
        text-shadow: 0 0 10px rgba(0,0,0,0.3);
        letter-spacing: 1px;
        text-align: center;
    }

activation-registration {
    position: absolute;
    top: 35%;
    left: 50%;
    margin: -150px 0 0 -150px;
    width: 300px;
    height: 300px;
    border-color: lightblue;
}

    activation-registration h1 {
        color: #fff;
        text-shadow: 0 0 10px rgba(0,0,0,0.3);
        letter-spacing: 1px;
        text-align: center;
    }

.gradient-text {
    background: linear-gradient(rgba(159,217,83,1.1),green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    /* color: #FFFFFF; */
    color: #7e8ba3;
    text-decoration: none;
}

selected-menu-item {
    color: #7e8ba3;
}

div.round {
    /* background:rgba(214,222,255); */
    /* background-color: #d5d5e0; */
    background-color: #77a5cb;
    backdrop-filter: blur(50px);
    font-size: 18px;
    color: lightcyan;
    height: 40px;
    width: 180px;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 50px;
    -moz-border-radius: 50px;
}

li.menu-item-space {
    margin: 0px,0px,1000px,0;
}

.margin-top-20 {
    margin-top: 20px
}

.margin-bottom-20 {
    margin-bottom: 1px
}

registration-container {
    display: grid;
    grid-template-rows: 30% 2fr;
    grid-template-areas: "registration-title" "registration-content";
    position: relative;
    top: 20%;
/*    height: 300px;*/
/*    width: 50%;*/
    justify-content:center;
}

registration-title {
    grid-area: registration-title;
    display: flex;
/*    background-color: darkblue;*/
    justify-content: center;
    /*    position: relative;*/
}

registration-content {
    grid-area: registration-content;
/*    background-color: darkmagenta;*/
}
