/* Start:/bitrix/templates/karkas/assets/css/fancybox.css?164673865815512*/

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

.carousel *,
.carousel *:before,
.carousel *:after {
    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(0.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.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-prev,
.carousel__button.is-next {
    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, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: transparent;
    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 *::before,
.fancybox__container *::after {
    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, 0.94))
}

@media all and (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, 0.92))
}

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

.fancybox__carousel.has-dots {
    margin-bottom: calc(0.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 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::before,
.fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto
}

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

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    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 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 all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }
}

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

@media all and (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 all and (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 {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

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

.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,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
    animation: .15s ease backwards fancybox-fadeIn
}

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

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

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

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

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

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

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

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

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

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0
    }
    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(0.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 rgba(255, 255, 255, .1)
}

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

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .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-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,
.fancybox__carousel .fancybox__slide.has-html5video .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-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .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: 0px 3px;
    opacity: var(--fancybox-opacity, 1)
}

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

.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-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.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: center center;
    background-color: rgba(255, 255, 255, .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(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
    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, 0.4))
}

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

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

.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, 0.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) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none
}

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

.fancybox__button--slideshow g:nth-child(2) {
    display: none
}

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

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


/* End */


/* Start:/bitrix/templates/karkas/components/bitrix/catalog.section.list/top_menu/style.min.css?1646738658971*/

.catalog-sections-list-menu-items {
    display: block;
    padding: 0;
    margin: 0;
    background-color: #fff
}

.catalog-sections-list-menu-item {
    display: block;
    padding: 0 0 0 17px;
    margin: 0
}

.catalog-sections-list-menu-item-link {
    padding: 0 17px 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 55px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.06);
    vertical-align: middle;
    text-decoration: none !important
}

.catalog-sections-list-menu-item-text {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #121212;
    padding: 17px 0
}

.catalog-sections-list-menu-item-text i {
    font-style: normal;
    opacity: .6
}

.catalog-sections-list-menu-item:active,
.catalog-sections-list-menu-item:hover,
.catalog-sections-list-menu-item.selected .catalog-sections-list-menu-item-text {
    opacity: 1
}

.catalog-sections-list-menu-item-angle {
    display: block;
    transform: rotate(-45deg);
    border-bottom: 1px solid;
    border-right: 1px solid;
    color: #121212;
    opacity: .6;
    width: 7px;
    height: 7px
}


/* End */


/* Start:/bitrix/templates/karkas/assets/css/bootstrap.min.css?1646738658163873*/

@charset "UTF-8";

/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff
}

*,
::after,
::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
     :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
    .h1,
    h1 {
        font-size: 2.5rem
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
    .h2,
    h2 {
        font-size: 2rem
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
    .h3,
    h3 {
        font-size: 1.75rem
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
    .h4,
    h4 {
        font-size: 1.5rem
    }
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[data-bs-original-title],
abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

.small,
small {
    font-size: .875em
}

.mark,
mark {
    padding: .2em;
    background-color: #fcf8e3
}

sub,
sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: .875em;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit
}

@media (min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::-webkit-file-upload-button {
    font: inherit
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none!important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-1 {
        font-size: 5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-2 {
        font-size: 4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-3 {
        font-size: 4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-4 {
        font-size: 3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-5 {
        font-size: 3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-6 {
        font-size: 2.5rem
    }
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote>:last-child {
    margin-bottom: 0
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d
}

.blockquote-footer::before {
    content: "— "
}

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

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: .875em;
    color: #6c757d
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }
    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-sm-0 {
        margin-left: 0
    }
    .offset-sm-1 {
        margin-left: 8.33333333%
    }
    .offset-sm-2 {
        margin-left: 16.66666667%
    }
    .offset-sm-3 {
        margin-left: 25%
    }
    .offset-sm-4 {
        margin-left: 33.33333333%
    }
    .offset-sm-5 {
        margin-left: 41.66666667%
    }
    .offset-sm-6 {
        margin-left: 50%
    }
    .offset-sm-7 {
        margin-left: 58.33333333%
    }
    .offset-sm-8 {
        margin-left: 66.66666667%
    }
    .offset-sm-9 {
        margin-left: 75%
    }
    .offset-sm-10 {
        margin-left: 83.33333333%
    }
    .offset-sm-11 {
        margin-left: 91.66666667%
    }
    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }
    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }
    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }
    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }
    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }
    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }
    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }
    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }
    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }
    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }
    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }
    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }
    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-md-0 {
        margin-left: 0
    }
    .offset-md-1 {
        margin-left: 8.33333333%
    }
    .offset-md-2 {
        margin-left: 16.66666667%
    }
    .offset-md-3 {
        margin-left: 25%
    }
    .offset-md-4 {
        margin-left: 33.33333333%
    }
    .offset-md-5 {
        margin-left: 41.66666667%
    }
    .offset-md-6 {
        margin-left: 50%
    }
    .offset-md-7 {
        margin-left: 58.33333333%
    }
    .offset-md-8 {
        margin-left: 66.66666667%
    }
    .offset-md-9 {
        margin-left: 75%
    }
    .offset-md-10 {
        margin-left: 83.33333333%
    }
    .offset-md-11 {
        margin-left: 91.66666667%
    }
    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }
    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }
    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }
    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }
    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }
    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }
    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }
    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }
    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }
    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }
    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }
    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }
    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-lg-0 {
        margin-left: 0
    }
    .offset-lg-1 {
        margin-left: 8.33333333%
    }
    .offset-lg-2 {
        margin-left: 16.66666667%
    }
    .offset-lg-3 {
        margin-left: 25%
    }
    .offset-lg-4 {
        margin-left: 33.33333333%
    }
    .offset-lg-5 {
        margin-left: 41.66666667%
    }
    .offset-lg-6 {
        margin-left: 50%
    }
    .offset-lg-7 {
        margin-left: 58.33333333%
    }
    .offset-lg-8 {
        margin-left: 66.66666667%
    }
    .offset-lg-9 {
        margin-left: 75%
    }
    .offset-lg-10 {
        margin-left: 83.33333333%
    }
    .offset-lg-11 {
        margin-left: 91.66666667%
    }
    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0
    }
    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0
    }
    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }
    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }
    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }
    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }
    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem
    }
    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }
    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }
    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }
    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }
    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }
    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-xl-0 {
        margin-left: 0
    }
    .offset-xl-1 {
        margin-left: 8.33333333%
    }
    .offset-xl-2 {
        margin-left: 16.66666667%
    }
    .offset-xl-3 {
        margin-left: 25%
    }
    .offset-xl-4 {
        margin-left: 33.33333333%
    }
    .offset-xl-5 {
        margin-left: 41.66666667%
    }
    .offset-xl-6 {
        margin-left: 50%
    }
    .offset-xl-7 {
        margin-left: 58.33333333%
    }
    .offset-xl-8 {
        margin-left: 66.66666667%
    }
    .offset-xl-9 {
        margin-left: 75%
    }
    .offset-xl-10 {
        margin-left: 83.33333333%
    }
    .offset-xl-11 {
        margin-left: 91.66666667%
    }
    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0
    }
    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0
    }
    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }
    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }
    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }
    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }
    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem
    }
    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }
    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }
    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }
    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }
    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1400px) {
    .col-xxl {
        flex: 1 0 0%
    }
    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }
    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }
    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }
    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }
    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }
    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }
    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }
    .offset-xxl-0 {
        margin-left: 0
    }
    .offset-xxl-1 {
        margin-left: 8.33333333%
    }
    .offset-xxl-2 {
        margin-left: 16.66666667%
    }
    .offset-xxl-3 {
        margin-left: 25%
    }
    .offset-xxl-4 {
        margin-left: 33.33333333%
    }
    .offset-xxl-5 {
        margin-left: 41.66666667%
    }
    .offset-xxl-6 {
        margin-left: 50%
    }
    .offset-xxl-7 {
        margin-left: 58.33333333%
    }
    .offset-xxl-8 {
        margin-left: 66.66666667%
    }
    .offset-xxl-9 {
        margin-left: 75%
    }
    .offset-xxl-10 {
        margin-left: 83.33333333%
    }
    .offset-xxl-11 {
        margin-left: 91.66666667%
    }
    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0
    }
    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0
    }
    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }
    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }
    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }
    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }
    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }
    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }
    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }
    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }
    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }
    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table>:not(:first-child) {
    border-top: 2px solid currentColor
}

.caption-top {
    caption-side: top
}

.table-sm>:not(caption)>*>* {
    padding: .25rem .25rem
}

.table-bordered>:not(caption)>* {
    border-width: 1px 0
}

.table-bordered>:not(caption)>*>* {
    border-width: 0 1px
}

.table-borderless>:not(caption)>*>* {
    border-bottom-width: 0
}

.table-borderless>:not(:first-child) {
    border-top-width: 0
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover>tbody>tr:hover>* {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bacbe6
}

.table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #badce3
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e6dbb9
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfc2c4
}

.table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfe0e1
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-width:575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control::file-selector-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.form-control-sm::-webkit-file-upload-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end: .5rem
}

.form-control-sm::file-selector-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end: .5rem
}

.form-control-sm::-webkit-file-upload-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end: .5rem
}

.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.form-control-lg::-webkit-file-upload-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem
}

.form-control-lg::file-selector-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem
}

.form-control-lg::-webkit-file-upload-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px)
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px)
}

.form-control-color {
    width: 3rem;
    height: auto;
    padding: .375rem
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: .25rem
}

.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: .25rem
}

.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-select {
        transition: none
    }
}

.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: .75rem;
    background-image: none
}

.form-select:disabled {
    background-color: #e9ecef
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529
}

.form-select-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.form-select-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    opacity: .5
}

.form-switch {
    padding-left: 2.5em
}

.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-switch .form-check-input {
        transition: none
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.btn-check:disabled+.btn,
.btn-check[disabled]+.btn {
    pointer-events: none;
    filter: none;
    opacity: .65
}

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.form-range:focus {
    outline: 0
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-range::-moz-focus-outer {
    border: 0
}

.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe
}

.form-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range:disabled {
    pointer-events: none
}

.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.form-floating {
    position: relative
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25
}

.form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem .75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-floating>label {
        transition: none
    }
}

.form-floating>.form-control {
    padding: 1rem .75rem
}

.form-floating>.form-control::-moz-placeholder {
    color: transparent
}

.form-floating>.form-control::placeholder {
    color: transparent
}

.form-floating>.form-control:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0
}

.input-group>.form-control:focus,
.input-group>.form-select:focus {
    z-index: 3
}

.input-group .btn {
    position: relative;
    z-index: 2
}

.input-group .btn:focus {
    z-index: 3
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-lg>.btn,
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.input-group-sm>.btn,
.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
    padding-right: 3rem
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #198754
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(25, 135, 84, .9);
    border-radius: .25rem
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #198754;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.form-select.is-valid,
.was-validated .form-select:valid {
    border-color: #198754
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right .75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border-color: #198754
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
    background-color: #198754
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #198754
}

.form-check-inline .form-check-input~.valid-feedback {
    margin-left: .5em
}

.input-group .form-control.is-valid,
.input-group .form-select.is-valid,
.was-validated .input-group .form-control:valid,
.was-validated .input-group .form-select:valid {
    z-index: 1
}

.input-group .form-control.is-valid:focus,
.input-group .form-select.is-valid:focus,
.was-validated .input-group .form-control:valid:focus,
.was-validated .input-group .form-select:valid:focus {
    z-index: 3
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(220, 53, 69, .9);
    border-radius: .25rem
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.form-select.is-invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-position: right .75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
    border-color: #dc3545
}

.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
    background-color: #dc3545
}

.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-inline .form-check-input~.invalid-feedback {
    margin-left: .5em
}

.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
    z-index: 2
}

.input-group .form-control.is-invalid:focus,
.input-group .form-select.is-invalid:focus,
.was-validated .input-group .form-control:invalid:focus,
.was-validated .input-group .form-select:invalid:focus {
    z-index: 3
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
    box-shadow: 0 0 0 .25rem rgba(130, 138, 145, .5)
}

.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #565e64;
    border-color: #51585e
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(130, 138, 145, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43
}

.btn-check:focus+.btn-success,
.btn-success:focus {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
    box-shadow: 0 0 0 .25rem rgba(60, 153, 110, .5)
}

.btn-check:active+.btn-success,
.btn-check:checked+.btn-success,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #146c43;
    border-color: #13653f
}

.btn-check:active+.btn-success:focus,
.btn-check:checked+.btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(60, 153, 110, .5)
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-info:hover {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2
}

.btn-check:focus+.btn-info,
.btn-info:focus {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2;
    box-shadow: 0 0 0 .25rem rgba(11, 172, 204, .5)
}

.btn-check:active+.btn-info,
.btn-check:checked+.btn-info,
.btn-info.active,
.btn-info:active,
.show>.btn-info.dropdown-toggle {
    color: #000;
    background-color: #3dd5f3;
    border-color: #25cff2
}

.btn-check:active+.btn-info:focus,
.btn-check:checked+.btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(11, 172, 204, .5)
}

.btn-info.disabled,
.btn-info:disabled {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:hover {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
    box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .5)
}

.btn-check:active+.btn-warning,
.btn-check:checked+.btn-warning,
.btn-warning.active,
.btn-warning:active,
.show>.btn-warning.dropdown-toggle {
    color: #000;
    background-color: #ffcd39;
    border-color: #ffc720
}

.btn-check:active+.btn-warning:focus,
.btn-check:checked+.btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .5)
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-check:active+.btn-danger,
.btn-check:checked+.btn-danger,
.btn-danger.active,
.btn-danger:active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b02a37;
    border-color: #a52834
}

.btn-check:active+.btn-danger:focus,
.btn-check:checked+.btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:hover {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb
}

.btn-check:focus+.btn-light,
.btn-light:focus {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb;
    box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.btn-check:active+.btn-light,
.btn-check:checked+.btn-light,
.btn-light.active,
.btn-light:active,
.show>.btn-light.dropdown-toggle {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb
}

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.btn-light.disabled,
.btn-light:disabled {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-dark:hover {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21;
    box-shadow: 0 0 0 .25rem rgba(66, 70, 73, .5)
}

.btn-check:active+.btn-dark,
.btn-check:checked+.btn-dark,
.btn-dark.active,
.btn-dark:active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1a1e21;
    border-color: #191c1f
}

.btn-check:active+.btn-dark:focus,
.btn-check:checked+.btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(66, 70, 73, .5)
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5)
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #0d6efd;
    background-color: transparent
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .25rem rgba(108, 117, 125, .5)
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
    box-shadow: 0 0 0 .25rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-success {
    color: #198754;
    border-color: #198754
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .5)
}

.btn-check:active+.btn-outline-success,
.btn-check:checked+.btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:active+.btn-outline-success:focus,
.btn-check:checked+.btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #198754;
    background-color: transparent
}

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-outline-info:hover {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 202, 240, .5)
}

.btn-check:active+.btn-outline-info,
.btn-check:checked+.btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:active+.btn-outline-info:focus,
.btn-check:checked+.btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 202, 240, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #0dcaf0;
    background-color: transparent
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:hover {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-check:focus+.btn-outline-warning,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .5)
}

.btn-check:active+.btn-outline-warning,
.btn-check:checked+.btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-check:active+.btn-outline-warning:focus,
.btn-check:checked+.btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .5)
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:focus+.btn-outline-danger,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .5)
}

.btn-check:active+.btn-outline-danger,
.btn-check:checked+.btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:active+.btn-outline-danger:focus,
.btn-check:checked+.btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-check:focus+.btn-outline-light,
.btn-outline-light:focus {
    box-shadow: 0 0 0 .25rem rgba(248, 249, 250, .5)
}

.btn-check:active+.btn-outline-light,
.btn-check:checked+.btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-check:active+.btn-outline-light:focus,
.btn-check:checked+.btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
    box-shadow: 0 0 0 .25rem rgba(248, 249, 250, .5)
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 .25rem rgba(33, 37, 41, .5)
}

.btn-check:active+.btn-outline-dark,
.btn-check:checked+.btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:active+.btn-outline-dark:focus,
.btn-check:checked+.btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
    box-shadow: 0 0 0 .25rem rgba(33, 37, 41, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #212529;
    background-color: transparent
}

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline
}

.btn-link:hover {
    color: #0a58ca
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d
}

.btn-group-lg>.btn,
.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.btn-group-sm>.btn,
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing.collapse-horizontal {
        transition: none
    }
}

.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: .125rem
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto
}

@media (min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }
    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0
    }
    .dropdown-menu-sm-end {
        --bs-position: end
    }
    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }
    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0
    }
    .dropdown-menu-md-end {
        --bs-position: end
    }
    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }
    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0
    }
    .dropdown-menu-lg-end {
        --bs-position: end
    }
    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }
    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0
    }
    .dropdown-menu-xl-end {
        --bs-position: end
    }
    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width:1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }
    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0
    }
    .dropdown-menu-xxl-end {
        --bs-position: end
    }
    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropend .dropdown-toggle::after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropstart .dropdown-toggle::after {
    display: none
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .15)
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1rem;
    color: #212529
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(0, 0, 0, .15)
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, .15)
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    color: #fff;
    background-color: #0d6efd
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(0, 0, 0, .15)
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    flex: 1 1 auto
}

.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:nth-child(n+3),
.btn-group>:not(.btn-check)+.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

.dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
    margin-left: 0
}

.dropstart .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn~.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus,
.nav-link:hover {
    color: #0a58ca
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #0d6efd
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static
}

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto
}

@media (min-width:576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }
    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }
    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }
    .navbar-expand-sm .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }
    .navbar-expand-sm .navbar-toggler {
        display: none
    }
    .navbar-expand-sm .offcanvas-header {
        display: none
    }
    .navbar-expand-sm .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible!important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }
    .navbar-expand-sm .offcanvas-bottom,
    .navbar-expand-sm .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }
    .navbar-expand-sm .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }
    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }
    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }
    .navbar-expand-md .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }
    .navbar-expand-md .navbar-toggler {
        display: none
    }
    .navbar-expand-md .offcanvas-header {
        display: none
    }
    .navbar-expand-md .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible!important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }
    .navbar-expand-md .offcanvas-bottom,
    .navbar-expand-md .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }
    .navbar-expand-md .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }
    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }
    .navbar-expand-lg .navbar-toggler {
        display: none
    }
    .navbar-expand-lg .offcanvas-header {
        display: none
    }
    .navbar-expand-lg .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible!important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }
    .navbar-expand-lg .offcanvas-bottom,
    .navbar-expand-lg .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }
    .navbar-expand-lg .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }
    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }
    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }
    .navbar-expand-xl .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }
    .navbar-expand-xl .navbar-toggler {
        display: none
    }
    .navbar-expand-xl .offcanvas-header {
        display: none
    }
    .navbar-expand-xl .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible!important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }
    .navbar-expand-xl .offcanvas-bottom,
    .navbar-expand-xl .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }
    .navbar-expand-xl .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }
    .navbar-expand-xxl .navbar-nav {
        flex-direction: row
    }
    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute
    }
    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }
    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible
    }
    .navbar-expand-xxl .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }
    .navbar-expand-xxl .navbar-toggler {
        display: none
    }
    .navbar-expand-xxl .offcanvas-header {
        display: none
    }
    .navbar-expand-xxl .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible!important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none
    }
    .navbar-expand-xxl .offcanvas-bottom,
    .navbar-expand-xxl .offcanvas-top {
        height: auto;
        border-top: 0;
        border-bottom: 0
    }
    .navbar-expand-xxl .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: flex!important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-expand .offcanvas-header {
    display: none
}

.navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible!important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none
}

.navbar-expand .offcanvas-bottom,
.navbar-expand .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0
}

.navbar-expand .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .55)
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, .3)
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, .55)
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .55)
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, .25)
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .55);
    border-color: rgba(255, 255, 255, .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, .55)
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem
}

.card>hr {
    margin-right: 0;
    margin-left: 0
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link+.card-link {
    margin-left: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .5rem 1rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    margin-right: -.5rem;
    margin-bottom: -.5rem;
    margin-left: -.5rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.5rem;
    margin-left: -.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-group>.card {
    margin-bottom: .75rem
}

@media (min-width:576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap
    }
    .card-group>.card {
        flex: 1 0 0%;
        margin-bottom: 0
    }
    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0
    }
    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
    .card-group>.card:not(:last-child) .card-header,
    .card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }
    .card-group>.card:not(:last-child) .card-footer,
    .card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }
    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }
    .card-group>.card:not(:first-child) .card-header,
    .card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }
    .card-group>.card:not(:first-child) .card-footer,
    .card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125)
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg)
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125)
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.accordion-item:not(:first-of-type) {
    border-top: 0
}

.accordion-item:last-of-type {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

.accordion-flush .accordion-item:first-child {
    border-top: 0
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/")
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .page-link {
        transition: none
    }
}

.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 3rem
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe
}

.alert-primary .alert-link {
    color: #06357a
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8
}

.alert-secondary .alert-link {
    color: #34383c
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc
}

.alert-success .alert-link {
    color: #0c4128
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb
}

.alert-info .alert-link {
    color: #04414d
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5
}

.alert-warning .alert-link {
    color: #523e02
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

.alert-danger .alert-link {
    color: #6a1a21
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe
}

.alert-light .alert-link {
    color: #4f5050
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf
}

.alert-dark .alert-link {
    color: #101214
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none
    }
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section
}

.list-group-numbered>li::before {
    content: counters(section, ".") ". ";
    counter-increment: section
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px
}

.list-group-horizontal {
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px
}

@media (min-width:576px) {
    .list-group-horizontal-sm {
        flex-direction: row
    }
    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }
    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }
    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }
    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }
    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width:768px) {
    .list-group-horizontal-md {
        flex-direction: row
    }
    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }
    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }
    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }
    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }
    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width:992px) {
    .list-group-horizontal-lg {
        flex-direction: row
    }
    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }
    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }
    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }
    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }
    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width:1200px) {
    .list-group-horizontal-xl {
        flex-direction: row
    }
    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }
    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }
    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }
    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }
    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width:1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row
    }
    .list-group-horizontal-xxl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }
    .list-group-horizontal-xxl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }
    .list-group-horizontal-xxl>.list-group-item.active {
        margin-top: 0
    }
    .list-group-horizontal-xxl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }
    .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    color: #084298;
    background-color: #cfe2ff
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #084298;
    background-color: #bacbe6
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #084298;
    border-color: #084298
}

.list-group-item-secondary {
    color: #41464b;
    background-color: #e2e3e5
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #41464b;
    background-color: #cbccce
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #41464b;
    border-color: #41464b
}

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #0f5132;
    background-color: #bcd0c7
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #0f5132;
    border-color: #0f5132
}

.list-group-item-info {
    color: #055160;
    background-color: #cff4fc
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #055160;
    background-color: #badce3
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #055160;
    border-color: #055160
}

.list-group-item-warning {
    color: #664d03;
    background-color: #fff3cd
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #664d03;
    background-color: #e6dbb9
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #664d03;
    border-color: #664d03
}

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #842029;
    background-color: #dfc2c4
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #842029;
    border-color: #842029
}

.list-group-item-light {
    color: #636464;
    background-color: #fefefe
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #636464;
    background-color: #e5e5e5
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #636464;
    border-color: #636464
}

.list-group-item-dark {
    color: #141619;
    background-color: #d3d3d4
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #141619;
    background-color: #bebebf
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #141619;
    border-color: #141619
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    opacity: 1
}

.btn-close.disabled,
.btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: .25
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, .85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    border-radius: .25rem
}

.toast.showing {
    opacity: 0
}

.toast:not(.show) {
    display: none
}

.toast-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none
}

.toast-container>:not(:last-child) {
    margin-bottom: .75rem
}

.toast-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, .85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.toast-header .btn-close {
    margin-right: -.375rem;
    margin-left: .75rem
}

.toast-body {
    padding: .75rem;
    word-wrap: break-word
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }
    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }
    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

.modal-fullscreen .modal-footer {
    border-radius: 0
}

@media (max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }
    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }
    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0
    }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-tooltip-auto[data-popper-placement^=top],
.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow {
    bottom: 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    top: -1px;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-auto[data-popper-placement^=right],
.bs-tooltip-end {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    right: -1px;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000
}

.bs-tooltip-auto[data-popper-placement^=bottom],
.bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow {
    top: 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-auto[data-popper-placement^=left],
.bs-tooltip-start {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
    left: -1px;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem
}

.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem
}

.popover .popover-arrow::after,
.popover .popover-arrow::before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,
.bs-popover-top>.popover-arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
.bs-popover-top>.popover-arrow::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,
.bs-popover-end>.popover-arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
.bs-popover-end>.popover-arrow::before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,
.bs-popover-end>.popover-arrow::after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #fff
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,
.bs-popover-bottom>.popover-arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
.bs-popover-bottom>.popover-arrow::before {
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #fff
}

.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,
.bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,
.bs-popover-start>.popover-arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
.bs-popover-start>.popover-arrow::before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,
.bs-popover-start>.popover-arrow::after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: 1rem 1rem;
    color: #212529
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-end,
    .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next,
    .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@-webkit-keyframes spinner-grow {
    0% {
        transform: scale(0)
    }
    50% {
        opacity: 1;
        transform: none
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }
    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: .75s linear infinite spinner-grow;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .spinner-border,
    .spinner-grow {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .offcanvas {
        transition: none
    }
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.offcanvas-backdrop.fade {
    opacity: 0
}

.offcanvas-backdrop.show {
    opacity: .5
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem
}

.offcanvas-header .btn-close {
    padding: .5rem .5rem;
    margin-top: -.5rem;
    margin-right: -.5rem;
    margin-bottom: -.5rem
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(-100%)
}

.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(100%)
}

.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    transform: translateY(-100%)
}

.offcanvas-bottom {
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgba(0, 0, 0, .2);
    transform: translateY(100%)
}

.offcanvas.show {
    transform: none
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentColor;
    opacity: .5
}

.placeholder.btn::before {
    display: inline-block;
    content: ""
}

.placeholder-xs {
    min-height: .6em
}

.placeholder-sm {
    min-height: .8em
}

.placeholder-lg {
    min-height: 1.2em
}

.placeholder-glow .placeholder {
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite
}

@-webkit-keyframes placeholder-glow {
    50% {
        opacity: .2
    }
}

@keyframes placeholder-glow {
    50% {
        opacity: .2
    }
}

.placeholder-wave {
    -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-animation: placeholder-wave 2s linear infinite;
    animation: placeholder-wave 2s linear infinite
}

@-webkit-keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0%;
        mask-position: -200% 0%
    }
}

@keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0%;
        mask-position: -200% 0%
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.link-primary {
    color: #0d6efd
}

.link-primary:focus,
.link-primary:hover {
    color: #0a58ca
}

.link-secondary {
    color: #6c757d
}

.link-secondary:focus,
.link-secondary:hover {
    color: #565e64
}

.link-success {
    color: #198754
}

.link-success:focus,
.link-success:hover {
    color: #146c43
}

.link-info {
    color: #0dcaf0
}

.link-info:focus,
.link-info:hover {
    color: #3dd5f3
}

.link-warning {
    color: #ffc107
}

.link-warning:focus,
.link-warning:hover {
    color: #ffcd39
}

.link-danger {
    color: #dc3545
}

.link-danger:focus,
.link-danger:hover {
    color: #b02a37
}

.link-light {
    color: #f8f9fa
}

.link-light:focus,
.link-light:hover {
    color: #f9fafb
}

.link-dark {
    color: #212529
}

.link-dark:focus,
.link-dark:hover {
    color: #1a1e21
}

.ratio {
    position: relative;
    width: 100%
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020
}

@media (min-width:576px) {
    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:768px) {
    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:992px) {
    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1200px) {
    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1400px) {
    .sticky-xxl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0, 0, 0, 0)!important;
    white-space: nowrap!important;
    border: 0!important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: ""
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentColor;
    opacity: .25
}

.align-baseline {
    vertical-align: baseline!important
}

.align-top {
    vertical-align: top!important
}

.align-middle {
    vertical-align: middle!important
}

.align-bottom {
    vertical-align: bottom!important
}

.align-text-bottom {
    vertical-align: text-bottom!important
}

.align-text-top {
    vertical-align: text-top!important
}

.float-start {
    float: left!important
}

.float-end {
    float: right!important
}

.float-none {
    float: none!important
}

.opacity-0 {
    opacity: 0!important
}

.opacity-25 {
    opacity: .25!important
}

.opacity-50 {
    opacity: .5!important
}

.opacity-75 {
    opacity: .75!important
}

.opacity-100 {
    opacity: 1!important
}

.overflow-auto {
    overflow: auto!important
}

.overflow-hidden {
    overflow: hidden!important
}

.overflow-visible {
    overflow: visible!important
}

.overflow-scroll {
    overflow: scroll!important
}

.d-inline {
    display: inline!important
}

.d-inline-block {
    display: inline-block!important
}

.d-block {
    display: block!important
}

.d-grid {
    display: grid!important
}

.d-table {
    display: table!important
}

.d-table-row {
    display: table-row!important
}

.d-table-cell {
    display: table-cell!important
}

.d-flex {
    display: flex!important
}

.d-inline-flex {
    display: inline-flex!important
}

.d-none {
    display: none!important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)!important
}

.shadow-none {
    box-shadow: none!important
}

.position-static {
    position: static!important
}

.position-relative {
    position: relative!important
}

.position-absolute {
    position: absolute!important
}

.position-fixed {
    position: fixed!important
}

.position-sticky {
    position: -webkit-sticky!important;
    position: sticky!important
}

.top-0 {
    top: 0!important
}

.top-50 {
    top: 50%!important
}

.top-100 {
    top: 100%!important
}

.bottom-0 {
    bottom: 0!important
}

.bottom-50 {
    bottom: 50%!important
}

.bottom-100 {
    bottom: 100%!important
}

.start-0 {
    left: 0!important
}

.start-50 {
    left: 50%!important
}

.start-100 {
    left: 100%!important
}

.end-0 {
    right: 0!important
}

.end-50 {
    right: 50%!important
}

.end-100 {
    right: 100%!important
}

.translate-middle {
    transform: translate(-50%, -50%)!important
}

.translate-middle-x {
    transform: translateX(-50%)!important
}

.translate-middle-y {
    transform: translateY(-50%)!important
}

.border {
    border: 1px solid #dee2e6!important
}

.border-0 {
    border: 0!important
}

.border-top {
    border-top: 1px solid #dee2e6!important
}

.border-top-0 {
    border-top: 0!important
}

.border-end {
    border-right: 1px solid #dee2e6!important
}

.border-end-0 {
    border-right: 0!important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6!important
}

.border-bottom-0 {
    border-bottom: 0!important
}

.border-start {
    border-left: 1px solid #dee2e6!important
}

.border-start-0 {
    border-left: 0!important
}

.border-primary {
    border-color: #0d6efd!important
}

.border-secondary {
    border-color: #6c757d!important
}

.border-success {
    border-color: #198754!important
}

.border-info {
    border-color: #0dcaf0!important
}

.border-warning {
    border-color: #ffc107!important
}

.border-danger {
    border-color: #dc3545!important
}

.border-light {
    border-color: #f8f9fa!important
}

.border-dark {
    border-color: #212529!important
}

.border-white {
    border-color: #fff!important
}

.border-1 {
    border-width: 1px!important
}

.border-2 {
    border-width: 2px!important
}

.border-3 {
    border-width: 3px!important
}

.border-4 {
    border-width: 4px!important
}

.border-5 {
    border-width: 5px!important
}

.w-25 {
    width: 25%!important
}

.w-50 {
    width: 50%!important
}

.w-75 {
    width: 75%!important
}

.w-100 {
    width: 100%!important
}

.w-auto {
    width: auto!important
}

.mw-100 {
    max-width: 100%!important
}

.vw-100 {
    width: 100vw!important
}

.min-vw-100 {
    min-width: 100vw!important
}

.h-25 {
    height: 25%!important
}

.h-50 {
    height: 50%!important
}

.h-75 {
    height: 75%!important
}

.h-100 {
    height: 100%!important
}

.h-auto {
    height: auto!important
}

.mh-100 {
    max-height: 100%!important
}

.vh-100 {
    height: 100vh!important
}

.min-vh-100 {
    min-height: 100vh!important
}

.flex-fill {
    flex: 1 1 auto!important
}

.flex-row {
    flex-direction: row!important
}

.flex-column {
    flex-direction: column!important
}

.flex-row-reverse {
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    flex-direction: column-reverse!important
}

.flex-grow-0 {
    flex-grow: 0!important
}

.flex-grow-1 {
    flex-grow: 1!important
}

.flex-shrink-0 {
    flex-shrink: 0!important
}

.flex-shrink-1 {
    flex-shrink: 1!important
}

.flex-wrap {
    flex-wrap: wrap!important
}

