@import "fonts.css";
@import "header.css";
@import "footer.css";

/*animations__________*/

@-webkit-keyframes flip {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(180deg) rotateX(180deg);
        transform: rotateY(180deg) rotateX(180deg);
    }
}

@keyframes flip {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(180deg) rotateX(180deg);
        transform: rotateY(180deg) rotateX(180deg);
    }
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slide {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*other-styles__________*/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

*::after, *::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

*::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background-color: transparent;
    border-radius: 14px;
}
*::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 14px;
}
*:hover::-webkit-scrollbar {
    background-color: rgba(0, 0, 0, .04);
}
*:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .08);
}
*:hover::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, .12);
}

.help-block {
    color: darkred;
    font-size: 12px;
    margin-top: 5px;
}

.f-s-12 {
    font-size: 12px;
}

p:empty {
    display: none;
}

.modal-body {
    padding: 2rem;
}

#toast-container > div {
    opacity: 1 !important;
}

.tooltip-inner {
    position: relative;
    max-width: 280px;
    background-color: #09181F;
    padding: 8px 16px;
}

.preloader-wrap {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
}
.preloader {
    -webkit-perspective: 120px;
    perspective: 120px;
    width: 100px;
    height: 100px;
}
.preloader:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    -webkit-animation: flip 1s infinite;
    animation: flip 1s infinite;
}

.img-loading {
    background-color: #e9e9e9;
    width: 100%;
    overflow: hidden;
    position: relative;
    outline: 1px solid #eaeaea;
}
.img-loading:after {
    content: '';
    top: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    -webkit-animation: slide 2s infinite;
    animation: slide 2s infinite;
    opacity: .8;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(245, 245, 245, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), to(rgba(125, 185, 232, 0)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
}

button, textarea, input {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

form .div[class*=".field-"] .text-danger,
form .form-group .text-danger {
    font-size: 13px;
}

form .div[class*=".field-"] .text-danger:empty,
form .form-group .text-danger:empty {
    display: none;
}

.control-label {
    font-size: 14px;
    color: #282828;
    font-weight: 700;
}
.error-msg {
    font-size: 13px;
}
.form-control {
    font-size: 14px;
    color: #212529;
    height: 42px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.form-control::-webkit-input-placeholder {
    font-size: 13px;
    opacity: .7;
}
.form-control::-moz-placeholder {
    font-size: 13px;
    opacity: .7;
}
.form-control:-ms-input-placeholder {
    font-size: 13px;
    opacity: .7;
}
.form-control::-ms-input-placeholder {
    font-size: 13px;
    opacity: .7;
}
.form-control::placeholder {
    font-size: 13px;
    opacity: .7;
}
.form-control:focus, .form-control:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control option[disabled] {
    color: rgba(220, 53, 69, .5);
    text-decoration: line-through;
}
textarea.form-control {
    min-height: 80px;
    max-height: 120px;
}

.captcha-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.captcha-wrapper img {
    width: 150px;
    border: 1px solid rgba(0, 0, 0, .12);
    height: 42px;
}
.captcha-wrapper input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 250px;
    height: 42px;
    padding-left: .75rem !important;
}

ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}
ul li {
    font-size: 1rem;
}

a {
    text-decoration: none !important;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    color: #000;
}
a span, button span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    vertical-align: middle;
}
a svg {
    vertical-align: middle;
}
a .btn-arrow {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin-left: 7px;
}
a .btn-arrow * {
    fill: #fff;
}

svg, svg * {
    -webkit-transition: .2s ease all;
    -o-transition: .2s ease all;
    transition: .2s ease all;
}

.error-msg:empty {
    display: none;
}

.btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
}
.btn-list li {
    min-width: 33.3333%;
    max-width: 100%;
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 6px;
}
.btn-list li .btn {
    width: 100%;
    padding: 10px;
}
button, .btn.focus, .btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn {
    font-size: 14px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.btn:hover {
    opacity: .8;
}
.btn-primary:hover {
    opacity: 1;
}
.btn-outline-primary:hover {
    opacity: 1;
}
.btn-danger {
    background-color: #E12350;
}
.btn-danger:hover {
    background-color: #E12350;
}
.btn-outline-danger {
    color: #E12350;
    border-color: #E12350;
}
.btn-outline-danger svg {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}
.btn-outline-danger:hover {
    background-color: #E12350;
    opacity: 1;
}
.btn-outline-danger:hover svg {
    fill: #fff;
    stroke: #fff;
}

.theme-btn {
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 48px;
    padding: 10px 34px;
}
.theme-btn:hover {
    color: #fff;
}
.theme-btn.sm {
    font-size: 14px;
    height: 42px;
    padding: 8px 24px;
}
.theme-btn-out {
    background-color: #fff;
}
.btn-success-out {
    background-color: transparent;
    color: #4dd330;
    border-color: #4dd330;
}
.btn-success-out:hover {
    color: #fff;
}
.more-btn {
    margin-top: 30px;
}

.theme-border-color-focus::-webkit-input-placeholder {
    font-size: 14px;
}

.theme-border-color-focus::-moz-placeholder {
    font-size: 14px;
}

.theme-border-color-focus:-ms-input-placeholder {
    font-size: 14px;
}

.theme-border-color-focus::-ms-input-placeholder {
    font-size: 14px;
}

.theme-border-color-focus::placeholder {
    font-size: 14px;
}
.theme-border-color-focus:focus, .theme-border-color-focus:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#wrapper {
    position: relative;
    /*overflow: hidden;*/
}

.lds-spinner {
    color: #999;
    display: inline-block;
    position: relative;
    width: 40px;
    padding-top: 8px;
    height: 40px;
}
.lds-spinner div {
    -webkit-transform-origin: 10px 13px;
    -ms-transform-origin: 10px 13px;
    transform-origin: 10px 13px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 9px;
    width: 2px;
    height: 6px;
    border-radius: 29%;
    background: #999;
}
.lds-spinner div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.bg-light {
    background-color: #f0f5f9 !important;
}

.w-5 {
    width: 5%;
}

.w-max-content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.sticky-top {
    position: sticky;
    top: 15px;
}

.text-overflow-one-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.text-overflow-two-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.text-overflow-three-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}

@media (min-width: 992px) {
    .col-lg-20, .col-lg-80 {
        position: relative;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-lg-20 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-lg-80 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
    }
}

@media (min-width: 1600px) {
    .col-xl-012, .col-xl-88 {
        position: relative;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-xl-012 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
        flex: 0 0 12%;
        max-width: 12%;
    }

    .col-xl-88 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 88%;
        flex: 0 0 88%;
        max-width: 88%;
    }
}

/*main-styles__________*/

body {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
}
body::-webkit-scrollbar {
    width: 8px;
    height: 4px;
    border-radius: 0;
    background-color: #f0f5f9;
}
body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 0;
}
body:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
}

html.js-overflow, body.js-overflow {
    overflow: hidden !important;
}

section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 1;
}

.section-blackout__white, .section-blackout__black {
    content: '';
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.bg-odd {
    background-color: #f0f5f9;
}

h1, h2, h3, h4, h5, h6, b, .big-title {
    font-weight: 700;
}
h1 {
    font-size: 2.625rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 35px;
}
body[data-container="1200"] h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}
h3 {
    color: #3c4348;
    font-size: 2.25rem;
    line-height: 1.4;
}
h4 {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
    font-size: 1.32rem;
    line-height: 1.4;
    margin-bottom: 15px;
}
h5 {
    font-size: 1.5rem;
    line-height: 1.4;
}
h6 {
    font-size: 1.25rem;
    line-height: 1.4;
}
.sub-title {
    font-size: 1.25rem;
}

.theme-sub-title {
    margin-top: -15px;
    margin-bottom: 2rem;
}

p span {
    vertical-align: middle;
}
p b {
    margin-bottom: 0;
}
strong {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
b {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 0;
}

.sub-title.arrow-on__block {
    position: relative;
}
.arrow-on__wrap {
    position: absolute;
    top: calc(100% + 24px);
    left: 0;
}

.bg-success {
    background-color: #4dd330 !important;
}
.bg-danger {
    background-color: #E12350 !important;
}
.bg-warning {
    background-color: #f4c60e !important;
}
.bg-secondary {
    background-color: #8a98ac !important;
}
.text-success {
    color: #39d010 !important;
}
.text-warning {
    color: #f4c60e !important;
}
.text-secondary {
    color: #8a98ac !important;
}
.text-danger {
    color: #E12350 !important;
}

.white-space-nowrap {
    white-space: nowrap !important;
}

.font-light {
    font-family: 'Ubuntu Light', sans-serif;
    font-weight: 300;
}
.font-regular {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}
.font-medium {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
}
.font-semibold {
    font-family: 'Ubuntu SemiBold', sans-serif;
    font-weight: 600;
}
.font-bold {
    font-family: 'Ubuntu Bold', sans-serif;
    font-weight: 700;
}

.content-top {
    padding-top: 20px;
    padding-bottom: 20px;
}
.content-top h4 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 12px;
}
.content-top p {
    font-size: .875rem;
    margin-bottom: 0;
}

nav[aria-label="breadcrumb"] + p {
    margin-top: 10px;
}
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
    font-size: .9rem;
    margin-bottom: 3px;
}
.breadcrumb .breadcrumb-item::before {
    color: #999;
}
.breadcrumb .breadcrumb-item a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.slider-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
body[data-slider-container="1"] .slider-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.hero-swiper [data-href] {
    cursor: pointer;
}
.hero-swiper .swiper-slide__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.hero-swiper .swiper-slide {
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: cover;*/
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 500px;
}
.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-filter: blur(8px);
    filter: blur(8px);
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.hero-swiper .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    inset: 0;
}
.hero-swiper .swiper-slide .container {
    padding-left: 0;
    padding-right: 0;
}
.hero-swiper .swiper-slide .substrate {
    background-color: rgba(255, 255, 255, .75);
    padding: 1.5rem;
}
.hero-swiper .swiper-slide h1 {
    font-size: 2rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.hero-swiper .swiper-slide .sub-title {
    margin-bottom: 3.25rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.hero-swiper .swiper-slide .btn {
    font-family: 'Ubuntu Light', sans-serif;
    font-weight: 300;
    color: #fff;
    padding: .5rem 1.5rem;
    height: 26px;
}
.hero-swiper .swiper-pagination-bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 1rem;
}
.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #f6f6f6;
    margin: 0 6px !important;
    opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    border-width: 3px;
    border-style: solid;
    background-color: transparent;
}
.hero-swiper .swiper-slide__wrap.justify-content-center h1 {
    text-align: center;
}
.hero-swiper .swiper-slide__wrap.justify-content-center .sub-title {
    text-align: center;
}
.hero-swiper .swiper-slide__wrap.justify-content-center .btn {
    margin-left: auto;
    margin-right: auto;
}
.hero-swiper .swiper-slide__wrap.justify-content-end h1 {
    text-align: right;
}
.hero-swiper .swiper-slide__wrap.justify-content-end .sub-title {
    text-align: right;
}
.hero-swiper .swiper-slide__wrap.justify-content-end .btn {
    margin-left: auto;
}

/*about*/
.about-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about .company-info {
    width: 100%;
    max-width: 96%;
}
.about .company-info p {
    line-height: 1.5;
}
.about-swiper {
    border: 1px solid rgba(34, 34, 34, .1);
    overflow: hidden;
}
.about-swiper .swiper-slide img {
    width: 100%;
    min-height: 415px;
    max-height: 415px;
    -o-object-fit: cover;
    object-fit: cover;
}
.swiper-about-sm .swiper-slide img {
    min-height: 300px;
    max-height: 300px;
}
.about-swiper .swiper-button-prev::after,
.about-swiper .swiper-button-next::after {
    font-size: 32px;
    font-weight: 700;
    color: inherit;
}
.about-swiper .swiper-button-prev,
.about-swiper .swiper-button-next {
    outline: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}
.about-swiper .swiper-pagination-bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 1rem;
}
.about-swiper .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .8;
    width: 9px;
    height: 9px;
}
.about-swiper .swiper-pagination-bullet-active {
    border-width: 3px;
    border-style: solid;
    background-color: transparent;
    width: 12px;
    height: 12px;
}
.about-swiper:hover .swiper-button-prev,
.about-swiper:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.about-swiper .swiper-button-next.swiper-button-disabled,
.about-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: .5;
}

.about-type-2 .company-info {
    margin-left: auto;
}
/*about*/

/*showcase*/
.proposal-type-1 .product-item__parent {
    margin-bottom: 16px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.proposal-type-1 .product-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    word-wrap: break-word;
    border: 1px solid rgba(34, 34, 34, .1);
    overflow: hidden;
    z-index: 0;
    height: 100%;
}
.proposal-type-1 .product-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.proposal-type-1 .product-item__header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(34, 34, 34, .1);
    min-height: 190px;
    max-height: 190px;
    overflow: hidden;
}
body[data-container="1200"] .proposal-type-1 .product-item__header {
    min-height: 160px;
    max-height: 160px;
}
.proposal-type-1 .product-item__header span {
    font-size: 11px;
    line-height: 1;
    color: #fff;
    padding: .3125rem .5rem;
    border-radius: .25rem;
    position: absolute;
    top: 10px;
    left: 10px;
}
.proposal-type-1 .product-item__header span.bg-danger {
    background-color: #f51f1f !important;
}
.proposal-type-1 .product-item__header span.bg-success {
    background-color: #4dd330 !important;
}
.proposal-type-1 .product-item__header .favorites {
    background-color: #f6f8fd;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    height: 35px;
    right: 5px;
    top: 5px;
    width: 35px;
    z-index: 1;
}
.proposal-type-1 .product-item__swiper {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 10px;
}
.proposal-type-1 .product-item__swiper-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.proposal-type-1 .product-item__swiper-item img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 176px;
    height: 176px;
}
body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
    width: 156px;
    height: 156px;
}
.proposal-type-1 .product-item__swiper .swiper-pagination-bullets {
    right: 0;
    bottom: 0 !important;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.proposal-type-1 .product-item__swiper .swiper-pagination-bullet {
    position: static;
    display: block;
    background-color: transparent;
    outline: none;
    border-radius: 0;
    width: 100%;
    height: 24px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 !important;
    padding: 0;
    top: 0;
    left: 0;
}
.proposal-type-1 .product-item__swiper .swiper-scrollbar {
    border-radius: 0;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
}
.proposal-type-1 .product-item__swiper .swiper-scrollbar-drag {
    border-radius: 0;
}
.proposal-type-1 .product-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px;
}
.proposal-type-1 .product-item__body a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    font-family: 'Ubuntu Medium', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.proposal-type-1 .product-item__body a:hover {
    text-decoration: underline !important;
    color: #000;
}
.proposal-type-1 .product-item__body p {
    font-size: .875rem;
    margin-bottom: 8px;
}
body[data-container="1200"] .proposal-type-1 .product-item__body p {
    font-size: 13px;
}
.proposal-type-1 .product-item__body .price-retail, .product-item__body .price-wholesale {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}
.proposal-type-1 .product-item__body .price-retail span, .product-item__body .price-wholesale span {
    font-size: 13px;
}
.proposal-type-1 .product-item__body .price-retail del, .product-item__body .price-wholesale del {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #9f9f9f;
    text-decoration: line-through;
}
.proposal-type-1 .product-item__footer {
    padding: 0 10px 12px;
}
.proposal-type-1 .product-item__footer .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.proposal-type-1 .product-item__footer .links .btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    max-width: 49%;
    font-size: 13px;
    line-height: 1;
    padding: 4px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
}
.proposal-type-1 .product-item__footer .links .btn:hover {
    text-decoration: none !important;
}
.proposal-type-1 .product-item__footer .links .btn:first-child {
    margin-left: 0;
}

.proposal-type-2 .product-item__parent {
    margin-bottom: 16px;
}
.proposal-type-2 .product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
    padding: 12px;
}
.proposal-type-2 .product-item__header {
    position: relative;
    min-height: 180px;
    height: 180px;
}
.proposal-type-2 .product-item__swiper {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 10px;
}
.proposal-type-2 .product-item__swiper-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.proposal-type-2 .product-item__swiper-item img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 176px;
    height: 176px;
}
body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
    width: 156px;
    height: 156px;
}
.proposal-type-2 .product-item__swiper .swiper-pagination-bullets {
    right: 0;
    bottom: 0 !important;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.proposal-type-2 .product-item__swiper .swiper-pagination-bullet {
    position: static;
    display: block;
    background-color: transparent;
    outline: none;
    border-radius: 0;
    width: 100%;
    height: 24px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 !important;
    padding: 0;
    top: 0;
    left: 0;
}
.proposal-type-2 .product-item__swiper .swiper-scrollbar {
    border-radius: 0;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
}
.proposal-type-2 .product-item__swiper .swiper-scrollbar-drag {
    border-radius: 0;
}
.proposal-type-2 .product-item__header .product-item__sale, .proposal-type-2 .product-item__header .status {
    position: absolute;
    font-size: 13px;
    color: #fff;
    padding: 5px 10px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    left: -12px;
    bottom: 0;
    pointer-events: none;
}
.proposal-type-2 .product-item__header .favorites {
    position: absolute;
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: -5px;
    right: -5px;
    padding: 4px;
}
.proposal-type-2 .product-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}
.proposal-type-2 .product-item__name {
    font-size: 14px;
    margin-top: 10px;
}
.proposal-type-2 .product-item__stock {
    font-size: 14px;
    margin-top: 4px;
}
.proposal-type-2 .product-item .price-retail {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 16px;
}
.proposal-type-2 .product-item .price-retail span {
    font-size: 14px;
}
.proposal-type-2 .product-item .price-retail del {
    font-size: 14px;
}
.proposal-type-2 .product-item__footer {
    margin-top: auto;
}
.proposal-type-2 .product-item__footer .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 0;
    margin-left: calc(5px / 2 * -1);
    margin-right: calc(5px / 2 * -1);
}
.proposal-type-2 .product-item__footer .buttons .buttons__item {
    padding-left: calc(5px / 2);
    padding-right: calc(5px / 2);
}
.proposal-type-2 .product-item__footer .buttons .buttons__item.flex {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
}
.proposal-type-2 .product-item__footer .buttons .buttons__item.flex a {
    width: 100%;
}
.proposal-type-2 .product-item__footer .theme-btn {
    font-size: 13px;
    height: 38px;
    padding: 8px 24px;
}
.proposal-type-2 .product-item__footer .theme-btn-icon {
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.proposal-type-2 .product-item__footer .theme-btn-icon:hover {
    opacity: .8;
}
/*showcase*/

/*call-request*/
.call-request {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.call-request-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: -1;
    opacity: .1;
}
.call-request__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.call-request__wrap .theme-bg-color-svg {
    margin-right: 40px;
}
.call-request h3 {
    font-size: 2.25rem;
    color: #3c4348;
}
.call-request .sub-title {
    font-size: 1.1rem;
}
.call-request .btn {
    -webkit-box-shadow: 0 2px 4px 1px rgba(34, 34, 34, .19);
    box-shadow: 0 2px 4px 1px rgba(34, 34, 34, .19);
    margin-top: auto;
    margin-bottom: auto;
}
.call-request .btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.call-request-type-1 {
    position: relative;
    padding-top: 45px;
    padding-bottom: 45px;
    z-index: 0;
}
.call-request-type-1::before {
    content: '';
    position: absolute;
    border-top: 1px solid transparent;
    /*border-bottom: 1px solid transparent;*/
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .15;
    pointer-events: none;
}
.call-request-type-1 img, .call-request-type-1 svg {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}
.call-request-type-1 h3 {
    max-width: 55%;
    margin-bottom: 0;
}

.call-request-type-2 {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 0;
}
.call-request-type-2 h3 {
    margin-bottom: 24px;
}
.call-request-type-2 .sub-title {
    margin-bottom: 60px;
}
.call-request-type-2 .arrow-on__wrap {
    left: 190px;
}

.call-request-type-3 {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 0;
}
.call-request-type-3::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .42);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.call-request-type-3 h3 {
    color: #fff;
    margin-bottom: 24px;
}
.call-request-type-3 p {
    color: #fff;
}
.call-request-type-3 .sub-title {
    margin-bottom: 60px;
}
.call-request-type-3 .arrow-on__wrap {
    left: 190px;
}
.call-request-type-3 .arrow-on__svg {
    fill: #fff;
}
/*call-request*/

/*category*/
.category-type-1 .category-item__parent {
    margin-bottom: 16px;
}
.category-type-1 .category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid rgba(34, 34, 34, .1);
    background-color: #fff;
    position: relative;
    z-index: 0;
    height: 100%;
    overflow: hidden;
}
.category-type-1 .category-item__header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 1rem 1.5rem;
    min-height: 93px;
}
.category-type-1 .category-item__header p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #3c4348;
    text-align: center;
    margin-bottom: 15px;
}
.category-type-1 .category-item__header::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60%;
    height: .1875rem;
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.category-type-1 .category-item__body {
    padding: 0 1rem 1rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.category-type-1 .category-item__body img {
    min-width: 100%;
    max-width: 100%;
    min-height: 190px;
    max-height: 190px;
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
body[data-container="1200"] .category-type-1 .category-item__body img {
    min-height: 160px;
    max-height: 160px;
}
.category-type-1 .category-item:hover {
    -webkit-box-shadow: 0 10px 20px 3px rgba(34, 34, 34, .09);
    box-shadow: 0 10px 20px 3px rgba(34, 34, 34, .09)
}
.category-type-1 .category-item:hover .category-item__header::before {
    width: 80%;
}
.category-type-1 .category-item:hover img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}

.category-type-2 .category-item__parent {
    margin-bottom: 16px;
}
.category-type-2 .category-item {
    background-repeat: no-repeat;
    background-position: 90% center;
    background-size: 140px;
    background-color: #ededed;
    border: 1px solid #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    padding: 25px 130px 30px 25px;
    min-height: 190px;
}
.category-type-2 .category-item p {
    line-height: 1.3;
}
.category-type-2 .category-item button {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    background-color: #333;
    padding: 4px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.category-type-3 .category-item__parent {
    margin-bottom: 16px;
}
.category-type-3 .category-item {
    background-color: #fff;
    display: block;
    height: 100%;
    overflow: hidden;
    padding: 8px 16px;
}
.category-type-3 .category-item > .row {
    height: 100%;
}
.category-type-3 .category-item__img img {
    width: 100%;
    height: 88px;
    -o-object-fit: contain;
    object-fit: contain;
}

.category-type-4 .category-item__parent {
    margin-bottom: 16px;
}
.category-type-4 .category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 2px solid #c4c4c4;
    overflow: hidden;
    padding: 20px;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}
.category-type-4 .category-item img {
    width: 160px;
    height: 160px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 16px;
}
/*category*/

/*advantages*/
.advantages-item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    -webkit-transition: .3s ease-in-out all;
    -o-transition: .3s ease-in-out all;
    transition: .3s ease-in-out all;
}
.advantages-item svg {
    display: block;
    width: 105px;
    height: 105px;
    margin: 0 auto;
}
body[data-container="1200"] .advantages-item svg {
    width: 70px;
    height: 70px;
}
.advantages-item h5 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 12px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.advantages-item p {
    font-size: .9rem;
    color: #636363;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-bottom: 0;
}
.advantages-item__header {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    padding: 12px;
}
.advantages-item__header svg {
    width: 50px;
    height: 50px;
}
body[data-container="1200"] .advantages-item__header svg {
    width: 50px;
    height: 50px;
}
.advantages-item__header svg path:not([fill]) {
    stroke: #fff !important;
}
.advantages-item__header svg path:not([stroke]) {
    fill: #fff !important;
}
.advantages-item__header h5 {
    color: #fff;
}
.advantages-item__body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #ededed;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 24px;
}
.advantages-item:hover {
    -webkit-box-shadow: 0 5px 12px 7px rgba(0, 0, 0, .05);
    box-shadow: 0 5px 12px 7px rgba(0, 0, 0, .05);
}
.advantages-item:hover svg {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
}

