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

:root {
    --maincolor: #3dae2b;
    --textcolor: #222;
    --invtextcolor: #fff;
    --mainbackground: #fff;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 13pt;
    color: var(--textcolor);
    text-align: center;
}

body.embed {
    background: #ffffff !important;
}

.btn {
    border: 0;
    border-radius: 3px;
    background-color: var(--maincolor);
    color: var(--invtextcolor);
    padding: 10px 20px;
    font-size: 13pt;
}

.btn:hover,
.btn:active,
.btn:visited,
.btn {
    background-color: var(--maincolor);
    color: var(--invtextcolor);
    text-decoration: none;
}

.ibtn {
    border: 0;
    border-radius: 3px;
    background-color: var(--invtextcolor);
    color: var(--maincolor);
    padding: 10px 20px;
    font-size: 13pt;
}

.c {
    text-align: center;
}

#main {
    max-width: 960px;
    margin: auto;
    padding: 20px;
}

#head {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #eee;
}

#logo {
    display: block;
    background: transparent url('../img/logo.png') center center no-repeat;
    width: 100px;
    height: 65px;
    margin: auto;
}


/*
-----------------------------
    SITE GENERIC
-----------------------------
*/

/*GENERIC*/

img {
    border: 0;
}

a,
a:visited {
    text-decoration: none;
    color: #222222;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: #666666;
}

.content input,
.content textarea,
.content select {
    border: 1px solid #cccccc;
    font-size: 15pt;
}



.txt {
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #444444;
    padding: 3px;
    font-size: 13pt;
}

.b {
    font-weight: bold;
}

.i {
    font-style: italic;
}

.u {
    text-decoration: underline !important;
}

.r {
    text-align: right;
}

.l {
    text-align: left;
}

.c {
    text-align: center;
}

.h {
    display: none;
}

::selection {
    background: #aaaaaa;
}

::-moz-selection {
    background: #aaaaaa;
}

.shame {
    background: #aa0000;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}

div#cookie {
    width: 100%;
    padding: 5px;
    font-size: 10pt;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    background: rgba(0, 0, 0, .8);
    color: #ffffff;
    text-align: center;
    display: none;
    z-index: 100;
}

div#cookie a {
    color: #ffffff;
    text-decoration: underline;
}

div#cookie input {
    border: 0;
    background: #dd8a20;
    color: #ffffff;
    padding: 3px 10px;
    margin-left: 10px;
}

#pop_menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background: #565656 !important;
    color: #ffffff;
    overflow: hidden;
    padding: 10px;
    text-align: left;
}

#pop_menu a {
    display: block;
    color: #ffffff;
    padding: 10px 0;
}

#pop_menu_close {
    color: #ffffff;
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    width: 20px;
    height: 20px;
    font-weight: bold;
    font-size: 15pt;
    z-index: 105;
}

#pop_menu .submenu {
    padding-left: 15px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

#hamburger {
    display: none;
    position: absolute;
    right: 10px;
    top: 20px;
    background: transparent url('images/hamburger.png') center center no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    z-index: 10;
    filter: invert(1);
}

#hider {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(100, 100, 100, .5);
    z-index: 50;
    display: none;
}


/*
PAGES
*/
#userpages {
    padding: 20px 10px;
}


/* RESPONSE */

@media screen and (max-width: 1000px) {
    #hamburger {
        display: block;
    }
}

/*
LOGIN
*/

.profileaction:hover,
.profileaction:visited,
.profileaction:active,
.profileaction {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.profile_delete .action {
    text-align: center;
}

.btndel:active,
.btndel:hover,
.btndel:visited,
.btndel { background: #aa2222; }

.profileaction_delete {
    background: #aa4444 !important;
}

.g-recaptcha>div {
	margin: auto;
}

/* LOGIN FRONT */


.logins_head{
    font-size: 16pt;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.login {
    max-width: 400px;
    margin: 20px auto 20px auto;
    padding: 20px;
    padding: 10px;
    border-radius: 3px;
    background-color: var(--maincolor);
    color: var(--invtextcolor);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.row .l {
    min-width: 200px;
}

.row .f {
    flex-grow: 1;
    font-size: 13pt;
    max-width: 220px;
}
.row .f {
    width:100%;
}

.login .btn {
    border: 0;
    border-radius: 3px;
    background-color: var(--invtextcolor);
    color: var(--maincolor);
    padding: 10px 20px;
    font-size: 13pt;
}

.error {
    color: #ff6666;
    font-weight: bold;
}
