.scrs-review-section {
    display: inline-block;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    border: 1px solid #d6d6d6;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 30px 10px 30px;
    color: #333;
}

@media (max-width: 768px) {
    .scrs-review-section {
      margin-top: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .scrs-review-section {
        margin-top: 60px;
    }
}

.scrs-rating {
    display: flex;
    align-items: center;
}

.scrs-title-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scrs-title-rating {
    display: flex;
    align-items: center;
    background: #eeeeee;
    justify-content: center;
    top: -25px;
    position: relative;
    height: 44px;
    line-height: 24px;
    text-align: center;
    padding: 0 20px;
    margin: 0 50px;
}

@media (max-width: 768px) {
    .scrs-title-rating {
        margin: 0;
        padding: 0;
    }
}

.scrs-title-rating p {
    margin: 0;
    margin: 0;
    font-size: 20px; /* Adjust the font size as needed */
    font-weight: 700;
}

@media (max-width: 768px) {
    .scrs-title-rating p {
        font-size: 16px;
    }
}

.scrs-star {
    font-size: 1.5em;
    color: #ccc;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-right: 2px;
    user-select: none;
}

.scrs-star.filled {
    color: var(--ast-global-color-0);
}

.scrs-star.half {
    color: var(--ast-global-color-0);
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.scrs-star.half::before {
    content: '\2605';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    height: 100%;
    z-index: 2;
}

.scrs-star.half::after {
    content: '\2605';
    color: #ccc;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: block;
    z-index: 1;
}

.scrs-verdict {
    margin-top: -10px;
    margin-bottom: 15px;
    padding: 0 10px;
    font-size: 16px;
}

.scrs-pros-cons-container {
    display: flex;
    padding: 10 10px 0 10px;
}

.scrs-pros, .scrs-cons {
    flex: 1;
    padding-top: 20px;
    border-top: 1px solid #ededed;
}

.scrs-cons {
    padding-left: 15px;
}

.scrs-pros p, .scrs-cons p {
    margin-left: 2px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.scrs-pros ul, .scrs-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scrs-pros li, .scrs-cons li {
    display: flex;
    margin-bottom: 5px;
    font-size: 15px;
    width: calc(100% - 15px);
}

.scrs-icon {
    font-weight: bold;
    font-size: 15px;
    margin-right: 5px;
}

.scrs-icon::before {
    display: inline-block;
}

.scrs-links {
    display: flex;
    padding: 0 0 20px 0;
}

@media (max-width: 768px) {
    .scrs-links {
        flex-direction: column;
    }
}

.scrs-links p {
    margin-top: 0.3em;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 0;
}

.scrs-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 5px 5px;
    text-decoration: underline!important;
    border-radius: 3px;
    
}

.scrs-links a:hover {
    background-color: var(--ast-global-color-0);
    color: #fff;
}

.scrs-links ul {
    list-style: none;
    margin: 0;
    padding: 5px 30px 0 30px;
}

@media (max-width: 768px) {
    .scrs-links ul {
        padding-left: 0;
		margin-top: 10px;
    }
}

.scrs-links li {
    margin-bottom: 10px;

}