.advantages-type-1 .advantages-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 1rem;
}

.advantages-type-2 .advantages-item__parent {
    margin-bottom: 16px;
}
.advantages-type-2 .advantages-item {
    padding: 32px;
}
body[data-container="1200"] .advantages-item h5 {
    margin-top: .25rem !important;
    margin-bottom: .5rem !important;
}

.advantages-type-3 .advantages-item__parent {
    margin-bottom: 16px;
}

.advantages-type-4 .advantages-item {
    padding: 24px 8px;
}
.advantages-type-4 .advantages-item svg {
    width: 46px;
    height: 46px;
}
body[data-container="1200"] .advantages-type-4 .advantages-item svg {
    width: 46px;
    height: 46px;
}
.advantages-type-4 .advantages-item h5 {
    font-size: 1rem;
}
.advantages-type-4 .advantages-item p {
    font-size: .85rem;
}
.advantages-type-4 .advantages-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.advantages-type-5 .advantages-item svg {
    width: 46px;
    height: 46px;
}
body[data-container="1200"] .advantages-type-5 .advantages-item svg {
    width: 46px;
    height: 46px;
}

.advantages-type-5 .advantages-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*advantages*/

/*photo-gallery*/
.photo-gallery-type-1 .photo-gallery__item-parent {
    margin-bottom: 16px;
}
.photo-gallery-type-1 .photo-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 34, 34, .1);
    background-color: #fff;
    height: 100%;
}
.photo-gallery-type-1 .photo-gallery__item img {
    width: 100%;
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
}
body[data-container="1200"] .photo-gallery-type-1 .photo-gallery__item img {
    height: 260px;
}
.photo-gallery-type-1 .photo-gallery__overlay {
    position: absolute;
    padding: 1.875rem;
    width: 90%;
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 0;
}
.photo-gallery-type-1 .photo-gallery__overlay::before {
    content: '';
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .8;
}
.photo-gallery-type-1 .photo-gallery__overlay h6 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.photo-gallery-type-1 .photo-gallery__overlay p {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}
.photo-gallery-type-1 .photo-gallery__item:hover .photo-gallery__overlay {
    opacity: 1;
    visibility: visible;
}

.photo-gallery-type-2 .photo-gallery__item-parent {
    margin-bottom: 16px;
}
.photo-gallery-type-2 .photo-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 34, 34, .1);
    background-color: #fff;
    height: 100%;
}
.photo-gallery-type-2 .photo-gallery__item::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}
.photo-gallery-type-2 .photo-gallery__item img {
    width: 100%;
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}
body[data-container="1200"] .photo-gallery-type-2 .photo-gallery__item img {
    height: 260px;
}
.photo-gallery-type-2 .photo-gallery__item:hover::before {
    opacity: 1;
}
.photo-gallery-type-2 .photo-gallery__item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.photo-gallery-type-3 .photo-gallery__wrap {
    counter-reset: section;
}
.photo-gallery-type-3 .photo-gallery__item-parent {
    position: relative;
}
/*.photo-gallery-type-3 .photo-gallery__item-parent::after {*/
/*counter-increment: section;*/
/*position: absolute;*/
/*content: '0' counter(section);*/
/*font-size: 32px;*/
/*font-weight: 700;*/
/*line-height: 1;*/
/*letter-spacing: 3px;*/
/*text-transform: uppercase;*/
/*color: rgba(255, 255, 255, .7);*/
/*right: 24px;*/
/*bottom: 24px;*/
/*opacity: 0;*/
/*transition: .3s ease opacity;*/
/*}*/
/*.photo-gallery-type-3 .photo-gallery__item-parent:hover::after {*/
/*    opacity: 1;*/
/*}*/
.photo-gallery-type-3 .photo-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
}
.photo-gallery-type-3 .photo-gallery__item::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: .3s ease opacity;
    -o-transition: .3s ease opacity;
    transition: .3s ease opacity;
    pointer-events: none;
}
.photo-gallery-type-3 .photo-gallery__item img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .3s ease transform;
    -o-transition: .3s ease transform;
    transition: .3s ease transform;
}
.photo-gallery-type-3 .photo-gallery__item p {
    display: none;
    position: absolute;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 82px 0 20px;
}
.photo-gallery-type-3 .photo-gallery__item:hover::before {
    opacity: 0;
}
.photo-gallery-type-3 .photo-gallery__item:hover img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
/*photo-gallery*/

/*documents*/
.documents-type-1 .documents-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.documents-type-1 .documents-item__parent {
    position: relative;
    z-index: 0;
    margin-bottom: 16px;
}
.documents-type-1 .documents-item {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(31, 31, 31, .1);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    z-index: 0;
    padding: .5rem;
}
.documents-type-1 .documents-item > a {
    display: block;
}
.documents-type-1 .documents-item img {
    width: 100%;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
}
body[data-container="1200"] .documents-type-1 .documents-item img {
    height: 270px;
}
.documents-type-1 .documents-item__overlay {
    position: absolute;
    padding: 1rem;
    background-color: rgba(0, 0, 0, .6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    left: 0;
    right: 0;
    bottom: -70px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    z-index: 1;
}
.documents-type-1 .documents-item__overlay h6 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.25rem;
    text-align: center;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.documents-type-1 .documents-item__overlay p {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}
.documents-type-1 .documents-item:hover .documents-item__overlay {
    bottom: 0;
}

.documents-type-2 .documents-item__parent {
    margin-bottom: 16px;
}
.documents-type-2 .documents-item {
    position: relative;
    background-color: #fff;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    padding: 12px;
}
.documents-type-2 .documents-item::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .3s ease opacity;
    -o-transition: .3s ease opacity;
    transition: .3s ease opacity;
}
.documents-type-2 .documents-item img {
    width: 100%;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: .3s ease transform;
    -o-transition: .3s ease transform;
    transition: .3s ease transform;
}
body[data-container="1200"] .documents-type-2 .documents-item img {
    height: 270px;
}
.documents-type-2 .documents-item:hover::before {
    opacity: 1;
}
.documents-type-2 .documents-item:hover img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
/*documents*/

/*news*/
.news-type-1 .news-item-lg__parent {
    margin-bottom: 16px;
}
.news-type-1 .news-item__parent {
    margin-bottom: 16px;
}
.news-type-1 .news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid rgba(34, 34, 34, .1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    height: 100%;
}
.news-type-1 .news-item__header {
    width: 100%;
    min-height: 190px;
    max-height: 190px;
    border-bottom: 1px solid rgba(31, 31, 31, .1);
}
body[data-container="1200"] .news-type-1 .news-item__header {
    min-height: 170px;
    max-height: 170px;
}
.news-type-1 .news-item__header img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.news-type-1 .news-item__body {
    padding: 16px;
    border-top: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
}
.news-type-1 .news-item__body .date {
    font-size: .8rem;
    color: #636363;
    margin-bottom: 8px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.news-type-1 .news-item__body .title-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.news-type-1 .news-item__body .title-link:hover {
    text-decoration: underline !important;
}
.news-type-1 .news-item__body p {
    font-size: .875rem;
    color: #636363;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.news-type-1 .news-item__body p:last-child {
    margin-bottom: 0;
}
.news-type-1 .news-item:hover {
    -webkit-box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
    box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
}
.news-type-1 .news-item-lg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    overflow: hidden;
    height: 100%;
    padding: 2rem 1.5rem;
    z-index: 0;
}
.news-type-1 .news-item-lg::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.news-type-1 .news-item-lg .date {
    font-size: .9rem;
    color: #fff;
    margin-bottom: 8px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.news-type-1 .news-item-lg .title-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 1rem;
}
.news-type-1 .news-item-lg .title-link:hover {
    text-decoration: underline !important;
}
.news-type-1 .news-item-lg p {
    font-size: 1rem;
    color: #fff;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}

.news-type-2 .news-item__parent {
    margin-bottom: 16px;
}
.news-type-2 .news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid rgba(34, 34, 34, .1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    height: 100%;
}
.news-type-2 .news-item__header {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
}
.news-type-2 .news-item__header img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    max-height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.news-type-2 .news-item__body {
    position: relative;
    padding: 30px 16px 16px;
    border-top: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
}
.news-type-2 .news-item__body .date {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 4px;
    font-size: .8rem;
    color: #fff;
    padding: 8px 16px;
    margin-bottom: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    top: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.news-type-2 .news-item__body .title-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: .5rem;
}
.news-type-2 .news-item__body .title-link:hover {
    text-decoration: underline !important;
}
.news-type-2 .news-item__body p {
    font-size: .875rem;
    color: #636363;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.news-type-2 .news-item__body p:last-child {
    margin-bottom: 0;
}

.news-type-3 .news-item__parent {
    margin-bottom: 16px;
}
.news-type-3 .news-item {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.news-type-3 .news-item__header {
    height: 440px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: #000;
    position: relative;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-filter .5s ease;
    transition: -webkit-filter .5s ease;
    -o-transition: filter .5s ease;
    transition: filter .5s ease;
    transition: filter .5s ease, -webkit-filter .5s ease;
}
.news-type-3 .news-item__header::before {
    content: '';
    display: block;
    height: 100%;
    background: rgba(53, 53, 53, .06);
}
.news-type-3 .news-item__header::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(53, 53, 53, .45);
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
    opacity: 0;
}
.news-type-3 .news-item__header img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}
.news-type-3 .news-item__hover {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .5s ease, z-index .5s step-end, visibility .5s step-end;
    -o-transition: opacity .5s ease, z-index .5s step-end, visibility .5s step-end;
    transition: opacity .5s ease, z-index .5s step-end, visibility .5s step-end;
    opacity: 0;
}
.news-type-3 .news-item__hover::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    margin-left: -100%;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0s linear .5s;
    transition: -webkit-transform 0s linear .5s;
    -o-transition: transform 0s linear .5s;
    transition: transform 0s linear .5s;
    transition: transform 0s linear .5s, -webkit-transform 0s linear .5s;
}
.news-type-3 .news-item__inner {
    display: inline-block;
    width: 83px;
    margin-top: -20px;
}
.news-type-3 .news-item__word {
    overflow: hidden;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}
.news-type-3 .news-item__word span {
    display: block;
    -webkit-transform: translate3d(0, 15px, 1px) rotate(6deg);
    transform: translate3d(0, 15px, 1px) rotate(6deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0s linear .5s;
    transition: -webkit-transform 0s linear .5s;
    -o-transition: transform 0s linear .5s;
    transition: transform 0s linear .5s;
    transition: transform 0s linear .5s, -webkit-transform 0s linear .5s;
}
.news-type-3 .news-item__line {
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 3px 0 6px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0s linear .5s;
    transition: -webkit-transform 0s linear .5s;
    -o-transition: transform 0s linear .5s;
    transition: transform 0s linear .5s;
    transition: transform 0s linear .5s, -webkit-transform 0s linear .5s;
}
.news-type-3 .news-item__body {
    background-color: #fff;
    height: 120px;
    padding: 20px 16px 16px;
    -webkit-transition: -webkit-transform .5s ease .3s;
    transition: -webkit-transform .5s ease .3s;
    -o-transition: transform .5s ease .3s;
    transition: transform .5s ease .3s;
    transition: transform .5s ease .3s, -webkit-transform .5s ease .3s;
    position: relative;
}
.news-type-3 .news-item__body::before {
    content: '';
    display: block;
    width: 100%;
    height: 205px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1c1c1c;
    opacity: 1;
    -webkit-transition: opacity .5s ease, -webkit-transform .5s ease .3s;
    transition: opacity .5s ease, -webkit-transform .5s ease .3s;
    -o-transition: opacity .5s ease, transform .5s ease .3s;
    transition: opacity .5s ease, transform .5s ease .3s;
    transition: opacity .5s ease, transform .5s ease .3s, -webkit-transform .5s ease .3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    pointer-events: none;
}
.news-type-3 .news-item__case {
    -webkit-transition: opacity .3s ease .8s;
    -o-transition: opacity .3s ease .8s;
    transition: opacity .3s ease .8s;
}
.news-type-3 .news-item__date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(28, 28, 28, .7);
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease;
}
.news-type-3 .news-item__date span {
    display: inline-block;
    vertical-align: middle;
}
.news-type-3 .news-item__title {
    font-size: 18px;
    margin-top: 14px;
    padding-right: 40px;
    color: #1c1c1c;
    -webkit-transition: color .5s ease .3s;
    -o-transition: color .5s ease .3s;
    transition: color .5s ease .3s;
}
.news-type-3 .news-item__stub {
    color: #fff;
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    height: 205px;
    padding: 24px 24px 0;
}
.news-type-3 .news-item__stub .news-item__date {
    color: rgba(255, 255, 255, .7);
}
.news-type-3 .news-item__stub .news-item__title {
    color: #fff;
    padding-right: 0;
}

