/* Minification failed. Returning unminified contents.
(140,12): run-time error CSS1038: Expected hex color, found '#FFFF'
 */
.reviews-gallery {
    position: relative;
    background: url(../img/review-bg-new.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}

    .reviews-gallery::before {
        content: "";
        pointer-events: none;
        position: absolute;
        inset: 0;
        background: rgba(32, 131, 214, 0.73);
        z-index: 0;
    }

    .reviews-gallery > * {
        position: relative;
        z-index: 1;
    }

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.reviews-outer {
    position: relative;
    padding: 0 85px;
    box-sizing: border-box;
    overflow: hidden;
    align-items: start;
    padding-bottom: 220px;
}

    .reviews-outer .reviews-slider {
        margin-left: auto;
        margin-right: auto;
        padding-top: 0px !important;
    }

.reviews-slider,
.reviews-slider .slick-list {
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden;
}

    .reviews-slider .slick-slide {
        margin: 0 10px;
        height: auto;
        outline: none;
        float: left;
    }

    .reviews-slider .slick-track {
        margin: 10px 10px 10px 10px;
        display: flex !important;
    }

.review-card {
    width: 322px !important;
    height: 176px !important;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 4px 6px rgba(0,0,0,0.1), 2px 4px 6px rgba(0,0,0,0.1), 0px 6px 8px rgba(0,0,0,0.12);
}


.rc-head {
    flex: 0 0 auto;
    padding: 16px;
    background: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: #B6E2FE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.rc-name {
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
    color: #242424;
    font-size: 18px;
    line-height: 2;
    text-align: left;
}

.rc-date {
    font-weight: 400;
    font-size: 16px;
    opacity: .9;
    color: #1E1E1E99;
    text-align: left;
}

.rc-stars {
    margin-left: auto;
    display: flex;
    gap: 3px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 30px;
}

    .rc-stars span {
        color: #fef76f;
    }

.rc-stars-blue {
    background: #0A0D52;
    color: #FFFF !important;
    padding: 2px 4px 2px 4px;
}

.rc-stars .muted {
    color: rgba(255,255,255,.35);
}

.rc-body {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 9px;
    padding: 0 16px;
    height: calc(210px - 68px);
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    text-align: left;
}

    .rc-body p {
        margin: 0 0 10px;
    }

    .rc-body::-webkit-scrollbar {
        width: 5px;
    }

    .rc-body::-webkit-scrollbar-track {
        background: transparent;
    }

    .rc-body::-webkit-scrollbar-thumb {
        background: #509CD8;
        border-radius: 4px;
    }

        .rc-body::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 140, 255, 0.45);
        }

.rc-body {
    scrollbar-width: thin;
    scrollbar-color: #509CD8 transparent;
}

.rv-arrow {
    position: absolute;
    top: 23%;
    transform: translateY(-50%);
    background: none;
    color: white;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    line-height: 0;
    width: 44px;
    height: 44px;
    transition: color 0.2s ease;
    border-radius: 44px;
    border: 3px solid white;
}

    .rv-arrow:hover {
        border: 4px solid white;
    }

.rv-prev::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M15 18l-6-6 6-6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M15 18l-6-6 6-6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center / contain no-repeat;
    background-color: currentColor;
}

.rv-next::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M9 6l6 6-6 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M9 6l6 6-6 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center / contain no-repeat;
    background-color: currentColor;
}

.rv-prev {
    left: 25px;
}

.rv-next {
    right: 25px;
}


.slick-prev, .slick-next {
    display: none !important;
}


.slick-dotted.slick-slider {
    margin-bottom: 32px;
}

