:root {
    --ct24-primary: #043cdc;
    --ct24-secondary: #cccdd4;
    --ct24-danger: #ed1c24;
    --ct24-text-primary: #000528;
    --ct24-text-secondary: #52556d;
    --ct24-primary-rgb: 4, 60, 220;
    --ct24-secondary-rgb: 204, 205, 212;
    --ct24-danger-rgb: 237, 28, 36;
    --ct24-text-primary-rgb: 0, 5, 40;
    --ct24-text-secondary-rgb: 82, 85, 109;
    --ct24-white-rgb: 255, 255, 255;
    --ct24-black-rgb: 0, 0, 0;
    --ct24-body-color-rgb: 0, 5, 40;
    --ct24-body-bg-rgb: 251, 251, 253;
    --ct24-font-sans-serif: "Source Sans Pro", sans-serif;
    --ct24-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --ct24-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, .15), hsla(0, 0%, 100%, 0));
    --ct24-body-font-family: var(--ct24-font-sans-serif);
    --ct24-body-font-size: 1rem;
    --ct24-body-font-weight: 400;
    --ct24-body-line-height: 1.5;
    --ct24-body-color: #000528;
    --ct24-body-bg: #fbfbfd;
    --ct24-border-width: 1px;
    --ct24-border-style: solid;
    --ct24-border-color: #e1e8fb;
    --ct24-border-color-translucent: rgba(0, 0, 0, .175);
    --ct24-border-radius: 2px;
    --ct24-border-radius-sm: 0.25rem;
    --ct24-border-radius-lg: 4px;
    --ct24-border-radius-xl: 1rem;
    --ct24-border-radius-2xl: 2rem;
    --ct24-border-radius-pill: 50rem;
    --ct24-link-color: #043cdc;
    --ct24-link-hover-color: #00288c;
    --ct24-code-color: #d63384;
    --ct24-highlight-bg: #fff3cd
}

.article-strip-wrapper .article-strip__container,
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xs,
.container-xxl {
    --ct24-gutter-x: 2rem;
    --ct24-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--ct24-gutter-x)*.5);
    padding-left: calc(var(--ct24-gutter-x)*.5);
    margin-right: auto;
    margin-left: auto
}

@media(min-width:480px) {
    .container,
    .container-xs {
        max-width: 480px
    }
}

@media(min-width:576px) {
    .container,
    .container-sm,
    .container-xs {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .container,
    .container-md,
    .container-sm,
    .container-xs {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .article-strip-wrapper .article-strip__container,
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xs {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .article-strip-wrapper .article-strip__container,
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xs {
        max-width: 1140px
    }
}

@media(min-width:1400px) {
    .article-strip-wrapper .article-strip__container,
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xs,
    .container-xxl {
        max-width: 1248px
    }
}

.row {
    --ct24-gutter-x: 2rem;
    --ct24-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1*var(--ct24-gutter-y));
    margin-right: calc(-.5*var(--ct24-gutter-x));
    margin-left: calc(-.5*var(--ct24-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--ct24-gutter-x)*.5);
    padding-left: calc(var(--ct24-gutter-x)*.5);
    margin-top: var(--ct24-gutter-y)
}

.col {
    flex: 1 0
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,
.gx-0 {
    --ct24-gutter-x: 0
}

.g-0,
.gy-0 {
    --ct24-gutter-y: 0
}

.g-1,
.gx-1 {
    --ct24-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --ct24-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --ct24-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --ct24-gutter-y: 0.5rem
}

.g-2_5,
.gx-2_5 {
    --ct24-gutter-x: 0.75rem
}

.g-2_5,
.gy-2_5 {
    --ct24-gutter-y: 0.75rem
}

.g-3,
.gx-3 {
    --ct24-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --ct24-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --ct24-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --ct24-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --ct24-gutter-x: 2rem
}

.g-5,
.gy-5 {
    --ct24-gutter-y: 2rem
}

.g-5_5,
.gx-5_5 {
    --ct24-gutter-x: 2.5rem
}

.g-5_5,
.gy-5_5 {
    --ct24-gutter-y: 2.5rem
}

.g-6,
.gx-6 {
    --ct24-gutter-x: 3rem
}

.g-6,
.gy-6 {
    --ct24-gutter-y: 3rem
}

@media(min-width:480px) {
    .col-xs {
        flex: 1 0
    }
    .row-cols-xs-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-xs-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-xs-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-xs-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-xs-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-xs-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-xs-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-xs-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-xs-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-xs-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-xs-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-xs-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-xs-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-xs-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-xs-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-xs-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-xs-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-xs-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-xs-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-xs-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-xs-0 {
        margin-left: 0
    }
    .offset-xs-1 {
        margin-left: 8.33333333%
    }
    .offset-xs-2 {
        margin-left: 16.66666667%
    }
    .offset-xs-3 {
        margin-left: 25%
    }
    .offset-xs-4 {
        margin-left: 33.33333333%
    }
    .offset-xs-5 {
        margin-left: 41.66666667%
    }
    .offset-xs-6 {
        margin-left: 50%
    }
    .offset-xs-7 {
        margin-left: 58.33333333%
    }
    .offset-xs-8 {
        margin-left: 66.66666667%
    }
    .offset-xs-9 {
        margin-left: 75%
    }
    .offset-xs-10 {
        margin-left: 83.33333333%
    }
    .offset-xs-11 {
        margin-left: 91.66666667%
    }
    .g-xs-0,
    .gx-xs-0 {
        --ct24-gutter-x: 0
    }
    .g-xs-0,
    .gy-xs-0 {
        --ct24-gutter-y: 0
    }
    .g-xs-1,
    .gx-xs-1 {
        --ct24-gutter-x: 0.25rem
    }
    .g-xs-1,
    .gy-xs-1 {
        --ct24-gutter-y: 0.25rem
    }
    .g-xs-2,
    .gx-xs-2 {
        --ct24-gutter-x: 0.5rem
    }
    .g-xs-2,
    .gy-xs-2 {
        --ct24-gutter-y: 0.5rem
    }
    .g-xs-2_5,
    .gx-xs-2_5 {
        --ct24-gutter-x: 0.75rem
    }
    .g-xs-2_5,
    .gy-xs-2_5 {
        --ct24-gutter-y: 0.75rem
    }
    .g-xs-3,
    .gx-xs-3 {
        --ct24-gutter-x: 1rem
    }
    .g-xs-3,
    .gy-xs-3 {
        --ct24-gutter-y: 1rem
    }
    .g-xs-4,
    .gx-xs-4 {
        --ct24-gutter-x: 1.5rem
    }
    .g-xs-4,
    .gy-xs-4 {
        --ct24-gutter-y: 1.5rem
    }
    .g-xs-5,
    .gx-xs-5 {
        --ct24-gutter-x: 2rem
    }
    .g-xs-5,
    .gy-xs-5 {
        --ct24-gutter-y: 2rem
    }
    .g-xs-5_5,
    .gx-xs-5_5 {
        --ct24-gutter-x: 2.5rem
    }
    .g-xs-5_5,
    .gy-xs-5_5 {
        --ct24-gutter-y: 2.5rem
    }
    .g-xs-6,
    .gx-xs-6 {
        --ct24-gutter-x: 3rem
    }
    .g-xs-6,
    .gy-xs-6 {
        --ct24-gutter-y: 3rem
    }
}

@media(min-width:576px) {
    .col-sm {
        flex: 1 0
    }
    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-sm-0 {
        margin-left: 0
    }
    .offset-sm-1 {
        margin-left: 8.33333333%
    }
    .offset-sm-2 {
        margin-left: 16.66666667%
    }
    .offset-sm-3 {
        margin-left: 25%
    }
    .offset-sm-4 {
        margin-left: 33.33333333%
    }
    .offset-sm-5 {
        margin-left: 41.66666667%
    }
    .offset-sm-6 {
        margin-left: 50%
    }
    .offset-sm-7 {
        margin-left: 58.33333333%
    }
    .offset-sm-8 {
        margin-left: 66.66666667%
    }
    .offset-sm-9 {
        margin-left: 75%
    }
    .offset-sm-10 {
        margin-left: 83.33333333%
    }
    .offset-sm-11 {
        margin-left: 91.66666667%
    }
    .g-sm-0,
    .gx-sm-0 {
        --ct24-gutter-x: 0
    }
    .g-sm-0,
    .gy-sm-0 {
        --ct24-gutter-y: 0
    }
    .g-sm-1,
    .gx-sm-1 {
        --ct24-gutter-x: 0.25rem
    }
    .g-sm-1,
    .gy-sm-1 {
        --ct24-gutter-y: 0.25rem
    }
    .g-sm-2,
    .gx-sm-2 {
        --ct24-gutter-x: 0.5rem
    }
    .g-sm-2,
    .gy-sm-2 {
        --ct24-gutter-y: 0.5rem
    }
    .g-sm-2_5,
    .gx-sm-2_5 {
        --ct24-gutter-x: 0.75rem
    }
    .g-sm-2_5,
    .gy-sm-2_5 {
        --ct24-gutter-y: 0.75rem
    }
    .g-sm-3,
    .gx-sm-3 {
        --ct24-gutter-x: 1rem
    }
    .g-sm-3,
    .gy-sm-3 {
        --ct24-gutter-y: 1rem
    }
    .g-sm-4,
    .gx-sm-4 {
        --ct24-gutter-x: 1.5rem
    }
    .g-sm-4,
    .gy-sm-4 {
        --ct24-gutter-y: 1.5rem
    }
    .g-sm-5,
    .gx-sm-5 {
        --ct24-gutter-x: 2rem
    }
    .g-sm-5,
    .gy-sm-5 {
        --ct24-gutter-y: 2rem
    }
    .g-sm-5_5,
    .gx-sm-5_5 {
        --ct24-gutter-x: 2.5rem
    }
    .g-sm-5_5,
    .gy-sm-5_5 {
        --ct24-gutter-y: 2.5rem
    }
    .g-sm-6,
    .gx-sm-6 {
        --ct24-gutter-x: 3rem
    }
    .g-sm-6,
    .gy-sm-6 {
        --ct24-gutter-y: 3rem
    }
}

@media(min-width:768px) {
    .col-md {
        flex: 1 0
    }
    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-md-0 {
        margin-left: 0
    }
    .offset-md-1 {
        margin-left: 8.33333333%
    }
    .offset-md-2 {
        margin-left: 16.66666667%
    }
    .offset-md-3 {
        margin-left: 25%
    }
    .offset-md-4 {
        margin-left: 33.33333333%
    }
    .offset-md-5 {
        margin-left: 41.66666667%
    }
    .offset-md-6 {
        margin-left: 50%
    }
    .offset-md-7 {
        margin-left: 58.33333333%
    }
    .offset-md-8 {
        margin-left: 66.66666667%
    }
    .offset-md-9 {
        margin-left: 75%
    }
    .offset-md-10 {
        margin-left: 83.33333333%
    }
    .offset-md-11 {
        margin-left: 91.66666667%
    }
    .g-md-0,
    .gx-md-0 {
        --ct24-gutter-x: 0
    }
    .g-md-0,
    .gy-md-0 {
        --ct24-gutter-y: 0
    }
    .g-md-1,
    .gx-md-1 {
        --ct24-gutter-x: 0.25rem
    }
    .g-md-1,
    .gy-md-1 {
        --ct24-gutter-y: 0.25rem
    }
    .g-md-2,
    .gx-md-2 {
        --ct24-gutter-x: 0.5rem
    }
    .g-md-2,
    .gy-md-2 {
        --ct24-gutter-y: 0.5rem
    }
    .g-md-2_5,
    .gx-md-2_5 {
        --ct24-gutter-x: 0.75rem
    }
    .g-md-2_5,
    .gy-md-2_5 {
        --ct24-gutter-y: 0.75rem
    }
    .g-md-3,
    .gx-md-3 {
        --ct24-gutter-x: 1rem
    }
    .g-md-3,
    .gy-md-3 {
        --ct24-gutter-y: 1rem
    }
    .g-md-4,
    .gx-md-4 {
        --ct24-gutter-x: 1.5rem
    }
    .g-md-4,
    .gy-md-4 {
        --ct24-gutter-y: 1.5rem
    }
    .g-md-5,
    .gx-md-5 {
        --ct24-gutter-x: 2rem
    }
    .g-md-5,
    .gy-md-5 {
        --ct24-gutter-y: 2rem
    }
    .g-md-5_5,
    .gx-md-5_5 {
        --ct24-gutter-x: 2.5rem
    }
    .g-md-5_5,
    .gy-md-5_5 {
        --ct24-gutter-y: 2.5rem
    }
    .g-md-6,
    .gx-md-6 {
        --ct24-gutter-x: 3rem
    }
    .g-md-6,
    .gy-md-6 {
        --ct24-gutter-y: 3rem
    }
}

@media(min-width:992px) {
    .col-lg {
        flex: 1 0
    }
    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-lg-0 {
        margin-left: 0
    }
    .offset-lg-1 {
        margin-left: 8.33333333%
    }
    .offset-lg-2 {
        margin-left: 16.66666667%
    }
    .offset-lg-3 {
        margin-left: 25%
    }
    .offset-lg-4 {
        margin-left: 33.33333333%
    }
    .offset-lg-5 {
        margin-left: 41.66666667%
    }
    .offset-lg-6 {
        margin-left: 50%
    }
    .offset-lg-7 {
        margin-left: 58.33333333%
    }
    .offset-lg-8 {
        margin-left: 66.66666667%
    }
    .offset-lg-9 {
        margin-left: 75%
    }
    .offset-lg-10 {
        margin-left: 83.33333333%
    }
    .offset-lg-11 {
        margin-left: 91.66666667%
    }
    .g-lg-0,
    .gx-lg-0 {
        --ct24-gutter-x: 0
    }
    .g-lg-0,
    .gy-lg-0 {
        --ct24-gutter-y: 0
    }
    .g-lg-1,
    .gx-lg-1 {
        --ct24-gutter-x: 0.25rem
    }
    .g-lg-1,
    .gy-lg-1 {
        --ct24-gutter-y: 0.25rem
    }
    .g-lg-2,
    .gx-lg-2 {
        --ct24-gutter-x: 0.5rem
    }
    .g-lg-2,
    .gy-lg-2 {
        --ct24-gutter-y: 0.5rem
    }
    .g-lg-2_5,
    .gx-lg-2_5 {
        --ct24-gutter-x: 0.75rem
    }
    .g-lg-2_5,
    .gy-lg-2_5 {
        --ct24-gutter-y: 0.75rem
    }
    .g-lg-3,
    .gx-lg-3 {
        --ct24-gutter-x: 1rem
    }
    .g-lg-3,
    .gy-lg-3 {
        --ct24-gutter-y: 1rem
    }
    .g-lg-4,
    .gx-lg-4 {
        --ct24-gutter-x: 1.5rem
    }
    .g-lg-4,
    .gy-lg-4 {
        --ct24-gutter-y: 1.5rem
    }
    .g-lg-5,
    .gx-lg-5 {
        --ct24-gutter-x: 2rem
    }
    .g-lg-5,
    .gy-lg-5 {
        --ct24-gutter-y: 2rem
    }
    .g-lg-5_5,
    .gx-lg-5_5 {
        --ct24-gutter-x: 2.5rem
    }
    .g-lg-5_5,
    .gy-lg-5_5 {
        --ct24-gutter-y: 2.5rem
    }
    .g-lg-6,
    .gx-lg-6 {
        --ct24-gutter-x: 3rem
    }
    .g-lg-6,
    .gy-lg-6 {
        --ct24-gutter-y: 3rem
    }
}

@media(min-width:1200px) {
    .col-xl {
        flex: 1 0
    }
    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-xl-0 {
        margin-left: 0
    }
    .offset-xl-1 {
        margin-left: 8.33333333%
    }
    .offset-xl-2 {
        margin-left: 16.66666667%
    }
    .offset-xl-3 {
        margin-left: 25%
    }
    .offset-xl-4 {
        margin-left: 33.33333333%
    }
    .offset-xl-5 {
        margin-left: 41.66666667%
    }
    .offset-xl-6 {
        margin-left: 50%
    }
    .offset-xl-7 {
        margin-left: 58.33333333%
    }
    .offset-xl-8 {
        margin-left: 66.66666667%
    }
    .offset-xl-9 {
        margin-left: 75%
    }
    .offset-xl-10 {
        margin-left: 83.33333333%
    }
    .offset-xl-11 {
        margin-left: 91.66666667%
    }
    .g-xl-0,
    .gx-xl-0 {
        --ct24-gutter-x: 0
    }
    .g-xl-0,
    .gy-xl-0 {
        --ct24-gutter-y: 0
    }
    .g-xl-1,
    .gx-xl-1 {
        --ct24-gutter-x: 0.25rem
    }
    .g-xl-1,
    .gy-xl-1 {
        --ct24-gutter-y: 0.25rem
    }
    .g-xl-2,
    .gx-xl-2 {
        --ct24-gutter-x: 0.5rem
    }
    .g-xl-2,
    .gy-xl-2 {
        --ct24-gutter-y: 0.5rem
    }
    .g-xl-2_5,
    .gx-xl-2_5 {
        --ct24-gutter-x: 0.75rem
    }
    .g-xl-2_5,
    .gy-xl-2_5 {
        --ct24-gutter-y: 0.75rem
    }
    .g-xl-3,
    .gx-xl-3 {
        --ct24-gutter-x: 1rem
    }
    .g-xl-3,
    .gy-xl-3 {
        --ct24-gutter-y: 1rem
    }
    .g-xl-4,
    .gx-xl-4 {
        --ct24-gutter-x: 1.5rem
    }
    .g-xl-4,
    .gy-xl-4 {
        --ct24-gutter-y: 1.5rem
    }
    .g-xl-5,
    .gx-xl-5 {
        --ct24-gutter-x: 2rem
    }
    .g-xl-5,
    .gy-xl-5 {
        --ct24-gutter-y: 2rem
    }
    .g-xl-5_5,
    .gx-xl-5_5 {
        --ct24-gutter-x: 2.5rem
    }
    .g-xl-5_5,
    .gy-xl-5_5 {
        --ct24-gutter-y: 2.5rem
    }
    .g-xl-6,
    .gx-xl-6 {
        --ct24-gutter-x: 3rem
    }
    .g-xl-6,
    .gy-xl-6 {
        --ct24-gutter-y: 3rem
    }
}

@media(min-width:1400px) {
    .col-xxl {
        flex: 1 0
    }
    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-xxl-0 {
        margin-left: 0
    }
    .offset-xxl-1 {
        margin-left: 8.33333333%
    }
    .offset-xxl-2 {
        margin-left: 16.66666667%
    }
    .offset-xxl-3 {
        margin-left: 25%
    }
    .offset-xxl-4 {
        margin-left: 33.33333333%
    }
    .offset-xxl-5 {
        margin-left: 41.66666667%
    }
    .offset-xxl-6 {
        margin-left: 50%
    }
    .offset-xxl-7 {
        margin-left: 58.33333333%
    }
    .offset-xxl-8 {
        margin-left: 66.66666667%
    }
    .offset-xxl-9 {
        margin-left: 75%
    }
    .offset-xxl-10 {
        margin-left: 83.33333333%
    }
    .offset-xxl-11 {
        margin-left: 91.66666667%
    }
    .g-xxl-0,
    .gx-xxl-0 {
        --ct24-gutter-x: 0
    }
    .g-xxl-0,
    .gy-xxl-0 {
        --ct24-gutter-y: 0
    }
    .g-xxl-1,
    .gx-xxl-1 {
        --ct24-gutter-x: 0.25rem
    }
    .g-xxl-1,
    .gy-xxl-1 {
        --ct24-gutter-y: 0.25rem
    }
    .g-xxl-2,
    .gx-xxl-2 {
        --ct24-gutter-x: 0.5rem
    }
    .g-xxl-2,
    .gy-xxl-2 {
        --ct24-gutter-y: 0.5rem
    }
    .g-xxl-2_5,
    .gx-xxl-2_5 {
        --ct24-gutter-x: 0.75rem
    }
    .g-xxl-2_5,
    .gy-xxl-2_5 {
        --ct24-gutter-y: 0.75rem
    }
    .g-xxl-3,
    .gx-xxl-3 {
        --ct24-gutter-x: 1rem
    }
    .g-xxl-3,
    .gy-xxl-3 {
        --ct24-gutter-y: 1rem
    }
    .g-xxl-4,
    .gx-xxl-4 {
        --ct24-gutter-x: 1.5rem
    }
    .g-xxl-4,
    .gy-xxl-4 {
        --ct24-gutter-y: 1.5rem
    }
    .g-xxl-5,
    .gx-xxl-5 {
        --ct24-gutter-x: 2rem
    }
    .g-xxl-5,
    .gy-xxl-5 {
        --ct24-gutter-y: 2rem
    }
    .g-xxl-5_5,
    .gx-xxl-5_5 {
        --ct24-gutter-x: 2.5rem
    }
    .g-xxl-5_5,
    .gy-xxl-5_5 {
        --ct24-gutter-y: 2.5rem
    }
    .g-xxl-6,
    .gx-xxl-6 {
        --ct24-gutter-x: 3rem
    }
    .g-xxl-6,
    .gy-xxl-6 {
        --ct24-gutter-y: 3rem
    }
}

.color-primary {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-primary-rgb), var(--ct24-text-opacity)) !important
}

.color-secondary {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-secondary-rgb), var(--ct24-text-opacity)) !important
}

.color-danger {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-danger-rgb), var(--ct24-text-opacity)) !important
}

.color-text-primary {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-text-primary-rgb), var(--ct24-text-opacity)) !important
}

.color-text-secondary {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-text-secondary-rgb), var(--ct24-text-opacity)) !important
}

.color-black {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-black-rgb), var(--ct24-text-opacity)) !important
}

.color-white {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-white-rgb), var(--ct24-text-opacity)) !important
}

