.news-panel {
    margin-bottom: 24rem;
}

.news-content {
    position: relative;
}

.news-content-loader {
    display: flex;
    padding: 48rem 0;
    justify-content: center;
    position: absolute;
    inset: -24rem;
    -webkit-backdrop-filter: blur(10rem);
    backdrop-filter: blur(10rem);
}

.news-content:not(.loader) .news-content-loader {
    display: none;
}

.news-content-loader-elem {
    position: sticky;
    top: 100rem;
    width: 80rem;
    height: 80rem;
    flex: none;
}

.news-content-loader-elem div {
    display: block;
    position: absolute;
    width: 80rem;
    height: 80rem;
    border: 4rem solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.news-content-loader-elem div:nth-child(1) {
    animation-delay: -0.45s;
}

.news-content-loader-elem div:nth-child(2) {
    animation-delay: -0.3s;
}

.news-content-loader-elem div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.news-filter {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32rem;
}

.news-filter-items {
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 480rem - 32rem);
    gap: 18rem;
}

.news-filter-item {
    flex: none;
}

.news-filter-item-param {
    position: relative;
}

.news-filter-item-param-value {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    height: 64rem;
    background-color: #110424;
    border-radius: 64rem;
    padding: 0 32rem;
    font-size: 20rem;
    transition-duration: 350ms;
    transition-property: background, box-shadow;
    z-index: 2;
    cursor: pointer;
    gap: 12rem;
}

.news-filter-item-param-value:hover {
    background-color: #2A0959;
}

.news-filter-item-param.has .news-filter-item-param-value {
    background-color: #2A0959;
}

.news-filter-item-has {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 12rem;
    background-color: #49F2D6;
    right: 4rem;
    top: 6rem;
    transition-duration: 350ms;
    transition-property: opacity, visibility;
}

.news-filter-item-param:not(.has) .news-filter-item-has {
    opacity: 0;
    visibility: hidden;
}

.news-filter-item-param.open .news-filter-item-param-value {
    background-color: #2A0959;
    box-shadow: 0 0 30rem 0 #77D8C040 inset;
}

.news-filter-item-param-modal {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 8rem;
    width: max-content;
    /* max-width: 371rem; */
    transition-duration: 350ms;
    transition-property: opacity, visibility, transform;
    z-index: 1;
}

.news-filter-item-param:not(.open) .news-filter-item-param-modal {
    opacity: 0;
    visibility: hidden;
}

.news-filter-item-param-val-check {
    position: relative;
    width: 20rem;
    height: 20rem;
    transition-duration: 350ms;
    transition-property: opacity, visibility;
}

.news-filter-item-param-content label input:not(:checked)+.news-filter-item-param-val .news-filter-item-param-val-check {
    opacity: 0;
    visibility: hidden;
}

.news-filter-item-param-val-check:after {
    content: '';
    border: 1.5rem solid #fff;
    border-top: none;
    border-left: none;
    width: 7rem;
    height: 13rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
}

.news-filter-item-param-content {
    background-color: #110424;
    border-radius: 16rem;
    box-shadow: 0 0 32rem 0 rgb(119 216 192 / 10%);
    overflow: hidden;
    transition-duration: 350ms;
    transition-property: transform;
}

.news-filter-item-param:not(.open) .news-filter-item-param-content {
    transform: translatey(-8rem);
}

.news-filter-item-param-content label {
    display: block;
    cursor: pointer;
}

.news-filter-item-param-content label input {
    display: none;
}

.news-filter-item-param-val {
    display: flex;
    align-items: center;
    padding: 14rem 20rem;
    transition-duration: 350ms;
    transition-property: background;
    gap: 16rem;
}

.news-filter-item-param-content label input:checked+.news-filter-item-param-val {
    background-color: #2A0959;
}

.news-filter-item-param-content label:first-child .news-filter-item-param-val {
    padding-top: 20rem;
}

.news-filter-item-param-content label:last-child .news-filter-item-param-val {
    padding-bottom: 20rem;
}

.news-filter-item-param-val-text {
    font-size: 20rem;
    line-height: 130%;
    width: 100%;
}

.news-filter-item-theme-icon {
    width: 20rem;
    margin-right: 8rem;
    flex: none;
    display: none;
}

.news-filter-item-arrow {
    width: 14rem;
    transition-duration: 350ms;
    transition-property: transform;
    flex: none;
}

.news-filter-item-param.open .news-filter-item-arrow {
    transform: rotateX(180deg);
}

.news-search {
    position: relative;
    width: 100%;
    max-width: 480rem;
    margin-right: auto;
    flex: none;
}

.news-search input {
    border: 1rem solid #2A0959;
    border-radius: 5rem;
    height: 64rem;
    font-size: 20rem;
    padding-left: 60rem;
    padding-right: 16rem;
    transition-duration: 350ms;
    transition-property: border-color;
}

.news-search input:focus {
    border-color: #7417E5;
}

.news-search svg {
    position: absolute;
    top: 50%;
    left: 20rem;
    width: 20rem;
    transform: translatey(-50%);
    pointer-events: none;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 49rem;
    flex-wrap: wrap;
}

.news-item {
    /* flex: 1 1 calc((100% / 4) - 49rem); */
    position: relative;
    background-color: #2A095999;
    border-radius: 24rem;
    transition-duration: 350ms;
    transition-property: background, box-shadow;
    cursor: pointer;
    z-index: 0;
    padding: 8rem;
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* max-width: 430px; */
}

.news-item:hover {
    background-color: #2A0959;
    box-shadow: 0 0 64rem 0 #77D8C040 inset;
}

.news-item-image {
    border-radius: 16rem;
}

.news-item-info {
    /* height: 352px; */
    width: 100%;
}

.news-item-theme {
    margin-top: 20rem;
    font-size: 14rem;
    line-height: 150%;
    color: #49F2D6;
    text-transform: uppercase;
    /* height: 55px;
    max-height: 55px; */
    overflow: hidden;
    padding: 16rem;
}


.news-item-name {
    padding: 16rem;
}

.news-item-date {
    /* margin-top: auto; */
    /* align-self: self-end; */
    font-size: 14rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -3%;
    padding: 8rem 16rem 12rem;
}


.news-item-left {
    display: flex;
    flex-direction: column;
    padding: 24rem 20rem 24rem 24rem;
    width: 100%;
    max-width: 432rem;
    gap: 24rem;
    flex: none;
}

.news-item-datetime {
    font-family: var(--font-mono);
    font-size: 24.2rem;
    line-height: 120%;
    letter-spacing: -3%;
}

.news-item-hall {
    font-size: 13rem;
    line-height: 150%;
    color: #FFFFFF80;
    text-transform: uppercase;
}

.news-item-center {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24rem 0;
    gap: 24rem;
}

.news-item-center:last-child {
    padding-right: 24rem;
}

.news-item-name {
    font-family: var(--font-mono);
    font-size: 24.2rem;
    line-height: 120%;
    letter-spacing: -3%;
    margin: auto 0;
}


.news-item-right {
    display: flex;
    flex-direction: column;
    padding: 24rem 24rem 24rem 20rem;
    gap: 24rem;
    flex: none;
}

.news-item-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 14rem;
    letter-spacing: 4%;
    text-transform: uppercase;
    min-width: 225rem;
    height: 48rem;
    border-radius: 48rem;
    background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
    box-shadow: 0 0 32rem 0 #77D8C0 inset;
}

.news-item-gdf-logo {
    margin-top: auto;
}

.news-item-gdf-logo img {
    max-width: 148rem;
    margin-left: auto;
}

