@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Montserrat:ital,wght@0,300;0,700;1,300;1,700&display=swap');

html {

    background-color: rgba(0, 0, 0, 1);
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.color-primary{color:#ac3ca0}

form {
    width: 600px;
    /* max-width: 90vw; */
}

h2 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px
}

.range {
    position: relative
}

.range input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    width: 100%;
    height: 22px;
    cursor: pointer;
    display: block
}

.range input[type=range]:focus {
    outline: none
}

.range input[type=range][disabled] {
    /* opacity: .3; */
    cursor: default
}

.range .rangeslider {
    position: relative;
    height: 32px;
    max-width: 64vw;
    margin: 0 auto;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.range .rangeslider:before {
    width: 100%
}

.range .rangeslider:after,
.range .rangeslider:before {
    box-sizing: border-box;
    height: 30px;
    background: rgba(48, 21, 47, 1);
    border-radius: 4px;
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.range .rangeslider:after {
    width: 100%;
    background-image: url();
    background-size: 25% 100%;
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    border-radius: 0
}

.range input::-webkit-slider-runnable-track {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    background: rgba(48, 21, 47, 1);
    border-radius: 4px;
    margin: 11px 0
}

.range input::-moz-range-track {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    background: rgba(48, 21, 47, 1);
    border-radius: 4px;
    margin: 11px 0
}

.range input::-ms-track {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    background: rgba(48, 21, 47, 1);
    border-radius: 4px;
    color: transparent;
    padding: 11px 0;
    background: transparent;
    border-color: transparent
}

.range input::-ms-fill-lower,
.range input::-ms-fill-upper {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    background: rgba(48, 21, 47, 1);
    border-radius: 4px
}

.range input::-ms-fill-lower {
    background: rgba(48, 21, 47, 1)
}

.range .rangeslider-fill-lower {
    background-color: rgba(48, 21, 47, 1);
    border-radius: 4px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 30px;
    will-change: width
}

.range input::-webkit-slider-thumb {
    box-sizing: border-box;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .4);
    border: 4px solid #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #ac3ca0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 15px
}

.range input::-moz-range-thumb {
    box-sizing: border-box;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .4);
    border: 4px solid #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #ac3ca0;
    cursor: pointer
}

.range input::-ms-thumb {
    box-sizing: border-box;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .4);
    border: 4px solid #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #ac3ca0;
    cursor: pointer
}

.range .rangeslider-thumb {
    box-sizing: border-box;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .4);
    border: 4px solid #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #ac3ca0;
    cursor: pointer;
    position: absolute;
    -ms-touch-action: pan-x;
    touch-action: pan-x;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    will-change: left;
    z-index: 10
}

.range .label-container {
    position: relative;
    height: 32px
}

.range .label-container .left-label,
.range .label-container .right-label {
    display: block;
    position: absolute;
    bottom: 0
}

.range .label-container .left-label {
    left: 0
}

.range .label-container .right-label {
    right: 0
}

.range .range-output {
    position: absolute;
    left: 11px;
    top: 11px;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.175, .885, .32, 1.275);
    transition: -webkit-transform .4s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .4s cubic-bezier(.175, .885, .32, 1.275);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.range .range-output .output {
    display: block;
    position: absolute;
    height: 54px;
    line-height: 54px;
    min-width: 32px;
    padding: 0 20px;
    top: -31px;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    background: #ac3ca0;
    color: #fff;
    border-radius: 100px;
    white-space: nowrap;
    font-weight: 100;
    font-size: 1.2em;
    text-align: center
}

.range .range-output .output span {
    text-align: center
}

.range .range-output .output:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    border: 10px solid #ac3ca0;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.corner {
    width: 0;
    height: 0;
    border-top: 175px solid rgb(172, 60, 160);
    border-bottom: 175px solid transparent;
    border-right: 175px solid transparent;
    position: fixed;

}

