.mood-loading {
    background: url(../images/loading.gif) no-repeat center center #FFF;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/*------------------------------
## Survey Intro
*------------------------------*/
.SurveyIntro {
    padding: 50px 0px 100px;
    text-align: center;
}

.survey-btn {
    border-color: transparent;
    border-radius: 15px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    margin: 0 20px;
    padding: 10px 50px 10px 20px;
    position: relative;
}

.survey-btn:after {
    color: #FFF;
    content: '\f054';
    font-family: FontAwesome;
    position: absolute;
    right: 20px;
    top: 11px;
}

.survey-results-btn,
.survey-start {
    background: #7AC146;
}

.survey-results-btn:hover,
.survey-start:hover {
    background: #478E13;
}

.survey-finish-btn,
.survey-cancel {
    background: #EE4236;
}

.survey-finish-btn:hover,
.survey-cancel:hover {
    background: #D5291D;
}

.survey-results-btn:hover {
    color: #FFF;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Core Answers
--------------------------------------------------------------*/
.CoreAnswers {
    margin: 40px 0;
    text-align: center;
}

.CoreAnswers > div,
.CoreAnswers > label {
    display: inline-block;
    text-align: center;
}

.CoreAnswers > label {
    background: #7AC146;
    border-radius: 13px;
    color: #FFF;
    cursor: pointer;
    padding: 10px 20px 10px 50px;
    font-size: 18px;
    margin-right: 15px;
    margin-bottom: 15px;
    position: relative;
}

.RadioMarker {
    cursor: pointer;
}

.CoreAnswers > label .RadioMarker {
    background: #FFF;
    border-radius: 7px;
    content: '';
    height: 25px;
    width: 25px;
    position: absolute;
    left: 12px;
    top: 11px;
}

.MoodAnswers .RadioMarker {
    background: #FFF;
    border-radius: 7px;
    bottom: 0;
    height: 25px;
    left: 7px;
    position: absolute;
    width: 25px;
}

input[type="radio"]:checked + .RadioMarker:before {
    content: '\f00c';
    color: #DF0D7C;
    font-family: FontAwesome;
    font-size: 25px;
    left: 0;
    position: absolute;
    top: 0px;
}

@media(min-width: 992px) {
    input[type="radio"]:checked + .RadioMarker:before {
        top: -5px;
    }
}

.CoreAnswers > label:hover {
    background: #478E13;
}

.CoreAnswers img {
    display: block;
    border: 10px solid #FFF;
}

.CoreAnswers input[type="radio"] {
    display: none;
}

.CoreAnswers input[type="radio"]:checked + img {
    border: 10px solid blue;
    border-radius: 50%;
}

.MoodAnswers {
    margin-top: 20px;
}

.MoodAnswer__group {
    display: block;
    float: left;
    padding: 15px;
    width: 100%;
    margin-bottom: 10px;
}

@media(min-width: 992px) {
    .MoodAnswer__group {
        width: 30%;
        margin-bottom: 0;
    }
}

.negative-group {
    background: #EF4237;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.moderate-group {
    background: #FAA729;
    width: 100%;
}
.positive-group {
    background: #7AC146;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media (min-width: 992px) {
    .moderate-group {
        width: 40%;
    }
}

@media(max-width: 992px) {
    .negative-group {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .moderate-group {
        border-radius: 20px;
    }
    .positive-group {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        margin-bottom: 40px;
    }
}

.moderate-group .MoodAnswers__answer {
    width: 23%;
}

.MoodAnswers__answer {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 24px;
    position: relative;
    text-align: center;
    width: 21%;
}

@media(min-width: 992px) {
    .MoodAnswers__answer {
        width: 29%;
    }
}

.MoodAnswers__answer input {
    display: none;
}

.MoodAnswers__answer__label {
    display: inline-block;
}

input[type="radio"]:checked + .MoodAnswers__answer__label {
    border: 1px solid #000;
    border-radius: 50%;
}

.MoodGaugeContainer {
    text-align: center;
    position: relative;
    height: 250px;
}

.MoodGaugeWrapper {
    position: absolute;
    width: 300px;
    height: 400px;
    left: -50px;
    top: -60px;
}

@media(min-width: 768px) and (max-width: 1200px) {
    .MoodGaugeWrapper {
        left: -117px;
    }
}

.MoodGaugeLabel {
    background: #E50D80;
    border-radius: 20px;
    color: #FFF;
    display: inline-block;
    padding: 8px 40px;
    position: absolute;
    bottom: 0;
    left: 100px;
}

@media(min-width: 768px) and (max-width: 1200px) {
    .MoodGaugeLabel {
        left: 35px;
    }
}

.MoodGauge {
    /*margin: 0 auto;*/
    /*width: 250px;*/
    /*height: 170px;*/
    /*position: relative;*/
}

/** Survey tabs **/
.survey {
    background: #F6F6F6;
    border-radius: 10px;
    margin-bottom: 15px;
}

.survey-header {
    border-radius: 10px;
    padding: 5px 30px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.survey:nth-child(even) .survey-header {
    background: #FAAB2D;
}

.survey:nth-child(odd) .survey-header {
    background: #79C145;
}

.survey-title {
    color: #FFF;
}

.survey-indicator {
    position: absolute;
    right: 20px;
    top: 3px;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    text-align: center;
    transition: all 0.3s;
}

.survey-indicator.loading {
    background: url('../images/loading.gif') no-repeat center center;
    background-size: contain;
    position: absolute;
    font-size: 0;
}

.survey.open .survey-indicator {
    transform: rotate(90deg);
}

.survey-content {
    display: none;
    padding: 20px;
}

.survey-group-title {
    margin: 15px 0;
    text-transform: capitalize;
}

.question-gauge-inner {
    background: #FFF;
    border-radius: 10px;
    padding: 20px;
}

.question-gauge-title {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    min-height: 50px;
    text-align: center;
}

.guage {
    margin: 0 auto;
}

/** Survey Modal **/
#MoodQuestionsModal .modal-dialog,
#MoodQuestionsModal .modal-content {
    border-radius: 18px;
}

#MoodQuestionsModal .modal-header {
    background: #E50D80;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#MoodQuestionsModal .modal-title {
    color: #FFF !important;
    font-weight: bold;
    text-align: center;
}

#MoodQuestionsModal .modal-body {
    background: #F6F6F6;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

#MoodQuestionsModal .modal-body.modal-intro {
    background: url('../images/crowd.png') no-repeat center 107%;
    padding-bottom: 210px;
}

.MoodForm__wizard {
    background: #FFF;
    border: 1px solid #ECECEC;
    border-radius: 15px;
    box-sizing: border-box;
    margin: 20px auto;
    min-height: 240px;
    padding: 20px 30px;
    position: relative;
    width: 85%;
}

@media(min-width: 768px) {
    .MoodForm__wizard {
        width: 60%;
    }
}

.SurveyOptions {
    padding: 20px 30px;
}

.SurveyOption label {
    background: #7AC146;
    border-radius: 10px;
    color: #FFF !important;
    cursor: pointer;
    display: block;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 15px 30px;
    text-align: center;
}

.SurveyOption label:hover {
    background: #478E13;
}

.SurveyOption input[type="radio"] {
    display: none;
}

.MoodForm__previous,
.MoodForm__next {
    background: transparent;
    border: 0;
    bottom: 10px;
    display: block;
    font-size: 15px;
    outline: none;
    position: absolute;
}

.MoodForm__previous:before,
.MoodForm__next:after {
    font-family: FontAwesome;
}

.MoodForm__previous {
    left: 15px;
}

.MoodForm__previous:before {
    content: '\f053';
    padding-right: 10px;
}

.MoodForm__next {
    right: 15px;
}

.MoodForm__next:after {
    content: '\f054';
    padding-left: 10px;
}

.MoodForm__next:disabled {
    color: #E2E2E2;
    cursor: not-allowed;
}


.Question__title,
.Mood__thankyou {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.question-gauge-title > span,
.Question__title > span,
.Mood__thankyou > span {
    background: url(../images/heart.png) no-repeat left;
    padding-left: 40px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
}

.MoodForm__indicator {
    display: block;
    position: absolute;
    bottom: 14px;
    left: 50%;
    margin-left: -39px;
}

.Mood__thankyou__btn {
    text-align: center;
    margin-top: 60px;
}

.MoodForm__mood-colours {
    background: url('../images/hearts-joined.png') no-repeat;
    height: 85px;
    margin: 0 auto;
    width: 300px;
}

.MoodForm__label {
    text-align: center;
    margin-bottom: 60px;
    font-size: 17px;
}

.question-gauge {
    margin-bottom: 20px;
}

.question-gauge-inner {
    min-height: 280px;
}

.question-gauge-container {
    position: absolute;
    width: 300px;
    height: 400px;
    top: px;
}

@media(max-width: 992px) {
    .question-gauge-container {
        left: -40px;
    }
}

@media(min-width: 1200px) {
    .question-gauge-container {
        left: 75px;
    }
}