.news-item-gdf-bg {
    position: absolute;
    inset: 0 0 0 auto;
    max-width: 500rem;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.news-empty {
    font-size: 20rem;
    line-height: 140%;
    text-align: center;
    padding: 50rem 0;
    grid-column: span 4;
}

.news-filter-item-param-header {
    display: none;
    align-items: center;
    height: 40rem;
    padding: 0 72rem 0 16rem;
    margin: 16rem 0;
}

.news-filter-item-param-header-title {
    font-family: var(--font-mono);
    color: #49F2D6;
    font-size: 16rem;
    letter-spacing: 4%;
    width: 100%;
    text-transform: uppercase;
}

.news-filter-item-param-header-close {
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inset: 16rem 16rem auto auto;
    background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
    cursor: pointer;
}

.news-filter-item-param-header-close img {
    width: 20rem;
}

.news-filter-item-param-checkbox {
    position: relative;
}

.news-filter-item-param-checkbox label {
    display: block;
    cursor: pointer;
}

.news-filter-item-param-checkbox label input {
    display: none;
}

.news-filter-item-param-checkbox-val {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    height: 64rem;
    background-color: #110424;
    border-radius: 64rem;
    padding: 0 32rem;
    font-size: 20rem;
    gap: 12rem;
    transition-duration: 350ms;
    transition-property: background, box-shadow;
    z-index: 2;
    cursor: pointer;
}

.news-filter-item-param-checkbox-val:hover {
    background-color: #2A0959;
}

.news-filter-item-param.has .news-filter-item-param-checkbox-val {
    background-color: #2A0959;
}

.news-filter-item-param-checkbox-val:active {
    background-color: #2A0959;
    box-shadow: 0 0 30rem 0 #77D8C040 inset;
}

.news-filter-item-param-checkbox-check {
    position: relative;
    width: 20rem;
    height: 20rem;
    border: 1rem solid #49F2D6;
    background-color: #2A0959;
    border-radius: 4rem;
    transition-duration: 350ms;
    transition-property: background;
    flex: none;
}

.news-filter-item-param-checkbox-check:after {
    content: '';
    border: 2.5rem solid #2A0959;
    border-top: none;
    border-left: none;
    width: 7rem;
    height: 13rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
}

.news-filter-item-param.has .news-filter-item-param-checkbox-check {
    background-color: #49F2D6;
}

.news-item-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    -webkit-backdrop-filter: blur(10rem);
    backdrop-filter: blur(10rem);
    padding: 32rem;
    text-align: center;
    white-space: nowrap;
    z-index: 110;
    overflow: auto;
    scrollbar-width: none;
    overscroll-behavior: none;
    transition-property: opacity, visibility;
    transition-duration: 350ms;
}

.news-item-modal:not(.open) {
    opacity: 0;
    visibility: hidden;
}

.news-item-modal:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
    overflow: hidden;
}

.news-item-modal-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    max-width: 1000rem;
    width: 100%;
    white-space: normal;
    border-radius: 24rem;
    padding: 40rem 32rem;
    background-color: #2A0959;
    transition-duration: 350ms;
    overflow: hidden;
}

.news-item-modal:not(.open) .news-item-modal-content {
    transform: translatey(-32rem);
}

.news-item-modal-content-close {
    position: absolute;
    width: 48rem;
    height: 48rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inset: 16rem 16rem auto auto;
    background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
    cursor: pointer;
}

.news-item-modal-content-close img {
    width: 20rem;
}

.news-item-modal-header {
    padding-right: 64rem;
}

.news-item-modal-theme {
    font-size: 14rem;
    line-height: 150%;
    color: #49F2D6;
    text-transform: uppercase;
    margin-bottom: 16rem;
}

.news-item-modal-name {
    font-family: var(--font-mono);
    font-size: 25.2rem;
    line-height: 120%;
    letter-spacing: -3%;
    max-width: 650rem;
}

.news-item-modal-header-props {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin-top: 24rem;
}

.news-item-modal-header-prop {
    display: flex;
    align-items: center;
    gap: 18rem;
    font-family: var(--font-mono);
    font-size: 20rem;
    line-height: 120%;
    letter-spacing: -3%;
}

.news-item-modal-header-prop svg {
    width: 18rem;
    flex: none;
}

.news-item-modal-text {
    font-size: 17.8rem;
    margin-top: 32rem;
    line-height: 140%;
    padding-right: 64rem;
}

.news-item-modal-text p:not(:first-child) {
    margin-top: 16rem;
}

.news-item-modal-text p:not(:last-child) {
    margin-bottom: 16rem;
}

.news-item-modal-text b {
    font-weight: 500;
}

.news-item-modal-text u {
    text-decoration: underline;
}

.news-item-modal-text i {
    font-style: italic;
}

.news-item-modal-text li:not(:first-child) {
    margin-top: 10rem;
}

.news-item-modal-text ul {
    padding-left: 16rem;
}

.news-item-modal-text ul:not(:first-child) {
    margin-top: 20rem;
}

.news-item-modal-text ul:not(:last-child) {
    margin-bottom: 20rem;
}

.news-item-modal-text ol {
    padding-left: 20rem;
}

.news-item-modal-text ol:not(:first-child) {
    margin-top: 20rem;
}

.news-item-modal-text ol:not(:last-child) {
    margin-bottom: 20rem;
}

.news-item-modal-text h1,
.news-item-modal-text h2,
.news-item-modal-text h3,
.news-item-modal-text h4,
.news-item-modal-text h5,
.news-item-modal-text h6 {
    font-family: var(--font-mono);
    font-size: 20rem;
    line-height: 120%;
    letter-spacing: -3%;
}

.news-item-modal-text h1:not(:first-child),
.news-item-modal-text h2:not(:first-child),
.news-item-modal-text h3:not(:first-child),
.news-item-modal-text h4:not(:first-child),
.news-item-modal-text h5:not(:first-child),
.news-item-modal-text h6:not(:first-child) {
    margin-top: 32rem;
}

.news-item-modal-text h1+ul:not(:first-child),
.news-item-modal-text h2+ul:not(:first-child),
.news-item-modal-text h3+ul:not(:first-child),
.news-item-modal-text h4+ul:not(:first-child),
.news-item-modal-text h5+ul:not(:first-child),
.news-item-modal-text h6+ul:not(:first-child) {
    margin-top: 16rem;
}

.news-item-modal-text h1+ol:not(:first-child),
.news-item-modal-text h2+ol:not(:first-child),
.news-item-modal-text h3+ol:not(:first-child),
.news-item-modal-text h4+ol:not(:first-child),
.news-item-modal-text h5+ol:not(:first-child),
.news-item-modal-text h6+ol:not(:first-child) {
    margin-top: 16rem;
}

.news-item-modal-broadcast {
    margin-top: 40rem;
}

.news-item-modal-broadcast-title {
    font-family: var(--font-mono);
    font-size: 20rem;
    line-height: 120%;
    letter-spacing: -3%;
    margin-bottom: 20rem;
}

.news-item-modal-broadcast-iframe {
    position: relative;
    height: 0;
    padding-top: 56%;
    border-radius: 16rem;
    overflow: hidden;
}

.news-item-modal-broadcast-iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.news-item-modal-team {
    margin-top: 40rem;
}

.news-item-modal-team-title {
    font-family: var(--font-mono);
    font-size: 20rem;
    line-height: 120%;
    letter-spacing: -3%;
    margin-bottom: 20rem;
}

.news-item-modal-team-list {
    display: flex;
    flex-direction: column;
    gap: 24rem;
}

.news-item-modal-team-item {
    display: flex;
    gap: 16rem;
}

.news-item-modal-team-photo {
    width: 120rem;
    flex: none;
}

.news-item-modal-team-photo-image {
    height: 0;
    position: relative;
    background: linear-gradient(318.23deg, #2F065D -29.38%, #7F05EF 106.67%);
    border-radius: 32rem;
    overflow: hidden;
    padding-top: 125%;
    z-index: 0;
}

.news-item-modal-team-photo-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    z-index: -1;
}

.news-item-modal-team-content {
    width: 100%;
    padding-top: 8rem;
}

.news-item-modal-team-name {
    font-family: var(--font-mono);
    font-size: 18.8rem;
    line-height: 120%;
    letter-spacing: -3%;
    color: #49F2D6;
}