.news-type-3 .news-item:hover .news-item__header {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.news-type-3 .news-item:hover .news-item__header::before {
    opacity: .7;
}
.news-type-3 .news-item:hover .news-item__header::after {
    opacity: 1;
}
.news-type-3 .news-item:hover .news-item__hover {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    -webkit-transition: opacity 0s linear, z-index 0s step-start, visibility 0s step-start;
    -o-transition: opacity 0s linear, z-index 0s step-start, visibility 0s step-start;
    transition: opacity 0s linear, z-index 0s step-start, visibility 0s step-start;
}
.news-type-3 .news-item:hover .news-item__hover:before {
    -webkit-transform: translate3d(100%, 0, 1px);
    transform: translate3d(100%, 0, 1px);
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}
.news-type-3 .news-item:hover .news-item__word span {
    -webkit-transform: translateZ(1px) rotate(.001deg);
    transform: translateZ(1px) rotate(.001deg);
    -webkit-transition: -webkit-transform 1s ease .7s;
    transition: -webkit-transform 1s ease .7s;
    -o-transition: transform 1s ease .7s;
    transition: transform 1s ease .7s;
    transition: transform 1s ease .7s, -webkit-transform 1s ease .7s;
}
.news-type-3 .news-item:hover .news-item__line {
    -webkit-transition: -webkit-transform .5s ease .5s;
    transition: -webkit-transform .5s ease .5s;
    -o-transition: transform .5s ease .5s;
    transition: transform .5s ease .5s;
    transition: transform .5s ease .5s, -webkit-transform .5s ease .5s;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.news-type-3 .news-item:hover .news-item__body::before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}
.news-type-3 .news-item:hover .news-item__case {
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.news-type-3 .news-item:hover .news-item__stub {
    opacity: 1;
    -webkit-transition: opacity .5s ease .5s;
    -o-transition: opacity .5s ease .5s;
    transition: opacity .5s ease .5s;
}
/*news*/

/*promotions*/
.shares-type-1 .promotions-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.shares-type-1 .promotions-item__parent {
    margin-bottom: 16px;
}
.shares-type-1 .promotions-item {
    background-color: #fff;
    border: 1px solid rgba(34, 34, 34, .1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.shares-type-1 .promotions-item__header {
    min-height: 250px;
    max-height: 250px;
    border-bottom: 1px solid rgba(31, 31, 31, .1);
}
body[data-container="1200"] .shares-type-1 .promotions-item__header {
    min-height: 220px;
    max-height: 220px;
}
.shares-type-1 .promotions-item__header img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.shares-type-1 .promotions-item__body {
    padding: 16px;
    border-top: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.shares-type-1 .promotions-item__body .date {
    font-size: 14px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.shares-type-1 .promotions-item__body .date svg {
    margin-right: 3px;
    margin-bottom: 3px;
}
.shares-type-1 .promotions-item__body .date svg * {
    fill: #222;
}
.shares-type-1 .promotions-item__body .title-link {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: .5rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.shares-type-1 .promotions-item__body .title-link:hover {
    text-decoration: underline !important;
}
.shares-type-1 .promotions-item__body p {
    font-size: .875rem;
    color: #636363;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-bottom: 0;
}
.shares-type-1 .promotions-item:hover {
    -webkit-box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
    box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
}

.shares-type-2 .promotions-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.shares-type-2 .promotions-item__parent {
    margin-bottom: 16px;
}
.shares-type-2 .promotions-item {
    background-color: #fff;
    border: 1px solid rgba(34, 34, 34, .06);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.shares-type-2 .promotions-item__header {
    min-height: 250px;
    max-height: 250px;
    border-bottom: 1px solid rgba(31, 31, 31, .1);
}
body[data-container="1200"] .shares-type-2 .promotions-item__header {
    min-height: 220px;
    max-height: 220px;
}
.shares-type-2 .promotions-item__header img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.shares-type-2 .promotions-item__body {
    padding: 16px 20px;
    border-top: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.shares-type-2 .promotions-item__body .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.shares-type-2 .promotions-item__body .date svg {
    margin-right: 3px;
    margin-bottom: 3px;
}
.shares-type-2 .promotions-item__body .date svg * {
    fill: #222;
}
.countdown-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.countdown-list > li span {
    margin: 0 2px;
}
.shares-type-2 .promotions-item__body .title-link {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: .5rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.shares-type-2 .promotions-item__body .title-link:hover {
    text-decoration: underline !important;
}
.shares-type-2 .promotions-item__body p {
    font-size: .875rem;
    color: #636363;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-bottom: 0;
}
.shares-type-2 .promotions-item:hover {
    -webkit-box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
    box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
}

.shares-type-3 .promotions-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.shares-type-3 .promotions-item {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}
.shares-type-3 .promotions-item__img {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
}
.shares-type-3 .promotions-item__img img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}
.shares-type-3 .promotions-item__content {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, .03);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, .03);
    padding: 50px 40px;
    min-height: 270px;
}
.shares-type-3 .promotions-item__content .date {
    position: absolute;
    font-size: 14px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    top: 20px;
    right: 20px;
}
.shares-type-3 .promotions-item__content .date svg {
    margin-right: 3px;
    margin-bottom: 3px;
}
.shares-type-3 .promotions-item__content .date svg * {
    fill: #222;
}
.shares-type-3 .promotions-item__content p {
    font-size: .875rem;
    color: #636363;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-bottom: 0;
}
.shares-type-3 .promotions-item__title {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.shares-type-3 .promotions-item:nth-child(odd) > div:nth-child(2) {
    -webkit-transform: translateX(-160px);
    -ms-transform: translateX(-160px);
    transform: translateX(-160px);
    margin-right: -160px;
}
.shares-type-3 .promotions-item:nth-child(even) > div:nth-child(1) {
    -webkit-transform: translateX(-160px);
    -ms-transform: translateX(-160px);
    transform: translateX(-160px);
    margin-right: -160px;
}
.shares-type-3 .promotions-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.shares-type-3 .promotions-item:hover {

}

.shares-type-4 .promotions-item__parent {
    margin-bottom: 16px;
}
.shares-type-4 .promotions-item {
    position: relative;
    display: block;
    color: #fff;
}
.shares-type-4 .promotions-item::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .4);
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: .3s ease opacity;
    -o-transition: .3s ease opacity;
    transition: .3s ease opacity;
    opacity: 0;
}
.shares-type-4 .promotions-item__img {
    border-radius: inherit;
    overflow: hidden;
}
.shares-type-4 .promotions-item__img img {
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}
.shares-type-4 .promotions-item__content {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: 30px;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}
.shares-type-4 .promotions-item .date {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.shares-type-4 .promotions-item .date svg {
    margin-right: 3px;
    margin-bottom: 3px;
}
.shares-type-4 .promotions-item .date svg * {
    fill: #fff;
}
.shares-type-4 .promotions-item__content p {
    font-size: .9rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-bottom: 0;
}
.shares-type-4 .promotions-item__title {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.shares-type-4 .promotions-item:hover::before {
    opacity: 1;
}
.shares-type-4 .promotions-item:hover .promotions-item__content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
/*promotions*/

/*map*/
.map-container {
    color: #1a1a18;
}
.map-block h5 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.map-contacts__list li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
    font-size: 14px;
    color: #636363;
    margin-bottom: 10px;
}
.map-contacts__list li svg {
    min-width: 16px;
    min-height: 16px;
}
.map-contacts__list li h6 {
    font-size: 16px;
    text-align: left;
    width: 100%;
}
.map-contacts__list li a {
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
.map-contacts__list li p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.map-contacts__list li a, .map-contacts__list li p {
    text-align: right;
    margin-bottom: 6px;
}
.map-block .btn {
    font-size: 14px;
    height: 45px;
}

.contact-type-1.map-wrap {
    position: relative;
}
.contact-type-1 .map {
    height: 500px;
    z-index: 0;
}
.contact-type-1 .map-container {
    position: absolute;
    width: 550px;
    min-height: 430px;
    max-height: 100%;
    top: 50%;
    left: 18%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.contact-type-1 .map-block {
    position: relative;
    padding: 2.25rem;
    z-index: 1;
}
body[data-container="1200"] .contact-type-1 .map-block {
    padding: 1.5rem;
}
body[data-container="1200"] .contact-type-1 .map-block .btn {
    height: 44px;
    padding: 8px 16px;
}

.contact-type-2 .map {
    height: 600px;
    z-index: 0;
}
.contact-type-2 .map-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    height: 100%;
    padding: 100px;
    z-index: 1;
}
.contact-type-2 .map-block {
    width: 600px;
    margin: 0 auto;
}
.map-contacts__list li {
    color: inherit;
    opacity: .8;
}
.contact-type-2 .map-block.flexCenter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.contact-type-2 .map-block.flexCenter .map-contacts__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.contact-type-2 .map-block.flexCenter .btn-list {
    width: 100%;
}

.contact-type-3 {
    position: relative;
    z-index: 1;
}
.contact-type-3 .map {
    height: 420px;
    z-index: 0;
}

.contact-type-4.map-wrap {
    position: relative;
}
.contact-type-4 .map {
    height: 500px;
    z-index: 0;
}
.contact-type-4 .map-container {
    position: absolute;
    width: 550px;
    min-height: 430px;
    max-height: 100%;
    top: 50%;
    right: 18%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.contact-type-4 .map-block {
    position: relative;
    padding: 2.25rem;
    z-index: 1;
}
body[data-container="1200"] .contact-type-4 .map-block {
    padding: 1.5rem;
}
body[data-container="1200"] .contact-type-4 .map-block .btn {
    height: 44px;
    padding: 8px 16px;
}
/*map*/

.sidebar-item {
    border-radius: inherit;
    overflow: hidden;
    margin-bottom: 1rem;
}
.sidebar-item:last-child {
    margin-bottom: 0;
}
.sidebar-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
    padding: 1rem;
}
.sidebar-link__list {
    border: 1px solid rgba(34, 34, 34, .1);
    border-top: 0;
    /*border-bottom: 0;*/
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}
.sidebar-link__list li {
    border-bottom: 1px solid #e8e8e8;
}
.sidebar-link__list li:last-child {
    border-bottom: 0;
}
.sidebar-link__list li a {
    display: block;
    position: relative;
    font-size: .85rem;
    color: #000;
    padding: 1rem;
    z-index: 0;
}
.sidebar-link__list li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.sidebar-link__list li a:hover {
    color: #000;
}
.sidebar-link__list .active:before {
    opacity: .3;
    visibility: visible;
}
.sidebar-link__list li a:hover::before {
    opacity: .3;
    visibility: visible;
}

.news-item__info .news-inner__img {
    overflow: hidden;
    margin-bottom: 25px;
}
.news-item__info .news-inner__img img {
    width: 100%;
    max-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}
.news-item__description {
    margin-bottom: 25px;
}
.news-item__description img {
    max-width: 100%;
}
.news-item__description h4 {
    font-size: 22px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-bottom: 10px;
}
.news-item__description .date {
    font-size: .875rem;
    color: #636363;
    margin-bottom: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.news-item__description .date svg {
    margin-right: 3px;
}
.news-item__description .date svg * {
    fill: #222;
}
.news-item__description strong {
    font-size: .9rem;
    line-height: 1.2;
    color: #636363;
}
.news-item__description p {
    font-size: .9rem;
    line-height: 1.5;
}

.all-news {
    background-color: #f0f5f9;
    padding: 8px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.all-news .news-item__parent {
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.all-news .news-item__header {
    min-height: 160px;
    max-height: 160px;
}
.all-news .news-item__body {
    padding: 1rem;
}
.all-news .news-item__body .title-link {
    font-size: .875rem;
    line-height: 1.2;
    -webkit-line-clamp: 3;
    margin-bottom: .8rem;
}
.all-news .news-item__body p {
    font-size: .85rem;
    margin-bottom: .5rem;
}

.catalog-container-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 12px;
}
.catalog-container-sorting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 8px;
    margin-right: 8px;
    overflow-y: auto;
}
.catalog-container-sorting::-webkit-scrollbar {
    height: 6px;
}
.catalog-container-sorting li {
    margin-right: 4px;
}
.catalog-container-sorting li:last-child {
    margin-right: 0;
}
.catalog-container-sorting li .btn {
    font-size: 14px;
    height: 36px;
    padding: 8px 16px;
}
.catalog-container-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.catalog-container-toggler a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    border-width: 1px;
    border-style: solid;
    border-radius: .25rem;
    margin-left: 10px;
}
.catalog-container-toggler a:first-child {
    margin-left: 0;
}
.catalog-container-toggler a.active svg * {
    fill: #fff;
}
.catalog-container-toggler a:hover {
    opacity: .8;
}
.catalog-tags {
    font-size: 13px;
}

.basket-item {
    position: relative;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid rgba(34, 34, 34, .1);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.2rem;
    padding: 1rem;
    overflow: hidden;
}
.basket-item:last-child {
    margin-bottom: 0;
}
.basket-item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    max-width: 15%;
    width: 100%;
    min-height: 125px;
    max-height: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(34, 34, 34, .1);
}
.basket-item__img img {
    width: 100%;
    height: 100%;
    max-height: inherit;
    padding: 5px;
    -o-object-fit: contain;
    object-fit: contain;
}
.basket-item__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.basket-item__info .basket-item__about {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46%;
    flex: 0 0 46%;
    max-width: 46%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.basket-item__info .basket-item__about .title-link, .basket-item__counter h6, .basket-item__price h6 {
    display: block;
    font-size: .95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.basket-item__info .basket-item__about .title-link:hover {
    text-decoration: underline !important;
}
.basket-item__info .basket-item__about .text-stock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .85rem;
    margin-bottom: 10px;
}
.basket-item__info .basket-item__about .text-stock span {
    margin-left: 1.4375rem;
}
.basket-item__info .basket-item__about .text-stock span:first-child {
    margin-left: 0;
}
.basket-item__info .basket-item__about .price-retail .text-discount {
    font-size: .85rem;
    color: #fff;
    padding: .3125rem .5rem;
    margin-right: .8125rem;
}
.basket-item__counter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.basket-item__counter .nice-number__wrap label {
    display: block;
    border-radius: inherit;
    margin-bottom: 0;
}
.basket-item__counter .nice-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 38px;
    border: 1px solid rgba(34, 34, 34, .1);
    border-radius: inherit;
    overflow: hidden;
}
.basket-item__counter .nice-number button {
    width: 38px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    text-align: center;
    color: #fff;
    border: 0;
    border-radius: 0;
}
.basket-item__counter .nice-number input {
    width: 38px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    font-size: 1rem;
    color: #000;
    border: 0;
    border-radius: 0;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.basket-item__counter .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 150px;
    height: 36px;
    border: 1px solid rgba(34, 34, 34, .1);
    border-radius: inherit;
    overflow: hidden;
    margin-right: auto;
}
.basket-item__counter .input-group + .text-warning {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 5px;
}
.basket-item__counter .input-group button {
    width: 38px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    text-align: center;
    color: #fff;
    border: 0;
    border-radius: 0;
    -webkit-transition: .1s ease-in-out all;
    -o-transition: .1s ease-in-out all;
    transition: .1s ease-in-out all;
}
.basket-item__counter .input-group button:hover {
    opacity: .8;
}
.basket-item__counter .input-group label {
    display: block;
    border-radius: inherit;
    margin-bottom: 0;
}
.basket-item__counter .input-group input {
    width: 38px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    font-size: 1rem;
    color: #000;
    border: 0;
    border-radius: 0;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.basket-item__price {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.basket-item__price del {
    color: #9f9f9f;
    display: block;
}
.basket-item .close-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    right: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: rgba(0, 0, 0, .5);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.basket-item .close-btn:hover {
    color: #000;
}
.basket-item .favorites {
    position: absolute;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 40px;
    right: 0;
}
.basket-item .favorites svg * {
    fill: rgba(0, 0, 0, .5);
}
.basket-item .favorites.active svg * {
    fill: #f51f1f;
}
.checkout .data-section {
    background-color: #fff;
    padding: 1.25rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(34, 34, 34, .1);
}
.checkout.bg-odd .data-section {
    border: 1px solid transparent;
}
.checkout .data-section:last-child {
    margin-bottom: 0;
}
.checkout .data-section h5 {
    margin-bottom: 8px;
}
.checkout .data-section p {
    font-size: 14px;
    margin-bottom: 10px;
}
.checkout table {
    width: 100%;
    margin-bottom: .5rem;
}
.checkout table tr {
    vertical-align: baseline;
}
.checkout table tr:hover {
    background-color: #f5f6ff;
}
.checkout table td {
    border-bottom: 1px solid #e8e8e8;
    padding: 0.75rem;
    font-size: 14px;
}
.checkout table td label {
    font-size: 13px;
    cursor: pointer;
}
.checkout table td span {
    font-size: 14px;
    cursor: pointer;
}
.checkout table td span:hover {
    opacity: .8;
}
.checkout table td .collapse, .checkout table td .collapsing {
    padding-left: 20px;
}
.checkout .cart-proposals {
    font-size: 14px;
    border-bottom: 1px solid rgba(34, 34, 34, .1);
    padding-top: 12px;
    padding-bottom: 12px;
}
.checkout .cart-proposals small {
    font-size: 85%;
}
.checkout .cart-proposal {
    margin-bottom: 10px;
}
.checkout .cart-proposal:last-child {
    margin-bottom: 0;
}
.checkout .cart-proposal .img {
    min-width: 54px;
    min-height: 60px;
    max-width: 54px;
    max-height: 54px;
    border: 1px solid #d3d3d3;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin-right: 10px;
    margin-bottom: 6px;
}
.checkout .cart-proposal .name {
    line-height: 21px;
    height: 21px;
    margin-bottom: 4px;
}
.checkout .cart-proposal strong {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    left: 0;
    width: 100%;
    top: 0;
}
.checkout .cart-proposals__wrap strong {
    font-size: 16px;
}
.checkout .cart-proposals__wrap .font-15 strong {
    font-size: 15px;
}
.checkout .cart-proposals__wrap .btn {
    display: inline-block;
    font-size: 14px;
    width: 100%;
}

.total-price__info {
    background-color: #fff;
    border: 1px solid rgba(34, 34, 34, .1);
    padding: 1.5rem;
}
.total-price__info h5 {
    margin-bottom: 15px;
}
.total-price__item {
    border-bottom: 1px solid rgba(31, 31, 31, .1);
    margin-bottom: 20px;
}
.total-price__item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}
.total-price__item.border-bottom {
    border-bottom: 1px solid #e8e8e8 !important;
}
.total-price__item p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 5px;
}
.total-price__item strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}
.total-price__info-buttons {
    margin-top: 15px;
}
.total-price__info-buttons .btn {
    width: 100%;
    font-size: .85rem;
    padding: 8px 10px;
    margin-bottom: 12px;
}
.total-price__info-buttons .btn:last-child {
    margin-bottom: 0;
}
.catalog-container-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.catalog-container-tags a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: .8rem;
    line-height: 1.2;
    color: #000;
    border: 1px solid rgba(0, 0, 0, .2);
    height: 32px;
    padding: 6px 12px;
    margin-right: 5px;
    margin-bottom: 1.5rem;
}
.catalog-container-tags a.reset-btn {
    background-color: #b9b9b9;
    border-color: #b9b9b9;
    color: #fff;
}
.catalog-container-tags a:last-child {
    margin-right: 0;
}
.catalog-container-tags a svg {
    margin-left: 6px;
}
.catalog-container-tags a svg * {
    fill: #000;
}
.catalog-container-tags a:hover {
    color: #000;
    opacity: .8;
}
.catalog-container-tags a.reset-btn:hover {
    color: #fff;
}
.catalog-container.list .product-item__parent {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.catalog-container.list .product-item {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: initial;
}
.catalog-container.list .product-item__content {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
}
.catalog-container.list .product-item__header {
    border-bottom: 0;
    border-right: 1px solid rgba(34, 34, 34, .1);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}
.catalog-container.list .product-item__footer {
    position: initial;
    opacity: 1;
    visibility: visible;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.catalog-container.list .product-item:after {
    display: none;
}
.catalog-container.list .product-item__footer .links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.catalog-container.list .product-item__footer .links .btn {
    min-width: 100%;
    min-height: 40px;
    margin-bottom: 12px;
}
.catalog-container.list .product-item__footer .links .btn:last-child {
    margin-bottom: 0;
}
.catalog-container.list .product-item:hover {
    border-color: rgba(34, 34, 34, .1);
}

.filter-form {
    border: 1px solid rgba(34, 34, 34, .1);
    margin-bottom: 1rem;
}
.sidebar.sticky-top {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.sidebar-scroll {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    border-radius: inherit;
    overflow-y: auto;
    margin-bottom: 16px;
}
.sidebar-action-buttons .theme-btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 8px;
}
.sidebar .filter-form {
    border-top: 0;
    border-bottom: 0;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    margin-bottom: 0;
}
.filter-form h5 {
    background-color: coral;
    color: #fff;
    margin-bottom: 0;
    padding: 1.25rem;
}
.filter-form__item {
    border-bottom: 1px solid #cdd8e3;
    padding: 15px;
}
.filter-form__item:last-child {
    border-bottom: 0;
}
.filter-form__item .form-group {
    margin-bottom: 10px;
}
.filter-form__item .form-group:last-child {
    margin-bottom: 0;
}
.filter-form__item .form-group input, .filter-form__item .form-group span {
    vertical-align: middle;
}
.filter-form__item .form-group span {
    margin-left: 4px;
}
.filter-form__item input[type="text"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.filter-form__item a[data-toggle="collapse"] {
    display: block;
    font-size: .9rem;
    line-height: 1.2;
    color: #1d262d;
}
.filter-form__item a[data-toggle="collapse"].open {
    margin-bottom: 15px;
}
a[data-toggle="collapse"] svg {
    margin-right: 5px;
}
a[data-toggle="collapse"] svg * {
    fill: #000;
}
a[data-toggle="collapse"].open svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.filter-form__item .collapse {
    margin-bottom: 4px;
}
.filter-form__item .collapse.more-toggler-container {
    overflow-y: hidden;
}
.filter-form__item .collapse:not(.show) + [data-toggle="more-link"] {
    display: none;
}
.filter-form__item input[type="checkbox"] {
    /*display: none;*/
}
.filter-form__item label {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 13px;
    line-height: 1.2;
    color: #1d262d;
    cursor: pointer;
    margin-bottom: 1rem;
}
.filter-form__item label:last-child {
    margin-bottom: 0;
}
.filter-form__item input[type="checkbox"]:checked + label::before {
    /*opacity: 1;*/
    /*visibility: visible;*/
}
.filter-form__item label.sr-only, .filter-form__item label.sr-only,
.filter-form__item label.sr-only::before, .filter-form__item label.sr-only::after {
    display: none;
}
.filter-form__item .btn {
    width: 100%;
    height: 45px;
    font-size: .85rem;
    padding: 10px 15px;
    margin-bottom: 10px;
}
.filter-form__item .btn:last-child {
    margin-bottom: 0;
}
.filter-form__item .more-link {
    /*display: none;*/
    font-size: 13px;
    color: #666;
}

.pagination-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.pagination-list li {
    margin-left: 6px;
}
.pagination-list li:first-child {
    margin-left: 0;
}
.pagination-list li * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-width: 2px;
    border-style: solid;
}
.pagination-list .active a {
    color: #fff !important;
}
.pagination-list li a svg.arrow-left {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.pagination-list li a svg.arrow-right {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.pagination-list li a:hover {
    opacity: .7;
}

.contacts .map {
    width: 100%;
    height: 340px;
    margin-bottom: 50px;
}
.contacts-item__parent {
    margin-bottom: 16px;
}
.contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contacts-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 5px;
}
.contacts-item h6 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.contacts-item p {
    margin-bottom: 0;
}
.contacts-item__img {
    min-width: 75px;
    min-height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-width: 2px;
    border-style: solid;
    padding: .5rem;
    margin-right: 20px;
}
.contacts-item p, .contacts-item__content a {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    line-height: 1.5;
}

.products-inner__swiper {
    padding: 10px;
    border: 1px solid rgba(34, 34, 34, .1);
}
.products-inner__swiper .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.products-inner__swiper-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
}
.products-inner__swiper-item img {
    width: 100%;
    height: 340px;
    -o-object-fit: contain;
    object-fit: contain;
}
.products-inner__swiper .swiper-button-prev, .products-inner__swiper .swiper-button-next {
    color: #fff;
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 16, .5);
    border-radius: 3px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    outline: none;
}
.products-inner__swiper .swiper-button-prev::after, .products-inner__swiper .swiper-button-next::after {
    font-size: .8rem;
    font-weight: 700;
}
.products-inner__swiper .swiper-button-prev {
    left: 15px;
}
.products-inner__swiper .swiper-button-next {
    right: 15px;
}
.products-inner__swiper .theme-btn-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px;
    z-index: 1;
}
.products-inner__swiper .favorites {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px;
    z-index: 1;
}
.products-inner__swiper .view-share {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px;
    z-index: 1;
}
.products-inner__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.products-inner__info h3 {
    font-size: 30px;
    line-height: 1.25;
}
.products-inner__info .articulation-text {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
}
.products-inner__info .status-text {
    font-size: 15px;
    margin-bottom: 8px;
}
.products-inner__info .price-wholesale,
.products-inner__info .price-retail {
    font-weight: 700;
    font-size: 26px;
}
.products-inner__info .price-retail del {
    display: block;
}
.products-inner__info .price-retail span {
    font-size: 70%;
}
.products-inner__info .price-retail small {
    font-size: 13px;
    color: #9f9f9f;
    margin-left: 5px;
}
.installment-plan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 12px;
}
.installment-plan .bg-warning {
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    margin-right: 12px;
}
.installment-plan .bg-warning svg {
    margin-right: 4px;
    margin-bottom: 3px;
}
.installment-plan .bg-warning span {
    vertical-align: middle;
}
.installment-plan > span {
    font-size: 16px;
}
.discount-text {
    position: relative;
    display: inline-block;
    color: #f00;
    z-index: 0;
    overflow: hidden;
    padding: 4px 8px;
    margin-bottom: 6px;
}
.discount-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .1;
}
.products-inner__info del {
    font-size: 1rem;
    color: #9f9f9f;
    margin-bottom: 10px;
}
.products-inner__info .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
}
.products-inner__info .buttons .btn {
    font-size: .85rem;
    height: 38px;
    margin-right: 12px;
    padding: 10px 20px;
}
.products-inner__info .nav-pills {
    margin-top: 12px;
    margin-bottom: 8px;
}
.products-inner__info .nav-pills li {
    margin-right: 12px;
}
.products-inner__info .nav-pills li a {
    display: block;
    font-size: .8rem;
    color: #000;
    margin-bottom: 5px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.products-inner__info .nav-pills li a:hover {
    opacity: .7;
}
.products-inner__info .nav-pills li a.active {
    text-decoration: underline !important;
}
.products-inner__info .details-toggler {
    display: inline-block;
    font-size: 14px;
    margin-top: 6px;
    color: inherit;
}
.products-inner__info .details-toggler:hover {
    text-decoration: underline !important;
}
.products-inner__info .details-toggler.open {
    color: #0056b3;
}
.products-inner__details {
    position: relative;
    padding: 8px 12px 12px;
    z-index: 0;
    width: 100%;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
}
.products-inner__details::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .1;
}
.products-inner__details ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .8125rem;
    margin-bottom: 3px;
}
.products-inner__details ul li:last-child {
    margin-bottom: 0;
}
.products-inner__details ul li p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 0;
}
.products-inner__details ul li .dotted {
    position: relative;
}
.products-inner__details ul li .dotted::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10px;
    right: 10px;
    border-bottom: 1px dotted #000;
}

.delivery-info__list {
}
.delivery-info__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 15px;
    margin-bottom: 8px;
}
.delivery-info__list li:last-child {
    margin-bottom: 0;
}
.delivery-info__list li b, .delivery-info__list li span {
    display: inline-block;
}
.delivery-info__list li b {
    min-width: 20%;
    margin-right: 10px;
}
.delivery-info__list li span {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.products-inner__buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.5625rem;
}
.products-inner__buttons .btn{
    padding: 10px 50px;
    margin-right: .625rem;
}
.products-inner__buttons .favorites{
    margin-left: 1.75rem;
}
.products-inner__buttons .favorites svg *{
    fill: rgba(0, 0, 0, .5);
}
.products-inner__buttons .favorites.active svg * {
    fill: #f51f1f;
}
.products-about__accordion {
    margin-top: 30px;
}
.products-about__accordion .accordion-item {
    border: 1px solid rgba(34, 34, 34, .1);
    overflow: hidden;
    margin-bottom: 8px;
}
.products-about__accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.products-about__accordion .accordion-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #222;
    background-color: #f6f6f6;
    border-radius: 0;
    padding: 12px 20px;
}
.products-about__accordion .accordion-link .accordion-icon {
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}
.products-about__accordion .accordion-link .accordion-icon::before,
.products-about__accordion .accordion-link .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #222;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.products-about__accordion .accordion-link .accordion-icon::before {
    width: 12px;
    height: 1px;
}
.products-about__accordion .accordion-link .accordion-icon::after {
    width: 1px;
    height: 12px;
}
.products-about__accordion .accordion-link.open .accordion-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.products-about__accordion .accordion-content {
    padding: 20px 20px 12px;
}
.products-about__accordion .accordion-content * {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
}
.products-about__accordion .accordion-content h6 {
    font-size: 1rem;
    margin-bottom: 12px;
}
.products-about__accordion .accordion-content p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.products-about__accordion .accordion-content p:last-child {
    margin-bottom: 0;
}
.products-about__accordion .accordion-content u {
    font-size: .9rem;
}
.products-about__accordion .accordion-content .characteristics-wrap {
    margin-left: -20px;
    margin-right: -20px;
}
.products-about__accordion .accordion-content .characteristics-list__parent {
    padding-left: 20px;
    padding-right: 20px;
}
.products-about__accordion .accordion-content .characteristics-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
}
.products-about__accordion .accordion-content .characteristics-list li p {
    color: #777;
    word-wrap: break-word;
    word-break: break-word;
    padding-right: 20px;
    margin-bottom: 0;
}
.products-about__accordion .accordion-content .characteristics-list li .points {
    margin-top: auto;
    margin-bottom: 0;
    border: none;
    border-top: 2px dotted rgba(95, 97, 100, .22);
    color: #fff;
    background-color: #fff;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.products-about__accordion .accordion-content .characteristics-list li strong {
    font-size: .9rem;
    text-align: right;
    word-wrap: break-word;
    word-break: break-word;
    padding-left: 20px;
}

.delivery-list {
    margin-bottom: 1.5rem;
}
.delivery-list:last-child {
    margin-bottom: 0;
}
.delivery-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1rem;
}
.delivery-list li:last-child {
    margin-bottom: 0;
}
.delivery-list li p {
    margin-bottom: 0;
}
.delivery-list li u {
    font-size: .9rem;
}

.single-blog__about h2 {
    margin-bottom: 15px;
}
.single-blog__about p {
    font-size: 15px;
    line-height: 1.5;
}
.single-blog__about-item {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 2rem;
    margin-bottom: 1.2rem;
}
.single-blog__about-item:last-child {
    margin-bottom: 0;
}
.single-blog__about-item h6 {
    font-size: 16px;
    margin-bottom: 12px;
}
.single-blog__about-item p {
    margin-bottom: 0;
}
.single-blog__about-item .delivery-list {
    font-size: .85rem;
    margin-bottom: 1.5rem;
}

