body, html {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
a {
    cursor: pointer;
}
.flex, .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hr {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.vc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vb {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/**  FAQ styles start **/
.category-faq {
  margin-top: 86px;
  margin-bottom: 70px;
}
.category-faq-title {
   font-weight: bold;
    font-size: 4rem;
    line-height: 4.7rem;
}
.category-faq-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 65px;
}
.category-faq-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}
.category-faq-item svg {
    position: absolute;
    right: 24px;
    top: calc(50% - 10px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
.category-faq-item:hover svg path {
    stroke: #FFCC00;
}
.category-faq-item .question {
   cursor: pointer;
    font-weight: 600;
    background: #F6F6F6;
    padding: 25px 55px 20px 24px;
    border-radius: 7px 7px 0 0;
}
.category-faq-item .question::marker {
  content: "";
}
.category-faq-item .answer {
       background: #F6F6F6;
    padding: 0 24px 25px 24px;
    border-radius: 0 0 7px 7px;
}
@media all and (max-width: 767px) {
  .category-faq-row {
    margin-top: 40px;
  }
  .category-faq-title {
    font-size: 3rem;
    line-height: 3.7rem;
   }
}
/**  FAQ styles end **/

/**  Rating styles start **/

.rating {
    margin-top: 20px;
    width: 100%;
}
.rating .rating-star {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
}
.rating .rating-star:before,
.rating .rating-star:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.rating .rating-star:before {
    background: #F1F0F0;
}
.rating .rating-star:after {
    background: #FFCC00;
}

.rating .rating-star.full:before,
.rating .rating-star.active:before{
    display: none;
}
.rating .rating-star.full:after,
.rating .rating-star.active:after{
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating .rating-star.half:before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%);

}
.rating .rating-star.half:after {
    clip-path: polygon(50% 0%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating .rating-star.null:before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.rating .rating-star.null:after {
    display: none;
}
.rating .rating-score,
.rating .rating-count {
    display: inline-block;
}
.rating .rating-count {
    margin-left: 5px;
    color: #808080;
    font-size: 16px;
}
.rating .rating-score {
    margin-right: 8px;
    font-weight: bold;
    font-size: 26px;
}
.review-form {
    width: 80%;
    border: solid 1px #E5E5E5;
    padding: 20px;
    margin: 30px 0 0 0;
}
.review-form-wrap {
    width: 100%;
}
.review-form textarea {
    margin-top: 20px;
    width: 100%;
    height: 100px;
    border: solid 1px #E5E5E5;
    border-radius: 10px;
    resize: none;
    padding: 10px;
    font-size: 15px;
    line-height: 1.3;
}
.review-form textarea:focus {
    border-color: #282828;
}
.review-form textarea&::-webkit-input-placeholder,
.review-form textarea&:-moz-placeholder,
.review-form textarea&::-moz-placeholder,
.review-form textarea&:-ms-input-placeholder,
.review-form textarea&::placeholder {
    font-family: "Raleway", sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3;
    color: #808080;
}
.review-form .rating--grade {
    width: auto;
}
.review-form .rating--grade .rating-star {
    width: 32px;
    height: 32px;
    margin-right: 5px;
}
.review-form a {
    display: inline-block;
    color: #ffffff;
    border: 1px solid #FFCC00;
    background: #FFCC00;
    border-radius: 37px;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.1rem;
    text-align: center;
    cursor: pointer;
    margin: 15px 0 0 0;
}
.review-form a:hover {
    background: #FDB700;
}
.rating-btn {
    color: #808080;
    text-decoration-line: underline;
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 10px;
    text-align: center;
    display: block;
    width: 100%;
    cursor: pointer;
}
.rating-btn:hover {
    color: #4B4B4B;
}
.review-form-alert {
    width: 100%;
    text-align: center;
    font-size: 22px;
}
/**  Rating styles end **/


/**  Specialists and Faq styles start **/

.specialist__content,
.specialist__list,
.faq__content,
.faq__list {
    margin-top: 49px;
    font-size: 2rem;
    line-height: 3.34rem;
}
.specialist__content p,
.faq__content p {
    margin-bottom: 20px;
}
.specialist__content a,
.faq__content a {
    color: #FDB700;
    font-weight: 500;
    text-decoration: underline;
}
.specialist__content a:hover,
.faq__content a:hover {
    text-decoration: none;
    color: #4B4B4B;
}
.specialist__content p:last-child,
.faq__content p:last-child {
    margin-bottom: 0;
}
.specialist__content-left {
    width: calc(100% - 400px);
    padding-right: 80px;
}
.specialist__content-right {
    width: 400px;
}
.specialist__cover,
.specialist__list-item .photo {
    background: no-repeat top center;
    background-size: cover;
    border-radius: 50%;
}
.specialist__cover {
    display: block;
    width: 400px;
    height: 400px;
}
.specialist__list-item {
    width: 100%;
    margin-bottom: 40px;
}
.specialist__list-item .photo {
    display: inline-block;
    width: 300px;
    height: 300px;
    margin-right: 30px;
}
.specialist__list-item .text {
    width: calc(100% - 330px);
}
.specialist__list-item h5 {
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 20px;
}
.specialist__list-item .more {
    display: block;
    text-align: right;
    margin-top: 20px;
    text-transform: uppercase;
    color: #808080;
    text-decoration-line: underline;
    font-size: 1.6rem;
}
.specialist__list-item .more:hover {
    color: #4B4B4B;
    text-decoration: none;
}
.faq__content hr {
    display: block;
    width: 100%;
    height: 10px;
    background: transparent;
    color: transparent;
    border: none;
}
.faq__list {
    max-width: 100%;
}
.faq__list-item {
    width: 100%;
    font-size: 1.8rem;
    line-height: 3.34rem;
    padding-bottom: 8px;
    border-bottom: solid 2px #060606;
    margin-bottom: 30px;
    font-weight: 600;
}
.faq__list-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 1280px) {
    .specialist__content,
    .specialist__list,
    .faq__content,
    .faq__list {
        font-size: 1.4rem;
        line-height: 2.3rem;
    }
}
@media all and (max-width: 1400px) {
    .specialist__content-left,
    .specialist__content-right {
        width: 100%;
    }
    .specialist__content-left {
        order: 2;
        padding-right: 0;
    }
    .specialist__content-right {
        order: 1;
        margin-bottom: 40px;
    }
    .specialist__cover {
        margin: 0 auto;
    }
}
@media all and (max-width: 767px) {
    .specialist__content,
    .faq__content,
    .faq__list {
        margin-top: 30px;
    }
    .specialist__content-right {
        margin-bottom: 30px;
    }
    .specialist__cover,
    .specialist__list-item .photo {
        width: 280px;
        height: 280px;
    }
    .specialist__list-item .photo {
        margin: 0 auto;
    }
    .specialist__list-item .text {
        width: 100%;
        margin-top: 30px;
    }
    .specialist__list-item h5 {
        font-size: 2rem;
        line-height: 3rem;
    }
    .specialist__list-item .more {
        font-size: 1.3rem;
    }
    .faq__content hr {
        height: 5px;
    }
    .faq__list-item {
        font-size: 1.8rem;
        line-height: 2.8rem;
        padding-bottom: 5px;
    }
}
/**  Specialists and Faq styles end **/

/**  Cookie alert styles start **/
.cookie-alert {
    position: fixed;
    z-index: 99999;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 30px;
    background: #000000;
    transition: ease-in-out 1.5s;
    -webkit-transition: ease-in-out 1.5s;
    -moz-transition: ease-in-out 1.5s;;
}
.cookie-alert.visible {
    bottom: 0;
}
.cookie-alert p {
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: #ffffff;
}
.cookie-alert .close-btn {
    display: inline-block;
    color: #ffffff;
    border: 1px solid #FFCC00;
    background: #FFCC00;
    border-radius: 37px;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-left: 30px;
    cursor: pointer;
}
.cookie-alert .close-btn:hover {
    background: #FDB700;
}
.cookie-alert p a {
    color: #FFCC00;
    text-decoration: underline;
}
@media all and (max-width: 1160px) {
    .cookie-alert {
        padding: 20px;
    }
    .cookie-alert p {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }
}
@media all and (max-width: 940px) {
    .cookie-alert {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .cookie-alert p {
        width: 100%;
    }
    .cookie-alert .close-btn {
        display: block;
        margin-top: 10px;
        border-radius: 32px;
        padding: 12px 22px;
        font-size: 1.4rem;
        line-height: 1.6rem;
        margin-left: 0;
    }
}
/**  Cookie alert styles end **/

/**  Dropdown content start **/

.page-title {
    width: 100%;
    margin-bottom: 50px;
}

.dropdown-content {
    width: 100%;
}
.dropdown-content .category-section__wrapper-left {
    max-width: calc(100% - 500px);
    width: calc(100% - 500px);
}
.dropdown-btn {
    color: #282828;
    border: none;
    border-radius: 37px;
    background: #DEDEDE;
    padding: 0 30px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 60px;
    transition: 0.2s;
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
}
.dropdown-btn span {
    display: inline-block;
    margin-left: 10px;
    transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
}
.dropdown-btn.active span {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.category__subcategories--more {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
}
.category__subcategories--more svg {
    display: inline-block;
    width: 12px;
    margin-left: 10px;
}
@media all and (max-width: 940px) {
    .dropdown-content .category-section__wrapper-left {
        max-width: 100%;
        width: 100%;
    }
    .category-section__wrapper-right {
        max-width: 100%;
        min-width: 100%;
    }
}
@media all and (max-width: 768px) {
    .page-title {
        margin-bottom: 30px;
    }
    .dropdown-btn {
        padding: 0 20px;
        font-size: 1.5rem;
        line-height: 50px;
        margin-bottom: 0;
    }
    .category__subcategories-item {
        padding: 10px 15px;
        font-size: 1.4rem;
        line-height: 1.2;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .category-section #table {
        margin-top: 30px;
    }
    .category-section .table__header {
        font-size: 2.4rem;
        line-height: 2.8rem;
    }
    .category-section .table__filter-line {
        margin-top: 30px;
    }
}
/**  Dropdown content end **/

/** Category pagination (wp-pagenavi) start **/

.category-section .wp-pagenavi {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin-top: 59px;
    float: none;
    text-align: center;
    color: #333;
}

.category-section .wp-pagenavi a,
.category-section .wp-pagenavi span {
    font-size: 1.8rem;
    line-height: 2.1rem;
    font-feature-settings: "pnum" on, "lnum" on;
    border: none;
    background: none;
    padding: 0;
    margin: 0 24px;
    color: #9E9E9E;
    text-decoration: none;
}

.category-section .wp-pagenavi a:hover {
    color: #FFCC00;
}

.category-section .wp-pagenavi span.current {
    color: #282828;
    font-weight: 600;
}

.category-section .wp-pagenavi span.extend {
    color: #9E9E9E;
}

.category-section .wp-pagenavi a.previouspostslink,
.category-section .wp-pagenavi a.nextpostslink {
    font-size: 0;
    position: relative;
    background: url("/assets/theme/cial/img/pagination.svg") no-repeat;
    width: 15px;
    height: 15px;
    margin: 0 17.5px;
    display: inline-block;
}

/* Hide disabled arrows (rendered as span, not link) */
.category-section .wp-pagenavi span.previouspostslink,
.category-section .wp-pagenavi span.nextpostslink {
    display: none;
}

.category-section .wp-pagenavi a.previouspostslink {
    transform: scale(-1, 1);
}

@media all and (max-width: 768px) {
    .category-section .wp-pagenavi {
        margin-top: 30px;
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .category-section .wp-pagenavi a,
    .category-section .wp-pagenavi span {
        margin: 0 12px;
        font-size: 1.6rem;
        line-height: 1.9rem;
    }
    .category-section .wp-pagenavi a.previouspostslink,
    .category-section .wp-pagenavi a.nextpostslink {
        margin: 0 12px;
    }
}

/** Category pagination (wp-pagenavi) end **/

/** Category table range filters (DataTables) start **/

/* Select2 core CSS isn't bundled; hide the original select when enhanced. */
.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.category-section .table__filter-line {
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 20px;
}

.category-section .table__filter-dropdown {
    flex: 0 0 auto;
    white-space: nowrap;
    align-self: center;
}

/* Give some air before the table */
.category-section #table .table__filter {
    margin-bottom: 18px;
}

.category-section #table .indiv_tablepress {
    margin-top: 6px;
}

/* Compact select2 dropdown for "Показать по" */
.category-section #table .table__filter-dropdown .dataTables_length label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-section #table .table__filter-dropdown .select2-container {
    width: auto !important;
    min-width: 0;
}

.category-section #table .table__filter-dropdown .select2-container--default .select2-selection--single {
    background: transparent;
    border: none;
    padding-right: 18px;
}

.category-section #table .table__filter-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 0;
}

.category-section #table .table__filter-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0;
    left: auto;
    top: 2px;
    width: 14px;
}