.news-item-modal-team-name span {
    text-transform: uppercase;
}

.news-item-modal-team-position {
    font-family: var(--font-mono);
    margin-top: 8rem;
    font-size: 16.8rem;
    letter-spacing: -3%;
    line-height: 120%;
}

.news-item-modal-team-text {
    font-family: var(--font-mono);
    margin-top: 8rem;
    font-size: 16.8rem;
    line-height: 120%;
    letter-spacing: -3%;
    color: #FFFFFF80;
}

.news-detail {
    padding-top: 70px;
    padding-bottom: 36rem;
    background: linear-gradient(234.06deg, #280550 18.17%, rgba(40, 5, 80, 0) 89.69%), #000000;
}

.news-detail-header {
    display: flex;
    gap: 50rem;
    justify-content: center;
}

.news-detail-gap {
    /* flex: 1 1 calc((100% / 2) - 50rem); */
}

.news-detail-header-left {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.news-detail-date-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32rem;
}

.news-detail-social {
    margin-left: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16rem;
}

.news-detail-social-title {
    font-size: 14rem;
    text-transform: uppercase;
    color: #FFFFFF;
}

.news-detail-social-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20rem;
}

.news-detail-social-item {
    width: 24px;
    cursor: pointer;
    transition: .3s;
}

.news-detail-social-item:hover {
    opacity: .7;
}