.flex-nowrap {
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.gap-0 {
    gap: 0!important
}

.gap-1 {
    gap: .25rem!important
}

.gap-2 {
    gap: .5rem!important
}

.gap-3 {
    gap: 1rem!important
}

.gap-4 {
    gap: 1.5rem!important
}

.gap-5 {
    gap: 3rem!important
}

.justify-content-start {
    justify-content: flex-start!important
}

.justify-content-end {
    justify-content: flex-end!important
}

.justify-content-center {
    justify-content: center!important
}

.justify-content-between {
    justify-content: space-between!important
}

.justify-content-around {
    justify-content: space-around!important
}

.justify-content-evenly {
    justify-content: space-evenly!important
}

.align-items-start {
    align-items: flex-start!important
}

.align-items-end {
    align-items: flex-end!important
}

.align-items-center {
    align-items: center!important
}

.align-items-baseline {
    align-items: baseline!important
}

.align-items-stretch {
    align-items: stretch!important
}

.align-content-start {
    align-content: flex-start!important
}

.align-content-end {
    align-content: flex-end!important
}

.align-content-center {
    align-content: center!important
}

.align-content-between {
    align-content: space-between!important
}

.align-content-around {
    align-content: space-around!important
}

.align-content-stretch {
    align-content: stretch!important
}

.align-self-auto {
    align-self: auto!important
}

.align-self-start {
    align-self: flex-start!important
}

.align-self-end {
    align-self: flex-end!important
}

.align-self-center {
    align-self: center!important
}

.align-self-baseline {
    align-self: baseline!important
}

.align-self-stretch {
    align-self: stretch!important
}

.order-first {
    order: -1!important
}

.order-0 {
    order: 0!important
}

.order-1 {
    order: 1!important
}

.order-2 {
    order: 2!important
}

.order-3 {
    order: 3!important
}

.order-4 {
    order: 4!important
}

.order-5 {
    order: 5!important
}

.order-last {
    order: 6!important
}

.m-0 {
    margin: 0!important
}

.m-1 {
    margin: .25rem!important
}

.m-2 {
    margin: .5rem!important
}

.m-3 {
    margin: 1rem!important
}

.m-4 {
    margin: 1.5rem!important
}

.m-5 {
    margin: 3rem!important
}

.m-auto {
    margin: auto!important
}

.mx-0 {
    margin-right: 0!important;
    margin-left: 0!important
}

.mx-1 {
    margin-right: .25rem!important;
    margin-left: .25rem!important
}

.mx-2 {
    margin-right: .5rem!important;
    margin-left: .5rem!important
}

.mx-3 {
    margin-right: 1rem!important;
    margin-left: 1rem!important
}

.mx-4 {
    margin-right: 1.5rem!important;
    margin-left: 1.5rem!important
}

.mx-5 {
    margin-right: 3rem!important;
    margin-left: 3rem!important
}

.mx-auto {
    margin-right: auto!important;
    margin-left: auto!important
}

.my-0 {
    margin-top: 0!important;
    margin-bottom: 0!important
}

.my-1 {
    margin-top: .25rem!important;
    margin-bottom: .25rem!important
}

.my-2 {
    margin-top: .5rem!important;
    margin-bottom: .5rem!important
}

.my-3 {
    margin-top: 1rem!important;
    margin-bottom: 1rem!important
}

.my-4 {
    margin-top: 1.5rem!important;
    margin-bottom: 1.5rem!important
}

.my-5 {
    margin-top: 3rem!important;
    margin-bottom: 3rem!important
}

.my-auto {
    margin-top: auto!important;
    margin-bottom: auto!important
}

.mt-0 {
    margin-top: 0!important
}

.mt-1 {
    margin-top: .25rem!important
}

.mt-2 {
    margin-top: .5rem!important
}

.mt-3 {
    margin-top: 1rem!important
}

.mt-4 {
    margin-top: 1.5rem!important
}

.mt-5 {
    margin-top: 3rem!important
}

.mt-auto {
    margin-top: auto!important
}

.me-0 {
    margin-right: 0!important
}

.me-1 {
    margin-right: .25rem!important
}

.me-2 {
    margin-right: .5rem!important
}

.me-3 {
    margin-right: 1rem!important
}

.me-4 {
    margin-right: 1.5rem!important
}

.me-5 {
    margin-right: 3rem!important
}

.me-auto {
    margin-right: auto!important
}

.mb-0 {
    margin-bottom: 0!important
}

.mb-1 {
    margin-bottom: .25rem!important
}

.mb-2 {
    margin-bottom: .5rem!important
}

.mb-3 {
    margin-bottom: 1rem!important
}

.mb-4 {
    margin-bottom: 1.5rem!important
}

.mb-5 {
    margin-bottom: 3rem!important
}

.mb-auto {
    margin-bottom: auto!important
}

.ms-0 {
    margin-left: 0!important
}

.ms-1 {
    margin-left: .25rem!important
}

.ms-2 {
    margin-left: .5rem!important
}

.ms-3 {
    margin-left: 1rem!important
}

.ms-4 {
    margin-left: 1.5rem!important
}

.ms-5 {
    margin-left: 3rem!important
}

.ms-auto {
    margin-left: auto!important
}

.p-0 {
    padding: 0!important
}

.p-1 {
    padding: .25rem!important
}

.p-2 {
    padding: .5rem!important
}

.p-3 {
    padding: 1rem!important
}

.p-4 {
    padding: 1.5rem!important
}

.p-5 {
    padding: 3rem!important
}

.px-0 {
    padding-right: 0!important;
    padding-left: 0!important
}

.px-1 {
    padding-right: .25rem!important;
    padding-left: .25rem!important
}

.px-2 {
    padding-right: .5rem!important;
    padding-left: .5rem!important
}

.px-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important
}

.px-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important
}

.px-5 {
    padding-right: 3rem!important;
    padding-left: 3rem!important
}

.py-0 {
    padding-top: 0!important;
    padding-bottom: 0!important
}

.py-1 {
    padding-top: .25rem!important;
    padding-bottom: .25rem!important
}

.py-2 {
    padding-top: .5rem!important;
    padding-bottom: .5rem!important
}

.py-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important
}

.py-4 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important
}

.py-5 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important
}

.pt-0 {
    padding-top: 0!important
}

.pt-1 {
    padding-top: .25rem!important
}

.pt-2 {
    padding-top: .5rem!important
}

.pt-3 {
    padding-top: 1rem!important
}

.pt-4 {
    padding-top: 1.5rem!important
}

.pt-5 {
    padding-top: 3rem!important
}

.pe-0 {
    padding-right: 0!important
}

.pe-1 {
    padding-right: .25rem!important
}

.pe-2 {
    padding-right: .5rem!important
}

.pe-3 {
    padding-right: 1rem!important
}

.pe-4 {
    padding-right: 1.5rem!important
}

.pe-5 {
    padding-right: 3rem!important
}

.pb-0 {
    padding-bottom: 0!important
}

.pb-1 {
    padding-bottom: .25rem!important
}

.pb-2 {
    padding-bottom: .5rem!important
}

.pb-3 {
    padding-bottom: 1rem!important
}

.pb-4 {
    padding-bottom: 1.5rem!important
}

.pb-5 {
    padding-bottom: 3rem!important
}

.ps-0 {
    padding-left: 0!important
}

.ps-1 {
    padding-left: .25rem!important
}

.ps-2 {
    padding-left: .5rem!important
}

.ps-3 {
    padding-left: 1rem!important
}

.ps-4 {
    padding-left: 1.5rem!important
}

.ps-5 {
    padding-left: 3rem!important
}

.font-monospace {
    font-family: var(--bs-font-monospace)!important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw)!important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw)!important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw)!important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw)!important
}

.fs-5 {
    font-size: 1.25rem!important
}

.fs-6 {
    font-size: 1rem!important
}

.fst-italic {
    font-style: italic!important
}

.fst-normal {
    font-style: normal!important
}

.fw-light {
    font-weight: 300!important
}

.fw-lighter {
    font-weight: lighter!important
}

.fw-normal {
    font-weight: 400!important
}

.fw-bold {
    font-weight: 700!important
}

.fw-bolder {
    font-weight: bolder!important
}

.lh-1 {
    line-height: 1!important
}

.lh-sm {
    line-height: 1.25!important
}

.lh-base {
    line-height: 1.5!important
}

.lh-lg {
    line-height: 2!important
}

.text-start {
    text-align: left!important
}

.text-end {
    text-align: right!important
}

.text-center {
    text-align: center!important
}

.text-decoration-none {
    text-decoration: none!important
}

.text-decoration-underline {
    text-decoration: underline!important
}

.text-decoration-line-through {
    text-decoration: line-through!important
}

.text-lowercase {
    text-transform: lowercase!important
}

.text-uppercase {
    text-transform: uppercase!important
}

.text-capitalize {
    text-transform: capitalize!important
}

.text-wrap {
    white-space: normal!important
}

.text-nowrap {
    white-space: nowrap!important
}

.text-break {
    word-wrap: break-word!important;
    word-break: break-word!important
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity))!important
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity))!important
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity))!important
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity))!important
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity))!important
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity))!important
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity))!important
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity))!important
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity))!important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity))!important
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity))!important
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d!important
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, .5)!important
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, .5)!important
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit!important
}

.text-opacity-25 {
    --bs-text-opacity: 0.25
}

.text-opacity-50 {
    --bs-text-opacity: 0.5
}

.text-opacity-75 {
    --bs-text-opacity: 0.75
}

.text-opacity-100 {
    --bs-text-opacity: 1
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity))!important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity))!important
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity))!important
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity))!important
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity))!important
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity))!important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity))!important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity))!important
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity))!important
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity))!important
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity))!important
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent!important
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75
}

.bg-opacity-100 {
    --bs-bg-opacity: 1
}

.bg-gradient {
    background-image: var(--bs-gradient)!important
}

.user-select-all {
    -webkit-user-select: all!important;
    -moz-user-select: all!important;
    user-select: all!important
}

.user-select-auto {
    -webkit-user-select: auto!important;
    -moz-user-select: auto!important;
    user-select: auto!important
}

.user-select-none {
    -webkit-user-select: none!important;
    -moz-user-select: none!important;
    user-select: none!important
}

.pe-none {
    pointer-events: none!important
}

.pe-auto {
    pointer-events: auto!important
}

.rounded {
    border-radius: .25rem!important
}

.rounded-0 {
    border-radius: 0!important
}

.rounded-1 {
    border-radius: .2rem!important
}

.rounded-2 {
    border-radius: .25rem!important
}

.rounded-3 {
    border-radius: .3rem!important
}

.rounded-circle {
    border-radius: 50%!important
}

.rounded-pill {
    border-radius: 50rem!important
}

.rounded-top {
    border-top-left-radius: .25rem!important;
    border-top-right-radius: .25rem!important
}

.rounded-end {
    border-top-right-radius: .25rem!important;
    border-bottom-right-radius: .25rem!important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem!important;
    border-bottom-left-radius: .25rem!important
}

.rounded-start {
    border-bottom-left-radius: .25rem!important;
    border-top-left-radius: .25rem!important
}

.visible {
    visibility: visible!important
}

.invisible {
    visibility: hidden!important
}

@media (min-width:576px) {
    .float-sm-start {
        float: left!important
    }
    .float-sm-end {
        float: right!important
    }
    .float-sm-none {
        float: none!important
    }
    .d-sm-inline {
        display: inline!important
    }
    .d-sm-inline-block {
        display: inline-block!important
    }
    .d-sm-block {
        display: block!important
    }
    .d-sm-grid {
        display: grid!important
    }
    .d-sm-table {
        display: table!important
    }
    .d-sm-table-row {
        display: table-row!important
    }
    .d-sm-table-cell {
        display: table-cell!important
    }
    .d-sm-flex {
        display: flex!important
    }
    .d-sm-inline-flex {
        display: inline-flex!important
    }
    .d-sm-none {
        display: none!important
    }
    .flex-sm-fill {
        flex: 1 1 auto!important
    }
    .flex-sm-row {
        flex-direction: row!important
    }
    .flex-sm-column {
        flex-direction: column!important
    }
    .flex-sm-row-reverse {
        flex-direction: row-reverse!important
    }
    .flex-sm-column-reverse {
        flex-direction: column-reverse!important
    }
    .flex-sm-grow-0 {
        flex-grow: 0!important
    }
    .flex-sm-grow-1 {
        flex-grow: 1!important
    }
    .flex-sm-shrink-0 {
        flex-shrink: 0!important
    }
    .flex-sm-shrink-1 {
        flex-shrink: 1!important
    }
    .flex-sm-wrap {
        flex-wrap: wrap!important
    }
    .flex-sm-nowrap {
        flex-wrap: nowrap!important
    }
    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }
    .gap-sm-0 {
        gap: 0!important
    }
    .gap-sm-1 {
        gap: .25rem!important
    }
    .gap-sm-2 {
        gap: .5rem!important
    }
    .gap-sm-3 {
        gap: 1rem!important
    }
    .gap-sm-4 {
        gap: 1.5rem!important
    }
    .gap-sm-5 {
        gap: 3rem!important
    }
    .justify-content-sm-start {
        justify-content: flex-start!important
    }
    .justify-content-sm-end {
        justify-content: flex-end!important
    }
    .justify-content-sm-center {
        justify-content: center!important
    }
    .justify-content-sm-between {
        justify-content: space-between!important
    }
    .justify-content-sm-around {
        justify-content: space-around!important
    }
    .justify-content-sm-evenly {
        justify-content: space-evenly!important
    }
    .align-items-sm-start {
        align-items: flex-start!important
    }
    .align-items-sm-end {
        align-items: flex-end!important
    }
    .align-items-sm-center {
        align-items: center!important
    }
    .align-items-sm-baseline {
        align-items: baseline!important
    }
    .align-items-sm-stretch {
        align-items: stretch!important
    }
    .align-content-sm-start {
        align-content: flex-start!important
    }
    .align-content-sm-end {
        align-content: flex-end!important
    }
    .align-content-sm-center {
        align-content: center!important
    }
    .align-content-sm-between {
        align-content: space-between!important
    }
    .align-content-sm-around {
        align-content: space-around!important
    }
    .align-content-sm-stretch {
        align-content: stretch!important
    }
    .align-self-sm-auto {
        align-self: auto!important
    }
    .align-self-sm-start {
        align-self: flex-start!important
    }
    .align-self-sm-end {
        align-self: flex-end!important
    }
    .align-self-sm-center {
        align-self: center!important
    }
    .align-self-sm-baseline {
        align-self: baseline!important
    }
    .align-self-sm-stretch {
        align-self: stretch!important
    }
    .order-sm-first {
        order: -1!important
    }
    .order-sm-0 {
        order: 0!important
    }
    .order-sm-1 {
        order: 1!important
    }
    .order-sm-2 {
        order: 2!important
    }
    .order-sm-3 {
        order: 3!important
    }
    .order-sm-4 {
        order: 4!important
    }
    .order-sm-5 {
        order: 5!important
    }
    .order-sm-last {
        order: 6!important
    }
    .m-sm-0 {
        margin: 0!important
    }
    .m-sm-1 {
        margin: .25rem!important
    }
    .m-sm-2 {
        margin: .5rem!important
    }
    .m-sm-3 {
        margin: 1rem!important
    }
    .m-sm-4 {
        margin: 1.5rem!important
    }
    .m-sm-5 {
        margin: 3rem!important
    }
    .m-sm-auto {
        margin: auto!important
    }
    .mx-sm-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }
    .mx-sm-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }
    .mx-sm-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }
    .mx-sm-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }
    .mx-sm-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }
    .mx-sm-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }
    .mx-sm-auto {
        margin-right: auto!important;
        margin-left: auto!important
    }
    .my-sm-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }
    .my-sm-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }
    .my-sm-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }
    .my-sm-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }
    .my-sm-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }
    .my-sm-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }
    .my-sm-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }
    .mt-sm-0 {
        margin-top: 0!important
    }
    .mt-sm-1 {
        margin-top: .25rem!important
    }
    .mt-sm-2 {
        margin-top: .5rem!important
    }
    .mt-sm-3 {
        margin-top: 1rem!important
    }
    .mt-sm-4 {
        margin-top: 1.5rem!important
    }
    .mt-sm-5 {
        margin-top: 3rem!important
    }
    .mt-sm-auto {
        margin-top: auto!important
    }
    .me-sm-0 {
        margin-right: 0!important
    }
    .me-sm-1 {
        margin-right: .25rem!important
    }
    .me-sm-2 {
        margin-right: .5rem!important
    }
    .me-sm-3 {
        margin-right: 1rem!important
    }
    .me-sm-4 {
        margin-right: 1.5rem!important
    }
    .me-sm-5 {
        margin-right: 3rem!important
    }
    .me-sm-auto {
        margin-right: auto!important
    }
    .mb-sm-0 {
        margin-bottom: 0!important
    }
    .mb-sm-1 {
        margin-bottom: .25rem!important
    }
    .mb-sm-2 {
        margin-bottom: .5rem!important
    }
    .mb-sm-3 {
        margin-bottom: 1rem!important
    }
    .mb-sm-4 {
        margin-bottom: 1.5rem!important
    }
    .mb-sm-5 {
        margin-bottom: 3rem!important
    }
    .mb-sm-auto {
        margin-bottom: auto!important
    }
    .ms-sm-0 {
        margin-left: 0!important
    }
    .ms-sm-1 {
        margin-left: .25rem!important
    }
    .ms-sm-2 {
        margin-left: .5rem!important
    }
    .ms-sm-3 {
        margin-left: 1rem!important
    }
    .ms-sm-4 {
        margin-left: 1.5rem!important
    }
    .ms-sm-5 {
        margin-left: 3rem!important
    }
    .ms-sm-auto {
        margin-left: auto!important
    }
    .p-sm-0 {
        padding: 0!important
    }
    .p-sm-1 {
        padding: .25rem!important
    }
    .p-sm-2 {
        padding: .5rem!important
    }
    .p-sm-3 {
        padding: 1rem!important
    }
    .p-sm-4 {
        padding: 1.5rem!important
    }
    .p-sm-5 {
        padding: 3rem!important
    }
    .px-sm-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }
    .px-sm-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }
    .px-sm-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }
    .px-sm-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }
    .px-sm-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }
    .px-sm-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }
    .py-sm-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }
    .py-sm-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }
    .py-sm-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }
    .py-sm-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }
    .py-sm-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }
    .py-sm-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }
    .pt-sm-0 {
        padding-top: 0!important
    }
    .pt-sm-1 {
        padding-top: .25rem!important
    }
    .pt-sm-2 {
        padding-top: .5rem!important
    }
    .pt-sm-3 {
        padding-top: 1rem!important
    }
    .pt-sm-4 {
        padding-top: 1.5rem!important
    }
    .pt-sm-5 {
        padding-top: 3rem!important
    }
    .pe-sm-0 {
        padding-right: 0!important
    }
    .pe-sm-1 {
        padding-right: .25rem!important
    }
    .pe-sm-2 {
        padding-right: .5rem!important
    }
    .pe-sm-3 {
        padding-right: 1rem!important
    }
    .pe-sm-4 {
        padding-right: 1.5rem!important
    }
    .pe-sm-5 {
        padding-right: 3rem!important
    }
    .pb-sm-0 {
        padding-bottom: 0!important
    }
    .pb-sm-1 {
        padding-bottom: .25rem!important
    }
    .pb-sm-2 {
        padding-bottom: .5rem!important
    }
    .pb-sm-3 {
        padding-bottom: 1rem!important
    }
    .pb-sm-4 {
        padding-bottom: 1.5rem!important
    }
    .pb-sm-5 {
        padding-bottom: 3rem!important
    }
    .ps-sm-0 {
        padding-left: 0!important
    }
    .ps-sm-1 {
        padding-left: .25rem!important
    }
    .ps-sm-2 {
        padding-left: .5rem!important
    }
    .ps-sm-3 {
        padding-left: 1rem!important
    }
    .ps-sm-4 {
        padding-left: 1.5rem!important
    }
    .ps-sm-5 {
        padding-left: 3rem!important
    }
    .text-sm-start {
        text-align: left!important
    }
    .text-sm-end {
        text-align: right!important
    }
    .text-sm-center {
        text-align: center!important
    }
}

@media (min-width:768px) {
    .float-md-start {
        float: left!important
    }
    .float-md-end {
        float: right!important
    }
    .float-md-none {
        float: none!important
    }
    .d-md-inline {
        display: inline!important
    }
    .d-md-inline-block {
        display: inline-block!important
    }
    .d-md-block {
        display: block!important
    }
    .d-md-grid {
        display: grid!important
    }
    .d-md-table {
        display: table!important
    }
    .d-md-table-row {
        display: table-row!important
    }
    .d-md-table-cell {
        display: table-cell!important
    }
    .d-md-flex {
        display: flex!important
    }
    .d-md-inline-flex {
        display: inline-flex!important
    }
    .d-md-none {
        display: none!important
    }
    .flex-md-fill {
        flex: 1 1 auto!important
    }
    .flex-md-row {
        flex-direction: row!important
    }
    .flex-md-column {
        flex-direction: column!important
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse!important
    }
    .flex-md-column-reverse {
        flex-direction: column-reverse!important
    }
    .flex-md-grow-0 {
        flex-grow: 0!important
    }
    .flex-md-grow-1 {
        flex-grow: 1!important
    }
    .flex-md-shrink-0 {
        flex-shrink: 0!important
    }
    .flex-md-shrink-1 {
        flex-shrink: 1!important
    }
    .flex-md-wrap {
        flex-wrap: wrap!important
    }
    .flex-md-nowrap {
        flex-wrap: nowrap!important
    }
    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }
    .gap-md-0 {
        gap: 0!important
    }
    .gap-md-1 {
        gap: .25rem!important
    }
    .gap-md-2 {
        gap: .5rem!important
    }
    .gap-md-3 {
        gap: 1rem!important
    }
    .gap-md-4 {
        gap: 1.5rem!important
    }
    .gap-md-5 {
        gap: 3rem!important
    }
    .justify-content-md-start {
        justify-content: flex-start!important
    }
    .justify-content-md-end {
        justify-content: flex-end!important
    }
    .justify-content-md-center {
        justify-content: center!important
    }
    .justify-content-md-between {
        justify-content: space-between!important
    }
    .justify-content-md-around {
        justify-content: space-around!important
    }
    .justify-content-md-evenly {
        justify-content: space-evenly!important
    }
    .align-items-md-start {
        align-items: flex-start!important
    }
    .align-items-md-end {
        align-items: flex-end!important
    }
    .align-items-md-center {
        align-items: center!important
    }
    .align-items-md-baseline {
        align-items: baseline!important
    }
    .align-items-md-stretch {
        align-items: stretch!important
    }
    .align-content-md-start {
        align-content: flex-start!important
    }
    .align-content-md-end {
        align-content: flex-end!important
    }
    .align-content-md-center {
        align-content: center!important
    }
    .align-content-md-between {
        align-content: space-between!important
    }
    .align-content-md-around {
        align-content: space-around!important
    }
    .align-content-md-stretch {
        align-content: stretch!important
    }
    .align-self-md-auto {
        align-self: auto!important
    }
    .align-self-md-start {
        align-self: flex-start!important
    }
    .align-self-md-end {
        align-self: flex-end!important
    }
    .align-self-md-center {
        align-self: center!important
    }
    .align-self-md-baseline {
        align-self: baseline!important
    }
    .align-self-md-stretch {
        align-self: stretch!important
    }
    .order-md-first {
        order: -1!important
    }
    .order-md-0 {
        order: 0!important
    }
    .order-md-1 {
        order: 1!important
    }
    .order-md-2 {
        order: 2!important
    }
    .order-md-3 {
        order: 3!important
    }
    .order-md-4 {
        order: 4!important
    }
    .order-md-5 {
        order: 5!important
    }
    .order-md-last {
        order: 6!important
    }
    .m-md-0 {
        margin: 0!important
    }
    .m-md-1 {
        margin: .25rem!important
    }
    .m-md-2 {
        margin: .5rem!important
    }
    .m-md-3 {
        margin: 1rem!important
    }
    .m-md-4 {
        margin: 1.5rem!important
    }
    .m-md-5 {
        margin: 3rem!important
    }
    .m-md-auto {
        margin: auto!important
    }
    .mx-md-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }
    .mx-md-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }
    .mx-md-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }
    .mx-md-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }
    .mx-md-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }
    .mx-md-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }
    .mx-md-auto {
        margin-right: auto!important;
        margin-left: auto!important
    }
    .my-md-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }
    .my-md-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }
    .my-md-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }
    .my-md-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }
    .my-md-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }
    .my-md-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }
    .my-md-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }
    .mt-md-0 {
        margin-top: 0!important
    }
    .mt-md-1 {
        margin-top: .25rem!important
    }
    .mt-md-2 {
        margin-top: .5rem!important
    }
    .mt-md-3 {
        margin-top: 1rem!important
    }
    .mt-md-4 {
        margin-top: 1.5rem!important
    }
    .mt-md-5 {
        margin-top: 3rem!important
    }
    .mt-md-auto {
        margin-top: auto!important
    }
    .me-md-0 {
        margin-right: 0!important
    }
    .me-md-1 {
        margin-right: .25rem!important
    }
    .me-md-2 {
        margin-right: .5rem!important
    }
    .me-md-3 {
        margin-right: 1rem!important
    }
    .me-md-4 {
        margin-right: 1.5rem!important
    }
    .me-md-5 {
        margin-right: 3rem!important
    }
    .me-md-auto {
        margin-right: auto!important
    }
    .mb-md-0 {
        margin-bottom: 0!important
    }
    .mb-md-1 {
        margin-bottom: .25rem!important
    }
    .mb-md-2 {
        margin-bottom: .5rem!important
    }
    .mb-md-3 {
        margin-bottom: 1rem!important
    }
    .mb-md-4 {
        margin-bottom: 1.5rem!important
    }
    .mb-md-5 {
        margin-bottom: 3rem!important
    }
    .mb-md-auto {
        margin-bottom: auto!important
    }
    .ms-md-0 {
        margin-left: 0!important
    }
    .ms-md-1 {
        margin-left: .25rem!important
    }
    .ms-md-2 {
        margin-left: .5rem!important
    }
    .ms-md-3 {
        margin-left: 1rem!important
    }
    .ms-md-4 {
        margin-left: 1.5rem!important
    }
    .ms-md-5 {
        margin-left: 3rem!important
    }
    .ms-md-auto {
        margin-left: auto!important
    }
    .p-md-0 {
        padding: 0!important
    }
    .p-md-1 {
        padding: .25rem!important
    }
    .p-md-2 {
        padding: .5rem!important
    }
    .p-md-3 {
        padding: 1rem!important
    }
    .p-md-4 {
        padding: 1.5rem!important
    }
    .p-md-5 {
        padding: 3rem!important
    }
    .px-md-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }
    .px-md-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }
    .px-md-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }
    .px-md-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }
    .px-md-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }
    .px-md-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }
    .py-md-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }
    .py-md-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }
    .py-md-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }
    .py-md-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }
    .py-md-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }
    .py-md-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }
    .pt-md-0 {
        padding-top: 0!important
    }
    .pt-md-1 {
        padding-top: .25rem!important
    }
    .pt-md-2 {
        padding-top: .5rem!important
    }
    .pt-md-3 {
        padding-top: 1rem!important
    }
    .pt-md-4 {
        padding-top: 1.5rem!important
    }
    .pt-md-5 {
        padding-top: 3rem!important
    }
    .pe-md-0 {
        padding-right: 0!important
    }
    .pe-md-1 {
        padding-right: .25rem!important
    }
    .pe-md-2 {
        padding-right: .5rem!important
    }
    .pe-md-3 {
        padding-right: 1rem!important
    }
    .pe-md-4 {
        padding-right: 1.5rem!important
    }
    .pe-md-5 {
        padding-right: 3rem!important
    }
    .pb-md-0 {
        padding-bottom: 0!important
    }
    .pb-md-1 {
        padding-bottom: .25rem!important
    }
    .pb-md-2 {
        padding-bottom: .5rem!important
    }
    .pb-md-3 {
        padding-bottom: 1rem!important
    }
    .pb-md-4 {
        padding-bottom: 1.5rem!important
    }
    .pb-md-5 {
        padding-bottom: 3rem!important
    }
    .ps-md-0 {
        padding-left: 0!important
    }
    .ps-md-1 {
        padding-left: .25rem!important
    }
    .ps-md-2 {
        padding-left: .5rem!important
    }
    .ps-md-3 {
        padding-left: 1rem!important
    }
    .ps-md-4 {
        padding-left: 1.5rem!important
    }
    .ps-md-5 {
        padding-left: 3rem!important
    }
    .text-md-start {
        text-align: left!important
    }
    .text-md-end {
        text-align: right!important
    }
    .text-md-center {
        text-align: center!important
    }
}

@media (min-width:992px) {
    .float-lg-start {
        float: left!important
    }
    .float-lg-end {
        float: right!important
    }
    .float-lg-none {
        float: none!important
    }
    .d-lg-inline {
        display: inline!important
    }
    .d-lg-inline-block {
        display: inline-block!important
    }
    .d-lg-block {
        display: block!important
    }
    .d-lg-grid {
        display: grid!important
    }
    .d-lg-table {
        display: table!important
    }
    .d-lg-table-row {
        display: table-row!important
    }
    .d-lg-table-cell {
        display: table-cell!important
    }
    .d-lg-flex {
        display: flex!important
    }
    .d-lg-inline-flex {
        display: inline-flex!important
    }
    .d-lg-none {
        display: none!important
    }
    .flex-lg-fill {
        flex: 1 1 auto!important
    }
    .flex-lg-row {
        flex-direction: row!important
    }
    .flex-lg-column {
        flex-direction: column!important
    }
    .flex-lg-row-reverse {
        flex-direction: row-reverse!important
    }
    .flex-lg-column-reverse {
        flex-direction: column-reverse!important
    }
    .flex-lg-grow-0 {
        flex-grow: 0!important
    }
    .flex-lg-grow-1 {
        flex-grow: 1!important
    }
    .flex-lg-shrink-0 {
        flex-shrink: 0!important
    }
    .flex-lg-shrink-1 {
        flex-shrink: 1!important
    }
    .flex-lg-wrap {
        flex-wrap: wrap!important
    }
    .flex-lg-nowrap {
        flex-wrap: nowrap!important
    }
    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }
    .gap-lg-0 {
        gap: 0!important
    }
    .gap-lg-1 {
        gap: .25rem!important
    }
    .gap-lg-2 {
        gap: .5rem!important
    }
    .gap-lg-3 {
        gap: 1rem!important
    }
    .gap-lg-4 {
        gap: 1.5rem!important
    }
    .gap-lg-5 {
        gap: 3rem!important
    }
    .justify-content-lg-start {
        justify-content: flex-start!important
    }
    .justify-content-lg-end {
        justify-content: flex-end!important
    }
    .justify-content-lg-center {
        justify-content: center!important
    }
    .justify-content-lg-between {
        justify-content: space-between!important
    }
    .justify-content-lg-around {
        justify-content: space-around!important
    }
    .justify-content-lg-evenly {
        justify-content: space-evenly!important
    }
    .align-items-lg-start {
        align-items: flex-start!important
    }
    .align-items-lg-end {
        align-items: flex-end!important
    }
    .align-items-lg-center {
        align-items: center!important
    }
    .align-items-lg-baseline {
        align-items: baseline!important
    }
    .align-items-lg-stretch {
        align-items: stretch!important
    }
    .align-content-lg-start {
        align-content: flex-start!important
    }
    .align-content-lg-end {
        align-content: flex-end!important
    }
    .align-content-lg-center {
        align-content: center!important
    }
    .align-content-lg-between {
        align-content: space-between!important
    }
    .align-content-lg-around {
        align-content: space-around!important
    }
    .align-content-lg-stretch {
        align-content: stretch!important
    }
    .align-self-lg-auto {
        align-self: auto!important
    }
    .align-self-lg-start {
        align-self: flex-start!important
    }
    .align-self-lg-end {
        align-self: flex-end!important
    }
    .align-self-lg-center {
        align-self: center!important
    }
    .align-self-lg-baseline {
        align-self: baseline!important
    }
    .align-self-lg-stretch {
        align-self: stretch!important
    }
    .order-lg-first {
        order: -1!important
    }
    .order-lg-0 {
        order: 0!important
    }
    .order-lg-1 {
        order: 1!important
    }
    .order-lg-2 {
        order: 2!important
    }
    .order-lg-3 {
        order: 3!important
    }
    .order-lg-4 {
        order: 4!important
    }
    .order-lg-5 {
        order: 5!important
    }
    .order-lg-last {
        order: 6!important
    }
    .m-lg-0 {
        margin: 0!important
    }
    .m-lg-1 {
        margin: .25rem!important
    }
    .m-lg-2 {
        margin: .5rem!important
    }
    .m-lg-3 {
        margin: 1rem!important
    }
    .m-lg-4 {
        margin: 1.5rem!important
    }
    .m-lg-5 {
        margin: 3rem!important
    }
    .m-lg-auto {
        margin: auto!important
    }
    .mx-lg-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }
    .mx-lg-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }
    .mx-lg-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }
    .mx-lg-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }
    .mx-lg-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }
    .mx-lg-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }
    .mx-lg-auto {
        margin-right: auto!important;
        margin-left: auto!important
    }
    .my-lg-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }
    .my-lg-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }
    .my-lg-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }
    .my-lg-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }
    .my-lg-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }
    .my-lg-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }
    .my-lg-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }
    .mt-lg-0 {
        margin-top: 0!important
    }
    .mt-lg-1 {
        margin-top: .25rem!important
    }
    .mt-lg-2 {
        margin-top: .5rem!important
    }
    .mt-lg-3 {
        margin-top: 1rem!important
    }
    .mt-lg-4 {
        margin-top: 1.5rem!important
    }
    .mt-lg-5 {
        margin-top: 3rem!important
    }
    .mt-lg-auto {
        margin-top: auto!important
    }
    .me-lg-0 {
        margin-right: 0!important
    }
    .me-lg-1 {
        margin-right: .25rem!important
    }
    .me-lg-2 {
        margin-right: .5rem!important
    }
    .me-lg-3 {
        margin-right: 1rem!important
    }
    .me-lg-4 {
        margin-right: 1.5rem!important
    }
    .me-lg-5 {
        margin-right: 3rem!important
    }
    .me-lg-auto {
        margin-right: auto!important
    }
    .mb-lg-0 {
        margin-bottom: 0!important
    }
    .mb-lg-1 {
        margin-bottom: .25rem!important
    }
    .mb-lg-2 {
        margin-bottom: .5rem!important
    }
    .mb-lg-3 {
        margin-bottom: 1rem!important
    }
    .mb-lg-4 {
        margin-bottom: 1.5rem!important
    }
    .mb-lg-5 {
        margin-bottom: 3rem!important
    }
    .mb-lg-auto {
        margin-bottom: auto!important
    }
    .ms-lg-0 {
        margin-left: 0!important
    }
    .ms-lg-1 {
        margin-left: .25rem!important
    }
    .ms-lg-2 {
        margin-left: .5rem!important
    }
    .ms-lg-3 {
        margin-left: 1rem!important
    }
    .ms-lg-4 {
        margin-left: 1.5rem!important
    }
    .ms-lg-5 {
        margin-left: 3rem!important
    }
    .ms-lg-auto {
        margin-left: auto!important
    }
    .p-lg-0 {
        padding: 0!important
    }
    .p-lg-1 {
        padding: .25rem!important
    }
    .p-lg-2 {
        padding: .5rem!important
    }
    .p-lg-3 {
        padding: 1rem!important
    }
    .p-lg-4 {
        padding: 1.5rem!important
    }
    .p-lg-5 {
        padding: 3rem!important
    }
    .px-lg-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }
    .px-lg-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }
    .px-lg-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }
    .px-lg-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }
    .px-lg-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }
    .px-lg-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }
    .py-lg-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }
    .py-lg-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }
    .py-lg-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }
    .py-lg-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }
    .py-lg-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }
    .py-lg-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }
    .pt-lg-0 {
        padding-top: 0!important
    }
    .pt-lg-1 {
        padding-top: .25rem!important
    }
    .pt-lg-2 {
        padding-top: .5rem!important
    }
    .pt-lg-3 {
        padding-top: 1rem!important
    }
    .pt-lg-4 {
        padding-top: 1.5rem!important
    }
    .pt-lg-5 {
        padding-top: 3rem!important
    }
    .pe-lg-0 {
        padding-right: 0!important
    }
    .pe-lg-1 {
        padding-right: .25rem!important
    }
    .pe-lg-2 {
        padding-right: .5rem!important
    }
    .pe-lg-3 {
        padding-right: 1rem!important
    }
    .pe-lg-4 {
        padding-right: 1.5rem!important
    }
    .pe-lg-5 {
        padding-right: 3rem!important
    }
    .pb-lg-0 {
        padding-bottom: 0!important
    }
    .pb-lg-1 {
        padding-bottom: .25rem!important
    }
    .pb-lg-2 {
        padding-bottom: .5rem!important
    }
    .pb-lg-3 {
        padding-bottom: 1rem!important
    }
    .pb-lg-4 {
        padding-bottom: 1.5rem!important
    }
    .pb-lg-5 {
        padding-bottom: 3rem!important
    }
    .ps-lg-0 {
        padding-left: 0!important
    }
    .ps-lg-1 {
        padding-left: .25rem!important
    }
    .ps-lg-2 {
        padding-left: .5rem!important
    }
    .ps-lg-3 {
        padding-left: 1rem!important
    }
    .ps-lg-4 {
        padding-left: 1.5rem!important
    }
    .ps-lg-5 {
        padding-left: 3rem!important
    }
    .text-lg-start {
        text-align: left!important
    }
    .text-lg-end {
        text-align: right!important
    }
    .text-lg-center {
        text-align: center!important
    }
}