.category-section #table .table__filter-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: auto;
    right: 0;
    top: 6px;
}

.pagination-class.select2-dropdown {
    min-width: 0 !important;
    width: auto !important;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    padding: 0;
    overflow: hidden;
    background-clip: padding-box;
}

.pagination-class .select2-search--dropdown {
    display: none;
}

.pagination-class .select2-results > .select2-results__options {
    min-width: 0 !important;
}

.pagination-class .select2-results__options {
    padding: 0 !important;
    background: #FFFFFF;
    overflow-x: hidden;
}

.pagination-class .select2-results__option {
    margin: 4px 8px;
    padding: 10px 12px;
    text-align: center;
    border-radius: 8px;
}

.pagination-class .select2-results__option--highlighted.select2-results__option--selectable {
    background: #F1F0F0;
    color: #282828;
}

.category-section .table__filter-line .table__range-filters {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    gap: 14px 16px;
}

.category-section .table__filter-line .table__range-input {
    width: 110px;
}


.category-section .table__range-group--select {
    min-width: 200px;
}

.category-section .table__range-group--select .table__range-select {
    width: 220px;
    padding: 8px 12px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.2rem;
    background: #FFFFFF;
    color: #282828;
}

.category-section .table__range-group--select .select2-container {
    margin-left: 0;
    width: 220px !important;
}