.schedule-work {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.schedule-work > div {
    margin-bottom: 12px;
}
.schedule-work p {
    font-size: 14px;
    color: inherit;
    margin-bottom: 0;
}
.schedule-work span {
    display: inline-block;
    font-size: 13px;
    color: inherit;
}

.category-element__parent {
    margin-bottom: 16px;
}
.category-element {
    display: block;
    color: #3c4348;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.category-element__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(34, 34, 34, .1);
    height: 210px;
    padding: 1rem;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
body[data-container="1200"] .category-element__header {
    height: 190px;
}
.category-element__header img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.category-element__body p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.2;
    color: inherit;
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
    margin-top: 1.2rem;
}
.category-element__body p:last-child {
    margin-bottom: 0;
}
.category-element:hover .category-element__header {
    -webkit-box-shadow: 0 10px 20px 3px rgba(34, 34, 34, .09);
    box-shadow: 0 10px 20px 3px rgba(34, 34, 34, .09)
}

.glotr-b {
    padding-top: 30px;
    padding-bottom: 25px;
}
.glotr-b__item {
    display: block;
    overflow: hidden;
}
.glotr-b__item img {
    width: 100%;
    min-height: 100px;
    max-height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .3s ease-in-out all;
    -o-transition: .3s ease-in-out all;
    transition: .3s ease-in-out all;
}
.glotr-b__item:hover img {
    opacity: .9;
}
.glotr-b__item-right {
    display: block;
}
.glotr-b__item-right img {
    width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.glotr-b__item-right:hover {
    opacity: .9;
}
.glotr-b .link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -5px;
    margin-right: -5px;
}
.glotr-b .link-list li {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}
.glotr-b .link-list li .btn {
    font-size: 13px;
    height: 45px;
    padding: 10px 25px;
}
.glotr-b .link-list li .btn:hover {
    text-decoration: underline !important;
    opacity: 1;
}
.glotr-b_footer_link {
    height: 200px;
}
.glotr-b_footer_link:hover {
    opacity: .9;
}
.glotr-b_footer_link img {
    width: 100%;
    height: 100%;
}

.iti {
    display: block !important;
}

.page-404 {
    position: relative;
    z-index: 0;
}
.page-404::before, .page-404::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: .5;
}
.page-404::before {
    width: 160px;
    height: 160px;
    top: 160px;
    left: 4%;
}
.page-404::after {
    width: 90px;
    height: 90px;
    top: 100px;
    right: 15%;
}
.page-404__title {
    font-size: 162px;
    line-height: 1.1;
    margin-bottom: 8px;
}
.page-404__sub-title {
    font-size: 32px;
}
.page-404__text-info {
    font-size: 18px;
}

#back-to-top {
    position: fixed;
    left: 30px;
    bottom: 40px;
    width: 46px;
    height: 46px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    overflow: hidden;
    z-index: 9;
    -webkit-transition: .4s ease all;
    -o-transition: .4s ease all;
    transition: .4s ease all;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#back-to-top svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-bottom: 4px;
}
#back-to-top svg * {
    fill: #fff;
}
#back-to-top:hover {
    background-color: #ccc;
    border-color: transparent;
}
#back-to-top.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.b24-widget {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 5;
}
.b24-widget .b24-widget__button {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
    -webkit-transition: .1s all;
    -o-transition: .1s all;
    transition: .1s all;
}
.b24-widget .b24-widget__button::before {
    content: '';
    position: absolute;
    background-color: rgba(220, 220, 220, .2);
    border-radius: inherit;
    width: 125%;
    height: 125%;
    z-index: -1;
}
.b24-widget .b24-widget__button svg {
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.b24-widget .b24-widget__button svg * {
    fill: #fff;
}
.b24-widget .b24-widget__button-pulse {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: inherit;
    border-width: 1px;
    border-style: solid;
    opacity: 1;
    z-index: -1;
    -webkit-animation: widgetPulse infinite 1.5s;
    animation: widgetPulse infinite 1.5s;
}
.b24-widget .b24-widget__button .chat-icon {
    display: block;
}
.b24-widget .b24-widget__button .close-icon {
    display: none;
    width: 16px;
    height: 16px;
}
.b24-widget .b24-widget__button.active {
    background-color: #ccc;
}
.b24-widget .b24-widget__button.active::before {
    background-color: rgba(0, 0, 0, .2);
}
.b24-widget .b24-widget__button.active .b24-widget__button-pulse {
    -webkit-animation: none;
    animation: none;
    border-color: #bbb;
}
.b24-widget .b24-widget__button.active .chat-icon {
    display: none;
}
.b24-widget .b24-widget__button.active .close-icon {
    display: block;
}
.b24-widget .b24-widget__list {
    margin-bottom: 30px;
    -webkit-transform: translateY(50%) scale(0.5);
    -ms-transform: translateY(50%) scale(0.5);
    transform: translateY(50%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.b24-widget .b24-widget__list li {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.b24-widget .b24-widget__list li:last-child {
    margin-bottom: 0;
}
.b24-widget .b24-widget__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.b24-widget .b24-widget__list li a img, .b24-widget .b24-widget__list li a svg {
    width: 100%;
    height: 100%;
}
.b24-widget .b24-widget__list li a:hover {
    -webkit-box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, .2);
}
.b24-widget.open {
    z-index: 12;
}
.b24-widget.open .b24-widget__list {
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

@-webkit-keyframes widgetPulse {
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

@keyframes widgetPulse {
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

.block-fixed {
    position: fixed;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 0;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
}
.block-fixed a {
    position: relative;
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #fff;
    z-index: 0;
}
.block-fixed a::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .2);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.block-fixed a:last-child {
    border-bottom: 0;
}
.block-fixed a .badge {
    position: absolute;
    top: 8px;
    right: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 1px 4px;
    min-width: 1.0625rem;
    min-height: 1.0625rem;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    background-color: #ff4f33;
}
.block-fixed a svg * {
    fill: #fff;
}
.block-fixed a:hover::before {
    opacity: 1;
    visibility: visible;
}

body[data-proposal-view="0"] .block-fixed {
    opacity: 1;
    visibility: visible;
}

.nav-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.nav-bottom__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav-bottom__list li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.nav-bottom__list li a {
    position: relative;
    font-size: .9rem;
    line-height: 1.2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 0;
    padding: 10px;
}
.nav-bottom__list li a::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .2);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.nav-bottom__list li a svg {
    margin-bottom: 5px;
}
.nav-bottom__list li a svg * {
    fill: #fff;
}
.nav-bottom__list li a span {
    display: block;
}
.nav-bottom__list li a .badge {
    position: absolute;
    top: 2px;
    right: 44%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 1px 4px;
    min-width: 1rem;
    min-height: 1rem;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    background-color: #ff4f33;
}
.nav-bottom__list li.active a::before {
    opacity: 1;
    visibility: visible;
}
.nav-bottom.js-hide {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
body.iphone-full .nav-bottom__list li a {
    padding: 10px 10px 20px;
}
.intl-tel-input {
    width: 100%;
}
.nav-bottom__buttons {
    position: fixed;
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, .09);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, .09);
}
.nav-bottom__buttons-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: -3px;
    margin-right: -3px;
}
.nav-bottom__buttons-list li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding-left: 3px;
    padding-right: 3px;
}
.nav-bottom__buttons-list li .btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
}

.filter-mobile {
    width: 320px;
    max-width: 80vw;
    -webkit-transition: opacity .4s cubic-bezier(.77, 0, .175, 1), visibility .4s cubic-bezier(.77, 0, .175, 1);
    -o-transition: opacity .4s cubic-bezier(.77, 0, .175, 1), visibility .4s cubic-bezier(.77, 0, .175, 1);
    transition: opacity .4s cubic-bezier(.77, 0, .175, 1), visibility .4s cubic-bezier(.77, 0, .175, 1);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.filter-mobile__wrap {
    position: absolute;
    right: -250px;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-width: 80vw;
    -webkit-transition: right .4s cubic-bezier(.77, 0, .175, 1);
    -o-transition: right .4s cubic-bezier(.77, 0, .175, 1);
    transition: right .4s cubic-bezier(.77, 0, .175, 1);
    background: #fff;
    -webkit-box-shadow: 5px 0 10px rgba(37, 53, 92, .2);
    box-shadow: 5px 0 10px rgba(37, 53, 92, .2);
    padding: 15px;
    overflow-y: auto;
}
.filter-mobile h4 {
    font-size: 22px;
}
.filter-mobile .close {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    margin-left: auto;
}
.filter-mobile .filter-form {
    overflow-y: auto;
    overflow-x: hidden;
    border: 0;
    height: 100%;
    max-height: calc(100% - 95px);
    margin-bottom: 0;
}
.filter-mobile .filter-form__item .collapse {
    margin-bottom: 0;
}
.filter-mobile .filter-form__item {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 16px;
}
.filter-mobile .filter-form__item:last-child {
    margin-bottom: 0;
}
.filter-mobile .filter-form__item .form-group {
    margin-bottom: 12px;
}
.filter-mobile .filter-form__item .form-group:last-child {
    margin-bottom: 0;
}
.filter-mobile .filter-form__item .form-group span {
    font-size: 15px;
    margin-left: 8px;
}
.filter-mobile .filter-form__item input[type="text"] {
    font-size: 16px;
    height: 42px;
}
.filter-mobile .filter-form__item input[type="text"]::-webkit-input-placeholder {
    font-size: 16px;
}
.filter-mobile .filter-form__item input[type="text"]::-moz-placeholder {
    font-size: 16px;
}
.filter-mobile .filter-form__item input[type="text"]:-ms-input-placeholder {
    font-size: 16px;
}
.filter-mobile .filter-form__item input[type="text"]::-ms-input-placeholder {
    font-size: 16px;
}
.filter-mobile .filter-form__item input[type="text"]::placeholder {
    font-size: 16px;
}
.filter-mobile .filter-form__item a[data-toggle="collapse"] {
    font-size: 15px;
}
.filter-mobile .filter-form__item a[data-toggle="collapse"].ope {
    margin-bottom: 8px;
}
.filter-mobile .filter-form__item label {
    font-size: 16px;
    margin-bottom: 8px;
}
.filter-mobile .filter-form__item label::before {
    top: 4px;
}
.filter-mobile .filter-form__item label::after {
    top: 0;
}
.filter-mobile .filter-mobile__buttons {
    position: absolute;
    background-color: #fff;
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 8px;
}
.filter-mobile .filter-mobile__buttons .btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: calc(50% - 5px);
    width: 100%;
    font-size: 14px;
    padding: 10px;
}
.filter-mobile.open {
    opacity: 1;
    visibility: visible;
}
.filter-mobile.open .filter-mobile__wrap {
    right: 0;
}

.modal-content {
    -webkit-box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
    box-shadow: 0 0 19px 1px rgba(0, 0, 0, .08);
    border-radius: 20px;
    background-color: #fff;
    border: 0;
}
.modal-header {
    border: 0;
}
.modal-header .modal-title {
    margin-bottom: 0;
}
.modal-header .close {
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    margin-left: auto;
}
.modal-title {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feedback-form {
    padding: 0 1rem 1rem;
}
.feedback-form h4 {
    text-align: center;
}
.feedback-form .sub-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.feedback-form .form-group {
    position: relative;
}
.feedback-form label {
    position: absolute;
    top: 10px;
    left: 12px;
    margin-bottom: 0;
}
.feedback-form label svg {
    width: 18px;
    height: 18px;
}
.feedback-form label svg * {
    fill: #000;
}
.feedback-form .form-control {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
    max-width: 100%;
    width: 100%;
    border: 1px solid #d3d9de;
    background-color: #fff;
    border-radius: 25rem;
    color: #000;
    padding-left: 40px;
    outline: none;
}
.feedback-form .form-control::-webkit-input-placeholder {
    color: #000;
    -webkit-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.feedback-form .form-control::-moz-placeholder {
    color: #000;
    -moz-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.feedback-form .form-control:-ms-input-placeholder {
    color: #000;
    -ms-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.feedback-form .form-control::-ms-input-placeholder {
    color: #000;
    -ms-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.feedback-form .form-control::placeholder {
    color: #000;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
}
.feedback-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.feedback-form .form-control:focus::-webkit-input-placeholder {
    opacity: .5;
}
.feedback-form .form-control:focus::-moz-placeholder {
    opacity: .5;
}
.feedback-form .form-control:focus:-ms-input-placeholder {
    opacity: .5;
}
.feedback-form .form-control:focus::-ms-input-placeholder {
    opacity: .5;
}
.feedback-form .form-control:focus::placeholder {
    opacity: .5;
}
.feedback-form .btn {
    -webkit-box-shadow: 0 2px 4px 1px rgba(34, 34, 34, .19);
    box-shadow: 0 2px 4px 1px rgba(34, 34, 34, .19);
}

.modal-xl .modal-header .close {
    position: absolute;
    top: 1.4375rem;
    right: 1.5rem;
    font-size: 2.125rem;
    z-index: 5;
}
.modal-xl .modal-body {
    padding: 2.8125rem 3.125rem 3.4375rem;
}
.modal-product__swiper {
    border: 1px solid rgba(34, 34, 34, .1);
}
.modal-product__swiper .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.modal-product__swiper-item {
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 1rem;
}
.modal-product__swiper-item img {
    width: 100%;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal-product__swiper-item .sale {
    position: absolute;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ff0000;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    top: 10px;
    right: 10px;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
.modal-product__swiper .swiper-button-prev, .modal-product__swiper .swiper-button-next {
    color: #fff;
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 16, .5);
    border-radius: 3px;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    outline: none;
}
.modal-product__swiper .swiper-button-prev::after, .modal-product__swiper .swiper-button-next::after {
    font-size: .8rem;
    font-weight: 700;
}
.modal-product__swiper .swiper-button-prev {
    left: 15px;
}
.modal-product__swiper .swiper-button-next {
    right: 15px;
}
.modal-product__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.modal-product__info .title-link {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: calc(100%);
}
.modal-product__info .title-link:hover {
    color: #333;
    text-decoration: underline !important;
}
.modal-product__info .text-stock p {
    font-family: 'Ubuntu Medium', sans-serif;
    font-weight: 500;
    font-size: .9375rem;
    margin-bottom: 0;
}
.modal-product__info .text-stock em {
    font-size: .9375rem;
    font-style: normal;
}
.modal-product__info .price-wholesale,
.modal-product__info .price-retail {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}
.modal-product__info .price-retail span {
    font-size: 70%;
}
.modal-product__info .details-toggler {
    display: inline-block;
    font-size: 14px;
    margin-top: 6px;
    color: inherit;
}
.modal-product__info .details-toggler:hover {
    text-decoration: underline !important;
}
.modal-product__info .price-retail del {
    display: block;
    color: #9f9f9f;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3125rem;
    font-weight: 400;
    margin-bottom: .9375rem;
}
.modal-product__details {
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5625rem;
    margin-top: .9375rem;
}
.modal-product__details b {
    font-size: .8125rem;
    margin-bottom: 2px;
}
.modal-product__details ul li {
    font-size: .8125rem;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.modal-product__details ul li span {
    display: inline-block;
}
.modal-product__details ul li .dotted {
    position: relative;
}
.modal-product__details ul li .dotted::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 4px;
    width: 98%;
    border-bottom: .0625rem dotted #000;
}
.modal-product__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1rem;
}
.modal-product__buttons .btn {
    height: 40px;
    padding: .375rem 1.5625rem;
    margin-left: .625rem;
}
.modal-product__buttons .btn:first-child {
    margin-left: 0;
}
.modal-product__buttons .theme-btn-out {
    border-width: 2px;
    border-style: solid;
}
.modal-product__buttons .favorites {
    margin-left: 1.75rem;
}
.modal-product__buttons .favorites.active svg * {
    fill: #f51f1f;
}
.modal-product__buttons .favorites svg * {
    fill: rgba(0, 0, 0, .5);
}
.modal-contacts {
    padding: 0 1.2rem 1.2rem;
}
.modal-contacts .contacts-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.modal-contacts .contacts-list li:last-child {
    margin-bottom: 0;
}
.modal-contacts .contacts-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 5px;
}
.modal-contacts .contacts-list li a:last-child {
    margin-bottom: 0;
}
.modal-contacts .contacts-list li a svg {
    margin-top: 5px;
    margin-right: 8px;
}
.modal-contacts .contacts-list li a:hover {
    text-decoration: underline !important;
}
.modal-checkout__form {
    padding: 0 1rem 1rem;
}
.modal-checkout__form p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
}
.modal-checkout__form p strong {
    font-size: 112%;
}
.modal-checkout__form .tick-tack {
    display: block;
    font-size: 13px;
    text-align: center;
    padding: 0 5px;
    margin-top: 8px;
    margin-bottom: 5px;
}
.modal-checkout__form .btn {
    margin-top: 30px;
}
.modal-product-question__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
}
.modal-product-question__header img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    min-height: 90px;
    max-height: 110px;
    border: 1px solid rgba(34, 34, 34, .1);
    background-color: #fff;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 5px;
    margin-right: 12px;
}
.modal-product-question__header > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 14px;
    padding-top: 8px;
}
.modal-product-question__header p {
    font-size: 14px;
    margin-bottom: 4px;
}

.form-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 24px;
}

.modal-message__header, .modal-product-question__header, .modal-short-order__header {
    position: relative;
    z-index: 0;
    padding: 1rem;
    margin-bottom: 1rem;
}
.modal-message__header::before, .modal-product-question__header::before, .modal-short-order__header::before {
    content: '';
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .1;
    z-index: -1;
    pointer-events: none;
}
.modal-message__header p {
    margin-bottom: 10px;
}
.modal-message .contacts-list li {
    font-size: 14px;
    margin-bottom: 8px;
}
.modal-message .contacts-list li:last-child {
    margin-bottom: 0;
}
.modal-message .contacts-list li svg {
    margin-right: 2px;
}
.modal-short-order__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.modal-short-order__header img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    max-height: 110px;
    border: 1px solid rgba(34, 34, 34, .1);
    background-color: #fff;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 5px;
    margin-right: 12px;
}
.modal-short-order__header > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 5px;
}
.modal-short-order__header p {
    font-size: 13px;
    margin-bottom: 8px;
}
.modal-short-order__form p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
}
.modal-short-order__form p strong {
    font-size: 112%;
}
.modal-short-order__form .tick-tack {
    display: block;
    font-size: 13px;
    text-align: center;
    padding: 0 5px;
    margin-top: 8px;
    margin-bottom: 5px;
}
.modal-short-order__form .btn {
    margin-top: 30px;
}

.display-none {
    display: none;
}

.form-control.is-valid, .was-validated .form-control:valid,
.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none;
    padding-right: .75rem;
}

.btn-month {
    padding: .3rem 0 !important;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem !important;
    width: 35px;
    text-align: center;
    margin-right: 10px !important;
    margin-bottom: 10px !important;
    color: white;
}
.btn-month:hover {
    color: #fff;
}
.btn-month.active {
    opacity: 0.5;
}
.btn-month input {
    display: none;
}

#installment-initially {
    height: 31px;
}

#toast-container > div.toast {
    background-image: none !important;
    -webkit-box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .16);
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .16);
    border-radius: .25rem;
    font-size: 15px;
    padding: 16px 24px;
    -webkit-transition: .2s ease box-shadow;
    -o-transition: .2s ease box-shadow;
    transition: .2s ease box-shadow;
}
#toast-container > div.toast:hover {
    -webkit-box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .32);
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, .32);
}
.toast-top-center {
    top: 4px !important;
}