.reviews-slider .slick-dots,
.reviews-slider .slick-dots * {
    box-shadow: none !important;
}

    .reviews-slider .slick-dots li,
    .reviews-slider .slick-dots li button {
        border: 0 !important;
        outline: 0 !important;
        background: transparent !important;
    }

        .reviews-slider .slick-dots li button::before,
        .reviews-slider .slick-dots li button::after,
        .reviews-slider .slick-dots li::before,
        .reviews-slider .slick-dots li::after {
            content: none !important;
            display: none !important;
            opacity: 0 !important;
            box-shadow: none !important;
            border: 0 !important;
        }

.reviews-slider .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -32px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .reviews-slider .slick-dots li {
        margin: 0;
        padding: 0;
        width: 12px;
        height: 12px;
    }

        .reviews-slider .slick-dots li button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d9f8da !important;
            -webkit-appearance: none;
            appearance: none;
            font-size: 0;
            line-height: 0;
            text-indent: 0;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

            .reviews-slider .slick-dots li button:focus,
            .reviews-slider .slick-dots li button:focus-visible,
            .reviews-slider .slick-dots li button:active {
                border: 0 !important;
                outline: 0 !important;
                box-shadow: none !important;
            }

        .reviews-slider .slick-dots li.slick-active button {
            background-color: #5EB761 !important;
            box-shadow: none !important;
            transform: none !important;
        }

.reviews-footer-container {
    width: 100%;
    margin-top: -220px;
    align-content: center;
}

.reviews-add-opinion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 339px;
    height: 68px;
    background-color: #FD6721;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
}

    .reviews-add-opinion-btn:hover {
        background-color: #FD6721;
        transform: translateY(-2px);
    }

    .reviews-add-opinion-btn:active {
        background-color: #FD6721;
        transform: translateY(0);
    }

.reviews-external {
    padding-top: 0px !important;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.reviews-external-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.reviews-external-links-logos {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.reviews-external-links-header {
    flex: 0 0 50%;
    margin: 0;
    text-align: left;
    font-size: 33px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
}

.review-link {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 136px;
    height: 136px;
    border-radius: 136px;
    border: 3px solid white;
    border-color: #B6E2FE;
}

    .review-link span {
        padding-bottom: 15px;
        color: #2083D6;
        text-decoration: underline;
        font-size: 16px;
        font-weight: 600;
    }

    .review-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.review-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
}

@media (max-width: 768px) {
    .reviews-slider .slick-track {
        margin: 10px 0px 10px 0px;
        display: flex !important;
    }

    .reviews-external-links {
        flex-direction: column;
        gap: 15px !important;
        padding-bottom: 20px;
    }

    .reviews-external-links-header {
        padding-top: 20px;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        align-content: center;
        font-family: inherit;
        line-height: 26px;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .reviews-outer {
        padding: 0 20px;
    }

    .rv-arrow {
        display: none !important;
    }

    .review-card {
        width: 100% !important;
        margin: 0 auto;
    }

    .rc-name {
        max-width: 150px;
    }


    .reviews-footer-container {
        height: auto;
        padding: 24px 0;
    }
}


.reviews-cta {
    background: #58B567;
    padding: 48px 16px;
    /*    color: #0e1b12;*/
}

.rc-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.rc-left {
    flex: 1 1 auto;
    color: #0c2a16;
}

.rc-title {
    font-size: 50px;
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 800;
    padding-bottom: 10px;
}

.rc-count {
    font-weight: 500;
    font-size: 50px;
    /*    margin-bottom: 24px;
*/ color: #fff;
    margin-bottom: 40px;
}

    .rc-count strong {
        font-weight: 800;
    }

.rc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    padding: 0 20px;
    background: #E74E4E;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,.12);
    transition: .2s ease;
}

    .rc-btn:hover {
        filter: brightness(.95);
        transform: translateY(-1px);
    }

.rc-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 50px;
    border-radius: 6px;
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    background: #E74E4E;
    color: #fff;
    border-width: 0px;
}