.category-section .table__range-group--select .select2-container--default .select2-selection--single {
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 36px 0 12px;
}

.category-section .table__range-group--select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    right: 10px;
    top: 0;
    width: 16px;
}

.category-section .table__range-group--select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-top-color: #282828;
    border-width: 8px 7.5px 0 7.5px;
    top: 50%;
    margin-top: -4px;
    left: auto;
    right: 0;
}

.category-section .table__range-group--select .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 40px;
    color: #282828;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Chevron name dropdown: no search, clear background layer, spacing */
.filter-class--name.select2-dropdown {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    padding: 0;
    overflow: hidden;
    background-clip: padding-box;
}

.filter-class--name .select2-results,
.pagination-class .select2-results {
    background: #FFFFFF;
}

.filter-class--name .select2-results {
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14) !important;
    overflow: hidden;
}

/* Ensure table dropdowns stay above the table */
.tablepress-dd.select2-dropdown {
    z-index: 20000 !important;
    border: 1px solid #D0D0D0 !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
    background-clip: padding-box !important;
    overflow: visible !important;
}

.tablepress-dd .select2-results__options {
    padding: 0 !important;
    margin: 0 !important;
    background: #FFFFFF !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14) !important;
}

.tablepress-select2.select2-container--open {
    z-index: 20001 !important;
}

