@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,100italic,300italic,400italic,500,500italic,700,700italic,900,900italic);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
}
html, body {
    font-size: 1em;
    background: #000;
    width: 100%;
    height: 100%;
    position: relative;
    /* background: url(img/bg.jpg) no-repeat center top / cover; */
}
a {
    text-decoration:none;
}
.trans {
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.main:after {content: '';display: block;background: rgba(0,0,0,.7);position: fixed;}
.main:after, .right {
    position: absolute;
    top:0;
    right: 0;
    bottom: 0;
    left: 45%;
}

.picarea {
    padding: 0 20px;
}

.main {
    background: url(img/bg.jpg) no-repeat center top / cover;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.pic {
    width: 500px;
    height:auto;
    background-repeat: no-repeat;
    background-size:cover;
    margin: auto;
    display: block;
    padding: 10px;
    box-shadow: 3px 3px 8px #000;
    border: 20px solid #fff;
    transform: rotate(-3deg);
    transition: .5s ease-out;
    margin: 30px auto;
}

.pic.pos1 {
    transform: rotate(3deg);
}
.overlay {
    /* max-width: 95%; */
    /* max-width: calc(100% - 2em); */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* margin-right: -50%; */
    /* transform: translate(-50%, -50%); */
    /* -webkit-transform: translate(-50%, -50%); */
    /* padding: 0 0 40px 0; */
    margin: auto;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
}

.frage:first-child {
    display: block;
}

.frage {
    display: none;
    max-width: 100%;
    margin: auto;
}

.frage h1 {
    font-size: 2rem;
}
body.woman .man {
    display: none;
}
label {
    display:block;
    margin: 1em 0 0 0;
}
.btn,select {
    display:inline-block;
    padding: .75em 1.5em;
    font-size: 1em;
    max-width: 40%;
    max-width: calc(50% - 2px);
    border-radius: 2px;
    color: #fff;
    margin: 10px 10px 10px 0;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #e50914;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#e50914),to(#db0510));
    background-image: -webkit-linear-gradient(top,#e50914,#db0510);
    background-image: -moz-linear-gradient(top,#e50914,#db0510);
    background-image: -o-linear-gradient(top,#e50914,#db0510);
    background-image: linear-gradient(to bottom,#e50914,#db0510);
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.45);
    -moz-box-shadow: 0 1px 0 rgba(0,0,0,.45);
    box-shadow: 0 1px 0 rgba(0,0,0,.45);
    letter-spacing: 2px;
}

a.btn:hover {
    background: #f40612;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.45);
    -moz-box-shadow: 0 1px 0 rgba(0,0,0,.45);
    box-shadow: 0 1px 0 rgba(0,0,0,.45);
}
select {
    background: rgba(255,255,255,1);
    color: #000;
    border: 1px solid #000;
    margin: 10px  5px;
    display: inline-block;
    margin: 10px 6px 10px 0;
}
select:only-of-type {
    text-align: center;
}

#q1 .btn:first-of-type {
    background: #FF6701;
}
.cat {
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    display:inline-block;
    margin: 5px 5px 5px 0;
    width: 22%;
    width: calc(25% - 10px);
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    padding: 10px 5px;
    text-align: center;
    min-width: 110px;
}
.man .cat {
    padding: 1em;
}
.cat:hover, .cat.clicked {
    background: #98f781;
    color: #000;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}

.man .cat:hover, .man .cat.clicked {
    background: #db4848;
}

.cat img {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    display: none;
}
.man .cat img {
    display: none;
}
h2 {
    position:relative;
    text-align: left;
    padding: 0 0 0 1.25em;
    font-size: 2em;
    display: none;
    font-weight: 600;
}

h3 {
    font-size: 2em;
}

h3 small {
    font-size: .5em;
    display: block;
}
h2:before {
    content:'';
    display:block;
    width:1em;
    height:1em;
    position: absolute;
    left: 0;
    top: 0;
    background: url(img/icon_searching.png) no-repeat left center / contain;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
.abort {
    display: none;
}

.progress,.searching {
    width: 25px;
    height: 2em;
    padding: 5px;
    overflow: hidden;
    position: absolute;
    bottom: -5px;
    left: 20px;
    color: #fff;
    opacity: .75;
    font-size: 11px;
    border: 1px solid #fff;
}

.man .progress {
    background: #db4848;
}

.searching {
    background: #98f781;
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 20px 0;
    color: #000;
    opacity: 1;
}

.abort a {
    color: #ffffff;
    text-decoration: underline;
}

.geouser {
    padding: 10px;
    width: 100%;
    max-width: 800px;
    margin: auto;
    text-align: center;
    color: #fff;
    padding: 40px 10px 10px 10px;
}

.geouser .user {
    display: block;
    float: left;
    width: 25%;
    height: auto;
    padding: 10px;
    position: relative;
}

.geouser .user img {
    width: 100%;
    height: auto;
    display: block;
}

.geouser .user span {
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    text-align: center;
    font-size: 12px;
}
@media screen and (max-width: 1279px)  {
    .geouser .user {
        width: 33.33%;
    }
}
@media screen and (max-width: 1023px)  {
    .main:after, .right {
        left: 0;
    }
}
@media screen and (orientation: portrait) {
    .pic {
        max-width: 65%;
        border-width: 15px;
        margin: 15px auto;
    }
    .frage h1 {
        font-size: 1.5rem;
    }
}