.rc-right {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.rc-card {
    width: 100%;
    max-width: 820px;
    background-color: rgba(255, 255, 255, 0.26);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    height: 285px;
}

.rc-ratingbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rc-badge {
    background: #F85459;
    color: #fff;
    font-weight: 600;
    border-radius: 7px;
    padding: 2px 6px;
    font-size: 18px;
}

.rc-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin: 6px 0 18px;
}

.rc-sites {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.rc-site {
    flex: 0 1 auto;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    text-decoration: none;
    color: #122;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    transition: .2s;
}

    .rc-site:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,.12);
    }

.rc-logo {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
}

    .rc-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@media (max-width: 1024px) {
    .rc-title {
        font-size: 34px;
    }

    .rc-count {
        font-size: 28px;
    }

    .rc-card {
        max-width: 560px;
    }
}

.client-with-answer-opinion {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
}

.client-opinion {
    width: 100%;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    box-shadow: 0px 0px 15.300000190734863px 0px rgba(235, 233, 244, 1);
    margin-bottom: 50px;
    min-height: 180px;
    max-height: 240px;
}

.answer-opinion {
    margin-left: 15%;
    width: 85%;
    border-radius: 5px;
    background: #F5F5F5;
    text-align: left;
    padding: 25px 30px 25px 30px;
    min-height: 140px;
    max-height: 220px;
    margin-top: -20px;
    margin-bottom: 50px;
}

.client-opinion-avatar {
    width: 20%;
    justify-content: center;
    align-items: center;
    display: flex;
}

    .client-opinion-avatar div {
        width: 150px;
        height: 150px;
        background: #CFEDD7;
        border-radius: 50%;
        font-size: 65px;
        font-weight: 600;
        color: white;
        justify-content: center;
        align-items: center;
        display: flex;
    }

.client-opinion-payload {
    width: 80%;
    height: 100%;
    padding: 25px 40px 25px 20px;
    text-align: left;
}

.client-opinion-payload-header {
    display: flex;
    justify-content: space-between;
}

    .client-opinion-payload-header .name {
        font-size: 18px;
        font-weight: 700;
    }

    .client-opinion-payload-header .stars {
        float: right;
        position: relative;
        display: flex;
    }

        .client-opinion-payload-header .stars div {
            margin-right: 3px;
        }

.opinion-stars-img {
    width: 20px;
    height: 20px;
}

.inactive-stars {
    background: rgba(252, 251, 255, 1);
    width: 20px;
    position: relative;
    height: 20px;
}

    .inactive-stars::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        z-index: 1;
        background-color: rgba(255,255,255,0.7);
    }

.opinion-date {
    font-size: 18px;
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 20px;
}

.answer-opinion-header {
    width: 100px;
    height: 25px;
}

.stars img {
    margin-right: 3px;
}

.client-opinion-payload .text {
    word-wrap: break-word;
}

.add-opinion-input textarea::placeholder {
    visibility: hidden;
    color: rgba(189, 189, 189, 1);
}