.color-body {
    --ct24-text-opacity: 1;
    color: rgba(var(--ct24-body-color-rgb), var(--ct24-text-opacity)) !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.border {
    border: var(--ct24-border-width) var(--ct24-border-style) var(--ct24-border-color) !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: var(--ct24-border-width) var(--ct24-border-style) var(--ct24-border-color) !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-right: var(--ct24-border-width) var(--ct24-border-style) var(--ct24-border-color) !important
}

.border-end-0 {
    border-right: 0 !important
}

.border-bottom {
    border-bottom: var(--ct24-border-width) var(--ct24-border-style) var(--ct24-border-color) !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-left: var(--ct24-border-width) var(--ct24-border-style) var(--ct24-border-color) !important
}

.border-start-0 {
    border-left: 0 !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-2_5 {
    margin: .75rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 2rem !important
}

.m-5_5 {
    margin: 2.5rem !important
}

.m-6 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mx-2_5 {
    margin-right: .75rem !important;
    margin-left: .75rem !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.mx-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important
}

.mx-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important
}

.mx-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-2_5 {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.my-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
}

.my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-2_5 {
    margin-top: .75rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 2rem !important
}

.mt-5_5 {
    margin-top: 2.5rem !important
}

.mt-6 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-2_5 {
    margin-right: .75rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 2rem !important
}

.me-5_5 {
    margin-right: 2.5rem !important
}

.me-6 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-2_5 {
    margin-bottom: .75rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.article-strip-wrapper,
.column .article-strip-wrapper,
.column .component-spacer,
.component-spacer,
.mb-5 {
    margin-bottom: 2rem !important
}

.mb-5_5 {
    margin-bottom: 2.5rem !important
}

.mb-6 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-2_5 {
    margin-left: .75rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 2rem !important
}

.ms-5_5 {
    margin-left: 2.5rem !important
}

.ms-6 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.ml-0 {
    margin-left: 0 !important
}

.ml-1 {
    margin-left: .25rem !important
}

.ml-2 {
    margin-left: .5rem !important
}

.ml-2_5 {
    margin-left: .75rem !important
}

.ml-3 {
    margin-left: 1rem !important
}

.ml-4 {
    margin-left: 1.5rem !important
}

.ml-5 {
    margin-left: 2rem !important
}

.ml-5_5 {
    margin-left: 2.5rem !important
}

.ml-6 {
    margin-left: 3rem !important
}

.mr-0 {
    margin-right: 0 !important
}

.mr-1 {
    margin-right: .25rem !important
}

.mr-2 {
    margin-right: .5rem !important
}

.mr-2_5 {
    margin-right: .75rem !important
}

.mr-3 {
    margin-right: 1rem !important
}

.mr-4 {
    margin-right: 1.5rem !important
}

.mr-5 {
    margin-right: 2rem !important
}

.mr-5_5 {
    margin-right: 2.5rem !important
}

.mr-6 {
    margin-right: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-2_5 {
    padding: .75rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 2rem !important
}

.p-5_5 {
    padding: 2.5rem !important
}

.p-6 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-2_5 {
    padding-right: .75rem !important;
    padding-left: .75rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.px-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important
}

.px-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-2_5 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.py-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
}

.py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-2_5 {
    padding-top: .75rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 2rem !important
}

.pt-5_5 {
    padding-top: 2.5rem !important
}

.pt-6 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-2_5 {
    padding-right: .75rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 2rem !important
}

.pe-5_5 {
    padding-right: 2.5rem !important
}

.pe-6 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-2_5 {
    padding-bottom: .75rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 2rem !important
}

.pb-5_5 {
    padding-bottom: 2.5rem !important
}

.pb-6 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-2_5 {
    padding-left: .75rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 2rem !important
}

.ps-5_5 {
    padding-left: 2.5rem !important
}

.ps-6 {
    padding-left: 3rem !important
}

.pl-0 {
    padding-left: 0 !important
}

.pl-1 {
    padding-left: .25rem !important
}

.pl-2 {
    padding-left: .5rem !important
}

.pl-2_5 {
    padding-left: .75rem !important
}

.pl-3 {
    padding-left: 1rem !important
}

.pl-4 {
    padding-left: 1.5rem !important
}

.pl-5 {
    padding-left: 2rem !important
}

.pl-5_5 {
    padding-left: 2.5rem !important
}

.pl-6 {
    padding-left: 3rem !important
}

.pr-0 {
    padding-right: 0 !important
}

.pr-1 {
    padding-right: .25rem !important
}

.pr-2 {
    padding-right: .5rem !important
}

.pr-2_5 {
    padding-right: .75rem !important
}

.pr-3 {
    padding-right: 1rem !important
}

.pr-4 {
    padding-right: 1.5rem !important
}

.pr-5 {
    padding-right: 2rem !important
}

.pr-5_5 {
    padding-right: 2.5rem !important
}

.pr-6 {
    padding-right: 3rem !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-2_5 {
    gap: .75rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 2rem !important
}

.gap-5_5 {
    gap: 2.5rem !important
}

.gap-6 {
    gap: 3rem !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 600 !important
}

.fw-semibold {
    font-weight: 500 !important
}

.fw-bolder {
    font-weight: 700 !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.rounded {
    border-radius: var(--ct24-border-radius) !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: var(--ct24-border-radius-sm) !important
}

.rounded-2 {
    border-radius: var(--ct24-border-radius) !important
}

.rounded-3 {
    border-radius: var(--ct24-border-radius-lg) !important
}

.rounded-4 {
    border-radius: var(--ct24-border-radius-xl) !important
}

.rounded-5 {
    border-radius: var(--ct24-border-radius-2xl) !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: var(--ct24-border-radius-pill) !important
}

@media(min-width:480px) {
    .d-xs-inline {
        display: inline !important
    }
    .d-xs-inline-block {
        display: inline-block !important
    }
    .d-xs-block {
        display: block !important
    }
    .d-xs-grid {
        display: grid !important
    }
    .d-xs-table {
        display: table !important
    }
    .d-xs-table-row {
        display: table-row !important
    }
    .d-xs-table-cell {
        display: table-cell !important
    }
    .d-xs-flex {
        display: flex !important
    }
    .d-xs-inline-flex {
        display: inline-flex !important
    }
    .d-xs-none {
        display: none !important
    }
    .flex-xs-fill {
        flex: 1 1 auto !important
    }
    .flex-xs-row {
        flex-direction: row !important
    }
    .flex-xs-column {
        flex-direction: column !important
    }
    .flex-xs-row-reverse {
        flex-direction: row-reverse !important
    }
    .flex-xs-column-reverse {
        flex-direction: column-reverse !important
    }
    .flex-xs-grow-0 {
        flex-grow: 0 !important
    }
    .flex-xs-grow-1 {
        flex-grow: 1 !important
    }
    .flex-xs-shrink-0 {
        flex-shrink: 0 !important
    }
    .flex-xs-shrink-1 {
        flex-shrink: 1 !important
    }
    .flex-xs-wrap {
        flex-wrap: wrap !important
    }
    .flex-xs-nowrap {
        flex-wrap: nowrap !important
    }
    .flex-xs-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }
    .justify-content-xs-start {
        justify-content: flex-start !important
    }
    .justify-content-xs-end {
        justify-content: flex-end !important
    }
    .justify-content-xs-center {
        justify-content: center !important
    }
    .justify-content-xs-between {
        justify-content: space-between !important
    }
    .justify-content-xs-around {
        justify-content: space-around !important
    }
    .justify-content-xs-evenly {
        justify-content: space-evenly !important
    }
    .align-items-xs-start {
        align-items: flex-start !important
    }
    .align-items-xs-end {
        align-items: flex-end !important
    }
    .align-items-xs-center {
        align-items: center !important
    }
    .align-items-xs-baseline {
        align-items: baseline !important
    }
    .align-items-xs-stretch {
        align-items: stretch !important
    }
    .align-content-xs-start {
        align-content: flex-start !important
    }
    .align-content-xs-end {
        align-content: flex-end !important
    }
    .align-content-xs-center {
        align-content: center !important
    }
    .align-content-xs-between {
        align-content: space-between !important
    }
    .align-content-xs-around {
        align-content: space-around !important
    }
    .align-content-xs-stretch {
        align-content: stretch !important
    }
    .align-self-xs-auto {
        align-self: auto !important
    }
    .align-self-xs-start {
        align-self: flex-start !important
    }
    .align-self-xs-end {
        align-self: flex-end !important
    }
    .align-self-xs-center {
        align-self: center !important
    }
    .align-self-xs-baseline {
        align-self: baseline !important
    }
    .align-self-xs-stretch {
        align-self: stretch !important
    }
    .order-xs-first {
        order: -1 !important
    }
    .order-xs-0 {
        order: 0 !important
    }
    .order-xs-1 {
        order: 1 !important
    }
    .order-xs-2 {
        order: 2 !important
    }
    .order-xs-3 {
        order: 3 !important
    }
    .order-xs-4 {
        order: 4 !important
    }
    .order-xs-5 {
        order: 5 !important
    }
    .order-xs-last {
        order: 6 !important
    }
    .m-xs-0 {
        margin: 0 !important
    }
    .m-xs-1 {
        margin: .25rem !important
    }
    .m-xs-2 {
        margin: .5rem !important
    }
    .m-xs-2_5 {
        margin: .75rem !important
    }
    .m-xs-3 {
        margin: 1rem !important
    }
    .m-xs-4 {
        margin: 1.5rem !important
    }
    .m-xs-5 {
        margin: 2rem !important
    }
    .m-xs-5_5 {
        margin: 2.5rem !important
    }
    .m-xs-6 {
        margin: 3rem !important
    }
    .m-xs-auto {
        margin: auto !important
    }
    .mx-xs-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .mx-xs-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }
    .mx-xs-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }
    .mx-xs-2_5 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }
    .mx-xs-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }
    .mx-xs-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }
    .mx-xs-5 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
    .mx-xs-5_5 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
    .mx-xs-6 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }
    .mx-xs-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }
    .my-xs-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .my-xs-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }
    .my-xs-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }
    .my-xs-2_5 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }
    .my-xs-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }
    .my-xs-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }
    .my-xs-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .my-xs-5_5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .my-xs-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }
    .my-xs-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }
    .mt-xs-0 {
        margin-top: 0 !important
    }
    .mt-xs-1 {
        margin-top: .25rem !important
    }
    .mt-xs-2 {
        margin-top: .5rem !important
    }
    .mt-xs-2_5 {
        margin-top: .75rem !important
    }
    .mt-xs-3 {
        margin-top: 1rem !important
    }
    .mt-xs-4 {
        margin-top: 1.5rem !important
    }
    .mt-xs-5 {
        margin-top: 2rem !important
    }
    .mt-xs-5_5 {
        margin-top: 2.5rem !important
    }
    .mt-xs-6 {
        margin-top: 3rem !important
    }
    .mt-xs-auto {
        margin-top: auto !important
    }
    .me-xs-0 {
        margin-right: 0 !important
    }
    .me-xs-1 {
        margin-right: .25rem !important
    }
    .me-xs-2 {
        margin-right: .5rem !important
    }
    .me-xs-2_5 {
        margin-right: .75rem !important
    }
    .me-xs-3 {
        margin-right: 1rem !important
    }
    .me-xs-4 {
        margin-right: 1.5rem !important
    }
    .me-xs-5 {
        margin-right: 2rem !important
    }
    .me-xs-5_5 {
        margin-right: 2.5rem !important
    }
    .me-xs-6 {
        margin-right: 3rem !important
    }
    .me-xs-auto {
        margin-right: auto !important
    }
    .mb-xs-0 {
        margin-bottom: 0 !important
    }
    .mb-xs-1 {
        margin-bottom: .25rem !important
    }
    .mb-xs-2 {
        margin-bottom: .5rem !important
    }
    .mb-xs-2_5 {
        margin-bottom: .75rem !important
    }
    .mb-xs-3 {
        margin-bottom: 1rem !important
    }
    .mb-xs-4 {
        margin-bottom: 1.5rem !important
    }
    .mb-xs-5 {
        margin-bottom: 2rem !important
    }
    .mb-xs-5_5 {
        margin-bottom: 2.5rem !important
    }
    .mb-xs-6 {
        margin-bottom: 3rem !important
    }
    .mb-xs-auto {
        margin-bottom: auto !important
    }
    .ms-xs-0 {
        margin-left: 0 !important
    }
    .ms-xs-1 {
        margin-left: .25rem !important
    }
    .ms-xs-2 {
        margin-left: .5rem !important
    }
    .ms-xs-2_5 {
        margin-left: .75rem !important
    }
    .ms-xs-3 {
        margin-left: 1rem !important
    }
    .ms-xs-4 {
        margin-left: 1.5rem !important
    }
    .ms-xs-5 {
        margin-left: 2rem !important
    }
    .ms-xs-5_5 {
        margin-left: 2.5rem !important
    }
    .ms-xs-6 {
        margin-left: 3rem !important
    }
    .ms-xs-auto {
        margin-left: auto !important
    }
    .ml-xs-0 {
        margin-left: 0 !important
    }
    .ml-xs-1 {
        margin-left: .25rem !important
    }
    .ml-xs-2 {
        margin-left: .5rem !important
    }
    .ml-xs-2_5 {
        margin-left: .75rem !important
    }
    .ml-xs-3 {
        margin-left: 1rem !important
    }
    .ml-xs-4 {
        margin-left: 1.5rem !important
    }
    .ml-xs-5 {
        margin-left: 2rem !important
    }
    .ml-xs-5_5 {
        margin-left: 2.5rem !important
    }
    .ml-xs-6 {
        margin-left: 3rem !important
    }
    .mr-xs-0 {
        margin-right: 0 !important
    }
    .mr-xs-1 {
        margin-right: .25rem !important
    }
    .mr-xs-2 {
        margin-right: .5rem !important
    }
    .mr-xs-2_5 {
        margin-right: .75rem !important
    }
    .mr-xs-3 {
        margin-right: 1rem !important
    }
    .mr-xs-4 {
        margin-right: 1.5rem !important
    }
    .mr-xs-5 {
        margin-right: 2rem !important
    }
    .mr-xs-5_5 {
        margin-right: 2.5rem !important
    }
    .mr-xs-6 {
        margin-right: 3rem !important
    }
    .p-xs-0 {
        padding: 0 !important
    }
    .p-xs-1 {
        padding: .25rem !important
    }
    .p-xs-2 {
        padding: .5rem !important
    }
    .p-xs-2_5 {
        padding: .75rem !important
    }
    .p-xs-3 {
        padding: 1rem !important
    }
    .p-xs-4 {
        padding: 1.5rem !important
    }
    .p-xs-5 {
        padding: 2rem !important
    }
    .p-xs-5_5 {
        padding: 2.5rem !important
    }
    .p-xs-6 {
        padding: 3rem !important
    }
    .px-xs-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
    .px-xs-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }
    .px-xs-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }
    .px-xs-2_5 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }
    .px-xs-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }
    .px-xs-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }
    .px-xs-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
    .px-xs-5_5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }
    .px-xs-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }
    .py-xs-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .py-xs-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }
    .py-xs-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }
    .py-xs-2_5 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }
    .py-xs-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }
    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }
    .py-xs-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .py-xs-5_5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }
    .py-xs-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .pt-xs-0 {
        padding-top: 0 !important
    }
    .pt-xs-1 {
        padding-top: .25rem !important
    }
    .pt-xs-2 {
        padding-top: .5rem !important
    }
    .pt-xs-2_5 {
        padding-top: .75rem !important
    }
    .pt-xs-3 {
        padding-top: 1rem !important
    }
    .pt-xs-4 {
        padding-top: 1.5rem !important
    }
    .pt-xs-5 {
        padding-top: 2rem !important
    }
    .pt-xs-5_5 {
        padding-top: 2.5rem !important
    }
    .pt-xs-6 {
        padding-top: 3rem !important
    }
    .pe-xs-0 {
        padding-right: 0 !important
    }
    .pe-xs-1 {
        padding-right: .25rem !important
    }
    .pe-xs-2 {
        padding-right: .5rem !important
    }
    .pe-xs-2_5 {
        padding-right: .75rem !important
    }
    .pe-xs-3 {
        padding-right: 1rem !important
    }
    .pe-xs-4 {
        padding-right: 1.5rem !important
    }
    .pe-xs-5 {
        padding-right: 2rem !important
    }
    .pe-xs-5_5 {
        padding-right: 2.5rem !important
    }
    .pe-xs-6 {
        padding-right: 3rem !important
    }
    .pb-xs-0 {
        padding-bottom: 0 !important
    }
    .pb-xs-1 {
        padding-bottom: .25rem !important
    }
    .pb-xs-2 {
        padding-bottom: .5rem !important
    }
    .pb-xs-2_5 {
        padding-bottom: .75rem !important
    }
    .pb-xs-3 {
        padding-bottom: 1rem !important
    }
    .pb-xs-4 {
        padding-bottom: 1.5rem !important
    }
    .pb-xs-5 {
        padding-bottom: 2rem !important
    }
    .pb-xs-5_5 {
        padding-bottom: 2.5rem !important
    }
    .pb-xs-6 {
        padding-bottom: 3rem !important
    }
    .ps-xs-0 {
        padding-left: 0 !important
    }
    .ps-xs-1 {
        padding-left: .25rem !important
    }
    .ps-xs-2 {
        padding-left: .5rem !important
    }
    .ps-xs-2_5 {
        padding-left: .75rem !important
    }
    .ps-xs-3 {
        padding-left: 1rem !important
    }
    .ps-xs-4 {
        padding-left: 1.5rem !important
    }
    .ps-xs-5 {
        padding-left: 2rem !important
    }
    .ps-xs-5_5 {
        padding-left: 2.5rem !important
    }
    .ps-xs-6 {
        padding-left: 3rem !important
    }
    .pl-xs-0 {
        padding-left: 0 !important
    }
    .pl-xs-1 {
        padding-left: .25rem !important
    }
    .pl-xs-2 {
        padding-left: .5rem !important
    }
    .pl-xs-2_5 {
        padding-left: .75rem !important
    }
    .pl-xs-3 {
        padding-left: 1rem !important
    }
    .pl-xs-4 {
        padding-left: 1.5rem !important
    }
    .pl-xs-5 {
        padding-left: 2rem !important
    }
    .pl-xs-5_5 {
        padding-left: 2.5rem !important
    }
    .pl-xs-6 {
        padding-left: 3rem !important
    }
    .pr-xs-0 {
        padding-right: 0 !important
    }
    .pr-xs-1 {
        padding-right: .25rem !important
    }
    .pr-xs-2 {
        padding-right: .5rem !important
    }
    .pr-xs-2_5 {
        padding-right: .75rem !important
    }
    .pr-xs-3 {
        padding-right: 1rem !important
    }
    .pr-xs-4 {
        padding-right: 1.5rem !important
    }
    .pr-xs-5 {
        padding-right: 2rem !important
    }
    .pr-xs-5_5 {
        padding-right: 2.5rem !important
    }
    .pr-xs-6 {
        padding-right: 3rem !important
    }
    .gap-xs-0 {
        gap: 0 !important
    }
    .gap-xs-1 {
        gap: .25rem !important
    }
    .gap-xs-2 {
        gap: .5rem !important
    }
    .gap-xs-2_5 {
        gap: .75rem !important
    }
    .gap-xs-3 {
        gap: 1rem !important
    }
    .gap-xs-4 {
        gap: 1.5rem !important
    }
    .gap-xs-5 {
        gap: 2rem !important
    }
    .gap-xs-5_5 {
        gap: 2.5rem !important
    }
    .gap-xs-6 {
        gap: 3rem !important
    }
    .text-xs-start {
        text-align: left !important
    }
    .text-xs-end {
        text-align: right !important
    }
    .text-xs-center {
        text-align: center !important
    }
}

@media(min-width:576px) {
    .d-sm-inline {
        display: inline !important
    }
    .d-sm-inline-block {
        display: inline-block !important
    }
    .d-sm-block {
        display: block !important
    }
    .d-sm-grid {
        display: grid !important
    }
    .d-sm-table {
        display: table !important
    }
    .d-sm-table-row {
        display: table-row !important
    }
    .d-sm-table-cell {
        display: table-cell !important
    }
    .d-sm-flex {
        display: flex !important
    }
    .d-sm-inline-flex {
        display: inline-flex !important
    }
    .d-sm-none {
        display: none !important
    }
    .flex-sm-fill {
        flex: 1 1 auto !important
    }
    .flex-sm-row {
        flex-direction: row !important
    }
    .flex-sm-column {
        flex-direction: column !important
    }
    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }
    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }
    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }
    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }
    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }
    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }
    .flex-sm-wrap {
        flex-wrap: wrap !important
    }
    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }
    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }
    .justify-content-sm-start {
        justify-content: flex-start !important
    }
    .justify-content-sm-end {
        justify-content: flex-end !important
    }
    .justify-content-sm-center {
        justify-content: center !important
    }
    .justify-content-sm-between {
        justify-content: space-between !important
    }
    .justify-content-sm-around {
        justify-content: space-around !important
    }
    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }
    .align-items-sm-start {
        align-items: flex-start !important
    }
    .align-items-sm-end {
        align-items: flex-end !important
    }
    .align-items-sm-center {
        align-items: center !important
    }
    .align-items-sm-baseline {
        align-items: baseline !important
    }
    .align-items-sm-stretch {
        align-items: stretch !important
    }
    .align-content-sm-start {
        align-content: flex-start !important
    }
    .align-content-sm-end {
        align-content: flex-end !important
    }
    .align-content-sm-center {
        align-content: center !important
    }
    .align-content-sm-between {
        align-content: space-between !important
    }
    .align-content-sm-around {
        align-content: space-around !important
    }
    .align-content-sm-stretch {
        align-content: stretch !important
    }
    .align-self-sm-auto {
        align-self: auto !important
    }
    .align-self-sm-start {
        align-self: flex-start !important
    }
    .align-self-sm-end {
        align-self: flex-end !important
    }
    .align-self-sm-center {
        align-self: center !important
    }
    .align-self-sm-baseline {
        align-self: baseline !important
    }
    .align-self-sm-stretch {
        align-self: stretch !important
    }
    .order-sm-first {
        order: -1 !important
    }
    .order-sm-0 {
        order: 0 !important
    }
    .order-sm-1 {
        order: 1 !important
    }
    .order-sm-2 {
        order: 2 !important
    }
    .order-sm-3 {
        order: 3 !important
    }
    .order-sm-4 {
        order: 4 !important
    }
    .order-sm-5 {
        order: 5 !important
    }
    .order-sm-last {
        order: 6 !important
    }
    .m-sm-0 {
        margin: 0 !important
    }
    .m-sm-1 {
        margin: .25rem !important
    }
    .m-sm-2 {
        margin: .5rem !important
    }
    .m-sm-2_5 {
        margin: .75rem !important
    }
    .m-sm-3 {
        margin: 1rem !important
    }
    .m-sm-4 {
        margin: 1.5rem !important
    }
    .m-sm-5 {
        margin: 2rem !important
    }
    .m-sm-5_5 {
        margin: 2.5rem !important
    }
    .m-sm-6 {
        margin: 3rem !important
    }
    .m-sm-auto {
        margin: auto !important
    }
    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .mx-sm-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }
    .mx-sm-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }
    .mx-sm-2_5 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }
    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }
    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }
    .mx-sm-5 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
    .mx-sm-5_5 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
    .mx-sm-6 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }
    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }
    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }
    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }
    .my-sm-2_5 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }
    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }
    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }
    .my-sm-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .my-sm-5_5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .my-sm-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }
    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }
    .mt-sm-0 {
        margin-top: 0 !important
    }
    .mt-sm-1 {
        margin-top: .25rem !important
    }
    .mt-sm-2 {
        margin-top: .5rem !important
    }
    .mt-sm-2_5 {
        margin-top: .75rem !important
    }
    .mt-sm-3 {
        margin-top: 1rem !important
    }
    .mt-sm-4 {
        margin-top: 1.5rem !important
    }
    .mt-sm-5 {
        margin-top: 2rem !important
    }
    .mt-sm-5_5 {
        margin-top: 2.5rem !important
    }
    .mt-sm-6 {
        margin-top: 3rem !important
    }
    .mt-sm-auto {
        margin-top: auto !important
    }
    .me-sm-0 {
        margin-right: 0 !important
    }
    .me-sm-1 {
        margin-right: .25rem !important
    }
    .me-sm-2 {
        margin-right: .5rem !important
    }
    .me-sm-2_5 {
        margin-right: .75rem !important
    }
    .me-sm-3 {
        margin-right: 1rem !important
    }
    .me-sm-4 {
        margin-right: 1.5rem !important
    }
    .me-sm-5 {
        margin-right: 2rem !important
    }
    .me-sm-5_5 {
        margin-right: 2.5rem !important
    }
    .me-sm-6 {
        margin-right: 3rem !important
    }
    .me-sm-auto {
        margin-right: auto !important
    }
    .mb-sm-0 {
        margin-bottom: 0 !important
    }
    .mb-sm-1 {
        margin-bottom: .25rem !important
    }
    .mb-sm-2 {
        margin-bottom: .5rem !important
    }
    .mb-sm-2_5 {
        margin-bottom: .75rem !important
    }
    .mb-sm-3 {
        margin-bottom: 1rem !important
    }
    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }
    .mb-sm-5 {
        margin-bottom: 2rem !important
    }
    .mb-sm-5_5 {
        margin-bottom: 2.5rem !important
    }
    .mb-sm-6 {
        margin-bottom: 3rem !important
    }
    .mb-sm-auto {
        margin-bottom: auto !important
    }
    .ms-sm-0 {
        margin-left: 0 !important
    }
    .ms-sm-1 {
        margin-left: .25rem !important
    }
    .ms-sm-2 {
        margin-left: .5rem !important
    }
    .ms-sm-2_5 {
        margin-left: .75rem !important
    }
    .ms-sm-3 {
        margin-left: 1rem !important
    }
    .ms-sm-4 {
        margin-left: 1.5rem !important
    }
    .ms-sm-5 {
        margin-left: 2rem !important
    }
    .ms-sm-5_5 {
        margin-left: 2.5rem !important
    }
    .ms-sm-6 {
        margin-left: 3rem !important
    }
    .ms-sm-auto {
        margin-left: auto !important
    }
    .ml-sm-0 {
        margin-left: 0 !important
    }
    .ml-sm-1 {
        margin-left: .25rem !important
    }
    .ml-sm-2 {
        margin-left: .5rem !important
    }
    .ml-sm-2_5 {
        margin-left: .75rem !important
    }
    .ml-sm-3 {
        margin-left: 1rem !important
    }
    .ml-sm-4 {
        margin-left: 1.5rem !important
    }
    .ml-sm-5 {
        margin-left: 2rem !important
    }
    .ml-sm-5_5 {
        margin-left: 2.5rem !important
    }
    .ml-sm-6 {
        margin-left: 3rem !important
    }
    .mr-sm-0 {
        margin-right: 0 !important
    }
    .mr-sm-1 {
        margin-right: .25rem !important
    }
    .mr-sm-2 {
        margin-right: .5rem !important
    }
    .mr-sm-2_5 {
        margin-right: .75rem !important
    }
    .mr-sm-3 {
        margin-right: 1rem !important
    }
    .mr-sm-4 {
        margin-right: 1.5rem !important
    }
    .mr-sm-5 {
        margin-right: 2rem !important
    }
    .mr-sm-5_5 {
        margin-right: 2.5rem !important
    }
    .mr-sm-6 {
        margin-right: 3rem !important
    }
    .p-sm-0 {
        padding: 0 !important
    }
    .p-sm-1 {
        padding: .25rem !important
    }
    .p-sm-2 {
        padding: .5rem !important
    }
    .p-sm-2_5 {
        padding: .75rem !important
    }
    .p-sm-3 {
        padding: 1rem !important
    }
    .p-sm-4 {
        padding: 1.5rem !important
    }
    .p-sm-5 {
        padding: 2rem !important
    }
    .p-sm-5_5 {
        padding: 2.5rem !important
    }
    .p-sm-6 {
        padding: 3rem !important
    }
    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
    .px-sm-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }
    .px-sm-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }
    .px-sm-2_5 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }
    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }
    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }
    .px-sm-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
    .px-sm-5_5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }
    .px-sm-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }
    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }
    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }
    .py-sm-2_5 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }
    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }
    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }
    .py-sm-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .py-sm-5_5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }
    .py-sm-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .pt-sm-0 {
        padding-top: 0 !important
    }
    .pt-sm-1 {
        padding-top: .25rem !important
    }
    .pt-sm-2 {
        padding-top: .5rem !important
    }
    .pt-sm-2_5 {
        padding-top: .75rem !important
    }
    .pt-sm-3 {
        padding-top: 1rem !important
    }
    .pt-sm-4 {
        padding-top: 1.5rem !important
    }
    .pt-sm-5 {
        padding-top: 2rem !important
    }
    .pt-sm-5_5 {
        padding-top: 2.5rem !important
    }
    .pt-sm-6 {
        padding-top: 3rem !important
    }
    .pe-sm-0 {
        padding-right: 0 !important
    }
    .pe-sm-1 {
        padding-right: .25rem !important
    }
    .pe-sm-2 {
        padding-right: .5rem !important
    }
    .pe-sm-2_5 {
        padding-right: .75rem !important
    }
    .pe-sm-3 {
        padding-right: 1rem !important
    }
    .pe-sm-4 {
        padding-right: 1.5rem !important
    }
    .pe-sm-5 {
        padding-right: 2rem !important
    }
    .pe-sm-5_5 {
        padding-right: 2.5rem !important
    }
    .pe-sm-6 {
        padding-right: 3rem !important
    }
    .pb-sm-0 {
        padding-bottom: 0 !important
    }
    .pb-sm-1 {
        padding-bottom: .25rem !important
    }
    .pb-sm-2 {
        padding-bottom: .5rem !important
    }
    .pb-sm-2_5 {
        padding-bottom: .75rem !important
    }
    .pb-sm-3 {
        padding-bottom: 1rem !important
    }
    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }
    .pb-sm-5 {
        padding-bottom: 2rem !important
    }
    .pb-sm-5_5 {
        padding-bottom: 2.5rem !important
    }
    .pb-sm-6 {
        padding-bottom: 3rem !important
    }
    .ps-sm-0 {
        padding-left: 0 !important
    }
    .ps-sm-1 {
        padding-left: .25rem !important
    }
    .ps-sm-2 {
        padding-left: .5rem !important
    }
    .ps-sm-2_5 {
        padding-left: .75rem !important
    }
    .ps-sm-3 {
        padding-left: 1rem !important
    }
    .ps-sm-4 {
        padding-left: 1.5rem !important
    }
    .ps-sm-5 {
        padding-left: 2rem !important
    }
    .ps-sm-5_5 {
        padding-left: 2.5rem !important
    }
    .ps-sm-6 {
        padding-left: 3rem !important
    }
    .pl-sm-0 {
        padding-left: 0 !important
    }
    .pl-sm-1 {
        padding-left: .25rem !important
    }
    .pl-sm-2 {
        padding-left: .5rem !important
    }
    .pl-sm-2_5 {
        padding-left: .75rem !important
    }
    .pl-sm-3 {
        padding-left: 1rem !important
    }
    .pl-sm-4 {
        padding-left: 1.5rem !important
    }
    .pl-sm-5 {
        padding-left: 2rem !important
    }
    .pl-sm-5_5 {
        padding-left: 2.5rem !important
    }
    .pl-sm-6 {
        padding-left: 3rem !important
    }
    .pr-sm-0 {
        padding-right: 0 !important
    }
    .pr-sm-1 {
        padding-right: .25rem !important
    }
    .pr-sm-2 {
        padding-right: .5rem !important
    }
    .pr-sm-2_5 {
        padding-right: .75rem !important
    }
    .pr-sm-3 {
        padding-right: 1rem !important
    }
    .pr-sm-4 {
        padding-right: 1.5rem !important
    }
    .pr-sm-5 {
        padding-right: 2rem !important
    }
    .pr-sm-5_5 {
        padding-right: 2.5rem !important
    }
    .pr-sm-6 {
        padding-right: 3rem !important
    }
    .gap-sm-0 {
        gap: 0 !important
    }
    .gap-sm-1 {
        gap: .25rem !important
    }
    .gap-sm-2 {
        gap: .5rem !important
    }
    .gap-sm-2_5 {
        gap: .75rem !important
    }
    .gap-sm-3 {
        gap: 1rem !important
    }
    .gap-sm-4 {
        gap: 1.5rem !important
    }
    .gap-sm-5 {
        gap: 2rem !important
    }
    .gap-sm-5_5 {
        gap: 2.5rem !important
    }
    .gap-sm-6 {
        gap: 3rem !important
    }
    .text-sm-start {
        text-align: left !important
    }
    .text-sm-end {
        text-align: right !important
    }
    .text-sm-center {
        text-align: center !important
    }
}