/* Prevent brief flash of the static filter label before JS replaces it */
.js .category-section .table__filter-line > p {
    display: none;
}

/* Remove checkbox decoration from the chevron name dropdown */
.filter-class--name .select2-results__option::before,
.filter-class--name .select2-results__option--selected::before {
    display: none !important;
    content: none !important;
}

.filter-class--name .select2-search--dropdown {
    display: none;
}

.filter-class--name .select2-results__options {
    padding: 8px 0 !important;
    background: #FFFFFF;
    scrollbar-width: thin;
    scrollbar-color: #E5E5E5 #FFFFFF;
}

.filter-class--name .select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.filter-class--name .select2-results__options::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.filter-class--name .select2-results__options::-webkit-scrollbar-thumb {
    background: #E5E5E5;
    border-radius: 3px;
}

.filter-class--name .select2-results__option {
    margin: 4px 8px;
    padding: 10px 12px !important;
    margin-bottom: 0;
    border-radius: 8px;
    padding-left: 12px !important;
    text-indent: 0;
    position: static;
}

.filter-class--name .select2-results__option--highlighted.select2-results__option--selectable {
    background: #F1F0F0;
    color: #282828;
}

/* Remove black strips from mCustomScrollbar if applied; remove focus outline */
.filter-class--name .mCSB_scrollTools .mCSB_draggerRail,
.filter-class--name .mCSB_scrollTools {
    background-color: transparent !important;
}

.filter-class--name.select2-container--open,
.tablepress-select2.select2-container--open {
    outline: none !important;
}

.category-section .table__filter-wrapper:empty {
    display: none;
    margin: 0;
}

.category-section .table__range-filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 20px;
    align-items: flex-end;
}

.category-section .table__range-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-section .table__range-label {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2rem;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #808080;
}

.category-section .table__range-inputs {
    display: flex;
    gap: 10px;
}

.category-section .table__range-input {
    width: 120px;
    padding: 8px 12px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.2rem;
    background: #FFFFFF;
    color: #282828;
    -moz-appearance: textfield;
}

.category-section .table__range-input::-webkit-outer-spin-button,
.category-section .table__range-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.category-section .table__range-input::placeholder {
    color: #808080;
}

.category-section .table__range-input:focus {
    outline: none;
    border-color: #424242;
}

.category-section .table__range-actions {
    display: flex;
    gap: 10px;
}

.category-section .table__range-btn {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2rem;
    font-feature-settings: "tnum" on, "lnum" on;
    border-radius: 26px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    text-align: center;
}

.category-section .table__range-btn--apply {
    background: #282828;
    color: #FFFFFF;
}

.category-section .table__range-btn--apply:hover {
    background: #1D1D1D;
}

.category-section .table__range-btn--reset {
    background: #F1F0F0;
    color: #282828;
}

.category-section .table__range-btn--reset:hover {
    background: #DEDEDE;
}

@media all and (max-width: 768px) {
    .category-section .table__range-filters {
        gap: 14px 12px;
        align-items: stretch;
    }
    .category-section .table__range-input {
        width: 100px;
    }
    .category-section .table__range-actions {
        width: 100%;
    }
    .category-section .table__range-btn {
        width: 100%;
        text-align: center;
    }
}

/** Category table range filters (DataTables) end **/
