.feedback-cont {
    width: 100%;
    overflow: hidden;
}
.feedback-cont h3 {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 25px;
    color: #333;
    margin-top: 50px;
    margin-bottom: 20px;
}
.feedback-cont form {
    width: 100%;
    overflow: hidden;
}

.feedback-cont p {
    font-size: 16px;
    margin-bottom:0px;
}
.feedback-cont .textarea {
    min-width: 75%;
    height: 100px;
    border-radius: 15px;
    background: #F8F8F8;
    margin-top: 9px;
    box-shadow: 5px 8px 12px rgba(0, 0, 0, .16);
    padding: 10px 15px;
    outline: none;
}

.feedback-cont .input {
    width: 50%;
    border: 1px solid grey;
    border-radius: 15px;
    background: #F8F8F8;
    margin-top: 9px;
    box-shadow: 5px 8px 12px rgba(0, 0, 0, .16);
    margin-bottom: 10px;
    padding: 10px 15px;
    outline: none;
}

.refresh-token{
    margin-left:15px;
}

.left-section{
    width:25%;
    float:left;
}

.left-section .input {
    width:90%;
}

.left-section .right {
    float : right;
}

.rating-container li {
    width: 44px;
    height: 44px;
    background: #fff;
    border: solid 1px #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;cursor: pointer;border-right: 0;
}
.rating-container li:last-of-type{border-right: solid 1px #707070 }
.rating-container li.selected {

    border-color: #00aeef;
}
.rating-container li label {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rating-container li label input {
    transform: scale(0);width: 0;height: 0;
}
.rating-container li label span.checkmark {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rating-container li label input:checked ~ span.checkmark {
    background: #00aeef;
    color: #fff;
}

.feedback-cont button {
    background: #00aeef;
    border: 0;
    border-radius: 15px;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}
button[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

.refresh-token img {
    cursor: pointer;
    margin-top: -5px;
}

@media only screen and (max-width:540px){

    .feedback-cont .input {
        width:100%;

    }

    .feedback-cont .textarea{
        margin-bottom :30px;
    }

    .left-section .input{
        width:100%;
    }

    .left-section{
        width:100%;
    }

    .left-section.right{
        float:left;
    }

    .left-section p{
        margin-top : 10px;
        margin-left:0px !important;
    }
}



