@media(min-width:768px) {
    .d-md-inline {
        display: inline !important
    }
    .d-md-inline-block {
        display: inline-block !important
    }
    .d-md-block {
        display: block !important
    }
    .d-md-grid {
        display: grid !important
    }
    .d-md-table {
        display: table !important
    }
    .d-md-table-row {
        display: table-row !important
    }
    .d-md-table-cell {
        display: table-cell !important
    }
    .d-md-flex {
        display: flex !important
    }
    .d-md-inline-flex {
        display: inline-flex !important
    }
    .d-md-none {
        display: none !important
    }
    .flex-md-fill {
        flex: 1 1 auto !important
    }
    .flex-md-row {
        flex-direction: row !important
    }
    .flex-md-column {
        flex-direction: column !important
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }
    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }
    .flex-md-grow-0 {
        flex-grow: 0 !important
    }
    .flex-md-grow-1 {
        flex-grow: 1 !important
    }
    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }
    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }
    .flex-md-wrap {
        flex-wrap: wrap !important
    }
    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }
    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }
    .justify-content-md-start {
        justify-content: flex-start !important
    }
    .justify-content-md-end {
        justify-content: flex-end !important
    }
    .justify-content-md-center {
        justify-content: center !important
    }
    .justify-content-md-between {
        justify-content: space-between !important
    }
    .justify-content-md-around {
        justify-content: space-around !important
    }
    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }
    .align-items-md-start {
        align-items: flex-start !important
    }
    .align-items-md-end {
        align-items: flex-end !important
    }
    .align-items-md-center {
        align-items: center !important
    }
    .align-items-md-baseline {
        align-items: baseline !important
    }
    .align-items-md-stretch {
        align-items: stretch !important
    }
    .align-content-md-start {
        align-content: flex-start !important
    }
    .align-content-md-end {
        align-content: flex-end !important
    }
    .align-content-md-center {
        align-content: center !important
    }
    .align-content-md-between {
        align-content: space-between !important
    }
    .align-content-md-around {
        align-content: space-around !important
    }
    .align-content-md-stretch {
        align-content: stretch !important
    }
    .align-self-md-auto {
        align-self: auto !important
    }
    .align-self-md-start {
        align-self: flex-start !important
    }
    .align-self-md-end {
        align-self: flex-end !important
    }
    .align-self-md-center {
        align-self: center !important
    }
    .align-self-md-baseline {
        align-self: baseline !important
    }
    .align-self-md-stretch {
        align-self: stretch !important
    }
    .order-md-first {
        order: -1 !important
    }
    .order-md-0 {
        order: 0 !important
    }
    .order-md-1 {
        order: 1 !important
    }
    .order-md-2 {
        order: 2 !important
    }
    .order-md-3 {
        order: 3 !important
    }
    .order-md-4 {
        order: 4 !important
    }
    .order-md-5 {
        order: 5 !important
    }
    .order-md-last {
        order: 6 !important
    }
    .m-md-0 {
        margin: 0 !important
    }
    .m-md-1 {
        margin: .25rem !important
    }
    .m-md-2 {
        margin: .5rem !important
    }
    .m-md-2_5 {
        margin: .75rem !important
    }
    .m-md-3 {
        margin: 1rem !important
    }
    .m-md-4 {
        margin: 1.5rem !important
    }
    .m-md-5 {
        margin: 2rem !important
    }
    .m-md-5_5 {
        margin: 2.5rem !important
    }
    .m-md-6 {
        margin: 3rem !important
    }
    .m-md-auto {
        margin: auto !important
    }
    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .mx-md-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }
    .mx-md-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }
    .mx-md-2_5 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }
    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }
    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }
    .mx-md-5 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
    .mx-md-5_5 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
    .mx-md-6 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }
    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }
    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }
    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }
    .my-md-2_5 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }
    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }
    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }
    .my-md-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .my-md-5_5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .my-md-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }
    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }
    .mt-md-0 {
        margin-top: 0 !important
    }
    .mt-md-1 {
        margin-top: .25rem !important
    }
    .mt-md-2 {
        margin-top: .5rem !important
    }
    .mt-md-2_5 {
        margin-top: .75rem !important
    }
    .mt-md-3 {
        margin-top: 1rem !important
    }
    .mt-md-4 {
        margin-top: 1.5rem !important
    }
    .mt-md-5 {
        margin-top: 2rem !important
    }
    .mt-md-5_5 {
        margin-top: 2.5rem !important
    }
    .mt-md-6 {
        margin-top: 3rem !important
    }
    .mt-md-auto {
        margin-top: auto !important
    }
    .me-md-0 {
        margin-right: 0 !important
    }
    .me-md-1 {
        margin-right: .25rem !important
    }
    .me-md-2 {
        margin-right: .5rem !important
    }
    .me-md-2_5 {
        margin-right: .75rem !important
    }
    .me-md-3 {
        margin-right: 1rem !important
    }
    .me-md-4 {
        margin-right: 1.5rem !important
    }
    .me-md-5 {
        margin-right: 2rem !important
    }
    .me-md-5_5 {
        margin-right: 2.5rem !important
    }
    .me-md-6 {
        margin-right: 3rem !important
    }
    .me-md-auto {
        margin-right: auto !important
    }
    .mb-md-0 {
        margin-bottom: 0 !important
    }
    .mb-md-1 {
        margin-bottom: .25rem !important
    }
    .mb-md-2 {
        margin-bottom: .5rem !important
    }
    .mb-md-2_5 {
        margin-bottom: .75rem !important
    }
    .mb-md-3 {
        margin-bottom: 1rem !important
    }
    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }
    .mb-md-5 {
        margin-bottom: 2rem !important
    }
    .mb-md-5_5 {
        margin-bottom: 2.5rem !important
    }
    .mb-md-6 {
        margin-bottom: 3rem !important
    }
    .mb-md-auto {
        margin-bottom: auto !important
    }
    .ms-md-0 {
        margin-left: 0 !important
    }
    .ms-md-1 {
        margin-left: .25rem !important
    }
    .ms-md-2 {
        margin-left: .5rem !important
    }
    .ms-md-2_5 {
        margin-left: .75rem !important
    }
    .ms-md-3 {
        margin-left: 1rem !important
    }
    .ms-md-4 {
        margin-left: 1.5rem !important
    }
    .ms-md-5 {
        margin-left: 2rem !important
    }
    .ms-md-5_5 {
        margin-left: 2.5rem !important
    }
    .ms-md-6 {
        margin-left: 3rem !important
    }
    .ms-md-auto {
        margin-left: auto !important
    }
    .ml-md-0 {
        margin-left: 0 !important
    }
    .ml-md-1 {
        margin-left: .25rem !important
    }
    .ml-md-2 {
        margin-left: .5rem !important
    }
    .ml-md-2_5 {
        margin-left: .75rem !important
    }
    .ml-md-3 {
        margin-left: 1rem !important
    }
    .ml-md-4 {
        margin-left: 1.5rem !important
    }
    .ml-md-5 {
        margin-left: 2rem !important
    }
    .ml-md-5_5 {
        margin-left: 2.5rem !important
    }
    .ml-md-6 {
        margin-left: 3rem !important
    }
    .mr-md-0 {
        margin-right: 0 !important
    }
    .mr-md-1 {
        margin-right: .25rem !important
    }
    .mr-md-2 {
        margin-right: .5rem !important
    }
    .mr-md-2_5 {
        margin-right: .75rem !important
    }
    .mr-md-3 {
        margin-right: 1rem !important
    }
    .mr-md-4 {
        margin-right: 1.5rem !important
    }
    .mr-md-5 {
        margin-right: 2rem !important
    }
    .mr-md-5_5 {
        margin-right: 2.5rem !important
    }
    .mr-md-6 {
        margin-right: 3rem !important
    }
    .p-md-0 {
        padding: 0 !important
    }
    .p-md-1 {
        padding: .25rem !important
    }
    .p-md-2 {
        padding: .5rem !important
    }
    .p-md-2_5 {
        padding: .75rem !important
    }
    .p-md-3 {
        padding: 1rem !important
    }
    .p-md-4 {
        padding: 1.5rem !important
    }
    .p-md-5 {
        padding: 2rem !important
    }
    .p-md-5_5 {
        padding: 2.5rem !important
    }
    .p-md-6 {
        padding: 3rem !important
    }
    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
    .px-md-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }
    .px-md-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }
    .px-md-2_5 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }
    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }
    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }
    .px-md-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
    .px-md-5_5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }
    .px-md-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }
    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }
    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }
    .py-md-2_5 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }
    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }
    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }
    .py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .py-md-5_5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }
    .py-md-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .pt-md-0 {
        padding-top: 0 !important
    }
    .pt-md-1 {
        padding-top: .25rem !important
    }
    .pt-md-2 {
        padding-top: .5rem !important
    }
    .pt-md-2_5 {
        padding-top: .75rem !important
    }
    .pt-md-3 {
        padding-top: 1rem !important
    }
    .pt-md-4 {
        padding-top: 1.5rem !important
    }
    .pt-md-5 {
        padding-top: 2rem !important
    }
    .pt-md-5_5 {
        padding-top: 2.5rem !important
    }
    .pt-md-6 {
        padding-top: 3rem !important
    }
    .pe-md-0 {
        padding-right: 0 !important
    }
    .pe-md-1 {
        padding-right: .25rem !important
    }
    .pe-md-2 {
        padding-right: .5rem !important
    }
    .pe-md-2_5 {
        padding-right: .75rem !important
    }
    .pe-md-3 {
        padding-right: 1rem !important
    }
    .pe-md-4 {
        padding-right: 1.5rem !important
    }
    .pe-md-5 {
        padding-right: 2rem !important
    }
    .pe-md-5_5 {
        padding-right: 2.5rem !important
    }
    .pe-md-6 {
        padding-right: 3rem !important
    }
    .pb-md-0 {
        padding-bottom: 0 !important
    }
    .pb-md-1 {
        padding-bottom: .25rem !important
    }
    .pb-md-2 {
        padding-bottom: .5rem !important
    }
    .pb-md-2_5 {
        padding-bottom: .75rem !important
    }
    .pb-md-3 {
        padding-bottom: 1rem !important
    }
    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }
    .pb-md-5 {
        padding-bottom: 2rem !important
    }
    .pb-md-5_5 {
        padding-bottom: 2.5rem !important
    }
    .pb-md-6 {
        padding-bottom: 3rem !important
    }
    .ps-md-0 {
        padding-left: 0 !important
    }
    .ps-md-1 {
        padding-left: .25rem !important
    }
    .ps-md-2 {
        padding-left: .5rem !important
    }
    .ps-md-2_5 {
        padding-left: .75rem !important
    }
    .ps-md-3 {
        padding-left: 1rem !important
    }
    .ps-md-4 {
        padding-left: 1.5rem !important
    }
    .ps-md-5 {
        padding-left: 2rem !important
    }
    .ps-md-5_5 {
        padding-left: 2.5rem !important
    }
    .ps-md-6 {
        padding-left: 3rem !important
    }
    .pl-md-0 {
        padding-left: 0 !important
    }
    .pl-md-1 {
        padding-left: .25rem !important
    }
    .pl-md-2 {
        padding-left: .5rem !important
    }
    .pl-md-2_5 {
        padding-left: .75rem !important
    }
    .pl-md-3 {
        padding-left: 1rem !important
    }
    .pl-md-4 {
        padding-left: 1.5rem !important
    }
    .pl-md-5 {
        padding-left: 2rem !important
    }
    .pl-md-5_5 {
        padding-left: 2.5rem !important
    }
    .pl-md-6 {
        padding-left: 3rem !important
    }
    .pr-md-0 {
        padding-right: 0 !important
    }
    .pr-md-1 {
        padding-right: .25rem !important
    }
    .pr-md-2 {
        padding-right: .5rem !important
    }
    .pr-md-2_5 {
        padding-right: .75rem !important
    }
    .pr-md-3 {
        padding-right: 1rem !important
    }
    .pr-md-4 {
        padding-right: 1.5rem !important
    }
    .pr-md-5 {
        padding-right: 2rem !important
    }
    .pr-md-5_5 {
        padding-right: 2.5rem !important
    }
    .pr-md-6 {
        padding-right: 3rem !important
    }
    .gap-md-0 {
        gap: 0 !important
    }
    .gap-md-1 {
        gap: .25rem !important
    }
    .gap-md-2 {
        gap: .5rem !important
    }
    .gap-md-2_5 {
        gap: .75rem !important
    }
    .gap-md-3 {
        gap: 1rem !important
    }
    .gap-md-4 {
        gap: 1.5rem !important
    }
    .gap-md-5 {
        gap: 2rem !important
    }
    .gap-md-5_5 {
        gap: 2.5rem !important
    }
    .gap-md-6 {
        gap: 3rem !important
    }
    .text-md-start {
        text-align: left !important
    }
    .text-md-end {
        text-align: right !important
    }
    .text-md-center {
        text-align: center !important
    }
}

@media(min-width:992px) {
    .d-lg-inline {
        display: inline !important
    }
    .d-lg-inline-block {
        display: inline-block !important
    }
    .d-lg-block {
        display: block !important
    }
    .d-lg-grid {
        display: grid !important
    }
    .d-lg-table {
        display: table !important
    }
    .d-lg-table-row {
        display: table-row !important
    }
    .d-lg-table-cell {
        display: table-cell !important
    }
    .d-lg-flex {
        display: flex !important
    }
    .d-lg-inline-flex {
        display: inline-flex !important
    }
    .d-lg-none {
        display: none !important
    }
    .flex-lg-fill {
        flex: 1 1 auto !important
    }
    .flex-lg-row {
        flex-direction: row !important
    }
    .flex-lg-column {
        flex-direction: column !important
    }
    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }
    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }
    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }
    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }
    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }
    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }
    .flex-lg-wrap {
        flex-wrap: wrap !important
    }
    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }
    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }
    .justify-content-lg-start {
        justify-content: flex-start !important
    }
    .justify-content-lg-end {
        justify-content: flex-end !important
    }
    .justify-content-lg-center {
        justify-content: center !important
    }
    .justify-content-lg-between {
        justify-content: space-between !important
    }
    .justify-content-lg-around {
        justify-content: space-around !important
    }
    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }
    .align-items-lg-start {
        align-items: flex-start !important
    }
    .align-items-lg-end {
        align-items: flex-end !important
    }
    .align-items-lg-center {
        align-items: center !important
    }
    .align-items-lg-baseline {
        align-items: baseline !important
    }
    .align-items-lg-stretch {
        align-items: stretch !important
    }
    .align-content-lg-start {
        align-content: flex-start !important
    }
    .align-content-lg-end {
        align-content: flex-end !important
    }
    .align-content-lg-center {
        align-content: center !important
    }
    .align-content-lg-between {
        align-content: space-between !important
    }
    .align-content-lg-around {
        align-content: space-around !important
    }
    .align-content-lg-stretch {
        align-content: stretch !important
    }
    .align-self-lg-auto {
        align-self: auto !important
    }
    .align-self-lg-start {
        align-self: flex-start !important
    }
    .align-self-lg-end {
        align-self: flex-end !important
    }
    .align-self-lg-center {
        align-self: center !important
    }
    .align-self-lg-baseline {
        align-self: baseline !important
    }
    .align-self-lg-stretch {
        align-self: stretch !important
    }
    .order-lg-first {
        order: -1 !important
    }
    .order-lg-0 {
        order: 0 !important
    }
    .order-lg-1 {
        order: 1 !important
    }
    .order-lg-2 {
        order: 2 !important
    }
    .order-lg-3 {
        order: 3 !important
    }
    .order-lg-4 {
        order: 4 !important
    }
    .order-lg-5 {
        order: 5 !important
    }
    .order-lg-last {
        order: 6 !important
    }
    .m-lg-0 {
        margin: 0 !important
    }
    .m-lg-1 {
        margin: .25rem !important
    }
    .m-lg-2 {
        margin: .5rem !important
    }
    .m-lg-2_5 {
        margin: .75rem !important
    }
    .m-lg-3 {
        margin: 1rem !important
    }
    .m-lg-4 {
        margin: 1.5rem !important
    }
    .m-lg-5 {
        margin: 2rem !important
    }
    .m-lg-5_5 {
        margin: 2.5rem !important
    }
    .m-lg-6 {
        margin: 3rem !important
    }
    .m-lg-auto {
        margin: auto !important
    }
    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .mx-lg-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }
    .mx-lg-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }
    .mx-lg-2_5 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }
    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }
    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }
    .mx-lg-5 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
    .mx-lg-5_5 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
    .mx-lg-6 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }
    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }
    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }
    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }
    .my-lg-2_5 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }
    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }
    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }
    .my-lg-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .my-lg-5_5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .my-lg-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }
    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }
    .mt-lg-0 {
        margin-top: 0 !important
    }
    .mt-lg-1 {
        margin-top: .25rem !important
    }
    .mt-lg-2 {
        margin-top: .5rem !important
    }
    .mt-lg-2_5 {
        margin-top: .75rem !important
    }
    .mt-lg-3 {
        margin-top: 1rem !important
    }
    .mt-lg-4 {
        margin-top: 1.5rem !important
    }
    .mt-lg-5 {
        margin-top: 2rem !important
    }
    .mt-lg-5_5 {
        margin-top: 2.5rem !important
    }
    .mt-lg-6 {
        margin-top: 3rem !important
    }
    .mt-lg-auto {
        margin-top: auto !important
    }
    .me-lg-0 {
        margin-right: 0 !important
    }
    .me-lg-1 {
        margin-right: .25rem !important
    }
    .me-lg-2 {
        margin-right: .5rem !important
    }
    .me-lg-2_5 {
        margin-right: .75rem !important
    }
    .me-lg-3 {
        margin-right: 1rem !important
    }
    .me-lg-4 {
        margin-right: 1.5rem !important
    }
    .me-lg-5 {
        margin-right: 2rem !important
    }
    .me-lg-5_5 {
        margin-right: 2.5rem !important
    }
    .me-lg-6 {
        margin-right: 3rem !important
    }
    .me-lg-auto {
        margin-right: auto !important
    }
    .mb-lg-0 {
        margin-bottom: 0 !important
    }
    .mb-lg-1 {
        margin-bottom: .25rem !important
    }
    .mb-lg-2 {
        margin-bottom: .5rem !important
    }
    .mb-lg-2_5 {
        margin-bottom: .75rem !important
    }
    .mb-lg-3 {
        margin-bottom: 1rem !important
    }
    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }
    .mb-lg-5 {
        margin-bottom: 2rem !important
    }
    .mb-lg-5_5 {
        margin-bottom: 2.5rem !important
    }
    .mb-lg-6 {
        margin-bottom: 3rem !important
    }
    .mb-lg-auto {
        margin-bottom: auto !important
    }
    .ms-lg-0 {
        margin-left: 0 !important
    }
    .ms-lg-1 {
        margin-left: .25rem !important
    }
    .ms-lg-2 {
        margin-left: .5rem !important
    }
    .ms-lg-2_5 {
        margin-left: .75rem !important
    }
    .ms-lg-3 {
        margin-left: 1rem !important
    }
    .ms-lg-4 {
        margin-left: 1.5rem !important
    }
    .ms-lg-5 {
        margin-left: 2rem !important
    }
    .ms-lg-5_5 {
        margin-left: 2.5rem !important
    }
    .ms-lg-6 {
        margin-left: 3rem !important
    }
    .ms-lg-auto {
        margin-left: auto !important
    }
    .ml-lg-0 {
        margin-left: 0 !important
    }
    .ml-lg-1 {
        margin-left: .25rem !important
    }
    .ml-lg-2 {
        margin-left: .5rem !important
    }
    .ml-lg-2_5 {
        margin-left: .75rem !important
    }
    .ml-lg-3 {
        margin-left: 1rem !important
    }
    .ml-lg-4 {
        margin-left: 1.5rem !important
    }
    .ml-lg-5 {
        margin-left: 2rem !important
    }
    .ml-lg-5_5 {
        margin-left: 2.5rem !important
    }
    .ml-lg-6 {
        margin-left: 3rem !important
    }
    .mr-lg-0 {
        margin-right: 0 !important
    }
    .mr-lg-1 {
        margin-right: .25rem !important
    }
    .mr-lg-2 {
        margin-right: .5rem !important
    }
    .mr-lg-2_5 {
        margin-right: .75rem !important
    }
    .mr-lg-3 {
        margin-right: 1rem !important
    }
    .mr-lg-4 {
        margin-right: 1.5rem !important
    }
    .mr-lg-5 {
        margin-right: 2rem !important
    }
    .mr-lg-5_5 {
        margin-right: 2.5rem !important
    }
    .mr-lg-6 {
        margin-right: 3rem !important
    }
    .p-lg-0 {
        padding: 0 !important
    }
    .p-lg-1 {
        padding: .25rem !important
    }
    .p-lg-2 {
        padding: .5rem !important
    }
    .p-lg-2_5 {
        padding: .75rem !important
    }
    .p-lg-3 {
        padding: 1rem !important
    }
    .p-lg-4 {
        padding: 1.5rem !important
    }
    .p-lg-5 {
        padding: 2rem !important
    }
    .p-lg-5_5 {
        padding: 2.5rem !important
    }
    .p-lg-6 {
        padding: 3rem !important
    }
    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
    .px-lg-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }
    .px-lg-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }
    .px-lg-2_5 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }
    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }
    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }
    .px-lg-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
    .px-lg-5_5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }
    .px-lg-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }
    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }
    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }
    .py-lg-2_5 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }
    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }
    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }
    .py-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .py-lg-5_5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }
    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .pt-lg-0 {
        padding-top: 0 !important
    }
    .pt-lg-1 {
        padding-top: .25rem !important
    }
    .pt-lg-2 {
        padding-top: .5rem !important
    }
    .pt-lg-2_5 {
        padding-top: .75rem !important
    }
    .pt-lg-3 {
        padding-top: 1rem !important
    }
    .pt-lg-4 {
        padding-top: 1.5rem !important
    }
    .pt-lg-5 {
        padding-top: 2rem !important
    }
    .pt-lg-5_5 {
        padding-top: 2.5rem !important
    }
    .pt-lg-6 {
        padding-top: 3rem !important
    }
    .pe-lg-0 {
        padding-right: 0 !important
    }
    .pe-lg-1 {
        padding-right: .25rem !important
    }
    .pe-lg-2 {
        padding-right: .5rem !important
    }
    .pe-lg-2_5 {
        padding-right: .75rem !important
    }
    .pe-lg-3 {
        padding-right: 1rem !important
    }
    .pe-lg-4 {
        padding-right: 1.5rem !important
    }
    .pe-lg-5 {
        padding-right: 2rem !important
    }
    .pe-lg-5_5 {
        padding-right: 2.5rem !important
    }
    .pe-lg-6 {
        padding-right: 3rem !important
    }
    .pb-lg-0 {
        padding-bottom: 0 !important
    }
    .pb-lg-1 {
        padding-bottom: .25rem !important
    }
    .pb-lg-2 {
        padding-bottom: .5rem !important
    }
    .pb-lg-2_5 {
        padding-bottom: .75rem !important
    }
    .pb-lg-3 {
        padding-bottom: 1rem !important
    }
    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }
    .pb-lg-5 {
        padding-bottom: 2rem !important
    }
    .pb-lg-5_5 {
        padding-bottom: 2.5rem !important
    }
    .pb-lg-6 {
        padding-bottom: 3rem !important
    }
    .ps-lg-0 {
        padding-left: 0 !important
    }
    .ps-lg-1 {
        padding-left: .25rem !important
    }
    .ps-lg-2 {
        padding-left: .5rem !important
    }
    .ps-lg-2_5 {
        padding-left: .75rem !important
    }
    .ps-lg-3 {
        padding-left: 1rem !important
    }
    .ps-lg-4 {
        padding-left: 1.5rem !important
    }
    .ps-lg-5 {
        padding-left: 2rem !important
    }
    .ps-lg-5_5 {
        padding-left: 2.5rem !important
    }
    .ps-lg-6 {
        padding-left: 3rem !important
    }
    .pl-lg-0 {
        padding-left: 0 !important
    }
    .pl-lg-1 {
        padding-left: .25rem !important
    }
    .pl-lg-2 {
        padding-left: .5rem !important
    }
    .pl-lg-2_5 {
        padding-left: .75rem !important
    }
    .pl-lg-3 {
        padding-left: 1rem !important
    }
    .pl-lg-4 {
        padding-left: 1.5rem !important
    }
    .pl-lg-5 {
        padding-left: 2rem !important
    }
    .pl-lg-5_5 {
        padding-left: 2.5rem !important
    }
    .pl-lg-6 {
        padding-left: 3rem !important
    }
    .pr-lg-0 {
        padding-right: 0 !important
    }
    .pr-lg-1 {
        padding-right: .25rem !important
    }
    .pr-lg-2 {
        padding-right: .5rem !important
    }
    .pr-lg-2_5 {
        padding-right: .75rem !important
    }
    .pr-lg-3 {
        padding-right: 1rem !important
    }
    .pr-lg-4 {
        padding-right: 1.5rem !important
    }
    .pr-lg-5 {
        padding-right: 2rem !important
    }
    .pr-lg-5_5 {
        padding-right: 2.5rem !important
    }
    .pr-lg-6 {
        padding-right: 3rem !important
    }
    .gap-lg-0 {
        gap: 0 !important
    }
    .gap-lg-1 {
        gap: .25rem !important
    }
    .gap-lg-2 {
        gap: .5rem !important
    }
    .gap-lg-2_5 {
        gap: .75rem !important
    }
    .gap-lg-3 {
        gap: 1rem !important
    }
    .gap-lg-4 {
        gap: 1.5rem !important
    }
    .gap-lg-5 {
        gap: 2rem !important
    }
    .gap-lg-5_5 {
        gap: 2.5rem !important
    }
    .gap-lg-6 {
        gap: 3rem !important
    }
    .text-lg-start {
        text-align: left !important
    }
    .text-lg-end {
        text-align: right !important
    }
    .text-lg-center {
        text-align: center !important
    }
}

@media(min-width:1200px) {
    .d-xl-inline {
        display: inline !important
    }
    .d-xl-inline-block {
        display: inline-block !important
    }
    .d-xl-block {
        display: block !important
    }
    .d-xl-grid {
        display: grid !important
    }
    .d-xl-table {
        display: table !important
    }
    .d-xl-table-row {
        display: table-row !important
    }
    .d-xl-table-cell {
        display: table-cell !important
    }
    .d-xl-flex {
        display: flex !important
    }
    .d-xl-inline-flex {
        display: inline-flex !important
    }
    .d-xl-none {
        display: none !important
    }
    .flex-xl-fill {
        flex: 1 1 auto !important
    }
    .flex-xl-row {
        flex-direction: row !important
    }
    .flex-xl-column {
        flex-direction: column !important
    }
    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }
    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }
    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }
    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }
    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }
    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }
    .flex-xl-wrap {
        flex-wrap: wrap !important
    }
    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }
    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }
    .justify-content-xl-start {
        justify-content: flex-start !important
    }
    .justify-content-xl-end {
        justify-content: flex-end !important
    }
    .justify-content-xl-center {
        justify-content: center !important
    }
    .justify-content-xl-between {
        justify-content: space-between !important
    }
    .justify-content-xl-around {
        justify-content: space-around !important
    }
    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }
    .align-items-xl-start {
        align-items: flex-start !important
    }
    .align-items-xl-end {
        align-items: flex-end !important
    }
    .align-items-xl-center {
        align-items: center !important
    }
    .align-items-xl-baseline {
        align-items: baseline !important
    }
    .align-items-xl-stretch {
        align-items: stretch !important
    }
    .align-content-xl-start {
        align-content: flex-start !important
    }
    .align-content-xl-end {
        align-content: flex-end !important
    }
    .align-content-xl-center {
        align-content: center !important
    }
    .align-content-xl-between {
        align-content: space-between !important
    }
    .align-content-xl-around {
        align-content: space-around !important
    }
    .align-content-xl-stretch {
        align-content: stretch !important
    }
    .align-self-xl-auto {
        align-self: auto !important
    }
    .align-self-xl-start {
        align-self: flex-start !important
    }
    .align-self-xl-end {
        align-self: flex-end !important
    }
    .align-self-xl-center {
        align-self: center !important
    }
    .align-self-xl-baseline {
        align-self: baseline !important
    }
    .align-self-xl-stretch {
        align-self: stretch !important
    }
    .order-xl-first {
        order: -1 !important
    }
    .order-xl-0 {
        order: 0 !important
    }
    .order-xl-1 {
        order: 1 !important
    }
    .order-xl-2 {
        order: 2 !important
    }
    .order-xl-3 {
        order: 3 !important
    }
    .order-xl-4 {
        order: 4 !important
    }
    .order-xl-5 {
        order: 5 !important
    }
    .order-xl-last {
        order: 6 !important
    }
    .m-xl-0 {
        margin: 0 !important
    }
    .m-xl-1 {
        margin: .25rem !important
    }
    .m-xl-2 {
        margin: .5rem !important
    }
    .m-xl-2_5 {
        margin: .75rem !important
    }
    .m-xl-3 {
        margin: 1rem !important
    }
    .m-xl-4 {
        margin: 1.5rem !important
    }
    .m-xl-5 {
        margin: 2rem !important
    }
    .m-xl-5_5 {
        margin: 2.5rem !important
    }
    .m-xl-6 {
        margin: 3rem !important
    }
    .m-xl-auto {
        margin: auto !important
    }
    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .mx-xl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }
    .mx-xl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }
    .mx-xl-2_5 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }
    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }
    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }
    .mx-xl-5 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
    .mx-xl-5_5 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
    .mx-xl-6 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }
    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }
    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }
    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }
    .my-xl-2_5 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }
    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }
    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }
    .my-xl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .my-xl-5_5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .my-xl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }
    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }
    .mt-xl-0 {
        margin-top: 0 !important
    }
    .mt-xl-1 {
        margin-top: .25rem !important
    }
    .mt-xl-2 {
        margin-top: .5rem !important
    }
    .mt-xl-2_5 {
        margin-top: .75rem !important
    }
    .mt-xl-3 {
        margin-top: 1rem !important
    }
    .mt-xl-4 {
        margin-top: 1.5rem !important
    }
    .mt-xl-5 {
        margin-top: 2rem !important
    }
    .mt-xl-5_5 {
        margin-top: 2.5rem !important
    }
    .mt-xl-6 {
        margin-top: 3rem !important
    }
    .mt-xl-auto {
        margin-top: auto !important
    }
    .me-xl-0 {
        margin-right: 0 !important
    }
    .me-xl-1 {
        margin-right: .25rem !important
    }
    .me-xl-2 {
        margin-right: .5rem !important
    }
    .me-xl-2_5 {
        margin-right: .75rem !important
    }
    .me-xl-3 {
        margin-right: 1rem !important
    }
    .me-xl-4 {
        margin-right: 1.5rem !important
    }
    .me-xl-5 {
        margin-right: 2rem !important
    }
    .me-xl-5_5 {
        margin-right: 2.5rem !important
    }
    .me-xl-6 {
        margin-right: 3rem !important
    }
    .me-xl-auto {
        margin-right: auto !important
    }
    .mb-xl-0 {
        margin-bottom: 0 !important
    }
    .mb-xl-1 {
        margin-bottom: .25rem !important
    }
    .mb-xl-2 {
        margin-bottom: .5rem !important
    }
    .mb-xl-2_5 {
        margin-bottom: .75rem !important
    }
    .mb-xl-3 {
        margin-bottom: 1rem !important
    }
    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }
    .mb-xl-5 {
        margin-bottom: 2rem !important
    }
    .mb-xl-5_5 {
        margin-bottom: 2.5rem !important
    }
    .mb-xl-6 {
        margin-bottom: 3rem !important
    }
    .mb-xl-auto {
        margin-bottom: auto !important
    }
    .ms-xl-0 {
        margin-left: 0 !important
    }
    .ms-xl-1 {
        margin-left: .25rem !important
    }
    .ms-xl-2 {
        margin-left: .5rem !important
    }
    .ms-xl-2_5 {
        margin-left: .75rem !important
    }
    .ms-xl-3 {
        margin-left: 1rem !important
    }
    .ms-xl-4 {
        margin-left: 1.5rem !important
    }
    .ms-xl-5 {
        margin-left: 2rem !important
    }
    .ms-xl-5_5 {
        margin-left: 2.5rem !important
    }
    .ms-xl-6 {
        margin-left: 3rem !important
    }
    .ms-xl-auto {
        margin-left: auto !important
    }
    .ml-xl-0 {
        margin-left: 0 !important
    }
    .ml-xl-1 {
        margin-left: .25rem !important
    }
    .ml-xl-2 {
        margin-left: .5rem !important
    }
    .ml-xl-2_5 {
        margin-left: .75rem !important
    }
    .ml-xl-3 {
        margin-left: 1rem !important
    }
    .ml-xl-4 {
        margin-left: 1.5rem !important
    }
    .ml-xl-5 {
        margin-left: 2rem !important
    }
    .ml-xl-5_5 {
        margin-left: 2.5rem !important
    }
    .ml-xl-6 {
        margin-left: 3rem !important
    }
    .mr-xl-0 {
        margin-right: 0 !important
    }
    .mr-xl-1 {
        margin-right: .25rem !important
    }
    .mr-xl-2 {
        margin-right: .5rem !important
    }
    .mr-xl-2_5 {
        margin-right: .75rem !important
    }
    .mr-xl-3 {
        margin-right: 1rem !important
    }
    .mr-xl-4 {
        margin-right: 1.5rem !important
    }
    .mr-xl-5 {
        margin-right: 2rem !important
    }
    .mr-xl-5_5 {
        margin-right: 2.5rem !important
    }
    .mr-xl-6 {
        margin-right: 3rem !important
    }
    .p-xl-0 {
        padding: 0 !important
    }
    .p-xl-1 {
        padding: .25rem !important
    }
    .p-xl-2 {
        padding: .5rem !important
    }
    .p-xl-2_5 {
        padding: .75rem !important
    }
    .p-xl-3 {
        padding: 1rem !important
    }
    .p-xl-4 {
        padding: 1.5rem !important
    }
    .p-xl-5 {
        padding: 2rem !important
    }
    .p-xl-5_5 {
        padding: 2.5rem !important
    }
    .p-xl-6 {
        padding: 3rem !important
    }
    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
    .px-xl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }
    .px-xl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }
    .px-xl-2_5 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }
    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }
    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }
    .px-xl-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
    .px-xl-5_5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }
    .px-xl-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }
    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }
    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }
    .py-xl-2_5 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }
    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }
    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }
    .py-xl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .py-xl-5_5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }
    .py-xl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .pt-xl-0 {
        padding-top: 0 !important
    }
    .pt-xl-1 {
        padding-top: .25rem !important
    }
    .pt-xl-2 {
        padding-top: .5rem !important
    }
    .pt-xl-2_5 {
        padding-top: .75rem !important
    }
    .pt-xl-3 {
        padding-top: 1rem !important
    }
    .pt-xl-4 {
        padding-top: 1.5rem !important
    }
    .pt-xl-5 {
        padding-top: 2rem !important
    }
    .pt-xl-5_5 {
        padding-top: 2.5rem !important
    }
    .pt-xl-6 {
        padding-top: 3rem !important
    }
    .pe-xl-0 {
        padding-right: 0 !important
    }
    .pe-xl-1 {
        padding-right: .25rem !important
    }
    .pe-xl-2 {
        padding-right: .5rem !important
    }
    .pe-xl-2_5 {
        padding-right: .75rem !important
    }
    .pe-xl-3 {
        padding-right: 1rem !important
    }
    .pe-xl-4 {
        padding-right: 1.5rem !important
    }
    .pe-xl-5 {
        padding-right: 2rem !important
    }
    .pe-xl-5_5 {
        padding-right: 2.5rem !important
    }
    .pe-xl-6 {
        padding-right: 3rem !important
    }
    .pb-xl-0 {
        padding-bottom: 0 !important
    }
    .pb-xl-1 {
        padding-bottom: .25rem !important
    }
    .pb-xl-2 {
        padding-bottom: .5rem !important
    }
    .pb-xl-2_5 {
        padding-bottom: .75rem !important
    }
    .pb-xl-3 {
        padding-bottom: 1rem !important
    }
    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }
    .pb-xl-5 {
        padding-bottom: 2rem !important
    }
    .pb-xl-5_5 {
        padding-bottom: 2.5rem !important
    }
    .pb-xl-6 {
        padding-bottom: 3rem !important
    }
    .ps-xl-0 {
        padding-left: 0 !important
    }
    .ps-xl-1 {
        padding-left: .25rem !important
    }
    .ps-xl-2 {
        padding-left: .5rem !important
    }
    .ps-xl-2_5 {
        padding-left: .75rem !important
    }
    .ps-xl-3 {
        padding-left: 1rem !important
    }
    .ps-xl-4 {
        padding-left: 1.5rem !important
    }
    .ps-xl-5 {
        padding-left: 2rem !important
    }
    .ps-xl-5_5 {
        padding-left: 2.5rem !important
    }
    .ps-xl-6 {
        padding-left: 3rem !important
    }
    .pl-xl-0 {
        padding-left: 0 !important
    }
    .pl-xl-1 {
        padding-left: .25rem !important
    }
    .pl-xl-2 {
        padding-left: .5rem !important
    }
    .pl-xl-2_5 {
        padding-left: .75rem !important
    }
    .pl-xl-3 {
        padding-left: 1rem !important
    }
    .pl-xl-4 {
        padding-left: 1.5rem !important
    }
    .pl-xl-5 {
        padding-left: 2rem !important
    }
    .pl-xl-5_5 {
        padding-left: 2.5rem !important
    }
    .pl-xl-6 {
        padding-left: 3rem !important
    }
    .pr-xl-0 {
        padding-right: 0 !important
    }
    .pr-xl-1 {
        padding-right: .25rem !important
    }
    .pr-xl-2 {
        padding-right: .5rem !important
    }
    .pr-xl-2_5 {
        padding-right: .75rem !important
    }
    .pr-xl-3 {
        padding-right: 1rem !important
    }
    .pr-xl-4 {
        padding-right: 1.5rem !important
    }
    .pr-xl-5 {
        padding-right: 2rem !important
    }
    .pr-xl-5_5 {
        padding-right: 2.5rem !important
    }
    .pr-xl-6 {
        padding-right: 3rem !important
    }
    .gap-xl-0 {
        gap: 0 !important
    }
    .gap-xl-1 {
        gap: .25rem !important
    }
    .gap-xl-2 {
        gap: .5rem !important
    }
    .gap-xl-2_5 {
        gap: .75rem !important
    }
    .gap-xl-3 {
        gap: 1rem !important
    }
    .gap-xl-4 {
        gap: 1.5rem !important
    }
    .gap-xl-5 {
        gap: 2rem !important
    }
    .gap-xl-5_5 {
        gap: 2.5rem !important
    }
    .gap-xl-6 {
        gap: 3rem !important
    }
    .text-xl-start {
        text-align: left !important
    }
    .text-xl-end {
        text-align: right !important
    }
    .text-xl-center {
        text-align: center !important
    }
}

