html body .questions-card, .result-card {
    font-family: sans-serif, Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: rgb(84, 84, 84);
}

.questions-card{
    text-align:center;
}

.nextBtn {
    background-color: #7674ae;
    color: white;
    padding: 15px;
    font-size: 20px;
    margin: 40px 0;
    transition: background .3s ease-in-out;
    cursor: pointer;
    border: none;
    position: relative;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    overflow: hidden;
    border-radius: 15px;
}

    .nextBtn:after {
        content: "";
        background: #adaaff;
        display: block;
        position: absolute;
        padding-top: 300%;
        padding-left: 350%;
        margin-left: -28px !important;
        margin-top: -120%;
        opacity: 0;
        transition: all 3s
    }
    .nextBtn:active:after {
        padding: 0;
        margin: 0;
        opacity: 1;
        transition: 0s
    }

.question {
    padding: 12px 0 30px;
}

    .question p {
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .question select {
        width: 300px;
        padding: 8px;
        border-radius: 6px;
    }



.radios {
    display: inline-block;
    text-align: left;
}

    .radios label {
        margin-bottom: .5rem;
        display: inline-block;
    }

.likert {
    display: inline-block;
    text-align: center;
}

    .likert label {
        width: 120px;
        display: inline-block;
    }

img.mindtime-bar {
    border: 1px solid black;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .mt-survey-explaination {
        padding: 30px;
    }

    div .mindtime_slider {
        padding: 20px 0 45px;
    }
}

@media only screen and (min-width: 768px) {
    .mt-survey-explaination {
        margin: 0 -50px;
    }

    div .mindtime_slider {
        padding: 20px 0 70px;
    }
}

.mindtime-survey {
    display: grid;
}

.mt-survey-explaination {
    padding-bottom: 15px;
    line-height: 22px;
    font-size: 0.75em;
}

.mt-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-columns: 1fr 1fr;
    grid-gap: 50%;
    padding: 0 30px;
}

    .mt-controls .mt-continue {
        background: #33adff;
        color: white;
        padding: 15px;
        font-size: 20px;
        margin: 40px 0;
        transition: background .3s ease-in-out;
        cursor: default;
    }

        .mt-controls .mt-continue .mt-continue-p {
            margin: 0;
            cursor: inherit;
            text-align: center;
        }

        .mt-controls .mt-continue:hover {
            background: #30a0f0;
        }

#mindtime-survey .mt-survey-wrapper + *,
#mindtime-survey .mt-survey-wrapper + *:before,
#mindtime-survey .mt-survey-wrapper + *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#mindtime-survey .mt-survey-wrapper {
    max-width: 640px;
    margin: 20px auto;
}

.hide {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.show {
    opacity: 1;
    visibility: visible;
    /*height: auto;*/
    overflow: visible;
}

.question {
    border-bottom: 1px solid #eee;
    text-align: center;
    transition: all .5s ease-in-out;
    overflow: visible;
}

.standalone{
    border-bottom: none
}

#mindtime-survey .mt-survey-wrapper p.statement {
    line-height: 1.4;
}

#mindtime-survey .mt-survey {
    display: none;
}

.mt-survey-results {
    display: none;
}

#submit {
    padding: 20px;
    font-size: 20px;
    background: #33adff;
    color: white;
    border: none;
    float: right;
    margin: 20px 0;
}

.rangeslider {
    position: relative;
    height: 30px;
    max-width: 606px;
    display: block;
    /*-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);*/
    /*-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);*/
    /*box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);*/
    background-image: linear-gradient(to bottom, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.4));
    margin: 0 auto;
    font-family: Helvetica, sans-serif;
}

.rangeslider__handle {
    transition: background-color .2s;
    /*box-sizing: border-box;*/
    width: 6px;
    height: 36px;
    border-radius: 1px;
    background-color: #33adff;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    cursor: pointer;
    position: absolute;
    z-index: 3;
    top: -3px;
    box-shadow: 0 1px 3px #7f7f7f;
    display: block;
}

