* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:focus {
    outline: 0
}

img {
    border: none;
    display: block
}

ol,
ul {
    list-style: none
}

iframe {
    border: none !important;
    width: 0 !important;
    height: 0 !important
}

a {
    text-decoration: none;
    cursor: pointer !important
}

html,
body {
    height: 100%
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    position: relative
}

body {
    background: #faf8c7;
    font-family: Arial, sans-serif;
    color: #3e3e3e;
    line-height: 1.3;
    font-size: 1.5rem
}

.step-block {
    max-width: 480px;
    width: 94%;
    margin: 0 auto
}

.highlight {
    font-weight: bold
}

.step-item {
    display: none;
    text-align: center
}

.step-item.visible {
    display: block
}

.hidden {
    display: none
}

.first-step {
    font-size: 1.8rem
}

.first-step .highlight {
    font-size: 2.2rem
}

.step-header {
    text-align: center;
    padding: 1rem 0.5rem;
    background: #7e2485;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
    color: #fff
}

.step-content {
    padding: 2rem 0
}

.step-content p {
    margin-bottom: 1rem
}

.main-img {
    display: block;
    max-width: 100%;
    margin: 2rem auto
}

.question-title {
    font-size: 2rem;
    line-height: 1
}

.question-notice {
    margin-top: 1rem;
    font-style: italic;
    font-size: 1.4rem
}

.age-title {
    background: #424242;
    padding: 1rem 0;
    font-size: 2.4rem;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-weight: bold
}

.checkbox-block {
    margin-top: 2rem
}

.checkbox-item {
    position: relative;
    padding: 1.5rem 2rem 1.5rem 6rem;
    margin-bottom: 1rem;
    background-color:#868294;
    color: #fff;
    font-size: 2rem;
    text-align: left;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s linear;
    font-weight: bold
}

.checkbox-item:before {
    content: "\2713";
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 1rem;
    z-index: 1;
    background: #ddddde;
    border-radius: 50%;
    line-height: 3.5rem;
    color: #53585f;
    font-family: Arial,
        sans-serif;
    font-weight: bold;
    font-size: 2.6rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center
}

.checkbox-item.checked:before {
    background:#c630d2;
    color: #fff
}

.buttons-block {
    text-align: center;
    margin: 1rem 0
}

.step-btn {
    background:#7e2485;
    display: inline-block;
    width: 40%;
    min-width: 150px;
    margin: 1rem;
    height: 6rem;
    line-height: 6rem;
    cursor: pointer;
    transition: all 0.3s linear;
    font-weight: 700;
    font-size: 2.2rem;
    color: #fff;
    text-transform: uppercase
}

.next-btn {
    width: 100%;
    margin: 1rem 0
}

.step-btn:hover {
    opacity: 0.8
}

.result-block {
    margin-top: 2rem
}

.result-item {
    position: relative;
    padding: 1rem 2rem;
    background: #53585f;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: left
}

.loader-item {
    display: none;
    font-size: 1.8rem;
    text-align: center
}

.loader-item.visible {
    display: block
}

.loader {
    position: relative;
    margin: 2rem auto;
    border-radius: 6px;
    padding: 4px;
    height: 16px;
    width: 250px;
    background-color: #3f454b
}

.loader:after {
    content: '';
    display: block;
    background: #51a7f9;
    border-radius: 6px;
    position: absolute;
    left: 3px;
    top: 3px;
    bottom: 3px;
    -webkit-animation: loading 7s linear infinite;
    animation: loading 7s linear infinite;
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.1)
}

@-webkit-keyframes loading {
    from {
        width: 0;
    }

    to {
        width: 99%;
    }
}

@keyframes loading {
    from {
        width: 0;
    }

    to {
        width: 99%;
    }
}

@media (max-width: 800px) {
    html {
        font-size: 50%
    }

    body {
        background-image: none
    }
}