.news-detail-bottom-share {
    margin: 94rem auto 0;
    max-width: 910px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.breadcrumbs {
    width: 100%;
    font-weight: 400;
    font-size: 16rem;
    line-height: 20rem;
    letter-spacing: -1%;
    color: rgb(255, 255, 255, 0.5);
    margin-top: 39rem;
}

.breadcrumbs-mobile {
    display: none;
    width: 100%;
    font-weight: 400;
    font-size: 16rem;
    line-height: 20rem;
    letter-spacing: -1%;
    color: rgb(255, 255, 255, 0.5);
    margin-top: 39rem
}

.breadcrumbs span,
.breadcrumbs-mobile span {
    color: rgb(255, 255, 255, 1);
}

.breadcrumbs a {
    transition: .3s;
    margin: 0 6px;
}

.breadcrumbs a:hover {
    color: #fff;
}


.breadcrumbs span {
    margin-left: 6px;
}

.news-detail-info {
    align-self: flex-end;
    width: 100%;
    max-width: 910px;
    margin-top: 38rem;
}

.news-detail-theme {
    font-size: 14rem;
    line-height: 150%;
    color: #49F2D6;
    text-transform: uppercase;
    /* height: 52px; */
    /* max-height: 52px; */
    overflow: hidden;
}

.news-detail-name {
    font-family: var(--font-mono);
    font-size: 40rem;
    margin: 38px 0;
    text-transform: uppercase;
}

.news-detail-date {
    flex-shrink: 0;
    font-size: 20rem;
    color: rgb(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.news-detail-text {
    margin: 94rem auto 0;
    max-width: 910px;
    width: 100%;
    font-size: 18rem;
    line-height: 130%;
}

.news-detail-text ol,
.news-detail-text ul {
    margin-left: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.news-detail-text a {
    color: #49F2D6;
    text-decoration: underline;
    transition: .3s;
}

.news-detail-text a:hover {
    color: #fff;
}

.news-detail-text p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.news-detail-text b,
.news-detail-text strong {
    font-weight: 700;
}

.news-detail-text i,
.news-detail-text em {
    font-style: italic;
}

.news-detail-text h2 {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 25rem;
    line-height: 1.2;
    margin-bottom: 20rem;
}

.news-detail-text h3 {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 22rem;
    line-height: 1.2;
    margin-bottom: 20rem;
}

.news-detail-text h4 {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 20rem;
    line-height: 1.2;
    margin-bottom: 20rem;
}

.news-detail-text h5 {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 18rem;
    line-height: 1.2;
    margin-bottom: 20rem;
}

.news-detail-text ul li::marker,
.news-detail-text ol li::marker {
    color: #33FFEE;
}

.news-detail-text-header {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 25rem;
    line-height: 28rem;
    margin-bottom: 50rem;
}

.news-detail-header-right {
    overflow: hidden;
    justify-content: center;
    display: flex;
    border-radius: 24rem;
    width: 50%;
    flex-shrink: 0;
}

.news-detail-header-right img {
    height: auto;
    width: 100%;
}

.news-video {
    position: relative;
}

.news-video video {
    /* background: linear-gradient(180deg, #fff 85%, #000 100%); */
    border-radius: 32px;
    display: block;
    overflow: hidden;
}

.mint {
    color: #49F2D6;
}

.news-photo {
    margin: 16rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.news-slider .swiper-slide .news-photo {
    margin: 0;
}

.news-slider .swiper-slide {
    height: auto;
}

.news-photo img {
    border-radius: 32px;
    display: block;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    width: 100%;
}

.news-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    cursor: pointer;
    transition: .3s;
}

.news-video:hover .news-video-play {
    opacity: .8;
}

.news-video-played .news-video-play {
    display: none;
}

.news-slider__head {
    margin-bottom: 32rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-slider__counter {
    font-size: 25rem;
    color: #fff;
    font-family: var(--font-mono);
}

.news-slider__arrows {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 14rem;
    letter-spacing: 4%;
    text-transform: uppercase;
    max-width: 432rem;
    height: 48rem;
    border-radius: 96rem;
    background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
    box-shadow: 0 0 32rem 0 #77D8C0 inset;
    overflow: hidden;
    flex: none;
    z-index: 0;
    cursor: pointer;
}

.news-slider__arrow {
    width: 48rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-slider__arrows:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0;
    background: radial-gradient(92.53% 119.79% at 50% 50%, #963EC6 0%, #00ADDD 100%);
    box-shadow: 0 0 32rem 0 #77D8C0 inset;
    transition-duration: 350ms;
    transition-property: opacity;
    z-index: -1;
}

.news-slider__arrows:hover:before {
    opacity: 1;
}

.news-slider__arrows svg {
    width: 16rem;
    flex: none;
}

@media (max-width: 1919px) {
    .news-item-button {
        font-size: 16rem;
        height: 52rem;
    }

    .news-item-modal-text {
        font-size: 18.8rem;
    }
}

@media (max-width: 1279px) {

    .breadcrumbs {
        margin-top: 0;
    }

    .news-detail-header-right img {
        height: 100%;
        width: auto;
    }

    .news-item {
        /* flex: 1 1 calc((100% / 2) - 49rem); */
        max-width: 601px;
    }

    .news-item-info {
        /* height: 470px; */
        margin-top: 0;
    }

    .news-detail-name {
        font-size: 30rem;
        margin: 32rem 0;
    }

    .news-search {
        max-width: 468rem;
    }

    .news-search input {
        font-size: 18rem;
    }

    .news-filter {
        flex-direction: column;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item-datetime {
        font-size: 20rem;
    }

    .news-item-left {
        width: calc(100% - 250rem);
        max-width: none;
        padding: 24rem 24rem 0;
        gap: 16rem;
    }

    .news-item-right {
        position: absolute;
        inset: 0 0 0 auto;
        padding: 24rem 24rem 24rem 0;
    }

    .news-item-button {
        font-size: 14rem;
        height: 48rem;
    }

    .news-item-center {
        width: calc(100% - 250rem);
        padding: 32rem 24rem 24rem;
        gap: 16rem;
    }

    .news-item-name {
        font-size: 20rem;
    }

    .news-item-gdf-logo {
        margin-top: auto;
    }

    .news-item-gdf-bg {
        max-width: 380rem;
        object-position: bottom;
    }

    .news-filter-item-param-value {
        font-size: 18rem;
    }

    .news-filter-item-param-checkbox-val {
        font-size: 18rem;
    }

    .news-filter-items {
        max-width: 100%;
        gap: 8rem;
    }

    .news-filter-item-param-modal {
        left: 0;
        right: auto;
    }

    .news-filter-item-param-val-text {
        font-size: 18rem;
    }

    .news-filter-item-param-val {
        padding: 12rem 20rem;
    }

    .news-filter-item-param-content label:first-child .news-filter-item-param-val {
        padding-top: 18rem;
    }

    .news-filter-item-param-content label:last-child .news-filter-item-param-val {
        padding-bottom: 18rem;
    }

    .news-empty {
        font-size: 18rem;
    }

    .news-content-loader {
        inset: -16rem;
    }

    .news-content-loader-elem {
        width: 60rem;
        height: 60rem;
        top: 120rem;
    }

    .news-content-loader-elem div {
        width: 60rem;
        height: 60rem;
        border-width: 3rem;
    }

    .news-item-modal-content-close {
        width: 40rem;
        height: 40rem;
    }

    .news-item-modal-name {
        font-size: 22rem;
    }

    .news-item-modal-header-prop {
        font-size: 18rem;
        gap: 16rem;
    }

    .news-item-modal-text {
        font-size: 15.8rem;
    }

    .news-item-modal-text h1,
    .news-item-modal-text h2,
    .news-item-modal-text h3,
    .news-item-modal-text h4,
    .news-item-modal-text h5,
    .news-item-modal-text h6 {
        font-size: 18rem;
    }

    .news-item-modal-broadcast-title {
        font-size: 18rem;
    }

    .news-item-modal-theme {
        font-size: 13rem;
    }

    .news-item-modal {
        padding: 16rem;
    }

    .news-item-modal-team-title {
        font-size: 18rem;
    }

    .news-item-modal-team-name {
        font-size: 17.8rem;
    }

    .news-item-modal-team-position {
        font-size: 15.8rem;
    }

    .news-item-modal-team-text {
        font-size: 15.8rem;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .air-datepicker.-inline- {
        width: 100%;
    }

    .news-detail-header-right {
        width: 100%;
    }

    .news-detail-header-right img {
        width: 100%;
        height: auto;
    }

    .news-detail-info {
        margin-top: 0;
    }

    .news-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .news-item {
        max-width: 100%;
    }

    .news-item-info {
        height: auto;
    }

    .breadcrumbs-mobile {
        display: block;
        margin-bottom: 40rem;
    }

    .news-detail-header {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .news-detail-header-right img {
        max-height: 100%;
    }

    .breadcrumbs {
        display: none;
    }

    .news-search input {
        font-size: 16rem;
    }

    .news-search input {
        height: 56rem;
    }

    .news-item {
        border-radius: 16rem;
    }

    .news-item-left {
        width: 100%;
        padding: 20rem 16rem 0;
        gap: 10rem;
    }

    .news-item-datetime {
        font-size: 18rem;
    }

    .news-item-center {
        width: 100%;
        padding: 20rem 16rem;
        gap: 10rem;
    }

    .news-item-name {
        font-size: 18rem;
    }

    .news-item-right {
        position: relative;
        inset: auto;
        padding: 0 16rem 20rem;
        gap: 42rem;
    }

    .news-item-gdf-logo img {
        margin-left: 0;
    }

    .news-item-hall {
        font-size: 12rem;
    }

    .news-item-theme {
        font-size: 12rem;
    }

    .news-filter {
        gap: 24rem;
    }

    .news-filter-item-param-value {
        height: 44rem;
        font-size: 16rem;
        padding: 0 15rem;
    }

    .news-filter-item-param-checkbox-val {
        height: 44rem;
        font-size: 16rem;
        padding: 0 15rem;
        gap: 10rem;
    }

    .news-filter-item-param-checkbox-check {
        width: 18rem;
        height: 18rem;
    }

    .news-filter-item-param-checkbox-check:after {
        width: 6rem;
        height: 12rem;
    }

    .news-filter-item-arrow {
        width: 10rem;
    }

    .news-filter-item-theme-icon {
        width: 14rem;
    }

    .news-filter-item-param-val-text {
        font-size: 16rem;
    }

    .news-filter-item-param-val {
        padding: 16rem;
    }

    .news-filter-items {
        gap: 5rem;
    }

    .news-filter-item-has {
        width: 10rem;
        height: 10rem;
    }

    .news-filter-item-has {
        right: 0rem;
        top: 4rem;
    }

    .news-empty {
        font-size: 16rem;
        padding: 24rem 0;
    }

    .news-filter-item-param-modal {
        position: fixed;
        max-width: none;
        width: 100%;
        height: 100%;
        inset: 0;
        -webkit-backdrop-filter: blur(10rem);
        backdrop-filter: blur(10rem);
        padding: 42rem 0 0 0;
        text-align: center;
        white-space: nowrap;
        z-index: 110;
        overflow: auto;
        scrollbar-width: none;
        overscroll-behavior: none;
        transition-property: opacity, visibility;
        transition-duration: 350ms;
    }

    .news-filter-item-param-modal:before {
        content: '';
        display: inline-block;
        width: 0;
        height: 100%;
        vertical-align: bottom;
        overflow: hidden;
    }

    .news-filter-item-param-content {
        position: relative;
        display: inline-block;
        vertical-align: bottom;
        text-align: left;
        width: 100%;
        white-space: normal;
        padding-bottom: 15rem;
        border-radius: 24rem 24rem 0 0;
    }

    .news-filter-item-param:not(.open) .news-filter-item-param-content {
        transform: translatey(100%);
    }

    .news-filter-item-param-header {
        display: flex;
    }

    .news-item-modal {
        padding: 42rem 0 0 0;
    }

    .news-item-modal-content {
        border-radius: 24rem 24rem 0 0;
        padding: 20rem 16rem;
    }

    .news-item-modal-header {
        padding-right: 42rem;
    }

    .news-item-modal-broadcast-title {
        margin-bottom: 16rem;
    }

    .news-item-modal-text {
        padding-right: 0;
    }

    .news-item-modal:not(.open) .news-item-modal-content {
        transform: translatey(100%);
    }

    .news-item-modal-header-prop {
        font-size: 16rem;
        gap: 14rem;
    }

    .news-item-modal-team-title {
        margin-bottom: 16rem;
    }

    .news-item-modal-team-photo {
        width: 104rem;
    }

    .news-item-modal-team-name {
        font-size: 16.8rem;
    }

    .news-item-modal-team-position {
        font-size: 14.8rem;
    }

    .news-item-modal-team-text {
        font-size: 14.8rem;
    }

    .news-item-modal-team-list {
        gap: 20rem;
    }
}

@media (max-width: 410px) {
    .news-empty br {
        display: none;
    }
}


.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
    color: var(--adp-color-other-month)
}

.air-datepicker-cell.-year-.-other-decade-:hover,
.air-datepicker-cell.-day-.-other-month-:hover {
    color: var(--adp-color-other-month-hover)
}

.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
    color: var(--adp-color-other-month)
}

.-selected-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.air-datepicker-cell.-day-.-other-month- {
    color: #fff;
    background: var(--adp-background-color-selected-other-month)
}

.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
    background: var(--adp-background-color-selected-other-month-focused)
}

.-in-range-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.air-datepicker-cell.-day-.-other-month- {
    background-color: var(--adp-background-color-in-range);
    color: var(--adp-color)
}

.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
    background-color: var(--adp-background-color-in-range-focused)
}

.air-datepicker-cell.-year-.-other-decade-:empty,
.air-datepicker-cell.-day-.-other-month-:empty {
    background: none;
    border: none
}

.air-datepicker-cell {
    border-radius: var(--adp-cell-border-radius);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.air-datepicker-cell.-focus- {
    background: var(--adp-cell-background-color-hover)
}

.air-datepicker-cell.-current- {
    color: var(--adp-color-current-date);

}

.air-datepicker-cell.-current-.-focus- {
    color: var(--adp-color)
}

.air-datepicker-cell.-current-.-in-range- {
    color: var(--adp-color-current-date)
}

.air-datepicker-cell.-disabled- {
    cursor: default;
    color: var(--adp-color-disabled) !important;
    pointer-events: none;
}


.air-datepicker-cell.-disabled-.-focus- {
    color: var(--adp-color-disabled)
}

.air-datepicker-cell.-disabled-.-in-range- {
    color: var(--adp-color-disabled-in-range)
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
    color: var(--adp-color-disabled)
}

.air-datepicker-cell.-in-range- {
    background: var(--adp-cell-background-color-in-range);
    border-radius: 0
}

.air-datepicker-cell.-in-range-:hover,
.air-datepicker-cell.-in-range-.-focus- {
    background: var(--adp-cell-background-color-in-range-hover)
}

.air-datepicker-cell.-range-from- {
    border: 1px solid var(--adp-cell-border-color-in-range);
    background-color: var(--adp-cell-background-color-in-range);
    border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius)
}

.air-datepicker-cell.-range-to- {
    border: 1px solid var(--adp-cell-border-color-in-range);
    background-color: var(--adp-cell-background-color-in-range);
    border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0
}

.air-datepicker-cell.-range-to-.-range-from- {
    border-radius: var(--adp-cell-border-radius)
}

.air-datepicker-cell.-selected- {
    color: #fff;
    border: none;
    background: var(--adp-cell-background-color-selected);
    border: 2px solid #7417E5;
}

.air-datepicker-cell.-selected-.-current- {
    color: #fff;
    background: var(--adp-cell-background-color-selected)
}

.air-datepicker-cell.-selected-.-focus- {
    background: var(--adp-cell-background-color-selected-hover)
}

.air-datepicker-body {
    transition: all var(--adp-transition-duration) var(--adp-transition-ease)
}

.air-datepicker-body.-hidden- {
    display: none
}

.air-datepicker-body--day-names {
    display: grid;
    grid-template-columns: repeat(7, var(--adp-day-cell-width));
    margin: 8px 0 3px;
    grid-auto-rows: var(--adp-day-cell-height)
}

.air-datepicker-body--day-name {
    color: var(--adp-day-name-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em
}

.air-datepicker-body--day-name.-clickable- {
    cursor: pointer
}

.air-datepicker-body--day-name.-clickable-:hover {
    color: var(--adp-day-name-color-hover)
}

.air-datepicker-body--cells {
    display: grid
}

.air-datepicker-body--cells.-days- {
    grid-template-columns: repeat(7, var(--adp-day-cell-width));
    grid-auto-rows: var(--adp-day-cell-height);
    gap: 8rem;
}

.air-datepicker-body--cells.-months- {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: var(--adp-month-cell-height)
}

.air-datepicker-body--cells.-years- {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: var(--adp-year-cell-height)
}

.air-datepicker-nav {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--adp-border-color-inner);
    min-height: var(--adp-nav-height);
    padding: var(--adp-header-padding);
    box-sizing: content-box
}

.-only-timepicker- .air-datepicker-nav {
    display: none
}

.air-datepicker-nav--title,
.air-datepicker-nav--action {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.air-datepicker-nav--action {
    width: var(--adp-nav-action-size);
    border-radius: var(--adp-border-radius);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.air-datepicker-nav--action:hover {
    background: var(--adp-background-color-hover)
}

.air-datepicker-nav--action:active {
    background: var(--adp-background-color-active)
}

.air-datepicker-nav--action.-disabled- {
    visibility: hidden
}

.air-datepicker-nav--action svg {
    width: 32px;
    height: 32px
}

.air-datepicker-nav--action path {
    fill: none;
    stroke: var(--adp-nav-arrow-color);
    stroke-width: 2px
}

.air-datepicker-nav--title {
    font-size: 16px;
    border-radius: var(--adp-border-radius);
    padding: 0 8px
}

.air-datepicker-nav--title i {
    font-style: normal;
    color: var(--adp-nav-color-secondary);
    margin-left: .3em
}

.air-datepicker-nav--title:hover {
    background: var(--adp-background-color-hover)
}

.air-datepicker-nav--title:active {
    background: var(--adp-background-color-active)
}

.air-datepicker-nav--title.-disabled- {
    cursor: default;
    background: none
}

.air-datepicker-buttons {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column
}

.air-datepicker-button {
    display: inline-flex;
    color: var(--adp-btn-color);
    border-radius: var(--adp-btn-border-radius);
    cursor: pointer;
    height: var(--adp-btn-height);
    border: none;
    background: rgba(255, 255, 255, 0)
}

.air-datepicker-button:hover {
    color: var(--adp-btn-color-hover);
    background: var(--adp-btn-background-color-hover)
}

.air-datepicker-button:focus {
    color: var(--adp-btn-color-hover);
    background: var(--adp-btn-background-color-hover);
    outline: none
}

.air-datepicker-button:active {
    background: var(--adp-btn-background-color-active)
}

.air-datepicker-button span {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.air-datepicker-time {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-column-gap: 12px;
    align-items: center;
    position: relative;
    padding: 0 var(--adp-time-padding-inner)
}

.-only-timepicker- .air-datepicker-time {
    border-top: none
}

.air-datepicker-time--current {
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 14px;
    text-align: center
}

.air-datepicker-time--current-colon {
    margin: 0 2px 3px;
    line-height: 1
}

.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
    line-height: 1;
    font-size: 19px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    position: relative;
    z-index: 1
}

.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
    content: "";
    background: var(--adp-background-color-hover);
    border-radius: var(--adp-border-radius);
    position: absolute;
    left: -2px;
    top: -3px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0
}

.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
    opacity: 1
}

.air-datepicker-time--current-ampm {
    text-transform: uppercase;
    align-self: flex-end;
    color: var(--adp-time-day-period-color);
    margin-left: 6px;
    font-size: 11px;
    margin-bottom: 1px
}

.air-datepicker-time--row {
    display: flex;
    align-items: center;
    font-size: 11px;
    height: 17px;
    background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat
}

.air-datepicker-time--row:first-child {
    margin-bottom: 4px
}

.air-datepicker-time--row input[type=range] {
    background: none;
    cursor: pointer;
    flex: 1;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
    display: none
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
    border-color: var(--adp-time-track-color-hover)
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
    border-color: var(--adp-time-track-color-hover)
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
    border-color: var(--adp-time-track-color-hover)
}

.air-datepicker-time--row input[type=range]:focus {
    outline: none
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
    background: var(--adp-cell-background-color-selected);
    border-color: var(--adp-cell-background-color-selected)
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
    background: var(--adp-cell-background-color-selected);
    border-color: var(--adp-cell-background-color-selected)
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
    background: var(--adp-cell-background-color-selected);
    border-color: var(--adp-cell-background-color-selected)
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid var(--adp-time-track-color);
    background: #fff;
    cursor: pointer;
    -webkit-transition: background var(--adp-transition-duration);
    transition: background var(--adp-transition-duration)
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid var(--adp-time-track-color);
    background: #fff;
    cursor: pointer;
    -moz-transition: background var(--adp-transition-duration);
    transition: background var(--adp-transition-duration)
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid var(--adp-time-track-color);
    background: #fff;
    cursor: pointer;
    -ms-transition: background var(--adp-transition-duration);
    transition: background var(--adp-transition-duration)
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
    margin-top: calc(var(--adp-time-thumb-size) / 2 * -1)
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
    border: none;
    height: var(--adp-time-track-height);
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0)
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
    border: none;
    height: var(--adp-time-track-height);
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0)
}

.air-datepicker-time--row input[type=range]::-ms-track {
    border: none;
    height: var(--adp-time-track-height);
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0)
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
    background: rgba(0, 0, 0, 0)
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
    background: rgba(0, 0, 0, 0)
}

.air-datepicker {
    --adp-font-family: 'Formular Neutral';
    --adp-font-size: 14px;
    --adp-width: 312px;
    --adp-z-index: 100;
    --adp-padding: 4px 20px 20px;
    --adp-header-padding: 4px 20px;
    --adp-grid-areas: "nav" "body" "timepicker" "buttons";
    --adp-transition-duration: .3s;
    --adp-transition-ease: ease-out;
    --adp-transition-offset: 8px;
    --adp-background-color: #110424;
    --adp-background-color-hover: #2A0959;
    --adp-background-color-active: #eaeaea;
    --adp-background-color-in-range: #2A0959;
    --adp-background-color-in-range-focused: #2A0959;
    --adp-background-color-selected-other-month-focused: #2A0959;
    --adp-background-color-selected-other-month: #2A0959;
    --adp-color: #fff;
    --adp-color-secondary: #888191;
    --adp-accent-color: #fff;
    --adp-color-current-date: var(--adp-accent-color);
    --adp-color-other-month: #888191;
    --adp-color-disabled: #8881913b;
    --adp-color-disabled-in-range: #8881913b;
    --adp-color-other-month-hover: #c5c5c5;
    --adp-border-color: transparent;
    --adp-border-color-inner: transparent;
    --adp-border-radius: 16px;
    --adp-border-color-inline: transparent;
    --adp-nav-height: 32px;
    --adp-nav-arrow-color: var(--adp-color-secondary);
    --adp-nav-action-size: 32px;
    --adp-nav-color-secondary: var(--adp-color-secondary);
    --adp-day-name-color: #919399;
    --adp-day-name-color-hover: #919399;
    --adp-day-cell-width: 1fr;
    --adp-day-cell-height: 32px;
    --adp-month-cell-height: 42px;
    --adp-year-cell-height: 56px;
    --adp-pointer-size: 10px;
    --adp-poiner-border-radius: 2px;
    --adp-pointer-offset: 14px;
    --adp-cell-border-radius: 4px;
    --adp-cell-background-color-hover: var(--adp-background-color-hover);
    --adp-cell-background-color-selected: #2A0959;
    --adp-cell-background-color-selected-hover: #2A0959;
    --adp-cell-background-color-in-range: #2A0959;
    --adp-cell-background-color-in-range-hover: #2A0959;
    --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
    --adp-btn-height: 32px;
    --adp-btn-color: var(--adp-accent-color);
    --adp-btn-color-hover: var(--adp-color);
    --adp-btn-border-radius: var(--adp-border-radius);
    --adp-btn-background-color-hover: var(--adp-background-color-hover);
    --adp-btn-background-color-active: var(--adp-background-color-active);
    --adp-time-track-height: 1px;
    --adp-time-track-color: #dedede;
    --adp-time-track-color-hover: #b1b1b1;
    --adp-time-thumb-size: 12px;
    --adp-time-padding-inner: 10px;
    --adp-time-day-period-color: var(--adp-color-secondary);
    --adp-mobile-font-size: 16px;
    --adp-mobile-nav-height: 40px;
    --adp-mobile-width: 320px;
    --adp-mobile-day-cell-height: 38px;
    --adp-mobile-month-cell-height: 48px;
    --adp-mobile-year-cell-height: 64px
}

.air-datepicker-overlay {
    --adp-overlay-background-color: rgba(0, 0, 0, .3);
    --adp-overlay-transition-duration: .3s;
    --adp-overlay-transition-ease: ease-out;
    --adp-overlay-z-index: 99
}

.air-datepicker {
    background: var(--adp-background-color);
    border: 1px solid var(--adp-border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-radius: var(--adp-border-radius);
    box-sizing: content-box;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, max-content);
    grid-template-areas: var(--adp-grid-areas);
    font-family: var(--adp-font-family), sans-serif;
    font-size: var(--adp-font-size);
    color: var(--adp-color);
    width: var(--adp-width);
    position: absolute;
    transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
    z-index: var(--adp-z-index)
}

.air-datepicker:not(.-custom-position-) {
    opacity: 0
}

.air-datepicker.-from-top- {
    transform: translateY(calc(var(--adp-transition-offset) * -1))
}

.air-datepicker.-from-right- {
    transform: translateX(var(--adp-transition-offset))
}

.air-datepicker.-from-bottom- {
    transform: translateY(var(--adp-transition-offset))
}

.air-datepicker.-from-left- {
    transform: translateX(calc(var(--adp-transition-offset) * -1))
}

.air-datepicker.-active-:not(.-custom-position-) {
    transform: translate(0, 0);
    opacity: 1
}

.air-datepicker.-active-.-custom-position- {
    transition: none
}

.air-datepicker.-inline- {
    border-color: var(--adp-border-color-inline);
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    transform: none
}

.air-datepicker.-inline- .air-datepicker--pointer {
    display: none
}

.air-datepicker.-is-mobile- {
    --adp-font-size: var(--adp-mobile-font-size);
    --adp-day-cell-height: var(--adp-mobile-day-cell-height);
    --adp-month-cell-height: var(--adp-mobile-month-cell-height);
    --adp-year-cell-height: var(--adp-mobile-year-cell-height);
    --adp-nav-height: var(--adp-mobile-nav-height);
    --adp-nav-action-size: var(--adp-mobile-nav-height);
    position: fixed;
    width: var(--adp-mobile-width);
    border: none
}

.air-datepicker.-is-mobile- * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
    display: none
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
    transform: translate(-50%, calc(-50% + var(--adp-transition-offset)))
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
    transform: translate(-50%, -50%)
}

.air-datepicker.-custom-position- {
    transition: none
}

.air-datepicker-global-container {
    position: absolute;
    left: 0;
    top: 0
}

.air-datepicker--pointer {
    --pointer-half-size: calc(var(--adp-pointer-size) / 2);
    position: absolute;
    width: var(--adp-pointer-size);
    height: var(--adp-pointer-size);
    z-index: -1
}

.air-datepicker--pointer:after {
    content: "";
    position: absolute;
    background: #fff;
    border-top: 1px solid var(--adp-border-color-inline);
    border-right: 1px solid var(--adp-border-color-inline);
    border-top-right-radius: var(--adp-poiner-border-radius);
    width: var(--adp-pointer-size);
    height: var(--adp-pointer-size);
    box-sizing: border-box
}

.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^=top] .air-datepicker--pointer {
    top: calc(100% - var(--pointer-half-size) + 1px)
}