@media(min-width:1400px) {
    .d-xxl-inline {
        display: inline !important
    }
    .d-xxl-inline-block {
        display: inline-block !important
    }
    .d-xxl-block {
        display: block !important
    }
    .d-xxl-grid {
        display: grid !important
    }
    .d-xxl-table {
        display: table !important
    }
    .d-xxl-table-row {
        display: table-row !important
    }
    .d-xxl-table-cell {
        display: table-cell !important
    }
    .d-xxl-flex {
        display: flex !important
    }
    .d-xxl-inline-flex {
        display: inline-flex !important
    }
    .d-xxl-none {
        display: none !important
    }
    .flex-xxl-fill {
        flex: 1 1 auto !important
    }
    .flex-xxl-row {
        flex-direction: row !important
    }
    .flex-xxl-column {
        flex-direction: column !important
    }
    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }
    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }
    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }
    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }
    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }
    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }
    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }
    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }
    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }
    .justify-content-xxl-start {
        justify-content: flex-start !important
    }
    .justify-content-xxl-end {
        justify-content: flex-end !important
    }
    .justify-content-xxl-center {
        justify-content: center !important
    }
    .justify-content-xxl-between {
        justify-content: space-between !important
    }
    .justify-content-xxl-around {
        justify-content: space-around !important
    }
    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }
    .align-items-xxl-start {
        align-items: flex-start !important
    }
    .align-items-xxl-end {
        align-items: flex-end !important
    }
    .align-items-xxl-center {
        align-items: center !important
    }
    .align-items-xxl-baseline {
        align-items: baseline !important
    }
    .align-items-xxl-stretch {
        align-items: stretch !important
    }
    .align-content-xxl-start {
        align-content: flex-start !important
    }
    .align-content-xxl-end {
        align-content: flex-end !important
    }
    .align-content-xxl-center {
        align-content: center !important
    }
    .align-content-xxl-between {
        align-content: space-between !important
    }
    .align-content-xxl-around {
        align-content: space-around !important
    }
    .align-content-xxl-stretch {
        align-content: stretch !important
    }
    .align-self-xxl-auto {
        align-self: auto !important
    }
    .align-self-xxl-start {
        align-self: flex-start !important
    }
    .align-self-xxl-end {
        align-self: flex-end !important
    }
    .align-self-xxl-center {
        align-self: center !important
    }
    .align-self-xxl-baseline {
        align-self: baseline !important
    }
    .align-self-xxl-stretch {
        align-self: stretch !important
    }
    .order-xxl-first {
        order: -1 !important
    }
    .order-xxl-0 {
        order: 0 !important
    }
    .order-xxl-1 {
        order: 1 !important
    }
    .order-xxl-2 {
        order: 2 !important
    }
    .order-xxl-3 {
        order: 3 !important
    }
    .order-xxl-4 {
        order: 4 !important
    }
    .order-xxl-5 {
        order: 5 !important
    }
    .order-xxl-last {
        order: 6 !important
    }
    .m-xxl-0 {
        margin: 0 !important
    }
    .m-xxl-1 {
        margin: .25rem !important
    }
    .m-xxl-2 {
        margin: .5rem !important
    }
    .m-xxl-2_5 {
        margin: .75rem !important
    }
    .m-xxl-3 {
        margin: 1rem !important
    }
    .m-xxl-4 {
        margin: 1.5rem !important
    }
    .m-xxl-5 {
        margin: 2rem !important
    }
    .m-xxl-5_5 {
        margin: 2.5rem !important
    }
    .m-xxl-6 {
        margin: 3rem !important
    }
    .m-xxl-auto {
        margin: auto !important
    }
    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .mx-xxl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }
    .mx-xxl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }
    .mx-xxl-2_5 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }
    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }
    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }
    .mx-xxl-5 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }
    .mx-xxl-5_5 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }
    .mx-xxl-6 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }
    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }
    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
    .my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }
    .my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }
    .my-xxl-2_5 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }
    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }
    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }
    .my-xxl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
    .my-xxl-5_5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }
    .my-xxl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }
    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }
    .mt-xxl-0 {
        margin-top: 0 !important
    }
    .mt-xxl-1 {
        margin-top: .25rem !important
    }
    .mt-xxl-2 {
        margin-top: .5rem !important
    }
    .mt-xxl-2_5 {
        margin-top: .75rem !important
    }
    .mt-xxl-3 {
        margin-top: 1rem !important
    }
    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }
    .mt-xxl-5 {
        margin-top: 2rem !important
    }
    .mt-xxl-5_5 {
        margin-top: 2.5rem !important
    }
    .mt-xxl-6 {
        margin-top: 3rem !important
    }
    .mt-xxl-auto {
        margin-top: auto !important
    }
    .me-xxl-0 {
        margin-right: 0 !important
    }
    .me-xxl-1 {
        margin-right: .25rem !important
    }
    .me-xxl-2 {
        margin-right: .5rem !important
    }
    .me-xxl-2_5 {
        margin-right: .75rem !important
    }
    .me-xxl-3 {
        margin-right: 1rem !important
    }
    .me-xxl-4 {
        margin-right: 1.5rem !important
    }
    .me-xxl-5 {
        margin-right: 2rem !important
    }
    .me-xxl-5_5 {
        margin-right: 2.5rem !important
    }
    .me-xxl-6 {
        margin-right: 3rem !important
    }
    .me-xxl-auto {
        margin-right: auto !important
    }
    .mb-xxl-0 {
        margin-bottom: 0 !important
    }
    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }
    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }
    .mb-xxl-2_5 {
        margin-bottom: .75rem !important
    }
    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }
    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }
    .mb-xxl-5 {
        margin-bottom: 2rem !important
    }
    .mb-xxl-5_5 {
        margin-bottom: 2.5rem !important
    }
    .mb-xxl-6 {
        margin-bottom: 3rem !important
    }
    .mb-xxl-auto {
        margin-bottom: auto !important
    }
    .ms-xxl-0 {
        margin-left: 0 !important
    }
    .ms-xxl-1 {
        margin-left: .25rem !important
    }
    .ms-xxl-2 {
        margin-left: .5rem !important
    }
    .ms-xxl-2_5 {
        margin-left: .75rem !important
    }
    .ms-xxl-3 {
        margin-left: 1rem !important
    }
    .ms-xxl-4 {
        margin-left: 1.5rem !important
    }
    .ms-xxl-5 {
        margin-left: 2rem !important
    }
    .ms-xxl-5_5 {
        margin-left: 2.5rem !important
    }
    .ms-xxl-6 {
        margin-left: 3rem !important
    }
    .ms-xxl-auto {
        margin-left: auto !important
    }
    .ml-xxl-0 {
        margin-left: 0 !important
    }
    .ml-xxl-1 {
        margin-left: .25rem !important
    }
    .ml-xxl-2 {
        margin-left: .5rem !important
    }
    .ml-xxl-2_5 {
        margin-left: .75rem !important
    }
    .ml-xxl-3 {
        margin-left: 1rem !important
    }
    .ml-xxl-4 {
        margin-left: 1.5rem !important
    }
    .ml-xxl-5 {
        margin-left: 2rem !important
    }
    .ml-xxl-5_5 {
        margin-left: 2.5rem !important
    }
    .ml-xxl-6 {
        margin-left: 3rem !important
    }
    .mr-xxl-0 {
        margin-right: 0 !important
    }
    .mr-xxl-1 {
        margin-right: .25rem !important
    }
    .mr-xxl-2 {
        margin-right: .5rem !important
    }
    .mr-xxl-2_5 {
        margin-right: .75rem !important
    }
    .mr-xxl-3 {
        margin-right: 1rem !important
    }
    .mr-xxl-4 {
        margin-right: 1.5rem !important
    }
    .mr-xxl-5 {
        margin-right: 2rem !important
    }
    .mr-xxl-5_5 {
        margin-right: 2.5rem !important
    }
    .mr-xxl-6 {
        margin-right: 3rem !important
    }
    .p-xxl-0 {
        padding: 0 !important
    }
    .p-xxl-1 {
        padding: .25rem !important
    }
    .p-xxl-2 {
        padding: .5rem !important
    }
    .p-xxl-2_5 {
        padding: .75rem !important
    }
    .p-xxl-3 {
        padding: 1rem !important
    }
    .p-xxl-4 {
        padding: 1.5rem !important
    }
    .p-xxl-5 {
        padding: 2rem !important
    }
    .p-xxl-5_5 {
        padding: 2.5rem !important
    }
    .p-xxl-6 {
        padding: 3rem !important
    }
    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
    .px-xxl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }
    .px-xxl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }
    .px-xxl-2_5 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }
    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }
    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }
    .px-xxl-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }
    .px-xxl-5_5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }
    .px-xxl-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }
    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
    .py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }
    .py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }
    .py-xxl-2_5 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }
    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }
    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }
    .py-xxl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }
    .py-xxl-5_5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }
    .py-xxl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .pt-xxl-0 {
        padding-top: 0 !important
    }
    .pt-xxl-1 {
        padding-top: .25rem !important
    }
    .pt-xxl-2 {
        padding-top: .5rem !important
    }
    .pt-xxl-2_5 {
        padding-top: .75rem !important
    }
    .pt-xxl-3 {
        padding-top: 1rem !important
    }
    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }
    .pt-xxl-5 {
        padding-top: 2rem !important
    }
    .pt-xxl-5_5 {
        padding-top: 2.5rem !important
    }
    .pt-xxl-6 {
        padding-top: 3rem !important
    }
    .pe-xxl-0 {
        padding-right: 0 !important
    }
    .pe-xxl-1 {
        padding-right: .25rem !important
    }
    .pe-xxl-2 {
        padding-right: .5rem !important
    }
    .pe-xxl-2_5 {
        padding-right: .75rem !important
    }
    .pe-xxl-3 {
        padding-right: 1rem !important
    }
    .pe-xxl-4 {
        padding-right: 1.5rem !important
    }
    .pe-xxl-5 {
        padding-right: 2rem !important
    }
    .pe-xxl-5_5 {
        padding-right: 2.5rem !important
    }
    .pe-xxl-6 {
        padding-right: 3rem !important
    }
    .pb-xxl-0 {
        padding-bottom: 0 !important
    }
    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }
    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }
    .pb-xxl-2_5 {
        padding-bottom: .75rem !important
    }
    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }
    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }
    .pb-xxl-5 {
        padding-bottom: 2rem !important
    }
    .pb-xxl-5_5 {
        padding-bottom: 2.5rem !important
    }
    .pb-xxl-6 {
        padding-bottom: 3rem !important
    }
    .ps-xxl-0 {
        padding-left: 0 !important
    }
    .ps-xxl-1 {
        padding-left: .25rem !important
    }
    .ps-xxl-2 {
        padding-left: .5rem !important
    }
    .ps-xxl-2_5 {
        padding-left: .75rem !important
    }
    .ps-xxl-3 {
        padding-left: 1rem !important
    }
    .ps-xxl-4 {
        padding-left: 1.5rem !important
    }
    .ps-xxl-5 {
        padding-left: 2rem !important
    }
    .ps-xxl-5_5 {
        padding-left: 2.5rem !important
    }
    .ps-xxl-6 {
        padding-left: 3rem !important
    }
    .pl-xxl-0 {
        padding-left: 0 !important
    }
    .pl-xxl-1 {
        padding-left: .25rem !important
    }
    .pl-xxl-2 {
        padding-left: .5rem !important
    }
    .pl-xxl-2_5 {
        padding-left: .75rem !important
    }
    .pl-xxl-3 {
        padding-left: 1rem !important
    }
    .pl-xxl-4 {
        padding-left: 1.5rem !important
    }
    .pl-xxl-5 {
        padding-left: 2rem !important
    }
    .pl-xxl-5_5 {
        padding-left: 2.5rem !important
    }
    .pl-xxl-6 {
        padding-left: 3rem !important
    }
    .pr-xxl-0 {
        padding-right: 0 !important
    }
    .pr-xxl-1 {
        padding-right: .25rem !important
    }
    .pr-xxl-2 {
        padding-right: .5rem !important
    }
    .pr-xxl-2_5 {
        padding-right: .75rem !important
    }
    .pr-xxl-3 {
        padding-right: 1rem !important
    }
    .pr-xxl-4 {
        padding-right: 1.5rem !important
    }
    .pr-xxl-5 {
        padding-right: 2rem !important
    }
    .pr-xxl-5_5 {
        padding-right: 2.5rem !important
    }
    .pr-xxl-6 {
        padding-right: 3rem !important
    }
    .gap-xxl-0 {
        gap: 0 !important
    }
    .gap-xxl-1 {
        gap: .25rem !important
    }
    .gap-xxl-2 {
        gap: .5rem !important
    }
    .gap-xxl-2_5 {
        gap: .75rem !important
    }
    .gap-xxl-3 {
        gap: 1rem !important
    }
    .gap-xxl-4 {
        gap: 1.5rem !important
    }
    .gap-xxl-5 {
        gap: 2rem !important
    }
    .gap-xxl-5_5 {
        gap: 2.5rem !important
    }
    .gap-xxl-6 {
        gap: 3rem !important
    }
    .text-xxl-start {
        text-align: left !important
    }
    .text-xxl-end {
        text-align: right !important
    }
    .text-xxl-center {
        text-align: center !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }
    .d-print-inline-block {
        display: inline-block !important
    }
    .d-print-block {
        display: block !important
    }
    .d-print-grid {
        display: grid !important
    }
    .d-print-table {
        display: table !important
    }
    .d-print-table-row {
        display: table-row !important
    }
    .d-print-table-cell {
        display: table-cell !important
    }
    .d-print-flex {
        display: flex !important
    }
    .d-print-inline-flex {
        display: inline-flex !important
    }
    .d-print-none {
        display: none !important
    }
}

.gradient--breaking-x {
    background: linear-gradient(90deg, #ffa300 0, #ffeb00)
}

.gradient--breaking-y {
    background: linear-gradient(180deg, #ffa300 0, #ffeb00)
}

.gradient--primary-x {
    background: linear-gradient(90deg, #019ce1 0, #00288c)
}

.gradient--primary-y {
    background: linear-gradient(180deg, #019ce1 0, #00288c)
}

.fz-xl {
    font-size: 1.25rem;
    line-height: 2rem
}

.fz-l {
    font-size: 1.125rem;
    line-height: 1.625rem
}

.fz-m {
    font-size: 1rem;
    line-height: 1.5rem
}

.fz-s {
    font-size: .875rem;
    line-height: 1.25rem
}

.fz-xs {
    font-size: .75rem;
    line-height: 1rem
}

.ff-tv {
    font-family: TV Sans Screen, Helvetica, Arial, sans-serif
}

.ff-tvs {
    font-family: TV Sans Sport, Helvetica, Arial, sans-serif
}

.ff-ssp {
    font-family: Source Sans Pro, sans-serif
}

.tt-u {
    text-transform: uppercase
}

.fw-b {
    font-weight: 700
}

.fw-m {
    font-weight: 500
}

body:hover .sr-only a,
body:hover .sr-only button,
body:hover .sr-only input {
    display: none !important
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.b-0 {
    border: 0
}

.b-1 {
    border: 1px solid #e1e8fb
}

.b-t-1 {
    border-top: 1px solid #e1e8fb
}

.b-b-1 {
    border-bottom: 1px solid #e1e8fb
}

.b-b-1-brand {
    border-bottom: 1px solid #2054b1
}

.b-r-50 {
    border-radius: 50%
}

.b-c-b {
    border-color: #000
}

.b-c-w {
    border-color: #fff
}

.ta-r {
    text-align: right
}

.ta-l {
    text-align: left
}

.ta-c {
    text-align: center
}

.u-uppercase {
    text-transform: uppercase
}

.u-underline {
    text-decoration: underline
}

.color-text {
    color: #000528
}

.color-black {
    color: #000
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0
}

@media(min-width:768px) {
    .sticky-md {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0
    }
}

.c-t-l,
.c-t-m {
    color: #52556d
}

.c-t {
    color: #000528
}

.c-t-i {
    color: #fff !important
}

.bgc-t {
    background-color: transparent
}

.color-brand {
    color: #2054b1
}

.color-live {
    color: #ed1c24
}

*,
:after,
:before {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: var(--ct24-body-font-family);
    font-size: var(--ct24-body-font-size);
    font-weight: var(--ct24-body-font-weight);
    line-height: var(--ct24-body-line-height);
    color: var(--ct24-body-color);
    text-align: var(--ct24-body-text-align);
    background-color: var(--ct24-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25
}

.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    margin-top: 0
}

.h1 b,
.h1 strong,
.h2 b,
.h2 strong,
.h3 b,
.h3 strong,
.h4 b,
.h4 strong,
.h5 b,
.h5 strong,
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong {
    font-weight: inherit
}

.h5,
h5 {
    font-size: 1.125rem;
    line-height: 1.625rem
}

@media(min-width:768px) {
    .h5,
    h5 {
        font-size: 1.3125rem;
        line-height: 1.625rem
    }
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 600
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: 700
}

small {
    font-size: .875em
}

mark {
    padding: .1875em;
    background-color: var(--ct24-highlight-bg)
}

sub,
sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: var(--ct24-link-color);
    text-decoration: none
}

a:hover {
    color: var(--ct24-link-hover-color);
    text-decoration: underline
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    font-family: var(--ct24-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: .875em;
    color: var(--ct24-code-color);
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .1875rem .375rem;
    font-size: .875em;
    color: var(--ct24-body-bg);
    background-color: var(--ct24-body-color);
    border-radius: .25rem
}

kbd kbd {
    padding: 0;
    font-size: 1em
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.05rem + .6vw);
    line-height: inherit
}

@media(min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

html {
    font-size: 16px;
    line-height: 1.5rem;
    font-family: Source Sans Pro, sans-serif
}

body {
    font-size: 100%
}

p {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 1.5rem
}

@media(min-width:768px) {
    p {
        font-size: 1.25rem;
        line-height: 2rem;
        margin-bottom: 2rem
    }
}

ul {
    list-style: none;
    padding-left: 0
}

figure {
    margin: 0
}

.label,
b,
strong {
    font-weight: 600
}

.label {
    color: #043cdc;
    text-transform: uppercase
}

.label--sm {
    font-size: .75rem;
    line-height: .875rem;
    letter-spacing: .0375rem
}

.label--md {
    font-size: .875rem;
    line-height: 1rem
}

.label--lg,
.label--md {
    letter-spacing: .03125rem
}

.label--lg {
    font-size: 1rem;
    line-height: 1.125rem
}

.caption--14 {
    font-size: .875rem;
    line-height: normal;
    letter-spacing: .00625rem
}

.fs-14 {
    font-size: .875rem;
    line-height: 1.25rem
}

.ctg li,
.ctg p {
    font-size: 16px
}

.ctg li:before {
    content: none !important
}

.relative {
    position: relative
}

.h-100 {
    height: 100%
}

@media(min-width:992px) {
    .article-strip-wrapper,
    .component-spacer {
        margin-top: 1rem !important;
        margin-bottom: 3rem !important
    }
}

.column .article-strip-wrapper,
.column .component-spacer {
    margin-top: 0 !important
}

.z-0 {
    z-index: 0
}

.z-0,
.z-1 {
    position: relative
}

.z-1 {
    z-index: 1
}

@font-face {
    font-family: TV Sans Screen;
    font-style: normal;
    font-weight: 400;
    font-display: fallback;
    src: url(../fonts/tv-sans/tv_sans_screen_regular.woff2) format("woff2"), url(../fonts/tv-sans/tv_sans_screen_regular.woff) format("woff")
}

@font-face {
    font-family: TV Sans Screen;
    font-style: normal;
    font-weight: 500;
    font-display: fallback;
    src: url(../fonts/tv-sans/tv_sans_screen_medium.woff2) format("woff2"), url(../fonts/tv-sans/tv_sans_screen_medium.woff) format("woff")
}

@font-face {
    font-family: TV Sans Screen;
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/tv-sans/tv_sans_screen_bold.woff2) format("woff2"), url(../fonts/tv-sans/tv_sans_screen_bold.woff) format("woff")
}

@font-face {
    font-family: TV Slab;
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/tv-slab/tv_slab_bold.woff2) format("woff2"), url(../fonts/tv-slab/tv_slab_bold.woff) format("woff")
}

@font-face {
    font-family: CTico;
    src: url(../fonts/CTico.woff) format("woff"), url(../fonts/icons.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-display: swap;
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-regular.eot);
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-regular.eot) format("embedded-opentype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-regular.woff2) format("woff2"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-regular.woff) format("woff"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-regular.ttf) format("truetype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-regular.svg) format("svg")
}

@font-face {
    font-display: swap;
    font-family: Source Sans Pro;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-italic.eot);
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-italic.eot) format("embedded-opentype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-italic.woff2) format("woff2"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-italic.woff) format("woff"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-italic.ttf) format("truetype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-italic.svg) format("svg")
}

@font-face {
    font-display: swap;
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-600.eot);
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-600.eot) format("embedded-opentype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-600.woff2) format("woff2"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-600.woff) format("woff"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-600.ttf) format("truetype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-600.svg) format("svg")
}

@font-face {
    font-display: swap;
    font-family: Source Sans Pro;
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin_latin-ext-600italic.eot);
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin_latin-ext-600italic.eot) format("embedded-opentype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin_latin-ext-600italic.woff2) format("woff2"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin_latin-ext-600italic.woff) format("woff"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin_latin-ext-600italic.ttf) format("truetype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin_latin-ext-600italic.svg) format("svg")
}

@font-face {
    font-display: swap;
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-700.eot);
    src: url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-700.eot) format("embedded-opentype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-700.woff2) format("woff2"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-700.woff) format("woff"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-700.ttf) format("truetype"), url(../fonts/source-sans-pro/source-sans-pro-v21-latin-ext_latin-700.svg) format("svg")
}

.article {
    margin-top: 1rem;
    max-width: 904px
}

@media(min-width:768px) {
    .article {
        margin-top: 1.5rem
    }
}

.article .h1,
.article h1 {
    font-size: 1.75rem;
    line-height: 2rem
}

@media(min-width:768px) {
    .article .h1,
    .article h1 {
        font-size: 3rem;
        line-height: 3.5rem;
        letter-spacing: -.0625rem
    }
}

.article__perex-photo {
    margin-left: -1rem;
    margin-right: -1rem
}

@media(min-width:992px) {
    .article__perex-photo {
        margin-left: 0;
        margin-right: 0
    }
}

.article__content {
    
}

@media(min-width:992px) {
    .article__content {
        
  
    }
}

.article__content--wide {
    max-width: calc(904px + 2rem);
    margin-left: -16px;
    margin-right: -16px
}

@media(min-width:768px) {
    .article__content--wide {
        margin-left: 0;
        margin-right: 0
    }
}

.article__content-item {
    margin-bottom: 1.5rem
}

@media(min-width:768px) {
    .article__content-item {
        margin-bottom: 2rem
    }
}

.article__content-item>ol,
.article__content-item>ul {
    margin-bottom: 1.5rem
}

@media(min-width:768px) {
    .article__content-item>ol,
    .article__content-item>ul {
        margin-bottom: 2rem
    }
}

.article__content-item>ol li:last-child,
.article__content-item>ul li:last-child {
    margin-bottom: 0
}

.article__content-item>ol {
    padding-left: 1.125rem
}

@media(min-width:768px) {
    .article__content-item>ol {
        padding-left: 1.25rem
    }
}

.article__content-item>ul {
    list-style: none;
    padding-left: 0
}

.article__content-item>ul li {
    position: relative;
    padding-left: 1.125rem
}

.article__content-item>ul li:not(.slide):before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    background-color: #cccdd4;
    top: calc(.8125rem - 3.5px)
}

@media(min-width:768px) {
    .article__content-item>ul li {
        position: relative;
        padding-left: 1.25rem
    }
    .article__content-item>ul li:not(.slide):before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        left: 0;
        background-color: #cccdd4;
        top: calc(1rem - 4px)
    }
}

.article__content-item>ol li,
.article__content-item>ul li {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: .5rem
}

@media(min-width:768px) {
    .article__content-item>ol li,
    .article__content-item>ul li {
        font-size: 1.25rem;
        line-height: 2rem;
        margin-bottom: 1rem
    }
}

.article__content-item>p {
    margin-bottom: 1rem
}

@media(min-width:768px) {
    .article__content-item>p {
        margin-bottom: 1.5rem
    }
}

.article__content-item>h2 {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: .5rem
}

@media(min-width:768px) {
    .article__content-item>h2 {
        font-size: 1.75rem;
        line-height: 2rem;
        margin-bottom: 1rem
    }
}

.article__content-item>h3 {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: .25rem
}

@media(min-width:768px) {
    .article__content-item>h3 {
        font-size: 1.3125rem;
        line-height: 1.625rem;
        margin-bottom: .5rem
    }
}

.article__content-item>p+h2 {
    margin-top: 1.5rem
}

@media(min-width:768px) {
    .article__content-item>p+h2 {
        margin-top: 2rem
    }
}

.article__content-item>p+h3 {
    margin-top: 1.5rem
}

@media(min-width:768px) {
    .article__content-item--nested {
        max-width: 100%;
        padding-left: 0
    }
}

.article__section-title {
    font-family: TV Sans Screen, sans-serif;
    font-weight: 700;
    color: #00288c;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.75rem
}

@media(min-width:768px) {
    .article__section-title {
        font-size: 2.25rem;
        line-height: 2.625rem;
        letter-spacing: -.025rem;
        margin-bottom: 2rem
    }
}

.article__section-title:hover {
    text-decoration: none
}

@media(min-width:768px) {
    .section {
        margin-top: .5rem
    }
}

.section__content-item {
    max-width: 1248px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto
}

.section__content-item--wide {
    max-width: 100%;
    padding: 0
}

.tag-detail__header {
    max-width: 1248px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 1.5rem
}

@media(min-width:768px) {
    .tag-detail__header {
        padding-top: 2rem
    }
}