@media (min-width:1200px) {
    .float-xl-start {
        float: left!important
    }
    .float-xl-end {
        float: right!important
    }
    .float-xl-none {
        float: none!important
    }
    .d-xl-inline {
        display: inline!important
    }
    .d-xl-inline-block {
        display: inline-block!important
    }
    .d-xl-block {
        display: block!important
    }
    .d-xl-grid {
        display: grid!important
    }
    .d-xl-table {
        display: table!important
    }
    .d-xl-table-row {
        display: table-row!important
    }
    .d-xl-table-cell {
        display: table-cell!important
    }
    .d-xl-flex {
        display: flex!important
    }
    .d-xl-inline-flex {
        display: inline-flex!important
    }
    .d-xl-none {
        display: none!important
    }
    .flex-xl-fill {
        flex: 1 1 auto!important
    }
    .flex-xl-row {
        flex-direction: row!important
    }
    .flex-xl-column {
        flex-direction: column!important
    }
    .flex-xl-row-reverse {
        flex-direction: row-reverse!important
    }
    .flex-xl-column-reverse {
        flex-direction: column-reverse!important
    }
    .flex-xl-grow-0 {
        flex-grow: 0!important
    }
    .flex-xl-grow-1 {
        flex-grow: 1!important
    }
    .flex-xl-shrink-0 {
        flex-shrink: 0!important
    }
    .flex-xl-shrink-1 {
        flex-shrink: 1!important
    }
    .flex-xl-wrap {
        flex-wrap: wrap!important
    }
    .flex-xl-nowrap {
        flex-wrap: nowrap!important
    }
    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }
    .gap-xl-0 {
        gap: 0!important
    }
    .gap-xl-1 {
        gap: .25rem!important
    }
    .gap-xl-2 {
        gap: .5rem!important
    }
    .gap-xl-3 {
        gap: 1rem!important
    }
    .gap-xl-4 {
        gap: 1.5rem!important
    }
    .gap-xl-5 {
        gap: 3rem!important
    }
    .justify-content-xl-start {
        justify-content: flex-start!important
    }
    .justify-content-xl-end {
        justify-content: flex-end!important
    }
    .justify-content-xl-center {
        justify-content: center!important
    }
    .justify-content-xl-between {
        justify-content: space-between!important
    }
    .justify-content-xl-around {
        justify-content: space-around!important
    }
    .justify-content-xl-evenly {
        justify-content: space-evenly!important
    }
    .align-items-xl-start {
        align-items: flex-start!important
    }
    .align-items-xl-end {
        align-items: flex-end!important
    }
    .align-items-xl-center {
        align-items: center!important
    }
    .align-items-xl-baseline {
        align-items: baseline!important
    }
    .align-items-xl-stretch {
        align-items: stretch!important
    }
    .align-content-xl-start {
        align-content: flex-start!important
    }
    .align-content-xl-end {
        align-content: flex-end!important
    }
    .align-content-xl-center {
        align-content: center!important
    }
    .align-content-xl-between {
        align-content: space-between!important
    }
    .align-content-xl-around {
        align-content: space-around!important
    }
    .align-content-xl-stretch {
        align-content: stretch!important
    }
    .align-self-xl-auto {
        align-self: auto!important
    }
    .align-self-xl-start {
        align-self: flex-start!important
    }
    .align-self-xl-end {
        align-self: flex-end!important
    }
    .align-self-xl-center {
        align-self: center!important
    }
    .align-self-xl-baseline {
        align-self: baseline!important
    }
    .align-self-xl-stretch {
        align-self: stretch!important
    }
    .order-xl-first {
        order: -1!important
    }
    .order-xl-0 {
        order: 0!important
    }
    .order-xl-1 {
        order: 1!important
    }
    .order-xl-2 {
        order: 2!important
    }
    .order-xl-3 {
        order: 3!important
    }
    .order-xl-4 {
        order: 4!important
    }
    .order-xl-5 {
        order: 5!important
    }
    .order-xl-last {
        order: 6!important
    }
    .m-xl-0 {
        margin: 0!important
    }
    .m-xl-1 {
        margin: .25rem!important
    }
    .m-xl-2 {
        margin: .5rem!important
    }
    .m-xl-3 {
        margin: 1rem!important
    }
    .m-xl-4 {
        margin: 1.5rem!important
    }
    .m-xl-5 {
        margin: 3rem!important
    }
    .m-xl-auto {
        margin: auto!important
    }
    .mx-xl-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }
    .mx-xl-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }
    .mx-xl-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }
    .mx-xl-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }
    .mx-xl-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }
    .mx-xl-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }
    .mx-xl-auto {
        margin-right: auto!important;
        margin-left: auto!important
    }
    .my-xl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }
    .my-xl-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }
    .my-xl-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }
    .my-xl-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }
    .my-xl-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }
    .my-xl-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }
    .my-xl-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }
    .mt-xl-0 {
        margin-top: 0!important
    }
    .mt-xl-1 {
        margin-top: .25rem!important
    }
    .mt-xl-2 {
        margin-top: .5rem!important
    }
    .mt-xl-3 {
        margin-top: 1rem!important
    }
    .mt-xl-4 {
        margin-top: 1.5rem!important
    }
    .mt-xl-5 {
        margin-top: 3rem!important
    }
    .mt-xl-auto {
        margin-top: auto!important
    }
    .me-xl-0 {
        margin-right: 0!important
    }
    .me-xl-1 {
        margin-right: .25rem!important
    }
    .me-xl-2 {
        margin-right: .5rem!important
    }
    .me-xl-3 {
        margin-right: 1rem!important
    }
    .me-xl-4 {
        margin-right: 1.5rem!important
    }
    .me-xl-5 {
        margin-right: 3rem!important
    }
    .me-xl-auto {
        margin-right: auto!important
    }
    .mb-xl-0 {
        margin-bottom: 0!important
    }
    .mb-xl-1 {
        margin-bottom: .25rem!important
    }
    .mb-xl-2 {
        margin-bottom: .5rem!important
    }
    .mb-xl-3 {
        margin-bottom: 1rem!important
    }
    .mb-xl-4 {
        margin-bottom: 1.5rem!important
    }
    .mb-xl-5 {
        margin-bottom: 3rem!important
    }
    .mb-xl-auto {
        margin-bottom: auto!important
    }
    .ms-xl-0 {
        margin-left: 0!important
    }
    .ms-xl-1 {
        margin-left: .25rem!important
    }
    .ms-xl-2 {
        margin-left: .5rem!important
    }
    .ms-xl-3 {
        margin-left: 1rem!important
    }
    .ms-xl-4 {
        margin-left: 1.5rem!important
    }
    .ms-xl-5 {
        margin-left: 3rem!important
    }
    .ms-xl-auto {
        margin-left: auto!important
    }
    .p-xl-0 {
        padding: 0!important
    }
    .p-xl-1 {
        padding: .25rem!important
    }
    .p-xl-2 {
        padding: .5rem!important
    }
    .p-xl-3 {
        padding: 1rem!important
    }
    .p-xl-4 {
        padding: 1.5rem!important
    }
    .p-xl-5 {
        padding: 3rem!important
    }
    .px-xl-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }
    .px-xl-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }
    .px-xl-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }
    .px-xl-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }
    .px-xl-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }
    .px-xl-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }
    .py-xl-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }
    .py-xl-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }
    .py-xl-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }
    .py-xl-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }
    .py-xl-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }
    .py-xl-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }
    .pt-xl-0 {
        padding-top: 0!important
    }
    .pt-xl-1 {
        padding-top: .25rem!important
    }
    .pt-xl-2 {
        padding-top: .5rem!important
    }
    .pt-xl-3 {
        padding-top: 1rem!important
    }
    .pt-xl-4 {
        padding-top: 1.5rem!important
    }
    .pt-xl-5 {
        padding-top: 3rem!important
    }
    .pe-xl-0 {
        padding-right: 0!important
    }
    .pe-xl-1 {
        padding-right: .25rem!important
    }
    .pe-xl-2 {
        padding-right: .5rem!important
    }
    .pe-xl-3 {
        padding-right: 1rem!important
    }
    .pe-xl-4 {
        padding-right: 1.5rem!important
    }
    .pe-xl-5 {
        padding-right: 3rem!important
    }
    .pb-xl-0 {
        padding-bottom: 0!important
    }
    .pb-xl-1 {
        padding-bottom: .25rem!important
    }
    .pb-xl-2 {
        padding-bottom: .5rem!important
    }
    .pb-xl-3 {
        padding-bottom: 1rem!important
    }
    .pb-xl-4 {
        padding-bottom: 1.5rem!important
    }
    .pb-xl-5 {
        padding-bottom: 3rem!important
    }
    .ps-xl-0 {
        padding-left: 0!important
    }
    .ps-xl-1 {
        padding-left: .25rem!important
    }
    .ps-xl-2 {
        padding-left: .5rem!important
    }
    .ps-xl-3 {
        padding-left: 1rem!important
    }
    .ps-xl-4 {
        padding-left: 1.5rem!important
    }
    .ps-xl-5 {
        padding-left: 3rem!important
    }
    .text-xl-start {
        text-align: left!important
    }
    .text-xl-end {
        text-align: right!important
    }
    .text-xl-center {
        text-align: center!important
    }
}

@media (min-width:1400px) {
    .float-xxl-start {
        float: left!important
    }
    .float-xxl-end {
        float: right!important
    }
    .float-xxl-none {
        float: none!important
    }
    .d-xxl-inline {
        display: inline!important
    }
    .d-xxl-inline-block {
        display: inline-block!important
    }
    .d-xxl-block {
        display: block!important
    }
    .d-xxl-grid {
        display: grid!important
    }
    .d-xxl-table {
        display: table!important
    }
    .d-xxl-table-row {
        display: table-row!important
    }
    .d-xxl-table-cell {
        display: table-cell!important
    }
    .d-xxl-flex {
        display: flex!important
    }
    .d-xxl-inline-flex {
        display: inline-flex!important
    }
    .d-xxl-none {
        display: none!important
    }
    .flex-xxl-fill {
        flex: 1 1 auto!important
    }
    .flex-xxl-row {
        flex-direction: row!important
    }
    .flex-xxl-column {
        flex-direction: column!important
    }
    .flex-xxl-row-reverse {
        flex-direction: row-reverse!important
    }
    .flex-xxl-column-reverse {
        flex-direction: column-reverse!important
    }
    .flex-xxl-grow-0 {
        flex-grow: 0!important
    }
    .flex-xxl-grow-1 {
        flex-grow: 1!important
    }
    .flex-xxl-shrink-0 {
        flex-shrink: 0!important
    }
    .flex-xxl-shrink-1 {
        flex-shrink: 1!important
    }
    .flex-xxl-wrap {
        flex-wrap: wrap!important
    }
    .flex-xxl-nowrap {
        flex-wrap: nowrap!important
    }
    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }
    .gap-xxl-0 {
        gap: 0!important
    }
    .gap-xxl-1 {
        gap: .25rem!important
    }
    .gap-xxl-2 {
        gap: .5rem!important
    }
    .gap-xxl-3 {
        gap: 1rem!important
    }
    .gap-xxl-4 {
        gap: 1.5rem!important
    }
    .gap-xxl-5 {
        gap: 3rem!important
    }
    .justify-content-xxl-start {
        justify-content: flex-start!important
    }
    .justify-content-xxl-end {
        justify-content: flex-end!important
    }
    .justify-content-xxl-center {
        justify-content: center!important
    }
    .justify-content-xxl-between {
        justify-content: space-between!important
    }
    .justify-content-xxl-around {
        justify-content: space-around!important
    }
    .justify-content-xxl-evenly {
        justify-content: space-evenly!important
    }
    .align-items-xxl-start {
        align-items: flex-start!important
    }
    .align-items-xxl-end {
        align-items: flex-end!important
    }
    .align-items-xxl-center {
        align-items: center!important
    }
    .align-items-xxl-baseline {
        align-items: baseline!important
    }
    .align-items-xxl-stretch {
        align-items: stretch!important
    }
    .align-content-xxl-start {
        align-content: flex-start!important
    }
    .align-content-xxl-end {
        align-content: flex-end!important
    }
    .align-content-xxl-center {
        align-content: center!important
    }
    .align-content-xxl-between {
        align-content: space-between!important
    }
    .align-content-xxl-around {
        align-content: space-around!important
    }
    .align-content-xxl-stretch {
        align-content: stretch!important
    }
    .align-self-xxl-auto {
        align-self: auto!important
    }
    .align-self-xxl-start {
        align-self: flex-start!important
    }
    .align-self-xxl-end {
        align-self: flex-end!important
    }
    .align-self-xxl-center {
        align-self: center!important
    }
    .align-self-xxl-baseline {
        align-self: baseline!important
    }
    .align-self-xxl-stretch {
        align-self: stretch!important
    }
    .order-xxl-first {
        order: -1!important
    }
    .order-xxl-0 {
        order: 0!important
    }
    .order-xxl-1 {
        order: 1!important
    }
    .order-xxl-2 {
        order: 2!important
    }
    .order-xxl-3 {
        order: 3!important
    }
    .order-xxl-4 {
        order: 4!important
    }
    .order-xxl-5 {
        order: 5!important
    }
    .order-xxl-last {
        order: 6!important
    }
    .m-xxl-0 {
        margin: 0!important
    }
    .m-xxl-1 {
        margin: .25rem!important
    }
    .m-xxl-2 {
        margin: .5rem!important
    }
    .m-xxl-3 {
        margin: 1rem!important
    }
    .m-xxl-4 {
        margin: 1.5rem!important
    }
    .m-xxl-5 {
        margin: 3rem!important
    }
    .m-xxl-auto {
        margin: auto!important
    }
    .mx-xxl-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }
    .mx-xxl-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }
    .mx-xxl-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }
    .mx-xxl-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }
    .mx-xxl-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }
    .mx-xxl-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }
    .mx-xxl-auto {
        margin-right: auto!important;
        margin-left: auto!important
    }
    .my-xxl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }
    .my-xxl-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }
    .my-xxl-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }
    .my-xxl-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }
    .my-xxl-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }
    .my-xxl-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }
    .my-xxl-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }
    .mt-xxl-0 {
        margin-top: 0!important
    }
    .mt-xxl-1 {
        margin-top: .25rem!important
    }
    .mt-xxl-2 {
        margin-top: .5rem!important
    }
    .mt-xxl-3 {
        margin-top: 1rem!important
    }
    .mt-xxl-4 {
        margin-top: 1.5rem!important
    }
    .mt-xxl-5 {
        margin-top: 3rem!important
    }
    .mt-xxl-auto {
        margin-top: auto!important
    }
    .me-xxl-0 {
        margin-right: 0!important
    }
    .me-xxl-1 {
        margin-right: .25rem!important
    }
    .me-xxl-2 {
        margin-right: .5rem!important
    }
    .me-xxl-3 {
        margin-right: 1rem!important
    }
    .me-xxl-4 {
        margin-right: 1.5rem!important
    }
    .me-xxl-5 {
        margin-right: 3rem!important
    }
    .me-xxl-auto {
        margin-right: auto!important
    }
    .mb-xxl-0 {
        margin-bottom: 0!important
    }
    .mb-xxl-1 {
        margin-bottom: .25rem!important
    }
    .mb-xxl-2 {
        margin-bottom: .5rem!important
    }
    .mb-xxl-3 {
        margin-bottom: 1rem!important
    }
    .mb-xxl-4 {
        margin-bottom: 1.5rem!important
    }
    .mb-xxl-5 {
        margin-bottom: 3rem!important
    }
    .mb-xxl-auto {
        margin-bottom: auto!important
    }
    .ms-xxl-0 {
        margin-left: 0!important
    }
    .ms-xxl-1 {
        margin-left: .25rem!important
    }
    .ms-xxl-2 {
        margin-left: .5rem!important
    }
    .ms-xxl-3 {
        margin-left: 1rem!important
    }
    .ms-xxl-4 {
        margin-left: 1.5rem!important
    }
    .ms-xxl-5 {
        margin-left: 3rem!important
    }
    .ms-xxl-auto {
        margin-left: auto!important
    }
    .p-xxl-0 {
        padding: 0!important
    }
    .p-xxl-1 {
        padding: .25rem!important
    }
    .p-xxl-2 {
        padding: .5rem!important
    }
    .p-xxl-3 {
        padding: 1rem!important
    }
    .p-xxl-4 {
        padding: 1.5rem!important
    }
    .p-xxl-5 {
        padding: 3rem!important
    }
    .px-xxl-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }
    .px-xxl-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }
    .px-xxl-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }
    .px-xxl-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }
    .px-xxl-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }
    .px-xxl-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }
    .py-xxl-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }
    .py-xxl-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }
    .py-xxl-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }
    .py-xxl-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }
    .py-xxl-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }
    .py-xxl-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }
    .pt-xxl-0 {
        padding-top: 0!important
    }
    .pt-xxl-1 {
        padding-top: .25rem!important
    }
    .pt-xxl-2 {
        padding-top: .5rem!important
    }
    .pt-xxl-3 {
        padding-top: 1rem!important
    }
    .pt-xxl-4 {
        padding-top: 1.5rem!important
    }
    .pt-xxl-5 {
        padding-top: 3rem!important
    }
    .pe-xxl-0 {
        padding-right: 0!important
    }
    .pe-xxl-1 {
        padding-right: .25rem!important
    }
    .pe-xxl-2 {
        padding-right: .5rem!important
    }
    .pe-xxl-3 {
        padding-right: 1rem!important
    }
    .pe-xxl-4 {
        padding-right: 1.5rem!important
    }
    .pe-xxl-5 {
        padding-right: 3rem!important
    }
    .pb-xxl-0 {
        padding-bottom: 0!important
    }
    .pb-xxl-1 {
        padding-bottom: .25rem!important
    }
    .pb-xxl-2 {
        padding-bottom: .5rem!important
    }
    .pb-xxl-3 {
        padding-bottom: 1rem!important
    }
    .pb-xxl-4 {
        padding-bottom: 1.5rem!important
    }
    .pb-xxl-5 {
        padding-bottom: 3rem!important
    }
    .ps-xxl-0 {
        padding-left: 0!important
    }
    .ps-xxl-1 {
        padding-left: .25rem!important
    }
    .ps-xxl-2 {
        padding-left: .5rem!important
    }
    .ps-xxl-3 {
        padding-left: 1rem!important
    }
    .ps-xxl-4 {
        padding-left: 1.5rem!important
    }
    .ps-xxl-5 {
        padding-left: 3rem!important
    }
    .text-xxl-start {
        text-align: left!important
    }
    .text-xxl-end {
        text-align: right!important
    }
    .text-xxl-center {
        text-align: center!important
    }
}

@media (min-width:1200px) {
    .fs-1 {
        font-size: 2.5rem!important
    }
    .fs-2 {
        font-size: 2rem!important
    }
    .fs-3 {
        font-size: 1.75rem!important
    }
    .fs-4 {
        font-size: 1.5rem!important
    }
}

@media print {
    .d-print-inline {
        display: inline!important
    }
    .d-print-inline-block {
        display: inline-block!important
    }
    .d-print-block {
        display: block!important
    }
    .d-print-grid {
        display: grid!important
    }
    .d-print-table {
        display: table!important
    }
    .d-print-table-row {
        display: table-row!important
    }
    .d-print-table-cell {
        display: table-cell!important
    }
    .d-print-flex {
        display: flex!important
    }
    .d-print-inline-flex {
        display: inline-flex!important
    }
    .d-print-none {
        display: none!important
    }
}


/*# sourceMappingURL=bootstrap.min.css.map */


/* End */


/* Start:/bitrix/templates/karkas/assets/js/owlcarousel/assets/owl.carousel.min.css?16467386583356*/


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gallery-list-product-detail .owl-stage-outer .owl-stage .owl-item{
    margin-right: 30px;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(../../../../../templates/karkas/assets/js/owlcarousel/assets/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}


/* End */


/* Start:/bitrix/templates/karkas/assets/css/style.css?1649168671116150*/


/**
  * Name: Gettree
  * Version: 1.0
  * Author: Themesflat
  * Author URI: http://www.themesflat.com
*/


/**
  *	Reset
  *	Repeatable Patterns
  *	Top
  * Repeatable Patterns
  * bootstrap resetting elements
  * link style
  * button style
  * root
  * font flobal
  * effect hover
  * header
  * main menu
  * submenu
  * page title
  * home2 slider
  * blog
  * blog detail
  * footer
  * mobile navigation
  * gotop
  * preloader
*/


/* Reset
-------------------------------------------------------------- */

html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
caption,
canvas,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
form,
footer,
header,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
tt,
table,
tbody,
textarea,
tfoot,
thead,
time,
tr,
th,
td,
u,
ul,
var,
video {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

p {
    margin-bottom: 1rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

figure {
    margin: 0;
}

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

legend {
    white-space: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button,
input {
    line-height: normal;
}

input,
textarea {
    background-image: -webkit-linear-gradient( hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0));
    /* Removing the inner shadow, rounded corners on iOS inputs */
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    line-height: 1;
    cursor: pointer;
    /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: button;
    /* Corrects inability to style clickable 'input' types in iOS */
    border: none;
}

input[type='checkbox'],
input[type='radio'] {
    padding: 0;
    /* Addresses excess padding in IE8/9 */
}

input[type='search'] {
    -webkit-appearance: textfield;
    /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type='search']::-webkit-search-decoration {
    /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
    border: 0;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Repeatable Patterns
-------------------------------------------------------------- */

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font: 16px/24px 'Rubik', sans-serif;
    background-color: #fff;
    color: var(--primary-color4);
}

ul,
ol {
    padding: 0;
}

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

b,
strong {
    font-weight: 900;
}

button {
    transition-duration: 0.5s;
    border: none;
}

select,
option {
    font-size: 16px !important;
    font-family: 'Rubik', sans-serif !important;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background-color: var(--primary-color);
    padding: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button.search-submit-form {
    padding: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

select,
textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 8px 15px;
    color: #798883;
    height: 45px;
    border-radius: 5px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

textarea:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='time']:focus,
input[type='week']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='color']:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 2px var(--primary-color);
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
}

textarea:hover,
input[type='text']:hover,
input[type='password']:hover,
input[type='datetime']:hover,
input[type='datetime-local']:hover,
input[type='date']:hover,
input[type='month']:hover,
input[type='time']:hover,
input[type='week']:hover,
input[type='number']:hover,
input[type='email']:hover,
input[type='url']:hover,
input[type='search']:hover,
input[type='tel']:hover,
input[type='color']:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 2px var(--primary-color);
}

textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'] {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 2px #d7decc;
}

textarea {
    border: solid 2px #d7decc;
    width: 100%;
    padding: 10px 15px;
    height: 200;
}

input[type='checkbox'] {
    display: inline;
}

textarea:-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder {
    color: #798883;
    opacity: 1;
}

input:-ms-input-placeholder {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--primary-color2);
    opacity: 1;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}


/* bootstrap resetting elements */

