p {
    padding: 0px;
}

#feedback-box-background
{    display:none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0,0,0,0.6);
     z-index: 100;
}

#feedback-box-wrap
{
    display: none;
    background-color: white;
    width: 660px;
    height: 90%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 2px;
    box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,0.2);
    overflow: auto;
    z-index: 100;
}

#feedback-box-content
{
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: CALC(100% - 61px);
}

#feedback-box-content p, #feedback-box-content a, #feedback-box-content label, #feedback-box-content span
{
    font-size: 90%;
}

#feedback-close
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: #ffd800;
    overflow: hidden;
    height: 60px;
}

#feedback-close p:first-of-type {
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px;
}


#feedback-close p:last-of-type {
    font-size: 25px;
    cursor: pointer;
    color: rgba(0,0,0,0.6);
    padding: 20px 25px 20px 20px;
    transform: scale(1.2,1);
}


#feedback-close p:hover
{
    color: rgb(0,0,0);
}

#feedback-box-content input, #feedback-box-content textarea {
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.05);
    width: 100%;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
}

#rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

#rating > p
{
    padding: 15px;
}

#rating > div > img {
    height: 20px;
    cursor: pointer;
}

#recommend-inputs
{
    padding: 15px;
}

#recommend-inputs > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#recommend-inputs > p
{
    padding-bottom: 5px;
}

.recommend-button
{
    cursor:pointer;
    width: 100px;
    height: 45px;
    border: 2px solid rgba(0,0,0,0.1);
}

#recommend-no {
    background: #ad1111  url(../img/not-recommend.png) no-repeat center center / 25px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

#recommend-yes {
    background: #138a29  url(../img/recommend.png) no-repeat center center / 25px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

#recommend-no:hover {
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.045) inset;
    background-color: #990e0e;
}
#recommend-yes:hover {
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.045) inset;
    background-color: #0b721e;
}

.recommend-yes-active {
    background-color: #21c23e !important;
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.1) inset !important;
    border: 2px solid rgba(0,0,0,0.4) !important;
}

.recommend-no-active {
    background-color: #da2121 !important;
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.1) inset !important;
    border: 2px solid rgba(0,0,0,0.4) !important;
}

#feedback-form textarea {
    resize: vertical;
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
    max-height: 300px;
}

#feedback-form textarea:hover {
    border-top: 1px solid rgba(0,0,0,0.2); 
    border-bottom: 1px solid rgba(0,0,0,0.2);    
}
#feedback-form textarea:active, #feedback-form textarea:focus {
    border-top: 1px solid rgba(0,0,0,0.2); 
    border-bottom: 1px solid rgba(0,0,0,0.2);    
    background: rgba(0,0,0,0.03);
}

#feedback-form textarea[name="content"] {
    margin-top: 15px;
}

.anim-medium
{
    -webkit-transition: 0.1s all ease-in-out;
    -moz-transition: 0.1s all ease-in-out;
    -o-transition: 0.1s all ease-in-out;
    -ms-transition: 0.1s all ease-in-out;
    transition: 0.1s all ease-in-out;
}

#product-feedbacks-list button {
    padding: 20px 30px;
    margin: 10px 0px;
    background: #ffd800;
    border-radius: 2px;
    font-weight: bold;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
}

#feedback-form input[type="submit"] {
    text-align: center;
    background: #ffd800 !important;
    border-radius: 2px;
    font-weight: bold;
    cursor: pointer;
}

#feedback-form input[type="submit"]:hover {
    background: #ffc600 !important;
    text-decoration: underline;
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.045) inset;
    color:white;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

#idTab5 {
    margin-left: 0px !important;
}

.required-feedback {
    background-color: #f99791 !important;
}

#anonymous-review {
    display: flex;
    align-content: center;
    padding: 10px;
    flex-direction: row-reverse;
    width: 150px;
    position: absolute;
    right: 0px;
}
#anonymous-review > *
{
    cursor: pointer;
}
#anonymous-review > label {
    padding-left: 5px;
    min-width: 125px;
}

.user-feedback-wrap
{
    background: rgba(0,0,0,0.02);
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.05);
}

div.user-feedback-wrap-outer:first-of-type > div.user-feedback-wrap
{
    margin-top: 20px;
}