.tag-detail__header--extension {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    margin-top: unset;
    background: linear-gradient(-180deg, rgba(240, 243, 253, 0), #f0f3fd);
    display: grid;
    grid-template-columns: 0 auto;
    grid-template-rows: auto auto;
    grid-gap: 1rem 0;
    gap: 1rem 0;
    grid-template-areas: "Title Title" "Photo Description"
}

@media(min-width:768px) {
    .tag-detail__header--extension {
        grid-template-columns: auto 0;
        grid-template-rows: auto 1fr;
        gap: 1.5rem 0;
        grid-template-areas: "Title Photo" "Description Photo";
        padding: 2rem 1rem
    }
}

.tag-detail__header--with-photo {
    grid-template-columns: 108px auto;
    gap: 1rem
}

@media(min-width:768px) {
    .tag-detail__header--with-photo {
        grid-template-columns: auto 228px;
        gap: 1.5rem
    }
}

@media(min-width:1200px) {
    .tag-detail__header {
        background: none;
        padding-bottom: 0;
        display: block
    }
}

.tag-detail__title {
    grid-area: Title
}

.tag-detail__label {
    color: #043cdc;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .75rem;
    line-height: .875rem;
    letter-spacing: .0375rem;
    margin-bottom: .25rem
}

@media(min-width:768px) {
    .tag-detail__label {
        font-size: .875rem;
        line-height: 1rem;
        letter-spacing: .03125rem;
        margin-bottom: .5rem
    }
}

.tag-detail__name {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: 1rem
}

@media(min-width:768px) {
    .tag-detail__name {
        font-size: 2.25rem;
        line-height: 2.625rem;
        letter-spacing: -.025rem;
        margin-bottom: 3rem
    }
}

.tag-detail__content-item {
    max-width: 1248px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto
}

.tag-detail__content-item--wide {
    max-width: 100%;
    padding: 0
}

@media(min-width:1200px) {
    .tag-detail__content-item--with-tile {
        display: flex;
        gap: 1.5rem
    }
}

.tag-detail__tile {
    display: flex;
    gap: 1rem
}

@media(min-width:1200px) {
    .tag-detail__tile {
        width: 384px
    }
}

.tag-detail__description {
    grid-area: Description;
    color: #52556d;
    font-size: .75rem;
    line-height: 1rem
}

@media(min-width:768px) {
    .tag-detail__description {
        font-size: 1rem;
        line-height: 1.5rem;
        line-height: 1.375rem
    }
}

@media(min-width:1200px) {
    .tag-detail__description {
        padding: 2rem;
        border-radius: 2px;
        border: 1px solid #e1e8fb;
        background-color: #f0f3fd;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
}

.tag-detail__photo {
    flex-shrink: 0;
    grid-area: Photo
}

@media(min-width:768px) {
    .tag-detail__photo img {
        width: 100%
    }
    .tag-detail__photo {
        margin-top: 1.5rem
    }
}

@media(min-width:1200px) {
    .tag-detail__photo {
        margin-top: 0
    }
}

@media(min-width:768px) {
    .tag-detail__photo+.tag-detail__tile-text {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        padding-top: 1rem
    }
}

.tag-detail__photo-meta {
    font-size: .75rem;
    line-height: 1rem;
    color: #52556d
}

.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

@media(min-width:768px) {
    .page-404 {
        text-align: center
    }
}

.page-404__content {
    margin-top: 207px;
    margin-bottom: 127px;
    position: relative;
    z-index: 10
}

@media(min-width:768px) {
    .page-404__content {
        margin-top: 268px;
        margin-bottom: 187px
    }
}

.page-404__error-code {
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .page-404__error-code {
        margin-bottom: 2rem
    }
}

.page-404__title {
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2rem;
    margin-bottom: 20px;
    line-height: 32px
}

@media(min-width:768px) {
    .page-404__title {
        font-weight: 700
    }
}

.page-404__text {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    max-width: 65ch;
    font-family: TV Sans Screen, sans-serif;
    margin-bottom: 2rem
}

@media(min-width:768px) {
    .page-404__text {
        font-size: 1.75rem;
        line-height: 2rem;
        margin-left: auto;
        margin-right: auto
    }
}

.page-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem .5rem 1rem;
    gap: .5rem;
    height: 40px;
    font-size: 1rem;
    line-height: 1.125rem;
    font-family: Source Sans Pro, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    background-color: #043cdc;
    color: #fff;
    border: 0;
    overflow: visible;
    letter-spacing: .2px;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    transition: all .25s ease-in-out
}

.page-404__button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.page-404__button .icon {
    display: flex;
    width: 16px;
    height: 16px;
    color: #fff
}

.page-404__button:focus,
.page-404__button:hover {
    background-color: #00288c
}

.page-404__button:active {
    background-color: #000a50
}

.page-404__button.disabled,
.page-404__button:disabled,
.page-404__button[disabled] {
    pointer-events: none;
    background-color: #8690a7;
    color: #cccdd4
}

.page-404__button.disabled .icon,
.page-404__button:disabled .icon,
.page-404__button[disabled] .icon {
    color: #cccdd4
}

.page-404__button .icon {
    transform: rotate(90deg)
}

.article-link {
    position: relative
}

.article-link:hover .article-link__title {
    color: #000a64
}

.article-link__content {
    font-size: 16px;
    color: #52556d
}

.article-link__category:after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 2px 2px 6px;
    border-radius: 50%;
    background-color: currentColor
}

.article-link__thumbnail {
    flex: 0 0 33%
}

@media(min-width:576px) {
    .article-link__thumbnail {
        flex: 0 0 140px
    }
}

@media(min-width:992px) {
    .article-link__thumbnail {
        flex: 0 0 190px
    }
}

@media(min-width:1200px) {
    .article-link__thumbnail {
        flex: 0 0 266px
    }
}

@media(min-width:576px) {
    .article-link__thumbnail--important {
        flex: 0 0 190px
    }
}

@media(min-width:992px) {
    .article-link__thumbnail--important {
        flex: 0 0 264px
    }
}

@media(min-width:1200px) {
    .article-link__thumbnail--important {
        flex: 0 0 364px
    }
}

.article-link__flag {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 8px;
    border-radius: 20px;
    line-height: 1.2;
    background: rgba(0, 5, 40, .85);
    color: #fff;
    font-size: 12px
}

.article-link__flag--big {
    padding: 12px;
    font-size: 14px;
    border-radius: 24px
}

.article-link__flag-icon {
    width: 16px;
    height: 16px;
    fill: #fff
}

.article-link__flag-icon--big {
    width: 24px;
    height: 24px;
    fill: #fff
}

@media(min-width:1200px) {
    .article-link__flag--results {
        bottom: 78px
    }
}

@media(min-width:480px) {
    .article-link__category-link {
        padding-left: calc(33% + 12px)
    }
}

@media(min-width:576px) {
    .article-link__category-link {
        padding-left: 230px
    }
}

@media(min-width:768px) {
    .article-link__category-link {
        padding-left: 70%
    }
}

@media(min-width:1200px) {
    .article-link__category-link {
        padding-left: calc(100% - 182px)
    }
}

.article-link__category-link:before {
    content: "";
    display: block;
    width: 15%;
    height: 15px;
    margin-top: 8px;
    flex: 1 1;
    opacity: .5;
    border-left: 1px solid #52556d;
    border-bottom: 1px solid #52556d
}

@media(min-width:1200px) {
    .article-link--blog .article-link__wrapper {
        display: flex
    }
}

.article-link--blog .article-link__meta:before {
    content: "";
    background-color: #52556d;
    width: 100%;
    height: 1px;
    display: block;
    opacity: .5
}

@media(min-width:1200px) {
    .article-link--blog .article-link__meta:before {
        width: 1px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }
    .article-link--blog .article-link__meta {
        flex: 1 0 182px;
        position: relative
    }
}

.article-link--blog .article-link__autor {
    font-family: Source Sans Pro, sans-serif;
    text-transform: none;
    font-size: .875rem;
    color: #000528
}

.article-link--teaser {
    position: relative;
    display: block
}

@media(min-width:1200px) {
    .article-link--teaser .article-link__wrapper {
        display: flex
    }
}

.article-link--teaser .article-link__teaser {
    position: relative
}

@media(min-width:1200px) {
    .article-link--teaser .article-link__teaser {
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 0;
        margin-left: 0;
        width: 182px
    }
}

@media(max-width:991.98px) {
    .article-link--teaser .article-link__teaser {
        border: 1px solid #52556d
    }
}

.article-link--teaser .article-link__teaser:before {
    content: "";
    display: block;
    background-color: #fff
}

@media(max-width:991.98px) {
    .article-link--teaser .article-link__teaser:before {
        transform: rotate(45deg);
        border-top: 1px solid rgba(82, 85, 109, .5);
        border-left: 1px solid rgba(82, 85, 109, .5);
        top: -6px;
        left: 50px;
        width: 10px;
        height: 10px;
        position: absolute
    }
}

@media(min-width:1200px) {
    .article-link--teaser .article-link__teaser:before {
        content: "";
        background-color: #52556d;
        display: block;
        opacity: .5;
        width: 1px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }
}

.article-link--teaser .article-link__teaser:after {
    content: "";
    clear: both;
    display: block
}

.article-link--teaser .article-link__teaser-thumbnail {
    width: 100px;
    float: left
}

@media(min-width:1200px) {
    .article-link--teaser .article-link__teaser-thumbnail {
        float: none;
        order: 2;
        width: 166px
    }
    .article-link--teaser .article-link__teaser-info {
        order: 1
    }
    .article-link--teaser .article-link__teaser-title {
        order: 3
    }
    .article-link--teaser .article-link__teaser-category {
        display: block
    }
}

.article-link--teaser .article-link__teaser-title {
    color: #000528;
    font-size: .875rem;
    line-height: 1.25
}

.article-link--teaser .article-link__autor {
    font-family: Source Sans Pro, sans-serif;
    font-size: .875rem;
    text-transform: none;
    color: #000528
}

@media(min-width:1200px) {
    .article-link--teaser .article-link__title-wrapper {
        margin-right: 182px
    }
}

.article-link--video .article-link__thumbnail {
    position: relative;
    height: 100%
}

.article-link--video .article-link__thumbnail-playbutton-icon {
    fill: #fff
}

@media(max-width:575.98px) {
    .article-link--video .article-link__thumbnail-playbutton-icon {
        width: 16px;
        height: 16px
    }
}

.article-link--photogallery .article-link__button {
    width: 100%
}

@media(min-width:768px) {
    .article-link--photogallery .article-link__button {
        position: relative;
        top: -60px;
        width: auto
    }
}

.article-link--photogallery .article-link__button-wrapper {
    margin-top: -6px
}

@media(min-width:768px) {
    .article-link--photogallery .article-link__button-wrapper {
        position: absolute;
        right: 16px;
        bottom: 10px
    }
}

.article-link--photogallery .article-link__button-wrapper .btn__icon {
    margin-left: 10px
}

.article-link--videogallery {
    display: block;
    padding: 10px
}

@media(min-width:992px) {
    .article-link--videogallery {
        display: flex;
        padding: 0;
        background: none
    }
}

.article-link--videogallery .article-link__videolinks {
    margin-left: -4px
}

.article-link--videogallery .article-link__videolinks-item {
    padding: 4px
}

@media(min-width:992px) {
    .article-link--videogallery .article-link__videolinks-item {
        padding: 8px 8px 0
    }
}

.article-link--videogallery .article-link__videolinks-link {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    background: #fff;
    z-index: 0;
    color: #52556d
}

.article-link--videogallery .article-link__videolinks-link-inner {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center
}

.article-link--videogallery .article-link__videolinks .slick-track {
    margin-left: 0
}

.article-meta-sb {
    display: flex;
    flex-wrap: wrap;
    color: #52556d;
    font-size: .875rem;
    line-height: 1.25rem;
    justify-content: space-between
}

@media(min-width:768px) {
    .article-meta-sb {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

@media(min-width:480px)and (max-width:575.98px) {
    .article-meta-sb__created,
    .article-meta-sb__updated {
        flex: 1 0 50%;
        justify-content: space-between
    }
    .article-meta-sb__authors {
        flex: 0 1 100%;
        justify-content: space-between
    }
}

.article-meta-sb__top-wrapper {
    flex: 1 0 100%
}

@media(min-width:576px) {
    .article-meta-sb__top-wrapper {
        flex: initial
    }
}

@media(min-width:480px)and (max-width:575.98px) {
    .article-meta-sb__top-wrapper {
        flex-wrap: wrap
    }
}

.article-meta-sb__location {
    flex: 1 0 100%;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.article-meta-sb__date {
    width: 100%
}

@media(min-width:560px) {
    .article-meta-sb__date {
        width: auto
    }
    .article-meta-sb__date time:first-of-type {
        margin-right: 48px;
        padding-bottom: 2px;
        line-height: 1
    }
}

@media(min-width:576px) {
    .article-meta-sb__created {
        margin-right: 48px
    }
}

@media(max-width:575.98px) {
    .article-meta-sb__updated-title {
        display: none
    }
}

.article-meta-sb__authors {
    margin-left: auto
}

@media(min-width:480px)and (max-width:575.98px) {
    .article-meta-sb__icon {
        margin-left: auto
    }
}

.article-meta-sb__icon svg {
    fill: #52556d
}

.article-meta-sb__authors,
.article-meta-sb__created,
.article-meta-sb__updated {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.caption__content {
    display: block;
    max-width: 560px
}

@media(min-width:768px) {
    .caption--cover {
        padding: 86px 1rem 1rem;
        position: absolute;
        bottom: 0;
        background-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .82));
        color: #fff;
        width: 100%
    }
}

.caption__content,
.caption__source {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #52556d
}

.flash {
    font-size: .875rem;
    font-family: TV Sans Screen, sans-serif;
    padding: .2734375rem
}

.flash__inner {
    display: flex;
    justify-content: space-between;
    align-content: center
}

.flash__close {
    display: block;
    line-height: 1
}

.flash__close-inner {
    margin-top: 4px;
    cursor: pointer;
    fill: #000
}

.flash__close-inner:hover {
    transform: rotate(-90deg)
}

.icon {
    display: inline-block
}

img {
    max-width: 100%;
    height: auto
}

.image {
    position: relative
}

.image img {
    width: 100%;
    vertical-align: bottom
}

@media(min-width:480px)and (max-width:450px),
(min-width:576px)and (max-width:1060px)and (orientation:portrait),
(min-width:768px)and (max-width:1060px)and (orientation:landscape) {
    .image--perex-photo {
        height: 100%
    }
    .image--perex-photo img {
        position: absolute;
        height: 100%;
        width: auto;
        left: 50%;
        transform: translateX(-50%)
    }
}

.image--fullheight {
    height: 100%
}

.image--fullheight img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%)
}

@media(max-width:479.98px) {
    .image--fullheight-sm {
        height: 100%
    }
    .image--fullheight-sm img {
        height: 100%;
        object-fit: cover
    }
}

.image--fullheight-all {
    height: 100%
}

.image--fullheight-all img {
    height: 100%;
    object-fit: cover
}

.navbar {
    height: 48px;
    top: 0;
    z-index: 10002;
    font-family: TV Sans Sport, sans-serif;
    color: #fff;
    background: #2054b1;
    transition: top .25s ease-out
}

@media(min-width:768px) {
    .navbar {
        height: 56px
    }
}

.navbar--sticky-hidden {
    top: -48px
}

@media(min-width:768px) {
    .navbar--sticky-hidden {
        top: -56px
    }
}

.navbar-wrapper {
    max-width: 1200px;
    margin: 0 auto
}

.navbar__link-main-wrap {
    display: none
}

@media(min-width:768px) {
    .navbar__link-main-wrap {
        display: block;
        height: 56px;
        overflow: hidden
    }
}

.navbar__link-item,
.navbar__link-main-item {
    line-height: 1;
    font-weight: 500;
    display: inline-block;
    text-decoration: none
}

.navbar__link-item,
.navbar__link-item:hover,
.navbar__link-item:visited,
.navbar__link-main-item,
.navbar__link-main-item:hover,
.navbar__link-main-item:visited {
    color: #fff
}

.navbar__link-item:hover,
.navbar__link-main-item:hover {
    background-color: rgba(62, 136, 232, .3);
    cursor: pointer
}

.navbar__link-main-item {
    display: none;
    padding: 20px
}

@media(min-width:992px) {
    .navbar__link-main-item {
        display: inline-block
    }
}

.navbar__link-main-item--event {
    background-position: 0;
    background-repeat: no-repeat
}

.navbar__link-main-item--active {
    background-color: #043cdc
}

.navbar__link-main-item-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    margin-right: 20px
}

.navbar__link-main-item-icon img {
    transform: scale(3.2)
}

.navbar__link-item {
    width: 100%
}

@media(min-width:768px) {
    .navbar__dropdown {
        padding-top: 0
    }
}

@media(min-width:576px) {
    .navbar__columns {
        columns: 2;
        column-rule: 1px solid #000a64;
        column-gap: 0;
        page-break-inside: avoid;
        break-inside: avoid
    }
    .navbar__columns--primary {
        margin: 15px 0
    }
}

@media(min-width:768px) {
    .navbar__columns {
        columns: 3
    }
}

@media(min-width:992px) {
    .navbar__columns {
        columns: 4
    }
    .navbar__columns--primary {
        margin: 0
    }
    .navbar__columns--secondary {
        margin: 15px 0
    }
}

.navbar__side-wrap {
    flex: 0 0 auto
}

.navbar__dropdown-primary {
    display: block;
    position: absolute;
    width: 100%;
    top: 48px;
    background-color: #043cdc
}

@media(min-width:768px) {
    .navbar__dropdown-primary {
        top: 56px
    }
}

.navbar__dropdown-primary-title {
    color: #fff;
    font-family: TV Sans Sport, sans-serif;
    text-transform: uppercase
}

.navbar__dropdown-primary-title--active {
    background-color: #043cdc
}

.navbar__dropdown-primary-title:hover {
    background-color: rgba(62, 136, 232, .3);
    cursor: pointer
}

.navbar__dropdown-secondary {
    background-color: #000528
}

@media(min-width:992px) {
    .navbar__dropdown-secondary {
        max-width: 1024px;
        margin: 0 auto;
        background-color: #043cdc
    }
}

.navbar__dropdown-secondary-title {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-family: TV Sans Sport, sans-serif;
    text-transform: uppercase
}

@media(min-width:576px) {
    .navbar__dropdown-secondary-title {
        width: 100%
    }
}

.navbar__dropdown-secondary-title:before {
    content: "";
    position: absolute;
    top: 0;
    border-top: 1px solid #000a64
}

.navbar__dropdown-secondary-title--active {
    background-color: #000528;
    margin-bottom: 0
}

.navbar__dropdown-icon {
    fill: #fff
}

.navbar__dropdown-icon--close,
.navbar__dropdown-primary-title--active .navbar__dropdown-icon--menu,
.navbar__dropdown-secondary-title--active .navbar__dropdown-icon--menu {
    display: none
}

.navbar__dropdown-primary-title--active .navbar__dropdown-icon--close,
.navbar__dropdown-secondary-title--active .navbar__dropdown-icon--close {
    display: inline
}

.navbar__dropdown-primary-title--active .navbar__dropdown-icon--arrow,
.navbar__dropdown-secondary-title--active .navbar__dropdown-icon--arrow {
    transform: rotate(180deg)
}

.navbar__logo {
    width: 148px;
    width: auto;
    margin-left: 0;
    margin-right: 10px;
    fill: #fff
}

.navbar__logo-image {
    width: 90px;
    height: 20px
}

@media(min-width:768px) {
    .navbar__logo-image {
        width: 88px;
        height: 27px
    }
}

.navbar__logo-image svg * {
    fill: #fff
}

.navbar__hoverbox {
    color: #000528;
    text-transform: none
}

.navbar__hoverbox:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -6px;
    right: 42.5px;
    transform: translateX(50%)
}

@media(min-width:768px) {
    .navbar__hoverbox:before {
        right: 50px
    }
}

.navbar__hoverbox-wrap {
    position: absolute;
    height: 0;
    right: 0;
    top: 60px;
    width: 100vw;
    z-index: -1;
    opacity: 0;
    visibility: none
}

@media(min-width:768px) {
    .navbar__hoverbox-wrap {
        width: 280px
    }
}

.navbar__hoverbox-wrap:hover {
    padding-top: 8px;
    height: auto;
    opacity: 1;
    visibility: visible;
    top: 48px;
    z-index: 10003
}

@media(min-width:768px) {
    .navbar__hoverbox-wrap:hover {
        top: 56px
    }
}

.navbar__hoverbox-wrap:hover .navbar__hoverbox-content,
.navbar__hoverbox-wrap:hover .navbar__hoverbox-link,
.navbar__hoverbox-wrap:hover .navbar__hoverbox-title {
    display: inline-block
}

.navbar__hoverbox-wrap:hover .navbar__hoverbox {
    padding: 20px
}

.navbar__hoverbox-wrap:hover .navbar__hoverbox:before {
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent
}

.navbar__hoverbox-content,
.navbar__hoverbox-link,
.navbar__hoverbox-title {
    display: none
}

.navbar__hoverbox-title {
    font-weight: 500;
    color: #000528
}

.navbar__hoverbox-content {
    font-weight: 400;
    font-family: Source Sans Pro, sans-serif
}

.navbar__hoverbox-link {
    text-align: right;
    font-family: Source Sans Pro, sans-serif;
    line-height: 1.25rem;
    text-decoration: none
}

.navbar__live {
    height: 48px;
    width: 85px;
    overflow: hidden;
    position: relative;
    box-sizing: content-box;
    cursor: pointer
}

@media(min-width:768px) {
    .navbar__live {
        height: 56px;
        width: 100px
    }
}

.navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap {
    padding-top: 8px;
    height: auto;
    opacity: 1;
    visibility: visible;
    top: 48px;
    z-index: 10003
}

@media(min-width:768px) {
    .navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap {
        top: 56px
    }
}

.navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap .navbar__hoverbox-content,
.navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap .navbar__hoverbox-link,
.navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap .navbar__hoverbox-title {
    display: inline-block
}

.navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap .navbar__hoverbox {
    padding: 20px
}

.navbar__live:not(.live-no-hover):hover+.navbar__hoverbox-wrap .navbar__hoverbox:before {
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent
}

.navbar__live-image--offline {
    position: relative
}

.navbar__live-image--offline:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .8;
    background: #228900
}

.navbar__live-state {
    position: absolute;
    top: 0;
    font-size: .875rem;
    background-color: #ed1c24;
    padding: .3rem .3rem .2rem;
    line-height: 1
}

.navbar__offline-state {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 5px;
    text-align: center;
    font-size: .875rem;
    line-height: 1.2
}

.navbar__live-progressbar {
    position: absolute;
    bottom: 0;
    height: 4px;
    background-color: hsla(0, 0%, 100%, .48)
}

.navbar__live-progressbar-position {
    position: absolute;
    width: 18%;
    height: 4px;
    background-color: #ed1c24
}

@media(min-width:768px) {
    .navbar__search {
        max-width: 33.3%;
        margin-left: auto
    }
}

@media(min-width:992px) {
    .navbar__search {
        max-width: 25%
    }
}

.navbar__search-input {
    width: 100%;
    padding: 14px 10px;
    color: #000528;
    border: none;
    font-size: 1rem
}

.navbar__search-item--selected {
    background-color: #fff
}

.navbar__search-autocomplete {
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
    max-height: 300px;
    overflow-y: auto
}

@media(min-width:768px) {
    .navbar__search-autocomplete {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 42px
    }
}

.navbar__search-autocomplete--above {
    position: absolute;
    bottom: 62px;
    left: 20px;
    right: 20px
}

@media(min-width:768px) {
    .navbar__search-autocomplete--above {
        top: unset
    }
}

.navbar__search-autocomplete-item {
    padding: 16px 10px;
    line-height: 1;
    font-weight: 400;
    font-family: Source Sans Pro, sans-serif;
    text-transform: none
}

.navbar__search-autocomplete-item--highlight {
    font-weight: 700
}

.collapsed {
    display: none
}

.perex-result {
    position: relative
}

@media(min-width:576px) {
    .perex-result {
        display: flex;
        flex-direction: column;
        margin-top: 4px
    }
}

@media(min-width:992px) {
    .perex-result {
        margin-top: 8px
    }
}

@media(min-width:1200px) {
    .perex-result {
        margin-top: 16px
    }
}

.perex-result__team-background {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%
}

.perex-result__team-background:after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: skewX(-10deg);
    transform-origin: 100% 0
}

.perex-result__team {
    position: relative
}

@media(max-width:479.98px) {
    .perex-result__team {
        height: 52px
    }
}

@media(min-width:576px) {
    .perex-result__team {
        min-height: 44px;
        flex: 1 0 50%;
        justify-content: space-between
    }
}

@media(min-width:768px) {
    .perex-result__team {
        min-height: 60px
    }
}

@media(min-width:1200px) {
    .perex-result__team {
        min-height: 64px
    }
}

.perex-result__team--first {
    margin-bottom: 1px
}

@media(min-width:576px) {
    .perex-result__team--first {
        margin-bottom: 4px;
        margin-right: 2px
    }
}

@media(min-width:1200px) {
    .perex-result__team--first {
        margin-right: 4px
    }
}

@media(min-width:768px) {
    .perex-result__team--first .perex-result__team-background {
        transform: translateX(-10px)
    }
    .perex-result__team--first .perex-result__team-background:after {
        position: absolute;
        z-index: -1;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        transform: skewX(-10deg);
        transform-origin: 0 100%
    }
}

.perex-result__team--second {
    margin-bottom: 0
}

@media(min-width:576px) {
    .perex-result__team--second .perex-result__team-title {
        justify-content: flex-start
    }
}

@media(min-width:768px) {
    .perex-result__team--second .perex-result__team-background {
        transform: translateX(10px)
    }
}

@media(max-width:479.98px) {
    .perex-result__team--second .perex-result__team-score {
        flex: 0 0 65px;
        padding-left: 14px
    }
}

@media(min-width:576px) {
    .perex-result__team--second .perex-result__team-score {
        right: auto;
        left: 0
    }
    .perex-result__team--second {
        flex-direction: row-reverse;
        margin-left: 2px
    }
}

@media(min-width:1200px) {
    .perex-result__team--second {
        margin-left: 4px
    }
}

.perex-result__team-list {
    position: relative
}

.perex-result__team-list:before {
    content: "";
    position: absolute;
    width: calc(100% - 16px);
    height: 100%;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background: linear-gradient(90deg, #019ce1 0, #00288c)
}

@media(min-width:576px) {
    .perex-result__team-list:before {
        width: 50px
    }
    .perex-result__team-list {
        display: flex
    }
}

.perex-result__team-logo {
    flex: 0 0 32px;
    position: relative
}

@media(min-width:576px) {
    .perex-result__team-logo {
        flex: 1 0 56px
    }
}

@media(min-width:768px) {
    .perex-result__team-logo {
        flex: 1 0 64px
    }
}

@media(min-width:992px) {
    .perex-result__team-logo {
        flex: 1 0 80px
    }
}

@media(min-width:1200px) {
    .perex-result__team-logo {
        flex: 1 0 96px
    }
}

.perex-result__team-logo-inner {
    width: 100%;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: cover
}

@media(min-width:576px) {
    .perex-result__team-logo-inner {
        height: 56px
    }
}

@media(min-width:768px) {
    .perex-result__team-logo-inner {
        height: 64px
    }
}

@media(min-width:992px) {
    .perex-result__team-logo-inner {
        height: 80px
    }
}

@media(min-width:1200px) {
    .perex-result__team-logo-inner {
        height: 96px
    }
}

.perex-result__team-title {
    line-height: 1.25rem;
    color: #000528;
    z-index: 1
}

@media(min-width:576px) {
    .perex-result__team-title {
        width: 100%;
        justify-content: flex-end
    }
}

@media(min-width:768px) {
    .perex-result__team-title {
        line-height: 1.625rem;
        font-size: 1.3125rem
    }
}

.perex-result__team-score {
    position: relative;
    width: 56px;
    padding-left: 5px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
    justify-content: flex-end;
    color: #fff;
    font-size: 1.3125rem;
    overflow: hidden;
    margin-left: auto
}

.perex-result__team-score:after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: skewX(-10deg);
    transform-origin: 0 100%
}

@media(min-width:576px) {
    .perex-result__team-score:after {
        transform: skewX(0deg)
    }
    .perex-result__team-score {
        flex: 1 0 48px;
        padding-left: 0
    }
}

@media(min-width:768px) {
    .perex-result__team-score {
        font-size: 1.5rem;
        flex: 1 0 60px
    }
}

@media(min-width:992px) {
    .perex-result__team-score {
        font-size: 1.5rem;
        flex: 1 0 64px
    }
}

.perex-result__team-score-inner {
    margin: 0 auto
}

@media(min-width:576px) {
    .perex-result__team-score-inner {
        margin: 0 auto
    }
}

.perex-result__subresult {
    margin-bottom: 1px;
    color: #fff;
    position: relative
}

.perex-result__subresult:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -4px;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #019ce1 0, #00288c)
}

@media(min-width:576px) {
    .perex-result__subresult {
        width: calc(100% - 2*(56px + 16px + 8px));
        align-self: center
    }
}

@media(min-width:768px) {
    .perex-result__subresult {
        width: calc(100% - 2*(64px + 16px + 8px))
    }
}

@media(min-width:992px) {
    .perex-result__subresult {
        width: calc(100% - 2*(80px + 16px + 8px))
    }
}

@media(min-width:1200px) {
    .perex-result__subresult {
        width: calc(100% - 2*(96px + 16px + 8px))
    }
}

.perex-result__subresult--channel {
    font-family: Source Sans Pro, sans-serif
}

.perex-result__subresult-channel {
    height: 16px;
    margin-bottom: -2px;
    margin-left: 4px
}

.perex-result__info {
    background-color: #000528;
    color: #fff
}

@media(min-width:576px) {
    .perex-result__info {
        width: calc(100% - 2*(56px + 16px + 8px));
        align-self: center
    }
}

@media(min-width:768px) {
    .perex-result__info {
        width: calc(100% - 2*(64px + 16px + 8px))
    }
}

@media(min-width:992px) {
    .perex-result__info {
        width: calc(100% - 2*(80px + 16px + 8px))
    }
}

@media(min-width:1200px) {
    .perex-result__info {
        width: calc(100% - 2*(96px + 16px + 8px))
    }
}

.perex-result--opener .perex-result__team-list {
    flex-direction: row
}

@media(min-width:480px)and (max-width:767.98px) {
    .perex-result--opener .perex-result__team-list {
        flex-direction: column;
        margin-bottom: 12px
    }
}

.perex-result--opener .perex-result__team-list:before {
    z-index: 0
}

@media(min-width:480px) {
    .perex-result--opener .perex-result__team-list:before {
        height: 45px;
        width: calc(100% - 29px);
        top: 40px
    }
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team-list:before {
        height: 56px;
        width: calc(100% - 176px);
        top: 4px
    }
}

@media(min-width:1200px) {
    .perex-result--opener .perex-result__team-list:before {
        height: 64px
    }
}

.perex-result--opener .perex-result__team--first {
    margin-right: 2px
}

.perex-result--opener .perex-result__team--first .perex-result__team-score {
    flex: 0 0 60px
}

.perex-result--opener .perex-result__team--first .perex-result__team-background {
    transform: none
}