textarea,
input[type='text'],
input[type='submit'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
.uneditable-input,
.dropdown-menu,
.navbar .nav>.active>a,
.navbar .nav>.active>a:hover,
.navbar .nav>.active>a:focus {
    -webkit-appearance: none;
    text-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    color: var(--primary-color2);
}

.blog-single .entry p {
    margin-bottom: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    color: var(--primary-color5);
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.white {
    color: #ffff !important;
}

.black {
    color: #0000 !important;
}

.text-pri2-color {
    color: var(--primary-color2);
}

.text-pri-color {
    color: var(--primary-color);
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.bd-radius-8 {
    border-radius: 8px;
}

.bd-radius-8-image img {
    border-radius: 8px;
}

.bd-radius-50-image .image-insert-shadow,
.bd-radius-50-image img {
    border-radius: 50%;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.image-insert-shadow {
    box-shadow: inset 0 0 0px 15px rgb(255 255 255 / 60%);
    border: 1px solid #fff;
}

.image-insert-shadow img {
    position: relative;
    z-index: -2;
}

.mg-left-15 {
    margin-left: 15px;
}

.mg-right-15 {
    margin-right: 15px;
}

.bd-radius-50 {
    border-radius: 50%;
}

.mg-bottom5 {
    margin-bottom: 5px;
}

.mg-bottom-8 {
    margin-bottom: 8px;
}

.mg-bottom-15 {
    margin-bottom: 15px;
}

.mg-bottom-20 {
    margin-bottom: 20px;
}

.mg-bottom-22 {
    margin-bottom: 22px;
}

.mg-bottom-25 {
    margin-bottom: 25px;
}

.mg-bottom30 {
    margin-bottom: 30px;
}

.mg-bottom-35 {
    margin-bottom: 35px;
}

.mg-bottom-40 {
    margin-bottom: 40px;
}

.mg-bottom-43 {
    margin-bottom: 43px;
}

.mg-bottom-45 {
    margin-bottom: 45px;
}

.mg-bottom-50 {
    margin-bottom: 50px;
}

.mg-bottom-60 {
    margin-bottom: 60px;
}

.mg-bottom90 {
    margin-bottom: 90px;
}

.mg-top-5 {
    margin-top: 5px;
}

.mg-top-15 {
    margin-top: 15px;
}

.mg-top-20 {
    margin-top: 20px;
}

.mg-top-25 {
    margin-top: 25px;
}

.mg-top-30 {
    margin-top: 30px;
}


/* link style 1 
---------------------------------------------------------------*/

a {
    text-decoration: none;
    color: var(--primary-color2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: var(--primary-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* link tyle 2 
--------------------------------------------------------------------*/

.link-style2 a {
    text-decoration: none;
    color: var(--primary-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.link-style2 a:hover,
.link-style2 a:focus {
    color: var(--primary-color2);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* link style 3 (text white hover primary2)
----------------------------------------------------------------------- */

.link-style3 a {
    text-decoration: none;
    color: #ffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.link-style3 a:hover,
.link-style3 a:focus {
    color: var(--primary-color2);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* link style 4 (text white hover primary)
----------------------------------------------------------------------- */

.link-style4 a {
    text-decoration: none;
    color: #181818;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.link-style4 a:hover,
.link-style4 a:focus {
    color: var(--primary-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* link style 5 
---------------------------------------------------------------*/

.link-style5 a {
    text-decoration: none;
    font-weight: 500;
    color: var(--primary-color4);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.link-style5 a:hover,
.link-style5 a:focus {
    color: var(--primary-color2);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* link style 6 
---------------------------------------------------------------*/

.link-style6 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    text-shadow: 1px 1px rgb(0 0 0 / 60%);
}

.link-style6 a:hover {
    color: #ffff;
}


/* button border
---------------------------------------------------------------*/

.button-style {
    font-size: 18px;
    padding: 17px 37px 17px 37px;
    border-radius: 12px;
}

.button-style-2 {
    font-size: 18px;
    padding: 13px 36px 13px 36px;
    border-radius: 12px;
}


/* button style 1
---------------------------------------------------------------*/

.btn-1 {
    font-weight: 500;
    border: solid 2px #707070;
}

.btn-1:hover {
    border: solid 2px var(--primary-color);
    background-color: var(--primary-color);
    color: #ffff !important;
}


/* button style 2
---------------------------------------------------------------*/

.btn-2 {
    font-weight: 500;
    border: solid 2px var(--primary-color);
    background-color: var(--primary-color);
    color: #ffff !important;
}

.btn-2:hover {
    background-color: rgba(255, 255, 255, 0);
    color: var(--primary-color) !important;
    border: solid 2px var(--primary-color);
}


/* root 
---------------------------------------------------------------*/

:root {
    /* color */
    --primary-color: #FF5959 !important;
    --primary-color2: #DE5151 !important;
    --primary-color3: #f6f3ec !important;
    --primary-color4: #525368 !important;
    --primary-color5: #181818 !important;
    --primary-color6: #faab34 !important;
    --primary-color7: #706c69 !important;
    --primary-color8: #47ADEF !important;
}


/* button */

.button>.btn,
.btn-home,
.btn2 {
    font-weight: 500;
    font-size: 18px;
    padding: 16px 36px 16px 36px;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* btn style 1 */

.button>.btn {
    color: var(--primary-color2);
    border: solid 2px #bbd0c2;
}

.button>.btn:hover,
.btn-home {
    color: #ffff;
    border: solid 2px var(--primary-color);
    background-color: var(--primary-color);
}

.button>.btn-home:hover {
    color: var(--primary-color2);
    border: solid 2px var(--primary-color2);
}


/* button style 2  */

.button .btn2 {
    display: inline-block;
    color: #ffff;
    border: solid 2px var(--primary-color);
    background-color: var(--primary-color);
}

.button .btn2:hover {
    color: var(--primary-color);
    border: solid 2px var(--primary-color);
    background-color: #0f422900;
}


/* text font global */

.section-desc,
.section-desc-2,
.section-desc-heading {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--primary-color4);
    margin-top: 22px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3.8px;
    font-family: 'Rubik', sans-serif;
    line-height: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-title {
    font-family: 'Days', sans-serif;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 52px;
    color: var(--primary-color5);
}

.section-heading-rubik-size12 {
    font-size: 12px;
    line-height: 30px;
    font-weight: 400;
}

.section-heading-rubik-size14 {
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
}

.section-heading-rubik-size16 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.section-heading-rubik-size18 {
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}

.section-heading-rubik-size20,
.section-heading-jost-size20,
.section-heading-jost-size22,
.section-heading-jost-size28,
.section-heading-jost-size29,
.section-heading-jost-size34,
.section-heading-jost-size46 {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.section-heading-jost-size20,
.section-heading-jost-size22,
.section-heading-jost-size28,
.section-heading-jost-size29,
.section-heading-jost-size34,
.section-heading-jost-size46 {
    font-family: 'Days', sans-serif;
}

.section-heading-jost-size22 {
    font-size: 22px;
}

.section-heading-jost-size28 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.6px;
}

.section-heading-jost-size29 {
    font-size: 29px;
    letter-spacing: 0px;
    line-height: 48px;
}

.section-heading-jost-size34 {
    font-size: 34px;
}

.section-heading-jost-size46 {
    font-size: 46px;
    letter-spacing: -1px;
}

.section-desc-2 {
    font-weight: 300;
    letter-spacing: 0.3px;
}

.section-desc-heading {
    font-weight: 700;
    line-height: 26px;
}


/* font weight light */

.fw-300 {
    font-weight: 300;
}


/* font weight regular */

.fw-400 {
    font-weight: 400;
}


/* font weight medium */

.fw-500 {
    font-weight: 500;
}


/* font weight semibold */

.fw-600 {
    font-weight: 600;
}


/* display flex */

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.read-more {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    line-height: 66px;
    margin-top: 10px;
}

.read-more::after {
    content: '\f061';
    font-family: 'FontAwesome';
    margin-left: 3px;
}

.read-more .fas {
    margin-left: 10px;
}

.heading-16px-rubik {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
}

.text-decs {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
}

.heading-16px-rubik {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
}

header.fixed-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 1px 1px 5px 0px rgb(0 0 0 / 20%);
}


/* effect hover */

.grow-up-hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.grow-up-hover:hover img {
    transform: scale(1.1);
}

.hover-up {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-7%);
}

.hover-up-style2:hover {
    transform: translateY(-2%);
}

.hover-up-style2 {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.over-flow-hidden {
    overflow: hidden;
}

.error {
    margin-top: -10px;
    color: #191919;
}


/* ripper effect 
--------------------------------------------------------------*/

.ripple,
.ripple:after,
.ripple:before {
    width: 120px;
    height: 120px;
    -webkit-box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
    -moz-box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
    -ms-box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
    -o-box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
    box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
}

.ripple:before {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -ms-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
    content: "";
    position: absolute;
}

.ripple:after {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.ripple,
.ripple:before,
.ripple:after {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}


/* Header 
---------------------------------------------------------------*/

.top-header {
    padding: 0 3.2% 0 4%;
    background-color: var(--primary-color);
}

.top-header .top-bar-left {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    line-height: 50px;
    float: left;
}

.top-header .top-location,
.top-mail {
    font-size: 14px;
    font-weight: 500;
}

.top-bar-left .top-location::before {
    content: '\f041';
    font-family: 'FontAwesome';
    padding-right: 5px;
}

.top-bar-right {
    line-height: 50px;
}

.top-mail::before {
    content: '\f003';
    font-family: 'FontAwesome';
    font-size: 18px;
    padding-right: 5px;
}

.top-header .top-bar-right {
    float: right;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    line-height: 50px;
}

.widgets-nav-social {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    line-height: 53px;
    padding-left: 16px;
}

.top-header .fa {
    font-size: 15px;
    padding-left: 21px;
}

#header .header-wrap {
    padding: 0 2.4% 0 2.8%;
    height: 101px;
    background-color: var(--primary-color3);
}

#header .inner-header {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

#header .site-header-right {
    float: right;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    line-height: 101px;
}

#header .site-header-right .button {
    margin-top: 0px;
    margin-left: 0px;
}

.button.order-call {}

#header .cart .fa,
.search .fa {
    font-size: 20px;
    padding: 16px 16px 16px 16px;
    color: var(--primary-color) !important;
    border-radius: 65px;
    background-color: #ffff;
}

#header .cart .fa:hover,
.search .fa:hover {
    background-color: var(--primary-color);
    color: #ffff !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#header .cart {
    padding-left: 26px;
}

#header .input-group {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

button.btn.btn-outline-primary {
    z-index: 1;
}

.btn:hover,
.btn:focus,
.btn.focus {
    background-color: var(--primary-color);
    color: var(--primary-color2);
}

#header .header-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.header-inner .widgets-input .search-field {
    padding: 25px 70px 25px 15px;
}

.header-inner .widgets-input .search-submit {
    padding: 16px 20px 16px 20px;
}


/* show search header 
--------------------------------------------------------------*/

.flat-show-search {
    position: relative;
    float: left;
    z-index: 200;
}

.show-search {
    float: right;
    position: relative;
}

.top-search {
    position: absolute;
    right: 0;
    top: 110%;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.top-search #searchform-all {
    position: relative;
}

.top-search.show {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    top: 100%;
}


/* Main Menu
-----------------------------------------------------------------------------------*/

.nav-wrap {
    padding-right: 2%;
    line-height: 100px;
    text-align: center;
}

#mainnav .menu>li {
    display: inline-block;
    position: relative;
}

#mainnav .menu>li>a {
    position: relative;
    line-height: 90px;
    display: inline-block;
    margin: 0 12px;
    font-weight: 400;
}

#mainnav .menu li a {
    font-size: 17px;
    font-weight: 400;
    color: var(--primary-color5);
}

#mainnav .menu>li>a:hover,
#mainnav>ul>li.menu-item-has-children:hover>a::after,
#mainnav .menu .current-menu-item>a,
#mainnav .menu .current-menu-item>a::after,
#mainnav-mobi .menu .current-menu-item>a,
#mainnav-mobi .menu .current-item>a {
    color: var(--primary-color);
}

#mainnav .menu>li:last-child a {
    padding-right: 0;
}

#mainnav .menu>li a i.fa {
    padding-left: 6px;
}


/* Sub-menu 
---------------------------------------------------------------*/

#mainnav .menu>li>.sub-menu {
    display: block !important;
    opacity: 0;
    position: absolute;
    width: 250px;
    background-color: #ffff;
    left: 0;
    top: 99%;
    box-shadow: -2px 6px 23px #b4b4b44f;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
}

#mainnav .menu>li:hover>.sub-menu {
    display: block !important;
    opacity: 1;
    z-index: 100;
    left: 0;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    border-radius: 15px;
    overflow: hidden;
}

#mainnav .menu>li>.sub-menu>li>a {
    display: block;
    padding: 0px 0px 0px 15px;
    line-height: 45px;
    color: var(--primary-color5);
    text-align: left;
}

#mainnav .menu>li>.sub-menu>li>a {
    font-size: 15px;
}

#mainnav .menu>li>.sub-menu>li>a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 13px;
    color: var(--primary-color);
    margin-right: 8px;
}

#mainnav .menu>li>.sub-menu>li:hover a {}

#mainnav .menu>li>.sub-menu>li:hover a:before {
    color: #fff;
}

#mainnav .menu>li>.sub-menu>li {
    border-top: 1px solid #e1e1e157;
}

#mainnav .menu>li>.sub-menu>li:first-child {
    border-top: none;
}

#mainnav .menu>li>.sub-menu>li:hover a,
#mainnav .current-item a {
    background-color: var(--primary-color);
    color: #ffff !important;
}

#mainnav>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#mainnav>ul>li.current-menu-item>a::before,
#mainnav>ul>li>a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

#mainnav>ul>li.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    color: var(--primary-color2);
    font-weight: 700;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 14px;
    margin-left: 4px;
}


/* Page Title 
-------------------------------------------------------------------------------------------*/

.inner-title {
    position: relative;
    height: 300px;
    background-size: cover;
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/home/box-flowers-green-garden-background.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.inner-title-home {
    height: 755px;
}

.overlay-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color2);
    opacity: 0.7;
}

.page-title .banner-title {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 50;
    text-align: center;
    position: absolute;
}

.page-title-heading {
    line-height: 68.66px;
    font-family: 'Days', sans-serif;
    font-weight: 700;
    font-size: 36.97px;
    color: #ffff;
}

.page-title-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 51.66px;
    color: #ffffffb8;
}

.page-title .blog-link a:hover {
    color: var(--primary-color);
}

.page-title-content-inner::before {
    content: '|';
    padding: 0 5px;
}


/* home02 slider 
---------------------------------------------------------------*/

.slider-home02 {
    margin-left: 38.8%;
    padding-top: 24.2%;
}

.slider-home02 .button {
    padding-top: 56px;
    padding-left: 3px;
}

.slider-image {
    padding-top: 14.2%;
    margin-left: -25px;
}

.features-home02 {
    background-color: var(--primary-color2);
}


/* artical 
---------------------------------------------------------------*/

.post-wrap .image-box {
    position: relative;
}

.post-wrap .date-image {
    position: absolute;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: #ffff;
    padding: 9px 26px 9px 22px;
    background-color: var(--primary-color);
    bottom: -1px;
    left: 26px;
}

.content-box {
    border-radius: 5px;
    background-color: #f8f8f8;
    padding: 13px 27px 8px 27px;
}

.content-box .post-content-inner {
    padding-top: 11px;
}

.content-box .post-content-inner ul {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.content-box .post-content-inner .line::after,
.line::before {
    content: '|';
}

.content-box .content-art {
    margin-top: 17px;
}

.post-wrap .text-decs {
    letter-spacing: 0.2px;
    padding-right: 8.9px;
}

.content-box .desc-content-box {
    color: #525368;
    margin-top: 12px;
    padding-right: 3px;
    letter-spacing: 0px;
}

article.article-2 {
    padding-top: 39px;
}

article.article-3 {
    padding-top: 63px;
}

article.article-4 {
    padding-top: 57px;
}


/* blog detail 
---------------------------------------------------------------*/

.flat-blog-standard {
    margin: 120px 0 163px 0;
}

.content-blog-detail .text-decs {
    color: var(--primary-color4);
    padding: 10px 3px 0 1px;
    letter-spacing: 0px;
}

.content-info {
    font-size: 12px;
    line-height: 53px;
}

.user::before {
    content: '\f2c0';
    font-family: 'FontAwesome';
}

.content-blog-detail .date::before {
    content: '\f073';
    font-family: 'FontAwesome';
}

.content-blog-detail .date {
    padding-left: 26px;
}

.content-blog-detail .date::before,
.user::before {
    padding-right: 4px;
}

.content-blog-detail .heading-content-box {
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 42px;
}

.content-blog-detail .content-note-author {
    padding: 8px 38px 6px 46px;
    background-color: var(--primary-color3);
    border-radius: 7px;
    border-left: 8px solid var(--primary-color);
    margin: 30px 0 18px 0;
}

.content-blog-detail .content-note-author .author {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 52px;
}

.content-blog-detail .image-2 {
    padding-top: 37px;
}

.content-blog-detail .content-2.heading-content-box {
    padding-top: 31px;
    padding-bottom: 2px;
}

.content-blog-detail .nav-access-blog-detail .tick::before {
    color: var(--primary-color);
    padding-right: 17px;
    content: '\f00c';
    font-family: 'FontAwesome';
}

.content-blog-detail .nav-access-blog-detail li {
    padding-bottom: 7px;
}

.content-blog-detail ul.nav-access-blog-detail {
    padding-left: 3px;
    padding-top: 13px;
}

.content-blog-detail hr {
    margin-top: 39px;
    margin-bottom: 36px;
    border: 0;
    border-top: 2px solid var(--primary-color3);
}

.content-blog-detail .list-related {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-top: 3px;
}

.content-blog-detail .list-related a {
    margin-right: 3px;
}

.content-blog-detail .bottom-content {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    position: relative;
}

.content-blog-detail .bottom-content .social-share {
    position: absolute;
    right: 0;
    margin-right: -3px;
}

.content-blog-detail .bottom-content .title {
    color: #222222;
    font-weight: 700;
}

.content-blog-detail .bottom-content .title2 {
    margin-left: 37px;
    color: #222222;
    font-weight: 700;
}

.content-blog-detail .bottom-content .decs {
    color: var(--primary-color4);
    padding-top: 5px;
}

.content-blog-detail .widgets-nav-social {
    line-height: 29px;
}

.content-blog-detail .widgets-nav-social .fa {
    padding-left: 19px;
    color: var(--primary-color);
}

.content-blog-detail .widgets-nav-social .fa:hover {
    color: var(--primary-color4);
}

.content-blog-detail .widgets-title-comment {
    font-size: 37px;
    font-family: 'Days', sans-serif;
    letter-spacing: -0.7px;
    line-height: 54px;
    color: var(--primary-color2);
    font-weight: 700;
}

.content-blog-detail .widgets-comment {
    padding-top: 99px;
}

.content-blog-detail .box-1 {
    margin-top: 23px;
    padding: 24px 43px 20px 32px;
    border: 2px solid #e2eeff;
    border-radius: 7px;
}

.content-blog-detail .box-2 {
    margin-left: 72px;
    margin-top: 20px;
    padding: 18px 27px 25px 36px;
    border: 2px solid #e2eeff;
    border-radius: 7px;
}

.content-blog-detail .widgets-comment .image-comment {
    float: left;
}

.content-blog-detail .content-comment {
    padding-left: 121px;
}

.content-blog-detail .widgets-comment .title {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    position: relative;
}

.content-blog-detail .widgets-comment .heading {
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: var(--primary-color2);
}

.content-blog-detail .widgets-comment .date-comments {
    position: absolute;
    right: 0;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: var(--primary-color2);
}

.content-blog-detail .widgets-comment .widgets-title-comment {
    letter-spacing: -0.6px !important;
}

.content-blog-detail .widgets-comment .reply {
    padding-top: 10px;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.content-blog-detail .tf-input {
    padding: 30px 43px 27px 32px;
    border: 2px solid #e2eeff;
    border-radius: 3px;
    float: left;
}

.content-blog-detail .widgets-post-comment {
    margin-top: 84px;
}

.content-blog-detail .widgets-input-box::placeholder {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-family: 400;
    line-height: 30px;
}

.content-blog-detail .widgets-input-box {
    padding-top: 32px;
}

.content-blog-detail .input-yourname {
    width: 48%;
    margin-right: 15px;
    padding-left: 22px;
}

.content-blog-detail .input-youremail {
    width: 48%;
    margin-left: 15px;
    padding-left: 24px;
}

.content-blog-detail .input-yourname,
.input-youremail,
.input-yourmessage {
    letter-spacing: 0.9px;
}

.content-blog-detail .input-yourmessage {
    margin: 11px 0 47px 0;
    height: 170px;
    padding: 18px 0 0 22px;
}

.content-blog-detail .input-message {
    width: 100%;
}

.content-blog-detail .tf-submit-input .tf-button {
    padding: 21px 36px;
    background-color: var(--primary-color);
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 12px;
    color: #ffff;
    border-radius: 5px;
}

.content-blog-detail .tf-submit-input .tf-button:hover {
    background-color: var(--primary-color2);
    color: #ffff;
}

.dividers {
    width: 100%;
    overflow: hidden;
}


/* Main Content 
---------------------------------------------------------------*/

.wrap-post {
    margin: 0 -15px;
    overflow: hidden;
}

article.post.s1 {
    margin-bottom: 40px;
    position: relative;
    float: left;
    width: 50%;
    padding: 0 15px;
}

article.post .featured-post ul.post-date {
    position: absolute;
    top: 0;
    left: 45px;
    background-color: #2e363a;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 2px 10px 7px 12px;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

article.post .featured-post ul.post-date .day {
    font-size: 30px;
    margin-top: 2px;
    margin-bottom: 2px;
}

article.post .content-post {
    padding: 35px 30px 20px 30px;
    position: relative;
    background-color: #f7f7f7;
}

article.post .content-post:after {
    content: '';
    position: absolute;
    width: 64px;
    height: 5px;
    background-color: #30ab56;
    top: 0px;
    left: 30px;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

article.post:hover .featured-post ul.post-date {
    background-color: #18ba60;
}

article.post .content-post h4 {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
}

article.post .content-post .more-link {
    margin-top: 19px;
}

article.post .content-post .more-link a {
    background-color: #2e363a;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
    line-height: 40px;
    padding: 0 38px 3px;
    letter-spacing: 0;
    color: #ffffff;
}

article.post .content-post .more-link a:hover {
    background-color: #18ba60;
}


/* Pagination
-------------------------------------------------------------- */

.themesflat-pagination {
    margin: 100px 0;
}

.themesflat-pagination ul {
    margin: 0px;
    position: relative;
}

.themesflat-pagination ul li {
    display: inline-block;
    padding: 0px;
    margin-right: 12px;
    margin-bottom: 12px;
    background-color: var(--primary-color3);
    border-radius: 10px;
}

.themesflat-pagination ul li .page-numbers {
    display: inline-block;
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
    color: #0d1f35;
    text-align: center;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: transparent;
}

.themesflat-pagination ul li .page-numbers span.fa {
    font-size: 20px;
}

.themesflat-pagination ul li .page-numbers:hover,
.themesflat-pagination ul li .page-numbers.current {
    background-color: var(--primary-color);
    color: #fff;
}

.themesflat-pagination .page-prev-next {
    width: 100%;
}


/* pagination style 2 */

.themesflat-pagination-style2 {
    margin-top: 58px;
}

.themesflat-pagination-style2 .page-prev-next {
    height: 164px;
    width: 100%;
    background-color: var(--primary-color3);
}

.themesflat-pagination-style2 .text-left,
.themesflat-pagination-style2 .text-right {
    position: relative;
    width: 50%;
    display: flex;
    height: 100%;
}

.themesflat-pagination-style2 .text-left {
    float: left;
    padding: 38px 155px 38px 125px;
    background-color: var(--primary-color2);
}

.themesflat-pagination-style2 .text-right {
    float: right;
    padding: 38px 154px 38px 134px;
    background-color: var(--primary-color);
}

.themesflat-pagination-style2 .btn-prev::before,
.themesflat-pagination-style2 .btn-next::after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 30px;
    padding: 25px 35px;
    border-radius: 8px;
    border: solid 1px #e1e1e185;
}

.themesflat-pagination-style2 .btn-next::after {
    content: "\f105";
}

.themesflat-pagination-style2 .btn-prev {
    position: absolute;
    left: 39px;
    top: 50%;
    transform: translateY(-50%);
}

.themesflat-pagination-style2 .btn-next {
    position: absolute;
    right: 39px;
    top: 50%;
    transform: translateY(-50%);
}

.flat-case-details .paginate-box .content-features {
    margin-left: 29px;
}

.flat-case-details .paginate-box a {
    color: #ffff;
}


/* side-bar */

.widgets-side-bar-title {
    font-family: 'Days', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
    color: #191919 !important;
}


/* search */

.widgets-search .widgets-side-bar-title {
    padding: 5px 0 28px 0;
}

.widgets-input .search-form {
    position: relative;
}

.widgets-input .search-field {
    border-radius: 0;
    padding: 37px 90px 37px 15px;
}

.widgets-input .search-field::placeholder {
    font-size: 18px;
}

.widgets-input .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    padding: 28px 30px 28px 30px;
}

.widgets-input .search-submit::after {
    content: "\f002";
    font-family: 'FontAwesome';
    font-size: 22px;
}

.widgets-input .search-submit:hover {
    background-color: var(--primary-color2);
}

.widgets-category .widgets-side-bar-title {
    padding: 46px 0 30px 0;
}


/* category */

.widgets-category li {
    border: solid 1px #ccc;
    padding: 9px;
    border-radius: 6px;
    margin-bottom: 16px;
    position: relative;
    position: relative;
    transition-duration: 0.5s;
}

.widgets-category li:hover {
    border: solid 1px var(--primary-color);
    transition: 0.5s ease-in-out;
}

.widgets-category a {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding-left: 12px;
    color: #222222;
}

.widgets-category a:hover {
    color: var(--primary-color);
}

.widgets-category .list-category a:after {
    content: '\f0da';
    position: absolute;
    right: 28px;
    font-family: 'FontAwesome';
}


/* Widget lastest */

.widget.widget_lastest h2 {
    padding: 30px 0 14px 3px;
}

.widget.widget_lastest ul {
    margin: 0px;
}

.widget.widget_lastest ul li {
    margin-top: 16px;
    padding: 14px 15px 10px 15px;
    border: solid 1px #ccc;
    border-radius: 5px;
    padding-bottom: 9px;
}

.widget.widget_lastest ul li:hover {
    background-color: var(--primary-color3);
    border: solid 1px var(--primary-color);
    transition: 0.5s;
}

.widget.widget_lastest .thumb {
    float: left;
}

.widget.widget_lastest .text {
    overflow: hidden;
    padding-left: 17px;
    padding-right: 15px;
}

.widget.widget_lastest h3 {
    color: #565872 !important;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    padding-right: 25px;
}

.widget.widget_lastest .post-date {
    font-size: 13px;
    color: var(--primary-color2) !important;
    padding-top: 10px;
}

.widget.widget_lastest img {
    width: 75px;
    height: 70px;
}

#footer .widget.widget_lastest h3 {
    color: #fff;
}

.widget.widget_lastest .title-thumb {
    color: #565872;
}

.widget.widget_lastest .title-thumb:hover {
    color: var(--primary-color2);
}

.widget.widget_lastest .date {
    color: var(--primary-color) !important;
    font-size: 12px;
    font-weight: 400;
}

.widget.widget_lastest .date:hover {
    color: var(--primary-color2) !important;
}

.widget.widget_lastest .date::before {
    content: '\f073';
    font-family: 'FontAwesome';
    padding-right: 10px;
    font-size: 15px;
}


/* Widget lastest twitter */

.widget.widget_lastest_twitter ul {
    margin: 0px;
}

.widget.widget_lastest_twitter ul li {
    padding: 2px 0px;
    margin-top: 12px;
}


/* .widget.widget_lastest_twitter ul li:first-child { margin-top: 0px; } */

.widget.widget_lastest_twitter .icon-wrap {
    position: relative;
    float: left;
    margin-top: 5px;
    margin-right: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget.widget_lastest_twitter .icon-wrap.has-width.w30 {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    background-color: #414141;
    color: #fff;
}

.widget.widget_lastest_twitter .text {
    overflow: hidden;
    font-weight: 300;
    color: #666;
}

.widget.widget_lastest_twitter .text a {
    font-weight: 600;
    color: #222;
}

.widget.widget_lastest_twitter .text p {
    margin: 0px;
}

.widget.widget_lastest_twitter li:hover .icon-wrap.has-width.w30 {
    background-color: #ffc30c;
}

.widget.widget_lastest_twitter .text a:hover {
    color: #ffc30c;
}


/* widget contact info */

.widgets-contact-info {
    padding-top: 39px;
    height: 490px;
}

.widgets-contact-info .contact-info-box {
    border-radius: 5px;
}

.widgets-contact-info .contact-info-img:hover {
    opacity: 0.9;
}

.widgets-contact-info .contact-info-box {
    background-color: var(--primary-color8);
}

.widgets-contact-info .contact-info-content {
    padding: 27px 45px 22px 45px;
}

.widgets-contact-info .heading-16px-rubik {
    color: #ffff;
}

.widgets-contact-info .heading-16px-rubik:first-child {
    font-weight: 400;
}

.widgets-contact-info .heading-16px-rubik:last-child {
    font-weight: 700;
    line-height: 12px;
}


/* call - us */

.widgets-contact-info .call-us {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.widgets-contact-info .call-us {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.widgets-contact-info .content-call-us,
.content-our-mail {
    padding-left: 14px;
}

.widgets-contact-info .icon-call-us::before {
    content: '\f095';
    font-family: 'FontAwesome';
}


/* our-mail */

.widgets-contact-info .our-mail {
    padding-top: 15px;
}

.widgets-contact-info .our-mail {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.widgets-contact-info .icon-our-mail::before {
    content: '\f0e0';
    font-family: 'FontAwesome';
}


/* footer 
--------------------------------------------------------------*/

.footer {
    position: relative;
    height: auto;
    background-color: #F6F3EC;
    background-repeat: no-repeat;
    background-size: cover;
}


/* top footer */

.top-footer-wrap {
    position: relative;
}

.footer .top-footer {
    position: absolute;
    right: 0;
    left: 0;
    top: -57px;
    z-index: 3;
    display: flex;
}

.footer .top-footer-left {
    width: 20%;
}

.footer .top-footer-right {
    width: 80%;
    padding-left: 20px;
}

.footer .logo-footer {
    padding: 31px 42px 31px 46px;
    background-color: #fff;
    border-radius: 10px;
    margin-right: 16px;
    text-align: center;
}

.footer .footer-contact-info {
    background-color: #fff;
    border-radius: 10px;
    height: 122px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 0px 10px rgb(0 0 0 / 6%);
}

.footer .footer-contact-info .footer-info-item {
    /* width: 33.33333333%; */
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
    position: relative;
}

.icon-fi {
    font-size: 26px;
    padding-left: 30px;
    color: var(--primary-color);
    line-height: 0;
}

.footer .footer-contact-info .footer-info-item-content {
    padding: 0 20px 0 30px;
}

.footer .footer-contact-info .footer-info-item-content span {
    display: block;
    line-height: 1.4;
    color: var(--primary-color4);
}

.footer .footer-contact-info .footer-info-item-content span.one-l a {
    color: var(--primary-color4);
    font-size: 17px;
}

.footer .separator {
    margin-top: auto;
    margin-bottom: auto;
    width: 1.8px !important;
    height: 52px;
    background-color: #ADAFA9;
    opacity: 0.4;
    border-radius: 20px;
    z-index: 2;
}


/* .footer .footer-contact-info .footer-info-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: auto;
    width: 1.8px;
    height: 52px;
    background-color: #ADAFA9;
    opacity: 0.4;
    border-radius: 20px;
    z-index: 2;
} */

.footer .footer-contact-info .footer-info-item:last-child::before {
    display: none;
}


/*.footer .footer-contact-info .footer-info-item::after {
    content: '';
    position: absolute;
    width: 1.8px;
    height: 52px;
    background-color: var(--primary-color);
    opacity: 0.4;
    right: 25.2%;
    border-radius: 20px;
    z-index: 2;
    top: 30%;
}*/


/* list-footer */

.list-footer {
    padding-top: 144px;
    margin-left: -0.7%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.list-footer .footer-item {
    width: 25%;
}

.list-footer .widgets-about {
    padding-right: 25px;
    margin-left: 1.7%;
    padding-right: 5%;
}

.list-footer .heading-20px {
    font-size: 22px;
    color: #181818;
    font-weight: 600;
    letter-spacing: 1px;
}

.list-footer .text-decs {
    padding-top: 0px;
    padding-right: 10px !important;
    color: #181818;
}

.widgets-about .widgets-nav-social {
    padding-top: 7px;
    padding-left: 0.2%;
}

.widgets-about .widgets-nav-social .fa {
    font-size: 13px;
    padding: 10px 11px 10px 11px;
    color: var(--primary-color);
    border: solid 1px #fff;
    background-color: #fff;
    border-radius: 88px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-right: 20px;
}

.widgets-about .widgets-nav-social .fa.fa-facebook {
    padding: 10px 13px 10px 13px;
    border: solid 1px var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.widgets-about .widgets-nav-social .fa:hover {
    color: #ffff;
    border: solid 1px var(--primary-color);
    background-color: var(--primary-color);
    transition: 0.5s;
}


/* widgets-menu-1 */

.widgets-menu-1 {
    margin-left: 11.1%;
}

.widgets-menu-1 .list-menu-1 {
    padding-top: 0px;
    padding-left: 18px;
    line-height: 44px;
}

.widgets-menu-1 .list-menu-1,
.list-menu-2 li {
    list-style: square !important;
    color: #a0a2a6 !important;
    margin-bottom: 12px;
}


/* widgets menu 2 */

.widgets-menu-2 {
    margin-left: -14.7%;
    margin-right: 30%;
}

.widgets-menu-2>.text-decs {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 12px;
    padding-top: 47px;
    padding-left: 22px;
    line-height: 25px;
    letter-spacing: 0px;
}

.widgets-menu-2 .heading-menu2 {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
}

.list-footer .text-decs {
    padding-right: 20px;
}

.widgets-menu-2 .fa {
    padding-right: 5px;
}

.widgets-menu-2 .list-wrap {
    padding-bottom: 14px;
}

.widgets-menu-2 .entry-date {
    font-size: 12px;
    color: #e1e1e1;
}

.widgets-menu-2 .entry-date::before {
    padding-right: 10px;
    content: '\f073';
    font-size: 12px;
    font-family: 'FontAwesome';
}


/* widget-subcribe */

.widgets-subcribes {
    margin-left: -20.7%;
}

.widgets-subcribes .widgets-input-subcribes {
    position: relative;
    width: 98.9%;
    padding-top: 28px;
}

.widgets-subcribes .widgets-text-input {
    color: #ffff;
}

.widgets-subcribes .text-decs {
    padding-right: 5% !important;
}

.widgets-subcribes .widgets-text-input {
    border: solid 1px #ffff;
    padding: 35px 34px 33px 30px;
    border-radius: 65px;
    background-color: var(--primary-color2);
}

.widgets-subcribes .widgets-text-input:hover {
    border: solid 1px var(--primary-color);
}

.widgets-subcribes .widgets-text-input::placeholder {
    color: #ffff;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.widgets-subcribes .widgets-input-subcribes .fa {
    color: #ffff;
    font-size: 20px;
    padding: 20px;
    border-radius: 65px;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    margin-right: 5px;
    top: 33px;
    transition-duration: 0.5s;
}

.widgets-subcribes .widgets-input-subcribes .fa:hover {
    background-color: var(--primary-color2);
    transition: 0.5s;
}


/* footer bottom */

.footer-bottom {
    padding-top: 62px;
}

.footer-bottom .copyright {
    border-top: solid 1px rgba(180, 174, 174, 0.212);
}

.footer-bottom .copyright-text {
    margin-top: 40px;
    margin-right: 1.8%;
    text-align: center;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    line-height: 19px;
    color: #181818;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
}


/* Mobile navigation
---------------------------------------- */

#mainnav-mobi {
    position: absolute;
    display: block;
    margin: 0 auto;
    width: 100%;
    background-color: var(--primary-color3);
    z-index: 1000;
    left: 0;
    right: 0;
}

#mainnav-mobi ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

#mainnav-mobi ul li {
    margin: 0;
    position: relative;
    text-align: left;
    cursor: pointer;
    border-bottom: solid 1px #0F42291A;
}

#mainnav-mobi ul>li>a {
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    color: var(--primary-color2);
    font-weight: 500;
}

#mainnav-mobi ul.sub-menu {
    top: 100%;
    left: 0;
    z-index: 2000;
    position: relative;
}

#mainnav-mobi>ul>li>ul>li>ul>li a {
    padding-left: 45px !important;
}

#mainnav-mobi ul.sub-menu>li>a {
    display: block;
    text-decoration: none;
    padding: 0 30px;
    border-top-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#mainnav-mobi>ul>li>ul>li:first-child a {
    border-top: none;
}

#mainnav-mobi ul.sub-menu>li>a:hover,
#mainnav-mobi>ul>li>ul>li.active>a {
    color: var(--primary-color);
}

.btn-menu {
    display: none;
    float: right;
    position: relative;
    background: transparent;
    cursor: pointer;
    margin: 38px 0px 38px 20px;
    width: 26px;
    height: 25px;
    -webkit-transition: all ease 0.238s;
    -moz-transition: all ease 0.238s;
    transition: all ease 0.238s;
}

.btn-menu:before,
.btn-menu:after,
.btn-menu span {
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.238s;
    -moz-transition: all ease 0.238s;
    transition: all ease 0.238s;
}

.btn-menu:before,
.btn-menu:after {
    content: '';
    position: absolute;
    top: 0;
    height: 2px;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.btn-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    overflow: hidden;
    text-indent: 200%;
}

.btn-menu:before {
    -webkit-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
}

.btn-menu:after {
    -webkit-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
}

.btn-menu.active span {
    opacity: 0;
}

.btn-menu.active:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.btn-menu.active:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.btn-submenu {
    position: absolute;
    right: 20px;
    top: 0;
    font: 20px/50px 'FontAwesome';
    text-align: center;
    cursor: pointer;
    width: 70px;
    height: 44px;
}

.btn-submenu:before {
    content: '\f107';
    color: var(--primary-color5);
}

.btn-submenu.active:before {
    content: '\f106';
}

.btn-menu {
    display: none;
}


/* GoTop
-------------------------------------------------------------- */

.go-top {
    position: fixed !important;
    right: -35px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--primary-color);
    line-height: 40px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    filter: alpha(opacity=0);
    opacity: 0;
}