.rangeslider_value {
    position: relative;
    top: -28px;
    width: 60px;
    left: -21px;
    color: #33adff;
    font-weight: bold;
    font-size: 17px;
    -webkit-transition: font-size 0.5s;
    -moz-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

.rangeslider--active .rangeslider_value {
    -webkit-transition: font-size 0.5s;
    -moz-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
    font-size: 20px;
}

@media screen and (max-width: 700px) {
    .rangeslider {
        width: 250px;
    }

    .mt-survey-wrapper {
        margin: 0 auto;
    }
}

.rangeslider__handle__value {
    font-size: 0;
    transition: all .2s;
    width: 0;
    height: 0;
    text-align: center;
    padding: 0;
    border-radius: 25%;
    background-color: #33adff;
    color: white;
    left: 3px;
    top: -5px;
    position: absolute;
    white-space: nowrap;
    z-index: 0;
    box-shadow: 0 4px 1px rgba(0, 0, 0, 0.07), 0 2px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale3d(0, 0, 1);
}

.show-value .rangeslider__handle__value {
    width: 30px;
    height: auto;
    padding: 10px;
    left: -22px;
    top: -22px;
}

.rangeslider--active .rangeslider__handle__value {
    transform: scale3d(1, 1, 1);
    /*opacity: 1;*/
    top: -5px;
}

.show-value .rangeslider--active .rangeslider__handle__value {
    transform: scale3d(1, 1, 1);
    /*opacity: 1;*/
    top: -52px;
}

.rangeslider__handle__value:before {
    position: absolute;
    bottom: -5px;
    left: calc(50% - 10px);
    content: "";
    width: 0;
    height: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #33adff;
    z-index: 0;
}

.rangeslider__labels {
    position: absolute;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.rangeslider__labels__label {
    font-size: 0.75em;
    position: relative;
    top: 40px;
    color: rgba(127, 127, 127, 0.75);
    padding: 10px;
}

    .rangeslider__labels__label:before {
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-55%);
        content: "";
        width: 2px;
        height: 8px;
        border-radius: 2px;
        background-color: rgba(0, 0, 0, 0.25);
    }

    .rangeslider__labels__label:first-child {
        transform: translateX(-50%);
    }

    .rangeslider__labels__label:last-child {
        transform: translateX(50%);
    }

.gr-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    -moz-box-shadow: 1px 1px 8px #404040;
    -webkit-box-shadow: 1px 1px 8px #404040;
    box-shadow: 1px 1px 8px #404040;
    outline: 3px solid white;
}

.gr-odd,
.gr-even,
.gr-item {
    width: .9900990099005%;
    height: 100%;
    display: block;
    float: left;
    cursor: pointer;
}

    .gr-item:nth-child(even) {
        background: rgba(0, 0, 0, 0.1);
    }

.gr-container .gr-odd:hover,
.gr-container .gr-item:hover,
.gr-container .gr-even:hover {
    background: rgba(0, 0, 0, 0.25);
}

#progress {
    background-color: #d5cebc;
    width: 100px;
}

    #progress > div {
        background-color: #66b8ff;
        width: 40%;
        /* Adjust with JavaScript */
        height: 4px;
    }

/* circle */
#svg circle {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
    /*stroke: #FF9F1E;*/
    stroke: #b5b5b5;
    stroke-width: 10px;
}

#svg #bar {
    stroke: #33adff;
}

#cont {
    display: block;
    height: 50px;
    width: 50px;
    margin: 45px auto;
    /*box-shadow: 0 0 5px rgba(1,1,1,.2);*/
    border-radius: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    float: left;
}

    #cont:after {
        position: absolute;
        display: block;
        height: 30px;
        width: 30px;
        left: 50%;
        top: 50%;
        /*box-shadow: inset 0 0 15px rgba(1,1,1,.2);*/
        content: attr(data-pct) "%";
        margin-top: -15px;
        margin-left: -15px;
        border-radius: 100%;
        line-height: 30px;
        font-size: .5em;
    }

    #cont h1,
    #cont h2 {
        margin: 0;
        text-transform: uppercase;
    }

#cont {
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    text-align: center;
}

.radios {
    display: inline-block;
    text-align: left;
    width: 27%;
}

.likert {
    display: inline-block;
    text-align: center;
}

    .likert label {
        width: 120px;
    }

    .likert input {
        margin-top: 5px;
    }

.survey_paging {
    position: absolute;
    bottom: 7px;
}

    .survey_paging .btn-primary {
        background-color: #677bdf;
    }


/*    PREVIEW*/
.preview div .mindtime_slider {
    padding: 12px 0 31px;
    font-size: 12px;
}

.preview .question select {
    width: 400px;
    font-size: 11px;
}

.preview .question {
    padding: 12px 0 10px;
    font-size: 12px;
}

    .preview .question label {
        font-size: 10px;
    }



.preview .rangeslider {
    width: 400px;
    height: 23px;
}

.data-box {
    border: 1px solid #d4d0d0;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .data-box h4 {
        margin: 0px;
    }

.mindtime-bar-prog-bg {
    background-color: #f6f6f6;
    width: 100%;
    margin-top: 5px;
    height: 15px;
    border-radius: .25rem;
}

.mindtime-bar-prog-over {
    border-radius: .25rem 0 0 0.25rem;
    float: left;
    height: 15px;
}