.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^=top] .air-datepicker--pointer:after {
    transform: rotate(135deg)
}

.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^=right] .air-datepicker--pointer {
    right: calc(100% - var(--pointer-half-size) + 1px)
}

.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=right] .air-datepicker--pointer:after {
    transform: rotate(225deg)
}

.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^=bottom] .air-datepicker--pointer {
    bottom: calc(100% - var(--pointer-half-size) + 1px)
}

.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^=bottom] .air-datepicker--pointer:after {
    transform: rotate(315deg)
}

.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^=left] .air-datepicker--pointer {
    left: calc(100% - var(--pointer-half-size) + 1px)
}

.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=left] .air-datepicker--pointer:after {
    transform: rotate(45deg)
}

.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer {
    left: var(--adp-pointer-offset)
}

.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer {
    right: var(--adp-pointer-offset)
}

.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer {
    left: calc(50% - var(--adp-pointer-size) / 2)
}

.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
    top: var(--adp-pointer-offset)
}

.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
    bottom: var(--adp-pointer-offset)
}

.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
    top: calc(50% - var(--adp-pointer-size) / 2)
}

.air-datepicker--navigation {
    grid-area: nav;
    background: #2A0959;

}

.air-datepicker--content {
    box-sizing: content-box;
    padding: var(--adp-padding);
    grid-area: body
}

