#reviews-section {
margin: 20px 0 40px;
border-top: 10px solid #eff0f5;
border-bottom: 10px solid #eff0f5;
padding-top: 20px;
padding-bottom: 40px;
}
#review-modal {
display: none;  
position: fixed;  
z-index: 99999; 
left: 0;
top: 0;
width: 100%;  
height: 100%; 
overflow: auto; 
background-color: rgb(0,0,0);  
background-color: rgba(0,0,0,0.4); 
overflow: hidden;
}
#review-modal-content {
background-color: #fefefe;
margin: 5% auto;
border: 1px solid #888;
width: 90%;
max-width: 600px;
display: flex;
}
#review-iframe { 
width: 100%;
display: none;
border: 0px;
}
#review-iframe-container { 
display: flex;
width: 100%;
flex-direction: column;
}
#review-iframe-inner-container { 
display: flex;
flex: 1;
}
.review-button-container {
text-align: center;
}
.review-button {
color: navy;
text-decoration: none;
margin: 0 auto;
cursor: pointer;
font-size: 18px;
font-weight: 700;
background: lightblue;
width: 250px;
padding: 10px;
border: 1px solid navy;
border-radius: 5px;
text-align: center;
}
#review-loader {
display: inline-block;
width: 50px;
height: 50px;
border: 5px solid rgb(0, 33, 79);
border-radius: 50%;
border-top-color: rgba(255,255,255,.3);
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
margin-left: calc(50% - 25px);
margin-top: calc(50% + 25px);
}
@keyframes spin {
to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
to { -webkit-transform: rotate(360deg); }
}
.reviews {
display: block;
}
.reviews h2 {
text-align: center;
}
.review {
display: flex;
flex-direction: column;
flex: 1;
margin-top: 17px;
border-bottom: 1px solid rgb(160, 160, 160);
padding-bottom: 17px;
}
.review:last-child {
border-bottom: 0;
}
.review-header {
display: flex;
flex-direction: row;
flex: 1;
}
.review-meta {  display: flex;}
.review-content {  display: flex; flex-direction: column; white-space: pre-wrap; }
.content {
white-space: pre-wrap;
margin-bottom: 17px;
}
.show-less {
max-height: 100px;
overflow: hidden;
}
.review-media {  display: flex;}
.review-footer {  display: flex;}
.review-rating {
flex-grow: 1;
}
.review-date {
font-family: sans-serif;
font-size: 13px;
font-weight: 400;
color: rgb(160, 160, 160);
}
.review-rating-checked {
color: gold;
}
.review-media-image-container img {
width: 120px;
margin-right: 5px;
cursor: pointer;
}
.review-username {
color: rgb(0, 46, 91);
font-size: 13px;
font-weight: 700;
}
.review-thumbs-up {
cursor: pointer;
margin-right: 10px;
}
.review-thumbs-down {
cursor: pointer;
flex: 1;
}
.review-footer {
margin-top: 17px;
}
.review-ratings {
display: flex;
flex-direction: row;
flex: 1;
}
.review-report-abuse { 
font-family: sans-serif;
font-size: 13px;
font-weight: 400;
color: rgb(160, 160, 160);
}