.perex-result--opener .perex-result__team--first .perex-result__team-title {
    justify-content: flex-start
}

@media(min-width:480px) {
    .perex-result--opener .perex-result__team--first {
        margin-right: 0;
        margin-bottom: 1px
    }
}

@media(min-width:768px) {
    .perex-result--opener .perex-result__team--first {
        margin-right: 0
    }
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team--first {
        margin-right: 2px
    }
}

.perex-result--opener .perex-result__team--second {
    flex-direction: row;
    margin-left: 0
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team--second {
        flex-direction: row-reverse;
        margin-left: 2px
    }
}

.perex-result--opener .perex-result__team--second .perex-result__team-score {
    flex: 0 0 68px
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team--second .perex-result__team-score {
        flex: 0 0 60px
    }
}

@media(max-width:767.98px) {
    .perex-result--opener .perex-result__team--second .perex-result__team-background:after {
        width: 95%
    }
}

@media(min-width:576px)and (max-width:767.98px) {
    .perex-result--opener .perex-result__team--second .perex-result__team-logo-inner {
        margin-left: 8px
    }
}

.perex-result--opener .perex-result__team {
    height: 40px
}

@media(min-width:576px) {
    .perex-result--opener .perex-result__team {
        flex: 1 0 100%;
        max-height: 40px;
        min-height: 40px
    }
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team {
        height: 56px;
        flex: 1 0 50%;
        max-height: 56px
    }
}

@media(min-width:1200px) {
    .perex-result--opener .perex-result__team {
        min-height: 64px
    }
}

.perex-result--opener .perex-result__team .perex-result__team-title {
    line-height: 1.25rem
}

@media(min-width:768px) {
    .perex-result--opener .perex-result__team .perex-result__team-title {
        justify-content: flex-start
    }
}

.perex-result--opener .perex-result__team .perex-result__team-score {
    color: #000528;
    font-size: 1.3125rem
}

.perex-result--opener .perex-result__team .perex-result__team-score:after {
    background: linear-gradient(180deg, #019ce1 0, #00288c)
}

@media(max-width:767.98px) {
    .perex-result--opener .perex-result__team .perex-result__team-score:after {
        transform: skewX(-10deg)
    }
}

@media(min-width:1200px)and (max-width:1399.98px) {
    .perex-result--opener .perex-result__team .perex-result__team-score {
        font-size: 1.5rem
    }
}

.perex-result--opener .perex-result__team-logo {
    flex: 0 0 32px;
    position: relative
}

@media(min-width:576px) {
    .perex-result--opener .perex-result__team-logo {
        flex: 1 0 32px
    }
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team-logo {
        flex: 1 0 52px
    }
}

@media(min-width:1200px) {
    .perex-result--opener .perex-result__team-logo {
        flex: 1 0 60px
    }
}

.perex-result--opener .perex-result__team-logo .perex-result__team-logo-inner {
    max-height: 32px
}

@media(min-width:992px) {
    .perex-result--opener .perex-result__team-logo .perex-result__team-logo-inner {
        max-height: 52px
    }
}

@media(min-width:1200px) {
    .perex-result--opener .perex-result__team-logo .perex-result__team-logo-inner {
        max-height: 60px
    }
}

.perex-result--opener-two-posts {
    margin: 12px 16px
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team-list {
        flex-direction: column;
        margin-bottom: 12px
    }
    .perex-result--opener-two-posts .perex-result__team-list:before {
        height: 45px;
        width: calc(100% - 29px);
        top: 40px
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team-list:before {
        height: 44px;
        width: calc(100% - 176px);
        top: 4px
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team--first {
        margin-right: 0
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team--first {
        margin-right: 2px
    }
    .perex-result--opener-two-posts .perex-result__team--first .perex-result__team-background {
        transform: translateX(-10px)
    }
    .perex-result--opener-two-posts .perex-result__team--first .perex-result__team-score {
        flex: 0 0 48px
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team--second {
        flex-direction: row;
        margin-left: 0
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team--second {
        flex-direction: row-reverse;
        margin-left: 2px
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team--second .perex-result__team-score {
        flex: 0 0 68px
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team--second .perex-result__team-score {
        flex: 0 0 48px
    }
}

@media(max-width:991.98px) {
    .perex-result--opener-two-posts .perex-result__team--second .perex-result__team-background:after {
        width: 95%
    }
}

@media(min-width:576px)and (max-width:991.98px) {
    .perex-result--opener-two-posts .perex-result__team--second .perex-result__team-logo-inner {
        margin-left: 8px
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team {
        height: 40px;
        flex: 1 0 100%;
        max-height: 40px
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team {
        height: 44px;
        flex: 1 0 50%;
        min-height: 44px;
        max-height: 44px
    }
}

@media(max-width:991.98px) {
    .perex-result--opener-two-posts .perex-result__team .perex-result__team-score:after {
        transform: skewX(-10deg)
    }
}

@media(min-width:1200px)and (max-width:1399.98px) {
    .perex-result--opener-two-posts .perex-result__team .perex-result__team-score {
        font-size: 1.5rem
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team-logo {
        flex: 0 0 32px
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team-logo {
        flex: 1 0 52px
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts .perex-result__team-logo .perex-result__team-logo-inner {
        max-height: 32px
    }
}

@media(min-width:1200px) {
    .perex-result--opener-two-posts .perex-result__team-logo .perex-result__team-logo-inner {
        max-height: 52px
    }
}

@media(min-width:992px)and (max-width:1199.98px) {
    .perex-result--opener-two-posts {
        margin: 8px 16px
    }
}

@media(max-width:767.98px) {
    .perex-result--opener-two-posts {
        margin: 8px
    }
}

@media(min-width:1200px) {
    .perex-result--opener-three-posts .perex-result__team-list:before {
        height: 44px;
        width: calc(100% - 176px);
        top: 4px
    }
    .perex-result--opener-three-posts .perex-result__team--first {
        margin-right: 2px
    }
    .perex-result--opener-three-posts .perex-result__team--first .perex-result__team-background {
        transform: translateX(-10px)
    }
    .perex-result--opener-three-posts .perex-result__team--first .perex-result__team-score {
        flex: 0 0 48px
    }
    .perex-result--opener-three-posts .perex-result__team--second {
        flex-direction: row-reverse;
        margin-left: 2px
    }
    .perex-result--opener-three-posts .perex-result__team--second .perex-result__team-score {
        flex: 0 0 48px
    }
    .perex-result--opener-three-posts .perex-result__team {
        height: 44px;
        flex: 1 0 50%;
        min-height: 44px;
        max-height: 44px
    }
}

@media(min-width:1200px)and (max-width:1399.98px) {
    .perex-result--opener-three-posts .perex-result__team .perex-result__team-score {
        font-size: 1.5rem
    }
}

@media(min-width:1200px) {
    .perex-result--opener-three-posts .perex-result__team-logo {
        flex: 1 0 52px
    }
    .perex-result--opener-three-posts .perex-result__team-logo .perex-result__team-logo-inner {
        max-height: 52px
    }
}

@media(min-width:1200px)and (max-width:1399.98px) {
    .perex-result--opener-three-posts {
        margin: 12px 20px;
        position: absolute;
        bottom: 16px;
        left: 25px;
        width: 504px;
        z-index: 1
    }
}

.photo {
    margin: 0 auto
}

.photo .icon {
    fill: #fff;
    display: block
}

.photo__image--perex:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.photo__caption--perex .caption__content {
    margin-right: 70px
}

.photo__controls-wrapper {
    position: relative
}

.photo__controls-wrapper:hover {
    cursor: pointer
}

.photo__controls-wrapper:hover .photo__controls,
.photo__controls-wrapper:hover .photo__controls--zoomed {
    display: none
}

@media(min-width:576px) {
    .photo__controls-wrapper:hover .photo__controls {
        display: flex
    }
}

.photo__controls,
.photo__controls--zoomed {
    display: none;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 5, 40, .86);
    border-radius: 28px;
    z-index: 1
}

.photo--perex .photo {
    position: relative
}

.photo--perex .photo:after {
    display: none
}

.photo--perex .photo .button--gallery {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    display: inline-flex
}

.photo .lightbox,
.photo--zoomed .photo__controls-wrapper:hover .photo__controls,
.photo--zoomed .photo__controls-wrapper:hover .photo__controls--zoomed {
    display: none
}

@media(min-width:576px) {
    .photo--zoomed .photo__controls-wrapper:hover .photo__controls--zoomed {
        display: flex
    }
}

.gallery-item-meta__item:first-child {
    margin-right: 1rem
}

.related-video {
    width: 100%;
    overflow: hidden
}

.related-video__slick-align {
    margin: 0 -4px
}

@media(min-width:576px) {
    .related-video__slick-align {
        margin: 0 -8px
    }
}

.related-video__item {
    width: 100%;
    padding: 0 4px
}

@media(min-width:768px) {
    .related-video__item {
        padding: 0 8px
    }
}

.related-video__item--slidable {
    width: 30vw
}

.related-video__item:not(:first-child) .related-video__item-figure {
    display: none
}

@media(min-width:768px) {
    .related-video__item:not(:first-child) .related-video__item-figure {
        display: flex
    }
}

.related-video__item:not(:first-child) .related-video__item-wrapper {
    width: 100%
}

@media(min-width:768px) {
    .related-video__item:not(:first-child) .related-video__item-wrapper {
        width: 100%
    }
}

.related-video__item-list {
    display: block;
    margin-right: -4px;
    margin-left: -4px
}

@media(min-width:768px) {
    .related-video__item-list {
        display: flex;
        margin-right: -8px;
        margin-left: -8px
    }
}

.related-video__grid {
    display: grid;
    position: relative;
    justify-content: stretch;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: [row-1] auto [row-2] auto [row-3];
    grid-gap: 16px;
    padding-bottom: 16px
}

.related-video__grid .related-video__item {
    padding: 0;
    grid-row: auto
}

.related-video__grid--7 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr
}

.related-video__grid--7 .related-video__item:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2
}

.related-video__grid--7 .related-video__item:first-child .video-link__thumbnail {
    flex: 1 1
}

.related-video__grid--6 {
    grid-template-columns: 1fr 1fr 1fr;
    width: 80%;
    margin: auto
}

.related-video__grid--5 {
    grid-template-columns: 1fr 1fr 1fr 1fr
}

.related-video__grid--5 .related-video__item:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2
}

.related-video__grid--5 .related-video__item:first-child .video-link__thumbnail {
    flex: 1 1
}

.related-video__button {
    position: absolute;
    right: 0;
    bottom: -52px
}

.related-video__video-link {
    display: flex;
    flex-direction: column
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .related-video__grid--8 .related-video__item:first-child,
    .related-video__grid--8 .related-video__item:nth-child(2),
    .related-video__grid--8 .related-video__item:nth-child(3),
    .related-video__grid--8 .related-video__item:nth-child(4) {
        grid-row: 1
    }
    .related-video__grid--8 .related-video__item:nth-child(5),
    .related-video__grid--8 .related-video__item:nth-child(6),
    .related-video__grid--8 .related-video__item:nth-child(7),
    .related-video__grid--8 .related-video__item:nth-child(8) {
        grid-row: 2
    }
    .related-video__grid--8 .related-video__item:first-child,
    .related-video__grid--8 .related-video__item:nth-child(5) {
        grid-column: 1
    }
    .related-video__grid--8 .related-video__item:nth-child(2),
    .related-video__grid--8 .related-video__item:nth-child(6) {
        grid-column: 2
    }
    .related-video__grid--8 .related-video__item:nth-child(3),
    .related-video__grid--8 .related-video__item:nth-child(7) {
        grid-column: 3
    }
    .related-video__grid--8 .related-video__item:nth-child(4),
    .related-video__grid--8 .related-video__item:nth-child(8) {
        grid-column: 4
    }
    .related-video__grid--7 .related-video__item:nth-child(2),
    .related-video__grid--7 .related-video__item:nth-child(3),
    .related-video__grid--7 .related-video__item:nth-child(4) {
        grid-row: 1
    }
    .related-video__grid--7 .related-video__item:nth-child(5),
    .related-video__grid--7 .related-video__item:nth-child(6),
    .related-video__grid--7 .related-video__item:nth-child(7) {
        grid-row: 2
    }
    .related-video__grid--7 .related-video__item:nth-child(2),
    .related-video__grid--7 .related-video__item:nth-child(5) {
        grid-column: 3
    }
    .related-video__grid--7 .related-video__item:nth-child(3),
    .related-video__grid--7 .related-video__item:nth-child(6) {
        grid-column: 4
    }
    .related-video__grid--7 .related-video__item:nth-child(4),
    .related-video__grid--7 .related-video__item:nth-child(7) {
        grid-column: 5
    }
    .related-video__grid--6 .related-video__item:first-child,
    .related-video__grid--6 .related-video__item:nth-child(2),
    .related-video__grid--6 .related-video__item:nth-child(3) {
        grid-row: 1
    }
    .related-video__grid--6 .related-video__item:nth-child(4),
    .related-video__grid--6 .related-video__item:nth-child(5),
    .related-video__grid--6 .related-video__item:nth-child(6) {
        grid-row: 2
    }
    .related-video__grid--6 .related-video__item:first-child,
    .related-video__grid--6 .related-video__item:nth-child(4) {
        grid-column: 1
    }
    .related-video__grid--6 .related-video__item:nth-child(2),
    .related-video__grid--6 .related-video__item:nth-child(5) {
        grid-column: 2
    }
    .related-video__grid--6 .related-video__item:nth-child(3),
    .related-video__grid--6 .related-video__item:nth-child(6) {
        grid-column: 3
    }
    .related-video__grid--5 .related-video__item:nth-child(2),
    .related-video__grid--5 .related-video__item:nth-child(3) {
        grid-row: 1
    }
    .related-video__grid--5 .related-video__item:nth-child(4),
    .related-video__grid--5 .related-video__item:nth-child(5) {
        grid-row: 2
    }
    .related-video__grid--5 .related-video__item:nth-child(2),
    .related-video__grid--5 .related-video__item:nth-child(4) {
        grid-column: 3
    }
    .related-video__grid--5 .related-video__item:nth-child(3),
    .related-video__grid--5 .related-video__item:nth-child(5) {
        grid-column: 4
    }
}

.related-video--sameHeight .slick-track {
    display: flex !important
}

.related-video--sameHeight .slick-slide {
    height: inherit !important
}

.related-video--sameHeight .slick-slide>div,
.related-video--sameHeight .slick-slide>div .related-video__item {
    height: 100%
}

.related-video--sameHeight .video-link {
    display: flex;
    flex-direction: column
}

.related-video--sameHeight .video-link figcaption {
    flex-grow: 1
}

.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-list,
.slick-slider {
    position: relative;
    display: block
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.tag {
    border-radius: 1px;
    border: 1px solid #e1e8fb;
    background-color: #fff;
    line-height: 1;
    color: #52556d
}

.tag--big {
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .5rem 1rem
}

.tag--small {
    font-size: .75rem;
    padding: .25rem .5rem
}

.timestamp--bottom-right {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 5, 40, .86);
    color: #fff
}

.top-articles {
    padding-top: 20px;
    font-family: TV Sans Sport, sans-serif
}

.top-articles__item {
    padding-bottom: 20px;
    font-size: 12px
}

.top-articles__item,
.top-articles__item:hover {
    color: #52556d
}

.top-articles__image {
    flex: 1 0 auto;
    max-width: 113px
}

@media(min-width:576px) {
    .top-articles__image {
        max-width: 140px
    }
}

@media(min-width:768px) {
    .top-articles__image {
        max-width: 190px
    }
}

@media(min-width:992px) {
    .top-articles__image {
        max-width: none
    }
}

.top-articles__title,
.top-articles__title:hover {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000528
}

@media(min-width:576px) {
    .top-articles__title,
    .top-articles__title:hover {
        font-size: 18px
    }
}

@media(min-width:992px) {
    .top-articles__title,
    .top-articles__title:hover {
        font-size: 20px
    }
}

.top-articles-text {
    padding: 16px 16px 8px;
    font-size: 18px
}

@media(min-width:768px) {
    .top-articles-text {
        font-size: 20px;
        padding: 24px 24px 8px
    }
}

.top-articles-text__title {
    text-align: center;
    margin-bottom: 16px
}

@media(min-width:768px) {
    .top-articles-text__title {
        margin-bottom: 24px
    }
}

.top-articles-text__item {
    display: inline-block;
    margin-bottom: 8px
}

@media(min-width:768px) {
    .top-articles-text__item {
        margin-bottom: 16px
    }
}

.video-link {
    text-decoration: none;
    display: block
}

.video-link__label {
    text-transform: uppercase;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #52556d
}

.video-link__thumbnail {
    position: relative
}

.video-link__title {
    color: #2054b1;
    font-size: 1rem;
    line-height: 1.375rem
}

@media(min-width:768px) {
    .video-link__title {
        font-size: 1.125rem;
        line-height: 1.5rem
    }
}

.video-link__title--thin {
    font-size: 1rem
}

@media(min-width:768px) {
    .video-link__title--thin {
        font-size: 1rem;
        line-height: 1.375rem
    }
}

@media(max-width:479.98px) {
    .video-link--single {
        display: flex;
        flex-direction: row;
        width: 100%
    }
    .video-link--single .video-link__thumbnail {
        flex: 1 0 50%;
        overflow: hidden;
        position: relative
    }
    .video-link--single .video-link__caption {
        flex: 1 0 50%
    }
}

.article-link {
    container-type: inline-size;
    max-width: 800px;
    display: block
}

.article-link__link {
    width: 100%;
    display: flex;
    margin-bottom: 1.5rem;
    color: #52556d
}

@container (min-width: 736px) {
    .article-link__link {
        margin-bottom: 2rem
    }
}

.article-link__link:hover {
    text-decoration: none;
    color: #52556d
}

.article-link__link:hover .article-link__title {
    color: #043cdc
}

.article-link__photo {
    flex-shrink: 0;
    width: 108px;
    margin-right: .75rem;
    position: relative
}

@container (min-width: 544px) {
    .article-link__photo {
        width: 144px;
        margin-right: 1rem
    }
}

@container (min-width: 736px) {
    .article-link__photo {
        width: auto
    }
}

.article-link__text {
    flex-grow: 1
}

.article-link__photo-wrap {
    position: relative
}

.article-link__photo-play {
    position: absolute;
    bottom: .25rem;
    left: .25rem;
    width: 32px;
    height: 24px;
    line-height: 1
}

@container (min-width: 736px) {
    .article-link__photo-play {
        bottom: .5rem;
        left: .5rem
    }
}

.article-link__above-title {
    color: #043cdc;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .75rem;
    line-height: .875rem;
    letter-spacing: .0375rem;
    margin-bottom: .25rem
}

@container (min-width: 736px) {
    .article-link__above-title {
        font-size: .875rem;
        line-height: 1rem;
        letter-spacing: .03125rem;
        margin-bottom: .5rem
    }
}

.article-link__title {
    font-family: TV Sans Screen, sans-serif;
    font-size: .875rem;
    line-height: 1.125rem;
    font-weight: 500;
    color: #000528;
    margin-bottom: .25rem
}

@container (min-width: 544px) {
    .article-link__title {
        font-size: 1.125rem;
        line-height: 1.5rem
    }
}

@container (min-width: 736px) {
    .article-link__title {
        font-size: 1.3125rem;
        line-height: 1.625rem;
        margin-bottom: .5rem
    }
}

.article-link__perex-text {
    display: none
}

@container (min-width: 736px) {
    .article-link__perex-text {
        display: block;
        line-height: 1.375rem;
        margin-bottom: .5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical
    }
}

.article-link__meta {
    font-size: .75rem;
    line-height: 1rem;
    letter-spacing: .0125rem
}

@container (min-width: 736px) {
    .article-link__meta {
        font-size: .875rem;
        line-height: 1.125rem
    }
}

.article-link__date {
    font-weight: 600
}

.article-link__date svg {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px
}

.article-link__skeleton--big {
    display: none
}

@container (min-width: 736px) {
    .article-link__skeleton--big {
        display: inline
    }
    .article-link__skeleton--small {
        display: none
    }
}

.article-meta__avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.article-meta__avatar {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fbfbfd;
    background: #e1e8fb;
    margin-right: -8px
}

@media(min-width:768px) {
    .article-meta__avatar {
        width: 52px;
        height: 52px;
        margin-right: -16px;
        border: 2px solid #fbfbfd
    }
}

.article-meta__avatar--monogram {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase
}

@media(min-width:768px) {
    .article-meta__avatar--monogram {
        font-size: 18px
    }
}

.article-meta__avatar--count {
    color: #fff;
    font-size: 14px;
    background: #cccdd4
}

.article-meta__avatar:first-child {
    margin-left: -1px;
    z-index: 1
}

@media(min-width:768px) {
    .article-meta__avatar:first-child {
        margin-left: -2px
    }
}

.article-meta__avatar:nth-child(2) {
    z-index: 0
}

.article-meta__avatar:nth-child(3) {
    z-index: -1
}

.article-meta__avatar:last-child {
    margin-right: 0
}

.article-meta__avatar img {
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%
}

.article-meta__authors {
    color: #043cdc;
    font-size: 12px;
    font-weight: 600
}

@media(min-width:768px) {
    .article-meta__authors {
        font-size: 14px
    }
}

.article-meta__sources {
    font-size: 12px;
    color: #52556d
}

@media(min-width:768px) {
    .article-meta__sources {
        font-size: 14px
    }
}

.article-meta__sources svg {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px
}

.article-meta__share {
    flex-shrink: 0;
    align-self: flex-end
}

.article-strip-wrapper {
    container-type: inline-size;
    background: linear-gradient(90deg, #000a50, #00288c);
    color: #fff;
    display: block
}

.article-strip-wrapper .article-strip {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

@container (min-width: 768px) {
    .article-strip-wrapper .article-strip {
        max-width: 1248px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding: 2.5rem 1rem
    }
}

.article-strip-wrapper .article-strip__container {
    padding-left: 0;
    padding-right: 0
}

@media(min-width:992px) {
    .article-strip-wrapper .article-strip__container {
        padding-left: inherit;
        padding-right: inherit
    }
}

@media(min-width:1400px) {
    .article-strip-wrapper .article-strip__container {
        padding-left: 0;
        padding-right: 0
    }
}

.article-strip-wrapper .article-strip__carousel-wrap {
    position: relative
}

@container (min-width: 768px) {
    .article-strip-wrapper .article-strip__carousel-wrap {
        padding-left: 0;
        padding-right: 0
    }
}

.article-strip-wrapper .article-strip a:hover {
    text-decoration: none
}

.article-strip-wrapper .article-strip__title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    letter-spacing: -.03125rem;
    font-weight: 700;
    color: #fff;
    font-family: TV Sans Screen, sans-serif;
    margin-bottom: .5rem;
    padding-left: 1rem;
    padding-right: 1rem
}

@container (min-width: 768px) {
    .article-strip-wrapper .article-strip__title {
        font-size: 2.25rem;
        line-height: 2.625rem;
        margin-bottom: 1rem;
        padding-left: 0;
        padding-right: 0
    }
}

.article-strip-wrapper .article-strip__description {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: .5rem
}

@container (min-width: 768px) {
    .article-strip-wrapper .article-strip__description {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1rem
    }
}

.article-strip-wrapper .article-strip__navigation {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: hsla(0, 0%, 100%, .75);
    border-radius: 50%;
    border: 1px solid #e1e8fb;
    z-index: 1;
    align-items: center;
    justify-content: center;
    top: 76px;
    display: none
}

@media(min-width:768px) {
    .article-strip-wrapper .article-strip__navigation {
        display: flex
    }
}

.article-strip-wrapper .article-strip__navigation .icon {
    width: 1rem;
    line-height: 0;
    color: #043cdc
}

.article-strip-wrapper .article-strip__navigation--prev {
    rotate: 90deg;
    left: -12px;
    transform: translateX(-50%)
}

@media(min-width:1400px) {
    .article-strip-wrapper .article-strip__navigation--prev {
        left: -20px
    }
}

.article-strip-wrapper .article-strip__navigation--next {
    rotate: -90deg;
    right: -12px;
    transform: translateX(50%)
}

@media(min-width:1400px) {
    .article-strip-wrapper .article-strip__navigation--next {
        right: -20px
    }
}

.article-strip-wrapper .article-strip__navigation:hover {
    background-color: #fff
}

.article-strip-wrapper .article-strip__article {
    width: 150px
}

@media(min-width:768px) {
    .article-strip-wrapper .article-strip__article {
        width: 228px
    }
}

.article-strip-wrapper .article-strip__article:hover .article-strip__article-title {
    color: #e1e8fb
}

.article-strip-wrapper .article-strip__article-title {
    font-family: TV Sans Screen, sans-serif;
    font-size: .875rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.125rem;
    margin-top: .5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

@media(min-width:768px) {
    .article-strip-wrapper .article-strip__article-title {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.25rem;
        letter-spacing: 0
    }
}

.article-strip-wrapper .article-strip__article-date {
    font-family: Source Sans Pro, sans-serif;
    font-size: .6875rem;
    font-weight: 600;
    line-height: 1rem;
    color: #cccdd4;
    margin-top: .25rem
}

@media(min-width:768px) {
    .article-strip-wrapper .article-strip__article-date {
        margin-top: .5rem;
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .0125rem
    }
}

.article-strip-wrapper .article-strip__last a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 2px;
    width: calc(150px - 1rem);
    height: 100px
}

@media(min-width:768px) {
    .article-strip-wrapper .article-strip__last a {
        width: calc(228px - 1.5rem);
        height: 152px;
        margin-right: 0
    }
}

.article-strip-wrapper .article-strip__last a .icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    line-height: 0;
    color: #fff;
    transform: rotate(-90deg);
    margin-left: .25rem
}

.article-strip-wrapper .article-strip__last a:hover {
    text-decoration: none;
    background-color: hsla(0, 0%, 100%, .05);
    border-color: hsla(0, 0%, 100%, .5)
}

.article-strip-wrapper .article-strip__article-image {
    position: relative
}

.article-strip-wrapper .article-strip__article-image-play {
    position: absolute;
    bottom: .5rem;
    left: .5rem;
    width: 32px;
    height: 24px;
    line-height: 1
}

.article-strip-wrapper--in-article {
    background: #f0f3fd
}

.article-strip-wrapper--in-article .article-strip {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

@media(min-width:768px) {
    .article-strip-wrapper--in-article .article-strip {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }
}

.article-strip-wrapper--in-article .article-strip__title {
    color: #00288c
}

.article-strip-wrapper--in-article .article-strip__article {
    width: 150px
}

@media(min-width:768px) {
    .article-strip-wrapper--in-article .article-strip__article {
        width: 280px
    }
}

.article-strip-wrapper--in-article .article-strip__link:hover .article-strip__article-title {
    color: #043cdc
}

.article-strip-wrapper--in-article .article-strip__article-title,
.article-strip-wrapper--in-article .article-strip__article-title:hover {
    color: #000528
}

.article-strip-wrapper--in-article .article-strip__article-date {
    color: #52556d
}

@container (min-width: 768px) {
    .article-strip-wrapper--in-article .article-strip .swiper-slide {
        margin-right: 1rem;
        margin-left: 0
    }
}

.article-strip-wrapper--in-article .article-strip__navigation {
    top: 93.3333333333px
}

.article-strip .swiper-slide {
    margin-left: 1rem;
    margin-right: 0
}

@container (min-width: 768px) {
    .article-strip .swiper-slide {
        margin-right: 1.5rem;
        margin-left: 0
    }
}

.article-strip .swiper-slide:last-child {
    margin-right: 1rem
}

@container (min-width: 768px) {
    .article-strip .swiper-slide:last-child {
        margin-right: 0
    }
}

.column .article-strip-wrapper {
    padding-left: 1rem
}

@media(min-width:768px) {
    .column .article-strip-wrapper {
        padding-left: 2rem;
        padding-right: 2rem
    }
}

.columns .article-strip__description,
.columns .article-strip__title {
    padding-left: 0
}

.column .swiper-slide {
    margin-left: 0;
    margin-right: .75rem
}

.column .article-strip__navigation--prev {
    left: -20px
}

.column .article-strip__navigation--next {
    right: -20px
}

button {
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: normal;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.btn--icon-only.btn--primary {
    color: #043cdc
}

.btn svg * {
    fill: currentColor
}

.load-more-wrapper {
    max-width: 800px;
    width: 100%
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem .5rem 1rem;
    gap: .5rem;
    height: 40px;
    font-size: 1rem;
    line-height: 1.125rem;
    font-family: Source Sans Pro, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    background-color: #043cdc;
    color: #fff;
    border: 0;
    overflow: visible;
    letter-spacing: .2px;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    transition: all .25s ease-in-out;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.btn-load-more::-moz-focus-inner {
    padding: 0;
    border: 0
}

.btn-load-more .icon {
    display: flex;
    width: 16px;
    height: 16px;
    color: #fff
}

.btn-load-more:focus,
.btn-load-more:hover {
    background-color: #00288c
}

.btn-load-more:active {
    background-color: #000a50
}

.btn-load-more.disabled,
.btn-load-more:disabled,
.btn-load-more[disabled] {
    pointer-events: none;
    background-color: #8690a7;
    color: #cccdd4
}

.btn-load-more.disabled .icon,
.btn-load-more:disabled .icon,
.btn-load-more[disabled] .icon {
    color: #cccdd4
}

.breaking-news {
    display: none;
    background: linear-gradient(90deg, #ffa300, #ffeb00);
    flex-direction: row;
    align-items: center;
    padding: .75rem;
    position: relative
}

.breaking-news a {
    color: #000528
}

.breaking-news__message-wrapper {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

@media(min-width:992px) {
    .breaking-news__message-wrapper {
        max-width: 960px;
        width: 100%;
        padding-right: 1rem;
        margin-right: auto;
        margin-left: auto;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-left: inherit
    }
}

@media(min-width:1200px) {
    .breaking-news__message-wrapper {
        max-width: 1140px;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        margin-right: auto;
        margin-left: auto
    }
}

@media(min-width:1400px) {
    .breaking-news__message-wrapper {
        max-width: 1248px;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        margin-right: auto;
        margin-left: auto
    }
}

.breaking-news__label {
    background: #000528;
    color: #fff;
    padding: .25rem .5rem;
    margin-bottom: .75rem;
    font-size: .75rem;
    line-height: 1rem;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 600;
    letter-spacing: .2px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 2px
}

@media(min-width:992px) {
    .breaking-news__label {
        font-size: .875rem;
        line-height: 1.0625rem;
        margin-bottom: unset
    }
}

.breaking-news__message {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500
}

@media(min-width:992px) {
    .breaking-news__message {
        font-size: 1.125rem;
        line-height: 1.375rem
    }
}

.breaking-news__message-more {
    font-size: 0;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    line-height: 0;
    padding: 0;
    height: 12px
}

@media(min-width:992px) {
    .breaking-news__message-more {
        font-family: Source Sans Pro, sans-serif;
        font-size: .875rem;
        line-height: 1.125rem;
        font-weight: 600;
        letter-spacing: .1px;
        margin-left: 1rem
    }
}

.breaking-news__message-more .icon {
    margin-top: -7px;
    transform: scale(.8)
}

@media(min-width:992px) {
    .breaking-news__message-more .icon {
        margin-top: 0
    }
}

.breaking-news__message-more .icon svg {
    width: 100%;
    height: 100%
}

.breaking-news__message-more .icon svg path {
    fill: #000528
}

.breaking-news__close {
    position: absolute;
    right: 1rem;
    top: 1rem
}

@media(min-width:992px) {
    .breaking-news__close {
        right: 2rem;
        top: unset
    }
}

.breaking-news__close-icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    line-height: 0;
    color: #ffa300
}

@media(min-width:768px) {
    .columns {
        display: flex;
        gap: 2rem
    }
}

.column {
    width: 100%
}

@media(min-width:768px) {
    .column {
        width: 50%
    }
}

@media(min-width:1200px) {
    .column--33 {
        width: 33.3333333333%
    }
    .column--66 {
        width: 66.6666666667%
    }
}

.column--100 {
    width: 100%
}

.dropdown-container {
    max-width: 250px;
    width: auto;
    position: relative
}

.dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Source Sans Pro, sans-serif;
    position: relative
}

.dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 1rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
    color: #000528;
    border-radius: 4px;
    border: 1px solid #e1e8fb;
    transition: all .25s ease-in-out
}

.dropdown__toggle:hover {
    color: #043cdc;
    border-color: #e1e8fb
}

.dropdown__icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    margin-left: .5rem;
    transition: transform .25s ease-in-out
}

.dropdown__icon svg {
    width: 100%;
    height: 100%
}

.dropdown__menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    margin-top: 8px;
    width: 100%;
    z-index: 100;
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, .3), 0 1px 3px 0 rgba(0, 0, 0, .25);
    border-radius: 4px;
    overflow-y: auto
}

.dropdown--open .dropdown__toggle {
    color: #043cdc
}

.dropdown--open .dropdown__menu {
    display: flex
}

.dropdown--open .dropdown__icon {
    transform: rotateX(180deg);
    transition: all .25s ease-in-out
}

.dropdown__item {
    padding: .5rem 1.5rem;
    color: #000528
}

.dropdown__item:hover {
    background: #f0f3fd;
    text-decoration: none;
    color: #043cdc
}

.dropdown__item--selected {
    pointer-events: none;
    color: #c5cced
}

.dropdown__item--no-data {
    pointer-events: none
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 102;
    background-color: var(--ct24-body-bg)
}

.modal__content {
    margin-bottom: 76px
}

@media(min-width:768px) {
    .modal__content {
        margin-bottom: 0
    }
}

.modal__container {
    overflow-y: auto;
    width: 100%;
    height: 100%
}

.modal__header-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 102
}

.modal__header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    background: linear-gradient(90deg, #019ce1 0, #00288c)
}

@media(min-width:768px) {
    .modal__header {
        height: 65px
    }
}

.modal__header--no-borders {
    border: none !important
}

.modal__header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    height: 100%;
    border-right: 1px solid hsla(0, 0%, 100%, .2)
}

@media(min-width:768px) {
    .modal__header-logo {
        padding: 20px 24px
    }
}

.modal__header-logo-link {
    font-size: 0;
    line-height: 0
}

.modal__header-center {
    justify-content: space-between;
    flex-grow: 1
}

.modal__header-center,
.modal__header-center-title {
    display: flex;
    padding: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.modal__header-center-title {
    flex-direction: column;
    justify-content: center
}

@media(min-width:768px) {
    .modal__header-center-title {
        padding: 0 24px
    }
}

.modal__header-first-row {
    font-size: .75rem;
    line-height: 1rem;
    color: #e1e8fb;
    text-transform: uppercase;
    font-family: Source Sans Pro, sans-serif;
    font-weight: 600;
    letter-spacing: .6px
}

.modal__header-second-row {
    font-size: 1.125rem;
    line-height: 1.625rem;
    color: #fff;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.modal__header-gallery-counter {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #e1e8fb;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500
}

.modal__header-gallery-btn {
    font-size: .75rem;
    line-height: 1rem;
    color: #e1e8fb;
    font-family: Source Sans Pro, sans-serif
}

.modal__header-close {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-left: 1px solid hsla(0, 0%, 100%, .2)
}

.modal__header-close>button {
    display: block;
    padding: 1.5rem 1rem
}

@media(min-width:768px) {
    .modal__header-close>button {
        padding: 1.5rem
    }
}

.modal__header-close-icon {
    color: #fff;
    height: 1rem
}

.modal__header-close-icon svg {
    width: 1rem;
    height: 1rem
}

.modal__gallery-thumbnail-wrap {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

@media(min-width:768px) {
    .modal__gallery-thumbnail-wrap {
        max-width: 75%;
        margin: 0 auto;
        padding: 0
    }
}

.modal__gallery-thumbnail img {
    max-height: 120px
}

.modal__gallery-back-arrow,
.modal__gallery-front-arrow {
    display: none;
    position: fixed;
    align-items: center;
    background-color: transparent;
    z-index: 1;
    top: calc(50% - 28px);
    bottom: calc(50% - 28px);
    width: 56px;
    height: 56px
}

@media(min-width:768px) {
    .modal__gallery-back-arrow,
    .modal__gallery-front-arrow {
        display: flex
    }
}

.modal__gallery-back-arrow:active,
.modal__gallery-back-arrow:focus,
.modal__gallery-back-arrow:hover,
.modal__gallery-front-arrow:active,
.modal__gallery-front-arrow:focus,
.modal__gallery-front-arrow:hover {
    outline: none
}

.modal__gallery-back-arrow:hover .modal__gallery-back-arrow-icon,
.modal__gallery-back-arrow:hover .modal__gallery-front-arrow-icon,
.modal__gallery-front-arrow:hover .modal__gallery-back-arrow-icon,
.modal__gallery-front-arrow:hover .modal__gallery-front-arrow-icon {
    background-color: hsla(0, 0%, 100%, .11)
}

.modal__gallery-back-arrow-icon,
.modal__gallery-front-arrow-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    color: #fff;
    background-color: hsla(0, 0%, 100%, .33);
    transition: background-color .5s ease-in
}

.modal__gallery-back-arrow-icon svg,
.modal__gallery-front-arrow-icon svg {
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px
}

.modal__gallery-back-arrow {
    left: 1rem;
    justify-content: start
}

.modal__gallery-back-arrow-icon {
    transform: rotate(90deg)
}

.modal__gallery-front-arrow {
    right: 1rem;
    justify-content: end
}

.modal__gallery-front-arrow-icon {
    transform: rotate(-90deg)
}

.modal-gallery .slide {
    padding-left: 0
}

.modal-gallery .carousel.carousel-slider {
    display: flex;
    justify-content: center;
    height: 100%
}

.modal-root {
    position: relative
}

.modal-gallery,
.modal-photo {
    z-index: 103
}

.modal-textovy-prenos {
    z-index: 102
}

.gallery {
    container-type: inline-size;
    background: transparent
}

.gallery--perex {
    margin-left: -1rem;
    margin-right: -1rem
}

@media(min-width:992px) {
    .gallery--perex {
        margin-left: 0;
        margin-right: 0
    }
}

.gallery__flag {
    color: #043cdc;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

@container (min-width: 576px) {
    .gallery__flag {
        font-size: .875rem;
        line-height: 1.25rem;
        margin-bottom: .5rem
    }
}

.gallery__title {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #000528
}

@container (min-width: 576px) {
    .gallery__title {
        font-size: 1.3125rem;
        line-height: 1.625rem
    }
}

.gallery__primary-photo {
    width: 100%;
    position: relative
}

.gallery__primary-photo img {
    width: 100%
}

.gallery__primary-photo-play-icon {
    width: 4.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.gallery__primary-photo-play-icon--small {
    width: 4rem
}

@container (min-width: 768px) {
    .gallery__primary-photo-play-icon--small {
        display: none
    }
}

.gallery__primary-photo-play-icon--big {
    width: 7.5rem;
    display: none
}

@container (min-width: 768px) {
    .gallery__primary-photo-play-icon--big {
        display: inline-block
    }
}

.gallery__secondary-photo-play-icon {
    position: absolute;
    width: 3rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none
}

@container (min-width: 480px) {
    .gallery__secondary-photo-play-icon {
        display: inline-block
    }
}

.gallery__secondary-photo-play-icon--xs {
    display: inline-block
}

@container (min-width: 480px) {
    .gallery__secondary-photo-play-icon--xs {
        display: none
    }
}

.gallery__secondary-photo {
    position: relative;
    width: 33.33%;
    aspect-ratio: 16/9
}

.gallery__secondary-photo img {
    width: 100%
}

@container (min-width: 480px) {
    .gallery__secondary-photo {
        width: 25%
    }
}

.gallery__secondary-photo--s {
    display: none
}

@container (min-width: 480px) {
    .gallery__secondary-photo--s {
        display: block
    }
    .gallery__secondary-photo--xs {
        display: none
    }
}

.gallery__secondary-photo-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .6));
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600
}

@container (min-width: 480px) {
    .gallery__secondary-photo-info {
        font-size: 1rem;
        line-height: 1.5rem
    }
    .gallery__secondary-photo-info--xs {
        display: none
    }
}

.gallery__secondary-photo-info-icon,
.gallery__secondary-photo-info-icon svg {
    display: inline-block;
    width: 30px;
    height: 24px
}

.gallery__secondary-photo-info-icon {
    margin-bottom: .25rem
}

.gallery__secondary-photo-wrap {
    display: flex;
    gap: .5rem;
    margin-top: .5rem
}

.gallery__photo-description {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .5rem 1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
    font-family: Source Sans Pro, sans-serif
}

@container (min-width: 480px) {
    .gallery__photo-description {
        padding: 3rem 1.5rem 1rem
    }
}

.gallery__photo-description-title {
    display: inline-block;
    padding-bottom: .25rem;
    color: #fff;
    font-size: .875rem;
    line-height: 1.25rem
}

.gallery__photo-description-subtitle {
    color: #cccdd4;
    font-size: .75rem;
    line-height: 1rem
}

.modal-gallery .modal {
    background-color: #101622;
    height: 100vh
}

.modal-gallery__wrap {
    padding-top: 0 !important;
    margin: 0 auto
}

@media(min-width:768px) {
    .modal-gallery__wrap {
        display: flex;
        flex-direction: column;
        padding: 0 4rem;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 64px)
    }
}

.modal-gallery__carousel-wrap {
    display: flex;
    justify-content: center;
    flex-grow: 1
}

.modal-gallery__image {
    text-align: center
}

@media(min-width:768px) {
    .modal-gallery__image {
        flex-grow: 1;
        height: calc(100vh - 160px)
    }
}

.modal-gallery__image img {
    width: auto !important
}

@media(min-width:768px) {
    .modal-gallery__image img {
        max-height: 100%
    }
}

.modal-gallery__title {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #fff
}

@media(min-width:768px) {
    .modal-gallery__title {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.modal-gallery__description {
    width: 100%;
    padding: .5rem 1rem
}

@media(min-width:768px) {
    .modal-gallery__description {
        padding: 1rem 0
    }
}

.modal-gallery__meta {
    font-size: .6875rem;
    line-height: 1rem;
    color: #cccdd4;
    margin-top: .25rem
}

@media(min-width:768px) {
    .modal-gallery__meta {
        font-size: .75rem;
        line-height: 1rem;
        margin-top: .5rem
    }
}

.modal-gallery__author a {
    color: #cccdd4;
    text-decoration: underline
}

.modal-gallery__author a:hover {
    color: #fff
}

.heading-wrapper {
    container-type: inline-size;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.heading {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #000528;
    margin-bottom: 0;
    letter-spacing: 0
}

@container (min-width: 768px) {
    .heading {
        font-size: 2.25rem;
        line-height: 2.625rem;
        letter-spacing: -.5px
    }
}

.heading--text-left {
    text-align: left
}

.heading--text-center {
    text-align: center
}

.heading--text-right {
    text-align: right
}

.section__content-item:first-of-type .heading-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.section__content-item .column .section__content-item:first-of-type .heading-wrapper {
    margin-top: 0;
    margin-bottom: 0
}

.link {
    container-type: inline-size;
    width: 100%;
    background: #fff;
    border: 1px solid #e1e8fb;
    border-radius: 2px
}

.link a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: .5rem;
    padding: 1rem;
    width: 100%;
    height: 100%;
    line-height: 1
}

@container (min-width: 576px) {
    .link a {
        padding: 1.5rem;
        column-gap: 1.5rem
    }
}

.link a:hover {
    color: #000528;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px
}

.link--special a {
    justify-content: flex-start
}

.link__flag {
    color: #043cdc;
    font-size: .75rem;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .25rem
}

@container (min-width: 576px) {
    .link__flag {
        font-size: .875rem;
        margin-bottom: .5rem
    }
}

.link__flag--special {
    padding: .25rem .5rem;
    background: #e1e8fb;
    border-radius: 2px
}

.link__title {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #000528
}

@container (min-width: 576px) {
    .link__title {
        font-size: 1.3125rem;
        line-height: 1.625rem;
        margin-top: 0
    }
}

.link__photo {
    aspect-ratio: 16/9;
    max-width: 96px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0
}

@container (min-width: 576px) {
    .link__photo {
        max-width: 170px;
        width: 100%
    }
}

.link__photo--special {
    order: -1
}

.live {
    background-color: #001830;
    padding-top: 106px;
    color: #fff;
    padding-bottom: 3.5rem
}

@media(min-width:768px) {
    .live {
        padding-top: 122px
    }
}

.live__player.video {
    width: auto;
    margin-left: -1rem;
    margin-right: -1rem
}

@media(min-width:768px) {
    .live__player.video {
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

.live__channels-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
    padding-left: 1.5rem;
    color: #fff;
    background-color: #010b1a;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5rem;
    height: 3.5rem;
    margin-left: -1rem
}

@media(min-width:768px) {
    .live__channels-toggle {
        margin-left: 0
    }
}

.live__channels-toggle-icon {
    height: .5rem;
    width: 1rem;
    display: flex;
    transition: transform .25s ease-in-out
}

.live__channels-toggle-icon--open {
    transform: rotateX(180deg)
}

.live__channels {
    background-color: #010b1a;
    display: flex;
    flex-wrap: wrap;
    padding: .5rem;
    align-items: flex-start;
    margin-left: -1rem;
    margin-right: -1rem
}

@media(min-width:768px) {
    .live__channels {
        margin-left: auto;
        margin-right: auto
    }
}

.live__channel {
    max-width: 50%;
    padding: 1rem .5rem;
    color: #fff;
    margin-bottom: .5rem
}

@media(min-width:576px) {
    .live__channel {
        max-width: 33.3333333333%
    }
}

@media(min-width:768px) {
    .live__channel {
        max-width: 25%
    }
}

@media(min-width:1200px) {
    .live__channel {
        max-width: 20%
    }
}

.live__channel--selected {
    background-color: #fff;
    border-radius: 4px
}

.live__channel--selected .live__channel-timeline {
    color: #1b60bb
}

.live__channel--selected .live__channel-title {
    color: #000528
}

.live__channel:hover {
    text-decoration: none;
    color: #fff
}

.live__channel:hover .live__channel-play-icon svg rect:first-child {
    opacity: 1 !important;
    fill: #ed1c24 !important
}

.live__channel-logo {
    text-align: center;
    line-height: 1;
    margin-bottom: .75rem
}

.live__channel-logo img {
    max-width: 100%;
    height: 1rem
}

.live__channel-progress {
    width: 100%;
    background-color: #e1e8fb;
    height: .25rem;
    border-radius: .5rem;
    position: relative
}

.live__channel-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: .5rem
}

.live__channel-timeline {
    display: flex;
    gap: .5rem;
    align-items: center;
    color: #8faefa;
    margin-bottom: .25rem;
    font-size: .875rem;
    line-height: 1.25rem
}

.live__channel-timeline--selected {
    margin: 1rem 0;
    width: 100%;
    display: block;
    max-width: 300px
}

@media(min-width:768px) {
    .live__channel-timeline--selected {
        margin: 1.5rem 0;
        max-width: 350px;
        display: flex;
        align-items: center
    }
}

.live__channel-title {
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    line-height: 1.25rem;
    margin-top: .25rem
}

.live__channel-preview {
    position: relative
}

.live__channel-preview img {
    width: 100%
}

.live__channel-preview-label {
    position: absolute;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 2px;
    font-size: .75rem;
    line-height: 1rem;
    text-align: center
}

.live__channel-preview-label--top-left {
    top: .5rem;
    left: .5rem
}

.live__channel-preview-label--top-right {
    top: .5rem;
    right: .5rem
}

.live__channel-preview-label--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 9rem;
    padding: .25rem .5rem
}

@media(min-width:768px) {
    .live__channel-preview-label--center {
        max-width: 10rem
    }
}

.live__channel-preview-label--bottom-right {
    bottom: .5rem;
    right: .5rem;
    padding: 0 .25rem
}

.live__channel-preview-label--bottom-left {
    bottom: .5rem;
    left: .5rem;
    background: none
}

.live__channel-play-icon {
    width: 32px
}

.live__close {
    position: absolute;
    cursor: pointer;
    color: #fff;
    right: 0;
    top: 1.75rem;
    transform: translateY(-50%);
    padding: 1rem
}

.live__close-icon {
    height: 1rem;
    width: 1rem;
    display: flex
}

.live__show-title {
    font-family: TV Sans Screen, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: .25rem
}

@media(min-width:768px) {
    .live__show-title {
        font-size: 2.25rem;
        line-height: 2.625rem;
        margin-bottom: .5rem
    }
}

.live__show-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: .25rem
}

@media(min-width:768px) {
    .live__show-link {
        font-size: 1.125rem;
        line-height: 1.625rem;
        margin-bottom: .5rem
    }
}

.live__show-link:hover {
    color: #fff
}

@media(min-width:768px) {
    .live__show-description {
        font-size: 1.125rem;
        line-height: 1.625rem
    }
}

.mediaCaption {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 5, 40, .6);
    margin-top: 5px
}

.hero-opener__image {
    height: 450px
}

@media(min-width:768px) {
    .hero-opener__image {
        height: 576px
    }
}

.hero-opener__blur {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.hero-opener__wrap {
    margin: 0 auto;
    max-width: 1680px;
    width: 100%
}

.hero-opener__breakingnews {
    position: absolute;
    top: 106px;
    left: 0;
    right: 0
}

@media(min-width:768px) {
    .hero-opener__breakingnews {
        top: 122px
    }
}

.hero-opener__shadow-radial {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: radial-gradient(circle at 65% 50%, hsla(0, 0%, 100%, 0) 0, rgba(0, 0, 0, .7) 60%, #000 100%)
}

.hero-opener__shadow-top {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 75%;
    top: 0;
    background: linear-gradient(-180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .45) 28%, rgba(0, 0, 0, .35) 44%, rgba(0, 0, 0, .19) 75%, rgba(0, 0, 0, .05) 93%, transparent)
}

.hero-opener__shadow-right {
    position: absolute;
    left: 75%;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .1) 18%, rgba(0, 0, 0, .35) 59%, rgba(0, 0, 0, .58) 76%, rgba(0, 0, 0, .55) 91%, rgba(0, 0, 0, .6))
}

.hero-opener__link {
    display: flex;
    background-position: 50%;
    background-size: cover;
    max-width: 100%
}

@media(min-width:1400px) {
    .hero-opener__link {
        aspect-ratio: 1680/576
    }
}

.hero-opener__info {
    max-width: 1248px;
    width: 100%;
    margin: 205px auto 0;
    padding: 1rem 1rem 1.5rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: scale(1);
    font-family: Source Sans Pro, sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400
}

@media(min-width:992px) {
    .hero-opener__info {
        padding-bottom: 48px
    }
}

.hero-opener__btn,
.hero-opener__shortText,
.hero-opener__title {
    color: #fff
}

.hero-opener__btn:hover,
.hero-opener__shortText:hover,
.hero-opener__title:hover {
    text-decoration: none;
    color: #e1e8fb
}

.hero-opener__title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    margin-bottom: .5rem
}

@media(min-width:768px) {
    .hero-opener__title {
        max-width: 60%;
        font-size: 2.25rem;
        line-height: 2.625rem;
        letter-spacing: -.4px
    }
}

.hero-opener__shortText {
    font-size: .875rem;
    line-height: 1.25rem;
    font-family: Source Sans Pro, sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: .2px
}

@media(min-width:992px) {
    .hero-opener__shortText {
        max-width: 60%;
        font-size: 1.125rem;
        line-height: 1.5rem;
        margin-bottom: 1.5rem
    }
}

.hero-opener__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem .5rem 1rem;
    gap: .5rem;
    height: 40px;
    font-size: 1rem;
    line-height: 1.125rem;
    font-family: Source Sans Pro, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    background-color: #043cdc;
    color: #fff;
    border: 0;
    overflow: visible;
    letter-spacing: .2px;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    transition: all .25s ease-in-out
}

.hero-opener__btn::-moz-focus-inner {
    padding: 0;
    border: 0
}

.hero-opener__btn .icon {
    display: flex;
    width: 16px;
    height: 16px;
    color: #fff
}

.hero-opener__btn:focus,
.hero-opener__btn:hover {
    background-color: #00288c
}

.hero-opener__btn:active {
    background-color: #000a50
}

.hero-opener__btn.disabled,
.hero-opener__btn:disabled,
.hero-opener__btn[disabled] {
    pointer-events: none;
    background-color: #8690a7;
    color: #cccdd4
}

.hero-opener__btn.disabled .icon,
.hero-opener__btn:disabled .icon,
.hero-opener__btn[disabled] .icon {
    color: #cccdd4
}

.hero-opener__btn .icon {
    transform: rotate(90deg)
}

.simple-opener {
    display: flex;
    flex-direction: column
}

@media(min-width:992px) {
    .simple-opener {
        flex-direction: row;
        gap: 2rem;
        margin-top: 2rem
    }
}

.simple-opener--reverse {
    flex-direction: column-reverse
}

@media(min-width:992px) {
    .simple-opener--reverse {
        flex-direction: row
    }
}

.simple-opener:hover {
    text-decoration: none
}

.simple-opener:hover .simple-opener__title {
    color: #043cdc
}

.simple-opener__image {
    margin: 0 -16px .5rem
}

.simple-opener__image img {
    width: 100%
}

@media(min-width:992px) {
    .simple-opener__image img {
        width: auto
    }
}

@media(min-width:576px) {
    .simple-opener__image {
        margin: 0 -16px 1rem
    }
}

@media(min-width:992px) {
    .simple-opener__image {
        margin: 0
    }
}

.simple-opener__image-detail {
    background: #e1e8fb
}

@media(max-width:767.98px) {
    .simple-opener__image-detail {
        width: 100%
    }
}

.simple-opener__image-play {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 48px;
    height: 32px
}

@media(min-width:768px) {
    .simple-opener__image-play {
        width: 64px;
        height: 40px
    }
}

.simple-opener__text-wrap {
    width: 100%
}

@media(min-width:992px) {
    .simple-opener__text-wrap {
        max-width: 50%
    }
}

.simple-opener__above-title {
    margin-bottom: .25rem;
    font-size: .75rem;
    letter-spacing: .5px;
    font-weight: 600;
    font-family: Source Sans Pro, sans-serif;
    color: #043cdc;
    text-transform: uppercase
}

@media(min-width:576px) {
    .simple-opener__above-title {
        font-size: .875rem;
        line-height: 1rem;
        margin-bottom: .5rem
    }
}

@media(min-width:992px) {
    .simple-opener__above-title {
        margin-top: .5rem;
        margin-bottom: .75rem
    }
}

@media(min-width:1400px) {
    .simple-opener__above-title {
        margin-bottom: 1rem
    }
}

.simple-opener__title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    color: #000528
}