.go-top.show {
    right: 15px;
    bottom: 15px;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.go-top i {
    font-size: 16px;
    color: #ffff;
    font-weight: 600;
    vertical-align: middle;
}

.go-top:hover {
    background-color: var(--primary-color2);
    border: 3px solid var(--primary-color2);
}

.about-box-nd1 .ic-title {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    line-height: 15px;
    font-weight: 700;
    color: var(--primary-color8);
}

.catalog-home {
    padding: 80px 0 120px;
    background-color: var(--primary-color3);
}

.catalog-home .section-title-box {}

.item-cat {
    margin: 30px 0;
    background: #fff;
    border-radius: 20px;
    /*box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 8%);*/
    box-shadow: 0 3px 7px rgb(0 0 0 / 5%);
}

.item-cat-img {
    padding: 15px 15px;
    position: relative;
}


/*.item-cat-img {
    height: 237px;
}
.item-cat-img a {
    display: block;
    overflow: hidden;
    height: 207px;
    width: 100%;
}
.item-cat-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}*/

.item-cat-img img {
    border-radius: 15px;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.item-cat-content {
    padding: 5px 20px 20px 20px;
}

.item-cat .item-cat-name {
    font-size: 18px;
    color: #000;
    line-height: 1.4;
    font-weight: 500;
}

.item-cat-arrow {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -12px;
    right: 30px;
    border: 5px solid #fff;
    font-size: 17px;
    z-index: 2;
}

.catalog-new-home {
    padding: 60px 0 120px;
}

.ct-white-bg .item-cat {
    background: var(--primary-color3);
    box-shadow: none;
}

.item-cat-product .item-cat-price {
    padding: 0px 0;
    color: #181818;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
}

.item-cat-price sup {
    font-size: 14px;
}

.item-cat-content-box-tw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.item-cat-btn {
    display: inline-block;
    /* background: var(--primary-color); */
    /* background: #faab34; */
    color: var(--primary-color);
    padding: 7px 15px;
    line-height: 1;
    border-radius: 6px;
    font-size: 16px;
    border: 2px solid var(--primary-color);
}

.item-cat.item-cat-product .item-cat-name {
    font-weight: 400;
}

.company-counter {
    padding: 10px 0 100px 0;
}

.counter-area-wrap {
    margin-left: 7.3%;
}

.counter-area {
    position: relative;
}

.counter-box {
    padding: 25px 35px 45px 35px;
    border-radius: 0 40px 40px 40px;
    background: var(--primary-color);
    margin-bottom: 30px;
}

.counter-box .num-count {
    font-size: 75px;
    color: white;
    line-height: 1.1;
    font-family: "Days";
    margin-bottom: 8px;
}

.counter-box .title-count {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.counter-box p {
    color: white;
    margin-bottom: 0;
}

.counter-box.one-counter {
    background: #3D96CF;
}

.counter-box.two-counter {
    background: #47ADEF;
}

.counter-box.three-counter {
    background: #24A9FF;
    margin-top: 150px;
}

section.delivery {
    padding: 20px 0 0px 0;
    overflow: hidden;
    position: relative;
}

section.delivery::before {
    content: '';
    position: absolute;
    bottom: 0;
    z-index: -1;
    height: 290px;
    width: 100%;
    left: 0;
    background: var(--primary-color3);
}

section.delivery .section-title {
    margin-top: 15px;
}

.delivery-block {
    min-height: 500px;
    position: relative;
}


/*.delivery-block::after,
.delivery-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 270px;
    width: 100%;
    background: var(--primary-color3);
}
.delivery-block::before {
    right: -20px;
}
.delivery-block::after {
    left: -100%;
    width: 200vw;
}*/

.delivery-img {
    position: absolute;
    left: -40px;
    bottom: 20px;
    max-width: none;
    z-index: 3;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.delivery-content-title {}

.delivery-content-title .section-desc {
    margin-top: 45px;
    color: var(--primary-color7);
}

.gallery {
    position: relative;
    padding: 40px 0 30px;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 340px;
    background: var(--primary-color3);
}

.gallery-item {
    position: relative;
    box-shadow: 0 6px 11px rgb(0 0 0 / 7%);
    margin-bottom: 30px;
    background: #fff;
    border-radius: 20px;
    border: 15px solid #fff;
    line-height: 0;
}

.gallery-item a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: 280px;
    width: 100%;
}

.gallery-item a img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.gallery-item .zoom {
    background: var(--primary-color);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 13px 0 13px 0;
    font-size: 17px;
}

.gallery-list {
    margin-top: 50px;
}

section.region-w {
    background-color: var(--primary-color2);
    overflow: hidden;
    position: relative;
}

.maps-wrap {
    position: relative;
    min-width: 100%;
    min-height: 592px;
    z-index: 1;
}

#maps {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(51vw - (var(--bs-gutter-x) * .5) * 1.7);
    min-width: 100%;
    min-height: 100%;
}

ymaps[class*="copyrights-pane"] {
    display: none !important;
}

.region-content-block-wrap {
    padding: 70px 0 50px 30px;
    position: relative;
    height: 100%;
}

.region-content-block {
    z-index: 1;
    position: relative;
}

.region-content-block-wrap::before {
    content: '';
    background-image: url("../../../../../templates/karkas/assets/images/naves-gr-bg.jpg");
    background-repeat: no-repeat;
    width: 1007px;
    height: 422px;
    position: absolute;
    right: 220px;
    bottom: 0;
    z-index: 0;
    transform: translate(100%, 0);
}

.region-content-block-wrap::after {
    content: '';
    width: 276px;
    height: 276px;
    border-radius: 50%;
    background: transparent;
    border: 50px solid #5d7e26;
    position: absolute;
    top: -140px;
    left: -140px;
    z-index: 0;
}

.white h2,
.white .h2 .white h4,
.white .h4,
.white .section-subtitle {
    color: #fff;
}

.region-content-block p {
    margin: 30px 0;
    color: #fff;
}

.btn.br-white {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
}

.rsk-catline {
    margin-top: 0px;
    position: relative;
    z-index: 2;
}

.rsk-catline .col-rsk-catline {
    position: relative;
}

.region-content-block-wrap::after {
    content: '';
    width: 276px;
    height: 276px;
    border-radius: 50%;
    background: transparent;
    border: 50px solid #5d7e26;
    position: absolute;
    top: -140px;
    left: -140px;
    z-index: 0;
}

.rsk-catline-wrap {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 5%);
    position: absolute;
    width: 100%;
    top: -70px;
}

.rsk-catline-wrap::before {
    content: '';
    background: url("../images/magazine.png");
    width: 286px;
    height: 206px;
    position: absolute;
    right: -30px;
    bottom: -10px;
    z-index: 0;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.rsk-catline-block {
    position: relative;
    z-index: 2;
    padding: 45px 40px 45px 40px;
    overflow: hidden;
}

.rsk-catline-title {
    font-family: 'Days', sans-serif;
    font-size: 31px;
    color: var(--primary-color8);
}

.rsk-catline-text-sm {
    font-size: 16px;
    color: var(--primary-color5);
    margin-top: 10px;
}

.rsk-catline-block .button {
    margin-left: 40px;
}

.rsk-catline-text-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: start;
}

.color-3d-sc {
    padding: 160px 0 80px 0;
    background: var(--primary-color3);
}

.color-block {
    width: 253px;
    height: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 0px 0 0 0;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin: 0 50px 30px 0;
}

.color-block:last-child {
    margin-right: 0;
}

.col-color-block:last-child .color-block {
    margin-bottom: 0;
}

.color-block-num {
    position: absolute;
    top: 15px;
    left: 10px;
    z-index: 2;
    color: var(--primary-color3);
    font-size: 120px;
    line-height: 1;
    font-weight: 500;
}

.color-block-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color5);
    position: relative;
    z-index: 3;
    padding: 50px 0 0 30px;
}

.color-img {
    width: auto;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
}

.col-color-block {
    justify-content: flex-end;
    display: flex;
}

.block-3d {
    position: relative;
    background: #fff;
    border-radius: 0 20px 20px 20px;
    box-shadow: 0 3px 7px 0 rgb(0 0 0 / 5%);
    padding: 93px 30px 55px 30px;
}

.block-3d::before {
    content: '';
    background: url("../../../../../templates/karkas/assets/images/3d-gift.png") no-repeat;
    width: 118px;
    height: 147px;
    position: absolute;
    right: -15px;
    bottom: -20px;
}

.btn2.bgc6 {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn2.bgc6:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.block-3d-title {
    color: var(--primary-color5);
    font-size: 32px;
    font-family: 'Days', sans-serif;
    line-height: 1.2;
}

.block-3d-title-text {
    font-size: 18px;
    color: var(--primary-color7);
    line-height: 1.4;
    margin-top: 20px;
}

.block-3d-content .button {
    margin-top: 45px;
}

.block-3d-wrap {
    padding-top: 40px;
}

.block-3d-mac {
    display: flex;
    align-items: center;
    margin-bottom: -69px;
}

.block-3d-mac-img {
    position: relative;
    margin-left: -5px;
}

.block-3d-mac-img img {
    position: relative;
    z-index: 2;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.block-3d-mac-text {
    font-size: 61px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 0.8;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 7px 0 rgb(0 0 0 / 5%);
    display: inline-block;
    padding: 23px 23px 23px 45px;
    position: absolute;
    left: 237px;
    top: 50px;
    z-index: 1;
}

.block-3d-mac-text span {
    display: block;
    font-size: 23px;
    color: var(--primary-color5);
}

.block-3d-mac-content-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    padding: 0 0 48px 40px;
}

.block-3d-mac-content-text span {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color7);
    display: block;
}

.top-contact {
    display: flex;
    align-items: center;
}

.tcont-item {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.tcont-item:first-child {
    margin-left: 0;
}

.tcont-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    border-radius: 50%;
    margin-right: 12px;
}

.tcont-txt a,
.tcont-txt {
    font-size: 15px;
    color: var(--primary-color5);
}

.tcont-txt a:hover {
    color: var(--primary-color);
}

.tcont-phone .tcont-txt a {
    font-size: 19px;
    font-weight: 500;
}

.tcont-phone .tcont-icon i {
    transform: rotateZ(-30deg);
}

.btn-call-order {
    background-color: var(--primary-color);
    border-radius: 7px;
    box-shadow: 0px 5px 11px 0px rgba(239, 73, 59, 0.65);
    padding: 12px 14px 12px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 200px;
}


/*.btn-call-order .btn-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color6);
    font-size: 14px;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.06);
    margin-left: -13px;
}*/

.btn-call-order .btn-icon {
    width: 32px;
    height: 37px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    border-radius: 5px;
    margin-right: 12px;
    box-shadow: 0 2px 7px rgb(0 0 0 / 5%);
    margin-left: -4px;
}

.btn-call-order .btn-txt {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}

.btn-call-order .btn-txt span {
    font-size: 12px;
    color: #fff;
    display: block;
}

.site-header-bottom {
    position: absolute;
    bottom: -41px;
    right: 18px;
    z-index: 0;
}

.mess-list {
    background: #fff;
    padding: 20px 16px 11px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.mess-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mess-item {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid rgb(205 205 205 / 30%);
}

.mess-item:last-child {
    padding: 0;
    margin: 0;
    border: none;
}

.mess-item a {
    font-size: 13px;
    color: var(--primary-color7);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    padding: 1px 0;
}

.mess-item a i {
    margin-right: 5px;
    font-size: 16px;
}

.mess-item a i.fa-whatsapp {
    color: #38c429;
}

.mess-item a i.fa-viber {
    color: #7360f2;
}

.mess-item a i.fa-telegram {
    color: #36ade2;
}

#header .header-wrap-home1 .inner-header {
    display: flex;
    align-items: center;
}

.logo-header-txt {
    color: #aeada9;
    font-size: 14px;
    line-height: 1.3;
}

#header .logo-header {
    margin-left: 10px;
}

#header .logo-header a {
    display: inline-block;
    width: 75px;
}

.about-box-nd1 {}

.ab-icon {
    margin-top: 5px;
}

.ab-icon svg {
    width: 64px;
}

.page-title-home {
    /*background-image: url(/bitrix/templates/karkas/assets/css/../images/top-header-bg.jpg);*/
    background-color: var(--primary-color3);
    padding-top: 80px;
    overflow: hidden;
}

.pth-content-wrap {
    position: relative;
    display: flex;
}

.pth-content-wrap::before {
    content: '';
    position: absolute;
    left: 290px;
    bottom: 50px;
    z-index: 0;
    background: url("../../../../../templates/karkas/assets/images/naves-bg-top.jpg") no-repeat;
    width: 1005px;
    height: 528px;
    transform: translateX(-100%);
}

.pth-img img {
    position: absolute;
    right: -270px;
    bottom: 0;
    z-index: 2;
}

.circle-gr {
    width: 186px;
    height: 186px;
    border-radius: 50%;
    background: transparent;
    border: 30px solid var(--primary-color8);
    position: absolute;
    opacity: 0.3;
    bottom: 400px;
    right: -95px;
    z-index: 1;
}

.circle-gr2 {
    width: 186px;
    height: 186px;
    border-radius: 50%;
    background: transparent;
    border: 30px solid #ebe8e1;
    position: absolute;
    bottom: 315px;
    right: 500px;
    z-index: 1;
}

.pth-of-txt-wrap {
    position: absolute;
    right: 359px;
    top: -5px;
    z-index: 1;
}

.pth-of-txt {
    background: #47ADEF;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    display: flex;
    padding: 12px 35px 12px 12px;
    border-radius: 0 10px 0 10px;
}

.pth-of-txt .plus {
    color: var(--primary-color);
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    margin-right: 10px;
    font-size: 13px;
    font-weight: 700;
}

.pth-of-txt .span {}

.stick-box-top {
    position: absolute;
    z-index: 3;
    top: 215px;
    right: 625px;
}

.stick-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 19px 0 rgba(0, 0, 0, 0.05);
    padding: 23px 25px 45px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stick-box-txt {
    color: var(--primary-color5);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 16px;
    text-align: center;
}

.stick-box-icon-link {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -21px;
    margin: auto;
    width: 44px;
    height: 44px;
    background: var(--primary-color8);
    box-shadow: 0 0 0 5px rgb(255 255 255 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 100px;
    cursor: pointer;
}

.stick-box-icon-link:hover {
    color: #000;
}

.pth-content {
    position: relative;
}

.pth-content-txt {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.pth-content-txt-title .h1,
.pth-content-txt-title h1 {
    color: #000;
    font-size: 43px;
    font-family: 'Days', sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

.pth-content-txt-title .h1 span,
.pth-content-txt-title h1 span {
    color: var(--primary-color);
}

.pth-content-txt p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--primary-color7);
}

.text-pth {
    margin-top: 34px;
}

.pth-content-txt-btn-wrap {
    margin-top: 10px;
}

a.btn-big-h {
    background: #FF5959;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px 15px 15px;
    box-shadow: 0px 10px 20px 0px rgba(239, 73, 59, 0.70), 0px 3px 0px 0px #EF493B, 0px 1px 0px 0px #EF493B, 0px 0px 8px 0px #EF493B inset;
}

a.btn-big-h span {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

a.btn-big-h small {
    display: block;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

a.btn-big-h i {
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color2);
    color: #fff;
    padding: 6px 9px 6px 8px;
    font-size: 18px;
    border-radius: 6px;
    margin-right: 10px;
    box-shadow: 1px 0 0 rgb(255 255 255 / 15%);
}

a.btn-big-h svg {
    width: 19px;
    fill: #fff;
}

.pth-content-txt-btn-wrap {
    margin-top: 58px;
    display: flex;
    align-items: center;
}

.txt-top-pds {
    margin-left: 20px;
    color: var(--primary-color7);
    font-size: 15px;
    line-height: 1.45;
    display: flex;
    align-items: center;
}

.txt-top-pds::before {
    content: '';
    height: 2px;
    width: 30px;
    margin: 0 15px 0 0;
    background: var(--primary-color6);
}

a.link-bb {
    color: var(--primary-color);
    border-bottom: 1px dashed;
}

.pth-content-bottom {
    margin-top: 55px;
    background: #ebe8e1;
    position: relative;
    z-index: 1;
}

.pth-content-bottom::before {
    content: '';
    background: #ebe8e1;
    position: absolute;
    top: 0;
    left: -100vw;
    width: 300vw;
    height: 100%;
    z-index: -1;
}

.pth-icon-list {
    display: flex;
    align-items: center;
    padding: 28px 28px 28px 0;
}

.pth-icon-item {
    margin-right: 50px;
}

.pth-icon-item:last-child {
    margin-right: 0;
}

.pth-icon-txt {
    font-size: 15px;
    color: var(--primary-color7);
    margin-top: 12px;
    line-height: 1.2;
}

.pth-icon {
    background: #fff;
    border-radius: 100px;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 19px 0 rgba(0, 0, 0, 0.05);
}

.pth-icon svg {
    fill: var(--primary-color8);
    height: 26px;
    width: auto;
}

.pth-icon svg.bi-zamer {}

.pth-icon svg.bi-truck {
    height: 32px;
}

.pth-icon svg.bi-shield-check {}

.owl-nav.disabled {
    display: none !important;
}

.page-wrap {
    padding: 20px 0 100px;
}

.blog-section-list.flat-news-home2 {
    padding: 50px 0 90px;
}

.owl-dots.grid-im {
    display: flex;
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 30px
}

.owl-dots.grid-im button {
    width: 100%
}

.owl-dots.grid-im span {
    display: block;
    height: 2px;
    background: #F2F2F2;
}

.owl-dots.grid-im .active span {
    background: var(--primary-color);
}

.product-list-slider.owl-carousel .owl-stage-outer {
    border-radius: 15px;
}

.catalog-section {
    background: var(--primary-color3);
    /*overflow: hidden;*/
}

html.with-fancybox {
    overflow: hidden;
}


/*****Карточка товара*****/

.product-detail-top-info {
    background: #fff;
    border: 1px solid #f2f2f2;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 4px 0 rgb(0 0 0 / 3%);
}

.constructions-wrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.constructions-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: 20px;
}

.constructions {
    background: #ffd26b;
    border-radius: 10px;
}

.constructions-wrap.constructions-gr .constructions {
    background: var(--primary-color8);
}

.constructions-wrap.constructions-gr .dd-inp-wp label {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    color: #ffffff;
}

.constructions-wrap.constructions-gr .dd-inp span {
    color: #181818;
}

.constructions-wrap.constructions-gr .dd-inp input[type="radio"]:checked+.inp-check+span,
.constructions-wrap.constructions-gr .dd-inp-wp label.active {
    color: #fff;
}

.constructions-wrap.constructions-gr .dd-inp-wp label:first-child {
    border-top: none;
}

.constructions-wrap.constructions-gr .dd-inp input[type="radio"]:checked+.inp-check::before {
    background: var(--primary-color);
}

.constructions-light .constructions {
    background: var(--primary-color3);
}

.dd-inp-wp {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 9;
}

.dd-inp-wp label {
    margin-bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f7bc34;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #855b1c;
    cursor: pointer;
    line-height: 1.2;
    height: 50px;
}

.dd-inp-wp label:first-child {
    border-top: none;
}

.dd-inp input[type="radio"]:checked+.inp-check+span,
.dd-inp-wp label.active {
    color: var(--primary-color5);
}

.constructions-light .dd-inp-wp label {
    border-color: #ebe8e1;
    color: var(--primary-color7);
}

.constructions-light.constructions-wrap::before {
    display: none;
}

.dd-inp {
    display: flex;
}

.dd-inp span {
    display: inline-block;
    padding-top: 1px;
    line-height: 1;
}

label.dd-inp-label .dd-inp-price {
    font-size: 13px;
    color: var(--primary-color5);
    background: #fff;
    border-radius: 6px;
    line-height: 1;
    padding: 6px 15px 6px 15px;
    white-space: nowrap;
    margin-left: 15px;
    box-shadow: 0 0 5px 1px rgb(255 255 255 / 70%);
}

label.dd-inp-label .dd-inp-price sup {
    font-size: 10px;
}


/*label.dd-inp-label.active .constr-r-price{
	display: none;
}*/

.dd-inp {
    position: relative;
    display: flex;
    align-items: center;
}

.dd-inp input {
    display: none;
}

.dd-inp .inp-check {
    margin-right: 12px;
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    border-radius: 100%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.dd-inp input[type="radio"]:checked+.inp-check::before {
    content: '';
    display: inline-block;
    background: var(--primary-color);
    width: 7px;
    height: 7px;
    border-radius: 100%;
}

.n-locks-wrap {
    margin-top: 25px;
}

.dd-inp-content {
    padding: 0px 30px 0px 30px;
    width: 100%;
    min-width: 100%;
    /*-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;*/
    max-height: 0;
    overflow: hidden;
}

.active+.dd-inp-content {
    display: block;
    max-height: 600px;
    padding-bottom: 10px;
}

.detail-product-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F3EC;
    border-radius: 10px;
    margin-top: 2px;
}

.detail-product-price-pt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--primary-color8);
    color: #181818;
    padding: 20px 25px;
    width: 100%;
    line-height: 1.5;
    border-radius: 10px;
    margin-top: -2px;
}

.detail-product-price-pt-wrap {
    display: flex;
    flex-direction: column;
}

.detail-product-price-pds-txt {
    padding-top: 7px;
    margin-top: 10px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    width: 100%;
}

.detail-product-price-txt {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 3px;
    color: #181818;
}

.detail-product-price-txt.detail-product-price-sale {
    text-decoration: line-through;
}

.detail-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}

.detail-product-price sup {
    font-size: 13px;
}

.detail-product-price-pds {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 25px;
    font-size: 12px;
    line-height: 1.5;
    color: #181818;
}

a.btn-bz {
    display: inline-block;
    color: #fdfcfc;
    background: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    padding: 10px 20px;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.btn-bz:hover {
    color: #000a2b;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0px 20px 3px rgba(255, 255, 255, 0.3);
}

.pth-icon-list-pd {
    background: var(--primary-color3);
    border-radius: 10px;
    margin-top: 40px;
}

.pth-icon-list-pd.pth-icon-gr {
    background: var(--primary-color);
    margin-right: -25px;
    margin-left: -25px;
    border-radius: 0;
}

.pth-icon-list-pd .pth-icon-list {
    padding: 22px 25px;
    justify-content: space-between;
}

.pth-icon-list-pd .pth-icon-item {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.pth-icon-list-pd:not(.pth-icon-gr) .pth-icon-item:last-child {
    margin-right: 0;
}

.pth-icon-list-pd.pth-icon-gr .pth-icon-txt {
    color: #fff;
}

.pth-icon-list-pd .pth-icon-txt {
    margin-top: 0;
    margin-left: 15px;
}

.pth-icon-list-pd .pth-icon-list .pth-icon {
    border-radius: 8px;
}

.pth-icon-list-pd.pth-icon-gr .pth-icon-list .pth-icon {
    background: var(--primary-color2);
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.pth-icon-list-pd .pth-icon-list .pth-icon svg {
    height: 32px;
    fill: var(--primary-color8);
}

.pth-icon-list-pd .pth-icon-list .pth-icon svg.bi-truck {
    height: 39px;
}

.pth-icon-list-pd.pth-icon-gr .pth-icon-list .pth-icon svg {
    fill: #fff;
}

.product-detail-slider {
    position: relative;
}

.product-detail-slider img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.owl-thumbs {
    position: absolute;
    bottom: -35px;
    left: 10px;
}

button.owl-thumb-item {
    border: 5px solid #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 3px 4px 0 rgb(0 0 0 / 3%);
}

button.owl-thumb-item.active {
    border-color: var(--primary-color);
}

button.owl-thumb-item:last-child {
    margin-right: 0;
}

.owl-thumb-item img {
    height: 55px;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: #fff
}

.product-detail-slider .owl-item img {
    border-radius: 15px;
}

h1.title-page {
    font-family: 'Days', sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.3;
    color: var(--primary-color5);
    padding-right: 220px;
}

.breadcrumbs-section {
    background: var(--primary-color3);
    padding: 25px 0 10px;
}

.breadcrumbs-section .breadcrumbs {
    overflow: hidden;
    width: 100%;
    overflow-x: auto;
}

.breadcrumbs-section .bx-breadcrumb {
    margin: 10px 0 0 0;
    display: flex;
}

.breadcrumbs-section .bx-breadcrumb .bx-breadcrumb-item {
    margin-bottom: 0px;
    margin-right: 10px;
    white-space: nowrap;
}

.breadcrumbs-section .bx-breadcrumb i {
    color: var(--primary-color7);
    line-height: 10px;
    font-size: 10px;
    margin-right: 5px;
}

.breadcrumbs-section .bx-breadcrumb .bx-breadcrumb-item a span {
    color: #181818;
}

.breadcrumbs-section .bx-breadcrumb .bx-breadcrumb-item span {
    color: var(--primary-color7);
}

.breadcrumbs-section .breadcrumbs .bx-breadcrumb .bx-breadcrumb-item a {
    color: #181818 !important;
}

.row-catalog-sections {
    display: flex;
    justify-content: center;
}

.title-dd-dub {
    display: flex;
    justify-content: space-between;
     align-items: center;
    margin: 25px 0;
}

.title-dd-dub .title-dd-pds {
    font-size: 13px;
    text-transform: uppercase;
    /* color: #d4cfc2;*/
    color: var(--primary-color);
    line-height: 1.4;
}

.title-dd-dub .title-dd-sm {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color5);
}

.customNav {}

.customNav button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 7px;
    font-size: 23px;
    padding: 3px 10px;
    line-height: 1;
    height: auto;
}

.customNav button:hover {
    background: var(--primary-color);
    color: #fff;
}

.customNav button.owl-prev {
    margin-right: 10px;
}


/*.customNav button span {

}*/

.product-detail-krovlya-wrap {
    padding-top: 0px;
    padding-bottom: 10px;
}

.product-detail-krovlya-slider {
    padding-top: 5px;
}

.product-detail-krovlya-slider a {
    display: inline-block;
}

.product-detail-krovlya-slider img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.krovlya-polikarbonat .product-detail-krovlya-slider a {
    padding: 0 10px;
}

.pd-info-txt-block {
    margin-top: 35px;
}

ul.list {
    display: block;
    margin-bottom: 15px;
}

ul.list li {
    list-style: none;
    margin: 7px 0;
    /*position: relative;*/
}

ul.list li::before {
    content: '';
    width: 15px;
    height: 1px;
    background: var(--primary-color);
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 8px;
}

ul.list li a {
    border-bottom: 1px dashed;
    color: var(--primary-color);
}

ul.list li a:hover {
    border-color: transparent;
}

.pd-info-txt-list {
    padding: 15px 20px;
    box-shadow: 0 0 0 5px var(--primary-color8);
    border-radius: 10px;
    margin-right: 5px;
    margin-left: 5px;
}

ul.list.list-circle li::before {
    width: 5px;
    height: 5px;
    border-radius: 20px;
    margin-bottom: 3px;
    margin-right: 7px;
    background: var(--primary-color2);
}

.pd-info-txt-block ul.list {
    font-size: 15px;
    color: var(--primary-color5);
    margin-bottom: 0;
}

.pd-info-txt-block ul.list li {
    margin: 7px 0;
}

.fw500 {
    font-weight: 500;
}

.pd-sm-table .row-txt {
    font-size: 15px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.pd-sm-table .row-txt strong {
    font-weight: 400;
    position: relative;
    background: #fff;
    display: inline-block;
    z-index: 2;
    padding-right: 2px;
    color: var(--primary-color7);
}

.pd-sm-table .row-txt span {
    color: #081528;
    position: relative;
    background: #fff;
    display: inline-block;
    z-index: 2;
    padding-left: 2px;
}

.pd-sm-table .row-txt:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 7px;
    border-bottom: 1px dotted #d1cdc4;
    z-index: 1;
}

.pd-info-txt-block .title-dd-sm {
    font-size: 18px;
}

.pd-info-txt-block .title-dd-dub {
    margin: 0 0 12px;
}

.pd-sm-table-wrap .link-bb {
    font-size: 15px;
    color: var(--primary-color8);
}

.product-detail-3d-wrap {
    margin-top: 30px;
}

.product-detail-3d-wrap .block-3d {
    padding-top: 30px;
}

.product-detail-3d-wrap .block-3d-title {
    color: var(--primary-color5);
    font-size: 28px;
}

.product-detail-3d-wrap .btn2.bgc6 {
    padding: 13px 26px 12px 26px;
}

.product-detail-3d-wrap .block-3d-content .button {
    margin-top: 40px;
}

.tab-pane.active.show {
    opacity: 1;
}

.product-detail-tab-wrap {
    margin-top: 120px;
    background: #fff;
}

.tab-content {}

.product-detail-tab-content {
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
}


/*.product-detail-tab-content::before {
    content: '';
    background: #fff;
    z-index: 0;
    position: absolute;
    left: -100vw;
    top: 0;
    width: 200vw;
    height: 100%;

}*/

.product-detail-tab-content .tab-pane {
    position: relative;
    z-index: 1;
    background: #fff;
}

.tab-content-block {
    padding: 40px 0 20px;
}

.product-detail-tab .cm-tabs {
    margin-bottom: -30px;
    position: relative;
    z-index: 3;
    margin-top: -40px;
}

.product-detail-tab .cm-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgb(0 0 0 / 3%);
}

.product-detail-tab .cm-tabs .nav-tabs .nav-link {
    width: calc(100% / 3);
    text-align: center;
    color: var(--primary-color8);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    padding: 18px 0;
    border-radius: 0;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.product-detail-tab .cm-tabs .nav-tabs .nav-link.active {
    background: var(--primary-color8);
    color: #fff;
}

.product-detail-tab .cm-tabs .nav-tabs .nav-link span {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color7);
}

.product-detail-tab .cm-tabs .nav-tabs .nav-link.active span {
    color: #fff;
    opacity: 0.5;
}

.product-detail-tab .cm-tabs .nav-tabs .nav-link:after {
    content: '';
    width: 70px;
    height: 5px;
    border-radius: 5px 5px 0 0;
    background: var(--primary-color8);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.product-detail-tab .cm-tabs .nav-tabs .nav-link.active:after {
    background: #3B98D3;
}

table.table tbody td {
    border: none;
    padding-left: 15px;
}

table.table tbody tr:nth-child(even) {
    background: var(--primary-color3);
}

.product-detail-like-wrap {
    padding: 50px 0 20px 0;
}

.like-slider-items {
    display: block;
}

.product-detail-like .like-slider-items .product-item-small-card.col-item-cat {
    width: 100%;
}

.sliderNavCustR.owl-nav.disabled {
    display: flex !important;
}

.sliderNavCustG,
.sliderNavCustR {
    display: flex !important;
    justify-content: flex-end;
}

.customNav.big-btn button {
    border-radius: 9px;
    font-size: 28px;
    padding: 3px 13px;
}

.wd-left:first-child {
    margin-top: 0;
}

.wd-left {
    margin: 15px 0;
}

.catalog-section .item-cat {
    margin: 20px 0;
}

.catalog-left-menu {
    background: #fff;
    display: inline-block;
    width: 100%;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 3px 7px rgb(0 0 0 / 5%);
}

.catalog-left-menu .section-list-items li {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--primary-color3);
    margin: 0;
}

.catalog-left-menu .section-list-items li:last-child {
    border-bottom: none;
}

.catalog-left-menu .section-list-items li a {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    color: var(--primary-color5);
    font-size: 15px;
    line-height: 1.4;
}

.catalog-left-menu .section-list-items li a:hover {
    color: var(--primary-color);
}

.catalog-left-menu .section-list-items li a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 13px;
    color: var(--primary-color);
    margin-right: 8px;
}

.catalog-left-menu .section-list-items li a span {
    margin-left: auto;
    display: inline-block;
    background: var(--primary-color3);
    border-radius: 5px;
    font-size: 11px;
    padding: 4px 7px;
    line-height: 1;
    color: var(--primary-color7);
    white-space: nowrap;
}

.widgets-contact-info.cwci {
    height: auto;
    padding-top: 0;
}

.widgets-contact-info.cwci .contact-info-content {
    padding: 22px 30px 22px 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border: solid 1px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
}

.contact-info-block {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block .contact-info-title {
    color: #fff;
}

.contact-info-block .contact-info-txt {
    color: #fff;
    font-weight: 700;
}

.widgets-contact-info .contact-info-block a {
    color: #fff;
}

.widgets-contact-info .contact-info-box {
    border-radius: 10px;
}

.sort-catalog-wrap {
    display: flex;
}

select.sort-select {
    display: none;
}

.sort-catalog-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0 15px 20px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 5%);
    overflow: hidden;
}

.sort-title {
    margin-right: 10px;
    font-weight: 600;
    color: var(--primary-color5);
}

.sort-link-wrap a {
    display: inline-block;
    margin-right: 10px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1;
    color: var(--primary-color7);
}

.sort-link-wrap a:last-child {
    margin-right: 0;
}

.sort-prop-price.act.sort-direc-asc {
    padding-right: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiIGZpbGw9IiM2NTY1NjUiPjxwYXRoIGQ9Ik0wIDZoNHYyaC00ek0wIDNoNnYyaC02ek0wIDBoOHYyaC04eiIvPjwvc3ZnPgo=) no-repeat right 50%;
}

.sort-prop-price.act.sort-direc-desc {
    padding-right: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiIGZpbGw9IiM2NTY1NjUiPjxwYXRoIGQ9Ik0wIDBoNHYyaC00ek0wIDNoNnYyaC02ek0wIDZoOHYyaC04eiIvPjwvc3ZnPgo=) no-repeat right 50%;
}

.catalog-new-home .catalog-section {
    background: transparent;
}

