:root{
    --hover-color: 
}

#wrapper{
    background: repeating-linear-gradient(45deg,rgba(255, 0, 0, 0.02), rgba(255, 0, 0, 0.02) 10px, rgba(255, 0, 0, 0.001) 10px, rgba(255, 0, 0, 0.001) 20px);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.content-box{
    padding: 15px 25px;
    text-align: center;
}

.logo{
    width: 130px;
    margin: 0 auto 15px;
    display: block;
}

.feedback-report{
    padding: 10px 0;
}

.feedback-report .logo{
    width: 60px;
    margin: 0 0 10px;
}

.bg-danger{
    background-color: #ED3237 !important;
}

h1{
    color: #fff;
    background-color: #ED3237;
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    /* display: inline-block; */
}

.feedback-report h1{
    font-size: 25px;
    text-align: left;
    margin: 0;
    display: inline-block;
}

.feedback-report ul{
    padding: 5px 0;
    margin: 0;
    list-style: none;
    text-align: right;
}

.feedback-report ul li{
   display: inline-block;
   padding: 0 10px;
   text-transform: capitalize;
}

.feedback-report ul li a{ color: #000; }

p{
    color: #777;
}

.form-group{
    text-align: center;
    margin-bottom: 30px;
}

label{
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px;
    display: block;
}

label:after{
    content: '';
    border-bottom: 3px dashed #ED3237;
    height: 2px;
    width: 200px;
    margin: 5px auto;
    display: block;
    clear: both;
}

.feedback-report label{
    font-size: 20px;
    display: inline-block;
}
.feedback-report label:after{
    display: none;
}

.feedback-report label + input,
.feedback-report label + select{
    display: inline-block;
    width: 200px;
}

input[name='service'],
input[name='food_service'],
input[name='clean_service']{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 60px;
    width: 60px;
    margin: 0 12px 20px;
    padding: 15px;
    border-radius: 50%;
    background-image: url('../images/tired.svg');
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: center center;
    background-color: #EA2027;
    cursor: pointer;
    position: relative;
}

input[name='service']:checked,
input[name='food_service']:checked,
input[name='clean_service']:checked{
    box-shadow: 0 0 5px rgba(255,255,255,0.5),0 0 0 4px rgba(234,32,39,0.5),0 0 0 7px rgba(234,32,39,0.3),0 0 0 10px rgba(234,32,39,0.1);
}

input[name='service']:nth-of-type(2),
input[name='food_service']:nth-of-type(2),
input[name='clean_service']:nth-of-type(2){
    background-image: url('../images/frown.svg'); 
    background-color: #EE5A24;
}

input[name='service']:nth-of-type(2):checked,
input[name='food_service']:nth-of-type(2):checked,
input[name='clean_service']:nth-of-type(2):checked{
    box-shadow: 0 0 5px rgba(255,255,255,0.5),0 0 0 4px rgba(238,90,36,0.5),0 0 0 7px rgba(238,90,36,0.3),0 0 0 10px rgba(238,90,36,0.1);
}

input[name='service']:nth-of-type(3),
input[name='food_service']:nth-of-type(3),
input[name='clean_service']:nth-of-type(3){
    background-image: url('../images/meh.svg'); 
    background-color: #999;
}

input[name='service']:nth-of-type(3):checked,
input[name='food_service']:nth-of-type(3):checked,
input[name='clean_service']:nth-of-type(3):checked{
    box-shadow: 0 0 5px rgba(255,255,255,0.5),0 0 0 4px rgba(0,0,0,0.2),0 0 0 7px rgba(0,0,0,0.1),0 0 0 10px rgba(0,0,0,0.03);
}

input[name='service']:nth-of-type(4),
input[name='food_service']:nth-of-type(4),
input[name='clean_service']:nth-of-type(4){
    background-image: url('../images/smile.svg'); 
    background-color: #009432;
}
input[name='service']:nth-of-type(4):checked,
input[name='food_service']:nth-of-type(4):checked,
input[name='clean_service']:nth-of-type(4):checked{
    box-shadow: 0 0 5px rgba(255,255,255,0.5),0 0 0 4px rgba(0,148,50,0.5),0 0 0 7px rgba(0,148,50,0.3),0 0 0 10px rgba(0,148,50,0.1);
}

input[name='service']:after,
input[name='food_service']:after,
input[name='clean_service']:after{
    content: 'Tired';
    color: #000;
    font-size: 15px;
    font-weight: 600;
    transform: translateX(-50%);
    position: absolute;
    bottom: -32px;
    left: 50%;
}


input[name='service']:nth-of-type(2):after,
input[name='food_service']:nth-of-type(2):after,
input[name='clean_service']:nth-of-type(2):after{
    content: 'Unsatisfied';
}

input[name='service']:nth-of-type(3):after,
input[name='food_service']:nth-of-type(3):after,
input[name='clean_service']:nth-of-type(3):after{
    content: 'Average';
}

input[name='service']:nth-of-type(4):after,
input[name='food_service']:nth-of-type(4):after,
input[name='clean_service']:nth-of-type(4):after{
    content: 'Satisfied';
}

input[name='service']:checked:after,
input[name='food_service']:checked:after,
input[name='clean_service']:checked:after{
    font-weight: 700;
}

input[name='pin'],
input[name='c_name'],
input[name='c_mobile']{
    color: #333;
    font-size: 20px;
    border-color: #000;
}

input[name='c_name']:focus,
input[name='c_mobile']:focus{
    border-color: #EA2027;
    box-shadow: 0 0 0 5px rgba(255,0,0,0.5);
}
input[name='c_name']::placeholder,
input[name='c_mobile']::placeholder{
    color: #555;
}

.thank-you-box{
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.thank-you-box img{
    width: 30%;
    margin: 100px auto;
    display: block;
}

table tbody{
    text-transform: capitalize;
}


@media screen and (max-width: 767px) {
    .feedback-report{
        text-align: center;
    }
    .feedback-report .logo{
        margin: 0 auto 10px;
    }
    .feedback-report h1,
    .feedback-report ul{
        text-align: center;
        float: none !important;
    }
}
@media screen and (max-width: 420px) {
    input[name='service'],
    input[name='food_service'],
    input[name='clean_service'] {
        height: 60px;
        width: 60px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 376px) {
    input[name='service'],
    input[name='food_service'],
    input[name='clean_service'] {
        height: 55px;
        width: 55px;
        margin: 0 8px 40px;
    }
}