@media (max-width: 768px) {
    .reviews-cta {
        margin-top: 30px !important;
    }

    .rc-sites {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .rc-site {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .rc-wrap {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .rc-left, .rc-right {
        flex: 1 1 auto;
    }

    .rc-title {
        font-size: 28px;
    }

    .rc-count {
        font-size: 22px;
    }

    .rc-card {
        width: 100%;
        height: 100%;
    }

    .client-with-answer-opinion {
        width: auto;
    }

    .client-opinion {
        min-height: 220px;
        margin-bottom: 30px;
        height: auto;
        max-height: fit-content;
    }

    .client-opinion-avatar {
        width: 100%;
        justify-content: left;
        align-items: flex-start;
        padding: 15px 0 0 15px;
    }

        .client-opinion-avatar div {
            width: 50px;
            height: 50px;
            background: rgba(210, 224, 213, 1);
            font-size: 25px;
        }

    .client-opinion-payload {
        padding: 15px;
    }

    .client-opinion-payload-header {
        font-size: 16px;
    }

        .client-opinion-payload-header .stars div {
            margin-right: 1px;
        }

    .opinion-stars-img {
        width: 15px;
        height: 15px;
    }

    .opinion-date {
        font-size: 16px;
        font-weight: 400;
        padding-bottom: 20px;
    }

    .client-opinion-payload .text {
        width: 320px;
        left: -25%;
        position: relative;
        font-size: 15px;
    }

    .answer-opinion {
        margin-top: -10px;
        margin-bottom: 30px;
        min-height: 150px;
        height: auto;
        max-height: fit-content;
    }
}

.general-rate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    font-size: 32px;
    line-height: 56px;
    color: white;
}

.general-rate-value {
    margin-left: 7px;
    width: 32px;
    color: black;
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-rate-text {
    font-size: 40px;
    color: white;
    font-family: 'Roboto';
}

.general-rate-count {
    font-weight: 600;
}

.general-rate .rc-stars {
    display: inline-flex;
    font-size: 26px;
    align-self: center;
    color: #FEDF6F;
    margin-left: 5px;
    padding: 0 !important;
}

.general-rate-count {
    width: auto;
    color: black;
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 4px 0px 4px;
}

.banner-rate {
    position: fixed;
    top: 65%;
    right: 1%;
    width: 127px;
    height: 127px;
    background-color: white;
    border-radius: 50%;
    border: 3px solid #4CAF50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .banner-rate .text {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        padding: 0;
        margin: 0;
        line-height: 16px;
    }

    .banner-rate .value {
        width: 58px;
        background: #4CAF50;
        color: white;
        font-weight: 600;
        font-size: 32px;
        line-height: 36px;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1px;
    }

    .banner-rate .stars {
        display: flex;
        font-size: 26px;
        margin: 1px 0;
    }

.mobile-hide {
    display: inline-flex;
}

.desktop-hide {
    display: none;
}

.general-rate-header.mobile-hide {
    display: block;
    font-size: 46px;
    font-weight: 600;
    padding-bottom: 25px;
    color: white;
    text-transform: uppercase;
}

.reviews-index .general-rate-header {
    font-size: 36px !important;
    line-height: 32px;
}

    .reviews-index .general-rate-header.mobile-hide {
        padding: 0 !important;
    }

.reviews-index .general-rate.mobile-hide {
    padding: 0 !important;
}

.reviews-index-container {
    justify-self: center;
    background-color: #2491EC;
    padding: 20px 50px 0px 50px;
    text-align: center;
}

.main-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.banner-calculator,
.banner-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    font-size: 31px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 44px;
    margin-bottom: 25px;
    justify-items: center;
    align-items: center;
}

.banner-links {
    padding-top: 20px;
    display: flex;
    gap: 44px;
}

.banner-review-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 106px;
    height: 106px;
    border-radius: 106px;
    background-color: white;
}

    .banner-review-link span {
        color: #2083D6;
        text-decoration: underline;
        font-size: 13px;
        font-weight: 600;
        text-transform: none !important;
    }

    .banner-review-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.banner-review-icon {
    padding-top: 5px;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
}

.reviews-add-opinion-btn-block {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .reviews-index-container {
        background-color: transparent;
        padding: 0 !important;
    }

    .reviews-index .container {
        margin-top: 0 !important;
    }

    .general-rate.desktop-hide {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.2;
        padding-top: 10px;
        color: #454546;
    }

        .general-rate.desktop-hide > div {
            display: flex;
            align-items: center;
            align-content: center;
            gap: 6px;
            margin-bottom: 4px;
        }

        .general-rate.desktop-hide .general-rate-value {
            margin-left: -5px !important;
            margin-top: -5px;
            color: white;
            font-weight: bold;
            font-size: 16px;
            text-align: left;
            background-color: #5AB762;
            border-radius: 8px;
            line-height: 24px;
        }

        .general-rate.desktop-hide .general-rate-count {
            display: inline-block;
            font-weight: 800;
            font-size: 28px;
            border-radius: 8px;
            padding: 0px 8px 1px 8px;
        }

        .general-rate.desktop-hide .rc-stars {
            margin-top: -5px;
            color: #fef76f;
            font-size: 16px;
            margin-left: 4px;
            margin-right: 2px;
            font-weight: bold;
        }

    .banner-rate {
        top: 68%;
        width: 70px;
        height: 70px;
        border: 3px solid #4CAF50;
        right: 5%;
    }

        .banner-rate .text {
            padding-top: 3px;
            font-size: 12px;
            line-height: 8px;
        }

        .banner-rate .value {
            width: 23px;
            height: 14px;
            font-size: 11px;
            margin-top: 0px;
        }

        .banner-rate .stars {
            font-size: 10px;
            margin: 1px 0;
            gap: 2px;
        }

    .mobile-hide {
        display: none !important;
    }

    .desktop-hide {
        display: inline-flex !important;
    }

    .general-rate-header.desktop-hide {
        display: flex;
        flex-direction: column;
        font-size: 28px;
        font-weight: 600;
        line-height: 32px;
    }

        .general-rate-header.desktop-hide span {
            text-align: center;
        }

    .main-banner {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .banner-title {
        font-size: 20px;
        padding: 0 !important;
    }

    .banner-review-link {
        padding-top: 15px;
        width: 100px;
        height: 100px;
        border-radius: 100px;
        justify-content: flex-start;
    }

        .banner-review-link span {
            padding-top: 8px;
            line-height: 1;
        }


    .reviews-gallery .about-page-hide {
        display: none !important;
    }

    .reviews-index .reviews-page-hide {
        display: none !important;
    }

    .reviews-gallery .general-rate.reviews-page-hide {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        font-weight: 700;
        padding-top: 25px;
        padding: 25px 0px 20px 0px;
        color: white;
        line-height: 1 !important;
    }

    .reviews-gallery .general-rate-header {
        font-size: 26px !important;
    }

    .reviews-gallery .general-rate.reviews-page-hide > div {
        display: flex;
        align-items: center;
        align-content: center;
        padding: 0px !important;
        margin: 0;
    }

    .reviews-gallery .general-rate.reviews-page-hide span {
        font-size: 18px !important;
        line-height: 18px;
    }

    .reviews-gallery .general-rate.reviews-page-hide .general-rate-value {
        color: black;
        font-weight: bold;
        font-size: 18px !important;
        text-align: right;
        padding-left: 10px;
        background-color: transparent;
    }

    .reviews-gallery .general-rate.reviews-page-hide .general-rate-count {
        display: inline-block;
        font-weight: 800;
        font-size: 18px;
    }

    .reviews-gallery .general-rate.reviews-page-hide .rc-stars {
        color: #fef76f;
        font-size: 18px;
        font-weight: bold;
    }

    .general-rate-header.reviews-page-hide {
        display: block !important;
        font-size: 24px;
        font-weight: 700;
    }

    .reviews-gallery {
        padding: 0px;
    }

        .reviews-gallery .reviews-footer-container {
            margin-top: 0px;
        }

        .reviews-gallery .reviews-add-opinion-btn-block {
            display: flex;
            justify-content: center;
            padding-bottom: 0px !important;
        }

        .reviews-gallery .reviews-add-opinion-btn {
            width: 90%;
            height: 54px;
            font-size: 20px;
        }

    .review-link {
        padding-top: 15px;
        width: 100px;
        height: 100px;
        border-radius: 100px;
        justify-content: flex-start;
    }

        .review-link span {
            padding-bottom: 5px;
            color: #2083D6;
            text-decoration: underline;
            font-size: 11px;
            font-weight: 600;
        }

    .review-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        vertical-align: bottom !important;
    }

    .banner-review-icon {
        padding: 0;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        vertical-align: bottom !important;
    }

    .banner-links {
        padding-top: 20px;
        display: flex;
    }

}
