body {
    margin: 0;
    min-height: 100%;
    background: #e1e1e1;
}

/* fejléc */
header {
    height: 48px;
    padding: 0 30px;
    background: #151515;
}
.vissza_gomb {
    display: block;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    
    width: 125px;
    height: 100%;
    
    padding-top: 13px;
    padding-left: 50px;
    
    font-size: 16px;
    color: #ffffff;
    
    background: #1e1e1e url('/images/vissza-ikon.png') no-repeat 15px center;
}
.vissza_gomb:hover { background-color: #353535; }
.vissza_gomb:active { background-color: #000; }

/* cím */
h1 {
    padding: 0 30px;
    margin-top: 26px;
    margin-bottom: 38px;
    
    font-family: LeagueGothic;
    font-size: 37px;
    color: #353535;
    text-shadow: 0px 1px 0px #8b8b8b;
}

/* form */
form {
    max-width: 768px;
    
    margin: 0 auto;
    padding: 0 30px;
    padding-top: 26px;
    
    text-align: center;
}
input:not([type="submit"]), select {
    display: block;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    
    width: 100%;
    height: 47px;
    
    margin-bottom: 11px;
    
    background: #fff;
    border: 1px solid #cdcbcb;
    
    text-align: center;
}

/* még egy kategória megjelenítése gomb */
.pluszkategoria {
    display: block;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    
    width: 245px;
    height: 47px;
    
    margin: 22px auto;
    margin-bottom: 0;
    padding-top: 15px;
    
    background: #cdcdcd;
    border-radius: 6px;
    
    font-size: 16px;
    color: #787878;
    text-align: center;
}
.pluszkategoria:hover { color: #4B4B4B; }

/* submit gomb */
input[type="submit"] {
    display: block;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    
    width: 245px;
    height: 47px;
    
    margin: 22px auto;
    
    font-size: 13px;
    color: #4A463E;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: #FFDB83 0px 1px 0px;
    text-align: center;
    text-decoration: none;
    
    border: 0;
    border-radius: 6px;
    
    background: rgb(255,226,154);
    background: -webkit-linear-gradient(top,  rgba(255,226,154,1) 0%,rgba(254,171,9,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,226,154,1) 0%,rgba(254,171,9,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe29a', endColorstr='#feab09',GradientType=0 );

    cursor: pointer;
}
input[type="submit"]:not(:disabled):hover {
    background: rgb(255,229,165);
    background: -webkit-linear-gradient(top,  rgba(255,229,165,1) 0%,rgba(254,181,34,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,229,165,1) 0%,rgba(254,181,34,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe5a5', endColorstr='#feb522',GradientType=0 );
}
input[type="submit"]:not(:disabled):active {
    background: rgb(254,173,10);
    background: -webkit-linear-gradient(top,  rgba(254,173,10,1) 0%,rgba(255,227,155,1) 100%);
    background: linear-gradient(to bottom,  rgba(254,173,10,1) 0%,rgba(255,227,155,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fead0a', endColorstr='#ffe39b',GradientType=0 );
}
input[type="submit"]:disabled {
    cursor: default;
    opacity: 0.5;
}

/* nyíl ikon */
#nyil {
    display: inline-block;
    position: relative;
    
    width: 41px;
    height: 67px;
    
    top: 0px;
    left: -167px;
    
    margin-bottom: -50px;
    
    background: url('/images/nyil.png') no-repeat left top;
}
@media screen and (max-width: 337px){
    #nyil { display:none; }
}