.corner span {
    transform: rotate(-45deg);
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
    font-weight: bold;
    color: black;
    position: fixed;
    display: block;
    font-size: 1.2em;
    width: 100px;
    top: 35px;
    left: 5px;
}

.question {
    margin-bottom: -100px;
    line-height: 1.3em;
    font-size: 1.2em;
}

.question-title,
.intro-title {
    font-size: 1.2em;
    font-weight: bold;
}

.intro {
    line-height: 1em;
    font-size: .8em;
}

.mb-100 {
    margin-bottom: 100px;
}
.mb-50 {
    margin-bottom: 50px;
}

.container-btn-next-question a {
    text-decoration: none
}

.container-btn-next-question {
    text-align: right;
    margin-top: 100px;
    width: 100%;
}

.btn-next-question, .btn-start-question {
    font-weight: bolder;
    color: black;
    padding: 24px 30px;
    /* background: #00f074; */
    background: white;
    border-radius: 40px;
    /* transition: all ease 1s; */
}

@media screen and (max-width: 600px) {
    .tutorial-container{display: block;}
    .tutorial-container--div{width:100%;}
    .hide-mobile {display: none;}
    .corner {
        border-top: 100px solid rgb(172, 60, 160);
        border-bottom: 100px solid transparent;
        border-right: 100px solid transparent;
        display: none;
    }
    .btn-next-question:hover, .btn-start-question:hover {
        color: black;
        padding: 24px 25px 24px 35px;
        background: white;
    }

    .corner span {
        font-size: 0.7em;
        width: 50px;
        top: 20px;
        left: 5px;
        display: none;
    }

    .question {
        margin-bottom: 100px;
        line-height: 1.5em;
        font-size: .95em;
    }

    form {
        width: 380px;
        max-width: 90vw;
    }
    form > h2 > small{
        display: block;
    }
    .mobile-d-block{
        display: block !important;
    }
    main{
        height: unset;
    }
}

@media screen and (min-width: 600px) {
    .tutorial-container{display: inline-flex;}
    .tutorial-container--div{width: 50%;}    
    form {
        width: 800px;
        max-width: 90vw;
    }
    .intro-title{
        font-size: 1.75em;
    }
    .btn-next-question:hover, .btn-start-question:hover {
        color: white;
        padding: 24px 25px 24px 35px;
        background: rgb(185, 53, 172);
    }
}



/* form starting stylings ------------------------------- */
.group {
    position: relative;
    margin-bottom: 45px;
}

input {
    font-size: 1.5em;
    padding: 15px 0px;
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    color: rgb(185, 53, 172);
    border-bottom: 1px dotted rgb(185, 53, 172);
}

input:focus {
    outline: none;
}

/* LABEL ======================================= */
label {
    color: #fafafa;
    font-size: 1em;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
input:focus~label,
input:valid~label {
    top: -20px;
    font-size: 14px;
    color: rgb(185, 53, 172);
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: rgb(185, 53, 172);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active state */
input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: rgb(185, 53, 172);
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: rgb(185, 53, 172);
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: rgb(185, 53, 172);
    }

    to {
        width: 0;
        background: transparent;
    }
}

/* GRÃFICO */
.u-flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.u-ratio {
    position: relative;
    width: 100%;
}

.u-ratio:before {
    display: block;
    content: "";
    padding-top: 100%;
}

.u-ratio__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.u-ratio--2_1:before {
    padding-top: 50%;
}

.u-ratio--1_2:before {
    padding-top: 200%;
}

.u-ratio--4_3:before {
    padding-top: 75%;
}

.u-ratio--16_9:before {
    padding-top: 56.25%;
}

.u-svg-fluid {
    display: block;
    margin: 0 auto;
    height: 100%;
}

.u-full-width {
    width: 100%;
}

.u-full-height {
    height: 100%;
}

.radar-chart .level {
    stroke: rgba(255, 255, 255, .13);
    stroke-width: 2;
}

.radar-chart .axis line {
    stroke: rgba(172, 60, 160, .1);
    stroke-width: 20;
}