.mindtime-color-future {
    color: #1370b7;
}

.mindtime-color-past {
    color: #bd1522;
}

.mindtime-color-present {
    color: #3baa36;
}

.mindtime-bg-future {
    background-color: #1370b7;
}

.mindtime-bg-past {
    background-color: #bd1522;
}

.mindtime-bg-present {
    background-color: #3baa36;
}

.mindtime-bar-left {
    width: 100px;
}

.mindtime-bar-right {
    width: 60px;
}

.mindtime-bar-middle {
    width: -webkit-calc(100% - 125px);
    width: calc(100% - 160px);
}

.mindtime-bar-column {
    float: left;
    padding: 5px;
}

.mindtime-results-boxes {
    border: 1px solid #c3cfd9;
}

.mindtime-result-boxes-headers {
    font-weight: bold;
}

.mindtime-single-bar-left {
    width: 30%;
}

.mindtime-single-bar-middle {
    width: 50%;
}

.mindtime-single-bar-right {
    width: 10%;
    padding-left: 5px;
}

.mindtime-bar-main:after {
    content: "";
    display: table;
    clear: both;
}

.mindtime-report-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
}

.get-all-keys {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top:20px;        
}

    .get-all-keys input[type="text"] {
        width: 150px;
        padding: 8px;
        border: 1px solid gray;
        border-radius: 7px;
    }

    .get-all-keys button {
        background: #7674ae;
        color: white;
        padding: 9px;
        height: 38px;
        font-size: 15px;
        transition: background .3s ease-in-out;
        cursor: pointer;
        border: none;
        border-radius: 4px;
        margin-left: 10px;
    }

    .get-all-keys table {
        margin-top:20px;
    }


    .get-all-keys table th, .get-all-keys table td {
        padding:5px 10px;
    }

    .get-all-keys table th {
        background: #7674ae;
        color: white;
    }

        .get-all-keys table td {
            background-color:white;
            border-top:1px solid rgba(0, 0, 0, 0.25);
        }


        .check-code {
            margin: auto;
            padding: 10px;
            margin-top: 3vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

    .check-code input[type="text"] {
        width: 160px;
        padding: 8px;
        border: 1px solid gray;
        border-radius: 7px;
    }

    .check-code label {
        color: red;
        float: left;
    }

    .check-code button {
        background: #7674ae;
        color: white;
        padding: 9px;
        height: 38px;
        font-size: 15px;
        transition: background .3s ease-in-out;
        cursor: pointer;
        border: none;
        border-radius: 4px;
        margin-left: 10px;
    }

.mindtime-key-text {
    font-size: 20px;
    display: flex;
    align-items: center;
}
.submitBtn {
    background: #33adff;
    color: white;
    padding: 10px;
    font-size: 15px;
    transition: background .3s ease-in-out;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    width: 100px;
    margin-top: 20px;
}

.userCodeDisplay {
    font-size: 27px;
    padding-right: 10px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content:center;
}

.userCodeCopyBtn {
    width: 70px;
    margin-left: 10px;
    padding: 0.25rem .45rem;
}

.copy-hover:hover {
    background-color: #fafafa;
    border-right: 1px solid #e3e3e3;
    cursor: pointer;
}


.mt-key {
    background-image: url("../img/MTKey.png");
}

.mindtime-btn {
    display: inline-block;
    font-weight: 400;
    color: #495057;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: .8125rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.mt_loader {
    width: 50px;
    height: 50px;
    transform-origin: 25px 30px;
    animation-name: rotate_pulse;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes rotate_pulse {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    75% {
        transform: scale(1.2);
    }

    100% {
        transform: rotate(360deg);
    }
}

.zscore-container {
    display: flex;
    width: 100%;
    align-items: center;
}

    .zscore-container .devider {
        margin-left: 0px;
        height: 30px;
        width: 1px;
        background-color: #d4d4d4;
    }

.zscore-progress-container {
    flex: 1;
    height: 20px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.zscore-progress {
    height:100%;
}

.zscore-container .zscore-progress-negative {
    transform: rotate(180deg);
    background-color:white;
}

.future-progress-title {
    color: #1370b7;
}

.past-progress-title  {
    color: #bd1522;
}

.present-progress-title {
    color: #3baa36;
}

.future-zscore-progress .zscore-progress {
    background-color: #1370b7;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.past-zscore-progress .zscore-progress {
    background-color: #bd1522;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.present-zscore-progress .zscore-progress {
    background-color: #3baa36;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.zscore-progress-container {
    background-color: #e2e2e2;
    border: 1px solid #e2e2e2;
}