
@media (max-width: 600px) {

    :root{
        --feedback-star-size: 15px;
    }
}
.swal2-container{
    z-index: 10000!important;
}
.swal2-confirm{
    border: 1px solid #b7d602!important;
}
.feedback{
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
}
.feedback-submit{
    border: 1px solid #b7d602;
    background-color: #fff;
    color: #b7d602;
    width: 100%;
    position: relative;
    font-weight: bold;
}
.feedback-submit:hover{
    background: linear-gradient(180deg, #b7d602 0, #68c316 100%);
    color: #fff;
}
.feedback-button-container{
    position: relative;
}
.feedback-button-overlay{
    z-index: 10;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.feedback-form{
    width: 100%;
}
.feedback-container{

}
.feedback-item{
    padding-bottom: 20px;
}
.feedback-item__head{
    display: grid;
    grid-template-columns: 1fr 200px;
    padding-bottom: 20px;
}
.feedback-item__name{
    font-size: 20px;
}

.feedback-item__feedback-stars {
}

.feedback-item__body {
    padding-bottom: 20px;
}

.feedback-item__date {
    font-size: 20px;
}

.feedback-item__message {
    font-size: 17px;
}

.feedback-item__answer-container {
    padding-left: 40px;
}
.feedback-item__answer-container .feedback-item__head{
    grid-template-columns: 1fr;
}

@media (max-width: 600px) {
    .feedback{
        margin-top: 0;
        padding: 10px;
    }
    .feedback-item__answer-container {
        padding-left: 10px;
    }
    .feedback-form {
        width: 100%;
    }
    .feedback-item__name {
        font-size: 15px;
    }
    .feedback-item {
        padding-bottom: 10px;
    }
    .feedback-stars{
        grid-gap: 1px;
    }
}