.-only-timepicker- .air-datepicker--content {
    display: none
}

.air-datepicker--time {
    grid-area: timepicker
}

.air-datepicker--buttons {
    grid-area: buttons
}

.air-datepicker--buttons,
.air-datepicker--time {
    padding: var(--adp-padding);
    border-top: 1px solid var(--adp-border-color-inner)
}

.air-datepicker-overlay {
    position: fixed;
    background: var(--adp-overlay-background-color);
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
    transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
    transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
    z-index: var(--adp-overlay-z-index)
}

.air-datepicker-overlay.-active- {
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s
}

div.news-detail {
	word-wrap: break-word;
}

div.news-detail img.detail_picture {
	float: left;
	margin: 0 8px 6px 1px;
}

.news-date-time {
	color: #486DAA;
}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
	--swiper-theme-color: #007aff
}

:host {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1
}

.swiper {
	display: block;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 1
}

.swiper-vertical>.swiper-wrapper {
	flex-direction: column
}

.swiper-wrapper {
	box-sizing: initial;
	display: flex;
	height: 100%;
	position: relative;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	width: 100%;
	z-index: 1
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translateZ(0)
}

.swiper-horizontal {
	touch-action: pan-y
}

.swiper-vertical {
	touch-action: pan-x
}

.swiper-slide {
	display: block;
	flex-shrink: 0;
	height: 100%;
	position: relative;
	transition-property: transform;
	width: 100%
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
	backface-visibility: hidden;
	transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d
}

