/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.section {
    padding: 60px 0;
}

.text-center {
    text-align: center !important;
}

.thankyou-text-block {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 80px;
}

.question_2,
.question_3 {
    /* display: none; */
}

#dialog-message {
    display: none;
}

.review-block textarea {
    border: 1px solid #0094c9;
    border-radius: 20px;
    padding: 15px 30px;
    height: 150px;
}

.review-block #submit_form {
    background: #0094c9;
    color: #fff;
    min-width: 250px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    border-color: #0094c9;
}

.review-block input[type="submit"]:hover {
    opacity: 0.7;
}

.review-btn-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    max-width: 300px;
    justify-content: space-between;
    margin: 0 auto;
}

.btn-no,
.btn-yes {
    position: relative;
    padding-top: 90px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    color: #0094c9;
}

.btn-no:before,
.btn-yes:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background: url('../images/icon-happy.png') no-repeat;
    width: 73px;
    height: 73px;
    background-size: 100%;
    transform: translateX(-50%);
}

.btn-no:before {
    background-image: url('../images/icon-sad.png');
}

.btn-no span,
.btn-yes span {
    border: 1px solid #0094c9;
    background: transparent;
    width: 98px;
    border-radius: 50px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 6px;
}

.question-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*	align-items: center;*/
}

.question .review-img {
    width: 35%;
    position: relative;
    padding-right: 100px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.question .review-img:before {
    content: "";
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0;
    width: 1px;
    background: #0094c9;
}

.question .decision-wrap {
    border: 1px solid #0094c9;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    width: 65%;
}

.text-wrap {
    padding-left: 30px;
}

.submit-wrap {
    margin-top: 15px;
}

.question-wrap+textarea {
    margin-top: 30px;
}

.star-rating {}

.star-rating .user-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.user-img-wrap {
    width: 80px;
    height: 80px;
}

.user-img-wrap img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.user-wrap .user-desc {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.user-wrap .user-desc .name {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.user-wrap .user-desc .title {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.user-wrap .user-desc textarea {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #0094c9;
    background: #f8f8f8;
}

.decision-btn-wrap {
    margin-bottom: 30px;
}

.decision-btn-wrap input[type="button"] {
    border-radius: 50px;
    padding: 6px 15px;
    min-width: 80px;
}


/*
* Rating styles
*/

.rating {
    float: left;
    height: 46px;
    padding: 0 10px;
}

.rating:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rating:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rating:not(:checked)>label:before {
    content: '★ ';
}

.rating>input:checked~label {
    color: #0094c9;
}

.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #0094c9;
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
    color: #0094c9;
}

@media only screen and (max-width: 767px) {
    .question-wrap {
        display: block;
    }
    .question .review-img {
        width: 100%;
        padding: 0;
        justify-content: center;
        margin-bottom: 40px;
    }
    .question .review-img:before {
        display: none;
    }
    .question .decision-wrap {
        width: 100%;
    }
    .review-block textarea {
        padding: 15px 20px;
    }
    .text-wrap {
        padding-left: 20px;
    }
}

.success_message {
    display: none;
}


/***************Spinner css*******************/

div.fltreview-loading {
    position: fixed;
    /* Sit on top of the page content */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

.fltreview-loading .clock {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    margin-top: 50px;
    border-radius: 50%;
    border: 3px solid white;
}

.fltreview-loading .clock::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 15px;
    background-color: white;
    top: 50%;
    left: 50%;
    transform-origin: 50% 0%;
    animation: rotate2 2s linear infinite;
}

.fltreview-loading .clock::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 25px;
    background-color: white;
    top: 50%;
    left: 50%;
    transform-origin: 50% 0%;
    animation: rotate2 0.75s linear infinite;
}

@keyframes rotate2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}


/***************Spinner css End*******************/

#inline2 {
    display: none;
}

label.error {
    color: red;
    font-size: 11px !important;
}