/*stars  Survey form*/
.survey-wrapper {
    margin: 60px auto;
    border-radius: 0.5rem;
    font-family: ui-sans-serif, system-ui, Helvetica, Arial, sans-serif;
    font-weight: 400;
    -webkit-box-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
    box-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
}

.survey-wrapper h1 {
    color: #2f5e3d;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    margin-bottom: 16px;
}

.survey-wrapper h1 + p {
    color: #6b7280;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0;
}

.survey-wrapper h2 {
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-top: 40px;
    color: #1f2937;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.survey-wrapper .section-block {
    padding: 0 40px;
}

.survey-wrapper .section-block .star-ratings:last-child p {
    margin-bottom: 0;
}

.survey-wrapper .survey-header {
    background-color: #f4f9f4;
    padding: 30px;
    border-bottom: 1px solid #e5e7eb;
    border-top: 4px solid #2f5e3d;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.survey-wrapper .survey-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.survey-wrapper .survey-name .cf7-col {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
}

.survey-wrapper .star-ratings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.survey-wrapper .star-ratings .cf7-col {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
}

.survey-wrapper .star-ratings .cf7-col > label {
    margin-bottom: -10px;
}

.survey-wrapper .star-ratings .cf7-col p {
    margin-top: -10px;
}

/*stars*/
.survey-wrapper .cf7-stars {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.survey-wrapper .cf7-stars input {
    display: none;
}

.survey-wrapper .cf7-stars .star {
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 0;
    color: transparent;
    -webkit-text-stroke: 2px #ccc;
    text-stroke: 2px #ccc;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    font-family: Arial, sans-serif;
}

.survey-wrapper .cf7-stars .star:hover {
    -webkit-text-stroke: 2px #68b445;
    text-stroke: 2px #68b445;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.survey-wrapper .cf7-stars input:checked ~ .star {
    color: #68b445;
    -webkit-text-stroke: 2px #68b445;
    text-stroke: 2px #68b445;
}

.survey-wrapper .cf7-stars input:checked ~ .star:hover {
    color: #68b445;
}

/*accordion*/
.survey-wrapper .accordion-container-form {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin: 30px 40px;
    overflow: hidden;
}

.survey-wrapper .accordion-header-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px;
    background: #f3f4f6;
}

