.review-section{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.review-table{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.review-item{
    background: black;
    width: 30%;
    color: white;
    padding: 5px;
    border-radius: 20px;
    border-width: 2px;
    border-style: outset;
    border-image: initial;
}

.review-header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px;
}

.review-name{
    margin: 0;
    padding-left: 20px;
    font-weight: 700;
}

.review-body{
    padding: 20px;
    padding-top: 0px;
}

.review-rate-image{
    width: 100px;
}

.review-description{
    font-size: 12px;
    white-space: pre-line;
}

.go-to-review{
    margin-top: 50px;
}

.review-button{
    background: black;
    color: white;
    width: 300px;
    height: 50px;
    border-radius: 15px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    text-decoration: none !important;
}

.accordion-btn{
    display: none;
}

@media only screen and (max-width: 600px) {
    .review-section{
        border-left: 3px solid #2d2d2d;
        margin-left: 2px;
    }
    .accordion-btn{
        display: flex;
        background: black;
        color: white;
        width: 300px;
        height: 50px;
        border-radius: 5px;
        border: 1px solid white;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
        margin: auto;
        margin-top: 50px;
    }
    .accordion-btn:hover{
        transition: 0.2s;
    }
    .accordion-hidden{
        opacity: 0;
        height: 0;
        transition: 0.2s;
        overflow: hidden;
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    .accordion-text-hidden{
        display: none;
    }
  }