/*media-queries*/
@media (min-width: 576px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl .slider-container {
        max-width: 540px;
    }

    .d-sm-table-cell{
        display: table-cell !important;
    }

    .flex-sm-column-initial {
        -webkit-box-orient: initial !important;
        -webkit-box-direction: initial !important;
        -ms-flex-direction: initial !important;
        flex-direction: initial !important;
    }

    .text-overflow-sm-one-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }
    .text-overflow-sm-two-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }
    .text-overflow-sm-three-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }

    /*showcase*/
    body[data-container="1200"] .proposal-type-1 .product-item__footer .links .btn {
        font-size: 12px;
    }
    /*showcase*/

    body[data-container="1400"] .container, body[data-container="1400"] .container-lg,
    body[data-container="1400"] .container-md, body[data-container="1400"] .container-sm,
    body[data-container="1400"] .container-xl, body[data-container="1400"] .slider-container {
        max-width: 100%;
    }

    body[data-container="1700"] .container, body[data-container="1700"] .container-lg,
    body[data-container="1700"] .container-md, body[data-container="1700"] .container-sm,
    body[data-container="1700"] .container-xl, body[data-container="1700"] .slider-container {
        max-width: 100%;
    }

    .hero-swiper .swiper-slide__wrap[data-slider-caption="1"] {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .hero-swiper .swiper-slide__wrap[data-slider-caption="2"] {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .hero-swiper .swiper-slide__wrap[data-slider-caption="3"] {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

}
@media (min-width: 768px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .slider-container {
        max-width: 720px;
    }

    .text-overflow-md-one-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }
    .text-overflow-md-two-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }
    .text-overflow-md-three-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }

}
@media (min-width: 992px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .slider-container {
        max-width: 1140px;
    }

    .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto, .col-lg-20, .col-lg-80, .col-xl-012, .col-xl-88 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .w-lg-initial{
        width: initial !important;
    }

    .text-overflow-lg-one-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }
    .text-overflow-lg-two-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }
    .text-overflow-lg-three-line {
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-width: calc(100%);
    }

    .header-search {
        display: none;
    }
    .header__hamburger, .burger-menu {
        display: none;
    }

    /*showcase*/
    .proposal-type-1 .products-wrap {
        margin-left: -3px;
        margin-right: -3px;
    }
    .proposal-type-1 .product-item__parent {
        padding-left: 3px;
        padding-right: 3px;
        margin-bottom: 6px;
    }
    body[data-container="1400"] .proposal-type-1 .products-wrap {
        margin-left: -3px;
        margin-right: -3px;
    }
    body[data-container="1400"] .proposal-type-1 .product-item__parent {
        padding-left: 3px;
        padding-right: 3px;
        margin-bottom: 6px;
    }
    .proposal-type-1 .product-item__header .over-btn {
        font-size: 13px;
        background-color: rgba(0, 0, 0, .6);
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        height: 35px;
        right: 0;
        left: 0;
        bottom: 8px;
        padding: 8px 10px;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s, opacity .25s, background-color .3s, -webkit-transform .25s;
    }
    body[data-container="1200"] .proposal-type-1 .product-item__header .over-btn {
        font-size: 12px;
        height: 32px;
    }
    .proposal-type-1 .product-item__header .over-btn:hover {
        background-color: rgba(0, 0, 0, .8);
    }
    .proposal-type-1 .product-item__header:hover .over-btn {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .proposal-type-2 .products-wrap {
        margin-left: -3px;
        margin-right: -3px;
    }
    .proposal-type-2 .product-item__parent {
        padding-left: 3px;
        padding-right: 3px;
        margin-bottom: 6px;
    }
    body[data-container="1400"] .proposal-type-2 .products-wrap {
        margin-left: -3px;
        margin-right: -3px;
    }
    body[data-container="1400"] .proposal-type-2 .product-item__parent {
        padding-left: 3px;
        padding-right: 3px;
        margin-bottom: 6px;
    }
    .proposal-type-2 .product-item__header .over-btn {
        font-size: 13px;
        background-color: rgba(0, 0, 0, .6);
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        height: 35px;
        right: 0;
        left: 0;
        bottom: 8px;
        padding: 8px 10px;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s, opacity .25s, background-color .3s, -webkit-transform .25s;
    }
    body[data-container="1200"] .proposal-type-2 .product-item__header .over-btn {
        font-size: 12px;
        height: 32px;
    }
    .proposal-type-2 .product-item__header .over-btn:hover {
        background-color: rgba(0, 0, 0, .8);
    }
    .proposal-type-2 .product-item__header:hover .over-btn {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    /*showcase*/

    .sidebar-item .arrow {
        display: none;
    }
    .sidebar-link__list, .filter-form {
        display: block !important;
    }

    .modal-lg .modal-product-question__header p {
        font-size: 14px;
    }
    .modal-lg .modal-short-order__header p {
        font-size: 14px;
    }

    .filter-mobile__list__wrap {
        display: none;
    }

    .nav-bottom {
        display: none;
    }
    .nav-bottom__buttons {
        display: none;
    }

}
@media (min-width: 1025px) {

    /*showcase*/
    .proposal-type-1 .products-wrap {
        margin-left: -5px;
        margin-right: -5px;
    }
    .proposal-type-1 .product-item__parent {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    body[data-container="1400"] .proposal-type-1 .products-wrap {
        margin-left: -6px;
        margin-right: -6px;
    }
    body[data-container="1400"] .proposal-type-1 .product-item__parent {
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 12px;
    }

    .proposal-type-2 .products-wrap {
        margin-left: -5px;
        margin-right: -5px;
    }
    .proposal-type-2 .product-item__parent {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    body[data-container="1400"] .proposal-type-2 .products-wrap {
        margin-left: -6px;
        margin-right: -6px;
    }
    body[data-container="1400"] .proposal-type-2 .product-item__parent {
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 12px;
    }
    /*showcase*/

}
@media (min-width: 1200px) {

    body[data-container="1400"] .container, body[data-container="1400"] .container-lg,
    body[data-container="1400"] .container-md, body[data-container="1400"] .container-sm,
    body[data-container="1400"] .container-xl, body[data-container="1400"] .slider-container {
        max-width: 1300px;
    }

    .modal-full .modal-dialog {
        max-width: 1140px;
    }

}
@media (min-width: 1600px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .slider-container {
        max-width: 1200px;
    }

    body[data-container="1400"] .container, body[data-container="1400"] .container-lg,
    body[data-container="1400"] .container-md, body[data-container="1400"] .container-sm,
    body[data-container="1400"] .container-xl, body[data-container="1400"] .slider-container {
        max-width: 1400px;
    }

    body[data-container="1700"] .container, body[data-container="1700"] .container-lg,
    body[data-container="1700"] .container-md, body[data-container="1700"] .container-sm,
    body[data-container="1700"] .container-xl, body[data-container="1700"] .slider-container {
        max-width: 1700px;
    }

    body[data-container="1700"] .sidebar__parent {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
        flex: 0 0 17%;
        max-width: 17%;
    }
    body[data-container="1700"] .sidebar-content__parent {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83%;
        flex: 0 0 83%;
        max-width: 83%;
    }

}

@media (max-width: 1440px) {

    section{
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .btn{
        font-size: .95rem;
    }

    body[data-container="1200"] .more-btn{
        font-size: 14px;
        height: 45px;
        padding: 8px 34px;
        margin-top: 24px;
    }

    h2{
        margin-bottom: 24px;
    }
    body[data-container="1200"] h2{
        font-size: 1.6rem;
    }
    h5{
        font-size: 1.25rem;
    }

    .sub-title{
        font-size: 1.2rem;
    }

    .hero-swiper .swiper-slide{
        height: 400px;
    }
    .hero-swiper .swiper-slide h1{
        font-size: 1.8rem;
    }

    .swiper-about-sm .swiper-slide img{
        min-height: 250px;
        max-height: 250px;
    }

    /*showcase*/
    body[data-container="1200"] .proposal-type-1 .product-item__header {
        min-height: 146px;
        max-height: 146px;
    }
    .proposal-type-1 .product-item__swiper-item img {
        width: 170px;
        height: 170px;
    }
    body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 142px;
        height: 142px;
    }
    .proposal-type-1 .product-item__header span {
        font-size: .8rem;
        padding: .25rem .5rem;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        font-size: 12px;
        line-height: 1;
    }

    body[data-container="1200"] .proposal-type-2 .product-item__header {
        min-height: 146px;
        height: 146px;
    }
    .proposal-type-2 .product-item__swiper-item img {
        width: 160px;
        height: 160px;
    }
    .proposal-type-2 .product-item__header .product-item__sale, .proposal-type-2 .product-item__header .status {
        font-size: 12px;
        padding: 4px 8px;
    }
    .proposal-type-2 .product-item__footer .theme-btn {
        height: 36px;
        padding: 6px 16px;
    }
    .proposal-type-2 .product-item__footer .theme-btn-icon {
        width: 36px;
        height: 36px;
    }
    /*showcase*/

    .products-about__accordion .accordion-item{
        margin-bottom: 5px;
    }
    .products-about__accordion .accordion-link{
        padding: 10px 15px;
    }
    .products-about__accordion .accordion-link .accordion-icon{
        width: 30px;
        height: 30px;
    }
    .products-about__accordion .accordion-link .accordion-icon::before{
        width: 10px;
    }
    .products-about__accordion .accordion-link .accordion-icon::after{
        height: 10px;
    }
    .products-about__accordion .accordion-content .characteristics-list li strong{
        font-size: 14px;
    }
    .products-about__accordion .accordion-content h6{
        margin-bottom: 10px;
    }

    /*category*/
    .category-type-1 .category-item__body img {
        min-height: 180px;
        max-height: 180px;
    }
    body[data-container="1200"] .category-type-1 .category-item__body img {
        min-height: 140px;
        max-height: 140px;
    }

    .category-type-2 .category-item {
        background-size: 120px;
        padding: 20px 130px 25px 20px;
        min-height: 160px;
    }
    .category-type-2 .category-item p {
        line-height: 1.5;
    }

    .category-type-3 .category-item {
        padding: 8px;
    }
    .category-type-3 .category-item__img img {
        height: 80px;
    }
    .category-type-3 .category-item p {
        margin-bottom: 0 !important;
    }
    .category-type-3 .category-item span {
        font-size: .85rem;
    }

    .category-type-4 .category-item {
        padding: 16px;
    }
    .category-type-4 .category-item img {
        width: 140px;
        height: 140px;
    }
    .category-type-4 .category-item p {
        font-size: .9rem;
    }
    /*category*/

    body[data-container="1200"] .about .company-info h2 {
        margin-bottom: 10px;
    }

    .call-request-bg {
        height: calc(100% + 40px) !important;
    }
    .call-request img, .call-request svg {
        width: 80px;
        height: 80px;
    }
    .call-request h3 {
        font-size: 2rem;
    }

    /*advantages*/
    .advantages-item svg {
        width: 85px;
        height: 85px;
    }
    .advantages-item h5 {
        font-size: 1rem;
    }
    .advantages-item__header svg {
        width: 50px;
        height: 50px;
    }
    /*advantages*/

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item img {
        height: 260px;
    }
    body[data-container="1200"] .photo-gallery-type-1 .photo-gallery__item img {
        height: 240px;
    }

    .photo-gallery-type-2 .photo-gallery__item img {
        height: 260px;
    }
    body[data-container="1200"] .photo-gallery-type-2 .photo-gallery__item img {
        height: 240px;
    }

    .photo-gallery-type-3 .photo-gallery__item-parent::after {
        right: 16px;
        bottom: 16px;
    }
    .photo-gallery-type-3 .photo-gallery__item img {
        height: 320px;
    }
    .photo-gallery-type-3 .photo-gallery__item p {
        font-size: 14px;
        line-height: 1.4;
        bottom: 16px;
    }
    /*photo-gallery*/

    /*documents*/
    .documents-type-1 .documents-item__overlay h6 {
        font-size: 1rem;
    }
    /*documents*/

    /*map*/
    .contact-type-1 .map {
        height: 450px;
    }
    .contact-type-1 .map-container {
        min-height: 400px;
    }
    .contact-type-1 .map-block {
        padding: 2rem;
    }
    .contact-type-4 .map {
        height: 450px;
    }
    .contact-type-4 .map-container {
        min-height: 400px;
    }
    .contact-type-4 .map-block {
        padding: 2rem;
    }
    .map-block h5 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    .map-contacts__list li {
        margin-bottom: 15px;
    }
    .map-contacts__list li h6 {
        font-size: 1rem;
    }
    .map-contacts__list li a, .map-contacts__list li p {
        font-size: .9rem;
    }

    .contact-type-2 .map {
        height: 500px;
    }
    .contact-type-2 .map-container {
        padding: 80px;
    }
    .contact-type-2 .map-block {
        width: initial;
        margin: 0;
    }

    .contact-type-3 .map {
        height: 370px;
    }
    /*map*/

    /*promotions*/
    .shares-type-1 .promotions-item__header {
        min-height: 220px;
        max-height: 220px;
    }

    .shares-type-3 .promotions-item__img img {
        height: 360px;
    }
    .shares-type-3 .promotions-item__content {
        min-height: 240px;
    }
    .shares-type-3 .promotions-item__content .date {
        font-size: 13px;
    }

    .shares-type-4 .promotions-item__img img {
        height: 300px;
    }
    /*promotions*/

    .single-blog__about-item {
        padding: 1.2rem;
    }

    .filter-form__item .btn {
        font-size: .8rem;
    }

    .basket-item__info .basket-item__about .title-link, .basket-item__counter h6, .basket-item__price h6 {
        font-size: .95rem;
    }
    .basket-item__info .basket-item__about .text-stock span {
        margin-left: 15px;
    }
    .basket-item__info .basket-item__about .price-retail .text-discount {
        font-size: .8rem;
        margin-right: 10px;
    }
    .basket-item__counter .nice-number input {
        font-size: 1rem;
    }
    .basket-item__price del {
        font-size: .95rem;
    }

    .total-price__info {
        padding: 1.5rem;
    }
    .total-price__item p {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .total-price__item strong {
        font-size: 1.1rem;
    }

    .page-404::before {
        width: 140px;
        height: 140px;
    }
    .page-404::after {
        width: 70px;
        height: 70px;
        top: 90px;
    }
    .page-404__title {
        font-size: 142px;
    }
    .page-404__sub-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .page-404__text-info {
        font-size: 16px;
    }
    .preview-image .img,
    .preview-image img  {
        max-height: 320px;
    }

}
@media (max-width: 1280px) {

    ul li {
        font-size: .95rem;
    }

    h2 {
        font-size: 1.8rem;
    }
    h6 {
        font-size: 1rem;
    }
    .sub-title {
        font-size: 1.1rem;
    }
    p {
        font-size: .95rem;
    }

    .hero-swiper .swiper-slide .sub-title {
        margin-bottom: 2rem;
    }

    /*showcase*/
    .proposal-type-1 .product-item__header {
        min-height: 170px;
        max-height: 170px;
    }
    .proposal-type-1 .product-item__swiper-item img {
        width: 156px;
        height: 156px;
    }
    body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 140px;
        height: 140px;
    }

    .proposal-type-2 .product-item__header {
        min-height: 170px;
        height: 170px;
    }
    .proposal-type-2 .product-item__swiper-item img {
        width: 150px;
        height: 150px;
    }
    body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
        width: 140px;
        height: 140px;
    }
    /*showcase*/

    /*category*/
    .category-type-1 .category-item__header {
        min-height: 90px;
    }
    .category-type-1 .category-item__body img {
        min-height: 160px;
        max-height: 160px;
    }
    /*category*/

    .call-request-bg {
        height: calc(100% + 49px) !important;
    }
    .call-request h3 {
        font-size: 1.8rem;
    }

    /*advantages*/
    .advantages-item svg {
        width: 75px;
        height: 75px;
    }
    .advantages-item h5 {
        font-size: 1rem;
    }
    /*advantages*/

    /*documents*/
    .documents-type-1 .documents-item img {
        height: 280px;
    }

    .documents-type-2 .documents-item img {
        height: 280px;
    }
    /*documents*/

    /*map*/
    .contact-type-2 .map {
        height: 460px;
    }
    .contact-type-2 .map-container {
        padding: 70px;
    }
    /*map*/

    /*promotions*/
    .shares-type-1 .promotions-item__body .date {
        font-size: .8rem;
    }
    .shares-type-1 .promotions-item__body .title-link {
        font-size: .9rem;
        line-height: 1.4;
    }
    .shares-type-1 .promotions-item__body p {
        font-size: .85rem;
    }

    .shares-type-2 .promotions-item__body .date {
        font-size: .8rem;
    }
    .shares-type-2 .promotions-item__body .title-link {
        font-size: .9rem;
        line-height: 1.4;
    }
    .shares-type-2 .promotions-item__body p {
        font-size: .85rem;
    }
    /*promotions*/

}
@media (max-width: 1024px) {

    .hero-swiper .swiper-slide {
        height: 370px;
    }

    /*showcase*/
    .proposal-type-1 .product-item__header {
        min-height: 160px;
        max-height: 160px;
    }
    .proposal-type-1 .product-item__swiper-item img {
        width: 146px;
        height: 146px;
    }
    .proposal-type-1 .product-item__header .over-btn {
        font-size: 12px;
        height: 32px;
    }
    .proposal-type-1 .product-item__body .price-retail, .proposal-type-1 .product-item__body .price-wholesale {
        font-size: .9rem;
    }

    .proposal-type-2 .product-item__header {
        min-height: 150px;
        height: 150px;
    }
    .proposal-type-2 .product-item__swiper-item img {
        width: 130px;
        height: 130px;
    }
    .proposal-type-2 .product-item__header .over-btn {
        font-size: 12px;
        height: 32px;
    }
    .proposal-type-2 .product-item__name {
        font-size: 13px;
    }
    .proposal-type-2 .product-item__stock {
        font-size: 13px;
    }
    .proposal-type-2 .product-item .price-retail {
        font-size: 14px;
    }
    .proposal-type-2 .product-item .price-retail del {
        font-size: 13px;
    }
    .proposal-type-2 .product-item__footer .theme-btn {
        font-size: 12px;
        padding: 5px 8px;
    }
    .proposal-type-2 .product-item__footer .theme-btn-icon svg {
        width: 16px;
        height: 16px;
    }
    /*showcase*/

    .about-swiper .swiper-slide img {
        min-height: 275px;
        max-height: 275px;
    }

    /*category*/
    .category-type-1 .category-item__header {
        padding: .5rem .5rem 1rem;
    }
    .category-type-1 .category-item__body {
        padding: 0 .5rem .5rem;
    }
    .category-type-1 .category-item__body img {
        min-height: 150px;
        max-height: 150px;
    }

    .category-type-2 .category-item {
        background-size: 100px;
        padding: 16px 80px 20px 16px;
        min-height: 150px;
    }

    .category-type-3 .category-item__img img {
        height: 62px;
    }

    .category-type-4 .category-item img {
        width: 140px;
        height: 110px;
    }
    /*category*/

    /*advantages*/
    .advantages-item p {
        font-size: .8rem;
    }

    .advantages-type-2 .advantages-item {
        padding: 24px;
    }
    /*advantages*/

    /*documents*/
    body[data-container="1200"] .documents-type-1 .documents-item img {
        height: 250px;
    }

    body[data-container="1200"] .documents-type-2 .documents-item img {
        height: 250px;
    }
    /*documents*/

    /*map*/
    .contact-type-1 .map {
        height: 400px;
    }
    .contact-type-1 .map-container {
        width: 450px;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
        left: 10%;
    }
    .contact-type-1 .map-block {
        padding: 1.5rem;
    }
    .contact-type-4 .map {
        height: 400px;
    }
    .contact-type-4 .map-container {
        width: 450px;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
        right: 10%;
    }
    .contact-type-4 .map-block {
        padding: 1.5rem;
    }
    .map-block h5 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .map-contacts__list li {
        margin-bottom: 1rem;
    }
    .map-contacts__list li h6 {
        font-size: .9rem;
    }
    .map-contacts__list li a, .map-contacts__list li p {
        font-size: .8rem;
    }
    .map-block .btn {
        font-size: 13px;
        height: 40px;
    }

    .contact-type-2 .map {
        height: 420px;
    }
    .contact-type-2 .map-container{
        padding: 60px;
    }

    .contact-type-3 .map {
        height: 320px;
    }
    /*map*/

    /*news*/
    .news-type-1 .news-item-lg .date {
        font-size: .8rem;
    }
    .news-type-1 .news-item-lg p {
        font-size: .9rem;
    }
    .news-type-1 .news-item__header {
        min-height: 160px;
        max-height: 160px;
    }
    body[data-container="1200"] .news-type-1 .news-item__header {
        min-height: 140px;
        max-height: 140px;
    }
    .news-type-1 .news-item__body .title-link {
        line-height: 1.3;
        margin-bottom: .5rem;
    }

    .news-type-2 .news-item__header {
        min-height: 260px;
        max-height: 260px;
    }

    .news-type-3 .news-item__header {
        height: 270px;
    }
    .news-type-3 .news-item__body {
        height: 100px;
        padding: 16px;
    }
    .news-type-3 .news-item__title {
        font-size: 16px;
        margin-top: 8px;
    }
    /*news*/

    /*promotions*/
    .shares-type-1 .promotions-item__header {
        min-height: 190px;
        max-height: 190px;
    }
    .shares-type-1 .promotions-item__body .title-link {
        line-height: 1.3;
        margin-bottom: .5rem;
    }

    .shares-type-2 .promotions-item__header {
        min-height: 230px;
        max-height: 230px;
    }

    .shares-type-3 .promotions-item__img img {
        height: 320px;
    }
    .shares-type-3 .promotions-item__content {
        min-height: 220px;
        padding: 40px 30px;
    }
    .shares-type-3 .promotions-item__title {
        font-size: 1rem;
    }

    .shares-type-4 .promotions-item__img img {
        height: 240px;
    }
    .shares-type-4 .promotions-item .date {
        top: 12px;
        right: 12px;
        font-size: 12px;
    }
    .shares-type-4 .promotions-item__content {
        padding: 24px;
    }
    .shares-type-4 .promotions-item__title {
        font-size: 1rem;
    }
    .shares-type-4 .promotions-item__content p {
        font-size: .86rem;
    }
    /*promotions*/

    .call-request-bg {
        height: calc(100% + 66px) !important;
    }

    body[data-container="1200"] .call-request h3 {
        font-size: 1.6rem;
    }

    .basket-item__info {
        padding-left: 5px;
        padding-right: 5px;
    }
    .basket-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
        min-height: 80px;
        max-height: 80px;
    }
    .basket-item__info{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        max-width: 90%;
    }

    .basket-item__info .basket-item__about .title-link, .basket-item__counter h6, .basket-item__price h6 {
        font-size: .9rem;
    }
    .basket-item__info .basket-item__about{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%;
    }
    .basket-item__counter .input-group{
        width: 130px;
        height: 36px;
    }
    .basket-item__counter .input-group button{
        width: 34px;
    }
    .basket-item .close-btn {
        width: 32px;
        height: 32px;
        top: 4px;
        right: 4px;
    }
    .basket-item .favorites {
        width: 32px;
        height: 32px;
        top: 40px;
        right: 4px;
    }

    .total-price__info {
        padding: 1.2rem;
    }
    .total-price__item p {
        font-size: .95rem;
    }
    .total-price__item strong {
        font-size: 1rem;
    }

    .checkout .data-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .checkout .cart-proposal .img {
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
        margin-bottom: 7px;
    }
    .checkout .cart-proposal.d-flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .checkout .cart-proposal.d-flex .flex-grow-1 {
        width: 100%;
    }
    .checkout .cart-proposals__wrap .btn {
        font-size: 13px;
    }

    .filter-form__item {
        padding: 1rem;
    }
    .filter-form__item .btn {
        padding: 10px;
    }

    .category-element__header {
        height: 180px;
    }

    .products-inner__info h3 {
        font-size: 32px;
    }
    .products-inner__info .text-stock p, .products-inner__info .text-stock em {
        font-size: .9rem;
    }
    .products-inner__info .price-retail {
        font-size: 1.8rem;
    }
    .products-inner__info del {
        font-size: .95rem;
    }
    .products-inner__info .buttons .btn {
        height: 35px;
        margin-right: 10px;
        padding: 10px 15px;
    }

    .page-404::before {
        width: 120px;
        height: 120px;
    }
    .page-404::after {
        width: 60px;
        height: 60px;
    }
    .page-404__title {
        font-size: 132px;
    }
    .page-404__sub-title {
        font-size: 24px;
    }
    .page-404__text-info {
        font-size: 15px;
    }

}
@media (max-width: 991px) {

    section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto, .col-lg-20, .col-lg-80 {
        padding-right: 6px;
        padding-left: 6px;
    }

    .captcha-wrapper input{
        max-width: initial;
    }

    ul li {
        font-size: 16px;
    }

    .btn-month {
        margin-right: 8px !important;
        margin-bottom: 8px !important;
    }

    .sub-title {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    .all-news {
        background-color: transparent;
        width: initial;
        margin-left: -5px;
        margin-right: -5px;
        padding: 0;
    }

    /*showcase*/
    .proposal-type-1 .product-item__parent {
        margin-bottom: 12px;
    }
    .proposal-type-1 .product-item__header {
        min-height: 220px;
        max-height: 220px;
    }
    body[data-container="1200"] .proposal-type-1 .product-item__header {
        min-height: 186px;
        max-height: 186px;
    }
    .proposal-type-1 .product-item__header .favorites svg {
        width: 22px;
        height: 22px;
    }
    .proposal-type-1 .product-item__header .over-btn {
        display: none;
    }
    .proposal-type-1 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 176px;
        height: 176px;
    }
    .proposal-type-1 .product-item__body p {
        font-size: 14px;
    }
    .proposal-type-1 .product-item__body .price-retail, .proposal-type-1 .product-item__body .price-wholesale {
        width: 100%;
        font-size: 16px;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        font-size: 14px;
        height: 45px;
    }
    body[data-container="1200"] .proposal-type-1 .product-item__footer .links .btn {
        height: 38px;
    }

    .proposal-type-2 .product-item__parent {
        margin-bottom: 12px;
    }
    .proposal-type-2 .product-item__header {
        min-height: 220px;
        height: 220px;
    }
    body[data-container="1200"] .proposal-type-2 .product-item__header {
        min-height: 186px;
        height: 186px;
    }
    .proposal-type-2 .product-item__header .favorites svg {
        width: 22px;
        height: 22px;
    }
    .proposal-type-2 .product-item__header .over-btn {
        display: none;
    }
    .proposal-type-2 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
        width: 176px;
        height: 176px;
    }
    .proposal-type-2 .product-item__header .product-item__sale, .proposal-type-2 .product-item__header .status {
        font-size: 13px;
        padding: 5px 10px;
    }
    .proposal-type-2 .product-item__name {
        font-size: 14px;
    }
    .proposal-type-2 .product-item__stock {
        font-size: 14px;
    }
    .proposal-type-2 .product-item .price-retail {
        font-size: 16px;
    }
    .proposal-type-2 .product-item .price-retail del {
        font-size: 14px;
    }
    .proposal-type-2 .product-item__footer .theme-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
    .proposal-type-2 .product-item__footer .theme-btn-icon svg {
        width: 18px;
        height: 18px;
    }
    /*showcase*/

    .about-wrap > div {
        margin-bottom: 20px;
    }
    .about-wrap > div:last-child {
        margin-bottom: 0;
    }
    .about .company-info {
        max-width: 100%;
    }
    .about-swiper .swiper-slide img {
        min-height: 405px;
        max-height: 405px;
    }

    /*category*/
    .category-type-1 .category-item__parent {
        margin-bottom: 12px;
    }
    .category-type-1 .category-item__header p, .category-element__body p {
        font-size: 16px;
    }
    .category-type-1 .category-item__body img {
        min-height: 220px;
        max-height: 220px;
    }

    .category-type-2 .category-item__parent {
        margin-bottom: 12px;
    }
    .category-type-2 .category-item {
        padding: 16px 120px 20px 16px;
        min-height: 160px;
    }

    .category-type-3 .category-item__parent {
        margin-bottom: 12px;
    }
    .category-type-3 .category-item__img img {
        height: 80px;
    }

    .category-type-4 .category-item img {
        width: 150px;
        height: 130px;
    }
    /*category*/

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item-parent {
        margin-bottom: 12px;
    }

    .photo-gallery-type-2 .photo-gallery__item-parent {
        margin-bottom: 12px;
    }

    .photo-gallery-type-3 .photo-gallery__item-parent::after {
        display: none;
    }
    /*photo-gallery*/

    .call-request {
        /*padding-top: 40px;*/
        /*padding-bottom: 40px;*/
    }
    .call-request-bg {
        display: none;
    }
    .call-request__wrap .theme-bg-color-svg {
        margin-right: 20px;
    }
    .call-request img, .call-request svg {
        width: 90px;
        height: 90px;
    }
    .call-request h3 {
        font-size: 32px;
        line-height: 1.3;
        max-width: calc(100% - 150px);
    }
    .call-request .btn {
        margin: 34px auto 0 0;
    }

    /*documents*/
    .documents-type-1 .documents-item__parent {
        margin-bottom: 12px;
    }
    .documents-type-1 .documents-item .documents-item__overlay {
        bottom: 0;
    }

    .documents-type-2 .documents-item__parent {
        margin-bottom: 12px;
    }
    /*documents*/

    /*advantages*/
    .advantages-item svg {
        width: 85px;
        height: 85px;
    }
    .advantages-item h5 {
        font-size: 18px;
    }
    .advantages-item p {
        font-size: 16px;
    }

    .advantages-type-1 .advantages-item__parent {
        margin-bottom: 12px;
    }

    .advantages-type-4 .advantages-item__parent {
        margin-bottom: 12px;
    }
    /*advantages*/

    /*map*/
    .contact-type-1 .map-container {
        left: 15%;
    }
    body[data-container="1200"] .contact-type-1 .map-container {
        width: 500px;
    }
    .contact-type-4 .map-container {
        right: 15%;
    }
    body[data-container="1200"] .contact-type-4 .map-container {
        width: 500px;
    }
    .map-block h5 {
        font-size: 20px;
    }
    .map-contacts__list li h6 {
        font-size: 16px;
    }
    .map-contacts__list li a, .map-contacts__list li p {
        font-size: 14px;
    }
    .map-block .btn {
        font-size: 12px;
    }

    .contact-type-2 .map {
        height: 400px;
    }
    .contact-type-2 .map-container {
        width: 90%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        transform: translateY(-150px);
        margin: 0 auto -150px;
        padding: 60px 100px;
    }
    .contact-type-2 .map-contacts__list li {
        margin-bottom: .5rem;
    }
    /*map*/

    /*news*/
    .news-type-1 .news-item-lg__parent {
        margin-bottom: 12px;
    }
    .news-type-1 .news-item-lg {
        min-height: 360px;
    }
    .news-type-1 .news-item-lg::before {
        background-color: rgba(0, 0, 0, .7);
    }
    .news-type-1 .news-item-lg .date {
        font-size: 13px;
    }
    .news-type-1 .news-item__parent {
        margin-bottom: 12px;
    }
    .news-type-1 .news-item__body .date {
        font-size: 13px;
    }
    .news-type-1 .news-item__body .title-link {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .news-type-1 .news-item__body p {
        font-size: 16px;
    }

    .news-type-3 .news-item__stub {
        padding: 24px 20px 0;
    }
    .news-type-3 .news-item__stub p:not(.news-item__title) {
        font-size: 15px;
    }
    /*news*/

    /*promotions*/
    .shares-type-1 .promotions-item__body .date {
        font-size: 13px;
    }
    .shares-type-1 .promotions-item__body .title-link {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .shares-type-1 .promotions-item__body p {
        font-size: 16px;
    }

    .shares-type-2 .promotions-item__body .date {
        font-size: 13px;
    }
    .shares-type-2 .promotions-item__body .title-link {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .shares-type-2 .promotions-item__body p {
        font-size: 16px;
    }

    .shares-type-4 .promotions-item__img img {
        height: 290px;
    }
    .shares-type-4 .promotions-item .date {
        font-size: 13px;
    }
    .shares-type-4 .promotions-item__title {
        font-size: 1.1rem;
    }
    .shares-type-4 .promotions-item__content p {
        font-size: .9rem;
    }
    /*promotions*/

    .sidebar.sticky-top {
        display: none;
    }
    .sidebar-item {
        margin-bottom: 12px;
    }
    .sidebar-item:last-child {
        margin-bottom: 12px;
    }
    .sidebar-item h4 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 12px 15px;
    }
    .sidebar-item .arrow * {
        fill: #fff;
    }
    .sidebar-item [data-toggle="collapse"][aria-expanded="true"] .arrow {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sidebar-link__list li a {
        font-size: 14px;
        padding: 12px 15px;
    }

    .catalog {
        z-index: initial;
    }

    .catalog .sidebar .sidebar-item, .catalog-container-headline, .catalog-container-tags {
        display: none;
    }
    .catalog-container-headline {
        margin-bottom: 0;
    }
    .catalog-container-sorting li {
        margin-bottom: 12px;
    }
    .catalog-container-toggler {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-bottom: 15px;
    }
    .catalog-container-tags {
        margin-bottom: 15px;
    }
    .catalog-container-tags a {
        margin-bottom: 10px;
    }

    .filter-mobile__list__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 15px;
    }
    .filter-mobile__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: -6px;
        margin-right: -6px;
    }
    .filter-mobile__list li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }
    .filter-mobile__list li .btn {
        width: 100%;
        font-size: 14px;
        padding: 8px 12px;
    }
    .filter-mobile__list li .btn.dropdown-toggle::after {
        display: none;
    }
    .filter-mobile__list .dropdown-menu {
        min-width: 190px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .filter-mobile__list .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 12px 15px;
        border-bottom: 1px solid rgba(34, 34, 34, .1);
    }
    .filter-mobile__list .dropdown-menu .dropdown-item:last-child {
        border-bottom: 0;
    }

    .catalog-container-toggler__mobile {
        position: relative;
        margin-left: 12px;
    }
    .catalog-container-toggler__mobile .toggle-btn {
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 1px solid transparent;
    }
    .catalog-container-toggler__mobile .dropdown-toggle::after {
        display: none;
    }
    .catalog-container-toggler__mobile a svg * {
        /*fill: #fff;*/
    }
    .catalog-container-toggler__mobile .drop-menu {
        display: none;
        position: absolute;
        min-width: 170px;
        background-color: #fff;
        border: 1px solid rgba(34, 34, 34, .1);
        top: calc(100% + 5px);
        right: 6px;
        z-index: 1;
    }
    .catalog-container-toggler__mobile .drop-menu.active {
        display: block;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        font-size: 14px;
        color: #000;
        border-bottom: 1px solid rgba(34, 34, 34, .1);
        padding: 15px;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item:last-child {
        border-bottom: 0;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item svg {
        display: none;
        margin-left: 5px;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item svg * {
        fill: #00C900;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item.active {
        background-color: initial;
        color: initial;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item.active svg {
        display: inline-block;
    }
    .catalog-container.list .product-item__content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .catalog-container.list .product-item__header {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: static;
        border-right: 0;
        padding: 35px 15px 15px;
    }
    .catalog-container.list .product-item__header .favorites {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: initial;
        bottom: 15px;
        right: 10px;
        padding: 5px;
    }
    .catalog-container.list .product-item__body {
        padding: 15px;
    }
    .catalog-container.list .product-item__body a {
        font-size: 14px;
    }
    .catalog-container.list .product-item__footer {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .catalog-container.list .product-item__footer .links {
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
        width: calc(100% - 50px);
    }
    .catalog-container.list .product-item__footer .links .btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: calc(50% - 6px);
        min-width: initial;
        font-size: 13px;
        height: 45px;
        margin-bottom: 0;
    }

    .pagination-list li * {
        border-width: 1px;
    }

    .contacts .map {
        margin-bottom: 25px;
    }
    .contacts-item__parent:last-child {
        margin-bottom: 0;
    }
    .contacts-item__img {
        margin-right: 15px;
    }

    .basket-wrap > div {
        margin-bottom: 20px;
    }

    .basket-item {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 0 95px;
    }

    .basket-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 30%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        border: 0;
        border-right: 1px solid rgba(34, 34, 34, .1);
        border-bottom: 1px solid rgba(34, 34, 34, .1);
        border-radius: 0 !important;
        min-height: 150px;
        max-height: 150px;
    }
    .basket-item__img img{
        padding: 8px;
    }
    .basket-item__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
        height: 150px;
        border-bottom: 1px solid rgba(34, 34, 34, .1);
        padding: 12px 45px 12px 12px;
    }
    .basket-item__info .basket-item__about {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .basket-item__info .basket-item__about .title-link {
        margin-bottom: 12px;
    }
    .basket-item__info .basket-item__about .text-stock {
        margin-bottom: 5px;
    }
    .basket-item__info .basket-item__about .price-retail .text-discount {
        position: absolute;
        top: 5px;
        left: 5px;
        font-size: 11px;
        margin-right: 5px;
        padding: 4px 6px;
    }
    .basket-item__counter {
        position: absolute;
        left: 12px;
        bottom: 15px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
        min-height: 65px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-left: 0;
        padding-right: 0;
    }
    .basket-item__counter h6 {
        max-width: 120px;
        min-height: initial;
        text-align: left;
        margin-right: 15px;
        margin-bottom: 0;
    }
    .basket-item__counter .input-group {
        max-width: 140px;
        margin-right: initial;
    }
    .basket-item__counter .input-group + .text-warning {
        margin-top: 8px;
    }
    .basket-item__price {
        position: absolute;
        right: 12px;
        bottom: 15px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 52%;
        flex: 0 0 52%;
        max-width: 52%;
        min-height: 65px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-left: 0;
        padding-right: 0;
    }
    .basket-item__price h6 {
        min-height: initial;
        margin-right: 15px;
        margin-bottom: 0;
    }
    .basket-item__price .price-retail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 10px;
    }
    .basket-item__price .price-retail small {
        margin-top: 2px;
        margin-left: 2px;
    }
    .basket-item__price .price-retail del {
        margin-left: 10px;
    }
    .basket-item .close-btn{
        font-size: 38px;
    }
    .basket-item .favorites {
        top: 40px;
    }
    .basket-item .favorites svg {
        width: 22px;
        height: 22px;
    }
    .total-price__item {
        border-bottom: 0;
    }
    .total-price__item strong {
        font-size: 16px;
    }
    .total-price__info-buttons {
        display: none;
    }

    .checkout .data-section p {
        font-size: 14px;
    }
    .checkout table td {
        padding: 15px 10px;
    }

    textarea.form-control {
        min-height: 120px;
        max-height: 150px;
    }

    .checkout .cart-proposal .img {
        min-width: 100px;
        min-height: 100px;
        max-width: 100px;
        max-height: 100px;
        margin-bottom: 0;
    }
    .checkout .cart-proposals__wrap strong {
        font-size: 16px;
    }
    .checkout .cart-proposals__wrap span {
        font-size: 16px;
    }
    .checkout .cart-proposal.d-flex .flex-grow-1 {
        width: initial;
        padding-top: 3px;
    }
    .checkout .cart-proposals__wrap .btn {
        display: none;
        font-size: 14px;
    }

    .filter-form__item input[type="text"] {
        font-size: .9rem;
    }

    .category-element__header {
        height: 220px;
    }

    .contacts-item__parent {
        margin-bottom: 12px;
    }

    .products-inner__swiper {
        margin-bottom: 25px;
    }
    .products-inner__swiper .swiper-button-prev, .products-inner__swiper .swiper-button-next{
        display: none;
    }
    .products-inner__info h3 {
        width: calc(100% - 50px);
        font-size: 26px;
    }
    .products-inner__info .text-stock p, .products-inner__info .text-stock em {
        font-size: 1rem;
    }
    .products-inner__info .price-retail {
        font-size: 26px;
    }
    .products-inner__info del {
        font-size: 1rem;
    }
    .products-inner__details {
        padding: 12px;
    }
    .products-inner__details > strong {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .products-inner__details ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .delivery-list li {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .delivery-list li > u, .delivery-list li > p {
        margin-bottom: 15px;
    }

    .products-inner__buttons {
        margin-top: 0;
    }
    .products-inner__buttons .btn {
        display: none;
    }
    .products-inner__buttons .favorites {
        position: absolute;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 0;
        top: 0;
        right: 15px;
    }
    .products-about__accordion {
        margin-top: 20px;
    }

    .single-blog__about-item {
        overflow-x: auto;
    }

    .schedule-work {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .schedule-work .col-sm-4 {
        margin-bottom: 4px;
    }
    .schedule-work .col-sm-4 p {
        color: #666;
    }

    .glotr-b__item__parent {
        margin-bottom: 8px;
    }
    .glotr-b__item__parent:last-child {
        margin-bottom: 0;
    }
    .glotr-b__item-right img {
        max-height: 150px;
    }

    .feedback-form label {
        top: 11px;
    }

    .page-404__title {
        font-size: 120px;
    }

    .form-footer {
        margin-top: 16px;
    }
    .modal-title {
        font-size: 1.2rem;
    }
    .modal .filter-form {
        /*position: relative;*/
        /*overflow-y: auto;*/
        /*max-height: 500px;*/
    }
    .modal-product-question__header img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        min-height: 80px;
        max-height: 80px;
        margin-right: 12px;
        margin-bottom: 5px;
    }
    .modal-product-question__header > div, .modal-short-order__header > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }
    .modal-product-question__footer {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }

    #back-to-top {
        left: initial;
        right: 30px;
        bottom: 80px;
    }
    #back-to-top.bottom-nav-hide {
        bottom: 30px;
    }
    body[data-nav-bottom="2"] #back-to-top {
        bottom: 90px;
    }

    .b24-widget {
        display: none !important;
        right: 40px;
        bottom: 100px;
    }

    .block-fixed {
        display: none;
    }

    .nav-bottom__list li a .badge {
        top: 5px;
        right: 43%;
    }

    .search-results {
        min-width: 100%;
    }
    .products-search-header strong {
        font-size: 15px;
    }
    .search-results .col-lg-9 {
        border-right: 0;
        border-bottom: 1px solid rgba(31, 31, 31, .1);
    }
    .items-search-results {
        max-height: 320px;
        padding: 0 10px 10px;
    }
    .result-item .result-item__name {
        font-size: 14px;
    }
    .result-item .result-item__price {
        font-size: 14px;
        min-width: 130px;
    }

    #toast-container {
        top: 8px;
        right: 8px;
        left: 8px;
    }
    #toast-container > div.toast {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        padding: 14px 16px;
    }

}
@media (max-width: 768px) {

    .glotr-b .link-list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .nav-bottom__list li a .badge {
        right: 42%;
    }

    /*category*/
    .category-type-2 .category-item {
        background-position: 90% 90%;
        padding: 16px 90px 20px 16px;
        min-height: 150px;
    }
    .category-type-2 .category-item p {
        line-height: 1.4;
    }
    /*category*/

    .contact-type-2 .map-container {
        padding: 60px 80px;
    }

}
@media (max-width: 767px) {

    h2 {
        font-size: 1.6rem;
    }

    .sub-title {
        font-size: 1.1rem;
    }

    .hero-swiper .swiper-slide {
        height: 320px;
    }

    /*showcase*/
    .proposal-type-1 .product-item__parent {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .proposal-type-1 .product-item__header {
        min-height: 200px;
        max-height: 200px;
    }
    .proposal-type-1 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 160px;
        height: 160px;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        font-size: 13px;
        height: 40px;
    }

    .proposal-type-2 .product-item__parent {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .proposal-type-2 .product-item__header {
        min-height: 190px;
        height: 190px;
    }
    .proposal-type-2 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
        width: 160px;
        height: 160px;
    }
    /*showcase*/

    .about-swiper .swiper-slide img {
        min-height: 320px;
        max-height: 320px;
    }

    .call-request img, .call-request svg {
        width: 80px;
        height: 80px;
    }
    .call-request h3 {
        font-size: 26px;
        max-width: calc(100% - 120px);
    }

    /*promotions*/
    .shares-type-1 .promotions-item__header {
        min-height: 180px;
        max-height: 180px;
    }
    .shares-type-1 .promotions-item__body .title-link {
        font-size: 17px;
    }
    .shares-type-1 .promotions-item__body p {
        font-size: 15px;
    }

    .shares-type-2 .promotions-item__header {
        min-height: 180px;
        max-height: 180px;
    }
    .shares-type-2 .promotions-item__body .title-link {
        font-size: 17px;
    }
    .shares-type-2 .promotions-item__body p {
        font-size: 15px;
    }

    .shares-type-3 .promotions-item__img img {
        height: 300px;
    }
    .shares-type-3 .promotions-item__content {
        min-height: 210px;
        padding: 24px;
    }
    .shares-type-3 .promotions-item__content .date {
        top: 16px;
        right: 16px;
    }

    .shares-type-4 .promotions-item__img img {
        height: 250px;
    }
    /*promotions*/

    .feedback-form .sub-title {
        margin-bottom: 2rem;
    }
    .feedback-form label svg {
        width: 20px;
        height: 20px;
    }
    .feedback-form .form-control {
        font-size: .9rem;
        height: 50px;
    }

    .basket-item {
        padding: 0 0 130px;
    }
    .basket-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
        min-height: 130px;
        max-height: 130px;
    }
    .basket-item__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;
        height: 130px;
    }
    .basket-item__counter {
        min-height: 90px;
    }
    .basket-item__counter h6, .basket-item__price h6 {
        margin-bottom: 8px;
    }
    .basket-item__counter h6 {
        max-width: initial;
    }
    .basket-item__counter, .basket-item__price {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .basket-item__counter .input-group {
        margin: 2px auto 2px 0;
    }
    .basket-item__counter .input-group + .text-warning {
        font-size: 13px;
    }
    .basket-item__price {
        min-height: 90px;
    }
    .basket-item__price .price-retail del {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-left: 0;
    }

    .contacts-item__img {
        min-width: 65px;
        min-height: 65px;
    }

    .products-inner__info h3 {
        font-size: 1.5rem;
    }
    .products-inner__info .text-stock p, .products-inner__info .text-stock em {
        font-size: .9rem;
    }
    .products-inner__info del {
        font-size: .95rem;
    }
    .products-inner__details > strong {
        font-size: .95rem;
    }
    .products-inner__details ul li {
        font-size: .9rem;
        margin-bottom: 5px;
    }
    /*.products-inner__buttons{*/
    /*    margin-top: 20px;*/
    /*}*/

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item img {
        height: 220px;
    }

    .photo-gallery-type-2 .photo-gallery__item img {
        height: 220px;
    }

    .photo-gallery-type-3 .photo-gallery__item img {
        height: 290px;
    }
    /*photo-gallery*/

    /*map*/
    .contact-type-1 .map-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contact-type-1 .map {
        height: 340px;
    }
    .contact-type-1 .map-container {
        display: block;
        position: static;
        width: 100%;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    body[data-container="1200"] .contact-type-1 .map-container {
        width: 100%;
    }
    .contact-type-1 .map-block {
        padding: 1.5rem 1.5rem 2.5rem;
        background-color: rgba(255, 255, 255, 1);
        border-radius: 0 !important;
        border-top: 1px solid rgba(31, 31, 31, .1);
    }
    .contact-type-4 .map-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contact-type-4 .map {
        height: 340px;
    }
    .contact-type-4 .map-container {
        display: block;
        position: static;
        width: 100%;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    body[data-container="1200"] .contact-type-4 .map-container {
        width: 100%;
    }
    .contact-type-4 .map-block {
        padding: 1.5rem 1.5rem 2.5rem;
        background-color: rgba(255, 255, 255, 1);
        border-radius: 0 !important;
        border-top: 1px solid rgba(31, 31, 31, .1);
    }
    .map-block h5 {
        font-size: 1.35rem;
    }
    .map-contacts__list li h6 {
        font-size: 1rem;
    }
    .map-contacts__list li a, .map-contacts__list li p {
        font-size: .9rem;
    }
    /*map*/

    .feedback-form label {
        top: 14px;
    }

    .glotr-b_footer_link {
        height: 140px;
    }

    .modal-contacts .contacts-list li {
        margin-bottom: 12px;
    }
    .modal-contacts .contacts-list li a {
        font-size: 16px;
    }

}
@media (max-width: 575px) {

    .btn-month {
        margin-right: 6px !important;
        margin-bottom: 6px !important;
    }

    .btn-group-sm > .btn {
        font-size: 14px !important;
        padding: .3rem .5rem !important;
    }

    .btn-list li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    body[data-container="1200"] h2 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .burger-menu__social li a svg {
        width: 24px;
        height: 24px;
    }

    .hero-swiper .swiper-slide {
        height: 270px;
    }
    .hero-swiper .swiper-slide h1 {
        font-size: 1.6rem;
    }

    .content-top p {
        font-size: .85rem;
        margin-top: 8px;
    }

    .about-swiper .swiper-slide img {
        min-height: 270px;
        max-height: 270px;
    }
    .about .company-info h2 {
        margin-bottom: 15px;
    }

    /*map*/
    .map-contacts__list li {
        display: flex;
        flex-wrap: wrap;
        row-gap: 0;
        margin-bottom: .5rem;
    }
    .map-contacts__list li a, .map-contacts__list li p {
        text-align: left;
    }
    .map-block .btn {
        font-size: 13px;
    }

    .contact-type-2 .map-container {
        padding: 40px;
    }

    .contact-type-3 .map {
        height: 290px;
    }
    /*map*/

    .substrate__parent {
        padding-left: 0;
        padding-right: 0;
    }

    /*showcase*/
    .proposal-type-1 .products-wrap {
        margin-left: -4px;
        margin-right: -4px;
    }
    .proposal-type-1 .product-item__parent {
        padding-left: 4px;
        padding-right: 4px;
        margin-bottom: 8px;
    }
    .proposal-type-1 .product-item__header .favorites, .catalog-container.list .product-item__header .favorites {
        width: 32px;
        height: 32px;
    }
    .proposal-type-1 .product-item__header .favorites svg {
        width: 20px;
        height: 20px;
    }
    .proposal-type-1 .product-item__swiper {
        padding: 25px 10px 10px;
    }
    .proposal-type-1 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 166px;
        height: 166px;
    }
    .proposal-type-1 .product-item__content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        font-size: 12px;
    }

    .proposal-type-2 .products-wrap {
        margin-left: -4px;
        margin-right: -4px;
    }
    .proposal-type-2 .product-item__parent {
        padding-left: 4px;
        padding-right: 4px;
        margin-bottom: 8px;
    }
    .proposal-type-2 .product-item {
        padding: 10px;
    }
    .proposal-type-2 .product-item__header .favorites, .catalog-container.list .product-item__header .favorites {
        width: 32px;
        height: 32px;
    }
    .proposal-type-2 .product-item__header .favorites svg {
        width: 20px;
        height: 20px;
    }
    .proposal-type-2 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
        width: 160px;
        height: 160px;
    }
    .proposal-type-2 .product-item__header .product-item__sale, .proposal-type-2 .product-item__header .status {
        font-size: 12px;
        padding: 4px 8px;
    }
    /*showcase*/

    .catalog-container.list .product-item__header {
        padding: 20px 15px 15px;
    }

    /*category*/
    .category-type-1 .category-item__header {
        min-height: 75px;
        padding: .5rem .5rem 1rem;
    }
    .category-type-1 .category-item__header p {
        margin-bottom: 12px;
    }
    .category-type-1 .category-item__body img {
        min-height: 160px;
        max-height: 160px;
    }

    .category-type-2 .category-item {
        background-size: 90px;
        padding: 12px;
    }
    .category-type-2 .category-item p {
        font-size: 14px;
    }

    .category-type-3 .category-item {
        padding: 10px 8px;
    }
    .category-type-3 .category-item__img img {
        height: 54px;
    }
    .category-type-3 .category-item p {
        line-height: 1.2;
    }

    .category-type-4 .category-item {
        border-width: 1px;
    }
    .category-type-4 .category-item img {
        width: 140px;
        height: 120px;
    }
    /*category*/

    .filter-mobile__list {
        margin-left: -3px;
        margin-right: -3px;
    }
    .filter-mobile__list li {
        padding-left: 3px;
        padding-right: 3px;
    }

    .catalog-container-toggler__mobile {
        margin-left: 6px;
    }

    /*call-request*/
    .call-request img, .call-request svg {
        width: 60px;
        height: 60px;
    }
    .call-request h3 {
        font-size: 22px;
        max-width: calc(100% - 80px);
    }
    .call-request .btn {
        margin-top: 30px;
    }

    .call-request-type-1 {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .call-request-type-2 .arrow-on__wrap {
        top: calc(100% + 32px);
        left: 30px;
    }
    /*call-request*/

    /*advantages*/
    .advantages-item svg {
        width: 70px;
        height: 70px;
    }
    body[data-container="1200"] .advantages-item svg {
        width: 55px;
        height: 55px;
    }
    .advantages-item h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .advantages-item p {
        font-size: 14px;
    }
    body[data-container="1200"] .advantages-item__header svg {
        width: 40px;
        height: 40px;
    }
    .advantages-item__body {
        padding: 16px;
    }

    .advantages-type-1 .advantages-item {
        padding: 10px;
    }

    .advantages-type-2 .advantages-item {
        padding: 24px 16px;
    }

    .advantages-type-4 .advantages-item svg {
        width: 34px;
        height: 34px;
    }
    body[data-container="1200"] .advantages-type-4 .advantages-item svg {
        width: 34px;
        height: 34px;
    }

    .advantages-type-5 .advantages-item svg {
        width: 34px;
        height: 34px;
    }
    body[data-container="1200"] .advantages-type-5 .advantages-item svg {
        width: 34px;
        height: 34px;
    }
    /*advantages*/

    /*documents*/
    .documents-type-1 .documents-item img {
        height: 240px;
    }

    .documents-type-2 .documents-item img {
        height: 240px;
    }
    /*documents*/

    /*news*/
    .news-type-1 .news-item-lg .title-link {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .news-type-1 .news-item-lg p {
        font-size: 14px;
    }
    .news-type-1 .news-item__body {
        padding: 15px 15px 20px;
    }
    .news-type-1 .news-item__body .title-link {
        font-size: 15px;
    }
    .news-type-1 .news-item__body p {
        font-size: 14px;
    }

    .news-type-2 .news-item__header {
        min-height: 240px;
        max-height: 240px;
    }

    .news-type-3 .news-item__header {
        height: 300px;
    }
    /*news*/

    /*promotions*/
    .shares-type-1 .promotions-item__parent:last-child {
        margin-bottom: 0;
    }
    .shares-type-1 .promotions-item__header {
        min-height: 240px;
        max-height: 240px;
    }
    .shares-type-1 .promotions-item__body {
        padding: 15px 15px 20px;
    }

    .shares-type-2 .promotions-item__parent:last-child {
        margin-bottom: 0;
    }
    .shares-type-2 .promotions-item__header {
        min-height: 240px;
        max-height: 240px;
    }
    .shares-type-2 .promotions-item__body {
        padding: 15px 15px 20px;
    }

    .shares-type-3 .promotions-item {
        width: 100%;
    }
    .shares-type-3 .promotions-item__img {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
        flex: 1 0 40%;
    }
    .shares-type-3 .promotions-item__img img {
        height: 270px;
    }
    .shares-type-3 .promotions-item__content {
        background-color: rgba(255, 255, 255, .94);
        -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
        flex: 1 0 60%;
        min-height: 190px;
    }
    .shares-type-3 .promotions-item__content .date {
        top: 12px;
        right: 12px;
        font-size: 12px;
    }
    .shares-type-3 .promotions-item__content .date svg {
        margin-right: 2px;
        margin-bottom: 0;
    }

    .shares-type-4 .promotions-item::before {
        opacity: 1;
    }
    .shares-type-4 .promotions-item__title {
        font-size: 1rem;
    }
    .shares-type-4 .promotions-item .promotions-item__content {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .shares-type-4 .promotions-item .date {
        top: 12px;
        right: 12px;
        font-size: 12px;
    }
    .shares-type-4 .promotions-item .date svg {
        margin-right: 2px;
        margin-bottom: 0;
    }
    /*promotions*/

    .catalog-container-sorting {
        margin-bottom: 8px;
    }
    .catalog-container-tags {
        margin-bottom: 20px;
    }
    .category-element__body p {
        margin-top: 1rem;
    }
    .contacts-item__img {
        min-width: 65px;
        min-height: 65px;
    }

    .basket-item {
        padding: 0 0 100px;
    }
    .basket-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 30%;
        min-height: 130px;
        max-height: 130px;
        border-bottom: 0;
    }
    .basket-item__img img {
        height: 100%;
    }
    .basket-item__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
        border-bottom: 0;
    }
    .basket-item__info .basket-item__about .title-link {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .basket-item__info .basket-item__about .price-retail {
        font-size: 18px;
    }
    .basket-item__info .basket-item__about .price-retail del {
        font-size: 85%;
    }
    .basket-item__info .basket-item__about .text-stock {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .basket-item__counter, .basket-item__price {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-top: 1px solid rgba(34, 34, 34, .1);
        bottom: 0;
        min-height: 100px;
        padding: 12px;
    }
    .basket-item__counter {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
        left: 0;
    }
    .basket-item__price {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
        right: 0;
    }
    .basket-item__counter h6, .basket-item__price h6 {
        display: none;
    }

    .sidebar {
        /*margin-bottom: 10px;*/
    }
    .sidebar-item h4 {
        padding: 15px;
    }
    .sidebar-link__list li a {
        padding: 15px;
    }

    .catalog-container-sorting li .btn {
        font-size: .8rem;
        height: 35px;
    }
    .catalog-container-tags a {
        font-size: .75rem;
    }
    .catalog-container.list .product-item__footer .links .btn {
        max-width: calc(50% - 3px);
    }

    .products-inner__swiper-item img{
        height: 260px;
    }
    .products-inner__info h3 {
        font-size: 1.4rem;
    }
    .products-inner__info .price-retail {
        font-size: 1.2rem;
        margin-top: 5px;
    }
    .products-inner__info del {
        margin-bottom: 10px;
    }
    .products-inner__buttons .btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }
    .products-about__accordion .accordion-link {
        font-size: 13px;
    }

    .single-blog__about-item {
        padding: 1rem;
    }

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item img {
        height: 190px;
    }
    body[data-container="1200"] .photo-gallery-type-1 .photo-gallery__item img {
        height: 190px;
    }
    .photo-gallery-type-1 .photo-gallery__overlay {
        padding: 15px;
    }
    .photo-gallery-type-1 .photo-gallery__overlay h6 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .photo-gallery-type-2 .photo-gallery__item img {
        height: 190px;
    }

    .photo-gallery-type-3 .photo-gallery__item-parent::after {
        font-size: 24px;
        right: 12px;
        bottom: 12px;
    }
    .photo-gallery-type-3 .photo-gallery__item img {
        height: 220px;
    }
    .photo-gallery-type-3 .photo-gallery__item p {
        display: none;
    }
    /*photo-gallery*/

    /*documents*/
    body[data-container="1200"] .documents-type-1 .documents-item img {
        height: 220px;
    }
    .documents-type-1 .documents-item .documents-item__overlay .theme-btn {
        width: 100%;
        padding: 6px;
    }

    body[data-container="1200"] .documents-type-2 .documents-item img {
        height: 220px;
    }
    /*documents*/

    .checkout .cart-proposal .img {
        min-width: 90px;
        min-height: 90px;
        max-width: 90px;
        max-height: 90px;
    }

    .page-404::before, .page-404::after {
        opacity: .3;
    }
    .page-404::before {
        width: 160px;
        height: 160px;
        top: 130px;
        left: -120px;
    }
    .page-404::after {
        width: 30px;
        height: 30px;
    }
    .page-404__title {
        font-size: 96px;
    }
    .page-404__sub-title {
        font-size: 22px;
    }
    .page-404__text-info {
        font-size: 14px;
    }

    .filter-mobile{
        width: 88%;
        max-width: initial;
    }
    .filter-mobile__wrap{
        width: 100%;
        max-width: initial;
        right: -50px;
    }
    .filter-mobile h4{
        font-size: 20px;
    }
    .filter-mobile .filter-form{
        max-height: calc(100% - 85px);
    }
    .filter-mobile .filter-form__item label{
        margin-bottom: 9px;
    }
    .filter-mobile .filter-mobile__buttons{
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding-top: 12px;
    }
    .filter-mobile .filter-mobile__buttons .btn{
        height: 45px;
    }

    .modal-content {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .modal-body {
        padding: 1rem 1rem 1.5rem;
    }
    .feedback-form {
        padding: 0;
    }
    .modal-contacts {
        padding: 0 1.5rem 2rem;
    }
    .modal .btn {
        font-size: 14px;
        padding: 8px 20px;
    }
    .modal-message__header, .modal-product-question__header, .modal-short-order__header {
        padding: 12px;
    }
    .modal-product-question__header img, .modal-short-order__header img {
        min-height: 70px;
        max-height: 70px;
    }
    .modal-product-question__header strong, .modal-short-order__header strong {
        font-size: 16px;
    }

    .search-field-block {
        min-width: calc(100% - 30px);
        padding: 14px 20px;
    }

    .block-fixed a {
        width: 50px;
        height: 50px;
    }
    .block-fixed a svg {
        width: 20px;
        height: 20px;
    }
    .block-fixed a .badge {
        min-width: 1rem;
        min-height: 1rem;
        font-size: 10px;
    }

    #back-to-top {
        right: 20px;
    }

    .nav-bottom__list li a {
        font-size: 11px;
    }
    .nav-bottom__list li a .badge {
        right: 35%;
    }

}
@media (max-width: 425px) {

    .row {
        margin-left: -4px;
        margin-right: -4px;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto, .col-lg-20, .col-lg-80 {
        padding-left: 4px;
        padding-right: 4px;
    }

    .theme-btn {
        font-size: 13px;
        height: 45px;
    }

    .more-btn {
        margin-top: 24px;
    }

    ul li {
        font-size: .9rem;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1.1rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    p {
        font-size: .9rem;
    }

    .content-top h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .breadcrumb .breadcrumb-item {
        font-size: 13px;
    }

    .hero-swiper .swiper-slide {
        height: 240px;
    }
    .hero-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
    .hero-swiper .swiper-pagination-bullet-active {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    /*showcase*/
    .proposal-type-1 .products-wrap {
        margin-left: -2px;
        margin-right: -2px;
    }
    .proposal-type-1 .product-item__parent {
        padding-left: 2px;
        padding-right: 2px;
        margin-bottom: 4px;
    }
    .proposal-type-1 .product-item__header {
        min-height: 180px;
        max-height: 180px;
    }
    .proposal-type-1 .product-item__header .favorites svg {
        width: 22px;
        height: 22px;
    }
    .proposal-type-1 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 156px;
        height: 156px;
    }
    .proposal-type-1 .product-item__body a {
        font-size: 14px;
    }
    .proposal-type-1 .product-item__body p {
        font-size: 13px;
    }
    .proposal-type-1 .product-item__body .price-retail, .proposal-type-1 .product-item__body .price-wholesale {
        font-size: 15px;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        height: 35px;
    }

    .proposal-type-2 .products-wrap {
        margin-left: -2px;
        margin-right: -2px;
    }
    .proposal-type-2 .product-item__parent {
        padding-left: 2px;
        padding-right: 2px;
        margin-bottom: 4px;
    }
    .proposal-type-2 .product-item__header {
        min-height: 160px;
        height: 160px;
    }
    .proposal-type-2 .product-item__header .favorites svg {
        width: 22px;
        height: 22px;
    }
    .proposal-type-2 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
        width: 140px;
        height: 140px;
    }
    .proposal-type-2 .product-item__stock {
        font-size: 13px;
    }
    .proposal-type-2 .product-item .price-retail {
        font-size: 15px;
    }
    .proposal-type-2 .product-item .price-retail del {
        font-size: 13px;
    }
    .proposal-type-2 .product-item__footer .theme-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
    /*showcase*/

    .about-swiper .swiper-slide img {
        min-height: 270px;
        max-height: 270px;
    }
    .about-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .about-swiper .swiper-pagination-bullet-active {
        width: 10px;
        height: 10px;
    }

    /*category*/
    .category-type-1 .category-item__parent {
        margin-bottom: 8px;
    }
    .category-type-1 .category-item__header p, .category-element__body p {
        font-size: 14px;
    }
    .category-type-1 .category-item__body img {
        min-height: 150px;
        max-height: 150px;
    }

    .category-type-2 .category-item__parent {
        margin-bottom: 8px;
    }
    .category-type-2 .category-item {
        min-height: 140px;
    }
    .category-type-2 .category-item p {
        font-size: 13px;
    }

    .category-type-3 .category-item__parent {
        margin-bottom: 8px;
    }
    .category-type-3 .category-item p {
        font-size: 14px;
    }

    .category-type-4 .category-item p {
        font-size: 14px;
    }
    /*category*/

    .catalog-container-toggler__mobile .toggle-btn {
        width: 45px;
        height: 45px;
    }
    .catalog-container-toggler__mobile .drop-menu .drop-item {
        font-size: 13px;
    }

    .checkout .data-section p {
        font-size: 14px;
    }

    .form-group .control-label {
        margin-bottom: 5px;
    }
    .form-group .form-control {
        font-size: 14px;
    }
    .form-group .form-control::-webkit-input-placeholder {
        font-size: 13px;
    }
    .form-group .form-control::-moz-placeholder {
        font-size: 13px;
    }
    .form-group .form-control:-ms-input-placeholder {
        font-size: 13px;
    }
    .form-group .form-control::-ms-input-placeholder {
        font-size: 13px;
    }
    .form-group .form-control::placeholder {
        font-size: 13px;
    }

    .checkout table td {
        font-size: 13px;
    }
    .checkout table td span {
        font-size: 13px;
        word-break: initial;
    }
    .checkout .cart-proposal .img {
        min-width: 75px;
        min-height: 75px;
        max-width: 75px;
        max-height: 75px;
    }
    .checkout .cart-proposals__wrap strong {
        font-size: 15px;
    }
    .checkout .cart-proposals__wrap span {
        font-size: 15px;
    }
    .checkout .cart-proposals {
        font-size: 13px;
    }

    .call-request img, .call-request svg {
        width: 50px;
        height: 50px;
    }
    .call-request h3 {
        font-size: 20px;
        max-width: calc(100% - 70px);
    }

    /*advantages*/
    .advantages-item {
        padding: 10px 5px;
    }
    .advantages-item svg {
        width: 65px;
        height: 65px;
    }
    .advantages-item h5 {
        font-size: 15px;
    }
    .advantages-item p {
        font-size: 13px;
    }

    .advantages-type-1 .advantages-item__parent {
        margin-bottom: 8px;
    }
    /*advantages*/

    /*news*/
    .news-type-1 .news-item-lg {
        min-height: 320px;
    }
    .news-type-1 .news-item__header {
        min-height: 140px;
        max-height: 140px;
    }
    .news-type-1 .news-item__body {
        padding: 10px 10px 15px;
    }
    .news-type-1 .news-item__body .title-link {
        font-size: 14px;
    }
    .news-type-1 .news-item__body p {
        font-size: 13px;
    }

    .news-type-2 .news-item__header {
        min-height: 220px;
        max-height: 220px;
    }

    .news-type-3 .news-item__header {
        height: 270px;
    }
    .news-type-3 .news-item__body::before {
        height: 175px;
    }
    .news-type-3 .news-item__stub {
        height: 175px;
        padding: 20px 16px 0;
    }
    /*news*/

    /*promotions*/
    .shares-type-1 .promotions-item__parent {
        margin-bottom: 8px;
    }
    .shares-type-1 .promotions-item__header {
        min-height: 220px;
        max-height: 220px;
    }
    .shares-type-1 .promotions-item__body .title-link {
        font-size: 14px;
    }
    .shares-type-1 .promotions-item__body p {
        font-size: 13px;
    }

    .shares-type-2 .promotions-item__parent {
        margin-bottom: 8px;
    }
    .shares-type-2 .promotions-item__header {
        min-height: 220px;
        max-height: 220px;
    }
    .shares-type-2 .promotions-item__body .title-link {
        font-size: 14px;
    }
    .shares-type-2 .promotions-item__body p {
        font-size: 13px;
    }
    /*promotions*/

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item-parent {
        margin-bottom: 8px;
    }
    .photo-gallery-type-1 .photo-gallery__item img {
        height: 170px;
    }
    .photo-gallery-type-1 .photo-gallery__overlay h6 {
        font-size: 14px;
    }

    .photo-gallery-type-2 .photo-gallery__item-parent {
        margin-bottom: 8px;
    }
    .photo-gallery-type-2 .photo-gallery__item img {
        height: 170px;
    }

    .photo-gallery-type-3 .photo-gallery__item img {
        height: 190px;
    }
    /*photo-gallery*/

    /*documents*/
    .documents-type-1 .documents-item__parent {
        margin-bottom: 8px;
    }

    .documents-type-2 .documents-item__parent {
        margin-bottom: 8px;
    }
    /*documents*/

    .products-inner__swiper {
        margin-bottom: 20px;
    }
    .products-inner__info .text-stock p, .products-inner__info .text-stock em {
        font-size: .85rem;
    }
    .products-inner__info .text-stock p {
        margin-right: 15px;
    }
    .products-inner__details ul li {
        font-size: .85rem;
    }
    .products-inner__buttons .favorites {
        top: -5px;
    }

    .products-about__accordion .accordion-content{
        font-size: 13px !important;
    }
    .products-about__accordion .accordion-content p {
        margin-bottom: 1.2rem;
    }
    .products-about__accordion .accordion-content .characteristics-list li strong {
        font-size: 13px;
    }
    .products-about__accordion .accordion-content h6 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .products-about__accordion .accordion-content u {
        font-size: 14px;
    }

    .delivery-list li {
        margin-bottom: 12px;
    }

    .delivery-list li u {
        margin-bottom: 6px;
    }

    .basket-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        min-height: 140px;
        max-height: 140px;
    }
    .basket-item__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
        height: 140px;
    }
    .basket-item__info .basket-item__about {
        margin-bottom: 10px;
    }
    .basket-item__info .basket-item__about .title-link {
        margin-bottom: 8px;
    }
    .basket-item__counter .input-group input{
        font-size: 14px;
    }
    .basket-item__info .basket-item__about .price-retail {
        font-size: 16px;
        margin-top: 10px;
    }
    .basket-item__info .basket-item__about .price-retail del {
        font-size: 14px;
    }
    .basket-item__info .basket-item__about .text-stock {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 8px;
    }
    .basket-item__info .basket-item__about .text-stock span {
        margin-left: 0;
        margin-bottom: 2px;
    }
    .basket-item__info .basket-item__about .text-stock span:last-child {
        margin-bottom: 0;
    }
    .basket-item .favorites{
        top: 42px;
    }
    .basket-item__counter, .basket-item__price {
        padding: 10px;
    }

    .total-price__info {
        padding: 1rem;
    }
    .total-price__item {
        margin-bottom: 12px;
    }
    .total-price__item strong {
        margin-bottom: 12px;
    }

    /*map*/
    .contacts .map {
        height: 300px;
    }

    .contact-type-2 .map {
        height: 370px;
    }
    .contact-type-2 .map-container {
        padding: 30px;
    }

    .contact-type-3 .map {
        height: 290px;
    }
    /*map*/

    .single-blog__about-item {
        padding: 1.5rem;
    }
    .single-blog__about-item h6 {
        font-size: .95rem;
    }

    .search-field-block {
        padding: 12px 20px;
    }

    .sidebar-item h4 {
        font-size: 1rem;
    }

    .news-item__parent {
        margin-bottom: 8px;
    }
    .news-item__description .date, .news-item__description strong {
        font-size: .85rem;
    }

    .category-element__header {
        height: 190px;
    }

    .pagination-list li * {
        width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 5px;
    }

    .footer-top__wrap {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }
    .footer-top__wrap .col-lg-4 {
        padding-left: 4px;
        padding-right: 4px;
    }

    .filter-mobile h4 {
        font-size: 1.3rem;
    }
    .filter-mobile .filter-form__item {
    }
    .filter-mobile .filter-form__item a[data-toggle="collapse"] {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item input[type="text"] {
        font-size: 14px;
        height: 40px;
    }
    .filter-mobile .filter-form__item input[type="text"]::-webkit-input-placeholder {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item input[type="text"]::-moz-placeholder {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item input[type="text"]:-ms-input-placeholder {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item input[type="text"]::-ms-input-placeholder {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item input[type="text"]::placeholder {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item label {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item label::before {
        top: 3px;
    }
    .filter-mobile .filter-form__item label::after {
        top: -1px;
    }
    .filter-mobile__list li .btn {
        font-size: 13px;
        height: 45px;
    }
    .filter-mobile__list .dropdown-menu {
        min-width: 175px;
    }
    .filter-mobile__list .dropdown-menu .dropdown-item {
        font-size: 12px;
    }

    .products-search-header strong {
        font-size: 14px;
    }

    .result-item .result-item__img {
        min-width: 50px;
        min-height: 50px;
        max-width: 50px;
        max-height: 50px;
        margin-right: 10px;
    }
    .result-item .result-item__name {
        font-size: 13px;
    }
    .result-item .result-item__price {
        display: none;
    }

    .glotr-b_footer_link {
        height: 90px;
    }

    .modal-title {
        font-size: 1.1rem;
    }
    .modal-contacts {
        padding: 0 1rem 1.5rem;
    }
    .modal-message__header, .modal-product-question__header, .modal-short-order__header {
        padding: 8px;
    }
    .modal-product-question__header img, .modal-short-order__header img {
        min-height: 62px;
        max-height: 62px;
    }
    .modal-product-question__header > div, .modal-short-order__header > div {
        font-size: 13px;
    }
    .modal-product-question__header p, .modal-short-order__header p {
        font-size: 13px;
        margin-bottom: 3px;
    }
    .modal-product-question__header strong, .modal-short-order__header strong {
        font-size: 14px;
    }

    .nav-bottom__list li a {
        font-size: 9px;
    }
    .nav-bottom__list li a svg {
        width: 16px;
        height: 16px;
    }
    .nav-bottom__list li a .badge {
        min-width: 14px;
        min-height: 14px;
        font-size: 9px;
        right: 35%;
    }

}
@media (max-width: 375px) {

    textarea.form-control {
        min-height: 100px;
        max-height: 120px;
    }

    section {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .btn-list li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .theme-btn {
        font-size: .8rem;
        height: 45px;
    }

    .btn-group-sm > .btn {
        font-size: 13px !important;
    }

    ul li {
        font-size: .8rem;
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .sub-title {
        font-size: .9rem;
    }
    p {
        font-size: .8rem;
    }

    .content-top {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .breadcrumb .breadcrumb-item {
        font-size: .8rem;
    }

    .hero-swiper .swiper-slide {
        height: 220px;
    }
    .hero-swiper .swiper-slide h1 {
        font-size: 1.4rem;
    }

    /*showcase*/
    .proposal-type-1 .product-item {
        min-height: 325px;
    }
    .proposal-type-1 .product-item__header {
        min-height: 170px;
        max-height: 170px;
    }
    .proposal-type-1 .product-item__header span {
        font-size: .6rem;
        top: 5px;
        left: 8px;
    }
    .proposal-type-1 .product-item__header .favorites {
        top: 5px;
        right: 8px;
    }
    .proposal-type-1 .product-item__header .favorites svg {
        width: 18px;
        height: 18px;
    }
    .proposal-type-1 .product-item__swiper {
        padding: 6px;
    }
    .proposal-type-1 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 146px;
        height: 146px;
    }
    .proposal-type-1 .product-item__body {
        padding: 8px 6px 15px;
    }
    .proposal-type-1 .product-item__body p {
        font-size: .7rem;
    }
    .proposal-type-1 .product-item__body .price-retail, .proposal-type-1 .product-item__body .price-wholesale {
        font-size: .8rem;
    }
    .proposal-type-1 .product-item__footer {
        padding: 0 6px 8px;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        font-size: 11px;
        min-height: 35px;
        padding: 8px 5px;
    }

    .proposal-type-2 .product-item {
        padding: 6px 6px 8px;
    }
    .proposal-type-2 .product-item__header .favorites svg {
        width: 18px;
        height: 18px;
    }
    /*showcase*/

    .products-inner__swiper-item img{
        height: 240px;
    }
    .products-inner__info h3 {
        font-size: 1.25rem;
    }
    .products-inner__info b {
        font-size: .9rem;
    }
    .products-about__accordion .accordion-link {
        font-size: 12px;
    }
    .products-inner__info .installment-plan .bg-warning {
        padding: 6px 12px;
    }

    .about-swiper .swiper-slide img {
        min-height: 220px;
        max-height: 220px;
    }

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item img {
        height: 160px;
    }
    .photo-gallery-type-1 .photo-gallery__overlay {
        padding: 10px;
    }
    .photo-gallery-type-1 .photo-gallery__overlay h6 {
        font-size: 13px;
    }

    .photo-gallery-type-2 .photo-gallery__item img {
        height: 160px;
    }
    /*photo-gallery*/

    /*category*/
    .category-type-1 .category-item__header {
        min-height: 75px;
    }
    .category-type-1 .category-item__body img {
        min-height: 140px;
        max-height: 140px;
    }
    body[data-container="1200"] .category-type-1 .category-item__body img {
        min-height: 120px;
        max-height: 120px;
    }

    .category-type-3 .category-item {
        padding: 12px;
    }
    .category-type-3 .category-item .col-4 {
        display: none;
    }
    .category-type-3 .category-item .col-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    /*category*/

    .filter-mobile__list .dropdown-menu {
        min-width: 170px;
    }

    .call-request {
        /*padding-top: 30px;*/
        /*padding-bottom: 30px;*/
    }
    .call-request h3 {
        font-size: 18px;
    }
    .call-request-type-2 .arrow-on__wrap {
        top: calc(100% + 36px);
        left: 16px;
    }

    /*advantages*/
    .advantages-item svg {
        width: 50px;
        height: 50px;
    }
    .advantages-item h5 {
        font-size: 14px;
    }
    .advantages-item p {
        font-size: 13px;
    }
    /*advantages*/

    /*documents*/
    .documents-type-1 .documents-item img {
        height: 220px;
    }
    .documents-type-1 .documents-item__overlay h6 {
        font-size: .8rem;
        margin-bottom: .75rem;
    }
    .documents-type-1 .documents-item__overlay .btn {
        font-size: .7rem;
        height: 40px;
    }

    .documents-type-2 .documents-item img {
        height: 220px;
    }
    /*documents*/

    /*news*/
    .news-type-1 .news-item-lg {
        min-height: 300px;
    }
    .news-type-1 .news-item-lg .date {
        font-size: 12px;
    }
    .news-type-1 .news-item__body .date {
        font-size: 12px;
    }
    .news-type-1 .news-item-lg .title-link {
        font-size: 17px;
        line-height: 1.25;
    }
    .news-type-1 .news-item__header {
        min-height: 120px;
        max-height: 120px;
    }
    .news-type-1 .news-item__body {
        padding: .5rem;
    }
    .news-type-1 .news-item__body .title-link {
        font-size: 14px;
    }
    .news-type-1 .news-item__body p {
        font-size: 13px;
    }

    .news-type-2 .news-item__header {
        min-height: 190px;
        max-height: 190px;
    }
    .news-type-2 .news-item__body {
        padding: 30px 12px 16px;
    }
    .news-type-2 .news-item__body .date {
        font-size: 12px;
    }
    .news-type-2 .news-item__body .title-link {
        font-size: 15px;
    }
    .news-type-2 .news-item__body p {
        font-size: 13px;
    }

    .news-type-3 .news-item__header {
        height: 240px;
    }
    .news-type-3 .news-item__body {
        padding-top: 16px;
    }
    .news-type-3 .news-item__title {
        font-size: 15px;
    }
    .news-type-3 .news-item__stub p:not(.news-item__title) {
        font-size: 14px;
    }
    /*news*/

    /*promotions*/
    .shares-type-1 .promotions-item__header {
        min-height: 200px;
        max-height: 200px;
    }
    .shares-type-1 .promotions-item__body .date {
        font-size: 12px;
    }
    .shares-type-1 .promotions-item__body .title-link {
        font-size: 16px;
    }
    .shares-type-1 .promotions-item__body p {
        font-size: 14px;
    }

    .shares-type-2 .promotions-item__header {
        min-height: 200px;
        max-height: 200px;
    }
    .shares-type-2 .promotions-item__body .date {
        font-size: 12px;
    }
    .shares-type-2 .promotions-item__body .title-link {
        font-size: 16px;
    }
    .shares-type-2 .promotions-item__body p {
        font-size: 14px;
    }

    .shares-type-3 .promotions-item__img {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
        flex: 1 0 30%;
    }
    .shares-type-3 .promotions-item__content {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
        flex: 1 0 70%;
    }
    /*promotions*/

    .contact-type-2 .map-container {
        padding: 20px;
    }
    .contact-type-2 .map {
        height: 340px;
    }

    .contact-type-3 .map {
        height: 250px;
    }
    /*map*/

    .basket-item__info {
        padding: 12px 40px 12px 12px;
    }
    .basket-item .close-btn {
        width: 35px;
        height: 35px;
    }
    .basket-item .favorites {
        width: 35px;
        height: 35px;
        top: 35px;
    }
    .basket-item .favorites svg {
        width: 20px;
        height: 20px;
    }
    .basket-item__counter, .basket-item__price {
        padding: 8px;
    }
    .basket-item__counter {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%;
    }
    .basket-item__counter .input-group {
        height: 35px;
    }
    .basket-item__counter .input-group button {
        width: 35px;
    }
    .basket-item__price {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
        flex: 0 0 55%;
        max-width: 55%;
    }

    .checkout .data-section {
        padding: 12px;
    }
    .checkout .data-section p {
        font-size: 13px;
    }
    .checkout table td span {
        font-size: 12px;
    }
    .checkout table td {
        font-size: 12px;
        padding: 12px 5px;
    }
    .checkout .cart-proposals__wrap .btn {
        font-size: 13px;
    }
    .checkout .cart-proposals {
        padding-top: 10px;
    }

    .sidebar-link__list li a {
        padding: 12px 15px;
    }

    .category-element__header {
        height: 170px;
    }

    .contacts-item {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .contacts-item__img {
        min-width: 55px;
        min-height: 55px;
    }
    .contacts-item__img svg {
        width: 18px;
        height: 18px;
    }

    .single-blog__about-item {
        padding: 1rem;
    }

    .page-404::before {
        left: -130px;
    }
    .page-404::after {
        width: 24px;
        height: 24px;
    }
    .page-404__title {
        font-size: 86px;
    }
    .page-404__sub-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .page-404__text-info {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .feedback-form label svg {
        width: 16px;
        height: 16px;
    }
    .feedback-form .form-control {
        font-size: .8rem;
        padding-left: 40px;
    }
    .feedback-form .btn {
        min-height: 45px;
        margin-top: 25px;
    }

    .modal-title {
        font-size: 1rem;
    }
    .modal .btn {
        font-size: 13px;
    }
    .modal-contacts .contacts-list li a {
        font-size: .8rem;
    }
    .modal-message .contacts-list li {
        font-size: 13px;
    }
    .modal-product-question__header img, .modal-short-order__header img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
        flex: 0 0 22%;
        max-width: 22%;
        margin-right: 10px;
    }
    .modal-product-question__header > div, .modal-short-order__header > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 72%;
        flex: 0 0 72%;
    }
    .modal-product-question__header p, .modal-short-order__header p {
        font-size: 13px;
    }
    .modal-product-question__header strong, .modal-short-order__header strong {
        font-size: 15px;
    }

    .nav-bottom__list li a {
        font-size: .6rem;
    }
    .nav-bottom__list li a svg {
        width: 16px;
        height: 16px;
    }
    .nav-bottom__list li a .badge {
        min-width: 14px;
        min-height: 14px;
        font-size: 9px;
        top: 5px;
    }
    .nav-bottom__buttons-list li .btn {
        font-size: 13px;
        padding: 5px;
    }

    .search-field-block {
        padding: 10px 20px;
    }

    .filter-mobile .filter-form__item .form-group span {
        font-size: 14px;
    }
    .filter-mobile .filter-form__item input[type="text"] {
        font-size: 13px;
    }
    .filter-mobile .filter-form__item input[type="text"]::-webkit-input-placeholder {
        font-size: 13px;
    }
    .filter-mobile .filter-form__item input[type="text"]::-moz-placeholder {
        font-size: 13px;
    }
    .filter-mobile .filter-form__item input[type="text"]:-ms-input-placeholder {
        font-size: 13px;
    }
    .filter-mobile .filter-form__item input[type="text"]::-ms-input-placeholder {
        font-size: 13px;
    }
    .filter-mobile .filter-form__item input[type="text"]::placeholder {
        font-size: 13px;
    }
    .filter-mobile .filter-form__item label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .filter-mobile .filter-form__item label::before {
        top: 2px;
    }
    .filter-mobile .filter-form__item label::after {
        top: -2px;
    }
    .filter-mobile .filter-mobile__buttons .btn {
        font-size: 13px;
    }

}
@media (max-width: 320px) {

    section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
        padding-left: 5px;
        padding-right: 5px;
    }

    .btn {
        height: 42px;
        padding: 8px 32px;
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    p {
        margin-bottom: 12px;
    }

    .btn-month {
        height: initial !important;
    }

    .burger-menu__social li a svg {
        width: 22px;
        height: 22px;
    }

    .content-top {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .content-top h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .breadcrumb .breadcrumb-item {
        font-size: .8rem;
    }

    .hero-swiper .swiper-slide .substrate {
        padding: 1rem;
    }
    .hero-swiper .swiper-slide h1 {
        font-size: 1.3rem;
    }
    .hero-swiper .swiper-slide .sub-title {
        margin-bottom: 22px;
    }

    /*showcase*/
    .proposal-type-1 .product-item__header {
        min-height: 160px;
        max-height: 160px;
    }
    .proposal-type-1 .product-item__header span {
        padding: 3px 6px;
    }
    .proposal-type-1 .product-item__header .favorites svg {
        width: 18px;
        height: 18px;
    }
    .proposal-type-1 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-1 .product-item__swiper-item img {
        width: 136px;
        height: 136px;
    }
    .proposal-type-1 .product-item__body a {
        line-height: 1.3;
    }
    .proposal-type-1 .product-item__body .price-retail, .proposal-type-1 .product-item__body .price-wholesale {
        font-size: 12px;
        line-height: 1.3;
    }
    .proposal-type-1 .product-item__body .price-retail del, .proposal-type-1 .product-item__body .price-wholesale del {
        font-size: 13px;
        margin-top: 4px;
    }
    .proposal-type-1 .product-item__footer .links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .proposal-type-1 .product-item__footer .links .btn {
        min-width: 100%;
        font-size: 12px;
        padding: 8px 10px;
        margin-bottom: 5px;
    }
    .proposal-type-1 .product-item__footer .links .btn:last-child {
        margin-bottom: 0;
    }

    .proposal-type-2 .product-item__header {
        min-height: 150px;
        max-height: 150px;
    }
    .proposal-type-2 .product-item__header .favorites svg {
        width: 18px;
        height: 18px;
    }
    .proposal-type-2 .product-item__swiper-item img, body[data-container="1200"] .proposal-type-2 .product-item__swiper-item img {
        width: 130px;
        height: 130px;
    }
    .proposal-type-2 .product-item__footer .theme-btn {
        height: 34px;
        line-height: 1;
    }
    .proposal-type-2 .product-item__footer .theme-btn-icon {
        width: 32px;
        height: 32px;
    }
    /*showcase*/

    .products-inner__swiper-item img{
        height: 210px;
    }

    .about-swiper .swiper-slide img {
        min-height: 270px;
        max-height: 270px;
    }

    /*category*/
    .category-type-1 .category-item__header {
        min-height: 68px;
    }
    .category-type-1 .category-item__header p, .category-element__body p {
        font-size: 13px;
    }
    .category-type-1 .category-item__body img {
        min-height: 120px;
        max-height: 120px;
    }

    .category-type-2 .category-item {
        background-size: 80px;
    }
    .category-type-2 .category-item p {
        font-size: 13px;
    }

    .category-type-3 .category-item p {
        font-size: 13px;
    }
    .category-type-3 .category-item span {
        font-size: 12px;
    }

    .category-type-4 .category-item {
        padding: 10px;
    }
    .category-type-4 .category-item p {
        font-size: 13px;
    }
    /*category*/

    /*photo-gallery*/
    .photo-gallery-type-1 .photo-gallery__item img {
        height: 140px;
    }

    .photo-gallery-type-2 .photo-gallery__item img {
        height: 140px;
    }

    .photo-gallery-type-3 .photo-gallery__item img {
        height: 170px;
    }
    /*photo-gallery*/

    .call-request .btn {
        margin-top: 20px;
    }
    .call-request-type-2 .arrow-on__wrap {
        left: 8px;
    }

    /*documents*/
    .documents-type-1 .documents-item img {
        height: 160px;
    }
    .documents-type-1 .documents-item__overlay {
        padding: 8px;
    }
    .documents-type-1 .documents-item__overlay .btn {
        height: 36px;
    }

    .documents-type-2 .documents-item img {
        height: 160px;
    }
    /*documents*/

    /*news*/
    .news-type-1 .news-item-lg {
        min-height: 260px;
        padding: 1.5rem 1rem;
    }
    .news-type-1 .news-item__header {
        min-height: 100px;
        max-height: 100px;
    }
    .news-type-1 .news-item__body .title-link {
        font-size: 13px;
    }
    .news-type-1 .news-item__body p {
        line-height: 1.45;
    }
    /*news*/

    /*promotions*/
    .shares-type-1 .promotions-item__header {
        min-height: 180px;
        max-height: 180px;
    }
    .shares-type-1 .promotions-item__body p {
        line-height: 1.45;
    }

    .shares-type-2 .promotions-item__header {
        min-height: 180px;
        max-height: 180px;
    }
    .shares-type-2 .promotions-item__body p {
        line-height: 1.45;
    }
    /*promotions*/

    .category-element__header {
        height: 160px;
    }

    /*map*/
    .contact-type-1 .map-block {
        padding: 20px;
    }
    .map-block h5 {
        font-size: 16px;
    }
    .map-contacts__list li {
        margin-bottom: 12px;
    }
    .map-contacts__list li h6 {
        font-size: 14px;
    }
    .map-contacts__list li a, .map-contacts__list li p {
        font-size: 13px;
    }

    .contact-type-3 .map {
        height: 240px;
    }
    /*map*/

    .contacts-item {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .contacts-item p, .contacts-item__content a {
        font-size: 13px;
    }

    .sidebar-item {
        margin-bottom: 10px;
    }
    .sidebar-item h4 {
        font-size: .9rem;
    }

    .catalog-container-sorting li {
        margin-bottom: 8px;
    }
    .catalog-container-sorting li .btn {
        font-size: 12px;
        height: 35px;
        padding: 8px 15px;
    }
    .catalog-container-tags a {
        font-size: 11px;
        height: 28px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    .catalog-container-toggler__mobile .toggle-btn {
        width: 40px;
        height: 40px;
    }

    .basket-item {
        padding: 0 0 100px;
    }
    .basket-item__counter, .basket-item__price {
        min-height: 100px;
    }
    .basket-item__info .basket-item__about .price-retail {
        font-size: 14px;
    }
    .basket-item__counter .input-group {
        max-width: 120px;
        height: 32px;
    }
    .basket-item__counter .input-group button {
        width: 32px;
    }
    .basket-item__counter .input-group input {
        font-size: 13px;
    }
    .basket-item__price .price-retail {
        font-size: 14px;
    }
    .basket-item__price .price-retail del {
        font-size: 13px;
    }

    .checkout .cart-proposal .img {
        min-width: 65px;
        min-height: 65px;
        max-width: 65px;
        max-height: 65px;
    }

    .pagination-list {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .pagination-list li * {
        width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 3px;
    }

    .category-element__header {
        height: 150px;
    }

    .contacts .map {
        height: 260px;
    }
    .contacts-item__parent {
        margin-bottom: 8px;
    }
    .contacts-item__img {
        min-width: 50px;
        min-height: 50px;
        margin-right: 10px;
    }
    .contacts-item__img svg {
        width: 16px;
        height: 16px;
    }
    .contacts-item h6 {
        font-size: .9rem;
    }
    .contacts-item p, .contacts-item__content a {
        font-size: 12px;
    }

    .glotr-b__item__parent {
        margin-bottom: 8px;
    }
    .glotr-b__item img {
        min-height: 80px;
        max-height: 80px;
    }
    .glotr-b .link-list {
        margin-left: -2px;
        margin-right: -2px;
    }
    .glotr-b .link-list li {
        padding-left: 2px;
        padding-right: 2px;
        margin-bottom: 8px;
    }

    .page-404::before {
        width: 140px;
        height: 140px;
        left: -120px;
    }
    .page-404::after {
        width: 20px;
        height: 20px;
    }
    .page-404__title {
        font-size: 72px;
    }
    .page-404__sub-title {
        font-size: 18px;
    }

    .search-field-block {
        min-width: calc(100% - 10px);
    }

    .filter-mobile{
        width: 98%;
    }
    .filter-mobile__list li .btn {
        font-size: 12px;
        height: 40px;
    }
    .filter-mobile__list .dropdown-menu {
        min-width: 140px;
    }
    .filter-mobile__list .dropdown-menu .dropdown-item {
        font-size: 11px;
        padding: 12px 10px;
    }

    .result-item .result-item__img {
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }

    .nav-bottom__buttons-list {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .modal-product-question__header img, .modal-short-order__header img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        margin-right: 8px;
        min-height: 52px;
        max-height: 52px;
    }
    .modal-product-question__header p, .modal-short-order__header p {
        margin-bottom: 3px;
    }

}
