.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
    touch-action: pan-y
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0
}

.flickity-rtl .flickity-slider {
    left: unset;
    right: 0
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-cell {
    position: absolute;
    left: 0
}

.flickity-rtl .flickity-cell {
    left: unset;
    right: 0
}

.flickity-button {
    position: absolute;
    background: hsl(0 0% 100%/75%);
    border: none;
    color: #333
}

.flickity-button:hover {
    background: #fff;
    cursor: pointer
}

.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-button:active {
    opacity: .6
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none
}

.flickity-button-icon {
    fill: currentColor
}

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%)
}

.flickity-prev-next-button.previous {
    left: 10px
}

.flickity-prev-next-button.next {
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dot {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0 8px;
    background: hsl(0 0% 20%/25%);
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    border: none;
    text-indent: -9999px;
    overflow: hidden
}

.flickity-rtl .flickity-page-dot {
    text-indent: 9999px
}

.flickity-page-dot:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-page-dot.is-selected {
    background: hsl(0 0% 20%/100%)
}

.flickity-enabled.is-fullscreen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: hsl(0 0% 0%/90%);
    padding-bottom: 35px;
    z-index: 1
}

.flickity-enabled.is-fullscreen .flickity-page-dots {
    bottom: 10px
}

.flickity-enabled.is-fullscreen .flickity-page-dots .dot {
    background: #fff
}

html.is-flickity-fullscreen {
    overflow: hidden
}

.flickity-fullscreen-button {
    display: block;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 4px
}

.flickity-rtl .flickity-fullscreen-button {
    right: auto;
    left: 10px
}

.flickity-fullscreen-button-exit {
    display: none
}

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-exit {
    display: block
}

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-view {
    display: none
}

.flickity-fullscreen-button .flickity-button-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 4px;
    top: 4px
}

.carousel {
    position: relative;
    box-sizing: border-box
}

.carousel *,.carousel :after,.carousel :before {
    box-sizing: inherit
}

.carousel.is-draggable {
    cursor: move;
    cursor: grab
}

.carousel.is-dragging {
    cursor: move;
    cursor: grabbing
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width,60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: currentColor;
    opacity: .25;
    transition: opacity .15s ease-in-out
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    width: var(--carousel-button-width,48px);
    height: var(--carousel-button-height,48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color,currentColor);
    background: var(--carousel-button-bg,transparent);
    border-radius: var(--carousel-button-border-radius,50%);
    box-shadow: var(--carousel-button-shadow,none);
    transition: opacity .15s ease
}

.carousel__button.is-next,.carousel__button.is-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel__button.is-prev {
    left: 10px
}

.carousel__button.is-next {
    right: 10px
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3
}

.carousel__button svg {
    width: var(--carousel-button-svg-width,50%);
    height: var(--carousel-button-svg-height,50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width,1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter,none);
    pointer-events: none
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden!important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top,0) env(safe-area-inset-right,0) env(safe-area-inset-bottom,0) env(safe-area-inset-left,0);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color,#fff);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    overflow: hidden;
    z-index: 1050;
    outline: none;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.4))
}

.fancybox__container *,.fancybox__container :after,.fancybox__container :before {
    box-sizing: inherit
}

.fancybox__container :focus {
    outline: none
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,.94))
}