.radar-chart .axis .legend {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.5rem;
    fill: rgb(185, 185, 185);
}

.radar-chart .axis .legend.top {
    dy: 1em;
}

.radar-chart .axis .legend.left {
    text-anchor: start;
}

.radar-chart .axis .legend.middle {
    text-anchor: middle;
}

.radar-chart .axis .legend.right {
    text-anchor: end;
}

.radar-chart .tooltip {
    font-family: sans-serif;
    font-size: 13px;
    transition: opacity 200ms;
    opacity: 0;
}

.radar-chart .tooltip.visible {
    opacity: 1;
}

/* area transition when hovering */
.radar-chart .area {
    stroke-width: 3;
    fill-opacity: 0.4;
}

.radar-chart.focus .area {
    fill-opacity: 0.13;
    cursor: pointer;
}

.radar-chart.focus .area.focused {
    fill-opacity: 0.7;
}

.radar-chart .circle {
    fill-opacity: 0.9;
    cursor: pointer;
}

/* transitions */
.radar-chart .area,
.radar-chart .circle {
    transition: opacity 300ms, fill-opacity 200ms;
    opacity: 1;
}

.radar-chart .d3-enter,
.radar-chart .d3-exit {
    opacity: 0;
}

.the_wheel {
    height: 100%;
    text-align: center;
}

.the_wheel .radar-chart-serie0 {
    fill:rgba(172, 60, 160, 1);
    stroke: rgba(172, 60, 160, 1);
}

.the_wheel .radar-chart-serie1 {
    fill: #00f074;
    stroke: #00f074;
}

.the-wheel__chart {
    width: 500px;
    max-width: 90vw;
    margin: 0 auto;
}
.corner {
    width: 0; 
    height: 0; 
    border-top: 175px solid rgb(172, 60, 160);
    border-bottom: 175px solid transparent;
    border-right: 175px solid transparent;
    position:fixed;

}
.corner span {
    transform: rotate(-45deg);
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
    font-weight: bold;
    color: black;
    position:fixed;
    display:block;
    font-size: 1.2em;
    width: 100px;
    top: 35px;
    left: 5px;
}
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    opacity: 0.2;
}
.radar-message{
    color: white;
    font-size: 1em;
    margin-top: 50px;
    line-height: 2.2em;
    font-family: 'Fjalla One', sans-serif;
}
mark{
    background-color: rgb(172, 60, 160);
    color: white;
    font-size: 1.2em;
    margin: -2px -6px;
    padding:  4px  8px;
}
@media screen and (min-width: 600px){
    .radar-message{font-size: 1.3em;}
}








.range-slider {
    margin-top: 30vh;
  }
  
  .rs-range {
    margin-top: 29px;
    max-width: 800px;
    width:100%;
    -webkit-appearance: none;
  }
  .rs-range:focus {
    outline: none;
  }
  .rs-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    box-shadow: none;
    background: #ffffff;
    border-radius: 0px;
    border: 0px solid #010101;
  }
  .rs-range::-moz-range-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    box-shadow: none;
    background: #ffffff;
    border-radius: 0px;
    border: 0px solid #010101;
  }
  .rs-range::-webkit-slider-thumb {
    box-shadow: none;
    border: 0px solid #ffffff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    height: 42px;
    width: 22px;
    border-radius: 22px;
    background: white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -20px;
  }
  .rs-range::-moz-range-thumb {
    box-shadow: none;
    border: 0px solid #ffffff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    height: 42px;
    width: 22px;
    border-radius: 22px;
    background: white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -20px;
  }
  .rs-range::-moz-focus-outer {
    border: 0;
  }
  
  .rs-label {
    display: block;
    position: absolute;
    height: 54px;
    line-height: 54px;
    min-width: 32px;
    padding: 12px 24px;
    top: -21px;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    background: #ac3ca0;
    color: #fff;
    border-radius: 100px;
    white-space: nowrap;
    font-weight: 100;
    font-size: 1.2em;
    text-align: center
  }