.survey-wrapper .accordion-container-form .chevron {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.survey-wrapper .accordion-container-form .chevron::before {
    content: "";
    position: absolute;
    top: 125%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.survey-wrapper .accordion-container-form.active .chevron::before {
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    -ms-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
}

.survey-wrapper .accordion-content-form {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease, padding 0.3s ease;
    -o-transition: max-height 0.35s ease, padding 0.3s ease;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.survey-wrapper .accordion-container-form .accordion-title h3 {
    font-size: 16px;
    color: #2f5e3d;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    margin-bottom: 0;
}

.survey-wrapper .accordion-container-form .accordion-title .description {
    color: #6b7280;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
    margin-left: 50px;
    margin-top: -15px;
}

.survey-wrapper .accordion-title h3::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-image: url('../img/message-square-plus-grey.svg');
    background-color: #e5e7eb;
    border-radius: 50%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    vertical-align: text-top;
}

.survey-wrapper .accordion-container-form.active .accordion-title h3::before {
    background-image: url('../img/message-square-plus.svg');
    background-color: #2f5e3d;
}

.survey-wrapper .accordion-content-form .commitment {
    font-size: 14px;
    line-height: 21px;
    color: #4b5563;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 20px;
}

.survey-wrapper .accordion-content-wrapper .improve-areas .wpcf7-checkbox {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
    gap: 10px;
}

.survey-wrapper .accordion-content-wrapper .improve-areas .wpcf7-checkbox label {
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 0.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.survey-wrapper .accordion-content-wrapper .improve-areas .wpcf7-checkbox label:hover {
    cursor: pointer;
    background-color: #f9fafb;
}

.survey-wrapper .accordion-content-wrapper .improve-areas .wpcf7-checkbox span {
    font-size: 14px;
    line-height: 21px;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

/* checkbox*/
.wpcf7-form .wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.survey-wrapper .accordion-container-form .wpcf7-form .wpcf7-list-item-label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.survey-wrapper .accordion-container-form.active .accordion-content-form {
    max-height: 2000px;
    padding: 0 30px;
}

.survey-wrapper .cf7-col p span:first-child {
    padding-right: 60px;
}

.survey-wrapper .cf7-col p span,
.survey-wrapper .text-agree {
    color: #9ca3af;
    font-size: 11px;
    line-height: 14px;
}

.survey-wrapper .cf7-col > label,
.survey-wrapper .additional-feedback label,
.survey-wrapper .accordion-content-wrapper .checkbox-area > label,
.survey-wrapper .accordion-content-wrapper p > label {
    color: #374151;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
}

.survey-wrapper textarea {
    width: 100%;
}

.survey-wrapper .submit-survey {
    margin: 5px auto 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#7ab859), to(#059669));
    background-image: -o-linear-gradient(left, #7ab859, #059669);
    background-image: linear-gradient(to right, #7ab859, #059669);
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 4px;
    min-width: 258px;
    overflow: hidden;
    height: 54px;
    max-height: 54px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform;
    outline: none;
}

.survey-wrapper .submit-survey:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-image: url('../img/lucide-send.svg');
    background-repeat: no-repeat;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    vertical-align: text-bottom;
}

.survey-wrapper .wpcf7-spinner {
    display: none;
}

.survey-wrapper .submit-survey:hover {
    background-image: -webkit-gradient(linear, left top, right top, from(#10b981), to(#047857));
    background-image: -o-linear-gradient(left, #10b981, #047857);
    background-image: linear-gradient(to right, #10b981, #047857);
    cursor: pointer;
    -webkit-transform: translate3d(3px, -3px, 0);
    transform: translate3d(3px, -3px, 0);
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.survey-wrapper .submit-survey:hover:after {
    -webkit-transform: translate(3px, -3px);
    -ms-transform: translate(3px, -3px);
    transform: translate(3px, -3px);
}

.survey-wrapper p:has(.submit-survey) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
}

.survey-wrapper .text-agree {
    padding: 10px 40px 40px;
    text-align: center;
}

/* input и textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    border: 1px solid #e5e7eb;
    padding: 12px 10px;
    font-size: 12px;
    border-radius: 0.3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 18px;
    background-color: #f9fafb;
    width: 100%;
}

/* placeholder */
.wpcf7 input[type="text"]::-webkit-input-placeholder, .wpcf7 input[type="email"]::-webkit-input-placeholder, .wpcf7 input[type="tel"]::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
    color: #9ca3af;
    opacity: 1;
}
.wpcf7 input[type="text"]::-moz-placeholder, .wpcf7 input[type="email"]::-moz-placeholder, .wpcf7 input[type="tel"]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
    color: #9ca3af;
    opacity: 1;
}
.wpcf7 input[type="text"]:-ms-input-placeholder, .wpcf7 input[type="email"]:-ms-input-placeholder, .wpcf7 input[type="tel"]:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
    color: #9ca3af;
    opacity: 1;
}
.wpcf7 input[type="text"]::-ms-input-placeholder, .wpcf7 input[type="email"]::-ms-input-placeholder, .wpcf7 input[type="tel"]::-ms-input-placeholder, .wpcf7 textarea::-ms-input-placeholder {
    color: #9ca3af;
    opacity: 1;
}
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.wpcf7 input[type="text"]::-webkit-input-placeholder,
.wpcf7 input[type="email"]::-webkit-input-placeholder,
.wpcf7 input[type="tel"]::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder {
    color: #9ca3af;
}

.wpcf7 input[type="text"]:-ms-input-placeholder,
.wpcf7 input[type="email"]:-ms-input-placeholder,
.wpcf7 input[type="tel"]:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder {
    color: #9ca3af;
}

/*faq*/
.faq-section-blog.st-section{
    max-width: 800px;
}

.faq-section-blog h2.section-title{
    margin-bottom: 30px;
}

.page-content-box .faq-section-blog a{
    text-decoration: none;
}

.faq-section-blog .tab-link + p,
.faq-section-blog  .tab-content-box + p,
.faq-section-blog  .tab-text + p {
    display: none;
}

.faq-section-blog .tab-link-content p{
    padding-top: 5px;
}


/*off  card*/
 .tabs .tabs__caption li:last-child,
 .product-box .shop-button,
 .product-box .rating-box{
    display: none;
}

.provides-services{
    color: #5a5d59;
    text-align: center;
    padding: 20px 24px;
    margin: 0;
}


@media screen and (max-width: 770px) {
    .survey-wrapper .star-ratings,
    .survey-wrapper .survey-name {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .survey-wrapper .star-ratings {
        gap: 0;
    }

    .survey-wrapper .accordion-content-wrapper .improve-areas .wpcf7-checkbox {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .survey-wrapper .section-block .star-ratings p,
    .survey-wrapper .section-block .star-ratings:last-child p {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    .survey-wrapper .section-block,
    .survey-wrapper .accordion-container-form.active .accordion-content-form {
        padding: 0 20px;
    }

    .survey-wrapper .survey-header {
        padding: 30px 20px;
    }

    .survey-wrapper .accordion-container-form {
        margin: 30px 20px;
    }

    .survey-wrapper .accordion-header-form {
        padding: 20px 10px;
    }

    .survey-wrapper .submit-survey {
        min-width: 235px;
    }
}

@media screen and (max-width: 413px) {
    .survey-wrapper .optional-text {
        margin-left: 45px;
        margin-top: -20px;
        display: block;
    }

    .survey-wrapper .accordion-container-form .accordion-title .description {
        margin-top: 0;
    }

    .survey-wrapper .accordion-header-form {
        padding: 20px 8px;
    }
}