@media (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width:48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg,rgba(24,24,27,.92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

.fancybox__slide:after,.fancybox__slide:before {
    content: "";
    flex: 0 0 0;
    margin: auto
}

@media (min-width: 1024px) {
    .fancybox__slide {
        padding:64px 100px
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right,0) 0 env(safe-area-inset-left,0);
    padding: 36px;
    color: var(--fancybox-content-color,#374151);
    background: var(--fancybox-content-bg,#fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    box-shadow: none
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0;
    line-height: 1.375;
    color: var(--fancybox-color,currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container>.carousel__dots {
    top: 100%;
    color: var(--fancybox-color,#fff)
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

@media (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right:40px
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

@media (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left:40px
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40
}

@media (min-width: 1024px) {
    .carousel__button.is-close {
        right:40px
    }
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color,#fff)
}

.fancybox__no-click,.fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color,currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor
}

@keyframes fancybox-rotate {
    to {
        transform: rotate(1turn)
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px
    }

    to {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px
    }
}

.carousel__button.is-close,.carousel__dots,.fancybox__backdrop,.fancybox__caption,.fancybox__nav {
    opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
    animation: fancybox-fadeIn .15s ease backwards
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav {
    animation: fancybox-fadeOut .15s ease both
}

.fancybox-fadeIn {
    animation: fancybox-fadeIn .15s ease both
}

.fancybox-fadeOut {
    animation: fancybox-fadeOut .1s ease both
}

.fancybox-zoomInUp {
    animation: fancybox-zoomInUp .2s ease both
}

.fancybox-zoomOutDown {
    animation: fancybox-zoomOutDown .15s ease both
}

.fancybox-throwOutUp {
    animation: fancybox-throwOutUp .15s ease both
}

.fancybox-throwOutDown {
    animation: fancybox-throwOutDown .15s ease both
}

@keyframes fancybox-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    0% {
        transform: scale(.97) translate3d(0,16px,0);
        opacity: 0
    }

    to {
        transform: scale(1) translateZ(0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(.97) translate3d(0,16px,0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0,-30%,0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0,30%,0);
        opacity: 0
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc hsla(0,0%,100%,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: hsla(0,0%,100%,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0,0,0,.2)
}

.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none
}

.has-image .fancybox__content {
    padding: 0;
    background: transparent;
    min-height: 1px
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    padding: 0;
    background: rgba(24,24,27,.9);
    color: #fff
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video,.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: transparent
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0 3px;
    opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: fancybox-fadeIn .15s ease-in backwards
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width,96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid var(--fancybox-accent-color,rgba(34,213,233,.96));
    opacity: 0;
    transition: opacity .15s ease;
    border-radius: var(--fancybox-thumbs-border-radius,4px)
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb:after {
    opacity: .92
}

.fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    user-select: none
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100%/var(--fancybox-thumbs-ratio, 1.5));
    background-size: cover;
    background-position: 50%;
    background-color: hsla(0,0%,100%,.1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius,4px)
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(0deg,transparent 0,rgba(0,0,0,.006) 8.1%,rgba(0,0,0,.021) 15.5%,rgba(0,0,0,.046) 22.5%,rgba(0,0,0,.077) 29%,rgba(0,0,0,.114) 35.3%,rgba(0,0,0,.155) 41.2%,rgba(0,0,0,.198) 47.1%,rgba(0,0,0,.242) 52.9%,rgba(0,0,0,.285) 58.8%,rgba(0,0,0,.326) 64.7%,rgba(0,0,0,.363) 71%,rgba(0,0,0,.394) 77.5%,rgba(0,0,0,.419) 84.5%,rgba(0,0,0,.434) 91.9%,rgba(0,0,0,.44));
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity,1);
    text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.4))
}

@media (min-width: 1024px) {
    .fancybox__toolbar {
        padding:8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: fancybox-fadeIn .15s ease-in backwards
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-right: auto
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
    margin-left: auto
}

@media(max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display:none
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height,48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color,rgba(34,213,233,.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2),.fancybox__container:fullscreen .fancybox__button--fullscreen g:first-child {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2),.fancybox__container.has-slideshow .fancybox__button--slideshow g:first-child {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

.t3terminal-product h1 {
    font-size: 34px;
    line-height: 40px
}

.search-form .close-button,.search-form .registrations-title,.t3terminal-product .event--details .event--additionaldetails .h2,.t3terminal-product .event--details .event--contactPerson .h2,.t3terminal-product .event--details .event--details--description .h2,.t3terminal-product .event--details .event--organiserdetails .h2,.t3terminal-product .event--details .event--sponcer .h2,.t3terminal-product .event--details .event--topic .h2,.t3terminal-product .event--details h1,.t3terminal-product .headline--block,.t3terminal-product .related__events .related__events--title .h2,.t3terminal-product .slider-data h5,.t3terminal-product h2,.userCreateForm .close-button,.userCreateForm .registrations-title {
    font-size: 26px;
    line-height: 32px
}

.t3terminal-product .event--details .event--additionaldetails .video:after,.t3terminal-product .event--details .event--additionaldetails h3,.t3terminal-product .event__summary .headline--block,.t3terminal-product h3 {
    font-size: 22px;
    line-height: 28px
}

.contactperson--data h2,.eventtopic h2,.search-form label,.sponcer h2,.t3terminal-product .event--details h3,.t3terminal-product .event__summary .event__summary--details .event-free,.t3terminal-product .slider-data .evnet-onlinePlatform .h3,.t3terminal-product h4,.tx-ns-event .event-teaser .light-square .date,.tx-ns-event .event-teaser .light .date,.tx-ns-event .event-teaser h3,.tx-ns-event .rowView .h3,.userCreateForm label {
    font-size: 19px;
    line-height: 25px
}

.t3terminal-product .calendar.dark .date,.t3terminal-product .calendar .date,.t3terminal-product .calendar.light-square .date,.t3terminal-product .calendar.light .date,.t3terminal-product .calendar.transparent .date,.t3terminal-product h5,.tx-ns-event .rowView .event-teaser__date .date,.tx-ns-event .rowView .event-teaser__date .month {
    font-size: 17px;
    line-height: 22px
}

.t3terminal-product .calendar.dark .month,.t3terminal-product .calendar.light-square .month,.t3terminal-product .calendar.light .month,.t3terminal-product .calendar.transparent .month {
    font-size: 19px;
    line-height: 26px
}

.calendar-menu .move-day,.calendar-menu .move-today,.t3terminal-product .vertical .month,.t3terminal-product .vertical span,.t3terminal-product h6 {
    font-size: 16px;
    line-height: 20px
}

.search-form .ns-form-control,.search-form input,.search-form select,.search-form textarea,.t3terminal-product,.t3terminal-product .button,.t3terminal-product .event--details .event--additionaldetails .event--additionaldetails--description,.t3terminal-product .event--details .event--details--description,.t3terminal-product .event--details span,.t3terminal-product .event__summary .event__summary--details h5,.t3terminal-product .event__summary .event__summary--details p,.tx-ns-event .event-teaser__share h5,.userCreateForm .ns-form-control,.userCreateForm input,.userCreateForm select,.userCreateForm textarea {
    font-size: 15px;
    line-height: 26px
}

.search-form .parsley-custom-error-message,.search-form .parsley-error,.search-form .parsley-required,.search-form .parsley-type,.userCreateForm .parsley-custom-error-message,.userCreateForm .parsley-error,.userCreateForm .parsley-required,.userCreateForm .parsley-type {
    font-size: 14px;
    line-height: 22px
}

.t3terminal-product .calendar .month {
    font-size: 13px;
    line-height: 17px
}

@media (min-width: 768px) {
    .t3terminal-product h1 {
        font-size:36px;
        line-height: 40px
    }

    .search-form .close-button,.search-form .registrations-title,.t3terminal-product .event--details .event--additionaldetails .h2,.t3terminal-product .event--details .event--contactPerson .h2,.t3terminal-product .event--details .event--details--description .h2,.t3terminal-product .event--details .event--organiserdetails .h2,.t3terminal-product .event--details .event--sponcer .h2,.t3terminal-product .event--details .event--topic .h2,.t3terminal-product .event--details h1,.t3terminal-product .headline--block,.t3terminal-product .related__events .related__events--title .h2,.t3terminal-product .slider-data h5,.t3terminal-product h2,.userCreateForm .close-button,.userCreateForm .registrations-title {
        font-size: 28px;
        line-height: 34px
    }

    .t3terminal-product .event--details .event--additionaldetails .video:after,.t3terminal-product .event--details .event--additionaldetails h3,.t3terminal-product .event__summary .headline--block,.t3terminal-product h3 {
        font-size: 24px;
        line-height: 28px
    }

    .contactperson--data h2,.eventtopic h2,.search-form label,.sponcer h2,.t3terminal-product .event--details h3,.t3terminal-product .event__summary .event__summary--details .event-free,.t3terminal-product .slider-data .evnet-onlinePlatform .h3,.t3terminal-product h4,.tx-ns-event .event-teaser .light-square .date,.tx-ns-event .event-teaser .light .date,.tx-ns-event .event-teaser h3,.tx-ns-event .rowView .h3,.userCreateForm label {
        font-size: 20px;
        line-height: 24px
    }

    .t3terminal-product .calendar.dark .date,.t3terminal-product .calendar .date,.t3terminal-product .calendar.light-square .date,.t3terminal-product .calendar.light .date,.t3terminal-product .calendar.transparent .date,.t3terminal-product h5,.tx-ns-event .rowView .event-teaser__date .date,.tx-ns-event .rowView .event-teaser__date .month {
        font-size: 18px;
        line-height: 22px
    }
}

@media (min-width: 992px) {
    .t3terminal-product h1 {
        font-size:50px;
        line-height: 62px
    }

    .search-form .close-button,.search-form .registrations-title,.t3terminal-product .event--details .event--additionaldetails .h2,.t3terminal-product .event--details .event--contactPerson .h2,.t3terminal-product .event--details .event--details--description .h2,.t3terminal-product .event--details .event--organiserdetails .h2,.t3terminal-product .event--details .event--sponcer .h2,.t3terminal-product .event--details .event--topic .h2,.t3terminal-product .event--details h1,.t3terminal-product .headline--block,.t3terminal-product .related__events .related__events--title .h2,.t3terminal-product .slider-data h5,.t3terminal-product h2,.userCreateForm .close-button,.userCreateForm .registrations-title {
        font-size: 30px;
        line-height: 36px
    }

    .t3terminal-product .event--details .event--additionaldetails .video:after,.t3terminal-product .event--details .event--additionaldetails h3,.t3terminal-product .event__summary .headline--block,.t3terminal-product h3 {
        font-size: 26px;
        line-height: 32px
    }

    .contactperson--data h2,.eventtopic h2,.search-form label,.sponcer h2,.t3terminal-product .event--details h3,.t3terminal-product .event__summary .event__summary--details .event-free,.t3terminal-product .slider-data .evnet-onlinePlatform .h3,.t3terminal-product h4,.tx-ns-event .event-teaser .light-square .date,.tx-ns-event .event-teaser .light .date,.tx-ns-event .event-teaser h3,.tx-ns-event .rowView .h3,.userCreateForm label {
        font-size: 22px;
        line-height: 30px
    }

    .t3terminal-product .calendar.dark .date,.t3terminal-product .calendar .date,.t3terminal-product .calendar.light-square .date,.t3terminal-product .calendar.light .date,.t3terminal-product .calendar.transparent .date,.t3terminal-product h5,.tx-ns-event .rowView .event-teaser__date .date,.tx-ns-event .rowView .event-teaser__date .month {
        font-size: 20px;
        line-height: 28px
    }

    .calendar-menu .move-day,.calendar-menu .move-today,.t3terminal-product .vertical .month,.t3terminal-product .vertical span,.t3terminal-product h6 {
        font-size: 18px;
        line-height: 24px
    }

    .search-form .ns-form-control,.search-form input,.search-form select,.search-form textarea,.t3terminal-product,.t3terminal-product .button,.t3terminal-product .event--details .event--additionaldetails .event--additionaldetails--description,.t3terminal-product .event--details .event--details--description,.t3terminal-product .event--details span,.t3terminal-product .event__summary .event__summary--details h5,.t3terminal-product .event__summary .event__summary--details p,.tx-ns-event .event-teaser__share h5,.userCreateForm .ns-form-control,.userCreateForm input,.userCreateForm select,.userCreateForm textarea {
        font-size: 16px;
        line-height: 28px
    }
}

@font-face {
    font-family: Archivo;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Archivo/Archivo-Regular.woff2) format("woff2"),url(../fonts/Archivo/Archivo-Regular.woff) format("woff")
}

@font-face {
    font-family: Archivo;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/Archivo/Archivo-Italic.woff2) format("woff2"),url(../fonts/Archivo/Archivo-Italic.woff) format("woff")
}

@font-face {
    font-family: Archivo;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Archivo/Archivo-SemiBold.woff2) format("woff2"),url(../fonts/Archivo/Archivo-SemiBold.woff) format("woff")
}

@font-face {
    font-family: Archivo;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Archivo/Archivo-Bold.woff2) format("woff2"),url(../fonts/Archivo/Archivo-Bold.woff) format("woff")
}

@font-face {
    font-family: Archivo;
    font-stretch: normal;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/Archivo/Archivo-Black.woff2) format("woff2"),url(../fonts/Archivo/Archivo-Black.woff) format("woff")
}

.t3terminal-product {
    font-family: Archivo,Arial,Helvetica,sans-serif
}

.t3terminal-product p {
    font-weight: 300;
    margin-bottom: 10px
}

.t3terminal-product img {
    height: auto;
    max-width: 100%
}

.t3terminal-product figure {
    margin: 0 0 15px
}

.t3terminal-product ul {
    list-style-type: none;
    padding: 0
}

.t3terminal-product a {
    transition: all .2s ease 0s;
    color: #f49600;
    display: block;
    outline: none;
    text-decoration: none
}

.t3terminal-product a:focus,.t3terminal-product a:hover {
    color: #000
}

.dark--theme .t3terminal-product a:focus,.dark--theme .t3terminal-product a:hover {
    color: #fff
}

.t3terminal-product a span {
    transition: all .2s ease 0s
}

.t3terminal-product b,.t3terminal-product strong {
    font-weight: 700
}

.dark--theme .t3terminal-product .h1,.dark--theme .t3terminal-product .h2,.dark--theme .t3terminal-product .h3,.dark--theme .t3terminal-product .h4,.dark--theme .t3terminal-product .h5,.dark--theme .t3terminal-product .h6,.dark--theme .t3terminal-product h1,.dark--theme .t3terminal-product h2,.dark--theme .t3terminal-product h3,.dark--theme .t3terminal-product h4,.dark--theme .t3terminal-product h5,.dark--theme .t3terminal-product h6 {
    color: #fff
}

.dark--theme .t3terminal-product p {
    color: #e6e6e6
}

.t3terminal-product .h1,.t3terminal-product .h2,.t3terminal-product .h3,.t3terminal-product .h4,.t3terminal-product .h5,.t3terminal-product .h6,.t3terminal-product h1,.t3terminal-product h2,.t3terminal-product h3,.t3terminal-product h4,.t3terminal-product h5,.t3terminal-product h6 {
    color: #000;
    font-weight: 800
}

.t3terminal-product h1,.t3terminal-product h2 {
    margin-bottom: 20px
}

.t3terminal-product h3 {
    margin-bottom: 18px
}

@media (min-width: 992px) {
    .t3terminal-product h1,.t3terminal-product h2 {
        margin-bottom:24px
    }

    .t3terminal-product h3 {
        margin-bottom: 20px
    }
}

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/font-awesome/fontawesome-webfont.eot?v=4.7.0);
    src: url(../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(../fonts/font-awesome/fontawesome-webfont.woff2?v=4.7.0) format("woff2"),url(../fonts/font-awesome/fontawesome-webfont.woff?v=4.7.0) format("woff"),url(../fonts/font-awesome/fontawesome-webfont.ttf?v=4.7.0) format("truetype"),url(../fonts/font-awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s linear infinite
}

.fa-pulse {
    animation: fa-spin 1s steps(8) infinite
}

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

    to {
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scaleX(-1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    transform: scaleY(-1)
}

:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270 {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-close:before,.fa-remove:before,.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-cog:before,.fa-gear:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-repeat:before,.fa-rotate-right:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-image:before,.fa-photo:before,.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-exclamation-triangle:before,.fa-warning:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-cogs:before,.fa-gears:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-floppy-o:before,.fa-save:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before,.fa-navicon:before,.fa-reorder:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-sort:before,.fa-unsorted:before {
    content: "\f0dc"
}

.fa-sort-desc:before,.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-asc:before,.fa-sort-up:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,.fa-undo:before {
    content: "\f0e2"
}

.fa-gavel:before,.fa-legal:before {
    content: "\f0e3"
}

.fa-dashboard:before,.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-bolt:before,.fa-flash:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-clipboard:before,.fa-paste:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-chain-broken:before,.fa-unlink:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-caret-square-o-down:before,.fa-toggle-down:before {
    content: "\f150"
}

.fa-caret-square-o-up:before,.fa-toggle-up:before {
    content: "\f151"
}

.fa-caret-square-o-right:before,.fa-toggle-right:before {
    content: "\f152"
}

.fa-eur:before,.fa-euro:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,.fa-usd:before {
    content: "\f155"
}

.fa-inr:before,.fa-rupee:before {
    content: "\f156"
}

.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before {
    content: "\f157"
}

.fa-rouble:before,.fa-rub:before,.fa-ruble:before {
    content: "\f158"
}

.fa-krw:before,.fa-won:before {
    content: "\f159"
}

.fa-bitcoin:before,.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-caret-square-o-left:before,.fa-toggle-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-try:before,.fa-turkish-lira:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-bank:before,.fa-institution:before,.fa-university:before {
    content: "\f19c"
}

.fa-graduation-cap:before,.fa-mortar-board:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before {
    content: "\f1c5"
}

.fa-file-archive-o:before,.fa-file-zip-o:before {
    content: "\f1c6"
}

.fa-file-audio-o:before,.fa-file-sound-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,.fa-rebel:before,.fa-resistance:before {
    content: "\f1d0"
}

.fa-empire:before,.fa-ge:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,.fa-weixin:before {
    content: "\f1d7"
}

.fa-paper-plane:before,.fa-send:before {
    content: "\f1d8"
}

.fa-paper-plane-o:before,.fa-send-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-futbol-o:before,.fa-soccer-ball-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-ils:before,.fa-shekel:before,.fa-sheqel:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-bed:before,.fa-hotel:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-y-combinator:before,.fa-yc:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before {
    content: "\f240"
}

.fa-battery-3:before,.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-paper-o:before,.fa-hand-stop-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-television:before,.fa-tv:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before {
    content: "\f2a3"
}

.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-sign-language:before,.fa-signing:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-address-card:before,.fa-vcard:before {
    content: "\f2bb"
}

.fa-address-card-o:before,.fa-vcard-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bath:before,.fa-bathtub:before,.fa-s15:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.t3terminal-product .no-scrollbar {
    overflow: hidden
}

.t3terminal-product .bg-img {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.t3terminal-product .custom-container {
    max-width: 1374px;
    padding-left: 15px;
    padding-right: 15px
}

.t3terminal-product .column-item {
    padding: 0 15px
}

.t3terminal-product .headline--block {
    font-family: Archivo,Arial,Helvetica,sans-serif;
    font-weight: 400
}

.t3terminal-product .ns-pagination {
    display: flex;
    flex-wrap: wrap;
    margin: 7px
}

.t3terminal-product .ns-pagination li {
    margin-bottom: 10px
}

.t3terminal-product .ns-pagination li a {
    background-color: #f6f6f6;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    margin-right: 8px;
    padding: 4px 12px
}

.t3terminal-product .ns-pagination li a:focus,.t3terminal-product .ns-pagination li a:hover {
    color: #000
}

.dark--theme .t3terminal-product .ns-pagination li a:focus,.dark--theme .t3terminal-product .ns-pagination li a:hover {
    color: #000!important
}

.t3terminal-product .ns-pagination li.active a,.t3terminal-product .ns-pagination li.current a {
    background-color: #f49600;
    color: #fff
}

.t3terminal-product .ns-pagination li.active a:hover,.t3terminal-product .ns-pagination li.current a:hover,.t3terminal-product .ns-pagination li:hover {
    color: #fff
}

.t3terminal-product .wpel-demo-banner-wrapper {
    margin-bottom: 25px
}

.t3terminal-product .wpel-demo-banner-wrapper .filter--buttons {
    align-items: center;
    display: flex;
    width: 100%
}

.t3terminal-product .wpel-demo-banner-wrapper .filter--buttons button {
    margin-right: 15px
}

.t3terminal-product .calendar {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    height: 60px;
    padding: 11px 13px;
    position: absolute;
    right: 18px;
    text-align: center;
    top: 18px;
    transition: all .3s ease-in-out;
    width: 70px
}

.t3terminal-product .calendar span {
    display: block;
    font-weight: 700;
    transition: all .3s ease-in-out
}

.t3terminal-product .calendar .date {
    transition: all .3s ease-in-out
}

.t3terminal-product .calendar .month {
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease-in-out
}

@media (min-width: 992px) {
    .t3terminal-product .calendar {
        height:70px;
        width: 80px
    }
}

.t3terminal-product .calendar.dark .date,.t3terminal-product .calendar.light-square .date,.t3terminal-product .calendar.light .date,.t3terminal-product .calendar.transparent .date {
    font-weight: 700
}

.t3terminal-product .calendar.dark .month,.t3terminal-product .calendar.light-square .month,.t3terminal-product .calendar.light .month,.t3terminal-product .calendar.transparent .month {
    color: #000
}

.t3terminal-product .calendar.light:before {
    background-color: #000;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.t3terminal-product .calendar.transparent {
    align-items: center;
    background-color: transparent;
    box-shadow: none;
    display: flex;
    height: 70px;
    width: 120px
}

.t3terminal-product .calendar.transparent:before {
    content: "";
    display: none
}

.t3terminal-product .calendar.transparent:after {
    border-radius: 0;
    border-right: 2px solid #9a9a9a;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.t3terminal-product .calendar.transparent .month {
    color: #9a9a9a
}

.t3terminal-product .calendar.light-square {
    border-radius: 0;
    height: 40px;
    left: 40px;
    right: 0;
    top: 18px;
    width: 120px
}

@media (min-width: 992px) {
    .t3terminal-product .calendar.light-square {
        height:50px;
        width: 145px
    }
}

.t3terminal-product .calendar.dark {
    background-color: #000;
    border-radius: 7px;
    color: #fff;
    height: 35px;
    left: 40px;
    opacity: .75;
    padding: 7px 13px;
    right: 0;
    width: 130px
}

.t3terminal-product .calendar.dark .month {
    color: #fff
}

@media (min-width: 992px) {
    .t3terminal-product .calendar.dark {
        height:43px;
        width: 145px
    }
}

.t3terminal-product .vertical {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    height: 60px;
    left: 35px;
    opacity: .7;
    width: 80px
}

.t3terminal-product .vertical span {
    color: #fff;
    font-weight: 600
}

@media (min-width: 992px) {
    .t3terminal-product .vertical span {
        margin-right:5px
    }
}

@media (min-width: 992px) {
    .t3terminal-product .vertical {
        width:90px
    }
}

.t3terminal-product .vertical--icon {
    left: auto;
    right: 40px;
    width: 120px
}

.t3terminal-product .vertical--icon:before {
    content: "";
    display: none
}

.t3terminal-product .vertical--icon:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.5%22%20height%3D%2215.5%22%3E%3Cpath%20data-name%3D%22calendar%20%282%29%22%20d%3D%22M13.563%201.938h-.646V.646A.646.646%200%200%200%2012.271%200h-.646a.646.646%200%200%200-.646.646v1.292H4.521V.646A.646.646%200%200%200%203.875%200h-.646a.646.646%200%200%200-.646.646v1.292h-.645A1.94%201.94%200%200%200%200%203.875v9.688A1.94%201.94%200%200%200%201.938%2015.5h11.625a1.94%201.94%200%200%200%201.937-1.937V3.875a1.94%201.94%200%200%200-1.937-1.937Zm.646%2011.625a.647.647%200%200%201-.646.646H1.938a.647.647%200%200%201-.646-.646V6.484h12.916Zm0%200%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    height: 16px;
    left: 15px;
    position: absolute;
    width: 16px
}

.t3terminal-product .vertical--icon .date {
    margin-left: 35px
}

.t3terminal-product .vertical-icon {
    height: 80px;
    width: 75px
}

@media (min-width: 992px) {
    .t3terminal-product .vertical-icon {
        height:95px;
        width: 90px
    }
}

.t3terminal-product .calendar.calendar--right {
    left: auto;
    right: 25px
}

.t3terminal-product .calendar.calendar--left {
    left: 25px;
    right: auto
}

.t3terminal-product .calendar.calendar--center {
    left: 50%;
    top: 18px;
    transform: translateX(-50%)
}

.t3terminal-product .tag {
    background-color: #484848;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 13px;
    margin-right: 12px;
    padding: 6px 20px
}

.t3terminal-product .tag:hover {
    color: #fff
}

.t3terminal-product .ovalTag,.t3terminal-product .roundedCornerTag {
    background-color: #9a9a9a;
    border-radius: 4px
}

.t3terminal-product .ovalTag:active,.t3terminal-product .ovalTag:focus,.t3terminal-product .ovalTag:hover,.t3terminal-product .roundedCornerTag:active,.t3terminal-product .roundedCornerTag:focus,.t3terminal-product .roundedCornerTag:hover {
    background-color: #484848;
    color: #fff
}

.t3terminal-product .squareTag {
    background-color: #000
}

.t3terminal-product .squareTag:active,.t3terminal-product .squareTag:focus,.t3terminal-product .squareTag:hover {
    background-color: #484848;
    color: #fff
}

.t3terminal-product .ovalTag {
    border-radius: 13px;
    padding: 4px 20px
}

.t3terminal-product .modal {
    display: block
}

.tui-full-calendar-dayname-date {
    font-size: 20px!important
}

.tui-full-calendar-dayname-name {
    display: none
}

@media (min-width: 576px) {
    .tui-full-calendar-dayname-name {
        display:contents
    }
}

.contactperson--data h2,.eventtopic h2,.sponcer h2 {
    margin-bottom: 0
}

.current.active {
    color: #000!important
}

.dark--theme .ovalTag,.light--theme .ovalTag {
    background-color: #9a9a9a
}

.dark--theme .ovalTag:hover,.light--theme .ovalTag:hover {
    background-color: #484848
}

.dark--theme .roundedCornerTag,.light--theme .roundedCornerTag {
    background-color: #9a9a9a
}

.dark--theme .roundedCornerTag:hover,.light--theme .roundedCornerTag:hover {
    background-color: #484848
}

.dark--theme .calendar.light:before,.light--theme .calendar.light:before {
    background-color: #000
}

.dark--theme .calendar.dark,.light--theme .calendar.dark {
    background-color: #fff
}

.dark--theme .calendar.dark .date,.dark--theme .calendar.dark .month,.light--theme .calendar.dark .date,.light--theme .calendar.dark .month {
    color: #0a0b19
}

.dark--theme .calendar.light-square .month,.light--theme .calendar.light-square .month {
    color: #000
}

.dark--theme .vertical--icon:after,.light--theme .vertical--icon:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.5%22%20height%3D%2215.5%22%3E%3Cpath%20data-name%3D%22calendar%20%282%29%22%20d%3D%22M13.563%201.938h-.646V.646A.646.646%200%200%200%2012.271%200h-.646a.646.646%200%200%200-.646.646v1.292H4.521V.646A.646.646%200%200%200%203.875%200h-.646a.646.646%200%200%200-.646.646v1.292h-.645A1.94%201.94%200%200%200%200%203.875v9.688A1.94%201.94%200%200%200%201.938%2015.5h11.625a1.94%201.94%200%200%200%201.937-1.937V3.875a1.94%201.94%200%200%200-1.937-1.937Zm.646%2011.625a.647.647%200%200%201-.646.646H1.938a.647.647%200%200%201-.646-.646V6.484h12.916Zm0%200%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
}

.dark--theme .calendar.transparent .date,.light--theme .calendar.transparent .date {
    color: #f49600
}

.event-teaser__date.calendar.vertical .date,.event-teaser__date.calendar.vertical .month {
    color: #fff
}

.dark--theme {
    background-color: #0a0b19
}

.dark--theme .wpel-demo-banner-area h1,.dark--theme .wpel-demo-banner-area p {
    color: #fff
}

.event-teaser .event-teaser__date span {
    text-transform: uppercase;
    margin-right: 0
}

.custome-carousel .event-teaser .event-teaser__content .calendar--left .transparent {
    left: 0
}

.custome-carousel .event-teaser .event-teaser__content .calendar--center .transparent {
    position: absolute
}

.custome-carousel.main-carousel-overlay .calendar--left .transparent {
    position: relative
}

.custom-container+.paddingTopBottom+.custom-container {
    padding-top: 25px
}

.pagination-link--disable {
    pointer-events: none
}

.d-none {
    display: none!important
}

.dark--theme .tx-ns-event .event-teaser__share h5 {
    color: #fff
}

.dark--theme .tx-ns-event .event-teaser__share svg {
    fill: #fff
}

.t3terminal-product .button {
    transition: all .4s ease 0s;
    *display: inline;
    display: inline-block;
    vertical-align: top;
    zoom:1;box-shadow: none;
    background-color: #000;
    border: 0;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    margin: 0;
    outline: none;
    outline: 0;
    padding: 8px 15px;
    text-shadow: none;
    white-space: normal
}

.t3terminal-product .button.focus,.t3terminal-product .button:active,.t3terminal-product .button:focus,.t3terminal-product .button:hover {
    background-color: #484848
}

.t3terminal-product .button--primary,.t3terminal-product .button--secondary {
    background-color: #000
}

.t3terminal-product .button--primary:active,.t3terminal-product .button--primary:focus,.t3terminal-product .button--primary:hover,.t3terminal-product .button--secondary:active,.t3terminal-product .button--secondary:focus,.t3terminal-product .button--secondary:hover {
    background-color: #484848!important;
    color: #fff!important
}

.t3terminal-product .button--secondary {
    border-radius: 25px
}

.t3terminal-product .button--rounded,.t3terminal-product .button--tertiary {
    background-color: #000;
    border: 1px solid #000;
    color: #fff
}

.t3terminal-product .button--rounded:active,.t3terminal-product .button--rounded:focus,.t3terminal-product .button--rounded:hover,.t3terminal-product .button--tertiary:active,.t3terminal-product .button--tertiary:focus,.t3terminal-product .button--tertiary:hover {
    background-color: #484848!important;
    color: #fff!important
}

.t3terminal-product .button--rounded {
    border-radius: 25px
}

.t3terminal-product .button--link {
    background-color: transparent!important;
    border: 0;
    color: #000;
    padding: 0 30px 0 0!important;
    position: relative
}

.t3terminal-product .button--link:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.999%22%20height%3D%2212.001%22%3E%3Cpath%20data-name%3D%22Path%2015380%22%20d%3D%22m13.706%206.707-5%205a.986.986%200%200%201-.706.294%201%201%200%200%201-.707-.293%201%201%200%200%201%200-1.414l3.294-3.293H1a1%201%200%200%201-1-1%201%201%200%200%201%201-1h9.587L7.294%201.707a1%201%200%200%201%200-1.414%201%201%200%200%201%201.414%200l5%205a1%201%200%200%201-.002%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    content: "";
    height: 14px;
    margin-left: 13px;
    position: absolute;
    top: 8px;
    right: 7px;
    width: 14px;
    transition: all .5s ease
}

.t3terminal-product .button--link:active,.t3terminal-product .button--link:focus,.t3terminal-product .button--link:hover {
    background-color: transparent
}

.t3terminal-product .button--link:active:after,.t3terminal-product .button--link:focus:after,.t3terminal-product .button--link:hover:after {
    right: 2px
}

.t3terminal-product button:focus {
    outline: none
}

.t3terminal-product .button-group .button {
    margin-bottom: 5px
}

.tx-ns-event.t3terminal-product .button.button-none {
    display: none
}

@media (min-width: 576px) {
    .t3terminal-product .button {
        padding:9px 25px
    }
}

.light--theme .button--primary {
    background-color: #f49600
}

.dark--theme .button--primary,.dark--theme .button--secondary {
    background-color: #fff;
    color: #0a0b19
}

.dark--theme .button--primary:hover,.dark--theme .button--secondary:hover {
    background-color: #707070
}

.dark--theme .button--rounded,.dark--theme .button--tertiary {
    border: 1px solid #fff;
    color: #fff
}

.dark--theme .button--rounded:hover,.dark--theme .button--tertiary:hover {
    background-color: #fff;
    color: #0a0b19
}

.dark--theme .button--link {
    color: #fff!important
}

.dark--theme .button--link:focus,.dark--theme .button--link:hover {
    background-color: transparent!important
}

.dark--theme .button--link:focus:after,.dark--theme .button--link:hover:after {
    right: 2px
}

.dark--theme .button--link:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.999%22%20height%3D%2212.001%22%3E%3Cpath%20data-name%3D%22Path%2015380%22%20d%3D%22m13.706%206.707-5%205a.986.986%200%200%201-.706.294%201%201%200%200%201-.707-.293%201%201%200%200%201%200-1.414l3.294-3.293H1a1%201%200%200%201-1-1%201%201%200%200%201%201-1h9.587L7.294%201.707a1%201%200%200%201%200-1.414%201%201%200%200%201%201.414%200l5%205a1%201%200%200%201-.002%201.414Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
}

.calendar-menu .move-day,.calendar-menu .move-today {
    cursor: pointer;
    border: transparent;
    padding: 15px 40px;
    background-color: #0a0b19;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 10px
}

.calendar-menu .move-day:hover,.calendar-menu .move-today:hover {
    background-color: #484848;
    color: #fff
}

.calendar-menu .move-day:focus,.calendar-menu .move-day:hover,.calendar-menu .move-today:focus,.calendar-menu .move-today:hover {
    box-shadow: none!important
}

.form-control:focus {
    border: 1px solid #e6e6e6;
    box-shadow: none
}

.search-form [type=text],.userCreateForm [type=text] {
    margin-left: 0;
    width: 100%
}

.search-form .registrations-title,.userCreateForm .registrations-title {
    border-bottom: 1px solid #e6e6e6;
    font-family: Archivo,Arial,Helvetica,sans-serif;
    font-weight: 400;
    margin-bottom: 48px;
    padding-bottom: 28px;
    padding-top: 25px;
    text-align: center
}

.search-form label,.userCreateForm label {
    padding-bottom: 5px!important;
    display: block
}

.search-form .form-group,.search-form .ns-form-group,.userCreateForm .form-group,.userCreateForm .ns-form-group {
    margin-bottom: 22px
}

.search-form .ns-form-control,.search-form input,.search-form select,.search-form textarea,.userCreateForm .ns-form-control,.userCreateForm input,.userCreateForm select,.userCreateForm textarea {
    transition: all .3s ease 0s;
    background-color: #f6f6f6;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    height: auto;
    padding: 9px 15px;
    width: 100%
}

.search-form .ns-form-control:focus,.search-form input:focus,.search-form select:focus,.search-form textarea:focus,.userCreateForm .ns-form-control:focus,.userCreateForm input:focus,.userCreateForm select:focus,.userCreateForm textarea:focus {
    outline: 1px solid #373a50!important
}

.search-form .ns-form-btn,.userCreateForm .ns-form-btn {
    margin: 0 auto;
    width: 35%
}

.search-form .ns-form-btn .button,.userCreateForm .ns-form-btn .button {
    background: #000;
    cursor: pointer;
    color: #fff;
    transition: all .5s ease
}

.search-form .ns-form-btn .button:hover,.userCreateForm .ns-form-btn .button:hover {
    border: 1px solid;
    background: transparent;
    color: #000
}

.search-form select,.userCreateForm select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(70,70,70)'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
    background-color: #efefef;
    background-position: calc(100% - 16px) calc(100% - 16px);
    background-repeat: no-repeat;
    background-size: 12px;
    cursor: pointer
}

.search-form select::-ms-expand,.userCreateForm select::-ms-expand {
    display: none
}

.search-form textarea,.userCreateForm textarea {
    height: 180px;
    resize: none
}

.search-form [type=checkbox],.search-form [type=radio],.userCreateForm [type=checkbox],.userCreateForm [type=radio] {
    width: auto
}

.search-form [type=checkbox]:focus,.search-form [type=radio]:focus,.userCreateForm [type=checkbox]:focus,.userCreateForm [type=radio]:focus {
    outline: none!important
}

.search-form .parsley-custom-error-message,.search-form .parsley-error,.search-form .parsley-required,.search-form .parsley-type,.userCreateForm .parsley-custom-error-message,.userCreateForm .parsley-error,.userCreateForm .parsley-required,.userCreateForm .parsley-type {
    color: #dd4967;
    margin-top: 5px
}

.search-form .modal,.userCreateForm .modal {
    background-color: rgba(0,0,0,.8);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transform: scale(1.1);
    transition: visibility 0s linear .25s,opacity .25s 0s,transform .25s;
    visibility: hidden;
    width: 100%
}

.search-form .modal-content,.userCreateForm .modal-content {
    background-color: #f6f6f6;
    border-radius: 0;
    left: 50%;
    max-width: 700px;
    padding: 0 72px 36px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%)
}

.search-form .modal-content button,.userCreateForm .modal-content button {
    margin: auto;
    max-width: 250px
}

.search-form .show-modal,.userCreateForm .show-modal {
    opacity: 1;
    transform: scale(1);
    transition: visibility 0s linear 0s,opacity .25s 0s,transform .25s;
    visibility: visible
}

.search-form .close-button,.userCreateForm .close-button {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 5px
}

.search-form .filter--buttons .button.button--tertiary:first-child,.userCreateForm .filter--buttons .button.button--tertiary:first-child {
    background-color: transparent;
    color: #000
}

.search-form .filter--buttons .button.button--tertiary:first-child:hover,.userCreateForm .filter--buttons .button.button--tertiary:first-child:hover {
    background-color: #000;
    color: #fff
}

@media (min-width: 768px) {
    .search-form textarea,.userCreateForm textarea {
        height:240px
    }
}

.form-register-msg,.text-center {
    text-align: center
}

.tx-ns-event .row--str.date--postion .event-teaser .calendar--center .event-teaser__content--transparent .event-teaser__date {
    transform: translateX(-50%)
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--center {
    padding-left: 40px
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--center .event-teaser__content--transparent {
    display: block
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--center .event-teaser__content--transparent .event-teaser__date {
    top: 0;
    left: 50%
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--right {
    padding-left: 40px
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--right .event-teaser__content--transparent .event-teaser__date {
    left: auto;
    right: 0;
    top: 0
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--left {
    padding-left: 40px
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--left .event-teaser__content--transparent .event-teaser__date {
    left: 0;
    margin-right: 15px;
    order: 0;
    position: relative;
    top: 0
}

.tx-ns-event .row--str .event-teaser .event-teaser__content.calendar--left .event-teaser__content--transparent h3 {
    order: 1
}

.tx-ns-event .event-teaser {
    background-color: #f6f6f6;
    border: 1px solid #e6e6e6;
    color: #000;
    display: block;
    margin-bottom: 31px;
    min-height: calc(100% - 31px);
    position: relative;
    transition: all .3s ease-in-out 0s;
    width: 100%
}

.tx-ns-event .event-teaser:hover {
    transform: translateY(-5px)
}

.tx-ns-event .event-teaser h3 {
    font-weight: 400
}

.tx-ns-event .event-teaser .light-square .date,.tx-ns-event .event-teaser .light .date {
    color: #000
}

.tx-ns-event .event-teaser__image {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%
}

.tx-ns-event .event-teaser__image img {
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.tx-ns-event .no-image {
    width: auto
}

.tx-ns-event .event-teaser__title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 38px
}

.tx-ns-event .event-teaser__title h2 {
    font-family: Archivo,Arial,Helvetica,sans-serif;
    font-weight: 700;
    margin-bottom: 0
}

.tx-ns-event .event-teaser__title .event-teaser__grid.event-teaset--grid .event__grid,.tx-ns-event .event-teaser__title .event-teaser__grid.event-teaset--row .event__row {
    fill: #f49600
}

.tx-ns-event .event-teaser__title .event-teaser__grid svg {
    cursor: pointer
}

.tx-ns-event .event-teaser__title .event-teaser__grid svg:first-child {
    margin-right: 10px
}

.tx-ns-event .event-teaser__content {
    padding: 20px
}

.tx-ns-event .event-teaser__content .button,.tx-ns-event .event-teaser__content h3 {
    margin-top: 0
}

.tx-ns-event .event-teaser__content--transparent {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-right: 45px
}

.tx-ns-event .event-teaser__content--transparent.calendar--left .event-teaser__date {
    left: 0
}

.tx-ns-event .event-teaser__content--transparent .event-teaser__date {
    top: 18px
}

.tx-ns-event .event-teaser__content--transparent h3 {
    margin: 0
}

.tx-ns-event .calendar--right .event-teaser__date {
    border-right: 0;
    margin-left: 15px;
    order: 1
}

.tx-ns-event .calendar--right .event-teaser__date:after {
    border-left: 2px solid #9a9a9a;
    border-radius: 0;
    border-right: transparent;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.tx-ns-event .calendar--right h3 {
    margin-right: 15px;
    order: 0
}

.tx-ns-event .calendar--center {
    display: block
}

.tx-ns-event .calendar--center .event-teaser__date {
    border-right: 0;
    left: 50%;
    margin-bottom: 20px;
    position: relative;
    transform: translateX(-50%)
}

.tx-ns-event .calendar--center .event-teaser__date:after {
    border-bottom: 2px solid #9a9a9a;
    border-left: transparent;
    border-radius: 0;
    border-right: transparent;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.tx-ns-event .event-teaser__share {
    display: flex;
    margin: 15px 0
}

.tx-ns-event .event-teaser__share h5 {
    color: #9a9a9a;
    font-weight: 400;
    margin-right: 20px;
    margin-top: 0
}

.tx-ns-event .event-teaser__share span {
    font-size: 20px;
    margin-right: 15px
}

.tx-ns-event .event-date,.tx-ns-event .event-location {
    color: #000;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-left: 25px;
    position: relative
}

.tx-ns-event .event-date:after,.tx-ns-event .event-location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.33%22%20height%3D%2214.33%22%3E%3Cpath%20data-name%3D%22Path%2015302%22%20d%3D%22M7.165%2014.33A7.165%207.165%200%201%200%200%207.165a7.166%207.166%200%200%200%207.165%207.165ZM6.653%203.071a.512.512%200%201%201%201.024%200v3.848l2.367%201.894a.512.512%200%200%201-.32.911.5.5%200%200%201-.32-.113L6.845%207.564a.514.514%200%200%201-.192-.4V3.071Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 14px
}

.tx-ns-event .event-location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.78%22%20height%3D%2217.31%22%3E%3Cpath%20data-name%3D%22Path%2015301%22%20d%3D%22M6.39%200A6.519%206.519%200%200%200%200%206.626a6.813%206.813%200%200%200%20.862%203.325%206.679%206.679%200%200%200%20.437.679l4.814%206.679h.555l4.814-6.679a6.692%206.692%200%200%200%20.437-.679%206.813%206.813%200%200%200%20.862-3.325A6.519%206.519%200%200%200%206.39%200Zm0%208.824a2.162%202.162%200%200%201-2.119-2.2%202.121%202.121%200%201%201%204.238%200%202.162%202.162%200%200%201-2.119%202.2Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
    height: 17px;
    width: 13px
}

.tx-ns-event .event-categories {
    margin-bottom: 0;
    margin-top: 10px
}

.tx-ns-event .rowView {
    margin-bottom: 30px;
    position: relative
}

.tx-ns-event .rowView .h3 {
    font-weight: 400;
    margin: 0
}

.tx-ns-event .rowView .event-teaser__content {
    border: 1px solid #e6e6e6;
    width: 100%
}

.tx-ns-event .rowView .event-teaser__date span {
    color: #fff
}

.tx-ns-event .button--icon {
    cursor: pointer;
    left: 50%;
    margin-top: 103px;
    position: relative;
    transform: translateX(-50%)
}

.tx-ns-event .button--icon svg {
    margin-right: 15px
}

.tx-ns-event .button--icon:hover {
    background-color: #000;
    border-radius: 8px
}

.tx-ns-event .class--row .event-teaser__content {
    position: relative
}

.tx-ns-event .class--row .column-grid {
    display: none;
    margin-bottom: 15px;
    margin-right: 15px
}

.tx-ns-event .class--row .column-grid .two-column {
    margin-bottom: 8px;
    margin-right: 8px
}

@media (min-width: 767px) {
    .tx-ns-event .class--row .column-grid .two-column {
        margin-bottom:0;
        margin-right: 0
    }
}

.tx-ns-event .class--row .column-grid:first-child {
    margin-left: 0
}

.tx-ns-event .class--row .show {
    cursor: pointer;
    display: block
}

.tx-ns-event .class--row .show .active {
    background-color: #f49600;
    color: #fff
}

.tx-ns-event .row-grid--2 .row-structure .event-teaser__content {
    padding-top: 40px
}

.tx-ns-event .row-grid--2 .row-structure .calendar--right.calendar.dark,.tx-ns-event .row-grid--2 .row-structure .calendar--right.calendar.light-square,.tx-ns-event .row-grid--2 .row-structure .calendar--right.calendar.vertical--icon {
    left: auto;
    right: 40px;
    width: auto
}

.tx-ns-event .row-grid--2 .row-structure .calendar--right.calendar.light,.tx-ns-event .row-grid--2 .row-structure .calendar--right.calendar.vertical {
    left: auto;
    right: 40px;
    width: 85px
}

.tx-ns-event .row-grid--2 .row-structure .calendar--right.vertical.vertical--icon.event-teaser__date {
    left: auto;
    right: 40px;
    width: auto
}

.tx-ns-event .row-grid--2 .row-structure .calendar.light-square {
    top: 18px
}

.tx-ns-event .row-grid--2 .row-structure .calendar--right.calendar.transparent {
    left: 0
}

.tx-ns-event .row-grid--2 .row-structure .calendar--center.transparent {
    margin-top: 0
}

.tx-ns-event .row-grid--2 .calendar--right .event-teaser__date {
    left: 0;
    position: relative;
    top: 0
}

.tx-ns-event .row-grid--2 .calendar--left .event-teaser__date {
    left: 0;
    margin-left: 0;
    margin-right: 15px;
    position: relative;
    top: 0
}

.tx-ns-event .row-grid--2 .calendar--center .event-teaser__date {
    left: 50%;
    position: relative;
    top: 0
}

.tx-ns-event .row-grid--2 .vertical,.tx-ns-event .row-grid--2 .vertical--icon,.tx-ns-event .row-grid--3 .vertical,.tx-ns-event .row-grid--4 .vertical {
    display: flex
}

@media (min-width: 460px) {
    .tx-ns-event .row--str .column-grid:nth-child(3) {
        margin-left:0
    }
}

@media (min-width: 576px) {
    .tx-ns-event .event-teaser__content {
        padding:30px 20px
    }

    .tx-ns-event .row--str .two-colum-grid .event-teaser {
        display: block
    }

    .tx-ns-event .row--str .two-colum-grid .event-teaser .event-teaser__content,.tx-ns-event .row--str .two-colum-grid .event-teaser .event-teaser__image {
        width: 100%
    }

    .tx-ns-event .row--str .two-colum-grid .event-teaser .event-teaser__content {
        padding-left: 30px
    }

    .tx-ns-event .row--str .two-colum-grid .event-teaser .event-teaser__date {
        left: auto;
        right: 25px
    }

    .tx-ns-event .row--str .two-colum-grid .event-teaser .event-teaser__date.calendar--left {
        left: 35px;
        right: auto
    }
}

@media (min-width: 768px) {
    .tx-ns-event .event-teaser__content {
        padding:15px 30px
    }

    .tx-ns-event .row-structure .event-teaser {
        display: flex
    }

    .tx-ns-event .row-structure .event-teaser__image {
        -o-object-fit: cover;
        object-fit: cover;
        width: 40%
    }

    .tx-ns-event .row-structure .event-teaser__content {
        padding-left: 110px;
        width: 60%
    }

    .tx-ns-event .row-structure .event-teaser__date {
        right: auto;
        top: 15px
    }

    .tx-ns-event .row-structure .calendar--center {
        left: 50%
    }

    .tx-ns-event .row-structure .event-teaser__content.calendar--left {
        padding-left: 145px
    }

    .tx-ns-event .row--str .event-teaser,.tx-ns-event .row-grid--3 .row--view,.tx-ns-event .row-grid--4 .row--view,.tx-ns-event .rowView.twocol-to-row .event-teaser {
        display: flex
    }

    .tx-ns-event .row--str .event-teaser .event-teaser__image,.tx-ns-event .row-grid--3 .row--view .event-teaser__image,.tx-ns-event .row-grid--4 .row--view .event-teaser__image,.tx-ns-event .rowView.twocol-to-row .event-teaser .event-teaser__image {
        -o-object-fit: cover;
        object-fit: cover;
        width: 40%
    }

    .tx-ns-event .row--str .event-teaser .event-teaser__content,.tx-ns-event .row-grid--3 .row--view .event-teaser__content,.tx-ns-event .row-grid--4 .row--view .event-teaser__content,.tx-ns-event .rowView.twocol-to-row .event-teaser .event-teaser__content {
        border: 0;
        width: 60%
    }

    .tx-ns-event .row--str .event-teaser .event-teaser__date.light-square,.tx-ns-event .row-grid--3 .row--view .event-teaser__date.light-square,.tx-ns-event .row-grid--4 .row--view .event-teaser__date.light-square,.tx-ns-event .rowView.twocol-to-row .event-teaser .event-teaser__date.light-square {
        top: 18px
    }

    .tx-ns-event .row--str .event-teaser .event-teaser__date.light-square.calendar--center,.tx-ns-event .row-grid--3 .row--view .event-teaser__date.light-square.calendar--center,.tx-ns-event .row-grid--4 .row--view .event-teaser__date.light-square.calendar--center,.tx-ns-event .rowView.twocol-to-row .event-teaser .event-teaser__date.light-square.calendar--center {
        left: 50%
    }

    .tx-ns-event .row-grid--3 .row--view .calendar--right,.tx-ns-event .row-grid--4 .row--view .calendar--right,.tx-ns-event .rowView.twocol-to-row .event-teaser {
        left: auto;
        right: 40px
    }

    .tx-ns-event .row-grid--3 .row--view .calendar--center,.tx-ns-event .row-grid--4 .row--view .calendar--center,.tx-ns-event .rowView.twocol-to-row .event-teaser {
        left: 50%
    }

    .tx-ns-event .row-grid--3 .row--view .calendar--center .transparent {
        margin: 0 0 30px
    }

    .tx-ns-event .row-grid--2 .calendar--left .event-teaser__date.transparent,.tx-ns-event .row-grid--3 .calendar--left .event-teaser__date.transparent {
        left: 0;
        margin-right: 15px;
        top: 0
    }

    .tx-ns-event .date--postion .calendar--left {
        padding-left: 15px
    }
}

@media (min-width: 992px) {
    .tx-ns-event .row--str .event-teaser .event-teaser__content,.tx-ns-event .row-structure .event-teaser__content {
        margin:auto;
        padding-left: 180px
    }

    .tx-ns-event .row--str .event-teaser .event-teaser__content .event-categories,.tx-ns-event .row-structure .event-teaser__content .event-categories {
        margin: 15px 0
    }

    .tx-ns-event .row-structure .event-teaser__content.calendar--left {
        padding-left: 160px
    }
}

.dark--theme .event-teaser__title h2 {
    color: #fff
}

.dark--theme .event-teaser {
    background-color: #1b1d30;
    border: 1px solid #373a50
}

.dark--theme .event-teaser h3 {
    color: #fff
}

.dark--theme .event-teaser:hover {
    background-color: #f49600
}

.dark--theme .event-teaser .event-date,.dark--theme .event-teaser .event-location,.dark--theme .event-teaser .event-teaser__content,.dark--theme .event-teaser .event-teaser__content--transparent h3,.dark--theme .event-teaser:hover .calendar.transparent .date,.dark--theme .event-teaser:hover .event-teaser__share h5 {
    color: #fff
}

.dark--theme .event-date:after,.dark--theme .event-location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.33%22%20height%3D%2214.33%22%3E%3Cpath%20data-name%3D%22Path%2015302%22%20d%3D%22M7.165%2014.33A7.165%207.165%200%201%200%200%207.165a7.166%207.166%200%200%200%207.165%207.165ZM6.653%203.071a.512.512%200%201%201%201.024%200v3.848l2.367%201.894a.512.512%200%200%201-.32.911.5.5%200%200%201-.32-.113L6.845%207.564a.514.514%200%200%201-.192-.4V3.071Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
}

.dark--theme .event-location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.78%22%20height%3D%2217.31%22%3E%3Cpath%20data-name%3D%22Path%2015301%22%20d%3D%22M6.39%200A6.519%206.519%200%200%200%200%206.626a6.813%206.813%200%200%200%20.862%203.325%206.679%206.679%200%200%200%20.437.679l4.814%206.679h.555l4.814-6.679a6.692%206.692%200%200%200%20.437-.679%206.813%206.813%200%200%200%20.862-3.325A6.519%206.519%200%200%200%206.39%200Zm0%208.824a2.162%202.162%200%200%201-2.119-2.2%202.121%202.121%200%201%201%204.238%200%202.162%202.162%200%200%201-2.119%202.2Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
}

.four-column .event-teaser .event-teaser__date span {
    margin-top: -19px
}

.tui-full-calendar-icon {
    display: none!important
}

.tui-full-calendar-popup-delete .tui-full-calendar-content {
    color: #e28b00
}

.tui-full-calendar-popup-delete .tui-full-calendar-content:hover {
    color: #000
}

.t3terminal-product .isotope-layout .filters-button-group {
    text-align: center;
    margin-bottom: 56px;
    margin-top: 36px
}

.t3terminal-product .isotope-layout .filters-button-group .button {
    margin: 5px 9px
}

.dark--theme .headline--block {
    color: #fff
}

.t3terminal-product .slider-data h5 {
    color: #000;
    font-weight: 400;
    margin-bottom: 62px;
    margin-top: 62px;
    text-align: center
}

.t3terminal-product .slider-data .evnet-onlinePlatform .h3 {
    font-weight: 400
}

.t3terminal-product .event-teaser .event-teaser__share h5 {
    margin: 0 15px 0 0
}

.t3terminal-product .main-carousel-center .event-teaser:hover,.t3terminal-product .main-carousel-simple .event-teaser:hover {
    background-color: #f6f6f6;
    box-shadow: none
}

.t3terminal-product .main-carousel-overlay .event-teaser {
    position: relative
}

.t3terminal-product .main-carousel-overlay .event-teaser:hover {
    box-shadow: none
}

.t3terminal-product .main-carousel-overlay .event-teaser .event-teaser__share svg {
    fill: #9a9a9a
}

.dark--theme .t3terminal-product .main-carousel-overlay .event-teaser .event-teaser__share svg {
    fill: #fff
}

.t3terminal-product .main-carousel-overlay .event-teaser .event-teaser__image {
    height: 499px;
    position: relative
}

.t3terminal-product .main-carousel-overlay .event-teaser .event-teaser__image:before {
    background: #090979;
    background: linear-gradient(180deg,rgba(9,9,121,0) 5%,#0a1d34);
    content: "";
    height: 503px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.t3terminal-product .main-carousel-overlay .event-teaser .item-category {
    margin-bottom: 0
}

.t3terminal-product .main-carousel-overlay .event-teaser__content {
    bottom: 0;
    padding: 32px 43px;
    position: absolute;
    width: 100%
}

.t3terminal-product .main-carousel-overlay .event-teaser__content .event-date,.t3terminal-product .main-carousel-overlay .event-teaser__content .event-location,.t3terminal-product .main-carousel-overlay .event-teaser__content h3 {
    color: #fff
}

.t3terminal-product .main-carousel-overlay .event-teaser__content .item-category {
    background-color: #000;
    margin-bottom: 10px
}

.t3terminal-product .main-carousel-overlay .event-teaser__content .button--link {
    color: #fff!important
}

.t3terminal-product .main-carousel-overlay .event-teaser__content .button--link:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.999%22%20height%3D%2212.001%22%3E%3Cpath%20data-name%3D%22Path%2015380%22%20d%3D%22m13.706%206.707-5%205a.986.986%200%200%201-.706.294%201%201%200%200%201-.707-.293%201%201%200%200%201%200-1.414l3.294-3.293H1a1%201%200%200%201-1-1%201%201%200%200%201%201-1h9.587L7.294%201.707a1%201%200%200%201%200-1.414%201%201%200%200%201%201.414%200l5%205a1%201%200%200%201-.002%201.414Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
}

.t3terminal-product .main-carousel-center .carousel-cell,.t3terminal-product .main-carousel-overlay .carousel-cell,.t3terminal-product .main-carousel-simple .carousel-cell {
    margin: 5px 15px 0;
    width: 100%
}

.main-carousel-overlay .event-teaser__image {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%
}

.main-carousel-overlay .event-teaser__image img {
    height: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.main-carousel-overlay .event-date:after,.main-carousel-overlay .event-location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.33%22%20height%3D%2214.33%22%3E%3Cpath%20data-name%3D%22Path%2015302%22%20d%3D%22M7.165%2014.33A7.165%207.165%200%201%200%200%207.165a7.166%207.166%200%200%200%207.165%207.165ZM6.653%203.071a.512.512%200%201%201%201.024%200v3.848l2.367%201.894a.512.512%200%200%201-.32.911.5.5%200%200%201-.32-.113L6.845%207.564a.514.514%200%200%201-.192-.4V3.071Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    height: 14px;
    position: absolute;
    width: 14px
}

.main-carousel-overlay .event-location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.78%22%20height%3D%2217.31%22%3E%3Cpath%20data-name%3D%22Path%2015301%22%20d%3D%22M6.39%200A6.519%206.519%200%200%200%200%206.626a6.813%206.813%200%200%200%20.862%203.325%206.679%206.679%200%200%200%20.437.679l4.814%206.679h.555l4.814-6.679a6.692%206.692%200%200%200%20.437-.679%206.813%206.813%200%200%200%20.862-3.325A6.519%206.519%200%200%200%206.39%200Zm0%208.824a2.162%202.162%200%200%201-2.119-2.2%202.121%202.121%200%201%201%204.238%200%202.162%202.162%200%200%201-2.119%202.2Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    height: 17px;
    width: 13px
}

.main-carousel-overlay .event-teaser__share h5,.main-carousel-overlay .evnet-onlinePlatform .h3 {
    color: #fff
}

.carousel.main-carousel-overlay span.tag.ovalTag {
    background-color: #000
}

.carousel.main-carousel-overlay span.tag.ovalTag:hover {
    background-color: #484848
}

h2.ce-headline-center {
    padding-bottom: 30px;
    padding-top: 30px
}

@media (min-width: 768px) {
    .t3terminal-product .main-carousel-simple .carousel-cell {
        margin:0 15px;
        width: 50%
    }
}

@media (min-width: 992px) {
    .t3terminal-product .main-carousel-simple .carousel-cell {
        width:calc(32% - 5px)
    }

    .t3terminal-product .main-carousel-center .carousel-cell {
        width: calc(50% - 15px)
    }

    .t3terminal-product .main-carousel-overlay .carousel-cell {
        width: 70%
    }

    .t3terminal-product .main-carousel-overlay .event-teaser__content {
        display: flex;
        justify-content: space-between
    }

    .t3terminal-product .main-carousel-overlay .event-teaser__content .event-categories {
        position: relative
    }

    .t3terminal-product .main-carousel-overlay .event-teaser__content .event-teaser__content--transparent {
        display: block
    }
}

.dark--theme .slider-data h5 {
    color: #fff
}

.dark--theme .main-carousel-center .event-teaser:hover,.dark--theme .main-carousel-simple .event-teaser:hover {
    background-color: #f49600
}

.extbase-debugger.extbase-debugger-floating {
    margin-top: 100px
}

.column-slideritem {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.flickity-prev-next-button.next {
    right: -10px
}

.flickity-prev-next-button.previous {
    left: -10px
}

.flickity-prev-next-button {
    background: transparent
}

.dark--theme .flickity-prev-next-button .flickity-button-icon {
    color: #fff
}

.flickity-prev-next-button:focus {
    box-shadow: none
}

.dark--theme .flickity-page-dots button {
    background: hsla(0,0%,96.5%,.7)
}

.dark--theme .flickity-page-dots button.is-selected {
    background: #fff
}

.flickity-page-dots button:focus {
    box-shadow: none
}

.flickity-fullscreen-button-view {
    background: rgba(0,0,0,.2);
    top: -35px
}

.flickity-fullscreen-button-view:hover {
    background: rgba(0,0,0,.2)
}

.flickity-fullscreen-button-exit {
    background: hsla(0,0%,96.5%,.7);
    right: 20px
}

.flickity-fullscreen-button-exit:hover {
    background: hsla(0,0%,96.5%,.7)
}

.flickity-fullscreen-button-exit,.flickity-fullscreen-button-view {
    height: 28px;
    width: 28px;
    transition: all .4s ease
}

.flickity-fullscreen-button-exit .flickity-button-icon,.flickity-fullscreen-button-view .flickity-button-icon {
    left: 6px;
    height: 17px;
    top: 6px;
    width: 17px;
    transition: all .5s ease
}

.dark--theme .flickity-fullscreen-button-exit,.dark--theme .flickity-fullscreen-button-view {
    background: #fff
}

.flickity-fullscreen-button-exit:hover .flickity-button-icon,.flickity-fullscreen-button-view:hover .flickity-button-icon {
    transform: scale(1.1)
}

.flickity-fullscreen-button-exit:focus,.flickity-fullscreen-button-view:focus {
    box-shadow: none
}

.t3terminal-product .custome-carousel.is-fullscreen {
    padding-top: 50px;
    padding-left: 15px
}

.t3terminal-product .custome-carousel.is-fullscreen .carousel-cell {
    width: calc(100% - 15px)
}

@media (min-width: 992px) {
    .t3terminal-product .custome-carousel.is-fullscreen .carousel-cell {
        width:calc(32.5% - 10px)
    }
}

.t3terminal-product .custome-carousel.is-fullscreen .flickity-slider {
    display: flex;
    align-items: center
}

.t3terminal-product .leftpart,.t3terminal-product .rightpart {
    margin-top: 33px;
    padding: 0
}

.t3terminal-product .event-teaser__share svg {
    transition: all .5s ease 0s
}

.t3terminal-product .event-teaser__share svg:hover {
    transform: scale(1.2)
}

.t3terminal-product .rightpart .event-teaser__share {
    justify-content: center;
    margin-top: 10px
}

.t3terminal-product .rightpart .event-teaser__share a,.t3terminal-product .rightpart .event-teaser__share span {
    color: #000;
    cursor: pointer
}

.t3terminal-product .event--details {
    padding-right: 15px
}

.t3terminal-product .event--details h1 {
    font-weight: 600;
    margin-bottom: 8px
}

.t3terminal-product .event--details h3 {
    font-weight: 400;
    margin-bottom: 8px
}

.t3terminal-product .event--details .event--details--description,.t3terminal-product .event--details span {
    color: #9a9a9a;
    font-weight: 400
}

.t3terminal-product .event--details .event--additionaldetails,.t3terminal-product .event--details .event--contactPerson,.t3terminal-product .event--details .event--details--description,.t3terminal-product .event--details .event--organiserdetails,.t3terminal-product .event--details .event--sponcer,.t3terminal-product .event--details .event--topic {
    border-bottom: 2px solid #e6e6e6;
    color: #000;
    line-height: 28px;
    padding: 12px;
    margin-top: 0
}

.t3terminal-product .event--details .event--additionaldetails .h2,.t3terminal-product .event--details .event--contactPerson .h2,.t3terminal-product .event--details .event--details--description .h2,.t3terminal-product .event--details .event--organiserdetails .h2,.t3terminal-product .event--details .event--sponcer .h2,.t3terminal-product .event--details .event--topic .h2 {
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 15px
}

@media (min-width: 768px) {
    .t3terminal-product .event--details .event--additionaldetails,.t3terminal-product .event--details .event--contactPerson,.t3terminal-product .event--details .event--details--description,.t3terminal-product .event--details .event--organiserdetails,.t3terminal-product .event--details .event--sponcer,.t3terminal-product .event--details .event--topic {
        padding:0 0 15px 15px
    }
}

.t3terminal-product .event--details .event--additionaldetails .overlay {
    cursor: pointer
}

.t3terminal-product .event--details .event--additionaldetails h2 {
    margin-bottom: 10px
}

.t3terminal-product .event--details .event--additionaldetails h3 {
    font-weight: 400;
    margin-bottom: 25px
}

.t3terminal-product .event--details .event--additionaldetails .event--additionaldetails--description {
    color: #000;
    font-weight: 400
}

.t3terminal-product .event--details .event--additionaldetails .video:before {
    background-color: #000;
    border-radius: 50%;
    content: "";
    height: 55px;
    left: 50%;
    opacity: .6;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 55px
}

.t3terminal-product .event--details .event--additionaldetails .video:after {
    color: #fff;
    content: "\f04b";
    font-family: fontawesome;
    left: 51%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%)
}

.t3terminal-product .event--details .event--additionaldetails .galleryItem {
    min-height: 104px;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%
}

.t3terminal-product .event--details .event--additionaldetails .galleryItem iframe,.t3terminal-product .event--details .event--additionaldetails .galleryItem img {
    border: 0;
    min-height: 104px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.t3terminal-product .event--details .event--additionaldetails .galleryItem iframe {
    height: 250px
}

.t3terminal-product .event__summary {
    background-color: #f6f6f6;
    position: -webkit-sticky;
    position: sticky;
    top: 0
}

.t3terminal-product .event__summary .headline--block {
    border-bottom: 1px solid #e6e6e6;
    font-family: Archivo,Arial,Helvetica,sans-serif;
    font-weight: 400;
    margin: 0;
    padding-bottom: 23px;
    padding-top: 33px;
    text-align: center
}

.t3terminal-product .event__summary .event__summary--details {
    padding: 32px
}

.t3terminal-product .event__summary .event__summary--details h5:first-child {
    margin-top: 0
}

.t3terminal-product .event__summary .event__summary--details .event-categories {
    margin-bottom: 0;
    padding-top: 5px
}

.t3terminal-product .event__summary .event__summary--details h5,.t3terminal-product .event__summary .event__summary--details p {
    font-weight: 400;
    margin-top: 15px
}

.t3terminal-product .event__summary .event__summary--details h5 {
    color: #000;
    font-weight: 600;
    margin-bottom: 0
}

.t3terminal-product .event__summary .event__summary--details p {
    color: #9a9a9a;
    margin-bottom: 15px;
    margin-top: 0
}

.t3terminal-product .event__summary .event__summary--details .location {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    text-decoration: underline
}

.dark--theme .t3terminal-product .event__summary .event__summary--details .location {
    color: #fff
}

.t3terminal-product .event__summary .event__summary--details .location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216.5%22%20height%3D%2212%22%3E%3Cpath%20data-name%3D%22next%20%283%29%22%20d%3D%22M16.281%205.47%2011.03.22a.75.75%200%201%200-1.06%201.06l3.97%203.97H.75a.75.75%200%201%200%200%201.5h13.19l-3.97%203.97a.75.75%200%201%200%201.061%201.061l5.25-5.25a.75.75%200%200%200%200-1.061Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    height: 12px;
    margin-left: 10px;
    position: absolute;
    top: 9px;
    width: 17px
}

.dark--theme .t3terminal-product .event__summary .event__summary--details .location:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216.5%22%20height%3D%2212%22%3E%3Cpath%20data-name%3D%22next%20%283%29%22%20d%3D%22M16.281%205.47%2011.03.22a.75.75%200%201%200-1.06%201.06l3.97%203.97H.75a.75.75%200%201%200%200%201.5h13.19l-3.97%203.97a.75.75%200%201%200%201.061%201.061l5.25-5.25a.75.75%200%200%200%200-1.061Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")
}

.t3terminal-product .event__summary .event__summary--details .location-address {
    margin-bottom: 0
}

.t3terminal-product .event__summary .event__summary--details button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 15px auto 5px
}

.t3terminal-product .event__summary .event__summary--details .event-free {
    color: #000;
    font-weight: 700;
    padding-top: 5px;
    text-align: center
}

.t3terminal-product .related__events .related__events--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 25px;
    padding-top: 25px
}

.t3terminal-product .related__events .related__events--title .h2 {
    display: block;
    margin-bottom: 25px
}

.t3terminal-product .contactperson--data,.t3terminal-product .eventtopic,.t3terminal-product .organiserdetails,.t3terminal-product .sponcer {
    padding-bottom: 10px;
    padding-left: 25px
}

.t3terminal-product .contactperson--data h3,.t3terminal-product .contactperson--data p,.t3terminal-product .eventtopic h3,.t3terminal-product .eventtopic p,.t3terminal-product .organiserdetails h3,.t3terminal-product .organiserdetails p,.t3terminal-product .sponcer h3,.t3terminal-product .sponcer p {
    margin: 0
}

.t3terminal-product .contactperson--data .sponcer--data,.t3terminal-product .eventtopic .sponcer--data,.t3terminal-product .organiserdetails .sponcer--data,.t3terminal-product .sponcer .sponcer--data {
    margin-top: 10px
}

@media (min-width: 992px) {
    .t3terminal-product .event--contactPerson .h2,.t3terminal-product .event--organiserdetails .h2,.t3terminal-product .event--sponcer .h2,.t3terminal-product .event--topic .h2 {
        margin-bottom:15px
    }
}

@media (min-width: 992px) {
    .t3terminal-product .event--contactPerson,.t3terminal-product .event--organiserdetails,.t3terminal-product .event--sponcer,.t3terminal-product .event--topic {
        margin-top:25px;
        padding-left: 0
    }
}

.dark--theme .ce-headline-center {
    color: #fff
}

.no-image {
    max-height: 369px;
    width: 100%
}

.event-teaser__image a,.no-image {
    height: 100%
}

.event-teaser__image .poster-image {
    height: 100%;
    max-height: 369px;
    width: 100%
}

@media (min-width: 575px) {
    .t3terminal-product .event--additionaldetails,.t3terminal-product .event--contactPerson,.t3terminal-product .event--details--description,.t3terminal-product .event--organiserdetails,.t3terminal-product .event--sponcer,.t3terminal-product .event--topic {
        padding:25px 0
    }

    .t3terminal-product .event--additionaldetails .galleryItem iframe {
        height: 117px
    }

    .t3terminal-product .sponcer {
        display: flex
    }

    .t3terminal-product .sponcer .sponcer--image {
        min-width: 150px
    }

    .t3terminal-product .sponcer .sponcer--image .img-responsive {
        border-radius: 50%;
        height: 150px;
        width: 150px
    }

    .t3terminal-product .sponcer .sponcer--data {
        margin-left: 30px;
        margin-top: 0;
        text-align: left
    }
}

@media (min-width: 992px) {
    .t3terminal-product .rightpart {
        padding-left:15px
    }
}

@media (min-width: 1200px) {
    .t3terminal-product .event--additionaldetails .galleryItem iframe {
        height:104px
    }

    .t3terminal-product .contactperson--data,.t3terminal-product .eventtopic,.t3terminal-product .organiserdetails,.t3terminal-product .sponcer {
        margin-top: 10px;
        padding-left: 50px;
        padding-bottom: 0
    }
}

.detailPagelayout--left .leftpart {
    order: 0;
    padding-left: 15px;
    padding-right: 0
}

.detailPagelayout--left .leftpart .event__image {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px
}

.detailPagelayout--left .rightpart,.detailPagelayout--right .leftpart {
    order: 1;
    padding-left: 25px;
    padding-right: 15px
}

.detailPagelayout--right .leftpart .event__image {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px
}

.detailPagelayout--right .rightpart {
    order: 0;
    padding-left: 15px;
    padding-right: 0
}

.dark--theme .event--details .event--additionaldetails .event--additionaldetails--description,.dark--theme .event--details .event--details--description,.dark--theme .event--details h3 {
    color: #fff
}

.dark--theme .event__summary {
    background-color: #1b1d30
}

.dark--theme .event__summary .event__summary--details p,.dark--theme .event__summary .headline--block,.dark--theme .rightpart .event-teaser__share i,.dark--theme .t3terminal-product .event__summary .event__summary--details h5 {
    color: #fff
}

.event-organizer .event-organizer__details {
    margin-right: 10px;
    position: relative
}

.event-organizer .event-organizer__details:before {
    bottom: -5px;
    content: ",";
    position: absolute;
    right: -1px
}

.event-organizer .event-organizer__details:last-child:before {
    display: none
}

.loadMoreButton svg {
    height: 12px;
    margin-right: 12px;
    width: 14px
}

#loadMoreRow {
    text-align: center
}

.button.loadMoreButton {
    background: #000;
    display: inline-block;
    padding: 13px 21px;
    margin-top: 5px;
    margin-bottom: 15px
}

.button.loadMoreButton:hover {
    text-decoration: none;
    color: #fff
}

#loadMorePlaceHere {
    text-align: center
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

*,:after,:before {
    box-sizing: inherit
}

.custom-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .custom-container {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .custom-container {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .custom-container {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .custom-container {
        max-width:1140px
    }
}

.custom-container-fluid,.custom-container-lg,.custom-container-md,.custom-container-sm,.custom-container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .custom-container,.custom-container-sm {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .custom-container,.custom-container-md,.custom-container-sm {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .custom-container,.custom-container-lg,.custom-container-md,.custom-container-sm {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .custom-container,.custom-container-lg,.custom-container-md,.custom-container-sm,.custom-container-xl {
        max-width:1140px
    }
}

.row-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.row-no-gutters {
    margin-right: 0;
    margin-left: 0
}

.row-no-gutters>.column-item,.row-no-gutters>[class*=column-item-] {
    padding-right: 0;
    padding-left: 0
}

.column-item,.column-item-1,.column-item-2,.column-item-3,.column-item-4,.column-item-5,.column-item-6,.column-item-7,.column-item-8,.column-item-9,.column-item-10,.column-item-11,.column-item-12,.column-item-auto,.column-item-lg,.column-item-lg-1,.column-item-lg-2,.column-item-lg-3,.column-item-lg-4,.column-item-lg-5,.column-item-lg-6,.column-item-lg-7,.column-item-lg-8,.column-item-lg-9,.column-item-lg-10,.column-item-lg-11,.column-item-lg-12,.column-item-lg-auto,.column-item-md,.column-item-md-1,.column-item-md-2,.column-item-md-3,.column-item-md-4,.column-item-md-5,.column-item-md-6,.column-item-md-7,.column-item-md-8,.column-item-md-9,.column-item-md-10,.column-item-md-11,.column-item-md-12,.column-item-md-auto,.column-item-sm,.column-item-sm-1,.column-item-sm-2,.column-item-sm-3,.column-item-sm-4,.column-item-sm-5,.column-item-sm-6,.column-item-sm-7,.column-item-sm-8,.column-item-sm-9,.column-item-sm-10,.column-item-sm-11,.column-item-sm-12,.column-item-sm-auto,.column-item-xl,.column-item-xl-1,.column-item-xl-2,.column-item-xl-3,.column-item-xl-4,.column-item-xl-5,.column-item-xl-6,.column-item-xl-7,.column-item-xl-8,.column-item-xl-9,.column-item-xl-10,.column-item-xl-11,.column-item-xl-12,.column-item-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.column-item {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.row-cols-1>* {
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2>* {
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.row-cols-4>* {
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5>* {
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.column-item-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.column-item-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.column-item-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.column-item-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.column-item-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.column-item-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.column-item-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.column-item-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.column-item-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.column-item-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.column-item-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.column-item-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.column-item-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.custom-order-first {
    order: -1
}

.custom-order-last {
    order: 13
}

.custom-order-0 {
    order: 0
}

.custom-order-1 {
    order: 1
}

.custom-order-2 {
    order: 2
}

.custom-order-3 {
    order: 3
}

.custom-order-4 {
    order: 4
}

.custom-order-5 {
    order: 5
}

.custom-order-6 {
    order: 6
}

.custom-order-7 {
    order: 7
}

.custom-order-8 {
    order: 8
}

.custom-order-9 {
    order: 9
}

.custom-order-10 {
    order: 10
}

.custom-order-11 {
    order: 11
}

.custom-order-12 {
    order: 12
}

.custom-offset-1 {
    margin-left: 8.33333%
}

.custom-offset-2 {
    margin-left: 16.66667%
}

.custom-offset-3 {
    margin-left: 25%
}

.custom-offset-4 {
    margin-left: 33.33333%
}

.custom-offset-5 {
    margin-left: 41.66667%
}

.custom-offset-6 {
    margin-left: 50%
}

.custom-offset-7 {
    margin-left: 58.33333%
}

.custom-offset-8 {
    margin-left: 66.66667%
}

.custom-offset-9 {
    margin-left: 75%
}

.custom-offset-10 {
    margin-left: 83.33333%
}

.custom-offset-11 {
    margin-left: 91.66667%
}

@media (min-width: 576px) {
    .column-item-sm {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-sm-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .column-item-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .column-item-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .column-item-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .column-item-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .column-item-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .column-item-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .column-item-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .column-item-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .column-item-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .column-item-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .column-item-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .custom-order-sm-first {
        order: -1
    }

    .custom-order-sm-last {
        order: 13
    }

    .custom-order-sm-0 {
        order: 0
    }

    .custom-order-sm-1 {
        order: 1
    }

    .custom-order-sm-2 {
        order: 2
    }

    .custom-order-sm-3 {
        order: 3
    }

    .custom-order-sm-4 {
        order: 4
    }

    .custom-order-sm-5 {
        order: 5
    }

    .custom-order-sm-6 {
        order: 6
    }

    .custom-order-sm-7 {
        order: 7
    }

    .custom-order-sm-8 {
        order: 8
    }

    .custom-order-sm-9 {
        order: 9
    }

    .custom-order-sm-10 {
        order: 10
    }

    .custom-order-sm-11 {
        order: 11
    }

    .custom-order-sm-12 {
        order: 12
    }

    .custom-offset-sm-0 {
        margin-left: 0
    }

    .custom-offset-sm-1 {
        margin-left: 8.33333%
    }

    .custom-offset-sm-2 {
        margin-left: 16.66667%
    }

    .custom-offset-sm-3 {
        margin-left: 25%
    }

    .custom-offset-sm-4 {
        margin-left: 33.33333%
    }

    .custom-offset-sm-5 {
        margin-left: 41.66667%
    }

    .custom-offset-sm-6 {
        margin-left: 50%
    }

    .custom-offset-sm-7 {
        margin-left: 58.33333%
    }

    .custom-offset-sm-8 {
        margin-left: 66.66667%
    }

    .custom-offset-sm-9 {
        margin-left: 75%
    }

    .custom-offset-sm-10 {
        margin-left: 83.33333%
    }

    .custom-offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 768px) {
    .column-item-md {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-md-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-md-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .column-item-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .column-item-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .column-item-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .column-item-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .column-item-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .column-item-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .column-item-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .column-item-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .column-item-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .column-item-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .column-item-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .custom-order-md-first {
        order: -1
    }

    .custom-order-md-last {
        order: 13
    }

    .custom-order-md-0 {
        order: 0
    }

    .custom-order-md-1 {
        order: 1
    }

    .custom-order-md-2 {
        order: 2
    }

    .custom-order-md-3 {
        order: 3
    }

    .custom-order-md-4 {
        order: 4
    }

    .custom-order-md-5 {
        order: 5
    }

    .custom-order-md-6 {
        order: 6
    }

    .custom-order-md-7 {
        order: 7
    }

    .custom-order-md-8 {
        order: 8
    }

    .custom-order-md-9 {
        order: 9
    }

    .custom-order-md-10 {
        order: 10
    }

    .custom-order-md-11 {
        order: 11
    }

    .custom-order-md-12 {
        order: 12
    }

    .custom-offset-md-0 {
        margin-left: 0
    }

    .custom-offset-md-1 {
        margin-left: 8.33333%
    }

    .custom-offset-md-2 {
        margin-left: 16.66667%
    }

    .custom-offset-md-3 {
        margin-left: 25%
    }

    .custom-offset-md-4 {
        margin-left: 33.33333%
    }

    .custom-offset-md-5 {
        margin-left: 41.66667%
    }

    .custom-offset-md-6 {
        margin-left: 50%
    }

    .custom-offset-md-7 {
        margin-left: 58.33333%
    }

    .custom-offset-md-8 {
        margin-left: 66.66667%
    }

    .custom-offset-md-9 {
        margin-left: 75%
    }

    .custom-offset-md-10 {
        margin-left: 83.33333%
    }

    .custom-offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 992px) {
    .column-item-lg {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-lg-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .column-item-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .column-item-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .column-item-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .column-item-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .column-item-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .column-item-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .column-item-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .column-item-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .column-item-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .column-item-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .column-item-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .custom-order-lg-first {
        order: -1
    }

    .custom-order-lg-last {
        order: 13
    }

    .custom-order-lg-0 {
        order: 0
    }

    .custom-order-lg-1 {
        order: 1
    }

    .custom-order-lg-2 {
        order: 2
    }

    .custom-order-lg-3 {
        order: 3
    }

    .custom-order-lg-4 {
        order: 4
    }

    .custom-order-lg-5 {
        order: 5
    }

    .custom-order-lg-6 {
        order: 6
    }

    .custom-order-lg-7 {
        order: 7
    }

    .custom-order-lg-8 {
        order: 8
    }

    .custom-order-lg-9 {
        order: 9
    }

    .custom-order-lg-10 {
        order: 10
    }

    .custom-order-lg-11 {
        order: 11
    }

    .custom-order-lg-12 {
        order: 12
    }

    .custom-offset-lg-0 {
        margin-left: 0
    }

    .custom-offset-lg-1 {
        margin-left: 8.33333%
    }

    .custom-offset-lg-2 {
        margin-left: 16.66667%
    }

    .custom-offset-lg-3 {
        margin-left: 25%
    }

    .custom-offset-lg-4 {
        margin-left: 33.33333%
    }

    .custom-offset-lg-5 {
        margin-left: 41.66667%
    }

    .custom-offset-lg-6 {
        margin-left: 50%
    }

    .custom-offset-lg-7 {
        margin-left: 58.33333%
    }

    .custom-offset-lg-8 {
        margin-left: 66.66667%
    }

    .custom-offset-lg-9 {
        margin-left: 75%
    }

    .custom-offset-lg-10 {
        margin-left: 83.33333%
    }

    .custom-offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 1200px) {
    .column-item-xl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-xl-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .column-item-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .column-item-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .column-item-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .column-item-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .column-item-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .column-item-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .column-item-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .column-item-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .column-item-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .column-item-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .column-item-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .column-item-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .custom-order-xl-first {
        order: -1
    }

    .custom-order-xl-last {
        order: 13
    }

    .custom-order-xl-0 {
        order: 0
    }

    .custom-order-xl-1 {
        order: 1
    }

    .custom-order-xl-2 {
        order: 2
    }

    .custom-order-xl-3 {
        order: 3
    }

    .custom-order-xl-4 {
        order: 4
    }

    .custom-order-xl-5 {
        order: 5
    }

    .custom-order-xl-6 {
        order: 6
    }

    .custom-order-xl-7 {
        order: 7
    }

    .custom-order-xl-8 {
        order: 8
    }

    .custom-order-xl-9 {
        order: 9
    }

    .custom-order-xl-10 {
        order: 10
    }

    .custom-order-xl-11 {
        order: 11
    }

    .custom-order-xl-12 {
        order: 12
    }

    .custom-offset-xl-0 {
        margin-left: 0
    }

    .custom-offset-xl-1 {
        margin-left: 8.33333%
    }

    .custom-offset-xl-2 {
        margin-left: 16.66667%
    }

    .custom-offset-xl-3 {
        margin-left: 25%
    }

    .custom-offset-xl-4 {
        margin-left: 33.33333%
    }

    .custom-offset-xl-5 {
        margin-left: 41.66667%
    }

    .custom-offset-xl-6 {
        margin-left: 50%
    }

    .custom-offset-xl-7 {
        margin-left: 58.33333%
    }

    .custom-offset-xl-8 {
        margin-left: 66.66667%
    }

    .custom-offset-xl-9 {
        margin-left: 75%
    }

    .custom-offset-xl-10 {
        margin-left: 83.33333%
    }

    .custom-offset-xl-11 {
        margin-left: 91.66667%
    }
}

.display-none {
    display: none!important
}

.display-inline {
    display: inline!important
}

.display-inline-block {
    display: inline-block!important
}

.display-block {
    display: block!important
}

.display-table {
    display: table!important
}

.display-table-row {
    display: table-row!important
}

.display-table-cell {
    display: table-cell!important
}

.display-flex {
    display: flex!important
}

.display-inline-flex {
    display: inline-flex!important
}

@media (min-width: 576px) {
    .display-sm-none {
        display:none!important
    }

    .display-sm-inline {
        display: inline!important
    }

    .display-sm-inline-block {
        display: inline-block!important
    }

    .display-sm-block {
        display: block!important
    }

    .display-sm-table {
        display: table!important
    }

    .display-sm-table-row {
        display: table-row!important
    }

    .display-sm-table-cell {
        display: table-cell!important
    }

    .display-sm-flex {
        display: flex!important
    }

    .display-sm-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 768px) {
    .display-md-none {
        display:none!important
    }

    .display-md-inline {
        display: inline!important
    }

    .display-md-inline-block {
        display: inline-block!important
    }

    .display-md-block {
        display: block!important
    }

    .display-md-table {
        display: table!important
    }

    .display-md-table-row {
        display: table-row!important
    }

    .display-md-table-cell {
        display: table-cell!important
    }

    .display-md-flex {
        display: flex!important
    }

    .display-md-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 992px) {
    .display-lg-none {
        display:none!important
    }

    .display-lg-inline {
        display: inline!important
    }

    .display-lg-inline-block {
        display: inline-block!important
    }

    .display-lg-block {
        display: block!important
    }

    .display-lg-table {
        display: table!important
    }

    .display-lg-table-row {
        display: table-row!important
    }

    .display-lg-table-cell {
        display: table-cell!important
    }

    .display-lg-flex {
        display: flex!important
    }

    .display-lg-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1200px) {
    .display-xl-none {
        display:none!important
    }

    .display-xl-inline {
        display: inline!important
    }

    .display-xl-inline-block {
        display: inline-block!important
    }

    .display-xl-block {
        display: block!important
    }

    .display-xl-table {
        display: table!important
    }

    .display-xl-table-row {
        display: table-row!important
    }

    .display-xl-table-cell {
        display: table-cell!important
    }

    .display-xl-flex {
        display: flex!important
    }

    .display-xl-inline-flex {
        display: inline-flex!important
    }
}

@media print {
    .display-print-none {
        display: none!important
    }

    .display-print-inline {
        display: inline!important
    }

    .display-print-inline-block {
        display: inline-block!important
    }

    .display-print-block {
        display: block!important
    }

    .display-print-table {
        display: table!important
    }

    .display-print-table-row {
        display: table-row!important
    }

    .display-print-table-cell {
        display: table-cell!important
    }

    .display-print-flex {
        display: flex!important
    }

    .display-print-inline-flex {
        display: inline-flex!important
    }
}

.ce-flex-row {
    flex-direction: row!important
}

.ce-flex-column {
    flex-direction: column!important
}

.ce-flex-row-reverse {
    flex-direction: row-reverse!important
}

.ce-flex-column-reverse {
    flex-direction: column-reverse!important
}

.ce-flex-wrap {
    flex-wrap: wrap!important
}

.ce-flex-nowrap {
    flex-wrap: nowrap!important
}

.ce-flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.ce-flex-fill {
    flex: 1 1 auto!important
}

.ce-flex-grow-0 {
    flex-grow: 0!important
}

.ce-flex-grow-1 {
    flex-grow: 1!important
}

.ce-flex-shrink-0 {
    flex-shrink: 0!important
}

.ce-flex-shrink-1 {
    flex-shrink: 1!important
}

.ce-justify-content-start {
    justify-content: flex-start!important
}

.ce-justify-content-end {
    justify-content: flex-end!important
}

.ce-justify-content-center {
    justify-content: center!important
}

.ce-justify-content-between {
    justify-content: space-between!important
}

.ce-justify-content-around {
    justify-content: space-around!important
}

.ce-align-items-start {
    align-items: flex-start!important
}

.ce-align-items-end {
    align-items: flex-end!important
}

.ce-align-items-center {
    align-items: center!important
}

.ce-align-items-baseline {
    align-items: baseline!important
}

.ce-align-items-stretch {
    align-items: stretch!important
}

.ce-align-content-start {
    align-content: flex-start!important
}

.ce-align-content-end {
    align-content: flex-end!important
}

.ce-align-content-center {
    align-content: center!important
}

.ce-align-content-between {
    align-content: space-between!important
}

.ce-align-content-around {
    align-content: space-around!important
}

.ce-align-content-stretch {
    align-content: stretch!important
}

.ce-align-self-auto {
    align-self: auto!important
}

.ce-align-self-start {
    align-self: flex-start!important
}

.ce-align-self-end {
    align-self: flex-end!important
}

.ce-align-self-center {
    align-self: center!important
}

.ce-align-self-baseline {
    align-self: baseline!important
}

.ce-align-self-stretch {
    align-self: stretch!important
}

@media (min-width: 576px) {
    .ce-flex-sm-row {
        flex-direction:row!important
    }

    .ce-flex-sm-column {
        flex-direction: column!important
    }

    .ce-flex-sm-row-reverse {
        flex-direction: row-reverse!important
    }

    .ce-flex-sm-column-reverse {
        flex-direction: column-reverse!important
    }

    .ce-flex-sm-wrap {
        flex-wrap: wrap!important
    }

    .ce-flex-sm-nowrap {
        flex-wrap: nowrap!important
    }

    .ce-flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .ce-flex-sm-fill {
        flex: 1 1 auto!important
    }

    .ce-flex-sm-grow-0 {
        flex-grow: 0!important
    }

    .ce-flex-sm-grow-1 {
        flex-grow: 1!important
    }

    .ce-flex-sm-shrink-0 {
        flex-shrink: 0!important
    }

    .ce-flex-sm-shrink-1 {
        flex-shrink: 1!important
    }

    .ce-justify-content-sm-start {
        justify-content: flex-start!important
    }

    .ce-justify-content-sm-end {
        justify-content: flex-end!important
    }

    .ce-justify-content-sm-center {
        justify-content: center!important
    }

    .ce-justify-content-sm-between {
        justify-content: space-between!important
    }

    .ce-justify-content-sm-around {
        justify-content: space-around!important
    }

    .ce-align-items-sm-start {
        align-items: flex-start!important
    }

    .ce-align-items-sm-end {
        align-items: flex-end!important
    }

    .ce-align-items-sm-center {
        align-items: center!important
    }

    .ce-align-items-sm-baseline {
        align-items: baseline!important
    }

    .ce-align-items-sm-stretch {
        align-items: stretch!important
    }

    .ce-align-content-sm-start {
        align-content: flex-start!important
    }

    .ce-align-content-sm-end {
        align-content: flex-end!important
    }

    .ce-align-content-sm-center {
        align-content: center!important
    }

    .ce-align-content-sm-between {
        align-content: space-between!important
    }

    .ce-align-content-sm-around {
        align-content: space-around!important
    }

    .ce-align-content-sm-stretch {
        align-content: stretch!important
    }

    .ce-align-self-sm-auto {
        align-self: auto!important
    }

    .ce-align-self-sm-start {
        align-self: flex-start!important
    }

    .ce-align-self-sm-end {
        align-self: flex-end!important
    }

    .ce-align-self-sm-center {
        align-self: center!important
    }

    .ce-align-self-sm-baseline {
        align-self: baseline!important
    }

    .ce-align-self-sm-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 768px) {
    .ce-flex-md-row {
        flex-direction:row!important
    }

    .ce-flex-md-column {
        flex-direction: column!important
    }

    .ce-flex-md-row-reverse {
        flex-direction: row-reverse!important
    }

    .ce-flex-md-column-reverse {
        flex-direction: column-reverse!important
    }

    .ce-flex-md-wrap {
        flex-wrap: wrap!important
    }

    .ce-flex-md-nowrap {
        flex-wrap: nowrap!important
    }

    .ce-flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .ce-flex-md-fill {
        flex: 1 1 auto!important
    }

    .ce-flex-md-grow-0 {
        flex-grow: 0!important
    }

    .ce-flex-md-grow-1 {
        flex-grow: 1!important
    }

    .ce-flex-md-shrink-0 {
        flex-shrink: 0!important
    }

    .ce-flex-md-shrink-1 {
        flex-shrink: 1!important
    }

    .ce-justify-content-md-start {
        justify-content: flex-start!important
    }

    .ce-justify-content-md-end {
        justify-content: flex-end!important
    }

    .ce-justify-content-md-center {
        justify-content: center!important
    }

    .ce-justify-content-md-between {
        justify-content: space-between!important
    }

    .ce-justify-content-md-around {
        justify-content: space-around!important
    }

    .ce-align-items-md-start {
        align-items: flex-start!important
    }

    .ce-align-items-md-end {
        align-items: flex-end!important
    }

    .ce-align-items-md-center {
        align-items: center!important
    }

    .ce-align-items-md-baseline {
        align-items: baseline!important
    }

    .ce-align-items-md-stretch {
        align-items: stretch!important
    }

    .ce-align-content-md-start {
        align-content: flex-start!important
    }

    .ce-align-content-md-end {
        align-content: flex-end!important
    }

    .ce-align-content-md-center {
        align-content: center!important
    }

    .ce-align-content-md-between {
        align-content: space-between!important
    }

    .ce-align-content-md-around {
        align-content: space-around!important
    }

    .ce-align-content-md-stretch {
        align-content: stretch!important
    }

    .ce-align-self-md-auto {
        align-self: auto!important
    }

    .ce-align-self-md-start {
        align-self: flex-start!important
    }

    .ce-align-self-md-end {
        align-self: flex-end!important
    }

    .ce-align-self-md-center {
        align-self: center!important
    }

    .ce-align-self-md-baseline {
        align-self: baseline!important
    }

    .ce-align-self-md-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 992px) {
    .ce-flex-lg-row {
        flex-direction:row!important
    }

    .ce-flex-lg-column {
        flex-direction: column!important
    }

    .ce-flex-lg-row-reverse {
        flex-direction: row-reverse!important
    }

    .ce-flex-lg-column-reverse {
        flex-direction: column-reverse!important
    }

    .ce-flex-lg-wrap {
        flex-wrap: wrap!important
    }

    .ce-flex-lg-nowrap {
        flex-wrap: nowrap!important
    }

    .ce-flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .ce-flex-lg-fill {
        flex: 1 1 auto!important
    }

    .ce-flex-lg-grow-0 {
        flex-grow: 0!important
    }

    .ce-flex-lg-grow-1 {
        flex-grow: 1!important
    }

    .ce-flex-lg-shrink-0 {
        flex-shrink: 0!important
    }

    .ce-flex-lg-shrink-1 {
        flex-shrink: 1!important
    }

    .ce-justify-content-lg-start {
        justify-content: flex-start!important
    }

    .ce-justify-content-lg-end {
        justify-content: flex-end!important
    }

    .ce-justify-content-lg-center {
        justify-content: center!important
    }

    .ce-justify-content-lg-between {
        justify-content: space-between!important
    }

    .ce-justify-content-lg-around {
        justify-content: space-around!important
    }

    .ce-align-items-lg-start {
        align-items: flex-start!important
    }

    .ce-align-items-lg-end {
        align-items: flex-end!important
    }

    .ce-align-items-lg-center {
        align-items: center!important
    }

    .ce-align-items-lg-baseline {
        align-items: baseline!important
    }

    .ce-align-items-lg-stretch {
        align-items: stretch!important
    }

    .ce-align-content-lg-start {
        align-content: flex-start!important
    }

    .ce-align-content-lg-end {
        align-content: flex-end!important
    }

    .ce-align-content-lg-center {
        align-content: center!important
    }

    .ce-align-content-lg-between {
        align-content: space-between!important
    }

    .ce-align-content-lg-around {
        align-content: space-around!important
    }

    .ce-align-content-lg-stretch {
        align-content: stretch!important
    }

    .ce-align-self-lg-auto {
        align-self: auto!important
    }

    .ce-align-self-lg-start {
        align-self: flex-start!important
    }

    .ce-align-self-lg-end {
        align-self: flex-end!important
    }

    .ce-align-self-lg-center {
        align-self: center!important
    }

    .ce-align-self-lg-baseline {
        align-self: baseline!important
    }

    .ce-align-self-lg-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 1200px) {
    .ce-flex-xl-row {
        flex-direction:row!important
    }

    .ce-flex-xl-column {
        flex-direction: column!important
    }

    .ce-flex-xl-row-reverse {
        flex-direction: row-reverse!important
    }

    .ce-flex-xl-column-reverse {
        flex-direction: column-reverse!important
    }

    .ce-flex-xl-wrap {
        flex-wrap: wrap!important
    }

    .ce-flex-xl-nowrap {
        flex-wrap: nowrap!important
    }

    .ce-flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .ce-flex-xl-fill {
        flex: 1 1 auto!important
    }

    .ce-flex-xl-grow-0 {
        flex-grow: 0!important
    }

    .ce-flex-xl-grow-1 {
        flex-grow: 1!important
    }

    .ce-flex-xl-shrink-0 {
        flex-shrink: 0!important
    }

    .ce-flex-xl-shrink-1 {
        flex-shrink: 1!important
    }

    .ce-justify-content-xl-start {
        justify-content: flex-start!important
    }

    .ce-justify-content-xl-end {
        justify-content: flex-end!important
    }

    .ce-justify-content-xl-center {
        justify-content: center!important
    }

    .ce-justify-content-xl-between {
        justify-content: space-between!important
    }

    .ce-justify-content-xl-around {
        justify-content: space-around!important
    }

    .ce-align-items-xl-start {
        align-items: flex-start!important
    }

    .ce-align-items-xl-end {
        align-items: flex-end!important
    }

    .ce-align-items-xl-center {
        align-items: center!important
    }

    .ce-align-items-xl-baseline {
        align-items: baseline!important
    }

    .ce-align-items-xl-stretch {
        align-items: stretch!important
    }

    .ce-align-content-xl-start {
        align-content: flex-start!important
    }

    .ce-align-content-xl-end {
        align-content: flex-end!important
    }

    .ce-align-content-xl-center {
        align-content: center!important
    }

    .ce-align-content-xl-between {
        align-content: space-between!important
    }

    .ce-align-content-xl-around {
        align-content: space-around!important
    }

    .ce-align-content-xl-stretch {
        align-content: stretch!important
    }

    .ce-align-self-xl-auto {
        align-self: auto!important
    }

    .ce-align-self-xl-start {
        align-self: flex-start!important
    }

    .ce-align-self-xl-end {
        align-self: flex-end!important
    }

    .ce-align-self-xl-center {
        align-self: center!important
    }

    .ce-align-self-xl-baseline {
        align-self: baseline!important
    }

    .ce-align-self-xl-stretch {
        align-self: stretch!important
    }
}

.margin-0 {
    margin: 0!important
}

.margint-0,.marginy-0 {
    margin-top: 0!important
}

.marginr-0,.marginx-0 {
    margin-right: 0!important
}

.marginb-0,.marginy-0 {
    margin-bottom: 0!important
}

.marginl-0,.marginx-0 {
    margin-left: 0!important
}

.margin-1 {
    margin: .25rem!important
}

.margint-1,.marginy-1 {
    margin-top: .25rem!important
}

.marginr-1,.marginx-1 {
    margin-right: .25rem!important
}

.marginb-1,.marginy-1 {
    margin-bottom: .25rem!important
}

.marginl-1,.marginx-1 {
    margin-left: .25rem!important
}

.margin-2 {
    margin: .5rem!important
}

.margint-2,.marginy-2 {
    margin-top: .5rem!important
}

.marginr-2,.marginx-2 {
    margin-right: .5rem!important
}

.marginb-2,.marginy-2 {
    margin-bottom: .5rem!important
}

.marginl-2,.marginx-2 {
    margin-left: .5rem!important
}

.margin-3 {
    margin: 1rem!important
}

.margint-3,.marginy-3 {
    margin-top: 1rem!important
}

.marginr-3,.marginx-3 {
    margin-right: 1rem!important
}

.marginb-3,.marginy-3 {
    margin-bottom: 1rem!important
}

.marginl-3,.marginx-3 {
    margin-left: 1rem!important
}

.margin-4 {
    margin: 1.5rem!important
}

.margint-4,.marginy-4 {
    margin-top: 1.5rem!important
}

.marginr-4,.marginx-4 {
    margin-right: 1.5rem!important
}

.marginb-4,.marginy-4 {
    margin-bottom: 1.5rem!important
}

.marginl-4,.marginx-4 {
    margin-left: 1.5rem!important
}

.margin-5 {
    margin: 3rem!important
}

.margint-5,.marginy-5 {
    margin-top: 3rem!important
}

.marginr-5,.marginx-5 {
    margin-right: 3rem!important
}

.marginb-5,.marginy-5 {
    margin-bottom: 3rem!important
}

.marginl-5,.marginx-5 {
    margin-left: 3rem!important
}

.padding-0 {
    padding: 0!important
}

.paddingt-0,.paddingy-0 {
    padding-top: 0!important
}

.paddingr-0,.paddingx-0 {
    padding-right: 0!important
}

.paddingb-0,.paddingy-0 {
    padding-bottom: 0!important
}

.paddingl-0,.paddingx-0 {
    padding-left: 0!important
}

.padding-1 {
    padding: .25rem!important
}

.paddingt-1,.paddingy-1 {
    padding-top: .25rem!important
}

.paddingr-1,.paddingx-1 {
    padding-right: .25rem!important
}

.paddingb-1,.paddingy-1 {
    padding-bottom: .25rem!important
}

.paddingl-1,.paddingx-1 {
    padding-left: .25rem!important
}

.padding-2 {
    padding: .5rem!important
}

.paddingt-2,.paddingy-2 {
    padding-top: .5rem!important
}

.paddingr-2,.paddingx-2 {
    padding-right: .5rem!important
}

.paddingb-2,.paddingy-2 {
    padding-bottom: .5rem!important
}

.paddingl-2,.paddingx-2 {
    padding-left: .5rem!important
}

.padding-3 {
    padding: 1rem!important
}

.paddingt-3,.paddingy-3 {
    padding-top: 1rem!important
}

.paddingr-3,.paddingx-3 {
    padding-right: 1rem!important
}

.paddingb-3,.paddingy-3 {
    padding-bottom: 1rem!important
}

.paddingl-3,.paddingx-3 {
    padding-left: 1rem!important
}

.padding-4 {
    padding: 1.5rem!important
}

.paddingt-4,.paddingy-4 {
    padding-top: 1.5rem!important
}

.paddingr-4,.paddingx-4 {
    padding-right: 1.5rem!important
}

.paddingb-4,.paddingy-4 {
    padding-bottom: 1.5rem!important
}

.paddingl-4,.paddingx-4 {
    padding-left: 1.5rem!important
}

.padding-5 {
    padding: 3rem!important
}

.paddingt-5,.paddingy-5 {
    padding-top: 3rem!important
}

.paddingr-5,.paddingx-5 {
    padding-right: 3rem!important
}

.paddingb-5,.paddingy-5 {
    padding-bottom: 3rem!important
}

.paddingl-5,.paddingx-5 {
    padding-left: 3rem!important
}

.margin-n1 {
    margin: -.25rem!important
}

.margin-t-n1,.margin-y-n1 {
    margin-top: -.25rem!important
}

.margin-r-n1,.margin-x-n1 {
    margin-right: -.25rem!important
}

.margin-b-n1,.margin-y-n1 {
    margin-bottom: -.25rem!important
}

.margin-l-n1,.margin-x-n1 {
    margin-left: -.25rem!important
}

.margin-n2 {
    margin: -.5rem!important
}

.margin-t-n2,.margin-y-n2 {
    margin-top: -.5rem!important
}

.margin-r-n2,.margin-x-n2 {
    margin-right: -.5rem!important
}

.margin-b-n2,.margin-y-n2 {
    margin-bottom: -.5rem!important
}

.margin-l-n2,.margin-x-n2 {
    margin-left: -.5rem!important
}

.margin-n3 {
    margin: -1rem!important
}

.margin-t-n3,.margin-y-n3 {
    margin-top: -1rem!important
}

.margin-r-n3,.margin-x-n3 {
    margin-right: -1rem!important
}

.margin-b-n3,.margin-y-n3 {
    margin-bottom: -1rem!important
}

.margin-l-n3,.margin-x-n3 {
    margin-left: -1rem!important
}

.margin-n4 {
    margin: -1.5rem!important
}

.margin-t-n4,.margin-y-n4 {
    margin-top: -1.5rem!important
}

.margin-r-n4,.margin-x-n4 {
    margin-right: -1.5rem!important
}

.margin-b-n4,.margin-y-n4 {
    margin-bottom: -1.5rem!important
}

.margin-l-n4,.margin-x-n4 {
    margin-left: -1.5rem!important
}

.margin-n5 {
    margin: -3rem!important
}

.margin-t-n5,.margin-y-n5 {
    margin-top: -3rem!important
}

.margin-r-n5,.margin-x-n5 {
    margin-right: -3rem!important
}

.margin-b-n5,.margin-y-n5 {
    margin-bottom: -3rem!important
}

.margin-l-n5,.margin-x-n5 {
    margin-left: -3rem!important
}

.margin-auto {
    margin: auto!important
}

.margin-t-auto,.margin-y-auto {
    margin-top: auto!important
}

.margin-r-auto,.margin-x-auto {
    margin-right: auto!important
}

.margin-b-auto,.margin-y-auto {
    margin-bottom: auto!important
}

.margin-l-auto,.margin-x-auto {
    margin-left: auto!important
}

@media (min-width: 576px) {
    .margin-sm-0 {
        margin:0!important
    }

    .margint-sm-0,.marginy-sm-0 {
        margin-top: 0!important
    }

    .marginr-sm-0,.marginx-sm-0 {
        margin-right: 0!important
    }

    .marginb-sm-0,.marginy-sm-0 {
        margin-bottom: 0!important
    }

    .marginl-sm-0,.marginx-sm-0 {
        margin-left: 0!important
    }

    .margin-sm-1 {
        margin: .25rem!important
    }

    .margint-sm-1,.marginy-sm-1 {
        margin-top: .25rem!important
    }

    .marginr-sm-1,.marginx-sm-1 {
        margin-right: .25rem!important
    }

    .marginb-sm-1,.marginy-sm-1 {
        margin-bottom: .25rem!important
    }

    .marginl-sm-1,.marginx-sm-1 {
        margin-left: .25rem!important
    }

    .margin-sm-2 {
        margin: .5rem!important
    }

    .margint-sm-2,.marginy-sm-2 {
        margin-top: .5rem!important
    }

    .marginr-sm-2,.marginx-sm-2 {
        margin-right: .5rem!important
    }

    .marginb-sm-2,.marginy-sm-2 {
        margin-bottom: .5rem!important
    }

    .marginl-sm-2,.marginx-sm-2 {
        margin-left: .5rem!important
    }

    .margin-sm-3 {
        margin: 1rem!important
    }

    .margint-sm-3,.marginy-sm-3 {
        margin-top: 1rem!important
    }

    .marginr-sm-3,.marginx-sm-3 {
        margin-right: 1rem!important
    }

    .marginb-sm-3,.marginy-sm-3 {
        margin-bottom: 1rem!important
    }

    .marginl-sm-3,.marginx-sm-3 {
        margin-left: 1rem!important
    }

    .margin-sm-4 {
        margin: 1.5rem!important
    }

    .margint-sm-4,.marginy-sm-4 {
        margin-top: 1.5rem!important
    }

    .marginr-sm-4,.marginx-sm-4 {
        margin-right: 1.5rem!important
    }

    .marginb-sm-4,.marginy-sm-4 {
        margin-bottom: 1.5rem!important
    }

    .marginl-sm-4,.marginx-sm-4 {
        margin-left: 1.5rem!important
    }

    .margin-sm-5 {
        margin: 3rem!important
    }

    .margint-sm-5,.marginy-sm-5 {
        margin-top: 3rem!important
    }

    .marginr-sm-5,.marginx-sm-5 {
        margin-right: 3rem!important
    }

    .marginb-sm-5,.marginy-sm-5 {
        margin-bottom: 3rem!important
    }

    .marginl-sm-5,.marginx-sm-5 {
        margin-left: 3rem!important
    }

    .padding-sm-0 {
        padding: 0!important
    }

    .paddingt-sm-0,.paddingy-sm-0 {
        padding-top: 0!important
    }

    .paddingr-sm-0,.paddingx-sm-0 {
        padding-right: 0!important
    }

    .paddingb-sm-0,.paddingy-sm-0 {
        padding-bottom: 0!important
    }

    .paddingl-sm-0,.paddingx-sm-0 {
        padding-left: 0!important
    }

    .padding-sm-1 {
        padding: .25rem!important
    }

    .paddingt-sm-1,.paddingy-sm-1 {
        padding-top: .25rem!important
    }

    .paddingr-sm-1,.paddingx-sm-1 {
        padding-right: .25rem!important
    }

    .paddingb-sm-1,.paddingy-sm-1 {
        padding-bottom: .25rem!important
    }

    .paddingl-sm-1,.paddingx-sm-1 {
        padding-left: .25rem!important
    }

    .padding-sm-2 {
        padding: .5rem!important
    }

    .paddingt-sm-2,.paddingy-sm-2 {
        padding-top: .5rem!important
    }

    .paddingr-sm-2,.paddingx-sm-2 {
        padding-right: .5rem!important
    }

    .paddingb-sm-2,.paddingy-sm-2 {
        padding-bottom: .5rem!important
    }

    .paddingl-sm-2,.paddingx-sm-2 {
        padding-left: .5rem!important
    }

    .padding-sm-3 {
        padding: 1rem!important
    }

    .paddingt-sm-3,.paddingy-sm-3 {
        padding-top: 1rem!important
    }

    .paddingr-sm-3,.paddingx-sm-3 {
        padding-right: 1rem!important
    }

    .paddingb-sm-3,.paddingy-sm-3 {
        padding-bottom: 1rem!important
    }

    .paddingl-sm-3,.paddingx-sm-3 {
        padding-left: 1rem!important
    }

    .padding-sm-4 {
        padding: 1.5rem!important
    }

    .paddingt-sm-4,.paddingy-sm-4 {
        padding-top: 1.5rem!important
    }

    .paddingr-sm-4,.paddingx-sm-4 {
        padding-right: 1.5rem!important
    }

    .paddingb-sm-4,.paddingy-sm-4 {
        padding-bottom: 1.5rem!important
    }

    .paddingl-sm-4,.paddingx-sm-4 {
        padding-left: 1.5rem!important
    }

    .padding-sm-5 {
        padding: 3rem!important
    }

    .paddingt-sm-5,.paddingy-sm-5 {
        padding-top: 3rem!important
    }

    .paddingr-sm-5,.paddingx-sm-5 {
        padding-right: 3rem!important
    }

    .paddingb-sm-5,.paddingy-sm-5 {
        padding-bottom: 3rem!important
    }

    .paddingl-sm-5,.paddingx-sm-5 {
        padding-left: 3rem!important
    }

    .margin-sm-n1 {
        margin: -.25rem!important
    }

    .margin-t-sm-n1,.margin-y-sm-n1 {
        margin-top: -.25rem!important
    }

    .margin-r-sm-n1,.margin-x-sm-n1 {
        margin-right: -.25rem!important
    }

    .margin-b-sm-n1,.margin-y-sm-n1 {
        margin-bottom: -.25rem!important
    }

    .margin-l-sm-n1,.margin-x-sm-n1 {
        margin-left: -.25rem!important
    }

    .margin-sm-n2 {
        margin: -.5rem!important
    }

    .margin-t-sm-n2,.margin-y-sm-n2 {
        margin-top: -.5rem!important
    }

    .margin-r-sm-n2,.margin-x-sm-n2 {
        margin-right: -.5rem!important
    }

    .margin-b-sm-n2,.margin-y-sm-n2 {
        margin-bottom: -.5rem!important
    }

    .margin-l-sm-n2,.margin-x-sm-n2 {
        margin-left: -.5rem!important
    }

    .margin-sm-n3 {
        margin: -1rem!important
    }

    .margin-t-sm-n3,.margin-y-sm-n3 {
        margin-top: -1rem!important
    }

    .margin-r-sm-n3,.margin-x-sm-n3 {
        margin-right: -1rem!important
    }

    .margin-b-sm-n3,.margin-y-sm-n3 {
        margin-bottom: -1rem!important
    }

    .margin-l-sm-n3,.margin-x-sm-n3 {
        margin-left: -1rem!important
    }

    .margin-sm-n4 {
        margin: -1.5rem!important
    }

    .margin-t-sm-n4,.margin-y-sm-n4 {
        margin-top: -1.5rem!important
    }

    .margin-r-sm-n4,.margin-x-sm-n4 {
        margin-right: -1.5rem!important
    }

    .margin-b-sm-n4,.margin-y-sm-n4 {
        margin-bottom: -1.5rem!important
    }

    .margin-l-sm-n4,.margin-x-sm-n4 {
        margin-left: -1.5rem!important
    }

    .margin-sm-n5 {
        margin: -3rem!important
    }

    .margin-t-sm-n5,.margin-y-sm-n5 {
        margin-top: -3rem!important
    }

    .margin-r-sm-n5,.margin-x-sm-n5 {
        margin-right: -3rem!important
    }

    .margin-b-sm-n5,.margin-y-sm-n5 {
        margin-bottom: -3rem!important
    }

    .margin-l-sm-n5,.margin-x-sm-n5 {
        margin-left: -3rem!important
    }

    .margin-sm-auto {
        margin: auto!important
    }

    .margin-t-sm-auto,.margin-y-sm-auto {
        margin-top: auto!important
    }

    .margin-r-sm-auto,.margin-x-sm-auto {
        margin-right: auto!important
    }

    .margin-b-sm-auto,.margin-y-sm-auto {
        margin-bottom: auto!important
    }

    .margin-l-sm-auto,.margin-x-sm-auto {
        margin-left: auto!important
    }
}

@media (min-width: 768px) {
    .margin-md-0 {
        margin:0!important
    }

    .margint-md-0,.marginy-md-0 {
        margin-top: 0!important
    }

    .marginr-md-0,.marginx-md-0 {
        margin-right: 0!important
    }

    .marginb-md-0,.marginy-md-0 {
        margin-bottom: 0!important
    }

    .marginl-md-0,.marginx-md-0 {
        margin-left: 0!important
    }

    .margin-md-1 {
        margin: .25rem!important
    }

    .margint-md-1,.marginy-md-1 {
        margin-top: .25rem!important
    }

    .marginr-md-1,.marginx-md-1 {
        margin-right: .25rem!important
    }

    .marginb-md-1,.marginy-md-1 {
        margin-bottom: .25rem!important
    }

    .marginl-md-1,.marginx-md-1 {
        margin-left: .25rem!important
    }

    .margin-md-2 {
        margin: .5rem!important
    }

    .margint-md-2,.marginy-md-2 {
        margin-top: .5rem!important
    }

    .marginr-md-2,.marginx-md-2 {
        margin-right: .5rem!important
    }

    .marginb-md-2,.marginy-md-2 {
        margin-bottom: .5rem!important
    }

    .marginl-md-2,.marginx-md-2 {
        margin-left: .5rem!important
    }

    .margin-md-3 {
        margin: 1rem!important
    }

    .margint-md-3,.marginy-md-3 {
        margin-top: 1rem!important
    }

    .marginr-md-3,.marginx-md-3 {
        margin-right: 1rem!important
    }

    .marginb-md-3,.marginy-md-3 {
        margin-bottom: 1rem!important
    }

    .marginl-md-3,.marginx-md-3 {
        margin-left: 1rem!important
    }

    .margin-md-4 {
        margin: 1.5rem!important
    }

    .margint-md-4,.marginy-md-4 {
        margin-top: 1.5rem!important
    }

    .marginr-md-4,.marginx-md-4 {
        margin-right: 1.5rem!important
    }

    .marginb-md-4,.marginy-md-4 {
        margin-bottom: 1.5rem!important
    }

    .marginl-md-4,.marginx-md-4 {
        margin-left: 1.5rem!important
    }

    .margin-md-5 {
        margin: 3rem!important
    }

    .margint-md-5,.marginy-md-5 {
        margin-top: 3rem!important
    }

    .marginr-md-5,.marginx-md-5 {
        margin-right: 3rem!important
    }

    .marginb-md-5,.marginy-md-5 {
        margin-bottom: 3rem!important
    }

    .marginl-md-5,.marginx-md-5 {
        margin-left: 3rem!important
    }

    .padding-md-0 {
        padding: 0!important
    }

    .paddingt-md-0,.paddingy-md-0 {
        padding-top: 0!important
    }

    .paddingr-md-0,.paddingx-md-0 {
        padding-right: 0!important
    }

    .paddingb-md-0,.paddingy-md-0 {
        padding-bottom: 0!important
    }

    .paddingl-md-0,.paddingx-md-0 {
        padding-left: 0!important
    }

    .padding-md-1 {
        padding: .25rem!important
    }

    .paddingt-md-1,.paddingy-md-1 {
        padding-top: .25rem!important
    }

    .paddingr-md-1,.paddingx-md-1 {
        padding-right: .25rem!important
    }

    .paddingb-md-1,.paddingy-md-1 {
        padding-bottom: .25rem!important
    }

    .paddingl-md-1,.paddingx-md-1 {
        padding-left: .25rem!important
    }

    .padding-md-2 {
        padding: .5rem!important
    }

    .paddingt-md-2,.paddingy-md-2 {
        padding-top: .5rem!important
    }

    .paddingr-md-2,.paddingx-md-2 {
        padding-right: .5rem!important
    }

    .paddingb-md-2,.paddingy-md-2 {
        padding-bottom: .5rem!important
    }

    .paddingl-md-2,.paddingx-md-2 {
        padding-left: .5rem!important
    }

    .padding-md-3 {
        padding: 1rem!important
    }

    .paddingt-md-3,.paddingy-md-3 {
        padding-top: 1rem!important
    }

    .paddingr-md-3,.paddingx-md-3 {
        padding-right: 1rem!important
    }

    .paddingb-md-3,.paddingy-md-3 {
        padding-bottom: 1rem!important
    }

    .paddingl-md-3,.paddingx-md-3 {
        padding-left: 1rem!important
    }

    .padding-md-4 {
        padding: 1.5rem!important
    }

    .paddingt-md-4,.paddingy-md-4 {
        padding-top: 1.5rem!important
    }

    .paddingr-md-4,.paddingx-md-4 {
        padding-right: 1.5rem!important
    }

    .paddingb-md-4,.paddingy-md-4 {
        padding-bottom: 1.5rem!important
    }

    .paddingl-md-4,.paddingx-md-4 {
        padding-left: 1.5rem!important
    }

    .padding-md-5 {
        padding: 3rem!important
    }

    .paddingt-md-5,.paddingy-md-5 {
        padding-top: 3rem!important
    }

    .paddingr-md-5,.paddingx-md-5 {
        padding-right: 3rem!important
    }

    .paddingb-md-5,.paddingy-md-5 {
        padding-bottom: 3rem!important
    }

    .paddingl-md-5,.paddingx-md-5 {
        padding-left: 3rem!important
    }

    .margin-md-n1 {
        margin: -.25rem!important
    }

    .margin-t-md-n1,.margin-y-md-n1 {
        margin-top: -.25rem!important
    }

    .margin-r-md-n1,.margin-x-md-n1 {
        margin-right: -.25rem!important
    }

    .margin-b-md-n1,.margin-y-md-n1 {
        margin-bottom: -.25rem!important
    }

    .margin-l-md-n1,.margin-x-md-n1 {
        margin-left: -.25rem!important
    }

    .margin-md-n2 {
        margin: -.5rem!important
    }

    .margin-t-md-n2,.margin-y-md-n2 {
        margin-top: -.5rem!important
    }

    .margin-r-md-n2,.margin-x-md-n2 {
        margin-right: -.5rem!important
    }

    .margin-b-md-n2,.margin-y-md-n2 {
        margin-bottom: -.5rem!important
    }

    .margin-l-md-n2,.margin-x-md-n2 {
        margin-left: -.5rem!important
    }

    .margin-md-n3 {
        margin: -1rem!important
    }

    .margin-t-md-n3,.margin-y-md-n3 {
        margin-top: -1rem!important
    }

    .margin-r-md-n3,.margin-x-md-n3 {
        margin-right: -1rem!important
    }

    .margin-b-md-n3,.margin-y-md-n3 {
        margin-bottom: -1rem!important
    }

    .margin-l-md-n3,.margin-x-md-n3 {
        margin-left: -1rem!important
    }

    .margin-md-n4 {
        margin: -1.5rem!important
    }

    .margin-t-md-n4,.margin-y-md-n4 {
        margin-top: -1.5rem!important
    }

    .margin-r-md-n4,.margin-x-md-n4 {
        margin-right: -1.5rem!important
    }

    .margin-b-md-n4,.margin-y-md-n4 {
        margin-bottom: -1.5rem!important
    }

    .margin-l-md-n4,.margin-x-md-n4 {
        margin-left: -1.5rem!important
    }

    .margin-md-n5 {
        margin: -3rem!important
    }

    .margin-t-md-n5,.margin-y-md-n5 {
        margin-top: -3rem!important
    }

    .margin-r-md-n5,.margin-x-md-n5 {
        margin-right: -3rem!important
    }

    .margin-b-md-n5,.margin-y-md-n5 {
        margin-bottom: -3rem!important
    }

    .margin-l-md-n5,.margin-x-md-n5 {
        margin-left: -3rem!important
    }

    .margin-md-auto {
        margin: auto!important
    }

    .margin-t-md-auto,.margin-y-md-auto {
        margin-top: auto!important
    }

    .margin-r-md-auto,.margin-x-md-auto {
        margin-right: auto!important
    }

    .margin-b-md-auto,.margin-y-md-auto {
        margin-bottom: auto!important
    }

    .margin-l-md-auto,.margin-x-md-auto {
        margin-left: auto!important
    }
}

@media (min-width: 992px) {
    .margin-lg-0 {
        margin:0!important
    }

    .margint-lg-0,.marginy-lg-0 {
        margin-top: 0!important
    }

    .marginr-lg-0,.marginx-lg-0 {
        margin-right: 0!important
    }

    .marginb-lg-0,.marginy-lg-0 {
        margin-bottom: 0!important
    }

    .marginl-lg-0,.marginx-lg-0 {
        margin-left: 0!important
    }

    .margin-lg-1 {
        margin: .25rem!important
    }

    .margint-lg-1,.marginy-lg-1 {
        margin-top: .25rem!important
    }

    .marginr-lg-1,.marginx-lg-1 {
        margin-right: .25rem!important
    }

    .marginb-lg-1,.marginy-lg-1 {
        margin-bottom: .25rem!important
    }

    .marginl-lg-1,.marginx-lg-1 {
        margin-left: .25rem!important
    }

    .margin-lg-2 {
        margin: .5rem!important
    }

    .margint-lg-2,.marginy-lg-2 {
        margin-top: .5rem!important
    }

    .marginr-lg-2,.marginx-lg-2 {
        margin-right: .5rem!important
    }

    .marginb-lg-2,.marginy-lg-2 {
        margin-bottom: .5rem!important
    }

    .marginl-lg-2,.marginx-lg-2 {
        margin-left: .5rem!important
    }

    .margin-lg-3 {
        margin: 1rem!important
    }

    .margint-lg-3,.marginy-lg-3 {
        margin-top: 1rem!important
    }

    .marginr-lg-3,.marginx-lg-3 {
        margin-right: 1rem!important
    }

    .marginb-lg-3,.marginy-lg-3 {
        margin-bottom: 1rem!important
    }

    .marginl-lg-3,.marginx-lg-3 {
        margin-left: 1rem!important
    }

    .margin-lg-4 {
        margin: 1.5rem!important
    }

    .margint-lg-4,.marginy-lg-4 {
        margin-top: 1.5rem!important
    }

    .marginr-lg-4,.marginx-lg-4 {
        margin-right: 1.5rem!important
    }

    .marginb-lg-4,.marginy-lg-4 {
        margin-bottom: 1.5rem!important
    }

    .marginl-lg-4,.marginx-lg-4 {
        margin-left: 1.5rem!important
    }

    .margin-lg-5 {
        margin: 3rem!important
    }

    .margint-lg-5,.marginy-lg-5 {
        margin-top: 3rem!important
    }

    .marginr-lg-5,.marginx-lg-5 {
        margin-right: 3rem!important
    }

    .marginb-lg-5,.marginy-lg-5 {
        margin-bottom: 3rem!important
    }

    .marginl-lg-5,.marginx-lg-5 {
        margin-left: 3rem!important
    }

    .padding-lg-0 {
        padding: 0!important
    }

    .paddingt-lg-0,.paddingy-lg-0 {
        padding-top: 0!important
    }

    .paddingr-lg-0,.paddingx-lg-0 {
        padding-right: 0!important
    }

    .paddingb-lg-0,.paddingy-lg-0 {
        padding-bottom: 0!important
    }

    .paddingl-lg-0,.paddingx-lg-0 {
        padding-left: 0!important
    }

    .padding-lg-1 {
        padding: .25rem!important
    }

    .paddingt-lg-1,.paddingy-lg-1 {
        padding-top: .25rem!important
    }

    .paddingr-lg-1,.paddingx-lg-1 {
        padding-right: .25rem!important
    }

    .paddingb-lg-1,.paddingy-lg-1 {
        padding-bottom: .25rem!important
    }

    .paddingl-lg-1,.paddingx-lg-1 {
        padding-left: .25rem!important
    }

    .padding-lg-2 {
        padding: .5rem!important
    }

    .paddingt-lg-2,.paddingy-lg-2 {
        padding-top: .5rem!important
    }

    .paddingr-lg-2,.paddingx-lg-2 {
        padding-right: .5rem!important
    }

    .paddingb-lg-2,.paddingy-lg-2 {
        padding-bottom: .5rem!important
    }

    .paddingl-lg-2,.paddingx-lg-2 {
        padding-left: .5rem!important
    }

    .padding-lg-3 {
        padding: 1rem!important
    }

    .paddingt-lg-3,.paddingy-lg-3 {
        padding-top: 1rem!important
    }

    .paddingr-lg-3,.paddingx-lg-3 {
        padding-right: 1rem!important
    }

    .paddingb-lg-3,.paddingy-lg-3 {
        padding-bottom: 1rem!important
    }

    .paddingl-lg-3,.paddingx-lg-3 {
        padding-left: 1rem!important
    }

    .padding-lg-4 {
        padding: 1.5rem!important
    }

    .paddingt-lg-4,.paddingy-lg-4 {
        padding-top: 1.5rem!important
    }

    .paddingr-lg-4,.paddingx-lg-4 {
        padding-right: 1.5rem!important
    }

    .paddingb-lg-4,.paddingy-lg-4 {
        padding-bottom: 1.5rem!important
    }

    .paddingl-lg-4,.paddingx-lg-4 {
        padding-left: 1.5rem!important
    }

    .padding-lg-5 {
        padding: 3rem!important
    }

    .paddingt-lg-5,.paddingy-lg-5 {
        padding-top: 3rem!important
    }

    .paddingr-lg-5,.paddingx-lg-5 {
        padding-right: 3rem!important
    }

    .paddingb-lg-5,.paddingy-lg-5 {
        padding-bottom: 3rem!important
    }

    .paddingl-lg-5,.paddingx-lg-5 {
        padding-left: 3rem!important
    }

    .margin-lg-n1 {
        margin: -.25rem!important
    }

    .margin-t-lg-n1,.margin-y-lg-n1 {
        margin-top: -.25rem!important
    }

    .margin-r-lg-n1,.margin-x-lg-n1 {
        margin-right: -.25rem!important
    }

    .margin-b-lg-n1,.margin-y-lg-n1 {
        margin-bottom: -.25rem!important
    }

    .margin-l-lg-n1,.margin-x-lg-n1 {
        margin-left: -.25rem!important
    }

    .margin-lg-n2 {
        margin: -.5rem!important
    }

    .margin-t-lg-n2,.margin-y-lg-n2 {
        margin-top: -.5rem!important
    }

    .margin-r-lg-n2,.margin-x-lg-n2 {
        margin-right: -.5rem!important
    }

    .margin-b-lg-n2,.margin-y-lg-n2 {
        margin-bottom: -.5rem!important
    }

    .margin-l-lg-n2,.margin-x-lg-n2 {
        margin-left: -.5rem!important
    }

    .margin-lg-n3 {
        margin: -1rem!important
    }

    .margin-t-lg-n3,.margin-y-lg-n3 {
        margin-top: -1rem!important
    }

    .margin-r-lg-n3,.margin-x-lg-n3 {
        margin-right: -1rem!important
    }

    .margin-b-lg-n3,.margin-y-lg-n3 {
        margin-bottom: -1rem!important
    }

    .margin-l-lg-n3,.margin-x-lg-n3 {
        margin-left: -1rem!important
    }

    .margin-lg-n4 {
        margin: -1.5rem!important
    }

    .margin-t-lg-n4,.margin-y-lg-n4 {
        margin-top: -1.5rem!important
    }

    .margin-r-lg-n4,.margin-x-lg-n4 {
        margin-right: -1.5rem!important
    }

    .margin-b-lg-n4,.margin-y-lg-n4 {
        margin-bottom: -1.5rem!important
    }

    .margin-l-lg-n4,.margin-x-lg-n4 {
        margin-left: -1.5rem!important
    }

    .margin-lg-n5 {
        margin: -3rem!important
    }

    .margin-t-lg-n5,.margin-y-lg-n5 {
        margin-top: -3rem!important
    }

    .margin-r-lg-n5,.margin-x-lg-n5 {
        margin-right: -3rem!important
    }

    .margin-b-lg-n5,.margin-y-lg-n5 {
        margin-bottom: -3rem!important
    }

    .margin-l-lg-n5,.margin-x-lg-n5 {
        margin-left: -3rem!important
    }

    .margin-lg-auto {
        margin: auto!important
    }

    .margin-t-lg-auto,.margin-y-lg-auto {
        margin-top: auto!important
    }

    .margin-r-lg-auto,.margin-x-lg-auto {
        margin-right: auto!important
    }

    .margin-b-lg-auto,.margin-y-lg-auto {
        margin-bottom: auto!important
    }

    .margin-l-lg-auto,.margin-x-lg-auto {
        margin-left: auto!important
    }
}

@media (min-width: 1200px) {
    .margin-xl-0 {
        margin:0!important
    }

    .margint-xl-0,.marginy-xl-0 {
        margin-top: 0!important
    }

    .marginr-xl-0,.marginx-xl-0 {
        margin-right: 0!important
    }

    .marginb-xl-0,.marginy-xl-0 {
        margin-bottom: 0!important
    }

    .marginl-xl-0,.marginx-xl-0 {
        margin-left: 0!important
    }

    .margin-xl-1 {
        margin: .25rem!important
    }

    .margint-xl-1,.marginy-xl-1 {
        margin-top: .25rem!important
    }

    .marginr-xl-1,.marginx-xl-1 {
        margin-right: .25rem!important
    }

    .marginb-xl-1,.marginy-xl-1 {
        margin-bottom: .25rem!important
    }

    .marginl-xl-1,.marginx-xl-1 {
        margin-left: .25rem!important
    }

    .margin-xl-2 {
        margin: .5rem!important
    }

    .margint-xl-2,.marginy-xl-2 {
        margin-top: .5rem!important
    }

    .marginr-xl-2,.marginx-xl-2 {
        margin-right: .5rem!important
    }

    .marginb-xl-2,.marginy-xl-2 {
        margin-bottom: .5rem!important
    }

    .marginl-xl-2,.marginx-xl-2 {
        margin-left: .5rem!important
    }

    .margin-xl-3 {
        margin: 1rem!important
    }

    .margint-xl-3,.marginy-xl-3 {
        margin-top: 1rem!important
    }

    .marginr-xl-3,.marginx-xl-3 {
        margin-right: 1rem!important
    }

    .marginb-xl-3,.marginy-xl-3 {
        margin-bottom: 1rem!important
    }

    .marginl-xl-3,.marginx-xl-3 {
        margin-left: 1rem!important
    }

    .margin-xl-4 {
        margin: 1.5rem!important
    }

    .margint-xl-4,.marginy-xl-4 {
        margin-top: 1.5rem!important
    }

    .marginr-xl-4,.marginx-xl-4 {
        margin-right: 1.5rem!important
    }

    .marginb-xl-4,.marginy-xl-4 {
        margin-bottom: 1.5rem!important
    }

    .marginl-xl-4,.marginx-xl-4 {
        margin-left: 1.5rem!important
    }

    .margin-xl-5 {
        margin: 3rem!important
    }

    .margint-xl-5,.marginy-xl-5 {
        margin-top: 3rem!important
    }

    .marginr-xl-5,.marginx-xl-5 {
        margin-right: 3rem!important
    }

    .marginb-xl-5,.marginy-xl-5 {
        margin-bottom: 3rem!important
    }

    .marginl-xl-5,.marginx-xl-5 {
        margin-left: 3rem!important
    }

    .padding-xl-0 {
        padding: 0!important
    }

    .paddingt-xl-0,.paddingy-xl-0 {
        padding-top: 0!important
    }

    .paddingr-xl-0,.paddingx-xl-0 {
        padding-right: 0!important
    }

    .paddingb-xl-0,.paddingy-xl-0 {
        padding-bottom: 0!important
    }

    .paddingl-xl-0,.paddingx-xl-0 {
        padding-left: 0!important
    }

    .padding-xl-1 {
        padding: .25rem!important
    }

    .paddingt-xl-1,.paddingy-xl-1 {
        padding-top: .25rem!important
    }

    .paddingr-xl-1,.paddingx-xl-1 {
        padding-right: .25rem!important
    }

    .paddingb-xl-1,.paddingy-xl-1 {
        padding-bottom: .25rem!important
    }

    .paddingl-xl-1,.paddingx-xl-1 {
        padding-left: .25rem!important
    }

    .padding-xl-2 {
        padding: .5rem!important
    }

    .paddingt-xl-2,.paddingy-xl-2 {
        padding-top: .5rem!important
    }

    .paddingr-xl-2,.paddingx-xl-2 {
        padding-right: .5rem!important
    }

    .paddingb-xl-2,.paddingy-xl-2 {
        padding-bottom: .5rem!important
    }

    .paddingl-xl-2,.paddingx-xl-2 {
        padding-left: .5rem!important
    }

    .padding-xl-3 {
        padding: 1rem!important
    }

    .paddingt-xl-3,.paddingy-xl-3 {
        padding-top: 1rem!important
    }

    .paddingr-xl-3,.paddingx-xl-3 {
        padding-right: 1rem!important
    }

    .paddingb-xl-3,.paddingy-xl-3 {
        padding-bottom: 1rem!important
    }

    .paddingl-xl-3,.paddingx-xl-3 {
        padding-left: 1rem!important
    }

    .padding-xl-4 {
        padding: 1.5rem!important
    }

    .paddingt-xl-4,.paddingy-xl-4 {
        padding-top: 1.5rem!important
    }

    .paddingr-xl-4,.paddingx-xl-4 {
        padding-right: 1.5rem!important
    }

    .paddingb-xl-4,.paddingy-xl-4 {
        padding-bottom: 1.5rem!important
    }

    .paddingl-xl-4,.paddingx-xl-4 {
        padding-left: 1.5rem!important
    }

    .padding-xl-5 {
        padding: 3rem!important
    }

    .paddingt-xl-5,.paddingy-xl-5 {
        padding-top: 3rem!important
    }

    .paddingr-xl-5,.paddingx-xl-5 {
        padding-right: 3rem!important
    }

    .paddingb-xl-5,.paddingy-xl-5 {
        padding-bottom: 3rem!important
    }

    .paddingl-xl-5,.paddingx-xl-5 {
        padding-left: 3rem!important
    }

    .margin-xl-n1 {
        margin: -.25rem!important
    }

    .margin-t-xl-n1,.margin-y-xl-n1 {
        margin-top: -.25rem!important
    }

    .margin-r-xl-n1,.margin-x-xl-n1 {
        margin-right: -.25rem!important
    }

    .margin-b-xl-n1,.margin-y-xl-n1 {
        margin-bottom: -.25rem!important
    }

    .margin-l-xl-n1,.margin-x-xl-n1 {
        margin-left: -.25rem!important
    }

    .margin-xl-n2 {
        margin: -.5rem!important
    }

    .margin-t-xl-n2,.margin-y-xl-n2 {
        margin-top: -.5rem!important
    }

    .margin-r-xl-n2,.margin-x-xl-n2 {
        margin-right: -.5rem!important
    }

    .margin-b-xl-n2,.margin-y-xl-n2 {
        margin-bottom: -.5rem!important
    }

    .margin-l-xl-n2,.margin-x-xl-n2 {
        margin-left: -.5rem!important
    }

    .margin-xl-n3 {
        margin: -1rem!important
    }

    .margin-t-xl-n3,.margin-y-xl-n3 {
        margin-top: -1rem!important
    }

    .margin-r-xl-n3,.margin-x-xl-n3 {
        margin-right: -1rem!important
    }

    .margin-b-xl-n3,.margin-y-xl-n3 {
        margin-bottom: -1rem!important
    }

    .margin-l-xl-n3,.margin-x-xl-n3 {
        margin-left: -1rem!important
    }

    .margin-xl-n4 {
        margin: -1.5rem!important
    }

    .margin-t-xl-n4,.margin-y-xl-n4 {
        margin-top: -1.5rem!important
    }

    .margin-r-xl-n4,.margin-x-xl-n4 {
        margin-right: -1.5rem!important
    }

    .margin-b-xl-n4,.margin-y-xl-n4 {
        margin-bottom: -1.5rem!important
    }

    .margin-l-xl-n4,.margin-x-xl-n4 {
        margin-left: -1.5rem!important
    }

    .margin-xl-n5 {
        margin: -3rem!important
    }

    .margin-t-xl-n5,.margin-y-xl-n5 {
        margin-top: -3rem!important
    }

    .margin-r-xl-n5,.margin-x-xl-n5 {
        margin-right: -3rem!important
    }

    .margin-b-xl-n5,.margin-y-xl-n5 {
        margin-bottom: -3rem!important
    }

    .margin-l-xl-n5,.margin-x-xl-n5 {
        margin-left: -3rem!important
    }

    .margin-xl-auto {
        margin: auto!important
    }

    .margin-t-xl-auto,.margin-y-xl-auto {
        margin-top: auto!important
    }

    .margin-r-xl-auto,.margin-x-xl-auto {
        margin-right: auto!important
    }

    .margin-b-xl-auto,.margin-y-xl-auto {
        margin-bottom: auto!important
    }

    .margin-l-xl-auto,.margin-x-xl-auto {
        margin-left: auto!important
    }
}