#mainnav .menu>li.top-big-sub-menu-wrap {
    position: static;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu {
    min-width: 750px;
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 20px;
    padding: 10px 10px;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li {
    float: left;
    width: calc(33.33333% - 10px);
    margin-left: 5px;
    margin-right: 5px;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li {
    border-bottom: 1px solid var(--primary-color3);
    border-top: none;
    padding: 5px 0;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li:nth-last-child(-n+2) {
    border-bottom-color: transparent;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li a {
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    padding: 12px 10px;
    text-align: left;
    color: var(--primary-color5);
    text-transform: none;
    transition: all 500ms ease;
    border-radius: 10px;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 13px;
    color: var(--primary-color);
    margin-right: 5px;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li:hover a {
    padding-left: 15px;
}

#mainnav .menu>li>.sub-menu.top-big-sub-menu>li:hover a::before {
    color: #fff;
}

.gr-bg {
    background: var(--primary-color3);
}

.date-blog i {
    color: var(--primary-color7);
}

.blog-detail-date {
    padding: 8px 15px 8px 15px;
    background-color: var(--primary-color3);
    display: inline-block;
    color: var(--primary-color7);
    font-size: 14px;
    line-height: 1.4;
    border-radius: 5px;
}

.blog-detail-date i {
    margin-right: 3px;
}

.blog-detail-top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h5 {
    margin: 20px 0 10px 0;
    color: #000;
}

.txt-block p {
    line-height: 1.9;
}

.txt-block.txt-bgd li,
.txt-block.txt-bgd p {
    color: var(--primary-color5);
}

.txt-block h2 {
    font-size: 25px;
    margin: 30px 0 15px;
}

.txt-block h2:first-child {
    margin-top: 15px;
}

.txt-block h3 {
    font-size: 22px;
    color: #000;
    margin: 30px 0 15px;
}

.txt-block ul,
.txt-block ol {
    margin: 0 0 20px 0;
    padding-left: 25px;
}

.txt-block ol {
    counter-reset: li;
}

.txt-block ul>li,
.txt-block ol>li {
    list-style: none;
}

.txt-block ol>li:before {
    color: var(--primary-color);
    background: #f6f3ec;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    content: counter(li) !important;
    counter-increment: li;
    padding: 2px 9px;
    line-height: 1;
    margin-right: 7px;
}

.txt-block.txt-bgd ol>li:before {
    color: #fff;
    background: var(--primary-color);
    font-weight: 500;
}

.txt-block li {
    margin: 15px 0;
}

.txt-block ul>li:before {
    content: '';
    width: 10px;
    height: 10px;
    background: transparent;
    margin-right: 8px;
    margin-left: 8px;
    display: inline-block;
    border-radius: 9px;
    border: 2px solid var(--primary-color);
}

.txt-block blockquote {
    padding: 20px 30px;
    background: #f6f3ec;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid var(--primary-color8);
}

.txt-block.txt-bgd blockquote {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.70);
    color: var(--primary-color8);
}

.txt-block a {
    border-bottom: 1px dashed;
}

.txt-block a:hover {
    border-color: transparent;
}

.blog-detail-tag-wrap {
    display: flex;
    justify-content: flex-end;
}

.tag-item {
    margin-left: 10px;
    padding: 8px 15px 8px 15px;
    background-color: var(--primary-color3);
    display: inline-block;
    color: var(--primary-color7);
    font-size: 14px;
    line-height: 1.4;
    border-radius: 5px;
}

.gallery-item-video .name {
    display: inline-block;
    background: #1818184f;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 0 0 15px 15px;
}

.gallery-item-video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 61px;
    color: #ffffffb5;
}

.paginations {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 28px;
}

.page-numbers li {
    display: inline-block;
}

.paginations a,
.page-numbers span.current {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: auto 5px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
}

.paginations a:hover,
.paginations a.current,
.page-numbers span.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagi-info p {
    color: #b0b0b0;
    ;
    font-size: 14px;
}

.item-video-frame-wrap {
    width: 100%;
}

.item-video-frame-wrap {
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
}

.item-video-frame-wrap iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 10px solid #fff;
}

iframe#big-video {}

.video-list {
    max-height: 100%;
    height: 485px;
    position: relative;
}

.video-list-wrap {
    position: relative;
}

.video-list-wrap::after {
    content: '';
    height: 30px;
    width: 100%;
    position: absolute;
    z-index: 3;
    bottom: -8px;
    left: 0;
    background: linear-gradient(0deg, rgba(246, 243, 236, 1) 0%, rgba(246, 243, 236, 0) 100%);
}

.item-video-wrap {
    margin-bottom: 11px;
    cursor: pointer;
    background: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    margin-right: 8px;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 5%);
}

.item-video {
    display: flex;
}

.item-video img {
    width: 100%;
    border-radius: 8px;
}

.item-video-img-block {
    position: relative;
    width: 160px;
    min-width: 160px;
    max-width: none;
}

.item-video-img-block .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #ffffff;
}

.item-video .name {
    margin-left: 15px;
    font-size: 14px;
    line-height: 1.4;
    padding-right: 3px;
}

.scroll-cust {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color7) transparent;
    overflow: hidden;
    padding-right: 6px;
}

.scroll-cust:hover {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    overflow-scrolling: touch;
    padding-right: 0px;
}

.scroll-cust::-webkit-scrollbar {
    width: 6px;
}

.scroll-cust::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0 10px 0;
    padding-right: 5px;
}

.scroll-cust::-webkit-scrollbar-thumb {
    background-color: var(--primary-color7);
    border-radius: 100px;
}

.video-big-section {
    padding: 80px 0 130px;
    background: var(--primary-color3);
}

.video-gal-big {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.block-fluid {
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50vw);
}

.gallery.gallery-detail-product {
    padding: 50px 0 0px;
}

.gallery-list-product-detail {
    margin-top: 20px;
}

.video-block-home {
    position: relative;
    z-index: 0;
}

.circle-gr2.video-circle {
    width: 186px;
    height: 186px;
    border-radius: 50%;
    background: transparent;
    border: 30px solid var(--primary-color);
    position: absolute;
    z-index: 1;
    right: auto;
    left: -50px;
    top: -20px;
    bottom: auto;
    opacity: 0.3;
}


/*.gallery-detail-product {
    background: #fff;
}

.gallery-detail-product.gallery::before {
    top: auto;
    bottom: 0;
}*/

.contact-section {
    padding-bottom: 0;
}

.footer-item .list-menu-1 li {
    line-height: 2.2;
}

.flat-accordion h2 {
    font-size: 16px;
    line-height: 26px;
    color: #181818;
    margin: 0;
}

.txt-block .flat-accordion h2:first-child {
    margin: 0;
}

.flat-accordion .section-desc {
    margin-top: 0;
    color: var(--primary-color5);
}

.txt-block .flat-accordion {}

.text-home-section {
    padding: 120px 0;
}

.flat-accordion.cust-accordion {
    background: var(--primary-color3);
    border-radius: 10px;
}

.flat-accordion.cust-accordion .flat-toggle .toggle-title {
    border: none;
    border-top: 1px solid #e4dfd2;
    padding-right: 55px;
}

.flat-accordion.cust-accordion .flat-toggle:first-child .toggle-title {
    border-top: none;
}

.flat-accordion.cust-accordion .flat-toggle .toggle-content {
    border: none;
}

.flat-accordion.cust-accordion .flat-toggle .toggle-title.active:after,
.flat-accordion.cust-accordion .flat-toggle .toggle-title:before {
    background-color: #e4dfd2;
    color: #181818;
}

.error-msg {
    color: var(--primary-color6);
    margin-bottom: 15px;
    display: none;
}

.success-msg {
    font-size: 19px;
    display: none;
}

.success-msg strong {
    color: var(--primary-color);
}

.success-msg span {
    color: var(--primary-color5);
    margin-top: 8px;
    display: inline-block;
}

.popup-form .success-msg span {
    font-size: 18px;
}

.popup-form .success-msg {
    font-size: 17px;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(106 149 31 / 25%);
    ;
}

.popup-form.fancybox__content {
    padding: 0;
    border-radius: 20px;
}

.popup-form.fancybox__content .contact-right .form-contact-right {
    padding: 35px 35px 35px 35px;
}

.popup-form.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.contact-right .input-contact-message,
.contact-right .input-contact {
    margin: 5px 0 25px 0 !important;
}

.popup-form {
    display: none;
}

.block-stick-ls {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    z-index: 9;
}

.top-dop-pd {
    padding-bottom: 90px;
}

header.header {
    transition: all 0.3s linear;
    top: -100px;
}

header.header.header-fixed {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 12%);
    background-color: rgba(247, 247, 247, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header#header.header-fixed .header-wrap-home1 {
    background: transparent;
    box-shadow: none;
    /* box-shadow: 0px 4px 10px rgb(0 0 0 / 15%);
    background-color: rgba(247, 247, 247, 0.8);;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);*/
}

header#header.header-fixed .site-header-bottom {
    display: none;
}

.title-dbl {
    position: relative;
    z-index: 3;
}

.catalog-sections-list.page-wrap {
    padding-bottom: 30px;
}

.tab-content-block .txt-block {
    color: var(--primary-color5);
}

.txt-img-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.txt-block img {
    border-radius: 10px;
}

.clear {
    clear: both;
}

span.bold {
    font-weight: 700;
}

.txt-block table {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.txt-block table thead {
    background: #e4dfd2;
    color: #181818;
    font-weight: 700;
}

.txt-block table thead th {
    border-bottom: 2px solid var(--primary-color);
}

.txt-block table th,
.txt-block table td {
    padding: 8px 20px;
}

.txt-block table tbody tr:nth-child(odd) {
    background: #fff;
}


/* End */


/* Start:/bitrix/templates/karkas/assets/css/shortcodes.css?164916590557467*/


/* 
  *Font global
  *Column custom
  *Header style 1
  *Slider
  *features
  *about
  *services
  *team
  *team profolio
  *testimonials
  *about 2nd
  *subcribe
  *work process
  *contact
  *blog
  *features home2
  *why choose us
  *about home2
  *services home2
  *shop
  *counter
  *profolio home2
  *testimonial home2
  *news home2
  *services details
  *team page
  *case study
  *faq
  *footer style 2
  *contact
  *case details
*/


/* font global 
---------------------------------------*/

.sub-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px !important;
    font-family: 'Rubik', sans-serif !important;
    line-height: 17px;
}

.title-slider {
    font-family: 'Days', sans-serif;
    font-weight: 600 !important;
    letter-spacing: -0.8px !important;
}

.title-main {
    font-family: 'Days', sans-serif;
    font-size: 46px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 58px;
    color: var(--primary-color5);
}

.heading-features {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}


/* column custom 
---------------------------------------*/

.item-three-column,
.item-four-column {
    float: left;
    padding: 0 15px;
}

.item-three-column {
    width: 33.3333333%;
}

.item-four-column {
    position: relative;
    width: 25%;
}


/* header style 1 
---------------------------------------*/

.top-header1 .top-location,
.top-mail {
    font-size: 14px;
    font-weight: 500;
}

.top-bar-left .top-mail {
    color: var(--primary-color) !important;
}

.top-header1 .top-location {
    margin-right: 26px;
    letter-spacing: 0.1px;
    color: var(--primary-color) !important;
}

.top-header1 .widgets-nav-social li {
    margin-left: 10px;
}

.top-header1 .fa {
    color: var(--primary-color) !important;
    font-size: 14px;
    border-radius: 100%;
    border: 2px solid #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header1 .top-bar-right .fa:hover {
    color: var(--primary-color) !important;
}

.top-header1 .fa:hover {
    color: var(--primary-color);
}

.header-wrap-h {
    position: relative;
}

#header .header-wrap-home1 {
    height: 90px;
    background-color: #ffff;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.top-header-inner {
    line-height: 70px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header1 .top-bar-left {
    float: left;
    padding-left: 0;
}

.top-header1 .top-bar-right {
    float: right;
}

#header .header-wrap-home1 {
    height: 90px;
    background-color: #ffff;
    border-radius: 10px;
    padding: 0 15px;
}

#header .header-wrap-home1 .nav-wrap {
    float: left;
    display: flex;
    line-height: 90px;
}

#header .header-wrap-home1 .site-header-right {
    float: right;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    line-height: 90px;
}

#header .header-wrap-home1 .cart .fa,
.header-wrap-home1 .search .fa {
    font-size: 20px;
    padding: 16px;
    color: var(--primary-color) !important;
    border-radius: 65px;
    background-color: var(--primary-color3);
}

#header .header-wrap-home1 .button>.btn {
    background-color: var(--primary-color6);
    border: solid 2px var(--primary-color6);
    color: #ffff;
}

#header .header-wrap-home1 .button>.btn:hover {
    background-color: #ffff;
    border: solid 2px var(--primary-color6);
    color: var(--primary-color6);
}

.page-title-home .sub-title {
    letter-spacing: 4px !important;
    font-weight: 500 !important;
}

.flat-header-box {
    position: relative;
    z-index: 200;
    background: var(--primary-color3);
}


/* features 
---------------------------------------*/

.flat-features {
    margin-right: 0.3%;
    margin-left: 0.1%;
    margin-top: -13px;
}