@media(min-width:576px) {
    .simple-opener__title {
        font-size: 1.75rem;
        line-height: 2rem
    }
}

@media(min-width:768px) {
    .simple-opener__title {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media(min-width:992px) {
    .simple-opener__title {
        letter-spacing: -.4px
    }
}

@media(min-width:1400px) {
    .simple-opener__title {
        font-size: 2.625rem;
        line-height: 3.125rem
    }
}

.simple-opener__perex {
    display: none;
    margin-top: .25rem
}

@media(min-width:768px) {
    .simple-opener__perex {
        font-size: 1rem;
        line-height: 1.375rem;
        color: #52556d;
        margin-top: .5rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical
    }
}

@media(min-width:992px) {
    .simple-opener__perex {
        margin-top: .75rem
    }
}

@media(min-width:1400px) {
    .simple-opener__perex {
        margin-top: 1rem
    }
}

.simple-opener__meta {
    margin-top: .25rem;
    line-height: 16px
}

@media(min-width:576px) {
    .simple-opener__meta {
        padding-top: 0;
        margin-top: .5rem
    }
}

@media(min-width:992px) {
    .simple-opener__meta {
        margin-top: .75rem
    }
}

@media(min-width:1400px) {
    .simple-opener__meta {
        margin-top: 1rem
    }
}

.simple-opener__meta-authors,
.simple-opener__meta-date {
    font-size: .75rem;
    letter-spacing: .2px;
    font-family: Source Sans Pro, sans-serif;
    color: #52556d
}

@media(min-width:768px) {
    .simple-opener__meta-authors,
    .simple-opener__meta-date {
        font-size: .875rem
    }
}

.simple-opener__meta-date {
    font-weight: 600
}

.simple-opener__meta-authors {
    font-weight: 400
}

.simple-opener__meta-separator {
    display: inline-block;
    margin: 0 .5rem;
    color: #cccdd4
}

.multilinks {
    container-type: inline-size;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%
}

.multilinks--1 .multilink {
    width: 100%;
    flex-basis: 100%
}

@container (min-width: 768px) {
    .multilinks--1 .multilink {
        aspect-ratio: 4/1
    }
    .multilinks--1 .multilink .multilink__title {
        font-size: 1.5rem;
        line-height: 1.75rem
    }
    .multilinks--1 .multilink .multilink__description {
        font-size: 1rem;
        line-height: 1.25rem
    }
    .multilinks--1 .multilink .multilink__header {
        padding: 1rem 1rem 1rem 1.5rem
    }
    .multilinks--2 .multilink {
        flex-basis: calc(50% - .5rem);
        aspect-ratio: 5/2
    }
    .multilinks--2 .multilink .multilink__header {
        padding: 1rem 1rem 1rem 1.5rem
    }
}

@container (min-width: 992px) {
    .multilinks--2 .multilink .multilink__title {
        font-size: 1.3125rem;
        line-height: 1.5rem
    }
    .multilinks--2 .multilink .multilink__description {
        font-size: .875rem;
        line-height: 1.0625rem
    }
}

@container (min-width: 576px) {
    .multilinks--3 .multilink {
        flex-basis: calc(50% - .5rem)
    }
    .multilinks--3 .multilink .multilink__description {
        font-size: 0
    }
}

@container (min-width: 768px) {
    .multilinks--3 .multilink .multilink__header {
        padding: .75rem .75rem .75rem 1rem
    }
    .multilinks--3 .multilink .multilink__description {
        font-size: .75rem;
        line-height: .9375rem
    }
}

@container (min-width: 992px) {
    .multilinks--3 .multilink {
        flex-basis: calc(33.3333333333% - .6666666667rem)
    }
    .multilinks--3 .multilink .multilink__title {
        font-size: 1.125rem;
        line-height: 1.375rem
    }
    .multilinks--3 .multilink .multilink__description {
        font-size: .75rem;
        line-height: .9375rem
    }
    .multilinks--3 .multilink .multilink__icon {
        margin-top: -1px
    }
}

@container (min-width: 576px) {
    .multilinks--4 .multilink {
        flex-basis: calc(50% - .5rem)
    }
}

@container (min-width: 768px) {
    .multilinks--4 .multilink .multilink__icon {
        margin-top: 0
    }
    .multilinks--4 .multilink .multilink__header {
        padding: .5rem .5rem .5rem .75rem
    }
}

@container (min-width: 992px) {
    .multilinks--4 .multilink {
        flex-basis: calc(33.3333333333% - .7575757576rem)
    }
}

@container (min-width: 1200px) {
    .multilinks--4 .multilink {
        flex-basis: calc(25% - .8rem)
    }
}

.multilinks--4 .multilink .multilink__description {
    font-size: 0
}

.multilink {
    display: flex;
    align-items: flex-end;
    width: 100%;
    aspect-ratio: 3/2;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden
}

.multilink--big {
    display: none
}

@container (min-width: 768px) {
    .multilink--big {
        display: flex
    }
    .multilink--small {
        display: none
    }
}

.multilink a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-decoration: none
}

.multilink a:hover {
    background: rgba(0, 0, 0, .25);
    transition: background .2s linear
}

.multilink a:hover .multilink__header {
    background: linear-gradient(270deg, #019ce1 0, #00288c)
}

.multilink__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: .5rem .5rem .5rem 1rem;
    color: #fff;
    background: linear-gradient(270deg, rgba(1, 156, 225, .85) 0, rgba(0, 40, 140, .85));
    border-radius: 2px
}

.multilink__title {
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: TV Slab, sans-serif;
    letter-spacing: .2px
}

.multilink__description {
    font-size: 0;
    display: inline-flex;
    font-family: Source Sans Pro, sans-serif;
    font-weight: 600
}

@container (min-width: 576px) {
    .multilink__description {
        font-size: inherit
    }
}

.multilink__icon {
    padding: 0 0 0 .25rem;
    margin-top: -2px
}

.multilink__tag {
    display: inline-flex;
    padding: .25rem .5rem;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
    border-radius: 2px;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: auto
}

.panel {
    container-type: inline-size;
    background: #fff;
    border: 1px solid #e1e8fb;
    border-radius: 2px;
    padding: 1.5rem 0
}

.panel__body {
    margin-top: 1rem;
    padding: 0 1rem
}

@container (min-width: 576px) {
    .panel__body {
        padding: 0 1.5rem
    }
}

.panel__flag {
    color: #043cdc;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

@container (min-width: 576px) {
    .panel__flag {
        font-size: .875rem;
        line-height: 1.25rem;
        margin-bottom: .5rem
    }
}

.panel__body h2,
.panel__title {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #000528
}

@container (min-width: 576px) {
    .panel__body h2,
    .panel__title {
        font-size: 1.3125rem;
        line-height: 1.625rem
    }
}

.panel__body h2 {
    margin-top: 24px
}

.panel__button {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border: none;
    background: none;
    padding: 0 1rem
}

@container (min-width: 576px) {
    .panel__button {
        padding: 0 1.5rem
    }
}

.panel__icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #043cdc;
    transition: all .2s ease-in-out
}

.panel__icon--open {
    transform: rotateX(180deg)
}

.panel__image-title {
    font-size: .9rem;
    font-weight: 400;
    color: #52556d;
    margin-top: .25rem
}

.panel p {
    font-family: Source Sans Pro, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem
}

@container (min-width: 576px) {
    .panel p {
        font-size: 1.125rem;
        line-height: 1.625rem
    }
}

.panel ul:last-child {
    margin-bottom: 0
}

.panel li {
    font-size: 1rem;
    line-height: 1.5rem;
    position: relative;
    padding-left: 1.125rem;
    margin-bottom: .5rem
}

.panel li:not(.slide):before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    background-color: #cccdd4;
    top: calc(.8125rem - 3.5px)
}