.swiper-3d {
	perspective: 1200px;

	.swiper-cube-shadow,
	.swiper-slide {
		transform-style: preserve-3d
	}
}

.swiper-css-mode {
	>.swiper-wrapper {
		overflow: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;

		&::-webkit-scrollbar {
			display: none
		}
	}

	>.swiper-wrapper>.swiper-slide {
		scroll-snap-align: start start
	}

	&.swiper-horizontal {
		>.swiper-wrapper {
			scroll-snap-type: x mandatory
		}

		>.swiper-wrapper>.swiper-slide:first-child {
			margin-inline-start: var(--swiper-slides-offset-before);
			scroll-margin-inline-start: var(--swiper-slides-offset-before)
		}

		>.swiper-wrapper>.swiper-slide:last-child {
			margin-inline-end: var(--swiper-slides-offset-after)
		}
	}

	&.swiper-vertical {
		>.swiper-wrapper {
			scroll-snap-type: y mandatory
		}

		>.swiper-wrapper>.swiper-slide:first-child {
			margin-block-start: var(--swiper-slides-offset-before);
			scroll-margin-block-start: var(--swiper-slides-offset-before)
		}

		>.swiper-wrapper>.swiper-slide:last-child {
			margin-block-end: var(--swiper-slides-offset-after)
		}
	}

	&.swiper-free-mode {
		>.swiper-wrapper {
			scroll-snap-type: none
		}

		>.swiper-wrapper>.swiper-slide {
			scroll-snap-align: none
		}
	}

	&.swiper-centered {
		>.swiper-wrapper:before {
			content: "";
			flex-shrink: 0;
			order: 9999
		}

		>.swiper-wrapper>.swiper-slide {
			scroll-snap-align: center center;
			scroll-snap-stop: always
		}
	}

	&.swiper-centered.swiper-horizontal {
		>.swiper-wrapper>.swiper-slide:first-child {
			margin-inline-start: var(--swiper-centered-offset-before)
		}

		>.swiper-wrapper:before {
			height: 100%;
			min-height: 1px;
			width: var(--swiper-centered-offset-after)
		}
	}

	&.swiper-centered.swiper-vertical {
		>.swiper-wrapper>.swiper-slide:first-child {
			margin-block-start: var(--swiper-centered-offset-before)
		}

		>.swiper-wrapper:before {
			height: var(--swiper-centered-offset-after);
			min-width: 1px;
			width: 100%
		}
	}
}

.swiper-3d {

	.swiper-slide-shadow,
	.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-left,
	.swiper-slide-shadow-right,
	.swiper-slide-shadow-top {
		height: 100%;
		left: 0;
		pointer-events: none;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 10
	}

	.swiper-slide-shadow {
		background: #00000026
	}

	.swiper-slide-shadow-left {
		background-image: linear-gradient(270deg, #00000080, #0000)
	}

	.swiper-slide-shadow-right {
		background-image: linear-gradient(90deg, #00000080, #0000)
	}

	.swiper-slide-shadow-top {
		background-image: linear-gradient(0deg, #00000080, #0000)
	}

	.swiper-slide-shadow-bottom {
		background-image: linear-gradient(180deg, #00000080, #0000)
	}
}

.swiper-lazy-preloader {
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top: 4px solid #0000;
	box-sizing: border-box;
	height: 42px;
	left: 50%;
	margin-left: -21px;
	margin-top: -21px;
	position: absolute;
	top: 50%;
	transform-origin: 50%;
	width: 42px;
	z-index: 10
}

.swiper-watch-progress .swiper-slide-visible,
.swiper:not(.swiper-watch-progress) {
	.swiper-lazy-preloader {
		animation: swiper-preloader-spin 1s linear infinite
	}
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(1turn)
	}
}

.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode {
	.swiper-wrapper:after {
		content: "";
		left: 0;
		pointer-events: none;
		position: absolute;
		top: 0
	}
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
	.swiper-wrapper:after {
		height: 1px;
		width: var(--swiper-virtual-size)
	}
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
	.swiper-wrapper:after {
		height: var(--swiper-virtual-size);
		width: 1px
	}
}

:root {
	--swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
	align-items: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
	cursor: pointer;
	display: flex;
	height: var(--swiper-navigation-size);
	justify-content: center;
	position: absolute;
	width: var(--swiper-navigation-size);
	z-index: 10;

	&.swiper-button-disabled {
		cursor: auto;
		opacity: .35;
		pointer-events: none
	}

	&.swiper-button-hidden {
		cursor: auto;
		opacity: 0;
		pointer-events: none
	}

	.swiper-navigation-disabled & {
		display: none !important
	}

	::slotted(svg),
	svg {
		height: 100%;
		object-fit: contain;
		transform-origin: center;
		width: 100%;
		fill: currentColor;
		pointer-events: none
	}
}

.swiper-button-lock {
	display: none
}

.swiper-button-next,
.swiper-button-prev {
	margin-top: calc(0px - var(--swiper-navigation-size)/2);
	top: var(--swiper-navigation-top-offset, 50%)
}

.swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 4px);
	right: auto;

	.swiper-navigation-icon,
	::slotted(.swiper-navigation-icon) {
		transform: rotate(180deg)
	}
}

.swiper-button-next {
	left: auto;
	right: var(--swiper-navigation-sides-offset, 4px)
}

.swiper-horizontal {

	.swiper-button-next,
	.swiper-button-prev,
	~.swiper-button-next,
	~.swiper-button-prev {
		margin-left: 0;
		margin-top: calc(0px - var(--swiper-navigation-size)/2);
		top: var(--swiper-navigation-top-offset, 50%)
	}

	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl~.swiper-button-next,
	&~.swiper-button-prev,
	.swiper-button-prev {
		left: var(--swiper-navigation-sides-offset, 4px);
		right: auto
	}

	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl~.swiper-button-prev,
	&~.swiper-button-next,
	.swiper-button-next {
		left: auto;
		right: var(--swiper-navigation-sides-offset, 4px)
	}

	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl~.swiper-button-next,
	&~.swiper-button-prev,
	.swiper-button-prev {

		.swiper-navigation-icon,
		::slotted(.swiper-navigation-icon) {
			transform: rotate(180deg)
		}
	}

	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl~.swiper-button-prev {

		.swiper-navigation-icon,
		::slotted(.swiper-navigation-icon) {
			transform: rotate(0deg)
		}
	}
}

.swiper-vertical {

	.swiper-button-next,
	.swiper-button-prev,
	~.swiper-button-next,
	~.swiper-button-prev {
		left: var(--swiper-navigation-top-offset, 50%);
		margin-left: calc(0px - var(--swiper-navigation-size)/2);
		margin-top: 0;
		right: auto
	}

	.swiper-button-prev,
	~.swiper-button-prev {
		bottom: auto;
		top: var(--swiper-navigation-sides-offset, 4px);

		.swiper-navigation-icon,
		::slotted(.swiper-navigation-icon) {
			transform: rotate(-90deg)
		}
	}

	.swiper-button-next,
	~.swiper-button-next {
		bottom: var(--swiper-navigation-sides-offset, 4px);
		top: auto;

		.swiper-navigation-icon,
		::slotted(.swiper-navigation-icon) {
			transform: rotate(90deg)
		}
	}
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transform: translateZ(0);
	transition: opacity .3s;
	z-index: 10;

	&.swiper-pagination-hidden {
		opacity: 0
	}

	&.swiper-pagination-disabled,
	.swiper-pagination-disabled>& {
		display: none !important
	}
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
	left: 0;
	top: var(--swiper-pagination-top, auto);
	width: 100%
}

.swiper-pagination-bullets-dynamic {
	font-size: 0;
	overflow: hidden;

	.swiper-pagination-bullet {
		position: relative;
		transform: scale(.33)
	}

	.swiper-pagination-bullet-active,
	.swiper-pagination-bullet-active-main {
		transform: scale(1)
	}

	.swiper-pagination-bullet-active-prev {
		transform: scale(.66)
	}

	.swiper-pagination-bullet-active-prev-prev {
		transform: scale(.33)
	}

	.swiper-pagination-bullet-active-next {
		transform: scale(.66)
	}

	.swiper-pagination-bullet-active-next-next {
		transform: scale(.33)
	}
}

.swiper-pagination-bullet {
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	display: inline-block;
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));

	button& {
		appearance: none;
		border: none;
		box-shadow: none;
		margin: 0;
		padding: 0
	}

	.swiper-pagination-clickable & {
		cursor: pointer
	}

	&:only-child {
		display: none !important
	}
}

