/* --------- /templates/sibalt/css/main.css --------- */
* {
    padding: 0px;
    margin: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/templates/sibalt/css/../fonts/Ubuntu/ubuntu-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'UbuntuBold';
    src: url('/templates/sibalt/css/../fonts/Ubuntu/ubuntu-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

strong, b {
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

input[type='file'] {
    max-width: 100%;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-clear-button {
    display: none;
}

input[type="text"]::-webkit-clear-button,
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

:root {
    --primary-color: #000;
    --secondary-color: #E30075;
    --green-color: #1A8A22;
    --white-color: #fff;
}

html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: var(--primary-color);
    /* background-color: #768FA9; */
    background: linear-gradient(180deg,rgb(196, 213, 255) 0%, rgb(118, 143, 169) 70%);
}

section {
    /* padding-top: 15px; */
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.bg__image {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-image: url(/templates/sibalt/css/../assets/images/main-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.main {
    flex-grow: 1;
}

.container,
.container-2 {
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
}

.link {
    width: fit-content;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px;
    background-color: #E6E6E6;
    --link-arrow: var(--primary-color);
}

.link-2 {
    color: var(--secondary-color);
    text-decoration: underline;
}

.body-overflow {
    /*height: 100dvh;
    overflow: hidden;*/
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: .35s opacity linear;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal__outline {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.57);
}

.modal__content {
    position: relative;
    padding: 40px 20px 20px;
    background-color: var(--white-color);
    border-radius: 5px;
    max-width: 478px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    transition: .14s all linear;
    transform: scale(0.3);
    z-index: 1;
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__title {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.modal__link {
    margin: 20px auto 0;
    width: fit-content;
    display: block;
    font-size: 18px;
}

.modal__wrapper {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.modal__wrapper:last-of-type {
    border-bottom: none;
}

.modal__close {
    width: fit-content;
    padding: 10px 32px;
    background-color: #c1c1c1;
    color: var(--white-color);
    border-radius: 5px;
    margin: 25px auto 0;
}

.modal__close:hover {
    background-color: #b4b4b4;
}

.button-green, .sa_booking_button {
    font-size: 15px;
    margin-top: 10px;
    padding: 7px;
    display: inline;
    color: var(--white-color);
    text-decoration: none;
    outline: none;
    border-width: 0;
    border-radius: 6px;
    box-shadow: 1px 1px 2px #999;
    cursor: pointer;
    background: linear-gradient(#6fec38, #0d8400) #6fec38;
}

.sa_go_booking {
    width: 250px;
    font-size: 18px;
}

.header__top {
    padding-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header__info-button {
    display: none;
}

.header__logo {
    margin-right: auto;
}

.header__info {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 16px;
}

.header__info b {
  font-family: UbuntuBold;
}

.header__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.header__link {
    padding-left: 26px;
    position: relative;
    --icon-color: #8993A6;
}

.header__icon {
    position: absolute;
    left: 0;
    top: 0;
}

.header__bottom-value {
    display: block;
    text-align: end;
    font-size: 12px;
    color: var(--green-color);
}

.header__text-link {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--secondary-color);
    --link-arrow: var(--secondary-color);
}

.header__text-link span {
    text-decoration: dotted underline;

}

.header__text-link.green {
    color: var(--green-color);
    border-bottom: 1px dotted var(--green-color);

}

.header__phone-m img {
    display: none;
}

/* Header Menu - Green bar with dropdowns (from maket) */
.header__menu {
    width: 100%;
    overflow: visible;
    padding-bottom: 15px;
}

.header__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
    background: linear-gradient(to bottom, #00883a 0%, #00ab4a 100%);
    border-radius: 6px;
    padding: 0 20px;
    font-size: 16px;
}

.header__item {
    position: relative;
}

.header__item-button, .header__item-link {
    text-align: center;
    word-break: break-all;
}

.header__item::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translate(50%, -50%);
    background: linear-gradient(to right, #007d36, #29a65f);
    height: 18px;
    width: 2px;
}

.header__item:last-child::after {
    content: none;
}

.header__item-link,
.header__item-button {
    display: block;
    padding: 12px 0;
    color: var(--white-color);
}

.header__item-link:hover,
.header__item-button:hover {
    color: var(--primary-color);
}

.header__inner-list {
    position: absolute;
    width: 220px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 2, 0.3);
    background-color: #F5F5F5;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    flex-direction: column;
    z-index: 100;
    border-radius: 0 0 5px 5px;
    display: none;
}

.header__item-button.active + .header__inner-list {
    display: block;
}

.header__inner-list::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: rotate(180deg) translateX(50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #F5F5F5;
    right: 8px;
    top: -7px;
    width: 12px;
    height: 8px;
    z-index: 10;
}

.header__inner-item {
    border-bottom: 1px dotted #dedede;
}

.header__inner-item:last-child {
    border-bottom: none;
}

.header__inner-link {
    padding: 8px 12px;
    display: block;
    font-size: 16px;
    color: rgb(51, 51, 51);
}

.header__inner-link:hover {
    color: var(--secondary-color);
}

/* Level 3 submenu (sub-submenu) */
.header__subinner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

.header__subinner-item {
    border-bottom: 1px dotted #e8e8e8;
    line-height: 1.2;
}

.header__subinner-item:last-child {
    border-bottom: none;
}

.header__subinner-link {
    padding: 6px 10px;
    display: block;
    font-size: 15px;
    color: rgb(85, 85, 85);
}

.header__subinner-link:hover {
    color: var(--secondary-color);
}

.header__subinner-link::before {
    content: "– ";
    color: var(--primary-color);
}

.box {
    padding: 20px;
    background: var(--white-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box__title {
    margin-bottom: 20px;
}

.box__bottom {
    position: relative;
    left: auto;
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
    bottom: -20px;
    height: 40px;
    margin-top: 10px;
    border-radius: 0 0 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-weight: 700;
    --arrow-top-color: var(--primary-color);
    background-color: #e6e6e6;
}

.box__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box__button {
    display: flex;
    align-items: center;
    gap: 4px;
    --link-arrow: var(--primary-color);
}

.box__button.button-up {
    background-color: #e6e6e600;
}

.title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 22px;
    color: var(--green-color);
    margin: 15px 0;
    font-weight: 700;
}

.footer__content {
    margin-top: 20px;
    padding: 20px 0;
    background-color: var(--green-color);
}

.footer__inner {
    display: flex;
    gap: 40px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__rights {
    color: #aaa;
}

.footer__socials {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.footer__creator {
    color: #aaa;
}

.footer__creator span {
    color: var(--white-color);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__link {
    width: fit-content;
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--white-color);
    position: relative;
    padding-left: 26px;
    --icon-color: #aaa;
    padding-bottom: 10px;
    text-align: left;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__phone .footer__link {
    font-weight: 400;
}

.footer__phone .footer__link, .footer__msg .footer__link {
    padding-bottom: 20px;
}

.footer__msg .back_call {
    cursor: pointer;
}

.footer__icon {
    position: absolute;
    top: 0;
    left: 0;
}

.footer__bottom-value {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    text-align: end;
    color: #c4c4c4;
}

.footer__button-up {
    margin-top: 40px;
    width: 40px;
    margin-left: auto;
    display: block;
}

.footer__button-up span {
    display: none;
}

.footer__bottom {
    padding: 20px 0;
    background-color: var(--white-color);
}

.footer__bottom-list,
.footer__bottom .mod-menu.mod-list.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 10px;
    list-style: none;
    margin: 0 auto;
    max-width: 1400px;
}

.footer__bottom-link,
.footer__bottom a {
    color: var(--secondary-color);
    display: block;
    font-size: 19px;
    padding: 0 10px;
}

.footer__bottom .nav-item,
.footer__bottom li {
    list-style: none;
    text-align: center;
}

.footer__bottom .mod-menu__sub {
    display: contents;
}

.footer__bottom .nav-item.parent,
.footer__bottom .nav-item.deeper {
    display: contents;
}

.footer__bottom .nav-item.parent > a,
.footer__bottom .nav-item.deeper > a {
    display: block;
}

.wf-mediabox-content-ajax iframe {
    visibility: visible !important;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 1280px) {
    .header__list {
        gap: 40px;
    }

    .header__item::after {
        right: -20px;
    }
}

@media (max-width: 900px) {
    .header__list {
        gap: 20px;
    }

    .header__item::after {
        right: -10px;
    }
}

@media (max-width: 768px) {
    body {
        background: #85ADFF;
    }

    .bg {
        display: block;
    }

    .box {
        border-radius: 0;
    }

    .container-2 {
        padding: 0;
    }

    .header {
        position: relative;
        min-height: 350px;
    }

    .header__top {
        padding-bottom: 0;
        padding-left: 10px;
    }

    .header__logo-img {
        width: 170px;
        max-height: 75px;
    }

    .header__menu {
        padding: 0;
        max-height: 0;
        overflow-y: hidden;
        transition: max-height 0.5s linear;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .header__menu.active {
        max-height: 3000px;
    }

    .header__list {
        border: 1px solid #101010;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-top: 0;
        background: #697284;
        border-radius: 0;
    }

    .header__item {
        width: 100%;
        text-align: center;
        border-bottom: #101010 1px solid;
    }

    .header__item:last-child {
        border-bottom: transparent 1px solid;
    }

    .header__item::after {
        display: none;
    }

    .header__item-link,
    .header__item-button {
        font-size: 25px;
        padding: 10px 4px;
    }

    .header__inner-link {
        color: var(--white-color);
        font-size: 20px;
    }

    .header__inner-link:hover,
    .header__item-button:hover,
    .header__item-link:hover {
        color: var(--white-color);
    }

    .header__inner-list {
        max-height: 0;
        display: flex;
        overflow: hidden;
        width: 100%;
        left: 0;
        transform: none;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 200;
        transition: .4s all linear;
    }

    .header__item-button.active + .header__inner-list {
        max-height: 2000px;
    }

    .header__item-button {
        width: 100%;
        border-bottom: 1px solid transparent;
    }

    .header__inner-item,
    .header__item-button.active {
        border-bottom: 1px solid var(--primary-color);
    }

    .header__inner-list::after {
        display: none;
    }

    .header__subinner-list {
        padding-left: 0;
    }

    .header__subinner-link {
        color: var(--white-color);
        font-size: 16px;
        padding: 12px;
    }

    .header__subinner-link:hover {
        color: var(--white-color);
    }

    .header__subinner-item {
        border-top: 1px solid rgba(255,255,255,0.2);
        border-bottom: unset;
    }

    .header__info-button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .header__info-button img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .header__info {
        max-height: 0;
        overflow: hidden;
        margin-top: 228px;
        min-width: calc(100% + 40px);
        flex-direction: column;
        background-color: #BCCCEBDE;
        padding: 0 20px;
        position: relative;
        margin-left: -20px;
        transition: .4s max-height linear;
        font-size: 20px;
    }

    .header__info.active {
        max-height: 600px;
    }

    .header__wrapper:first-child {
        padding-top: 20px;
    }

    .header__wrapper:last-child {
        padding-bottom: 20px;
    }

    .header__bottom-value {
        text-align: center;
        font-size: 16px;
    }

    .header__text-link {
        align-self: center;
    }

    .header__text-link.green {
        margin-top: 20px;
    }

    .header__wrapper {
        align-items: center;
    }

    .header__menu-button {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 44px;
    }

    .header__menu-button span {
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--white-color);
    }

    .footer__content {
        margin-top: 0;
    }

    .footer__wrapper {
        width: 100%;
    }

    .footer__left {
        display: none;
    }

    .footer__button-up {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--white-color);
    }

    .footer__button-up svg {
        flex-shrink: 0;
    }

    .footer__button-up span {
        display: flex;
        text-decoration: dotted underline;
    }

    .header__subinner-link::before {
        display: none;
    }
}

@media (max-width: 550px) {

    .header__logo {
        max-width: calc(100% - 120px);
    }

    .breadcrumb__item {
        font-size: 18px;
    }

    .button-green, .sa_booking_button {
        font-size: 19px;
    }

}

@media (max-width: 420px) {

    .box__button.button-up svg {
        display: none;
    }

}


/* --------- /templates/sibalt/css/pages/catalog.css --------- */
.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog__item a {
    padding: 5px 0 20px 0;
    display: flex;
    gap:  20px;
    border-bottom: 1px solid #e6e6e6;
    text-decoration: none;
    color: inherit;
}

.catalog__image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.catalog__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog__name {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
}

.catalog__preview {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.5;
}

.catalog__bar {
    margin-top: 30px;
    align-items: center;
    gap: 2px;
}
.catalog__bar-button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid #ccc;
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
}
.catalog__bar-button.active {
    background-color: #D87093;
    color: var(--white-color);
}
.catalog__bar-dots {
    margin: 0 5px;
    color: var(--secondary-color);
}

.category-list .page-header h2 {
    color: #009245;
    font-size: 24px;
    margin-bottom: 20px;
}

.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog__item a {
    padding: 20px 0;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.catalog__item a:hover .catalog__name {
    color: var(--primary-color);
}

.catalog__image {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.catalog__text {
    flex: 1;
}

.catalog__name {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.catalog__preview {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.catalog__description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.catalog__empty {
    padding: 40px;
    text-align: center;
    color: #888;
    background: #f9f9f9;
    border-radius: 8px;
}

.catalog__bar {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalog__bar > span {
    margin-right: 10px;
    color: var(--secondary-color);
}

.catalog__bar-button {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.catalog__bar-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.catalog__bar-button.active {
    background-color: #D87093;
    color: #fff;
    border-color: #D87093;
}

.catalog__children {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.catalog__children h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.catalog__children-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.catalog__children-list li {
    list-style: none;
}

.catalog__children-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.catalog__children-list a:hover {
    text-decoration: underline;
}

.category .category-table {
    border-collapse: collapse;
    width: 100%;
}

.category .category-table tr {
    border-bottom: 1px solid #e6e6e6;
}

.category .category-item img {
    margin-top: 15px;
    margin-bottom: 15px;
}

.category .category-item .img-block {
    margin-right: 20px;
}

.category .category-item .img-block,
.category .category-item .all-category-content-block {
    display: inline-block;
    vertical-align: top;
}

.category .category-item .all-category-content-block {
    width: calc(100% - 220px);
    max-width: 500px;
}

.category .category-item .all-category-content-block > .text {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: justify;
}

.category .category-item .all-category-content-block > .text p {
    margin-top: 5px;
}

.category .category-item .all-category-content-block > .title {
    margin-top: 12px;
}

.category .category-item .all-category-content-block > .title a {
    font-family: 'UbuntuBold', sans-serif;
    font-weight: 700;
    color: #e30075;
    font-size: 16px;
    text-decoration: underline;
}

.category .category-item .all-category-content-block > .title a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .catalog {
        padding-top: 0;
    }

    .catalog__item a {
        padding: 10px 0;
        flex-direction: column;
    }

    .catalog__image {
        width: 100%;
        height: 200px;
    }

    .catalog__bar-button {
        width: 50px;
        height: 50px;
    }

    .catalog__item a {
        padding: 15px 0;
        flex-direction: column;
    }

    .catalog__image {
        width: 100%;
        height: 180px;
    }

    .catalog__bar-button {
        width: 45px;
        height: 45px;
    }

    .catalog__name {
        font-size: 16px;
    }

}

/* --------- /templates/sibalt/css/pagination.css --------- */
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

ul.pagination,
.pagination__wrapper ul.pagination {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

ul.pagination .page-item .page-link,
ul.pagination li a,
ul.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
    background: #fff;
}

ul.pagination .page-item:not(.disabled):not(.active) .page-link:hover,
ul.pagination li a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

ul.pagination .page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

ul.pagination .page-item.disabled .page-link {
    color: #999;
    cursor: not-allowed;
    background: #f5f5f5;
}

.icon-angle-double-left::before,
.icon-angle-double-right::before,
.icon-angle-left::before,
.icon-angle-right::before {
    font-family: inherit;
    font-style: normal;
}

.icon-angle-double-left::before { content: '«'; }
.icon-angle-double-right::before { content: '»'; }
.icon-angle-left::before { content: '‹'; }
.icon-angle-right::before { content: '›'; }

.pagination__wrapper,
nav.pagination__wrapper {
    margin-top: 30px;
}