@container (min-width: 576px) {
    .panel li {
        font-size: 1.125rem;
        line-height: 1.625rem
    }
}

.photo {
    line-height: 1
}

.photo__description {
    font-size: .875rem;
    margin-top: .25rem;
    line-height: 1.125rem;
    letter-spacing: .2px
}

@media(min-width:480px) {
    .photo__description {
        margin-top: .5rem
    }
}

.photo__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: .25rem;
    font-size: .75rem;
    color: #52556d;
    line-height: 1rem
}

.modal-photo .modal {
    background-color: #101622;
    height: 100vh
}

.modal-photo .modal__content {
    margin: 0 auto
}

@media(min-width:768px) {
    .modal-photo .modal__content {
        display: flex;
        flex-direction: column;
        padding: 0 4rem;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 64px)
    }
}

.modal-photo__image {
    text-align: center
}

@media(min-width:768px) {
    .modal-photo__image {
        flex-grow: 1;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        max-height: calc(100vh - 144px)
    }
}

.modal-photo__image img {
    width: auto
}

@media(min-width:768px) {
    .modal-photo__image img {
        top: auto;
        bottom: auto;
        left: 0;
        right: 0;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto
    }
}

.modal-photo__title {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #fff
}

@media(min-width:768px) {
    .modal-photo__title {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.modal-photo__description {
    width: 100%;
    padding: .5rem 1rem
}

@media(min-width:768px) {
    .modal-photo__description {
        padding: 1rem 0
    }
}

.modal-photo__meta {
    font-size: .6875rem;
    line-height: 1rem;
    color: #cccdd4;
    margin-top: .25rem
}

@media(min-width:768px) {
    .modal-photo__meta {
        font-size: .75rem;
        line-height: 1rem;
        margin-top: .5rem
    }
}

.modal-photo__author a {
    color: #cccdd4;
    text-decoration: underline
}

.modal-photo__author a:hover {
    color: #fff
}

.QRPanel {
    position: fixed;
    bottom: 0;
    right: 30px;
    z-index: 2;
    width: 400px
}

.QRPanel__icon,
.QRPanel__image,
.QRPanel__imageToggle,
.QRPanel__text,
.QRPanel__title {
    transition: opacity .3s ease
}

.QRPanel__icon svg {
    display: inline-block;
    width: 12px;
    height: 12px
}

.QRPanel__minimize .QRPanel__icon--min {
    opacity: 1
}

.QRPanel--minimized .QRPanel__image,
.QRPanel--minimized .QRPanel__imageToggle,
.QRPanel--minimized .QRPanel__title,
.QRPanel__minimize .QRPanel__icon--max {
    opacity: 0
}

.QRPanel--minimized .QRPanel__minimize {
    border-radius: 10px 10px 0 0
}

.QRPanel--minimized .QRPanel__minimize .QRPanel__icon--min {
    opacity: 0
}

.QRPanel--minimized .QRPanel__minimize .QRPanel__icon--max {
    opacity: 1
}

.QRPanel__image {
    width: 145px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .161);
    margin-left: 205px
}

.QRPanel__image--show {
    opacity: 1
}

.QRPanel__image--hide {
    opacity: 0
}

.QRPanel__toolbar {
    height: 50px;
    line-height: 50px;
    display: flex;
    color: #fff
}

.QRPanel__title {
    height: 50px;
    width: 205px;
    background: #707070;
    padding: 0 20px;
    border-radius: 10px 0 0 0
}

.QRPanel__imageToggle {
    width: 145px;
    background: #434343;
    color: #fff;
    text-align: center;
    position: relative
}

.QRPanel__imageToggle--show .QRPanel__text--hide {
    opacity: 0
}

.QRPanel__imageToggle--hide .QRPanel__text--hide,
.QRPanel__imageToggle--show .QRPanel__text--show {
    opacity: 1
}

.QRPanel__imageToggle--hide .QRPanel__text--show {
    opacity: 0
}

.QRPanel__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 50px
}

.QRPanel__minimize {
    width: 50px;
    height: 50px;
    background: #707070;
    color: #fff;
    border-radius: 0 10px 0 0;
    text-align: center;
    position: relative
}

.QRPanel__minimize .QRPanel__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center
}

.QRPanel__minimize .QRPanel__icon svg {
    fill: #fff
}

.quote {
    container-type: inline-size;
    position: relative;
    font-family: TV Slab, sans-serif
}

.quote--default {
    max-width: 100%;
    color: #00288c
}

.quote--default .quote__content {
    border-style: solid;
    border-width: 0 0 0 3px;
    border-image: linear-gradient(0deg, #019ce1, #00288c) 1;
    padding: .25rem 0 .25rem 1rem
}

@container (min-width: 576px) {
    .quote--default .quote__content {
        padding: .25rem 0 .25rem 1.5rem
    }
}

.quote--default .quote__text {
    font-size: 1.125rem;
    line-height: 1.625rem
}

@container (min-width: 576px) {
    .quote--default .quote__text {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}

.quote--default .quote__author {
    font-size: 1.125rem
}

@container (min-width: 576px) {
    .quote--default .quote__author {
        font-size: 1.25rem
    }
}

.quote--default .quote__additional-text {
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.2
}

@container (min-width: 576px) {
    .quote--default .quote__additional-text {
        line-height: 1.3
    }
}

.quote--photo {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-end;
    width: 100%;
    aspect-ratio: 16/9;
    color: #fff
}

.quote--photo:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 156, 225, .6) 0, rgba(0, 40, 140, .95))
}

.quote--photo .quote__content {
    position: relative;
    z-index: 1;
    padding: 1rem
}

@container (min-width: 576px) {
    .quote--photo .quote__content {
        padding: 2rem 2rem 1.5rem
    }
}

.quote--photo .quote__text {
    font-size: .875rem;
    line-height: 1.125rem
}

@container (min-width: 576px) {
    .quote--photo .quote__text {
        font-size: 1.25rem;
        line-height: 1.625rem
    }
}

.quote--photo .quote__author {
    font-size: .875rem
}

@container (min-width: 576px) {
    .quote--photo .quote__author {
        font-size: 1.25rem
    }
}

.quote--photo .quote__additional-text {
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.2
}

@container (min-width: 576px) {
    .quote--photo .quote__additional-text {
        line-height: 1.3
    }
}

.quote--photo .quote__meta {
    flex-direction: row;
    align-items: flex-end;
    color: #e1e8fb
}

.quote--photo .quote__author {
    color: #fff
}

.quote .quote__background-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    z-index: -1;
    filter: grayscale(100%)
}

@container (min-width: 576px) {
    .quote__text {
        font-size: 1.25rem;
        margin-bottom: 1rem
    }
}

.quote__text:after,
.quote__text:before {
    font-size: inherit;
    font-weight: 400
}

.quote__text:before {
    content: "„"
}

.quote__text:after {
    content: "“"
}

.quote__author {
    font-weight: 600;
    color: #00288c
}

.quote__meta {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    font-size: .75rem;
    margin-top: .5rem;
    font-family: Source Sans Pro, sans-serif;
    line-height: 1.3;
    color: #52556d
}

@container (min-width: 576px) {
    .quote__meta,
    .quote__photo--author {
        font-size: .875rem
    }
}

.recommended-watch-wrapper {
    background-color: #f0f3fd;
    border-color: #e1e8fb;
    border-style: solid;
    border-width: 1px 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

@media(min-width:768px) {
    .recommended-watch-wrapper {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }
    .recommended-watch {
        max-width: 1248px;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        margin-right: auto;
        margin-left: auto
    }
}

.recommended-watch__title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    letter-spacing: -.03125rem;
    font-weight: 700;
    color: #00288c;
    margin-bottom: 1.5rem;
    font-family: TV Sans Screen, sans-serif;
    padding-left: 1rem;
    padding-right: 1rem
}

@media(min-width:768px) {
    .recommended-watch__title {
        font-size: 2.25rem;
        line-height: 2.625rem;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 2rem
    }
}

.recommended-watch__carousel-wrap {
    position: relative
}

.recommended-watch__carousel-navigation {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #e1e8fb;
    z-index: 1;
    align-items: center;
    justify-content: center;
    top: 101.25px;
    display: none
}

@media(min-width:768px) {
    .recommended-watch__carousel-navigation {
        display: flex
    }
}

.recommended-watch__carousel-navigation .icon {
    width: 1rem;
    line-height: 0;
    color: #043cdc
}

.recommended-watch__carousel-navigation--prev {
    rotate: 90deg;
    left: -12px;
    transform: translateX(-50%)
}

@media(min-width:1400px) {
    .recommended-watch__carousel-navigation--prev {
        left: -20px
    }
}

.recommended-watch__carousel-navigation--next {
    rotate: -90deg;
    right: -12px;
    transform: translateX(50%)
}

@media(min-width:1400px) {
    .recommended-watch__carousel-navigation--next {
        right: -20px
    }
}

.recommended-watch__video {
    width: 242px
}

@media(min-width:768px) {
    .recommended-watch__video {
        width: 360px
    }
}

.recommended-watch__video:hover .recommended-watch__play svg rect:first-child {
    opacity: 1 !important;
    fill: #043cdc !important
}

.recommended-watch__video:hover .recommended-watch__video-title {
    color: #043cdc
}

.recommended-watch__preview {
    margin-bottom: .5rem;
    position: relative
}

.recommended-watch__play {
    position: absolute;
    left: .5rem;
    bottom: .5rem
}

.recommended-watch__play svg {
    width: 3rem
}

.recommended-watch__video-duration {
    font-size: .75rem;
    line-height: 1rem;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    font-weight: 600;
    letter-spacing: .025rem;
    padding-left: .25rem;
    padding-right: .25rem;
    border-radius: 2px
}

.recommended-watch__video-duration--live {
    padding-left: 1rem
}

.recommended-watch__video-duration--live:before {
    content: "";
    display: block;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: #ed1c24;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .25rem
}

.recommended-watch__video-title {
    font-size: .875rem;
    line-height: 1.125rem;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    color: #000528;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

@media(min-width:768px) {
    .recommended-watch__video-title {
        font-size: 1rem;
        line-height: 1.25rem
    }
}

.recommended-watch__program-title {
    color: #043cdc;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .75rem;
    line-height: .875rem;
    letter-spacing: .0375rem;
    margin-bottom: .25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

@media(min-width:768px) {
    .recommended-watch__program-title {
        font-size: .875rem;
        line-height: 1rem;
        letter-spacing: .03125rem
    }
}

.recommended-watch .swiper {
    z-index: 0
}

.recommended-watch .swiper-slide {
    margin-left: 1rem;
    margin-right: 0
}

@media(min-width:768px) {
    .recommended-watch .swiper-slide {
        margin-right: 1rem;
        margin-left: 0
    }
}

.recommended-watch .swiper-slide:last-child {
    margin-right: 1rem
}

@media(min-width:768px) {
    .recommended-watch .swiper-slide:last-child {
        margin-right: 0
    }
}

.media .modal {
    background-color: #101622
}

.media .modal .carousel .slider-wrapper {
    height: 100% !important
}

.media__wrap {
    padding-top: 0 !important;
    margin: 0 auto
}

@media(min-width:768px) {
    .media__wrap {
        display: flex;
        flex-direction: column;
        padding: 0 5rem;
        justify-content: center;
        align-items: center;
        height: calc(100svh - 64px)
    }
}

.media__carousel-wrap {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    width: 100%
}

.media__carousel-wrap li {
    padding-left: 0
}

.media__carousel {
    width: 100%;
    margin-top: 0
}

.media__image {
    text-align: center
}

@media(min-width:768px) {
    .media__image {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        height: calc(100svh - 72px - 24px - 64px)
    }
}

.media__image img {
    width: auto !important
}

@media(min-width:768px) {
    .media__image img {
        max-height: 100%
    }
}

.media__image--video {
    margin: 0 auto;
    aspect-ratio: 16/9;
    max-width: 100%
}

.media__image--video iframe {
    width: 100% !important;
    margin: 0 !important
}

.media__title {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #fff
}

@media(min-width:768px) {
    .media__title {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.media__description {
    width: 100%;
    padding: .5rem 1rem
}

@media(min-width:768px) {
    .media__description {
        padding: 1rem 0
    }
}

.media__meta {
    font-size: .6875rem;
    line-height: 1rem;
    color: #cccdd4;
    margin-top: .25rem
}

@media(min-width:768px) {
    .media__meta {
        font-size: .75rem;
        line-height: 1rem;
        margin-top: .5rem
    }
}

.media__author a {
    color: #cccdd4;
    text-decoration: underline
}

.media__author a:hover {
    color: #fff
}

.media__mobile-preview {
    position: relative;
    width: 100%
}

.media__mobile-play {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%
}

.media__mobile-play svg {
    width: 4rem
}

.media__mobile-video {
    aspect-ratio: 16/9
}

.media__mobile__player {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: unset
}

.media__gallery-thumbnail-play {
    position: absolute;
    width: 48px;
    height: 32px;
    top: calc(50% - 16px);
    left: calc(50% - 24px)
}

.related-video__item {
    position: relative
}

.related-video__item:after {
    content: " ";
    position: absolute;
    right: 8px;
    bottom: 0;
    left: 8px;
    height: 2px;
    background-color: #00b4ff;
    background-image: linear-gradient(90deg, #1250cc 0, #00beff 75%, #00beff)
}

.subsection-list-container {
    container-type: inline-size;
    position: relative
}

.subsection-list {
    display: flex;
    gap: .5rem 1rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: .75rem;
    margin-top: .75rem
}

@container (min-width: 736px) {
    .subsection-list {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
}

.subsection-list__heading {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: 0
}

@container (min-width: 736px) {
    .subsection-list__heading {
        font-size: 2.25rem;
        line-height: 2.625rem;
        letter-spacing: -.025rem
    }
}

.tag-list {
    border-top: 1px solid #e1e8fb
}

.text-stream {
    container-type: inline-size;
    background-color: #fff;
    display: flex;
    flex-direction: column
}

.text-stream--modal {
    max-width: 696px;
    margin: 0 auto 11rem
}

.text-stream__content-item>.h2,
.text-stream__content-item>h2 {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: .5rem
}

.text-stream__content-item>.h3,
.text-stream__content-item>h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: .25rem
}

.text-stream__content-item>p {
    font-size: 1rem;
    line-height: 1.5rem
}

@container (min-width: 480px) {
    .text-stream__content-item>p {
        font-size: 1.125rem;
        line-height: 1.625rem
    }
}

.text-stream__content-item>ol,
.text-stream__content-item>p,
.text-stream__content-item>ul {
    margin-bottom: .5rem
}

.text-stream__content-item>ol li,
.text-stream__content-item>ul li {
    margin-bottom: .25rem;
    font-size: 1rem;
    line-height: 1.5rem
}

@container (min-width: 480px) {
    .text-stream__content-item>ol li,
    .text-stream__content-item>ul li {
        font-size: 1.125rem;
        line-height: 1.625rem
    }
}

.text-stream__content-item>ol {
    padding-left: 1rem
}

@container (min-width: 480px) {
    .text-stream__content-item>ol {
        padding-left: 1.125rem
    }
}

.text-stream__content-item>ul li {
    position: relative;
    padding-left: 1rem
}

.text-stream__content-item>ul li:not(.slide):before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    background-color: #cccdd4;
    top: calc(.75rem - 3px)
}

@container (min-width: 480px) {
    .text-stream__content-item>ul li {
        position: relative;
        padding-left: 1.125rem
    }
    .text-stream__content-item>ul li:not(.slide):before {
        content: "";
        display: block;
        width: 7px;
        height: 7px;
        position: absolute;
        left: 0;
        background-color: #cccdd4;
        top: calc(.8125rem - 3.5px)
    }
}

.text-stream__header {
    flex-shrink: 0;
    position: relative
}

.text-stream__footer {
    text-align: center
}

.text-stream__show-more {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    color: #043cdc;
    font-size: 1rem;
    line-height: 1.375rem
}

.text-stream__show-more:hover {
    text-decoration: underline;
    color: #00288c
}

.text-stream__fullscreen-icon {
    width: 1.5rem;
    height: 1.5rem
}

.text-stream__load-more {
    position: -webkit-sticky;
    position: sticky;
    align-self: center;
    top: .5rem;
    height: 48px;
    margin-top: -24px;
    margin-bottom: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    width: 170px;
    background: #043cdc;
    border-radius: 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    z-index: 1
}

.text-stream__load-more-icon svg {
    width: 20px;
    height: 20px;
    display: inline-block
}

.text-stream__load-more--modal {
    position: fixed;
    top: 5rem;
    margin-top: 0;
    margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.text-stream__messages {
    flex-grow: 1
}

.text-stream__messages--scrollable {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #fff var(--top-mask-size, 0), #fff calc(100% - var(--bottom-mask-size, 0px)), hsla(0, 0%, 100%, .2));
    mask-image: linear-gradient(180deg, transparent 0, #fff var(--top-mask-size, 0), #fff calc(100% - var(--bottom-mask-size, 0px)), hsla(0, 0%, 100%, .2));
    transition: -webkit-mask-image .3s ease;
    transition: mask-image .3s ease;
    transition: mask-image .3s ease, -webkit-mask-image .3s ease
}

@media(min-width:768px) {
    .text-stream__messages--scrollable {
        overflow-y: auto
    }
}

.text-stream__messages--is-top-overflowing {
    --top-mask-size: 72px
}

.text-stream__messages--is-bottom-overflowing {
    --bottom-mask-size: 72px
}

@container (min-width: 480px) {
    .text-stream__message {
        display: flex;
        gap: 1rem
    }
}

.text-stream__message-wrap {
    border-top: 1px solid #e1e8fb;
    padding: 1rem
}

.text-stream__message-wrap:first-child {
    border-top: none
}

.text-stream__message-wrap--red {
    background: #fee8e8
}

.text-stream__message-wrap--blue {
    background: #f0f3fd
}

.text-stream__message-wrap--gold {
    background: linear-gradient(90deg, #ffa300, #ffeb00)
}

.text-stream__message-wrap--gold .text-stream__left {
    color: #000528
}

.text-stream__message-wrap--gold ul li:before {
    background-color: #000528
}

.text-stream__dates+.text-stream__message-wrap {
    border-top: none
}

.text-stream__pin {
    font-size: .75rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #52556d;
    letter-spacing: .0125rem;
    margin-bottom: .25rem
}

.text-stream__pin-icon {
    width: 12px
}

.text-stream__left {
    margin-bottom: .25rem;
    color: #52556d;
    font-size: 1rem;
    line-height: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    column-gap: .5rem
}

@container (min-width: 480px) {
    .text-stream__left {
        font-size: 1.125rem;
        line-height: 1.625rem;
        display: unset;
        margin-bottom: 0;
        max-width: 6rem;
        width: 100%;
        word-wrap: break-word;
        flex-shrink: 0
    }
    .text-stream__left--small {
        max-width: 3.5rem
    }
    .text-stream__left-time {
        font-size: .875rem;
        line-height: 1.25rem
    }
    .text-stream__right {
        flex-grow: 1
    }
}

.text-stream__content-item {
    margin-bottom: 1rem
}

.text-stream__content-item ul:last-child,
.text-stream__content-item:last-child,
.text-stream__content-item:last-child>p:last-child {
    margin-bottom: 0
}

.text-stream__arrow-icon {
    width: 12px;
    height: 12px;
    display: flex
}

.text-stream__dates-divider {
    height: 1px;
    background: linear-gradient(90deg, #019ce1, #00288c)
}

.text-stream__icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: auto;
    gap: .5rem
}

@container (min-width: 480px) {
    .text-stream__icons {
        flex-direction: column;
        margin-top: .5rem;
        gap: unset
    }
}

.text-stream__icon {
    height: 20px;
    max-width: 80px;
    width: auto;
    object-fit: contain
}

@container (min-width: 480px) {
    .text-stream__icon {
        max-width: 32px;
        width: 100%;
        max-height: 90px;
        height: auto;
        object-fit: contain;
        object-position: left;
        margin-bottom: .5rem
    }
}

.text-stream__controls {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #e1e8fb;
    border-radius: 2px;
    padding: 0 1rem;
    background-color: #fff;
    height: 2.75rem;
    bottom: 3rem;
    box-shadow: 0 6px 12px rgba(0, 40, 140, .08)
}

@media(min-width:480px) {
    .text-stream__controls {
        height: 3rem
    }
}

.text-stream__controls button {
    color: #043cdc;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    line-height: 1.25rem
}

.text-stream__controls button:hover {
    color: #00288c
}

.text-stream__controls button:hover svg * {
    fill: #00288c !important
}

@media(min-width:480px) {
    .text-stream__controls button {
        font-size: 1.125rem;
        line-height: 1.625rem
    }
}

.text-stream__controls svg {
    width: 12px;
    height: 12px
}

.text-stream__controls-direction {
    border: 1px solid #e1e8fb;
    border-radius: 2px;
    padding: .5rem
}

@media(min-width:576px) {
    .text-stream__controls-direction {
        padding: 0;
        border: none
    }
}

.text-stream__controls-load-more:disabled {
    color: #c5cced;
    cursor: not-allowed
}

.text-stream__controls-load-more:disabled:hover {
    color: #c5cced
}

.text-stream__controls-load-more:disabled:hover svg * {
    fill: #c5cced !important
}

.text-stream__error {
    text-align: center;
    padding: 1rem
}

.modal-textstream .modal__content {
    padding-top: 1rem
}

.top-articles-text__title {
    font-size: 24px;
    font-weight: 400
}

.video-link__title {
    color: inherit
}

.video {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9
}

.video__player {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: unset
}

.weather-container {
    container-type: inline-size;
    margin-bottom: 1.5rem
}

.weather {
    background: linear-gradient(90deg, #000a50, #00288c);
    color: #fff;
    padding: 2rem 0;
    overflow: hidden
}

.weather--hero {
    padding-top: 106px
}

@container (min-width: 768px) {
    .weather--hero {
        padding-top: 122px
    }
}

.weather__region-switcher {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.625rem;
    font-weight: 500;
    margin-bottom: 1rem
}

@container (min-width: 768px) {
    .weather__region-switcher {
        font-size: 2.25rem;
        line-height: 2.625rem;
        letter-spacing: -.4px
    }
}

.weather__icon svg {
    width: auto !important;
    height: 100% !important
}

.weather__icon--small {
    width: 32px !important;
    height: 32px !important
}

@container (min-width: 768px) {
    .weather__icon--small {
        height: 40px
    }
}

.weather__icon--panel {
    max-width: 160px;
    width: 160px;
    height: 160px;
    margin-right: 8px
}

.weather__icon--panel svg {
    width: 100% !important;
    height: 100% !important
}

.weather__icon--night-panel .icon {
    height: 72px !important
}

.weather__icon--pin {
    height: 21px;
    display: flex
}

@container (min-width: 992px) {
    .weather__icon--pin {
        height: 32px
    }
}

.weather__icon--central-pin .icon {
    height: 48px
}

.weather__day-switcher .swiper-slide {
    margin-right: .25rem
}

.weather__day-switcher .swiper-slide:last-child {
    margin-right: 0
}

.weather__day-switcher-item {
    position: relative;
    width: 145px;
    background: #e1e8fb;
    border-radius: 4px;
    color: #000528;
    padding: .5rem .75rem;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: 1rem
}

@container (min-width: 768px) {
    .weather__day-switcher-item {
        width: 170px;
        margin-bottom: 1.5rem
    }
}

.weather__day-switcher-item--active,
.weather__day-switcher-item:hover {
    background: #fff
}

.weather__day-switcher-item--active:after {
    content: "";
    width: 16px;
    height: 16px;
    bottom: -10px;
    position: absolute;
    z-index: 1;
    left: 50%;
    background: #fff;
    border-radius: 2px;
    transform: rotate(45deg) translateX(-50%)
}

.weather__date {
    font-family: Source Sans Pro, sans-serif;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.weather__temperature {
    font-family: TV Sans Screen, sans-serif;
    font-size: 1.125rem;
    color: #52556d
}

@container (min-width: 768px) {
    .weather__temperature {
        font-size: 1.3125rem
    }
}

.weather__temperature--day {
    color: #000528
}

@container (min-width: 768px) {
    .weather__panel-map {
        display: flex;
        align-items: flex-start
    }
}

.weather__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: .5rem 0 .5rem .5rem;
    color: #000528;
    width: 100%;
    margin-bottom: 3rem
}

@container (min-width: 768px) {
    .weather__panel {
        width: 345px;
        margin-right: 72px;
        padding: 1rem 0 1rem 1rem;
        margin-bottom: 0
    }
}

.weather__panel-day {
    height: min-content;
    font-weight: 600
}

.weather__panel-night {
    padding: 1rem;
    background: #e1e8fb;
    color: #000528;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    margin-right: .5rem
}

@container (min-width: 768px) {
    .weather__panel-night {
        margin-right: 1rem
    }
}

.weather__panel-temperature {
    font-family: TV Sans Screen, sans-serif;
    font-size: 4rem;
    font-weight: 500
}

@container (min-width: 768px) {
    .weather__panel-temperature {
        font-size: 5rem;
        line-height: 1;
        letter-spacing: -.05rem
    }
}

.weather__panel-temperature--night {
    font-size: 1.75rem
}

@container (min-width: 768px) {
    .weather__panel-temperature--night {
        font-size: 2.25rem;
        font-weight: 500;
        letter-spacing: -.025rem;
        line-height: normal
    }
}

.weather__panel-cloudiness {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem
}

.weather__central-pin {
    position: absolute;
    width: 108px;
    height: 108px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    background: hsla(0, 0%, 100%, .9);
    color: #000528;
    border-radius: 4px;
    font-size: 1.3125rem;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    line-height: 1
}

.weather__central-pin-secondary-text {
    color: #52556d
}

.weather__text-forecast {
    max-width: 800px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem
}

@container (min-width: 768px) {
    .weather__text-forecast {
        font-size: 1.125rem;
        line-height: 1.625rem;
        margin-bottom: 3rem
    }
}

.weather__text-forecast__title {
    font-weight: 500;
    font-family: TV Sans Screen, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: .5rem
}

@container (min-width: 768px) {
    .weather__text-forecast__title {
        font-size: 1.5rem;
        line-height: 1.75rem;
        margin-bottom: 1rem
    }
}

.weather__map-wrapper {
    margin-left: -12px;
    margin-right: -12px
}

.weather__map-pin {
    width: 50px;
    padding: 2px .25rem .25rem;
    background: hsla(0, 0%, 100%, .9);
    border-radius: 4px;
    position: absolute;
    transform: translate(-50%, -100%)
}

@container (min-width: 992px) {
    .weather__map-pin {
        padding: .25rem .5rem;
        width: 90px
    }
}

.weather__map-pin-chevron {
    position: absolute;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 8px
}

@container (min-width: 992px) {
    .weather__map-pin-chevron {
        width: 12px
    }
}

.weather__map-pin-chevron svg {
    width: 100%;
    height: auto
}

.weather__map-pin-temperature {
    font-size: .75rem;
    line-height: .75rem;
    color: #000528;
    font-family: TV Sans Screen, sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 2
}

@container (min-width: 992px) {
    .weather__map-pin-temperature {
        font-size: 1.3125rem;
        line-height: 1.625rem
    }
}

.weather__map-pin-bio {
    font-size: 10px;
    line-height: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2
}

@container (min-width: 992px) {
    .weather__map-pin-bio {
        font-size: 1rem;
        line-height: 1rem
    }
}

.weather__map-pin-bio--1 {
    color: #00a050
}

.weather__map-pin-bio--2 {
    color: #ff6400
}

.weather__map-pin-bio--3 {
    color: #b41819
}

.weather__map-pin-bio .icon--weather-bio-solid {
    margin-right: 2px;
    width: 10px;
    height: 10px
}

@container (min-width: 992px) {
    .weather__map-pin-bio .icon--weather-bio-solid {
        width: 12px;
        height: 12px;
        margin-right: 4px
    }
}

.responsive-embed {
    max-width: 100%;
    width: 100%
}

.responsive-embed iframe {
    max-width: 100% !important;
    height: 100% !important
}

.instagram-media-rendered {
    min-width: 250px !important;
    margin-bottom: 0 !important
}