.swiper-pagination-bullet-active {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
	left: var(--swiper-pagination-left, auto);
	right: var(--swiper-pagination-right, 8px);
	top: 50%;
	transform: translate3d(0, -50%, 0);

	.swiper-pagination-bullet {
		display: block;
		margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
	}

	&.swiper-pagination-bullets-dynamic {
		top: 50%;
		transform: translateY(-50%);
		width: 8px;

		.swiper-pagination-bullet {
			display: inline-block;
			transition: transform .2s, top .2s
		}
	}
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
	.swiper-pagination-bullet {
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
	}

	&.swiper-pagination-bullets-dynamic {
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;

		.swiper-pagination-bullet {
			transition: transform .2s, left .2s
		}
	}
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: transform .2s, right .2s
}

.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
	background: var(--swiper-pagination-progressbar-bg-color, #00000040);
	position: absolute;

	.swiper-pagination-progressbar-fill {
		background: var(--swiper-pagination-color, var(--swiper-theme-color));
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		transform: scale(0);
		transform-origin: left top;
		width: 100%
	}

	.swiper-rtl & .swiper-pagination-progressbar-fill {
		transform-origin: right top
	}

	&.swiper-pagination-horizontal,
	&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
	.swiper-horizontal>&,
	.swiper-vertical>&.swiper-pagination-progressbar-opposite {
		height: var(--swiper-pagination-progressbar-size, 4px);
		left: 0;
		top: 0;
		width: 100%
	}

	&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
	&.swiper-pagination-vertical,
	.swiper-horizontal>&.swiper-pagination-progressbar-opposite,
	.swiper-vertical>& {
		height: 100%;
		left: 0;
		top: 0;
		width: var(--swiper-pagination-progressbar-size, 4px)
	}
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	background: var(--swiper-scrollbar-bg-color, #0000001a);
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	position: relative;
	touch-action: none;

	&.swiper-scrollbar-disabled,
	.swiper-scrollbar-disabled>& {
		display: none !important
	}

	&.swiper-scrollbar-horizontal,
	.swiper-horizontal>& {
		bottom: var(--swiper-scrollbar-bottom, 4px);
		height: var(--swiper-scrollbar-size, 4px);
		left: var(--swiper-scrollbar-sides-offset, 1%);
		position: absolute;
		top: var(--swiper-scrollbar-top, auto);
		width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);
		z-index: 50
	}

	&.swiper-scrollbar-vertical,
	.swiper-vertical>& {
		height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);
		left: var(--swiper-scrollbar-left, auto);
		position: absolute;
		right: var(--swiper-scrollbar-right, 4px);
		top: var(--swiper-scrollbar-sides-offset, 1%);
		width: var(--swiper-scrollbar-size, 4px);
		z-index: 50
	}
}

.swiper-scrollbar-drag {
	background: var(--swiper-scrollbar-drag-bg-color, #00000080);
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	height: 100%;
	left: 0;
	position: relative;
	top: 0;
	width: 100%
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	text-align: center;
	width: 100%;

	>canvas,
	>img,
	>svg {
		max-height: 100%;
		max-width: 100%;
		object-fit: contain
	}
}

.swiper-slide-zoomed {
	cursor: move;
	touch-action: none
}

.swiper .swiper-notification {
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
	margin: 0 auto;
	transition-timing-function: ease-out
}

.swiper-grid>.swiper-wrapper {
	flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
	flex-direction: column;
	flex-wrap: wrap
}

.swiper-fade {
	&.swiper-free-mode {
		.swiper-slide {
			transition-timing-function: ease-out
		}
	}

	.swiper-slide {
		pointer-events: none;
		transition-property: opacity;

		.swiper-slide {
			pointer-events: none
		}
	}

	.swiper-slide-active {
		pointer-events: auto;

		& .swiper-slide-active {
			pointer-events: auto
		}
	}
}

.swiper.swiper-cube {
	overflow: visible
}

.swiper-cube {
	.swiper-slide {
		backface-visibility: hidden;
		height: 100%;
		pointer-events: none;
		transform-origin: 0 0;
		visibility: hidden;
		width: 100%;
		z-index: 1;

		.swiper-slide {
			pointer-events: none
		}
	}

	&.swiper-rtl .swiper-slide {
		transform-origin: 100% 0
	}

	.swiper-slide-active {

		&,
		& .swiper-slide-active {
			pointer-events: auto
		}
	}

	.swiper-slide-active,
	.swiper-slide-next,
	.swiper-slide-prev {
		pointer-events: auto;
		visibility: visible
	}

	.swiper-cube-shadow {
		bottom: 0;
		height: 100%;
		left: 0;
		opacity: .6;
		position: absolute;
		width: 100%;
		z-index: 0;

		&:before {
			background: #000;
			bottom: 0;
			content: "";
			filter: blur(50px);
			left: 0;
			position: absolute;
			right: 0;
			top: 0
		}
	}
}

.swiper-cube {
	.swiper-slide-next+.swiper-slide {
		pointer-events: auto;
		visibility: visible
	}
}

.swiper-cube {

	.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-cube.swiper-slide-shadow-left,
	.swiper-slide-shadow-cube.swiper-slide-shadow-right,
	.swiper-slide-shadow-cube.swiper-slide-shadow-top {
		backface-visibility: hidden;
		z-index: 0
	}
}

.swiper.swiper-flip {
	overflow: visible
}

.swiper-flip {
	.swiper-slide {
		backface-visibility: hidden;
		pointer-events: none;
		z-index: 1;

		.swiper-slide {
			pointer-events: none
		}
	}

	.swiper-slide-active {

		&,
		& .swiper-slide-active {
			pointer-events: auto
		}
	}
}

.swiper-flip {

	.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-flip.swiper-slide-shadow-left,
	.swiper-slide-shadow-flip.swiper-slide-shadow-right,
	.swiper-slide-shadow-flip.swiper-slide-shadow-top {
		backface-visibility: hidden;
		z-index: 0
	}
}

.swiper-creative {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transition-property: transform, opacity, height
	}
}

.swiper.swiper-cards {
	overflow: visible
}

.swiper-cards {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transform-origin: center bottom
	}
}