.child-feedback {
    display: none;
}

.user-feedback > div
{
    padding: 0px 0px 0px 20px; 
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.user-feedback p
{
    padding: 0px; 
    color: rgba(0,0,0,0.9);
}


div.user-feedback-header
{
    background: rgba(0,0,0,0.05);
    justify-content: space-between;
}

div.user-feedback-header > div:first-of-type
{
    display: flex;
    align-items: center;
}

div.user-feedback-header div > span
{
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 0px;
}

div.user-feedback-header div > span > img
{
    height: 20px;
}

div.user-feedback-header div:first-of-type > span:last-of-type{
    margin-left: 5px;
    display: flex;
}

div.user-feedback-content{
    margin: 10px 0px;
    flex-direction: column;
    align-items: flex-start;
}

.user-feedback > div > *
{
    padding: 10px 0px;
}

.user-feedback-content > div
{
    display:flex;
    flex-direction: column;  
}
.user-feedback-content > div > div
{
    display:flex;
}

.user-feedback-content > div > div > p
{
    line-height: 25px;
    padding-left: 5px;
}

.user-feedback-content > div > div > img
{
    height: 14px;
    padding: 5.5px 0px;
}

div.user-feedback-content > p
{
    line-height: 145%;
}

div.user-feedback-footer
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 10px;
    padding-top: 5px;
}

div.user-feedback-footer p, div.user-feedback-footer a
{
    font-size: 85%;
    font-style: italic;
}

#average-rating
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

#star-wrap > span {
    font-weight: bold;
}

#star-wrap > img {
    height: 80px;
}

#star-wrap
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column-reverse;
}

#detail-rating div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#detail-rating div > div:first-of-type {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#detail-rating div > div:first-of-type > img {
    height: 20px;
}

img.grey {
    filter: contrast(0%);
    -webkit-filter: contrast(0%);    
}

#feedback-info > table td
{
    padding: 3.5px;
}

#feedback-info > table tr > td:first-of-type
{
    padding-right: 5px;
}

#feedback-info span {
    color: #000;
    font: 1em/1em Arial;
}

#detail-rating p {
    margin-left: 5px;
}
#product-feedbacks-list > div:first-of-type{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#product-feedbacks-list > div:first-of-type > p:first-of-type
{
    text-transform: uppercase;
    font-weight: bold;
}

#alert-no-feedback
{
    margin-top: 20px;
    background: rgba(0,0,0,0.05);
    padding: 25px 20px;
    border-radius: 2px;
}

#product-feedbacks-list button {
    padding: 20px 30px;
    margin: 10px 0px;
    background: #ffd800;
    border-radius: 2px;
    font-weight: bold;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
}

#product-feedbacks-list button:hover {
    background: #ffc600;
    text-decoration: underline;
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.045) inset;
    color:white;
}

#recommend {
    width: 100px;
    height: 40px;
    margin-right: 20px;
}

.recommend {
    background: #138a29 url(../img/recommend.png) no-repeat center center / 25px;
    margin-right: 0px !important;
}

.not-recommend {
    background: #ad1111  url(../img/not-recommend.png) no-repeat center center / 25px;
    margin-right: 0px !important;
}

.arrow
{
    display:none;
    height: 30px;
    width: 30px;
    background: url(../img/arrow.png) no-repeat center center / 16px; 
    cursor: pointer;
}

.arrow + a, .arrow + a + p
{
    display:none;
}

.arrow-active {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg); 
}

.user-feedback-footer > div:first-of-type{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.user-feedback-footer > div:first-of-type > a:first-of-type{
    margin-right: 10px;
}

a:hover
{
    text-decoration: underline;
}

.on_sale.rating
{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: auto !important;
    background-color: #ffcf00;
    border-color: #ffcf00;
    padding: 3px 12px;
}

.on_sale.rating > img
{
    cursor: auto !important;
    height: 15px;
    margin: 0px !important;
    filter: brightness(1000%);
    -webkit-filter: brightness(1000%);
}

.grey-stripe
{
    filter: brightness(70%) contrast(100%) !important;
    -webkit-filter: brightness(70%) contrast(100%) !important;
}

.rating-none {
    display: none !important;
}
.gdpr_comment {
    display: none;
}