.form.greenForm {
    border-radius: 10px;
    background-color: #00b129;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.form_title {
    font-weight: 500;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 120%;
    color: #fff;
}

.form_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 457px;
    width: 100%;
}

.select_list {
    position: absolute;
    width: 100%;
    bottom: -120px;
    z-index: 1000;
    left: 0;
    height: 130px;
    background: #ffffff;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    font-weight: 300;
    font-size: clamp(12px, 3vw, 16px);
    line-height: 120%;
    display: none;
    overflow: auto;
}

.select_list::-webkit-scrollbar {
    width: 6px;
}

.select_list::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
}

.select_list::-webkit-scrollbar-thumb {
    background: #00B129;
    border-radius: 10px;
}

.select_list::-webkit-scrollbar-thumb:hover {
    background: #00701b;
}

.select_list.show {
    display: flex;
}

.form_input {
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    outline: none;
    border: 2px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.form_input:focus {
    border: 2px solid var(--yellow, #ffe100);
}

.select_list-item {
    cursor: pointer;
    font-size: 12px;
}

.select_list-item:hover {
    font-weight: 500;
}

.btn_form {
    border-radius: 10px;
    padding: 15px 20px;
    background: #ffe100;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    max-width: 186px;
    width: 100%;
}
.opinionCardButton {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #000;
    border: 1px solid #00b129;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fff;
}
.postsAside{
    display: flex;
    flex-direction: column;
    @media (max-width: 900px) {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    @media (max-width: 700px) {
        padding-top: 60px;
        flex-direction: column;
        gap: 20px;
    }
}
.expertCardItem {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 6px 10px 10px -10px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    @media (max-width: 600px) {
        margin-bottom: 0;
    }
}

.expertCardItem-wrapper {
    display: flex;
    align-items: start;
    gap: 20px;
    @media (max-width: 600px) {
        gap: 10px;
    }
}

.expertCardItem-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.expertCardItem-photoBlock {
    justify-items: center;
}

.expertCardItem-photo {
    height: 130px;
    border-radius: 50%;
    width: 130px;
    object-fit: cover;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000;
}

.expertCardItem-reviews {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #00b129;
}

.expertCardItem-fio {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #00b129;
    margin-bottom: 10px;
    @media (max-width: 600px) {
        font-size: 16px;
    }
}

.expertCardItem-spec {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    @media (max-width: 600px) {
        font-size: 14px;
    }
}

.expertCardItem-exp {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.expertCardItem-expYear {
    background: #e7fbec;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    place-content: center;
    text-align: center;
}

.expertCardItem-expText {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
}

.expertCardItem-seviceBlock {
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    max-width: 180px;
    width: 100%;
    margin-bottom: 20px;
}
.expertCardItem-seviceBlock.mobile_show {
    display: none;
    @media (max-width: 600px) {
        display: flex;
        width: 100%;
        max-width: none;
        margin-bottom: 0;
    }

}
.expertCardItem-seviceBlock.mobile_fade {
    display: flex;
    @media (max-width: 600px) {
        display: none;
    }
}

.expertCardItem-seviceText {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #000;
}

.expertCardItem-seviceCount {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #00b129;
}

.expertCardItem-consultation {
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    color: #000;
}
.expertCardItem-consultation.mobile_show {
    display: none;
    @media (max-width: 600px) {
        display: flex;
        align-items: center;
        gap: 5px;
        width: 100%;
    }
}
.expertCardItem-consultation.mobile_fade {
    display: block;
    @media (max-width: 600px) {
        display: none;
    }
}

.expertCardItem-consultation span {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #000;
}

.expertCardItem-consultationItem.greenText {
    color: #00b129;
}

.expertCardItem-infoText {
    margin-bottom: 20px;
    @media (max-width: 600px) {
        margin-bottom: 0;
    }
}

.expertCardItem-separator {
    border: 1px solid rgba(0, 0, 0, 0.3);
    max-width: 150px;
    width: 100%;
    place-self: center;
}

.expertCardItemCompany {
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media (max-width: 1100px) {
        grid-row-start: 3;
    }
    @media (max-width: 600px) {
        gap: 12px;
    }
}
.expertCardItemCompany.route_search {
    display: none;
}

.expertCardItemCompany-top {
    display: flex;
    align-items: center;
    gap: 20px;
    @media (max-width: 600px) {
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }
}

.expertCardItemSocial {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    @media (max-width: 1100px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    @media (max-width: 600px) {
        gap: 12px;
    }
}

.expertCardItemSocial-write {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #000;
    border: 1px solid #00b129;
    border-radius: 10px;
    padding: 15px 0;
    text-align: center;
    transition: 0.5s;
    max-width: 156px;
    width: 100%;
    @media (max-width: 1100px) {
        max-width: none;
        width: 100%;
    }
}

.expertCardItemSocial-write:hover {
    background: #00b129;
    border-color: transparent;
    color: #ffffff;
}

.expertCardItemSocialBlock {
    display: flex;
    align-items: center;
    gap: 50px;
    @media (max-width: 1100px) {
        grid-row-start: 2;
        grid-column-start: 1;
        grid-column-end: 3;
        justify-content: center;
    }
}

.expertCardItemSocialBlock-services {
    border-radius: 10px;
    padding: 15px 20px;
    background: #00b129;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
    line-height: 100%;
    text-align: center;
    color: #fff;
    max-width: 156px;
    width: 100%;
    transition: 0.5s;
    @media (max-width: 1100px) {
        max-width: none;
        width: 100%;
    }
}

.expertCardItemSocialBlock-services:hover {
    border: 1px solid #00b129;
    border-radius: 10px;
    background: #fff;
    color: #23272e;
}

.expertCardItemCompany-logo {
    max-width: 150px;
    width: 100%;
}

.expertCardItemCompany-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expertCardItemCompanyInfo-nameText {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #000;
}

.expertCardItemCompanyInfo-nameTitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #00b129;
}

.expertCardItemCompanyInfo-address {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    @media (max-width: 600px) {
        text-align: start;
    }
}

.expertCardItemCompany-bot {
    display: flex;
    align-items: center;
    gap: 12px;
    @media (max-width: 600px) {
        flex-direction: column;
    }
}

.expertCardItemCompanyPrice {
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 10px;
    max-width: 265px;
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #000;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 5px;
    @media (max-width: 1100px) {
        max-width: none;
        width: 100%;
    }
}

.expertCardItemCompanyPrice span {
    font-size: 14px;
    color: #00b129;
}

.expertCardItemCompanyFirstCt {
    border: 1px solid #00b129;
    border-radius: 10px;
    padding: 10px;
    max-width: 265px;
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #000;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 5px;
    @media (max-width: 1100px) {
        max-width: none;
        width: 100%;
    }
}

.expertCardItemCompanyFirstCt span {
    font-size: 14px;
    color: #00b129;
}

.side-opinion-item {
    transition: 0.5s;
    list-style: none;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.side-opinion-item:hover {
    box-shadow: 0 11px 30px 0 rgba(0, 0, 0, 0.25);
}

.side-opinion-item-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
    border-radius: 10px;
}

.opinionWrapperBlock {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opinionWrapperBlock.mobile_show {
    @media (max-width: 980px) {
        display: flex;
    }
}

.opinionWrapperBlock.mobile_fade {
    @media (max-width: 980px) {
        display: none;
    }
}

/*material */
.material {
    padding-bottom: 70px;
    background: #f0f4f8;
}

.materialContent {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    border-radius: 25px 25px 0 0;
    padding: 22px 40px;
    padding-bottom: 20px;
}

.materialTitleGroup {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.materialSpan {
    width: max-content;
    background: #00b1290f;
    border-radius: 55px;
    padding: 7px 15px;
    font-size: 12px;
}

.materialPostsOpinion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.materialTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.asideOpinion {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: start;
    height: fit-content;
    padding-bottom: 70px;
    transition: overflow 0.3s ease;
}

.asideWrapper,
.vidgetsWrapper,
.vidgetsWrapperQuestion {
    top: 30px;
    position: sticky;
    max-height: 100vh;
    align-self: start;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item,
.link {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #333 !important;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
}

.link {
    color: var(--main-black);
}

.asideMobile {
    display: none;
}

.materialPostsTitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    margin-bottom: 20px;
}
.material .materialPostsTitle{
    max-width: 450px;
}

.materialPostsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.greyFon {
    background: #f0f4f8;
}

.baseFindPostImage.basePage{
    display: none;
    @media (max-width: 980px) {
        display: block;
    }
}
.baseFindPost.basePage{
    @media (max-width: 768px) {
        padding: 10px;
    }
}
.baseFindPost.basePage .baseFindPostText{
    @media (max-width: 600px) {
        gap: 10px;
    }
}
.material-wrapper--opinion {
    display: grid;
    grid-template-columns: 1fr 530px;
    gap: 20px;
    z-index: 1;
    @media (max-width: 980px) {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    @media (max-width: 768px) {
        padding-top: 30px;
    }
}

.material-wrapper--opinion.basePage{
    @media (max-width: 980px) {
        flex-direction: column;
    }
}
.material-info.basePage{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.material-wrapper--question--material {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 20px;
    background-color: #fff;
    z-index: 1;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 15px 15px 15px;
}

.bannerBtns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.materialExperts {
    background-color: #fff;
}

.expertsMap {
    padding: 20px;
    height: 360px;
    border-radius: 16px !important;
}

.moreOpinion {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.note {
    color: #00000099;
    font-size: 12px;
    padding-left: 25px;
    margin-bottom: 30px;
}

.opinionCardInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    @media (max-width: 600px) {
        flex-wrap: wrap-reverse;
    }
}

.regionSelect {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.opSteps {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 12px;
    gap: 20px;
    align-items: flex-start;
}

.opSteps ul {
    padding-left: 30px;
}

.opSteps,
.opStepsBtn {
    flex-direction: column;
    gap: 20px;
}

.opStepsBtn {
    align-items: flex-start;
}

.activeIcon {
    border: 1px solid #00b129;
}

.materialBtn,
.materialBtnQuestion {
    display: none;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.materialBtnIcon {
    display: inline-block;
    align-items: center;
    gap: 5px;
    width: 14px;
    height: 14px;
}

.materialPostsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pagination {
    justify-content: flex-end;
}

.loader {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.choiceExpert {
    display: flex;
    flex-direction: column;
}

.topExperts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: #f0f4f8;
    border-radius: 16px;
}

.topExpertsTitle {
    font-size: 20px;
    font-weight: 500;
}

.topExpertsRegion {
    cursor: pointer;
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
}

.topExpertsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top {
    border-color: var(--green) !important;
}

.topExpertsListItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topExpertsListItem:nth-child(-n + 3) .topExpertsListItemNumber {
    font-weight: 700;
}

.topExpertsListItem:nth-child(3) {
    padding-bottom: 25px;
    border-bottom: 2px solid #b9bdc4;
}

.videoBlogOpinion {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 8px;
}

.videoScrollTextOpinion {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: #fff;
    padding: 10px 12px;
    box-sizing: border-box;
    z-index: 2;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.videoScrollSlideOpnion {
    position: relative;
    flex-shrink: 0;
    border-radius: 30px;
}

.videoScrollSlideOpnion::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.4) 80%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.videoScrollIframeOpinion {
    height: 400px;
    border-radius: 30px;
}

.videoTitleVidgest {
    color: #fff;
}

.videoAuthorOpinion {
    color: #ddd;
}

.topExpertsLink {
    color: #2457fe;
    font-size: 14px;
    border-bottom: 1px solid #2457fe;
    width: max-content;
    z-index: 10;
}

.simpleBarVidgets {
    width: 100%;
    max-height: 100vh;
}

.materialBtn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    width: 160px;
    height: 40px;
    justify-content: center;
    background: transparent;
}

.categoryBtn {
    display: none;
    background: var(--green);
    color: #fff;
}

.vidgetBtn {
    display: none;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.vidgetBtn:hover {
    background: #f0f4f8;
}

.vidgetBtn:active {
    background: #f0f4f8;
}

.materialPostsContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.readTitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    margin-bottom: 24px;
}

.readTitle.mobile_show {
    @media (max-width: 980px) {
        display: block;
    }
}

.readTitle.mobile_fade {
    @media (max-width: 980px) {
        display: none;
    }
}

.materialPostsText ul,
.materialPostsText ol {
    padding-left: 25px;
    margin: 6px 0 20px;
}

.materialPostsText li {
    list-style-type: disc;
}

.materialPostsText a {
    color: #2457fe;
}

.materialPostsText p {
    margin: 6px 0 10px;
}

.materialPostsText h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 128%;
    margin: 3px 0 15px;
}

.materialPostsText h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 128%;
    margin: 30px 0 10px;
}

.materialPostsText h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 128%;
    margin: 6px 0 20px;
}

.materialPostsText img {
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
    object-fit: contain;
    margin: 0 auto;
}

.materialPostsImage {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.materialPostsImage img {
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    margin: 0 auto;
}

.materialPostBody {
    overflow: hidden;
}

.materialPostImageFloat {
    float: left;
    margin: 0 20px 20px 0;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.materialShareLink {
    padding: 15px 30px;
    border-radius: 6px;
    background-color: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    transition: 0.3s ease;
    height: max-content;
    white-space: nowrap;
    text-align: center;
}

.materialShareLink:active {
    background-color: #047a1f;
}

.materialPostsBtn {
    display: flex;
    align-items: center;
    width: max-content;
    margin-left: auto;
    gap: 5px;
    padding: 6px 12px !important;
}

.materialPostsBtn svg {
    width: 14px;
}

.materialPostsTitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 128%;
    margin: 3px 0 15px;
}

.closeVidget,
.closeAside,
.vidgetsGroup,
.closeVidgetQuestion,
.vidgetsGroupQuestion,
.closeVidgetMaterial {
    display: none;
}

/* qestion */

.material-wrapper--question {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    z-index: 1;
}

.questionsSearch {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.questionsSearch .inputContainer {
    width: 100%;
    border: 1px solid #f2f2f2 !important;
    border-radius: 8px;
}

.questionsTitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    color: #000;
}

.materialPostsOpinion-cards{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.topExpertsicon {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topExpertsNumber {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    text-decoration: underline;
}

.topExpertsGroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topExpertsGroup--question {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #00b12933;
}

.expertStatistics {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #f0f4f8;
    border-radius: 16px;
}

.topExpertsStatistics {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.questions {
    margin-bottom: 50px;
}

.materialFooter {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.materialFooterTitle {
    font-size: 24px;
    font-weight: 500;
}

.questions-subtitle {
    padding-top: 20px;
    margin-bottom: 40px;
}

.questions-title {
    margin-bottom: 20px;

}

.questionInput {
    border-radius: 8px;
    padding: 10px 20px;
    background: #f0f4f8;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 20px;
    border: none;
    outline: none;
}

.questionTextarea {
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 10px 20px;
    background: #f0f4f8;
    border: none;
    outline: none;
    resize: none;
}

.questionInput::placeholder,
.questionTextarea::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.3);
}

.qestionHomeTimeGroup {
    display: flex;
    align-items: center;
}

.questionFormWrapper {
    display: flex;
    flex-direction: column;
}

.quesFormBottomText-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.quesForm {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding-bottom: 40px;
    @media (max-width: 980px) {
        grid-template-columns: 1fr;
    }
}

.quesFormBottomWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (max-width: 980px) {
        flex-direction: column-reverse;
        gap: 12px;
    }
}

.quesFormBottomText {
    @media (max-width: 980px) {
        justify-content: space-between;
        display: flex;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
    }
}

.quesFormBottomBtn {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #000;
    border: 1px solid #00b129;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fff;
    @media (max-width: 980px) {
        width: 100%;
    }
}

.materialFooterText {
    font-size: 16px;
    font-weight: 400;
}

.questions .material-wrapper--question {
    padding: 40px 0;
}

.questionFormList {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    opacity: 0.8;
    margin-bottom: 20px;
}

.questionFormRegisterWrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 424px;
    @media (max-width: 980px) {
        max-width: none;
        width: 100%;
    }
}

.questionFormLabel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #000;
}

.questionFormLabel .questionInput {
    margin-bottom: 0;
}

.questionFormRegisterSend {
    border-radius: 10px;
    padding: 15px 20px;
    background: #00b129;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
    margin-top: 20px;
    max-width: 200px;
    width: 100%;
}

@media (max-width: 1400px) {
    .vidgetBtn {
        display: flex;
    }

    .vidgets {
        width: 100%;
    }

    .topExpertsListItem:nth-child(3) {
        border-bottom: none;
    }
}

@media (max-width: 980px) {
    .asideWrapper {
        position: fixed;
        display: flex;
        flex-direction: column;
        gap: 30px;
        top: 0;
        left: 0;
        transform: translateX(100%);
        cursor: pointer;
        background: #fff;
        padding: 20px;
        transition: transform 0.3s ease-in-out,
        opacity 0.3s ease,
        visibility 0.3s;
        width: 100%;
        z-index: 99999;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }


    .material-wrapper--question {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .material-wrapper--question {
        padding: 15px;
    }

    .activeAside {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: 100vh;
    }

    .closeAside {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .asideOpinion {
        width: 100%;
    }

    .choiceExpert {
        display: grid;
    }

    .categoryBtn {
        display: flex;
    }

    .materialBtnQuestion {
        display: flex;
    }

    .vidgetsWrapperQuestion {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease-in-out,
        opacity 0.3s ease,
        visibility 0.3s;
        display: flex;
        padding: 20px;
        background: #fff;
        overflow: auto;
        z-index: 9999999;
    }

    .closeVidgetQuestion {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .vidgetsGroupQuestion {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .vidgetsWrapperQuestion.activeVidget {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: 100vh;
    }

    .material-wrapper--question--material {
        grid-template-columns: 1fr;
    }

    .closeVidgetMaterial {
        display: flex;
    }
}

@media (max-width: 768px) {
    .material {
        margin-bottom: 15px;
    }

    .materialContent {
        padding: 20px;
    }


    .choiceExpert {
        display: flex;
    }

    .questionsSearch {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .materialSpan {
        width: 100%;
    }

    .topExpertsListItem {
        align-items: baseline;
        gap: 10px;
    }
}

.mobile_show {
    display: none;
}
