/* Review Card */

.gd_br_rc {
    background-color: #fff;
    border-bottom: 1px solid #DCDCDC;
    border-radius: 0;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.gd_br_rc__panel-head {
    border-bottom: 1px solid #BC2C59;
    padding-bottom: 25px;
    font-weight: normal;
}

.gd_br_rc__panel-head > * {
    margin-top: 24px;
}

.gd_br_rc__panel-head > *:first-child {
    margin-top: 0;
}

.gd_br_rc__panel-head p {
    font-size: 21px;
}

.gd_br_rc__panel-head p.reviews {
    font-size: 18px;
    font-weight: 300;
    margin-top: 0;
}

.gd_br_rc__head {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}



.gd_br_rc__rating {
    width: 155px;
    flex-shrink: 0;
}





.gd_bf_rc__stars {
    background-image: url('../image/stars-sprite.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 16%;
    background-size: 200%;
}

.gd_bf_rc__stars--white {
    background-image: url('../image/stars-sprite-white.svg');
}



.gd_br_rc__profimg {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    flex-shrink: 0;
    display: none;
}

.gd_br_rc__profimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.gd_br_rc__meta > * + * {
    margin-top: 5px;
}

.gd_br_rc .gd_br_rc__title {
    font-size: 24px !important;
    margin: 0 !important;
    white-space: no-wrap;
    text-overflow: ellipsis;
    font-weight: light;
}

.gd_br_rc__date {
    font-weight: 300;
}

.gd_br_rc__content  {
    font-weight: 300;
}

.gd_br_rc__content > * {
    margin-bottom: 1em !important;
}

.gd_br_rc__content > *:last-child {
    margin-bottom: 0 !important;
}


/* links */
.gd_br_morelink {
    text-decoration: underline;
    font-weight: bold;
    font-size: 75% !important;
}

/* modal trigger */
#gd_br_trigger {
    background-color: #F0F2F4;
    padding: 25px;
    padding-top: 15px;
    cursor: pointer;
    position: relative;
}

#gd_br_trigger:before {
    background-color: #F0F2F4;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
    content: '';
    position: absolute;
}

.gd_br_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    z-index: 50;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.gd_br_modal__bg {
    background: black;
    opacity: 0.6;
    background-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gd_br_modal__bg {
    position: absolute;
}

.gd_br_modal__wrapper {
    max-width: 900px;
    margin: auto;
    position: relative;
    background: white;
    padding: 35px;
    height: 75%;
    overflow: auto;
    width: 100%;
    opacity: 0;
    transition-delay: 200ms;
    transition: all 0.5s ease-in-out;
}

.gd_br_modal__inner {
    max-width: 740px;
    margin: auto;
}

.gd_br_modal.active {
    opacity: 1;
    visibility: visible !important;
}

.gd_br_modal.active .gd_br_modal__wrapper{
    opacity: 1;
}

.gd_br_modal__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 35px;
    cursor: pointer;
}

@media all and ( min-width: 640px ) {

    .gd_br_rc {
        padding: 40px 0;
    }

    .gd_br_rc__rating--large {
        width: 322px;
    }

    .gd_br_rc__head {
        flex-direction: row;
        text-align: left;
        flex-wrap: nowrap;
    }

    .gd_br_rc__rating--alignright {
        margin-left: auto;
    }

    .gd_br_rc__meta {
        margin-right: auto;
    }

    .gd_br_rc__profimg {
        display: block;
    }
}