.features-box {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.inner-features {
    background-color: #ffff;
    box-shadow: 0 0 30px 0 #cfcecb33;
    transition-duration: 0.5s;
}

.tf-icon {
    padding: 30px 0 0 30px;
    font-size: 66px;
    z-index: 200;
}

.flat-features .content-features {
    padding: 30px 28px 28px 28px;
}

.flat-features .section-desc {
    margin-top: 14px;
    margin-left: -1px;
}


/* about 
---------------------------------------*/

.flat-about {
    padding-top: 100px
}

.flat-about .about-post {
    position: relative;
    margin-top: 4.7%;
    margin-left: -4px;
}

.main-post-about {
    z-index: 50;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.flat-about .circel-inside {
    position: absolute;
    top: -15px;
    right: 34px;
    z-index: -1;
}

.flat-about .about-desc-box {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 55px 0 73px 0;
}

.about-content {
    margin-left: 7.3%;
}

.flat-about .about-content-title .section-desc {
    margin-top: 22px;
    color: var(--primary-color4);
}

.flat-about .about-count-box {
    position: absolute;
    padding: 10px 13px 10px 13px;
    background-color: var(--primary-color);
    border-radius: 0 15px 15px 15px;
    left: 50%;
    bottom: -62px;
    transform: translate(-50%, -50%);
}

.flat-about .inner-about-count-box {
    padding: 13px 18px 13px 18px;
    border-radius: 0 15px 15px 15px;
    border: 1px solid rgba(238, 228, 228, 0.616);
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    color: #fff;
}

.flat-about .about-count-box .number-count {
    font-family: 'Days', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 40px;
    margin-right: 8px;
}

.flat-about .about-count-box .caption-number-count {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    overflow: wrap;
    max-width: 200px;
}

.flat-about .inner-box {
    padding: 3px 0 0 17px;
}

.about-desc {
    width: 50%;
}

.flat-about .about-desc p {
    color: var(--primary-color4);
    padding-top: 10px;
    line-height: 1.5;
}

.about-box-nd1 {
    height: 70.63px;
    width: 260.32px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-bottom: 42px;
}

.about-box-nd1:last-child {
    margin-bottom: 42px;
}

.about-desc p {
    color: var(--primary-color4);
}

.about-box-nd1 .tf-icon {
    padding: 0;
    font-size: 50px;
    line-height: 55px;
}

.flat-about .image-desc {
    width: 50%;
    text-align: right;
}

.flat-about .image {
    transition-duration: 1s;
    text-align: right;
    margin-right: 5px;
}

.flat-about .section-title {
    margin-top: 15px;
}

.flat-about .button {
    transition-duration: 0.5s;
    margin-top: 50px;
}


/* service 
---------------------------------------*/

.flat-services {
    background-color: var(--primary-color3);
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/mask-services.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    margin-top: 135px;
    padding: 119px 0 120px 0;
}

.flat-services .our-services-box {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    text-align: left;
    background-color: #ffff;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
}

.flat-services .item-four-column {
    width: 50%;
}

.flat-services .our-services-box .icon-size {
    padding: 34px 2px 0 26px;
    font-size: 69px;
}

.flat-services .our-services-box .icon-size2 {
    padding: 37px 2px 0 36px;
    font-size: 59px;
}

.flat-services .our-services-box .icon-size3 {
    padding: 44px 0px 0 48px;
    font-size: 69px;
}

.flat-services .our-services-box .icon-size4 {
    padding: 36px 0px 0 41px;
    font-size: 66px;
}

.flat-services .our-services-box:hover .our-services-overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.flat-services .our-services-box .active,
.flat-services .our-services-box .icon-Group-7527 .path2:before,
.flat-services .our-services-box .icon-Group-7527 .path3:before {
    color: #ffff;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: left;
}

.flat-services .our-services-box:hover a,
.our-services-box:hover p,
.our-services-box:hover .icon-icon-farming-layer .path4:before,
.our-services-box:hover .icon-icon-farming-layer .path5:before,
.our-services-box:hover .icon-Group-7526 .path2:before,
.our-services-box:hover .icon-Group-7526 .path3:before,
.our-services-box:hover .icon-Group-7526 .path4:before,
.our-services-box:hover .icon-Group-7526 .path5:before,
.our-services-box:hover .icon-Group-7526 .path6:before,
.our-services-box:hover .icon-Group-7528 .path2:before,
.our-services-box:hover .icon-Group-7528 .path3:before {
    color: #ffff !important;
    transition: 0.5s ease-in-out;
}

.flat-services .our-services-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient( rgba(10, 78, 31, 0.753), rgba(10, 78, 31, 0.753)), url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/blog/close-up-picture-hand-holding-wooden-tray-which-full-pots-plants.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.flat-services .content-features {
    padding: 24px 20px 12px 43px;
    z-index: 200;
}

.flat-services .content-features h3 {
    position: relative;
    display: inherit;
}

.flat-services .content-features h3::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    top: 100%;
    left: 0;
    background: #ffff;
    transition: transform 0.3s;
    transform: scaleX(0);
    transform-origin: left;
}

.flat-services .content-features h3:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.flat-services .link2 {
    margin-top: 1px;
}

.flat-services .section-desc {
    margin-top: 15px;
}

.flat-services .read-more {
    line-height: 56px;
    letter-spacing: -0.5px;
}


/* team 
---------------------------------------*/

.flat-team {
    background-color: var(--primary-color2);
    background-image: url(../../../../../templates/karkas/assets/images/mask-back-ground/mask-team.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 121px 0 270px 0;
}

.flat-team .white {
    color: #ffff !important;
}

.flat-team .list-team {
    margin-top: 71px;
}

.flat-team .team-box {
    background-color: #28553f;
    padding: 30px 0 31px 0;
    border-radius: 8px;
}

.flat-team .info-staff {
    margin-top: 32px;
    letter-spacing: -0.4px;
}

.flat-team .section-desc-2 {
    margin-top: 7px;
    margin-left: 2px;
}

.flat-team .image-staff {
    position: relative;
    overflow: hidden;
    margin: 0 30px 0 30px;
}

.flat-team .image-staff img {
    width: 100%;
}

.flat-team .backround-overlay {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0;
    background-color: var(--primary-color2);
    opacity: 0.6;
    border-radius: 8px;
    height: 0;
}

.flat-team .list-icon-hidden {
    position: absolute;
    bottom: 0;
    top: 50%;
    right: -40%;
    transform: translateY(-50%) translateX(-50%);
}

.flat-team .widgets-nav-social {
    padding-left: 0;
}

.flat-team .list-icon-hidden a {
    margin-left: 10px;
}

.flat-team .image-staff:hover .backround-overlay {
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-team .widgets-nav-social {
    display: block;
}

.flat-team .image-staff:not(:hover) .backround-overlay {
    top: 0%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-team .image-staff:hover .list-icon-hidden {
    right: -3.6%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-team .image-staff:not(:hover) .list-icon-hidden {
    right: -40%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-team .list-icon-hidden .fa {
    background-color: var(--primary-color);
    padding: 17px 18px 17px 18px;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 15px;
}


/* team profolio 
---------------------------------------*/

.flat-profolio {
    margin: -166px 2.9% 0 2.5%;
}

.list-box-profolio .image-profolio {
    position: relative;
}

.list-box-profolio .image-profolio img {
    width: 100%;
}

.list-box-profolio .image-profolio:hover .profolio-show {
    height: 31%;
}

.list-box-profolio .image-profolio .active {
    height: 31%;
}

.list-box-profolio .image-profolio .active .profolio-btn::after {
    background: var(--primary-color);
    color: #ffff;
}

.list-box-profolio .profolio-show {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.list-box-profolio .profolio-info {
    background-color: #ffff;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    border-radius: 10px;
    margin: 0 6%;
    height: 122px;
    padding-left: 31px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.list-box-profolio .profolio-info .info {
    text-align: left;
}

.list-box-profolio .profolio-info .heading-features:hover {
    color: var(--primary-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.list-box-profolio .profolio-info .desc-box {
    margin-top: 4px;
    color: var(--primary-color4);
}

.list-box-profolio .profolio-info .button-next {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translate(0, -50%);
}

.list-box-profolio .profolio-info .profolio-btn::after {
    content: '\f061';
    font-family: 'FontAwesome';
    padding: 23px 24px 22px 24px;
    background: var(--primary-color3);
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.list-box-profolio .profolio-info .profolio-btn:hover::after {
    background: var(--primary-color);
    color: #ffff;
}


/* testimonials 
---------------------------------------*/

.flat-testimonials {
    text-align: center;
}

.flat-testimonials .list-testimonials {
    margin: 99px 0 120px 0;
}

.flat-testimonials .box-item {
    position: relative;
    background-color: var(--primary-color3);
    border-radius: 5px;
    padding: 65px 25px 22px 25px;
    border: solid 2px;
    z-index: 200;
}

.flat-testimonials .box-item:hover .box-item-overlay {
    top: 0%;
    border: solid 2px var(--primary-color);
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 0.3s;
}

.flat-testimonials .box-item .active {
    top: 0;
    border: solid 2px var(--primary-color);
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-testimonials .box-item-overlay {
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/Mask-testimonial-box.png);
    z-index: -1;
    transition-duration: 0.3s;
}

.flat-testimonials .des-2 {
    margin: 4px 22px 10px 0;
}

.flat-testimonials .section-desc-heading {
    margin-right: 24px;
}

.flat-testimonials .staff-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -41px;
    width: 80px;
}

.flat-testimonials .staff-img img {
    width: 100%;
    border-radius: 50%;
}

.flat-testimonials .icon-box {
    position: relative;
    top: 43px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
}

.flat-testimonials .icon-inner-box::after {
    content: '\f10d';
    font-family: 'FontAwesome';
    color: #348e38;
    font-size: 39px;
    padding: 17px 20px 17px 20px;
    background: #ffff;
    border-radius: 50%;
    box-shadow: 4px 19px 73px #b4b4b46b;
}


/* about 2nd 
---------------------------------------*/

.flat-about-2nd {
    position: relative;
    background-color: var(--primary-color);
    margin-top: 26px;
}

.flat-about-2nd .content-left {
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/home/person-cutthetree.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 836px;
    margin-right: 5.7%;
}

.flat-about-2nd .tag-logo {
    position: absolute;
    top: 40.4%;
    right: 5.7%;
    background-color: var(--primary-color3);
    padding: 52px 18px 50px 40px;
    border-bottom-left-radius: 43%;
    border-start-start-radius: 44%;
    -webkit-border-top-left-radius: 47%;
    -webkit-border-bottom-left-radius: 47%;
}

.flat-about-2nd .content-right {
    background-image: url(../../../../../templates/karkas/assets/images/mask-back-ground/mask-about2nd.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 38.4% 202px 0;
    margin-left: -0.4%;
}

.flat-about-2nd .box {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-top: 19px;
}

.flat-about-2nd .content-right .about-box,
.about-box {
    width: 50%;
    display: inline-block;
}

.flat-about-2nd .section-title {
    margin: 17px 75px 27px 0;
}

.flat-about-2nd .white {
    color: #ffff !important;
}

.flat-about-2nd .content-right .about-box01,
.about-box02 {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-left: -0.9px;
}

.flat-about-2nd .icon-box01 {
    line-height: 5;
}

.flat-about-2nd .icon-box02 {
    line-height: 5;
    margin-left: 3px;
}

.section-heading-jost-size20.icon {
    background-color: #529f56;
    padding: 15px 18px 15px 18px;
    border-radius: 50%;
    color: #fff;
}

.flat-about-2nd .content-box01,
.content-box02 {
    margin-left: 14px;
    padding-top: 12px;
}

.flat-about-2nd .section-desc {
    margin-top: -1px;
}

.flat-about-2nd .about-box-list {
    margin-top: 27px;
    line-height: 39px;
    line-height: 41px;
}

.flat-about-2nd .about-box-list2 {
    margin-top: 27px;
    line-height: 41px;
    margin-left: 2px;
}

.flat-about-2nd .list-box li:last-child {
    margin-top: -5px;
}

.flat-about-2nd .list-box a::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    margin-right: 13px;
}


/* subcribe 
---------------------------------------*/

.subcribe-about {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -118px;
}

.subcribe-box {
    background-color: #ffff;
    border-radius: 8px;
    height: 240px;
    box-shadow: 4px 19px 73px #b4b4b414;
}

.subcribe-box .inner-subcribe-box {
    padding-top: 70px;
    padding-left: 56px;
}

.subcribe-box .form-subcribe {
    position: relative;
    margin: 12px 28px 0 34px;
}

.subcribe-box .heading-subcribe {
    font-family: 'Days', sans-serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -0.7px;
    line-height: 48px;
    color: var(--primary-color5);
}

.subcribe-box .input-subcribe {
    background-color: var(--primary-color3);
    padding: 35px 35px 33px 28px;
    border-radius: 8px;
    border: 2px solid var(--primary-color3);
}

.subcribe-box .input-subcribe::placeholder {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 30px;
    color: var(--primary-color4);
}

.subcribe-box .btn-subcribe {
    position: absolute;
    background-color: var(--primary-color);
    color: #ffff;
    border-radius: 8px;
    top: 5px;
    right: 7px;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    padding: 19px 40px 19px 51px;
}

.subcribe-box .btn-subcribe:hover {
    background-color: var(--primary-color2);
}

.subcribe-box .btn-subcribe::before {
    content: '\f0e0';
    font-family: 'FontAwesome';
    padding-right: 11px;
}


/* work process 
---------------------------------------*/

.flat-work-process {
    padding: 120px 0 67px 0;
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/mask-wp.png);
    background-repeat: no-repeat;
    background-position: right;
}

.flat-work-process .features-box {
    margin-bottom: 27px;
    margin-left: -1.4%;
}

.flat-work-process .section-desc {
    margin-top: 19px;
}

.flat-work-process .content-features {
    padding: 34px 35px 0 68px;
}

.flat-work-process .cf-2 {
    margin-left: 6px;
}

.flat-work-process .cf-3 {
    margin-top: 9px;
}

.flat-work-process .cf-4 {
    margin-left: 6px;
    margin-top: -5px;
}

.flat-work-process .center {
    text-align: center;
}

.flat-work-process .icon-wp-box {
    position: relative;
    border: 7px solid var(--primary-color3);
    border-radius: 8px;
    padding: 54px 69px 53px 39px
}

.flat-work-process .size-icon2 {
    padding: 66px 71px 63px 36px;
}

.flat-work-process .size-icon {
    padding: 54px 71px 63px 36px;
}

.flat-work-process .tf-icon-wp {
    font-size: 80px;
}

.flat-work-process .tf-icon-wp2 {
    font-size: 73px;
}

.flat-work-process .tf-icon-wp4 {
    font-size: 56px;
}

.flat-work-process .icon-box {
    position: absolute;
    top: 43%;
    right: -44px;
}

.flat-work-process .icon-box2 {
    position: absolute;
    top: 42%;
    right: -48px;
}

.flat-work-process .icon-box3 {
    position: absolute;
    top: 43%;
    right: -48px;
}

.flat-work-process .icon {
    padding: 24px 26px 24px 26px;
}


/* contact 
---------------------------------------*/

.flat-contact {
    position: relative;
    background-color: var(--primary-color3);
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/Group-contact.png);
    background-position: -120% 37%;
    background-repeat: no-repeat;
    padding: 112px 5px 99px 0px;
}

.flat-contact .contact-left {
    margin-left: -2px;
    margin-top: -3px;
}

.flat-contact .white {
    color: #ffff;
}

.flat-contact .contact-address {
    position: absolute;
    bottom: 49px;
    left: -386px;
    width: 64.2%;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 46px 30px 1px 34px;
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/leaf-contact.png);
    background-position: 114% 117%;
    margin: 50px 57px 0 0;
}

.address-box {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.flat-contact .address-box .heading-features {
    font-family: 'Days', sans-serif;
}

.flat-contact .box-1 {
    margin-bottom: 37px;
}

.flat-contact .box-2 {
    margin-bottom: 33px;
}

.flat-contact .box-3 {
    margin-bottom: 43px;
}

.flat-contact .info {
    margin-left: 2px;
}

.flat-contact .section-subtitle {
    margin-top: 26px;
}

.flat-contact .section-title {
    margin-top: 22px;
}

.flat-contact .contact-right {
    margin-left: 8%;
}

.flat-contact .address-icon {
    background-color: #499a4c;
    border-radius: 12px;
    padding: 15px 25px 15px 25px;
    background-size: 15px;
    margin-right: 22px;
}

.address-box .icon-map {
    padding: 13px 20px 11px 20px;
    font-size: 30px;
}

.address-box .icon-phone {
    padding: 15px 18px 11px 18px;
    font-size: 30px;
}

.address-box .icon-mail {
    padding: 19px 17px 13px 18px;
    font-size: 24px;
}

.address-box .contact-location::before {
    content: '\e90e';
    font-family: 'icomoon';
}

.address-box .contact-phone::before {
    content: '\e90f';
    font-family: 'icomoon';
}

.address-box .contact-mail::before {
    content: '\e910';
    font-family: 'icomoon';
}

.contact-right .form-contact-right {
    background-color: #ffff;
    padding: 59px 44px 51px 94px;
    border-radius: 8px;
}

.contact-right .input-contact-message {
    margin: 15px 0 24px 0;
    height: 70px;
    padding: 13px 18px 21px 18px;
}

.contact-right .form-contact-right select,
input[type='text'],
textarea {
    border: solid 2px #d7decc;
}

.contact-right .form-contact-right textarea {
    height: 121px;
}

.contact-right .input-row {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    width: 100%;
}

.contact-right .input-name,
.input-phone,
.input-email,
.input-services {
    width: 50%;
}

.contact-right .input-phone,
.input-services {
    margin-left: 30px;
}

.contact-right .input-contact {
    margin: 15px 0 24px 0;
    height: 70px;
    padding: 21px 18px 21px 18px;
}

.contact-right .input-select {
    padding: 23px 18px 21px 14px;
}

.contact-right .heading-features {
    font-family: 'Rubik', sans-serif;
    letter-spacing: 0px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color2);
}

.contact-right .button {
    margin-top: 34px;
}

.contact-right .button>.btn {
    width: 100%;
    background-color: var(--primary-color2);
    border: 0px;
    color: #ffff;
}

.contact-right .button>.btn:hover {
    background-color: var(--primary-color);
    border: 0px;
}

.input-message {
    margin-top: 3px;
}


/* Blog 
---------------------------------------*/

.flat-blog-home01 {
    padding: 121px 0 167px 0;
}

.flat-blog-home01 .blog-item {
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.flat-blog-home01 .slide-blog-content {
    margin-top: -4px;
}

.flat-blog-home01 .background2 {
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/blog/woman-plant-the-tree.jpg);
}

.flat-blog-home01 .background3 {
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/blog/young-woman-working-glass-greenhouse.jpg);
}

.flat-blog-home01 .item-overlay {
    background-color: rgba(10, 78, 32, 0.534);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    transition: 0.5s ease;
    border-radius: 8px;
    z-index: 1;
    opacity: 1;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.flat-blog-home01 .blog-item:hover .item-overlay {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.flat-blog-home01 .item {
    margin-top: 68px;
}

.flat-blog-home01 .item-box {
    padding: 20px 20px;
    background: #4b6f0d;
}

.item-blog-img {
    background: #4b6f0d;
}

.item-blog-img img {
    transition: all .3s ease;
    opacity: 0.7;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.blog-item:hover .item-blog-img img {
    opacity: 1;
}

.flat-blog-home01 .box-2 {
    padding-left: 28px;
}

.flat-blog-home01 .box-3 {
    padding-left: 39px;
}

.folder::before {
    content: '\f115';
    font-family: 'FontAwesome';
    margin-right: 3px;
}

.flat-blog-home01 .folder {
    background-color: var(--primary-color3);
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
}

.flat-blog-home01 .margin-top {
    margin-top: 194px;
}

.flat-blog-home01 .content-info {
    font-size: 12px;
    line-height: 47px;
}

.flat-blog-home01 .folder-2 {
    margin-left: -8px;
}

.flat-blog-home01 .folder-3 {
    margin-left: -19px;
}

.flat-blog-home01 .line-blog-item {
    border-top: 2px solid #eee;
    opacity: 0.6;
    margin-top: 16px;
    margin-bottom: 16px;
}

.flat-blog-home01 .sub-title {
    font-size: 14px;
    letter-spacing: 0 !important;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 1px 1px rgb(0 0 0 / 40%);
}


/* features-home2 
---------------------------------------*/

.features-home2 {
    position: absolute;
    left: 28px;
    right: 0;
    bottom: -111px;
}

.features-home2 .features-home2-box {
    background-color: #ffff;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    border-radius: 8px;
    padding: 35px 61px 38px 60px;
    margin-left: -0.7%;
    margin-right: -0.9%;
    box-shadow: 4px 19px 73px #b4b4b442;
}

.features-home2 .features-left,
.features-home2 .features-right {
    width: 50%;
}

.features-home2 .title-main {
    font-size: 36px;
    letter-spacing: -0.7px;
    line-height: 58px;
}

.features-home2 .heading2 {
    font-size: 26px;
}

.features-home2 .section-desc {
    margin: 13px 0 0 -9px;
}


/* why choose us 
---------------------------------------*/

.flat-why-choose-us {
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/Leaf-WCU.png);
    background-position: 108% 38%;
    background-repeat: no-repeat;
}

.flat-why-choose-us .flat-WCU-box {
    position: relative;
    border-radius: 8px;
    margin-left: 1.5%;
    margin-right: -1.7%;
    box-shadow: -2px 6px 23px #b4b4b44f;
}

.section-title-box {
    text-align: center;
}

.section-title-box.text-left {
    text-align: left;
}

.section-title-box .section-title {
    margin-top: 8px;
}

.flat-why-choose-us .WCU-image {
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.flat-why-choose-us .tf-icon {
    padding: 29px 28px 0 27px;
}

.flat-why-choose-us .icon2 {
    padding: 29px 36px 0 36px;
}

.flat-why-choose-us .icon3 {
    padding: 28px 40px 0 39px;
}

.flat-why-choose-us .content-features {
    padding: 28px 20px 52px 0;
}

.flat-why-choose-us .section-desc {
    margin-top: 10px;
}

.flat-why-choose-us .button-read-more {
    position: absolute;
    left: 50%;
    transform: translate(-41%);
    right: 0;
    bottom: -18px;
    transition-duration: 0.5s;
}

.flat-why-choose-us .button-read-more a {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.flat-why-choose-us .button-read-more .btn-read-more {
    border: solid 1px var(--primary-color);
    border-radius: 24px;
    padding: 15px 31px 16px 31px;
    background-color: #ffff;
}

.flat-why-choose-us .button-read-more .btn-read-more:hover {
    border: solid 1px var(--primary-color);
    background-color: var(--primary-color);
    color: #ffff;
}

.flat-why-choose-us .button-read-more .read-more::after {
    margin-left: 8px;
}


/* about home2 
---------------------------------------*/

.flat-about-home2 {
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/mark-leaf.png);
    background-repeat: no-repeat;
    background-position: -7.5% 25%;
    background-color: var(--primary-color3);
}

.flat-about-home2 .image-about-home2 {
    float: right;
    width: 645px;
}

.flat-about-home2 .about-content-left {
    margin: 0 0 0 1.6%;
}

.flat-about-home2 .about-content-left .section-title {
    margin-top: 20px;
}

.flat-about-home2 .about-content-left .icon-about {
    position: relative;
    margin-top: 59px;
}

.flat-about-home2 .about-content-left .section-desc {
    margin-top: 16px;
}

.flat-about-home2 .about-content-left .tf-icon-about {
    padding: 34px 49px 60px 49px;
    font-size: 57px;
    background-color: #ffff;
    border-radius: 50%;
}

.flat-about-home2 .about-history-box {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.flat-about-home2 .about-box-right {
    padding: 22px 0 0 25px;
}

.flat-about-home2 .about-content-left .about-count-year {
    position: absolute;
    bottom: -25px;
    background-color: var(--primary-color);
    padding: 10px 28px 9px 33px;
    border-radius: 29px;
}

.flat-about-home2 .about-content-right {
    margin: 0 -21px 0 6px;
    padding: 67px 35px 57px 47px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    background-color: var(--primary-color);
}

.flat-about-home2 .about-content-right .icon-about-right {
    padding: 23px 25px 0 0;
}

.flat-about-home2 .about-content-right .icon-about-right::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    padding: 17px 17px 17px 17px;
    background-color: #499A4C;
    font-size: 25px;
    border-radius: 8px;
}

.flat-about-home2 .about-content-right .section-desc {
    margin-top: 9px;
}

.flat-about-home2 .about-content-right .box-2 {
    margin-top: 39px;
}


/* service home2 
---------------------------------------*/

.flat-service-home2 {
    position: relative;
    height: 509.45px;
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/home/plants-pot-with-watering-can.jpg);
    background-position: center;
    background-size: cover;
}

.service-home2-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color2);
    opacity: 0.9;
}

.flat-service-home2 .service-box {
    background-color: #ffff;
    margin: 0 -2% 0 2%;
    border-radius: 8px;
    padding: 39px 25px 22px 25px;
    box-shadow: 4px 19px 73px #b4b4b442;
}

.flat-service-home2 .service-box2 {
    padding: 39px 25px 24px 25px;
}

.flat-service-home2 .service-box3 {
    padding: 39px 25px 29px 25px;
}

.flat-service-home2 .service-box4 {
    padding: 39px 25px 31px 25px;
}

.flat-service-home2 .service-box .section-desc {
    margin-top: 13px;
}

.flat-service-home2 .service-box .service-line {
    margin: 37px 0 34px 0;
    color: var(--primary-color);
    border-bottom: solid 1px var(--primary-color);
}

.flat-service-home2 .service-box .tf-icon-service {
    padding: 29px 0 0 1px;
    font-size: 69px;
}

.flat-service-home2 .service-box .icon-box2 {
    padding: 29px 0px 0px 6px;
    font-size: 73px;
}

.flat-service-home2 .service-box .icon-box3 {
    padding: 29px 0 0 4px;
    font-size: 59px;
}

.flat-service-home2 .service-box .icon-box4 {
    padding: 29px 0 0 4px;
    font-size: 64px;
}

.flat-service-home2 .service-box .line2 {
    margin: 37px 0 29px 0;
}

.flat-service-home2 .service-box .line3 {
    margin: 37px 0 37px 0;
}

.flat-service-home2 .service-box .line4 {
    margin: 37px 0 30px 0;
}


/* shop 
---------------------------------------*/

.flat-shop {
    margin-top: 254px;
}

.flat-shop .tf-shop-item {
    display: flex;
    justify-content: space-between;
}

.flat-shop .shop-item-box {
    text-align: center;
    margin: 0 -2.2% 0 2%;
    border: solid 1px #cccc;
}

.flat-shop .image-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.flat-shop .shop-item-box .content-item {
    padding: 27px 0 25px 0;
    text-align: center;
}

.flat-shop .section-heading-jost-size20 {
    font-size: 18px;
}

.flat-shop .price-item {
    font-family: 'Days', sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--primary-color5);
    margin: 2px 0 0 0;
}

.flat-shop .shop-item-box:hover .widgets-icon-item {
    bottom: 4%;
}

.flat-shop .widgets-icon-item {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    position: absolute;
    left: 50%;
    bottom: -18%;
    transform: translate(-50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-shop .widgets-icon-item a {
    font-size: 19px;
    color: #ffff;
    margin-left: 15px;
    padding: 10px 13px 10px 13px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.flat-shop .image-item .active1 {
    bottom: 4%;
}

.flat-shop .widgets-icon-item .active2 {
    background-color: var(--primary-color2);
}

.flat-shop .widgets-icon-item a:hover {
    background-color: var(--primary-color2);
}

.flat-shop .item-add-to-cart::after {
    content: '\f07a';
    font-family: 'FontAwesome';
}

.flat-shop .item-add-to-wishlist::after {
    font-size: 16px;
    content: '\f08a';
    font-family: 'FontAwesome';
}

.flat-shop .item-compare::after {
    content: '\f0b2';
    font-family: 'FontAwesome';
}


/* counter 
---------------------------------------*/

.flat-counter {
    background-color: var(--primary-color3);
}

.flat-counter .counter-content-left {
    position: relative;
    margin-left: 0.6%;
    margin-right: -0.6%;
}

.flat-counter .background-counter {
    height: 540px;
    border-radius: 8px;
}

.flat-counter .counter-content-right {
    margin-left: 2%;
    margin-right: -2%;
}

.flat-counter .content-left-box {
    position: absolute;
    top: 133px;
    left: -29px;
    background-color: #ffff;
    width: 400px;
    padding: 33px 28px 43px 36px;
    border-top: solid 10px var(--primary-color);
}

.flat-counter .content-left-box .section-desc {
    margin-top: 25px;
    padding-right: 18px;
}

.flat-counter .content-right-box {
    background-color: var(--primary-color);
    padding: 33px 28px 39px 40px;
    border-radius: 8px;
}

.flat-counter .counter-content-right .box-2 {
    padding: 37px 28px 35px 40px;
}

.flat-counter .counter-content-right .box-3 {
    padding: 37px 28px 31px 40px;
}


/* profolio home2 
---------------------------------------*/

.flat-profolio-home2 {
    margin: 0 2.4% 0 3%;
}

.flat-profolio-home2 .list-box-profolio .profolio-info {
    margin-left: 6.7%;
    margin-right: 6.3%;
}

.flat-profolio-home2 .list-box-profolio:hover .profolio-show {
    height: 45.5%;
}

.flat-profolio-home2 .list-box-profolio .image-profolio .active {
    height: 22.4%;
}

.flat-profolio-home2 .list-box-profolio .profolio-info .button-next {
    right: 6%;
}


/* testimonials home2 
---------------------------------------*/

.flat-testimonials-home2 {
    position: relative;
    background-image: url(https://xn----8sbecmd7c3ag4h.xn--p1ai/bitrix/templates/karkas/assets/images/mask-back-ground/mark-leaf-testimonials.png);
    background-repeat: no-repeat;
    background-position: -8.5% 111%;
}

.flat-testimonials-home2 .section-title-box .section-title {
    margin-top: 14px;
}

.flat-testimonials-home2 .section-title-box {
    text-align: left;
}

.flat-testimonials-home2 .author-carousel {
    position: absolute;
    bottom: 19px;
    left: 12px;
    z-index: 200;
    cursor: ew-resize;
}

.flat-testimonials-home2 .testimonials-author {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.flat-testimonials-home2 .testimonials-author-box {
    box-shadow: 2px 1px 16px #b4b4b442;
    background-color: #ffff;
    padding: 45px 30px 47px 50px;
    margin: 20px 0 20px 10px;
    width: 370px;
}

.flat-testimonials-home2 .box-2 {
    padding: 45px 40px 47px 40px;
}

.flat-testimonials-home2 .testimonials-author-img {
    position: relative;
    width: 80px;
}

.flat-testimonials-home2 .testimonials-author-text {
    margin-left: 25px;
    margin-top: 11px;
}

.flat-testimonials-home2 .testimonials-author-img::after {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    bottom: 0;
    left: 52px;
    color: #ffff;
    font-size: 15px;
    padding: 1px 9px 1px 9px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 4px 19px 73px #b4b4b46b;
}

.flat-testimonials-home2 .testimonials-content-right {
    float: right;
    margin-right: 1%;
}


/* news home2 
---------------------------------------*/

.flat-news-home2 {
    padding: 80px 0 10px;
}

.flat-news-home2 .section-title-box {
    margin-left: 1.4%;
    text-align: left;
}

.flat-news-home2 .button-news {
    margin-right: 2.2%;
}

.flat-news-home2 .flat-news-box {
    position: relative;
    height: 600px;
}

.flat-news-home2 .news-image {
    border-radius: 8px;
    overflow: hidden;
}

.flat-news-home2 .news-image img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.flat-news-home2 .news-content-box {
    position: absolute;
    top: 202px;
    padding: 30px 30px 23px 35px;
    margin-left: 5%;
    margin-right: 4.5%;
    background-color: #ffff;
    box-shadow: -8px -1px 20px #b4b4b42e;
}

.flat-news-home2 .content-box-txt {
    margin-top: 25px;
}

.flat-news-home2 .content-box-txt a {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color5);
}

.flat-news-home2 .content-prev,
.flat-news-home2 .content-box-txt p {
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.4;
    font-size: 14px;
    color: var(--primary-color7);
}

.flat-news-home2 .news-date a {
    padding: 8px 26px 8px 20px;
    background-color: var(--primary-color3);
}

.flat-news-home2 a.user {
    margin-right: 22px;
}

.flat-news-home2 .news-rm::after {
    content: '\f061';
    font-family: 'FontAwesome';
    margin-left: 10px;
}


/* services details 
---------------------------------------*/

.flat-service-details .widget-nav-tab ul li {
    position: relative;
    border: solid 1px #F0F0F1;
    padding: 22px 20px 22px 40px;
    margin-bottom: 16px;
    transition-duration: 0.3s;
    border-radius: 8px;
}

.flat-service-details .widget-nav-tab ul li::after {
    position: absolute;
    right: 8%;
    content: '\f061';
    font-family: 'FontAwesome';
    color: #BCBCBC;
}

.flat-service-details .widget-nav-tab ul li:hover:after {
    color: var(--primary-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flat-service-details .widget-nav-tab ul li .active {
    color: var(--primary-color2);
    font-weight: 600;
}

.flat-service-details .widget-nav-tab ul li:first-child::after {
    color: var(--primary-color);
}

.flat-service-details .widget-contact-services-details {
    padding: 35px 34px 20px 38px;
    box-shadow: 4px 19px 73px #b4b4b43d;
    border-radius: 8px;
}

.widget-contact-services-details h2 {
    position: relative;
}

.widget-contact-services-details ul li {
    padding: 22px 11px 22px 0;
    border-bottom: solid 2px #F0F0F1;
}

.widget-contact-services-details ul li:last-child {
    border-bottom: none;
}

.widget-contact-services-details h2::after {
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
}

.widget-sidebar-contact-us .icon-author::before,
.widget-sidebar-contact-us .icon-telephone::before,
.widget-sidebar-contact-us .icon-location::before,
.widget-sidebar-contact-us .icon-email::before {
    content: '\f007';
    font-family: 'FontAwesome';
    color: var(--primary-color);
    font-size: 25px;
    padding-right: 20px;
}

.widget-sidebar-contact-us .icon-telephone::before {
    content: '\f095';
}

.widget-sidebar-contact-us .icon-location::before {
    content: '\f041';
}

.widget-sidebar-contact-us .icon-email::before {
    content: '\f0e0';
}

.flat-service-details .widget-sidebar-contact-us .info-contact-us {
    display: block;
    float: right;
    font-weight: 400;
    color: var(--primary-color4);
}

.flat-service-details .subtitle-case-studio {
    color: var(--primary-color);
    letter-spacing: 4px;
    font-weight: 400;
}

.flat-service-details .title-case-studio {
    letter-spacing: 0px;
    margin-bottom: 8px;
}

.flat-service-details .services-details-case-studio {
    background-color: var(--primary-color3);
    padding: 32px 30px 53px 41px;
}

.flat-service-details .content-service-details .section-desc {
    color: var(--primary-color4);
}

.flat-service-details .service-box {
    width: 50%;
}

.flat-service-details .icon-services {
    font-size: 40px;
    padding: 25px 30px;
    background-color: var(--primary-color3);
}

.flat-service-details .inner-box {
    padding-left: 19px;
}

.flat-service-details .name-author::before {
    content: 'BY';
    font-weight: 300;
    font-size: 14px;
}

.flat-service-details .create-by-author {
    padding: 35px 80px;
    background-color: var(--primary-color);
    background-image: url(../../../../../templates/karkas/assets/images/mask-back-ground/mark-box-services.png);
    background-repeat: no-repeat;
}

.content-author {
    font-weight: 300;
    font-style: italic;
    font-size: 25px;
    line-height: 40px;
}

.flat-service-details .button-services {
    padding: 20px;
    background-color: var(--primary-color);
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

.flat-service-details .btn-left {
    padding: 17px 27px 17px 27px;
}

.flat-service-details .btn-right {
    background-color: var(--primary-color2);
    padding: 17px 31px 17px 32px;
}

.flat-service-details .btn-left:hover,
.flat-service-details .btn-right:hover {
    background-color: #ffff;
    color: var(--primary-color2);
}


/* team page 
-----------------------------*/

.flat-team-page {
    padding: 121px 0 180px 0;
    background-color: #ffff;
    background-image: unset;
}

.flat-team-page .team-box {
    background-color: #ffff;
    box-shadow: 4px 19px 73px #b4b4b452;
}

.flat-team-page .list-team {
    margin-top: 0;
}


/* case study 
-----------------------------*/

.flat-case-study .list-box-profolio .image-profolio img {
    width: 100%;
}

.flat-case-study .list-box-profolio .image-profolio .active,
.flat-case-study .list-box-profolio .image-profolio:hover .profolio-show {
    height: 27%;
}

.flat-case-study .list-box-profolio .profolio-info {
    margin: 0 6.5%;
}

.flat-case-study .list-box-profolio .profolio-info .button-next {
    right: 5.8%;
}


/* flat faq 
-----------------------------*/

.flat-faq {
    margin: 120px 0;
}

.flat-accordion .flat-toggle .toggle-title {
    cursor: pointer;
    position: relative;
    border: solid 2px #E8E8E8;
    padding: 15px 20px;
}

.flat-accordion .flat-toggle:not(:last-child) .toggle-title {
    border-bottom: none;
}

.flat-accordion .flat-toggle .toggle-title:before {
    font-family: "FontAwesome";
    position: absolute;
    font-size: 14px;
    content: "\2b";
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: normal;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: var( --primary-color);
    background-color: var( --primary-color3);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.flat-accordion .flat-toggle .toggle-title.active:after {
    font-family: "FontAwesome";
    position: absolute;
    font-size: 14px;
    content: "\f068";
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: normal;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: var( --primary-color);
    background-color: var( --primary-color3);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.flat-accordion .flat-toggle .toggle-content {
    border: solid 2px #E8E8E8;
    border-top: none;
    padding: 5px 30px;
}

.flat-accordion .flat-toggle .toggle-content {
    display: none;
}

.flat-accordion .flat-toggle:not(:last-child) .toggle-content {
    border-bottom: none;
}

.flat-faq .widgets-category ul.list-category>li:first-child {
    background-color: var(--primary-color);
    border: 1px var(--primary-color);
}

.flat-faq .widgets-category ul.list-category>li:hover {
    background-color: var(--primary-color);
}

.flat-faq .widgets-category ul.list-category>li:hover a {
    color: #ffff;
}

.flat-faq .widgets-category ul.list-category>li>a.active {
    background-color: var(--primary-color);
    color: #ffff;
}


/* flat contact page 
-----------------------------*/

.flat-contact-page {
    margin: 60px 0 110px
}

.flat-contact-page .address-box {
    border: solid 2px var(--primary-color3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.flat-contact-page .address-box:last-child {
    margin-bottom: 0;
}

.flat-contact-page .contact-right .form-contact-right {
    padding: 59px 45px 51px 56px;
    box-shadow: 4px 19px 73px #f1f1f1;
}

.flat-contact-page .address-box {
    padding: 15px 20px 15px 12px;
}

.flat-contact-page .address-box .info {
    padding-left: 7px;
}

.flat-contact-page .address-box i {
    font-size: 26px;
    color: var(--primary-color);
    padding: 9px 20px 9px 20px;
    background: var(--primary-color3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 66px;
    height: 66px;
}

.flat-contact-page .address-box .icon-mail {
    font-size: 35px;
    color: var(--primary-color);
}

.themesflat-map {
    height: 573px;
}

.address-box p.desc-box a,
.address-box p.desc-box {
    margin-bottom: 0;
    color: var(--primary-color5);
}


/* case details
-----------------------------*/

.flat-case-details {
    margin: 133px 0 178px 0;
}

.flat-case-details .tf-icon {
    position: relative;
    padding: 0;
}

.flat-case-details .tf-icon::before {
    color: white;
    font-size: 30px;
    background-color: var(--primary-color);
    padding: 14px;
    border-radius: 50%;
}

.flat-case-details .features-box {
    margin: 64px 0 51px 32px;
}

.flat-case-details .section-heading-jost-size28 {
    letter-spacing: 0px;
}

.flat-case-details .content-features {
    margin-left: 65px;
}

.flat-case-details .author-note {
    background-color: var(--primary-color3);
    text-align: center;
}

.flat-case-details .author-post {
    margin-right: -35px;
}

.flat-case-details .author-note {
    padding: 59px 80px 62px 80px;
    margin-left: 35px;
}

.flat-case-details .author-name {
    margin-bottom: 13px;
}

.flat-case-details .author-name::before {
    font-family: "FontAwesome";
    font-size: 14px;
    content: "\f068";
    padding-right: 10px;
}

.flat-case-details .author-desc {
    font-size: 25px;
    font-weight: 300;
    line-height: 45px;
    color: #222429;
}

.flat-case-details .post-tags-socials {
    display: table;
    width: 100%;
    margin-top: 97px;
}

.flat-case-details .post-tags,
.flat-case-details .post-socials {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.flat-case-details .post-tags {
    text-align: left;
}

.flat-case-details .post-socials {
    text-align: right;
}

.flat-case-details .post-tags a {
    padding: 10px;
    background-color: var(--primary-color3);
}

.flat-case-details .post-socials a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-left: 15px;
    display: inline-block;
    background-color: transparent;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}

.flat-case-details .post-socials a.skype {
    background-color: #1DA1F2;
}

.flat-case-details .post-socials a.facebook {
    background-color: #3B5998;
}

.flat-case-details .post-socials a.instagram {
    background-color: #E40000;
}

.flat-case-details .post-socials a.twitter {
    background-color: #007BB5;
}


/* footer style2 
---------------------------------------*/

.footer-style-2 {
    background-color: var(--primary-color3) !important;
}


/* top footer */

.footer-style-2 .top-footer-style2::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: 2px;
    background-color: #E3E3E3;
    top: 116px;
    border-radius: 20px;
    z-index: 2;
}

.footer-style-2 .logo-footer-style2 {
    margin: 3px 0px 0px -6px;
}

.footer-style-2 .widgets-about .widgets-nav-social {
    margin: 18px -40px 0 0;
    padding-top: unset;
}

.footer-style-2 .widgets-nav-social .fa {
    border: solid 1px #ffff !important;
    background-color: #ffff !important;
}

.widgets-about .widgets-nav-social .fa.fa-facebook {
    padding: 10px 13px 10px 13px;
    border: solid 1px var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: #fff;
}

.footer-style-2 .widgets-nav-social .fa:hover {
    border: solid 1px var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}


/* footer content left */

.footer-style-2 .list-footer .footer-item {
    width: 33.3333% !important;
}

.footer-style-2 .title-section-footer::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 3px;
    background-color: var(--primary-color);
    top: 154px;
}

.footer-style-2 .icon-location::before,
.footer-style-2 .icon-phone-call::before,
.footer-style-2 .icon-email::before {
    line-height: 0 !important;
}

.footer-style-2 .content-location,
.footer-style-2 .content-phone-call,
.footer-style-2 .content-email {
    padding-top: 0 !important;
}

.footer-style-2 .footer .footer-contact-info .content-phone-call::before,
.content-phone-call::after {
    display: none;
}

.footer-style-2 .content-phone-call {
    margin-top: 22px;
    padding-left: 14px !important;
}

.footer-style-2 .icon-phone-call::before {
    padding: 8px 0px 8px 17px !important;
}

.footer-style-2 .icon-email::before {
    font-size: 21px !important;
    padding: 7px 12px 8px 22px !important;
}

.footer-style-2 .list-footer {
    padding-top: 110px !important;
    margin-left: 0 !important;
}

.footer-style-2 .list-contact-footer2 {
    margin-left: -6%;
    margin-top: 46px;
}

.footer-style-2 .widgets-menu-2 .entry-date {
    font-size: 12px;
    color: var(--primary-color2);
}

.footer-style-2 .widgets-menu-1 {
    margin-left: 28.1% !important;
}

.footer-style-2 .widgets-menu-2 {
    margin-left: 13.3% !important;
    margin-right: unset !important;
}


/* footer form contact right */

.footer-style-2 .footer-form-home2 {
    margin: -32px -1.4% 0 -1.1%;
}

.footer-style-2 .contact-right {
    background-color: var(--primary-color);
    padding: 62px 35px 59px 36px;
    border-radius: 8px;
}

.footer-style-2 .contact-right .form-contact-right {
    background-color: unset;
    padding: unset;
    padding-top: 27px;
}

.footer-style-2 .contact-right .input-contact {
    margin: 15px 0 15px 0;
    height: 68px;
    padding: 22px 18px 21px 24px;
}

.footer-style-2 .contact-right .button {
    margin-top: 21px;
}

.footer-style-2 .contact-right .input-name,
.footer-style-2 .input-phone,
.footer-style-2 .input-email,
.footer-style-2 .input-services {
    width: 100%;
}

.footer-style-2 .contact-right .input-phone,
.footer-style-2 .input-services {
    margin-left: unset;
}

.footer-style-2 .contact-right .button>.btn {
    border: solid 2px var(--primary-color2);
}

.footer-style-2 .contact-right .button>.btn:hover {
    color: var(--primary-color2);
    border: solid 2px #fff;
    background-color: #fff;
}


/* footer bottom */

.footer-style-2 .footer-bottom .copyright {
    border-top: solid 2px rgba(180, 174, 174, 0.212);
}

.footer-style-2 .footer-bottom .copyright-text {
    color: var(--primary-color2);
}


/* End */


/* Start:/bitrix/templates/karkas/assets/css/responsive.css?164768409038934*/

@media (min-width: 1250px) and (max-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1250px;
    }
}

@media (max-width: 1400px) {
    .pth-img img {
        right: -350px;
    }
    .pth-of-txt-wrap {
        right: 279px;
    }
    .stick-box-top {
        right: 535px;
    }
    .circle-gr2 {
        right: 430px;
    }
    .catalog-left-menu .section-list-items li a {
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .flat-testimonials-post .owl-controls {
        display: none;
    }
    .about-content {
        margin: 0;
    }
    #mainnav .menu li a {
        font-size: 15px;
    }
    .nav-wrap {
        margin-left: -30%;
    }
    #header .site-header-right .button {
        margin-top: -2px;
        margin-left: 10px;
    }
    #header .cart {
        padding-left: 15px;
    }
    .features-home2 {
        left: 0;
        right: 0;
    }
    .flat-features .features-box {
        display: unset;
    }
    .flat-why-choose-us .button-read-more {
        left: unset;
    }
    .flat-news-home2 .news-content-box {
        top: 155px;
    }
    .flat-about {
        padding-top: 60px
    }
    .flat-about .circel-inside {
        right: 10px;
    }
    .flat-about .image-desc {
        text-align: unset;
    }
    .flat-team .icon-top::after {
        top: 4px;
        right: 25px;
    }
    .flat-profolio-home2 .list-box-profolio .image-profolio .active {
        height: 37.4%;
    }
    .flat-profolio-home2 .list-box-profolio:hover .profolio-show {
        height: 70%;
    }
    .flat-profolio-home2 .profolio-info .desc-box {
        max-width: 150px;
        max-height: 34px;
        overflow: hidden;
    }
    .flat-profolio .item-four-column {
        width: 50%;
    }
    .list-box-profolio .image-profolio {
        margin-bottom: 30px;
    }
    .flat-testimonials .dividers-testimonials {
        height: 40px;
    }
    .flat-about-2nd .content-right {
        padding: 60px 4.4% 178px 1.3%;
    }
    .flat-contact .contact-address {
        bottom: 20px;
        left: -314px;
    }
    .footer .footer-contact-info .location {
        padding-right: 0px;
    }
    .footer .footer-contact-info .phone-call {
        padding-left: 2.6%;
    }
    .footer .footer-contact-info .email {
        padding-left: 5%;
    }
    .footer .logo-footer {
        padding: 33px 25px 33px 25px;
    }
}

@media only screen and (max-width: 1250px) {
    .pth-icon-item {
        margin-right: 30px;
    }
    .pth-img img {
        right: -420px;
    }
    .circle-gr2 {
        right: 360px;
    }
    .stick-box-top {
        right: 435px;
    }
    .pth-of-txt-wrap {
        right: 210px;
    }
    .counter-box {
        padding: 25px 25px 45px 25px;
    }
    .counter-box .title-count {
        font-size: 19px;
    }
    .block-3d-mac-text {
        left: 215px;
    }
    .block-3d-mac-content-text {
        font-size: 33px;
        padding: 10px 0 48px 35px;
    }
}

@media (min-width: 991px) and (max-width: 1250px) {
    .owl-thumb-item img {
        height: 37px;
    }
    button.owl-thumb-item {
        margin-right: 10px;
        border: 3px solid #fff;
    }
    .owl-thumbs {
        bottom: -25px;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .pth-content-txt-title .h1,
    .pth-content-txt-title h1 {
        font-size: 33px;
    }
    .pth-content-txt-title .h1 br,
    .pth-content-txt-title h1 br {
        display: none;
    }
    .stick-box-top {
        right: 285px;
    }
    .pth-icon-list {
        padding-left: 0;
    }
    .pth-img img {
        right: -450px;
    }
    .circle-gr2 {
        bottom: 245px;
        right: 230px;
    }
    .pth-of-txt-wrap {
        right: 160px;
    }
    .image-desc {
        display: none;
    }
    .color-block-title {
        font-size: 17px;
        padding: 50px 0 0 20px;
    }
    .block-3d-mac-text {
        left: 165px;
        top: 30px;
    }
    .block-3d-mac-content-text {
        font-size: 26px;
    }
    .block-3d-title {
        font-size: 24px;
    }
    .block-3d-title-text br {
        display: none;
    }
    .pth-icon-list-pd .pth-icon-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .pth-icon-list-pd .pth-icon-item {
        width: 100%;
        border-bottom: 1px solid #e6e1d7;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .pth-icon-list-pd .pth-icon-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
}


/* Thanks page css */
.thanks {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.thanks h1,
.thanks h4 {
    line-height: normal;
}


/* Smaller than standard 1200 */

@media only screen and (max-width: 1199px) {
    .flat-about {
        padding-top: 40px
    }
    .logo-header-txt {
        display: none;
    }
    .top-bar-left {
        display: none;
    }
    .top-contact {
        justify-content: space-between;
    }
    .top-header1 .top-bar-right {
        width: 100%;
    }
    #mainnav .menu>li>a {
        margin: 0 7px;
    }
    .section-title {
        font-size: 34px;
        line-height: 42px;
    }
    .flat-about .section-title {
        margin-top: 10px;
    }
    .counter-area-wrap {
        margin-left: 0;
    }
    .delivery-img {
        left: -270px;
    }
    .catalog-new-home {
        padding: 0px 0 60px;
    }
    .video-list {
        height: 300px;
    }
    .footer .footer-contact-info .footer-info-item-content span,
    .footer .footer-contact-info .footer-info-item-content span.one-l a {
        font-size: 15px;
    }
    .footer .footer-contact-info .footer-info-item-content {
        padding: 0 0px 0 15px;
    }
    .catalog-left-menu .section-list-items li a span {
        display: none;
    }
    .detail-product-price-wrap {
        margin-bottom: 30px;
    }
}


/* tablet */

@media (min-width: 768px) and (max-width: 1023px) {
    .list-footer .footer-item,
    .flat-profolio-home2 .item-three-column {
        width: 50%;
    }
    .flat-why-choose-us .WCU-image {
        height: 160px;
    }
    .flat-why-choose-us .button-read-more {
        left: 15%;
        transform: translate(0);
    }
    .flat-about-home2 .about-box-right {
        padding: 50px 25% 0 25px;
    }
    .flat-about-home2 .about-content-left .about-count-year {
        bottom: -65px;
    }
    .flat-about-2nd .content-right {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .flat-profolio-home2 .item-flex-100 {
        display: flex;
        width: 100% !important;
    }
    .item-flex-100 .list-box-profolio:first-child {
        margin-right: 15px;
    }
    .item-flex-100 .list-box-profolio:last-child {
        margin-left: 15px;
    }
    .flat-profolio-home2 .list-box-profolio:hover .profolio-show {
        height: 65%;
    }
    .flat-profolio-home2 .list-box-profolio .image-profolio .active {
        height: 31.4%;
    }
    .flat-profolio-home2 .list-box-profolio .profolio-info .profolio-btn::after {
        margin-left: unset;
        margin-right: 25px;
    }
    .flat-profolio-home2 .desc-box {
        max-height: 30px;
        overflow: hidden;
    }
    .flat-testimonials-home2 .testimonials-author-box {
        margin: 20px 0;
        width: unset;
    }
    .flat-news-home2 .news-content-box {
        padding: 30px 20px 23px 25px;
    }
    .flat-news-home2 .button-news {
        margin-right: unset;
        margin-top: 15%;
    }
    .footer-style-2 .title-section-footer::before {
        top: 40%;
    }
    .flat-team .icon-top::after {
        padding: 10px 11px 10px 11px;
        font-size: 10px;
    }
    .flat-team .list-icon-hidden .fa {
        padding: 10px 11px 10px 11px;
        font-size: 10px;
    }
    .widgets-nav-social {
        line-height: unset;
    }
    .footer .logo-footer {
        padding: 38px 18px 38px 18px;
    }
    .footer .content-email {
        max-width: 120px;
        overflow: hidden;
    }
    .footer .footer-contact-info .email {
        padding-left: 4%;
    }
    .footer .footer-contact-info .location {
        padding-left: 6.3%;
        padding-right: 0;
    }
    .footer .footer-contact-info .phone-call {
        padding-left: 0%;
    }
    .footer .content-location {
        max-height: 80px;
        overflow: hidden;
    }
    .flat-about-2nd .tag-logo {
        right: 0;
    }
    .flat-about-2nd .content-left {
        margin-right: 0;
    }
    .about-desc {
        width: 30%;
    }
    .flat-about .circel-inside {
        right: 94px;
    }
    #header .site-header-right .button,
    .contact .contact-address {
        display: none;
    }
    #header .header-wrap-home1 .inner-header {
        padding-left: 0;
    }
    #mainnav .menu li a {
        font-size: 15px;
    }
    .footer .footer-contact-info .heading-16px-rubik {
        font-size: 12px;
    }
    .about-inner .about-post {
        margin-top: 4.7%;
        margin-left: 80px;
        margin-right: 80px;
    }
    .about-inner .about-content {
        margin-left: 0;
        margin-top: 11%;
    }
    .team .list-team {
        margin: 71px 23% 0 23%;
    }
    .team .our-profolio {
        margin: 10px 3% 0 2.4%;
    }
    .team .image-profolio {
        margin-bottom: 25px;
    }
    .team .profolio-info {
        margin-left: 15.6px;
        margin-right: 15.6px;
        padding-left: 30px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        overflow: hidden;
    }
    .team .image-profolio:hover .profolio-show {
        height: 36%;
    }
    .about-2nd .about-content-left {
        padding-right: 0;
    }
    .about-2nd .content-right {
        padding: 120px 0 203px 7.2%;
    }
    .work-process .section-title {
        padding: 0 20% 0 20.5%;
    }
    .contact {
        padding: 50px 5px 99px 0px;
    }
    .contact .contact-left {
        padding-right: 20%;
    }
    .contact .contact-right {
        margin: 50px 0 0 0;
    }
    .contact .contact-right .form-contact-right {
        padding: 58px 44px 51px 44px;
    }
}


/* Smaller than standard 992 */

@media only screen and (max-width: 991px) {
    .tcont-add {
        display: none;
    }
    .tcont-email {
        margin-left: 0;
    }
    .footer-style-2 .list-footer,
    .flat-contact .contact-address {
        width: 100% !important;
    }
    .features-home2 .features-home2-box,
    .flat-about-home2 .about-content-right,
    .flat-why-choose-us .flat-WCU-box,
    .flat-about-home2 .about-content-left,
    .flat-service-home2 .service-box,
    .flat-shop,
    .flat-shop .shop-item-box,
    .flat-counter .counter-content-left,
    .flat-counter .counter-content-right,
    .flat-profolio-home2,
    .flat-testimonials-home2 .testimonials-content-right,
    .flat-news-home2 .section-title-box,
    .flat-news-home2 .flat-news-box,
    .footer-style-2 .list-footer,
    .footer-style-2 .footer-form-home2,
    .flat-features,
    .inner-features,
    .about-content,
    .flat-about .button,
    .flat-services .our-services-box,
    .flat-team .list-team,
    .flat-profolio,
    .subcribe-box,
    .flat-work-process .features-box,
    .flat-blog-home01 .blog-item,
    .flat-testimonials,
    .flat-contact .contact-right,
    .footer .footer-contact-info,
    .footer .top-footer-left,
    .widgets-menu-1,
    .widgets-menu-2,
    .widgets-subcribes,
    .features-home2 .section-desc,
    .footer-style-2 .widgets-menu-1 .list-menu-1,
    .flat-blog-standard,
    .flat-blog-detail,
    .flat-faq,
    .flat-contact-page,
    .subcribe-box .form-subcribe,
    .flat-case-details .author-note,
    .flat-case-details .author-post,
    .flat-case-details {
        margin: 0;
    }
    .widgets-nav-social,
    #header .header-wrap,
    .footer-bottom,
    .flat-services,
    .flat-team,
    .flat-about-2nd .content-right,
    .flat-work-process,
    .flat-contact,
    .flat-blog-home01,
    .flat-profolio,
    .flat-contact .section-title,
    .list-footer {
        margin: 0;
        padding: 0;
    }
    .top-header {
        padding: 0 20px;
    }
    .features-home2 {
        left: 0;
        right: 0;
    }
    #header .header-wrap {
        padding: 0 5px;
    }
    .flat-profolio-home2 {
        padding: 0 10px;
    }
    .subcribe-box .inner-subcribe-box,
    .flat-contact .contact-right .form-contact-right {
        padding: 30px;
    }
    .subcribe-box .form-subcribe {
        margin-top: 10px;
    }
    .flat-why-choose-us .content-features,
    .flat-about-home2 .about-content-right,
    .flat-news-home2 .news-content-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .features-box,
    .flat-services .our-services-box,
    .flat-work-process .features-box,
    .flat-team .team-box,
    .flat-work-process .content-features,
    .flat-contact .contact-left,
    .widgets-menu-1,
    .widgets-menu-2,
    .widgets-subcribes,
    .flat-why-choose-us .WCU-image,
    .flat-case-details .author-post {
        margin-bottom: 30px;
    }
    .flat-shop,
    .flat-testimonials-home2,
    .footer-style-2 .footer-form-home2,
    .about-content,
    .flat-services,
    .flat-team,
    .flat-profolio,
    .flat-about-2nd .content-right,
    .flat-contact,
    .flat-blog-home01,
    .flat-faq,
    .flat-contact-page,
    .flat-case-details {
        padding: 60px 0;
    }
    .flat-blog-standard,
    .flat-blog-detail {
        padding: 60px 0 120px 0;
    }
    .flat-about-home2 .image-about-home2,
    .img-center,
    #mainnav,
    .site-header-right,
    .search,
    .cart {
        display: none;
    }
    .flat-why-choose-us .features-box,
    .list-footer {
        display: block;
    }
    .flat-why-choose-us .features-box,
    .flat-about .about-post,
    .flat-case-details .post-inner-box,
    .flat-case-details .author-post {
        text-align: center;
    }
    .flat-why-choose-us,
    .flat-about-home2,
    .flat-testimonials-home2,
    .flat-news-home2,
    .flat-about-2nd .content-right,
    .flat-work-process,
    .footer {
        background-image: unset;
    }
    .flat-service-home2 {
        height: unset;
    }
    .flat-contact .contact-address {
        position: unset;
    }
    .item-four-column,
    .widget_lastest,
    .widgets-contact-info,
    .flat-shop .tf-shop-item li {
        width: 50%;
    }
    .flat-shop .tf-shop-item {
        flex-wrap: wrap;
    }
    .widget_lastest {
        float: left;
        padding-right: 10px;
    }
    .widgets-contact-info {
        float: right;
        padding-left: 10px;
    }
    .flat-profolio .image-profolio:hover .profolio-show {
        height: 38%;
    }
    .flat-about-2nd .subcribe-about {
        position: unset;
    }
    .flat-profolio .image-profolio .active {
        height: 38%;
    }
    .flat-profolio-home2 .list-box-profolio .profolio-info .button-next {
        right: 0;
    }
    .flat-profolio .profolio-info .desc-box,
    .flat-profolio-home2 .profolio-info .desc-box {
        max-width: 150px;
        max-height: 34px;
        overflow: hidden;
    }
    .themesflat-pagination-style2 .text-left {
        padding: 38px 17px 38px 125px;
    }
    .themesflat-pagination-style2 .text-right {
        padding: 38px 154px 38px 0px;
    }
    .flat-service-details .icon-services {
        padding: 40px;
    }
    .flat-profolio .profolio-info {
        margin-right: 6.1%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .flat-profolio .list-box-profolio {
        width: 100%;
        margin-bottom: 25px;
    }
    .flat-team .image-staff:not(:hover) .list-icon-hidden {
        right: -70%;
        transition: 1s ease;
    }
    .flat-team .icon-top::after {
        top: 5px;
        right: 14px;
    }
    .logo {
        display: inline-block;
    }
    .btn-menu {
        position: absolute;
        display: block;
        right: 15px;
        margin: 0;
    }
    .nav-wrap {
        position: relative;
    }
    .content-blog-detail .input-yourname,
    .input-youremail {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .themesflat-map {
        height: 300px;
    }
    #header .header-wrap-home1 .site-header-right {
        display: none;
    }
    #header .header-wrap-home1 {
        height: 60px;
        padding-top: 9px;
    }
    #header .logo-header {
        margin-left: 0;
    }
    #header .logo-header img {
        height: 40px;
    }
    .site-header-bottom {
        bottom: auto;
        top: 9px;
        right: 70px;
        z-index: 4;
    }
    .mess-list {
        padding: 11px 0px;
        box-shadow: none;
    }
    .mess-item {
        padding-right: 10px;
        margin-right: 10px;
    }
    h1.title-page {
        padding-right: 0;
    }
    .pth-img {
        display: none;
    }
    .stick-box-top {
        display: none;
    }
    .page-title-home {
        padding-top: 30px;
    }
    .pth-content-txt {
        max-width: 100%;
        text-align: center;
    }
    .pth-content-txt-title .h1 br,
    .pth-content-txt-title h1 br {
        display: none;
    }
    .txt-top-pds {
        text-align: left;
    }
    .pth-content-txt-btn-wrap {
        justify-content: center;
    }
    .section-title {
        font-size: 32px;
        line-height: 32px;
    }
    .pth-icon-list {
        padding: 20px 0;
        justify-content: space-between;
    }
    .flat-about .about-desc-box {
        justify-content: space-between;
        margin: 35px 0 0px 0;
    }
    .counter-area-wrap {
        margin-top: 50px;
    }
    .flat-about .button {
        margin-top: 40px;
    }
    .delivery-img {
        left: 0;
        width: 100%;
        bottom: -20px;
    }
    section.delivery::before {
        height: 320px;
    }
    .delivery-block {
        min-height: 400px;
    }
    .delivery-content-title .section-desc {
        margin-top: 20px;
    }
    .delivery-content-title .button.mt-5 {
        margin-top: 25px !important;
    }
    .title-dbl .btn-2 {
        margin-top: 0px;
        padding: 5px 15px;
        border-radius: 8px;
        font-size: 15px;
    }
    .video-list-wrap {
        margin-top: 30px;
    }
    .video-big-section {
        padding: 50px 0 40px;
    }
    .region-content-block-wrap {
        padding: 40px 0 50px 10px;
    }
    .region-content-block .button.mt-5 {
        margin-top: 20px !important;
        ;
    }
    .rsk-catline-block {
        padding: 35px 30px 35px 30px;
    }
    .button>.btn,
    .btn-home,
    .btn2 {
        padding: 16px 26px 16px 26px;
    }
    .rsk-catline-block .button {
        margin-left: 0;
        margin-top: 20px;
    }
    .rsk-catline-block .btn2 {
        min-width: 240px;
    }
    .rsk-catline-text-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .rsk-catline-wrap::before {
        width: 186px;
        height: 136px;
        background-size: contain;
        background-repeat: no-repeat;
        right: -4px;
        bottom: -30px;
    }
    .col-color-block {
        justify-content: space-between;
    }
    .col-color-block:first-child {
        margin-top: 30px;
    }
    .color-3d-sc {
        padding: 160px 0 0px 0;
    }
    .top-footer-wrap {
        display: none;
    }
    .text-home-section {
        padding-bottom: 50px;
    }
    .list-footer {
        margin-top: 30px;
    }
    .footer-item {
        display: none;
    }
    .footer-item:first-child {
        display: block;
        width: 100%;
    }
    .widgets-about .widgets-nav-social {
        padding-top: 0px;
        margin-bottom: 20px;
    }
    .footer-bottom .copyright-text {
        margin-top: 30px;
        margin-right: 0;
        letter-spacing: 0px;
        padding-bottom: 15px;
    }
    .product-detail-3d-wrap {
        margin-bottom: 30px;
    }
    .product-detail-tab-wrap {
        margin-top: 90px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link span {
        display: none;
    }
}


/* All Mobile Sizes */

@media only screen and (max-width: 767px) {
    .features-home2 .features-home2-box,
    .flat-news-home2 .button-news,
    .flat-news-home2 .flat-news-box,
    .list-footer .widgets-about,
    .footer-style-2 .list-contact-footer2,
    .footer-style-2 .widgets-menu-1,
    .footer-style-2 .widgets-menu-2,
    .footer-style-2 .footer-form-home2,
    .flat-team .list-team,
    #header .header-wrap-home1,
    .flat-about-2nd .content-left,
    .about-2nd .section-title,
    .footer-style-2 .widgets-about .widgets-nav-social,
    .flat-service-details .services-item-left,
    .flat-service-details .services-item-right {
        margin: 0 !important;
    }
    .features-home2 .features-home2-box,
    .flat-work-process .icon-wp-box {
        padding: 20px;
    }
    .features-home2 .features-home2-box,
    .flat-about .about-desc-box,
    .top-header,
    .flat-about-2nd .box,
    .top-header .top-bar-right,
    .flat-news-home2 .button-news,
    .subcribe-box .btn-subcribe,
    .flat-work-process .features-box,
    .flat-service-details .services-item {
        display: block;
    }
    #header .site-header-right .button,
    .img-slide,
    .footer .top-footer,
    .flat-work-process .icon-box,
    .flat-work-process .icon-box2,
    .flat-work-process .icon-box3,
    .flat-case-details .paginate-box .content-features,
    .ripple {
        display: none;
    }
    .features-home2 .features-left,
    .features-home2 .features-right,
    .item-three-column,
    .item-four-column,
    .top-header .top-bar-right,
    .footer-style-2 .widgets-about,
    .footer-style-2 .list-footer .footer-item,
    .top-header1 .top-bar-right,
    .flat-about .image-desc,
    .list-footer .footer-item,
    .subcribe-box .btn-subcribe,
    .widget_lastest,
    .widgets-contact-info,
    .image-desc,
    .flat-about .image,
    .flat-service-details .post-inner-box img {
        width: 100% !important;
    }
    .flat-counter .background-counter {
        height: unset;
    }
    .top-header .top-bar-left {
        display: block !important;
        float: unset;
    }
    #header .header-wrap,
    .footer-bottom,
    .top-bar-right .widgets-nav-social,
    .top-footer-style2 .widgets-nav-social {
        justify-content: center;
    }
    .section-title,
    .title-main {
        font-size: 37px;
    }
    .features-home2 {
        bottom: -211px;
    }
    .top-header .top-bar-left,
    .top-header-inner,
    .top-bar-right,
    .top-header .top-bar-right,
    .widgets-nav-social {
        line-height: unset;
    }
    .top-header,
    .top-header1 {
        padding: 10px 0;
    }
    .flat-counter .content-left-box {
        position: unset;
        width: unset;
    }
    .flat-why-choose-us .flat-WCU-box:first-child {
        margin-bottom: 60px;
    }
    .list-footer,
    .top-footer-style2 {
        margin-top: 40px;
    }
    .footer-style-2 .list-footer,
    .footer-style-2 .list-footer .footer-item,
    .widgets-contact-info {
        margin-top: 30px;
    }
    .image-desc {
        margin: 30px 0;
    }
    #header .header-wrap-home1 .inner-header,
    #header .header-wrap,
    .flat-profolio-home2,
    .flat-services .our-services-box .icon-size,
    .flat-services .our-services-box .icon-size2,
    .flat-services .our-services-box .icon-size3,
    .flat-services .our-services-box .icon-size4,
    .footer-style-2 .list-footer,
    .list-footer .text-decs,
    .footer-style-2 .widgets-menu-1 .list-menu-1,
    footer .widgets-about .widgets-nav-social,
    .widget_lastest,
    .widgets-contact-info {
        padding: 0 !important;
    }
    .flat-about-home2 .content-features,
    .list-footer .text-decs,
    .footer-style-2 .list-contact-footer2,
    .footer-style-2 .widgets-about .widgets-nav-social {
        margin-top: 20px !important;
    }
    .flat-profolio-home2 .list-box-profolio .profolio-info .profolio-btn::after {
        margin-left: 0;
        margin-right: 20px;
    }
    .flat-profolio-home2 .list-box-profolio .image-profolio .active {
        height: 32.4%;
    }
    .flat-profolio-home2 .list-box-profolio:hover .profolio-show {
        height: 62.4%;
    }
    .flat-news-home2 .button-news {
        float: left;
    }
    .flat-profolio-home2 .desc-box {
        max-height: 30px;
        overflow: hidden;
    }
    .flat-testimonials-home2 .testimonials-author-box,
    .flat-about .about-desc-box,
    footer .widgets-about .widgets-nav-social {
        margin: 20px 0;
    }
    .flat-testimonials-home2 .author-carousel {
        bottom: -20px;
        left: 0;
        padding: 0 15px;
    }
    .flat-service-details .create-by-author,
    .flat-case-details .author-note {
        padding: 20px;
    }
    .flat-blog-standard,
    .flat-blog-detail {
        padding-bottom: 60px !important;
    }
    .top-footer-style2,
    .flat-about .button,
    .top-header1,
    .flat-about .image-desc,
    .top-header,
    .subcribe-box .btn-subcribe,
    .flat-work-process .icon-wp-box,
    .flat-work-process .content-features {
        text-align: center;
    }
    .footer-style-2 .title-section-footer::before,
    .subcribe-box .btn-subcribe {
        position: unset;
    }
    .flat-services .our-services-box {
        display: grid;
        text-align: center !important;
        padding-top: 30px;
        margin: 0 0 30px 0;
    }
    .flat-services .content-features {
        padding: 24px 20px 12px 20px;
    }
    .flat-contact-page .contact-right .form-contact-right {
        padding: 0 15px;
    }
    .flat-testimonials .list-testimonials {
        margin: 103px 0 120px 0;
    }
    .subcribe-box {
        height: unset;
        padding-bottom: 37px;
    }
    .flat-team .list-team {
        margin-left: -15px;
        margin-right: -15px;
    }
    .flat-about-2nd .content-left {
        height: 500px;
    }
    .flat-about-2nd .desc-features {
        padding-right: 15px;
    }
    .res-btn-slider,
    .flat-service-details .post-inner-box {
        margin-bottom: 20px;
    }
    .flat-work-process .icon-box2 {
        position: absolute;
        top: 42%;
        right: -44px;
    }
    .flat-work-process .icon-box3 {
        position: absolute;
        top: 43%;
        right: -42px;
    }
    #rev-slider2 .button-box {
        display: unset;
        margin-top: 170px;
    }
    .flat-work-process .content-features {
        padding: 34px 35px 0 15px;
    }
    .flat-contact .info {
        max-height: 59px;
        overflow: hidden;
    }
    .flat-contact .contact-right .input-phone,
    .flat-contact-page .contact-right .input-phone,
    .input-services,
    .content-blog-detail .box-2 {
        margin-left: 0;
    }
    .list-menu-1,
    .footer-style-2 ul.list-menu-1,
    .list-menu-2 {
        margin-left: 20px !important;
    }
    .flat-contact .contact-right .input-name,
    .flat-contact-page .contact-right .input-name,
    .input-phone,
    .input-email,
    .input-services,
    .flat-shop .tf-shop-item li {
        width: 100%;
    }
    .flat-contact .contact-right .input-row,
    .flat-contact-page .contact-right .input-row {
        display: unset;
    }
    .flat-contact .contact-right .form-contact-right,
    .flat-contact-page .contact-right .form-contact-right {
        margin-top: 30px;
    }
    .flat-work-process .section-title {
        padding: 0;
    }
    .subcribe-box .form-subcribe {
        margin: 0;
    }
    .subcribe-box .form-subcribe {
        margin-top: 20px;
    }
    .subcribe-box .inner-subcribe-box {
        padding-top: 40px;
        padding-left: 25px;
    }
    .flat-about-2nd .content-right .about-box,
    .about-box {
        width: 100%;
    }
    .flat-about-2nd .tag-logo {
        right: 0;
    }
    .flat-profolio .list-box-profolio {
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
    }
    .flat-team .icon-top::after {
        top: 12px;
        right: 25px;
    }
    .tf-features .desc-features {
        margin-bottom: 20px;
        max-height: 80px;
        overflow: hidden;
    }
    .service-inner .desc-features {
        max-height: 88px;
        overflow: hidden;
    }
    .about-2nd .content-right {
        padding: 98px 0 160px 5%;
    }
    .flat-case-study .list-box-profolio .image-profolio .active,
    .flat-case-study .list-box-profolio .image-profolio:hover .profolio-show {
        height: 40%;
    }
    .top-header1 {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .top-header-inner {
        height: 50px;
    }
    .pth-content-txt-title .h1,
    .pth-content-txt-title h1 {
        font-size: 33px;
    }
    .text-pth {
        margin-top: 20px;
    }
    .pth-content-txt-btn-wrap {
        margin-top: 30px;
    }
    .pth-icon-item {
        margin: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 27px;
        line-height: 27px;
    }
    .catalog-home {
        padding: 50px 0 20px;
    }
    .item-cat {
        margin: 20px 0;
    }
    .image-desc {
        margin-bottom: 0;
    }
    .about-content {
        padding-bottom: 30px;
    }
    .flat-about .section-title {
        margin-top: 10px;
    }
    .flat-about .button {
        text-align: left;
    }
    .counter-box.three-counter {
        margin-top: 0px;
    }
    .delivery-block {
        min-height: 300px;
    }
    .delivery-content-title {
        padding-top: 50px;
    }
    section.delivery::before {
        height: 370px;
    }
    section.delivery .section-title {
        margin-top: 5px;
    }
    .delivery-content-title .section-desc {
        margin-top: 15px;
    }
    .region-w-row {
        flex-direction: column-reverse;
    }
    .maps-wrap {
        min-width: 100vw;
        min-height: 592px;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
    }
    .block-3d-mac-img img {
        height: 190px;
    }
    .block-3d-mac-text {
        left: 165px;
        top: 30px;
        font-size: 50px;
    }
    .block-3d-mac-text span {
        display: block;
        font-size: 20px;
    }
    .block-3d-mac-content-text {
        font-size: 30px;
        padding: 5px 0 48px 35px;
    }
    .block-3d-mac-content-text span {
        text-transform: uppercase;
        font-size: 15px;
    }
    .block-3d-title {
        font-size: 28px;
    }
    h1.title-page {
        font-size: 24px;
    }
    .breadcrumbs-section {
        padding: 15px 0 10px;
    }
    .product-detail-3d-wrap .block-3d-title {
        font-size: 24px;
    }
    .product-detail-3d-wrap .block-3d-title-text {
        font-size: 16px;
        margin-top: 15px;
    }
    .product-detail-3d-wrap .block-3d-content .button {
        margin-top: 30px;
    }
    .pth-icon-list-pd .pth-icon-txt {
        margin-left: 0;
        margin-top: 8px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link strong,
    .product-detail-tab .cm-tabs .nav-tabs .nav-link {
        font-weight: 500;
        line-height: 1.2;
        font-size: 15px;
    }
    .tab-content-block {
        padding: 30px 0 10px;
    }
    .txt-block p,
    .txt-block li {
        font-size: 14px;
    }
    table.table tbody td {
        font-size: 14px;
    }
    .contact-right .input-name,
    .input-phone,
    .input-email,
    .input-services {
        width: 100%;
    }
    .flat-contact-page .contact-right .form-contact-right {
        padding: 30px;
    }
    .contact-right .input-services {
        margin-left: 30px;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .item-cat-product .item-cat-price {
        font-size: 17px;
    }
    .item-cat-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
    .item-cat-arrow {
        bottom: -7px;
    }
}


/* Mobile Portrait Size */

@media only screen and (max-width: 575px) {
    h1.title-page {
        font-size: 24px;
    }
    .pth-content-bottom {
        margin-top: 40px;
    }
    .pth-content-txt-btn-wrap {
        flex-direction: column;
    }
    .txt-top-pds {
        text-align: center;
        margin-left: 0;
        margin-top: 20px;
    }
    .txt-top-pds::before {
        display: none;
    }
    .section-title {
        font-size: 24px;
        line-height: 24px;
    }
    .section-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .section-title-box .section-title {
        margin-top: 2px;
    }
    .section-title-box.mb-4 {
        margin-bottom: 8px !important;
    }
    .item-cat-img img {
        width: 100%;
    }
    .flat-about .section-title {
        margin-top: 5px;
    }
    .about-content {
        padding-bottom: 10px;
    }
    .flat-about .about-count-box .caption-number-count {
        font-size: 15px;
        text-align: left;
        line-height: 18px;
        margin-top: 3px;
    }
    .about-box-nd1 .ic-title {
        font-size: 18px;
        line-height: 11px;
    }
    .counter-box .num-count {
        font-size: 55px;
    }
    .delivery-block {
        min-height: 50vw;
        max-height: 300px;
    }
    .button>.btn,
    .btn-home,
    .btn2 {
        padding: 10px 26px 10px 26px;
        font-size: 15px;
    }
    .gallery-list {
        margin-top: 30px;
    }
    .title-dbl .btn-2 {
        display: none;
        margin-top: 10px;
        float: left;
    }
    .title-dbl.mb-4 {
        margin-bottom: 15px !important;
    }
    .rsk-catline-block .btn2 {
        min-width: 210px;
    }
    .rsk-catline-block {
        padding: 30px 20px 30px 20px;
    }
    .rsk-catline-wrap {
        width: calc(100% - 25px);
    }
    .rsk-catline-wrap::before {
        bottom: -40px;
    }
    .rsk-catline-title {
        line-height: 1.2;
    }
    h1.title-page {
        font-size: 20px;
    }
    .breadcrumbs-section {
        padding: 15px 0 10px;
    }
    .owl-thumb-item img {
        height: 45px;
    }
    button.owl-thumb-item {
        margin-right: 10px;
        border: 3px solid #fff;
    }
    .owl-thumbs {
        bottom: -25px;
    }
    .product-detail-3d-wrap {
        margin-top: 0;
    }
    .product-detail-3d-wrap .block-3d-wrap {
        padding-top: 50px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link {
        text-transform: uppercase;
        font-size: 12px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link strong {
        display: none;
    }
    .product-detail-tab .cm-tabs .nav-tabs {
        align-items: center;
        justify-content: center;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link {
        width: auto;
        padding: 15px 20px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link:after {
        width: 40px;
        height: 4px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link:first-child {
        border-radius: 10px 0 0 10px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link:last-child {
        border-radius: 0 10px 10px 0;
    }
    .product-detail-tab .cm-tabs {
        margin-top: -27px;
    }
    .product-detail-tab .cm-tabs .nav-tabs {
        box-shadow: none;
    }
    .product-detail-tab-wrap {
        margin-top: 70px;
    }
    .customNav.big-btn button {
        border-radius: 6px;
        font-size: 24px;
        padding: 3px 11px;
    }
}

@media only screen and (max-width: 549px) {
    .tcont-email {
        display: none;
    }
    .top-contact {
        justify-content: flex-end;
    }
}

@media (max-width: 500px) {
    .color-block {
        width: 100%;
    }
    .col-color-block {
        flex-direction: column;
    }
    .col-color-block:last-child .color-block {
        margin-bottom: 30px;
    }
    .block-3d-title-text br {
        display: none;
    }
    .block-3d-mac-content {
        display: none;
    }
    .block-3d-mac-text span::after {
        content: ' в подарок';
        white-space: nowrap;
        display: block;
    }
    .block-3d-wrap {
        padding-top: 70px;
    }
}

@media (max-width: 440px) {
    .tcont-phone .tcont-txt a {
        font-size: 17px;
    }
    .tcont-icon {
        font-size: 12px;
        width: 28px;
        height: 28px;
    }
    .pth-content-txt-title .h1,
    .pth-content-txt-title h1 {
        font-size: 25px;
    }
    .pth-content-txt p {
        font-size: 15px;
    }
    a.btn-big-h {
        padding: 10px 30px 10px 15px;
    }
    a.btn-big-h span {
        font-size: 16px;
        text-align: left;
    }
    a.btn-big-h i {
        height: 36px;
    }
    a.btn-big-h svg {
        width: 16px;
    }
    .pth-content-bottom {
        text-align: center;
    }
    .pth-icon-list {
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px 0;
        display: inline-flex;
    }
    .pth-icon-item {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        margin: 10px 0;
    }
    .pth-icon-txt {
        text-align: left;
        padding-left: 15px;
        line-height: 1.6;
        margin-top: 0;
    }
    .delivery-content-title {
        padding-top: 30px;
    }
    section.delivery::before {
        height: 380px;
    }
    #bx-panel.bx-panel-folded #bx-panel-top {
        height: 59px !important;
    }
    .catalog-new-home {
        padding: 0px 0 30px;
    }
    .sort-title {
        display: none;
    }
    .sort-link-wrap a {
        font-size: 14px;
    }
    .sort-catalog-wrap {
        padding: 10px 0 10px 20px;
    }
    .owl-thumb-item img {
        height: 33px;
    }
    button.owl-thumb-item {
        margin-right: 7px;
    }
    .owl-thumbs {
        bottom: -15px;
    }
    .product-detail-3d-wrap .block-3d-wrap {
        padding-top: 30px;
    }
    .product-detail-3d-wrap .block-3d-title {
        font-size: 19px;
    }
    .product-detail-3d-wrap .block-3d-title-text {
        font-size: 14px;
        margin-top: 15px;
    }
    .product-detail-3d-wrap .block-3d-content .button {
        margin-top: 20px;
    }
    .product-detail-3d-wrap .btn2.bgc6 {
        padding: 10px 20px 10px 20px;
    }
    .block-3d::before {
        content: '';
        background-size: contain;
        width: 88px;
        height: 107px;
        position: absolute;
        right: -10px;
        bottom: -18px;
    }
    .product-detail-3d-wrap .block-3d {
        padding: 30px 20px 30px 20px;
    }
    .product-detail-top-info {
        padding: 0px 0px;
        background: transparent;
        box-shadow: none;
    }
    .pd-sm-table .row-txt strong,
    .pd-sm-table .row-txt span {
        background: var(--primary-color3);
    }
    .pth-icon-list-pd {
        margin-top: 40px;
    }
    .pth-icon-list-pd .pth-icon-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }
    .pth-icon-list-pd .pth-icon-item {
        width: 100%;
        border-bottom: 1px solid #e6e1d7;
        padding-bottom: 10px;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .pth-icon-list-pd .pth-icon-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    .product-detail-krovlya-slider.owl-carousel .owl-item img {
        border-radius: 10px;
        padding-right: 10px;
    }
    .krovlya-polikarbonat .product-detail-krovlya-slider.owl-carousel .owl-item img {
        padding: 0;
    }
    .title-dop-b.mb-4 {
        margin-bottom: 10px!important;
    }
    .gallery.gallery-detail-product {
        padding: 10px 0 0px;
    }
    .page-wrap {
        padding: 20px 0 50px;
    }
    .contact-right .input-row {
        flex-direction: column;
    }
    .contact-right .input-phone,
    .contact-right .input-services {
        margin-left: 0px;
    }
    .contact-right .input-contact {
        height: 40px;
        padding: 10px 18px 10px 18px;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 400px) {
    .mess-item span {
        display: none;
    }
    .site-header-bottom {
        top: 0;
        height: 100%;
        right: 60px;
    }
    .mess-list {
        padding: 0px 0px;
        height: 100%;
    }
    .mess-item:last-child,
    .mess-item {
        height: 100%;
        display: flex;
        align-items: center;
        padding-right: 15px;
        margin-right: 15px;
        border-right: 1px solid rgb(205 205 205 / 30%);
    }
    .mess-item:last-child {
        margin-right: 0;
    }
    .mess-item a i {
        font-size: 23px;
        margin-right: 0;
    }
    .mess-item a i.fa-viber {
        font-size: 22px;
    }
    .counter-box .num-count {
        font-size: 45px;
    }
    .counter-box {
        padding: 15px 25px 30px 25px;
    }
    .catalog-section .item-cat {
        margin: 15px 0;
    }
    .item-video .name {
        font-size: 13px;
        hyphens: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .item-video-img-block {
        width: 120px;
        min-width: 120px;
    }
    .block-3d-mac-img img {
        height: 170px;
    }
    .block-3d-mac-text {
        left: 146px;
        top: 18px;
        font-size: 40px;
        padding: 20px 20px 20px 45px;
    }
    .product-detail-tab .cm-tabs .nav-tabs .nav-link {
        font-size: 11px;
        padding: 15px 15px;
    }
    .product-detail-tab-wrap {
        margin-top: 60px;
    }
    .gallery-item a {
        height: 230px;
    }
}

@media (max-width: 340px) {
    .block-3d-mac-text span {
        font-size: 18px;
    }
    .block-3d-mac-img img {
        height: 160px;
    }
    .block-3d-mac-text {
        left: 133px;
        top: 16px;
    }
}

@media (max-width: 649px) {
    .gallery-list-product-detail .owl-stage-outer .owl-stage .owl-item
    {
        margin-right: 0;
    }
}


/* End */


/* /bitrix/templates/karkas/assets/css/fancybox.css?164673865815512 */


/* /bitrix/templates/karkas/components/bitrix/catalog.section.list/top_menu/style.min.css?1646738658971 */


/* /bitrix/templates/karkas/assets/css/bootstrap.min.css?1646738658163873 */


/* /bitrix/templates/karkas/assets/js/owlcarousel/assets/owl.carousel.min.css?16467386583356 */


/* /bitrix/templates/karkas/assets/fonts/days/stylesheet.css?1646738658252 */


/* /bitrix/templates/karkas/assets/css/style.css?1649168671116150 */


/* /bitrix/templates/karkas/assets/css/shortcodes.css?164916590557467 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/shortcodes.css?164916590557467 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */
/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */


/* /bitrix/templates/karkas/assets/css/responsive.css?164768409038934 */

/* ++++ PXL Custom Css ++++ */
#mainnav-mobi ul {
    height: (100vh - 100px);
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
}
#mainnav-mobi ul ul {
    max-height: 400px;
}
/* ---- PXL Custom Css ---- */