dl.variation{display: none;}
.tingle-modal * {
    box-sizing: border-box
}

.tingle-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -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;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    cursor: pointer;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease
}

.wrap_3s._show_3w {
    z-index: 9999999 !important;
}

.label_39._right_1y._pad100_GR {
    z-index: 99999999 !important;
}

.tingle-modal--noClose .tingle-modal__close, .tingle-modal__closeLabel {
    display: none
}

.tingle-modal--confirm .tingle-modal-box {
    text-align: center
}

.tingle-modal--noOverlayClose {
    cursor: default
}

.tingle-modal__close {
    position: fixed;
    top: 10px;
    right: 28px;
    z-index: 9999;
    padding: 0;
    width: 5rem;
    height: 5rem;
    border: none;
    background-color: transparent;
    color: #f0f0f0;
    font-size: 6rem;
    font-family: monospace;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}

.tingle-modal__close:hover {
    color: #fff
}

.tingle-modal-box {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: auto;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.175, .885, .32, 1.275);
    transition: -webkit-transform .3s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .3s cubic-bezier(.175, .885, .32, 1.275);
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.tingle-modal-box__content {
    padding: 0px
}

.tingle-modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto
}

.tingle-modal-box__footer::after {
    display: table;
    clear: both;
    content: ""
}

.tingle-modal-box__footer--sticky {
    position: fixed;
    bottom: -200px;
    z-index: 10001;
    opacity: 1;
    -webkit-transition: bottom .3s ease-in-out .3s;
    transition: bottom .3s ease-in-out .3s
}

.tingle-enabled {
    height: 100%
}

.tingle-modal--visible .tingle-modal-box__footer {
    bottom: 0
}

.tingle-enabled .tingle-content-wrapper {
    -webkit-filter: blur(12px);
    filter: blur(12px)
}

.tingle-modal--visible {
    visibility: visible;
    opacity: 1
}

.tingle-modal--visible .tingle-modal-box {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.tingle-modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh
}

.tingle-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease
}

.tingle-btn--primary {
    background-color: #3498db
}

.tingle-btn--danger {
    background-color: #e74c3c
}

.tingle-btn--default {
    background-color: #34495e
}

.tingle-btn--pull-left {
    float: left
}

.tingle-btn--pull-right {
    float: right
}

@media (max-width: 540px) {
    .tingle-modal {
        top: 0;
        display: block;
        padding-top: 60px;
        width: 100%;
        max-width: 100vw
    }

    .tingle-modal-box {
        width: auto;
        border-radius: 0
    }

    .tingle-modal-box__content {
        overflow-y: scroll
    }

    .tingle-modal--noClose {
        top: 0
    }

    .tingle-modal--noOverlayClose {
        padding-top: 0
    }

    .tingle-modal-box__footer .tingle-btn {
        display: block;
        float: none;
        margin-bottom: 1rem;
        width: 100%
    }

    .tingle-modal__close {
        top: 0;
        right: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 60px;
        border: none;
        box-shadow: none;
        color: #fff;
        line-height: 55px
    }

    .tingle-modal__close > span {
        height: 40px;
        line-height: 19px;
    }

    .tingle-modal--visible .tingle-modal-box {
        z-index: 9999;
    }

    .tingle-modal__closeLabel {
        display: inline-block;
        vertical-align: middle;
        margin-top: 4px;
        font-size: 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
    }

    .tingle-modal__closeIcon {
        display: inline-block;
        margin-right: .5rem;
        vertical-align: middle;
        font-size: 4rem
    }
}

@supports ((-webkit-backdrop-filter:blur(12px)) or (backdrop-filter:blur(12px))) {
    .tingle-modal {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px)
    }

    @media (max-width: 540px) {
        .tingle-modal {
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px)
        }
    }.tingle-enabled .tingle-content-wrapper {
         -webkit-filter: none;
         filter: none
     }
}

html{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 300
}

* {
    box-sizing: border-box
}

@font-face {
    font-family: 'SF Pro Text';
    src: local('SF Pro Text Light'), local(SFProText-Light), url(./blog/font/sf/subset-SFProText-Light.woff2) format("woff2"), url(./blog/font/sf/subset-SFProText-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Text';
    src: local('SF Pro Text Regular'), local(SFProText-Regular), url(./blog/font/sf/subset-SFProText-Regular.woff2) format("woff2"), url(./blog/font/sf/subset-SFProText-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Text';
    src: local('SF Pro Text Medium'), local(SFProText-Medium), url(./blog/font/sf/subset-SFProText-Medium.woff2) format("woff2"), url(./blog/font/sf/subset-SFProText-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Text';
    src: local('SF Pro Text Bold'), local(SFProText-Bold), url(./blog/font/sf/subset-SFProText-Bold.woff2) format("woff2"), url(./blog/font/sf/subset-SFProText-Bold.woff) format("woff");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'SF Display Compact';
    src: local('SF Compact Display Light'), local(SFCompactDisplay-Light), url(./blog/font/sf/subset-SFCompactDisplay-Light.woff2) format("woff2"), url(./blog/font/sf/subset-SFCompactDisplay-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'SF Display Compact';
    src: local('SF Compact Display Regular'), local(SFCompactDisplay-Regular), url(./blog/font/sf/subset-SFCompactDisplay-Regular.woff2) format("woff2"), url(./blog/font/sf/subset-SFCompactDisplay-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'SF Display Compact';
    src: local('SF Compact Display Medium'), local(SFCompactDisplay-Medium), url(./blog/font/sf/subset-SFCompactDisplay-Medium.woff2) format("woff2"), url(./blog/font/sf/subset-SFCompactDisplay-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'SF Display Compact';
    src: local('SF Compact Display Bold'), local(SFCompactDisplay-Bold), url(./blog/font/sf/subset-SFCompactDisplay-Bold.woff2) format("woff2"), url(./blog/font/sf/subset-SFCompactDisplay-Bold.woff) format("woff");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: local('SF Pro Display Light'), local(SFProDisplay-Light), url(./blog/font/sf/subset-SFProDisplay-Light.woff2) format("woff2"), url(./blog/font/sf/subset-SFProDisplay-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: local('SF Pro Display Regular'), local(SFProDisplay-Regular), url(./blog/font/sf/subset-SFProDisplay-Regular.woff2) format("woff2"), url(./blog/font/sf/subset-SFProDisplay-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: local('SF Pro Display Medium'), local(SFProDisplay-Medium), url(./blog/font/sf/subset-SFProDisplay-Medium.woff2) format("woff2"), url(./blog/font/sf/subset-SFProDisplay-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'SF Pro Display';
    src: local('SF Pro Display Bold'), local(SFProDisplay-Bold), url(./blog/font/sf/subset-SFProDisplay-Bold.woff2) format("woff2"), url(./blog/font/sf/subset-SFProDisplay-Bold.woff) format("woff");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'San Francisco Text Light';
    src: url(../font/SFUIText-Light.eot);
    src: url(../font/SFUIText-Light.eot?#iefix) format("embedded-opentype"), url(../font/SFUIText-Light.woff) format("woff"), url(../font/SFUIText-Light.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'San Francisco Text Semibold';
    src: url(../font/SFUIText-Semibold.eot);
    src: url(../font/SFUIText-Semibold.eot?#iefix) format("embedded-opentype"), url(../font/SFUIText-Semibold.woff) format("woff"), url(../font/SFUIText-Semibold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'San Francisco Text Bold';
    src: url(../font/SFUIText-Bold.eot);
    src: url(../font/SFUIText-Bold.eot?#iefix) format("embedded-opentype"), url(../font/SFUIText-Bold.woff) format("woff"), url(../font/SFUIText-Bold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

h1, h2, h3 {
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    font-weight: 200
}

h1, h2 {
    text-transform: uppercase
}

h1 {
    font-size: 42px;
    padding: 45px 0 0
}

h2 {
    font-size: 36px;
    padding: 20px 0
}

h3 {
    font-size: 24px
}

a:link, a:visited, a:active, a:hover, a.active {
    color: #30cbf2;
    text-decoration: none
}

.no-padding {
    padding: 0 !important
}

.hidden {
    display: none !important
}

.side-active {
    overflow: hidden
}

.side-active .side-nav {
    overflow-y: scroll
}

.side-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color .5s;
    background-color: rgba(0, 0, 0, .3);
    z-index: 999
}

.side-nav_hidden {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0)
}

.side-nav__content {
    width: 80%;
    max-width: 280px;
    transition: transform .5s;
    background-color: #fff;
    will-change: transform;
    backface-visibility: hidden;
    position: absolute;
    right: 0;
    min-height: 100vh
}

.side-nav__content_hidden {
    transform: translateX(103%)
}

#logo {
    width: 150px
}

.header__right-side {
    width: calc(100% - 150px)
}

.user-activity {
    min-width: 180px
}

#nav_desktop {
    margin: auto
}

.show > .btn-secondary.dropdown-toggle {
    background-color: #fff;
    border-color: #003f4e
}

.btn-secondary:focus {
    -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, .5);
    box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.15)
}

.dropdown-menu {
    border-radius: 0;
    opacity: 0;
    margin-top: -5px;
    display: flex;
    visibility: hidden;
    -webkit-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.1);
    -moz-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.1);
    box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.1);
    -webkit-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.show > .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    -webkit-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.where-buy-row .dropdown-menu {
    margin-top: 8px
}

.call-text-num {
    text-align: right
}

.tel-number {
    margin-right: -2px
}

.header__show-menu {
    height: 40px;
    border: none;
    background-color: #fff
}

.cart-items {
    text-align: center
}

.mini-cart-background {
    width: 25px;
    height: 30px;
    background-image: url(https://cdn-server.tiondev.ru/img/icons/menu/cart.svg);
    background-size: contain;
    display: block;
    background-position: center;
    background-repeat: no-repeat
}

.cart-items-number {
    color: #666;
    font-size: 14px;
    position: absolute
}

.login-img {
    margin-right: 15px
}

.subtitle {
    text-align: center;
    font-size: 19px;
    margin-bottom: 30px
}

.button {
    display: inline-block;
    border: 5px solid #c8f4ff;
    background-color: #30cbf2;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    padding: 20px 40px;
    border-radius: 50px;
    color: #fff !important
}

.button:hover, .button_shop:hover {
    text-decoration: none;
    color: #c8f4ff
}

.indent {
    margin-top: 50px
}

.media-body {
    margin-bottom: 50px
}

li {
    font-size: 14px
}

.title_col_10 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    margin-bottom: 5px
}

/* footer {
    overflow: hidden
}

#footer {
    border: 1px solid #ededed;
    border-left: 0;
    border-right: 0;
    padding-top: 5px
}

#footer h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 400;
    text-align: left
}

.social_line {
    padding-top: 10px;
    display: block
}

.social_btn {
    display: inline-block;
    text-align: center
}

.social_btn .social_btn_icon{
	width: 19px;
}

.social_btn:hover {
    color: #686868 !important
}

input[type="text"]:focus {
    border-color: #30caf4;
    box-shadow: 0 0 10px 0 #30caf4;
    outline: 0
}

button:focus {
    outline: 0
}

.subscription-form input {
    padding: 5px 15px;
    width: calc(100% - 46px);
    height: 37px;
    border: 1px solid #e6e6e6
}

.subscription-form button {
    height: 37px;
    line-height: 33px;
    font-size: 14px;
    width: 46px;
    padding: 0;
    margin-left: -6px;
    background-color: #30caf4;
    transition: background-color .2s;
    color: #fff;
    border: 0;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer
}

.subscription-form button:hover {
    background-color: #d8a40b
}

footer a {
    color: #686868 !important;
    line-height: 24px
}

footer a:hover {
    color: #30cbf2 !important
}

#copyright {
    font-size: 12px;
    padding: 20px 0 28px;
    font-weight: 400
}

#copyright .tion-year {
    color: #b0b0b0
} */

.up-scroll-image {
    height: 48px;
    width: 48px;
    background-image: url(https://cdn-server.tiondev.ru/img/icons/up.svg);
    cursor: pointer;
    position: fixed;
    top: -150px;
    right: 100px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: top .6s ease-in-out;
    z-index: 1040
}

.up-scroll-image.active {
    opacity: .1;
    top: 120px;
    transition: top .6s ease-in-out
}

@media (min-width: 375px) and (min-height: 667px) {
    .button {
        font-size: 24px
    }

    .subtitle {
        font-size: 22px
    }
}

@media (max-width: 991px) {
    .where-buy-row .dropdown-menu {
        right: 0;
        left: initial
    }

    ul.nav {
        justify-content: flex-end;
        margin-right: -13px
    }

    .user-activity > div {
        justify-content: flex-end !important
    }

    .call-text-num {
        position: absolute;
        right: 220px;
        width: 185px
    }

    .container.header-block {
        width: 750px
    }

    .where-buy-div {
        min-width: 220px
    }

    .where-buy-row .first {
        margin-right: 14px
    }

    .bg-contacts-page {
        margin-right: -1px
    }

    .header {
        padding: 0 14px
    }

    #nav_desktop > ul > li:nth-child(4) > a {
        padding-right: 8px;
        margin-left: 0
    }
}

@media (max-width: 767px) {
    .container.header-block {
        width: 100%
    }

    #logo {
        height: 39px
    }

    .mobile-nav, .mobile-nav- {
        padding: 12px
    }

    .mobile-nav .nav-item, .mobile-nav- .nav-item {
        list-style-type: none
    }

    .mobile-nav .nav-link, .mobile-nav- .nav-link {
        padding: .5em 0;
        text-transform: uppercase;
        color: #080808 !important;
    }

    .nav-link.link-greeen {
        color: #9c3 !important;
    }

    .mobile-nav .nav-link:after, .mobile-nav- .nav-link:after {
        transform: rotate(-90deg);
        margin: -3px 0 0 5px;
        color: #ababab
    }

    .d-menu {
        border-bottom: 1px solid #e0e0e0;
        padding: 0 0 15px 20px
    }

    .d-menu > .column {
        padding-bottom: 10px
    }

    .d-menu.streth .d-item{
        line-height: 15px;
    }
    .mobile-nav .d-item, .mobile-nav .dropdown-item, .mobile-nav- .d-item, .mobile-nav- .dropdown-item {
        text-transform: uppercase;
        width: 100%;
        color: #7d7d7d;
        padding: 5px 0 0 13px;
        font-size: 14px;
        line-height: 15px;
        font-family: 'Roboto Condensed', sans-serif;
        font-style: normal;
        font-weight: 300;
        text-align: left;
        display: block
    }

    .d-item:hover, .dropdown-item:hover {
        color: #30cbf2 !important
    }

    /* .d-item:before, .dropdown-item:before {
        content: ' - '
    } */

    .d-item.head-link {
        color: #080808 !important;
        font-size: 14px;
        /* padding: 5px 0; */
        padding-top: 12px;
        padding-bottom: 5px;
        margin-left: -16px;
    }
    .d-item.head-link.head-link_new {
        margin-left:-5px;
        padding-top:0px;
        color: #7d7d7d!important;
    }
    .d-item.link-new {
        margin-left: 7px;
    }
}

.where-buy-div {
    margin-top: 2px
}

.where-buy-row {
    flex-direction: row;
    justify-content: flex-end
}

@media (min-width: 1200px) {
    .header {
        padding: 0
    }

    ul.nav {
        margin-right: -40px
    }

    .call-text-num > div {
        font-size: 12px;
        margin-right: 3px
    }

    .call-text-num > div:nth-child(1) {
        margin-right: 2px
    }
}

.container > h2 {
    padding-top: 40px
}

#cookies {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ededed;
    height: 48px;
    z-index: 9999999999;
    opacity: .9;
    font-size: 11px;
    color: #575756
}

#cookies.visible {
    display: block
}

#cookies .container {
    display: table;
    height: 48px;
    text-align: center
}

#cookies .container > div {
    display: table-cell;
    vertical-align: middle
}

#cookies .txt_line a {
    color: #575756;
    margin-left: 15px;
    text-decoration: underline
}

#cookies .ok_button {
    border: 1px solid #575756;
    border-radius: 3px;
    padding: 4px;
    color: #000 !important;
    text-decoration: none !important;
    cursor: pointer
}

#cookies .sec-close {
    color: #575756;
    font-size: 22px
}

#cookies {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ededed;
    height: 48px;
    z-index: 9999999999;
    opacity: .9;
    font-size: 11px;
    color: #575756
}

#cookies.visible {
    display: block
}

#cookies .container {
    display: table;
    height: 48px;
    text-align: center
}

#cookies .container > div {
    display: table-cell;
    vertical-align: middle
}

#cookies .txt_line a {
    color: #575756;
    margin-left: 15px;
    text-decoration: underline
}

#cookies .ok_button {
    border: 1px solid #575756;
    border-radius: 3px;
    padding: 4px;
    color: #000 !important;
    text-decoration: none !important;
    cursor: pointer
}

#cookies .sec-close {
    color: #575756;
    font-size: 22px
}

@media (max-width: 767px) {
    #cookies {
        padding: 5px;
        height: 60px
    }
}

.page-why-order {
    margin: 0 auto 20px
}

.page-why-order h2 {
    margin-bottom: 50px
}

.why-order {
    margin: 30px auto 20px;
    max-width: 340px
}

.title_col_10 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    font-size: 20px;
    line-height: 26px;
    margin: 30px 0 10px
}

.page-why-order img {
    height: 60px
}

@media screen and (max-width: 767px) {
    #cookies .container, #cookies {
        height: 70px
    }

    #cookies .ok_button {
        top: 5px;
        position: relative
    }
}

.p-0 {
    padding: 0
}

.carousel-control-next, .carousel-control-prev {
    width: 5%
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 32px;
    height: 72px;
    opacity: 0
}

.carousel-control-prev-icon:hover {
    background-image: url(https://cdn-server.tiondev.ru/img/slides/arr_left_big.png);
    opacity: 1
}

.carousel-control-next-icon:hover {
    background-image: url(https://cdn-server.tiondev.ru/img/slides/arr_right_big.png);
    opacity: 1
}

ol.carousel-indicators {
    bottom: -35px
}

.carousel-indicators li {
    display: inline-block;
    background-color: #ececec
}

.carousel-indicators .active {
    background-color: #878787
}

h1 + .subtitle {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase
}

.cart-mini {
    margin-top: 20px;
    max-width: 625px;
    position: relative;
    margin-left: 0
}

.cart-mini.last {
    margin: 20px auto
}

h2.head-two-text {
    text-align: center;
    position: relative;
    height: 30px
}

h2.head-two-text > span {
    background-color: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 9;
    text-align: center
}

.features .media {
    margin-bottom: 20px
}

.icon-size {
    height: 25px;
    min-width: 45px
}

.features .media-body {
    margin-bottom: 0
}

.features .mt-0 {
    font-size: 14px;
    line-height: 18px;
    max-width: 90px;
    margin-bottom: 0
}

hr.line-back {
    position: relative;
    top: -36px;
    z-index: 0
}

.product h2 {
    text-align: left;
    text-transform: none
}

h2 a, h2 a:link {
    color: #333 !important
}

.product p {
    max-width: 700px
}

.indent-line {
    border-bottom: 1px solid #ededed;
    margin: 50px 0
}

.vmeste img {
    margin: 30px 0 10px;
    max-height: 50px
}

.vmeste p {
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 10px auto 30px;
    max-width: 135px
}

@media (max-width: 575px) {
    .vmeste img {
      margin: 5px 0 10px;
    }
    .vmeste p {
      margin: 0px auto 30px;
    }
  }

.ring {
    position: relative;
    z-index: 1000;
    left: 50%;
    margin-left: -15px;
    margin-top: 8px;
    background-color: #fff;
    border: 1px solid #30cbf2;
    border-radius: 50px;
    padding: 3px
}

.product .ring {
    left: 40%;
    margin-left: -7px;
    margin-top: 23px
}

.product .ring.predzakaz {
    left: 40%;
    margin-left: -57px;
    margin-top: 23px
}

.cart-mini img {
    height: 30px;
    width: 30px
}

.double-button {
    display: inline-block;
    position: relative;
    border: 1px solid #30cbf2;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 10px 0;
    text-align: center
}

.double-button-product.right, .double-button.right {
    border-left: none
}

.double-button-product.left {
    color: #fff;
    background-color: #30cbf2
}

.double-button:hover, .double-button-product:hover {
    color: #002d63
}

.double-button-product {
    display: inline-block;
    position: relative;
    border: 1px solid #30cbf2;
    padding: 10px 0;
    margin: 15px 0 30px;
    text-align: center
}

.title-form {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px
}

form {
    position: relative;
    max-width: 500px;
    font-size: 14px;
    margin: 20px 0 50px;
    font-family: 'Roboto Condensed', sans-serif
}

.subscription-form1 .subscription-field {
    width: 100%;
    height: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 1px
}

::-webkit-input-placeholder {
    color: #adadad
}

::-moz-placeholder {
    color: #adadad
}

:-moz-placeholder {
    color: #adadad
}

:-ms-input-placeholder {
    color: #adadad
}

.checkbox:not(checked) {
    position: absolute;
    opacity: 0
}

.checkbox + label {
    cursor: pointer
}

.checkbox:not(checked) + label {
    position: relative;
    padding: 0 0 0 40px
}

.checkbox:not(checked) + label:before {
    content: '';
    text-align: center;
    font-size: 16px;
    position: absolute;
    top: 5px;
    left: 0;
    width: 26px;
    height: 26px;
    background: #fff;
    color: #30cbf2;
    border: 1px solid #f2f2f2
}

.checkbox:checked + label:before {
    content: '\2714'
}

.subscription-button {
    width: 160px;
    height: 35px;
    color: #fff;
    cursor: pointer;
    background-color: #30cbf2;
    border: 1px solid #30cbf2;
    font-family: 'Roboto Condensed', sans-serif
}

.block-indent {
    margin: 0 auto 40px
}

.row.cart-mini > img {
    position: absolute
}

.recent-posts > .row {
    padding-bottom: 15px;
    max-width: 520px
}

.recent-wrap > .row {
    border: 1px solid #dbdbdb;
    padding: 3px;
    position: relative;
    overflow: hidden
}

.recent-wrap .post-date {
    width: 40px;
    text-align: center;
    background-color: #30caf4;
    color: #fff;
    font-weight: 600;
    padding-top: 7px;
    padding-left: 0;
    padding-right: 0
}

.recent-wrap .thumb-img {
    padding: 0 15px 0 3px
}

.recent-wrap .post-content {
    width: calc(100% - 160px);
    font-size: 14px
}

.recent-wrap .post-content a {
    color: #686868;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif
}

.post-date .day {
    font-size: 24px
}

.post-date .month {
    margin-top: -5px;
    text-transform: lowercase
}

.recent-posts {
    margin: 20px auto 40px
}

.site-banner {
    width: 1140px;
    height: 332px;
    margin: auto
}

.btn-watsup{
    margin-right: 20px;
    background: none;
    border: none;
    width: 25px;
    cursor: pointer;
}
.wa-btn{
    width: 25px;
    position: relative;
    left: -7px;
}
.all-page-shadow {
    position: fixed;
	z-index: 1001;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color .5s;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
}
.all-page-shadow.active{
    background: rgba(0, 0, 0, 0.5);
    pointer-events: unset;
}
#watsupModal {
	position: fixed;
    z-index: 1002;
    right: 0;
	left: 0;
    top: -100%;
	display: block;
	max-width: 500px;
	margin: auto;
    transition: top 0.5s ease 0s;
}
#watsupModal.active {
    top: 5.75rem;
}
@media (min-width: 576px){
    .modal-dialog {
        margin: 5.75rem auto;
    }
}
#watsupModal .modal-header .close {
	margin-left: auto;
}
#watsupModal h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}
#watsupModal .checkbox-confirm {
    width: 20px;
    height: 20px;
    margin-top: 13px;
}
#watsupModal .confirm {
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    color: #333;
    font-weight: 300;
}
#watsupModal .note {
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 300;
}
#watsupModal #watsApp-btn-mob {
    display: block;
    height: 45px;
    width: 100%;
    max-width: 180px;
    margin: auto;
    margin-bottom: 30px;
    padding-top: 9px;
    background: #9c3;
    border: 1px solid #9c3;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #fff !important;
    transition: 0.2s linear;
}
#watsupModal #watsApp-btn-mob {
    opacity: 1;
    pointer-events: auto;
}
#watsupModal #watsApp-btn-mob.disabled-btn {
    opacity: 0.5;
      pointer-events: none;
}

#logo img.default {
    height: 60px
}

 #logo img.action, /*#footer img.action,*/ #logo img.action-2, #logo img.action-presents, #logo img.action-dark, #logo img.darkblue-dot, #logo img.cornflowerblue-dot, #logo img.cornflowerblue-dot2, #logo img.blue-2,#logo img.purple-2, #logo img.tion15 {
    display: none;
    height: 60px
}

.header__show-menu {
    background: none
}

/* #footer .social {
    padding: 20px 15px
} */

.widget_shopping_cart_content .mini-cart-item-info > .mini-cart-item-subtotal > span.quantity {
    font-size: 12px;
    color: #a4a4a4
}

/* footer {
    padding-top: 40px;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif
}

#footer {
    border: 1px solid #ededed;
    border-left: 0;
    border-right: 0;
    padding-top: 5px
}

#footer ul {
    list-style-position: inside;
    list-style-type: none;
    padding: 0;
    font-size: 14px;
    font-weight: 300
}

#footer h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 400;
    text-align: left;
    text-transform: capitalize
}

#footer .subscription {
    font-size: 16px;
    font-weight: 400;
    margin-top: 17px;
    margin-bottom: 10px
}

#footer .social {
    padding: 20px 15px
}

#subscribe_footer {
    position: relative
}

#subscribe_footer > input {
    width: 100%
}

#subscribe_footer > button {
    width: 100px;
    margin: auto;
    margin-top: 10px
}

#footer img.pay {
    max-width: 150px;
    padding: 10px 0
}

.social .flag {
    max-width: 100px;
    margin: 15px auto 0
}

.flag span {
    padding-left: 7px
}

a.flag span {
    color: #333
}

.social_line {
    padding-top: 10px;
    display: block
}

.social_btn {
    display: inline-block;
    text-align: center;
    padding-left: 5px
}

.social_btn:hover {
    color: #686868 !important
}

input[type="text"]:focus, textarea:focus {
    border-color: #30caf4;
    box-shadow: 0 0 10px 0 #30caf4;
    outline: 0
}

button:focus {
    outline: 0
}

.border-red {
    border-color: red !important
}

.subscription-form input {
    padding: 5px 10px;
    width: calc(100% - 46px);
    height: 37px;
    border: 1px solid #e6e6e6;
    font-family: 'Roboto Condensed', sans-serif
}

.subscription-form button {
    height: 37px;
    line-height: 33px;
    font-size: 14px;
    width: 46px;
    padding: 0;
    margin-left: -6px;
    background-color: #30caf4;
    transition: background-color .2s;
    color: #fff;
    border: 0;
    cursor: pointer
}

.subscription-form button:hover {
    background-color: #d8a40b
}

#footer a {
    color: #686868;
    line-height: 24px
}

footer .media-body {
    margin-bottom: 0
}

footer .media img {
    max-width: 35px
}

footer a:hover {
    color: #30cbf2 !important
}

#copyright {
    font-size: 12px;
    padding: 20px 0 28px;
    font-weight: 400
}

#copyright .tion-year {
    color: #b0b0b0
}

#footer img.default, #footer img.grey-logo {
    max-width: 150px
}

#footer img.grey-logo {
    display: none
}

#footer img.action {
    display: none;
    height: 60px
}

#footer .social {
    padding: 20px 15px
}

#footer .logo_sk {
    top: 20px
}

.subscribe label {
    padding: 10px 0 0;
    font-size: 11px;
    line-height: 16px;
    position: relative
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

.subscribe {
    line-height: 16px;
    padding-bottom: 10px
}

#footer .subscribe a {
    line-height: 16px;
    color: #03b8fa !important
}

#footer .sk-block {
    margin-top: 0 !important
}

#footer .sk-block img {
    margin-top: 20px;
    margin-bottom: 15px
}

#footer .sk-block p {
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    color: #666
}

#footer .second-block {
    max-width: 150px;
    padding-left: 40px;
    margin: 0 auto
}

#footer .third-block {
    max-width: 267px !important;
    margin: 0 auto
}

@media (max-width: 1199px) {
    #footer ul {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1
    }

    #footer .second-block {
        padding-left: 15px
    }
}

@media (max-width: 767px) {
    #footer .social, #footer .sk-block {
        margin: auto;
        max-width: 170px
    }
}

@media (max-width: 991px) {
    .product .ring.predzakaz {
        margin-left: -47px;
    }

    .double-button-product.predzakaz {
        padding-right: 17px;
    }

    #footer {
        border-bottom: none
    }
} */

@media (max-width: 991px) {
    .hidden-md-down {
        display: none !important
    }
}

@media (max-width: 425px) {
    .product .ring.predzakaz {
        margin-top: 49px;
        margin-left: -40px;
    }

    .double-button-product.predzakaz {
        padding-right: 0px;
    }
}

/* @media (max-width: 767px) {
    #footer .social {
        margin: auto;
        max-width: 170px !important
    }
} */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100
}

.skip-link:focus {
    top: 0
}

body {
    overflow-x: hidden
}

.hidden {
    display: none
}

a:link, a:visited, a:active, a:hover, a.active {
    color: #30cbf2;
    text-decoration: none
}

.header {
    display: flex;
    height: 100px;
    align-items: center
}

#logo {
    width: 150px
}

.header__right-side {
    width: calc(100% - 150px)
}

ul.nav {
    justify-content: center
}

ul.nav-2{
    list-style: none;
    padding-left: inherit;
}
ul.nav-2 .nav-link{
    color: #000;
    position: initial;
    border-bottom: none;
}
ul.nav-2 .dropdown-menu.bg-page{
    width: 190px;
    left: -175px;
    top: -15px;
}
ul.nav-2 .dropdown-menu.bg-page.bg-page-small{
    width: 120px;
    min-width: 120px;
    left: -105px;
    top: -15px;
}

ul.nav-2 .dropdown-menu.bg-page.bg-page-big{
    width: 195px;
    left: -180px;
}
ul.nav-2 .dropdown-menu.bg-page.bg-page-big2{
    width: 255px;
    left: -242px;
}

.bg-page.bg-shop-page{
    right:-260px;
    left:initial;
}

.user-activity {
    min-width: 180px
}

#nav_desktop {
    margin: auto;
    padding-left: 10px
}

.nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: #666 !important;
    font-size: 19px;
    padding: 5px 0;
    margin-right: 25px
}

.link-green {
    color: #9c3 !important;
}

a.nav-link.blue-menu-btn {
    color: #fff !important;
    background: #30cbf2;
    border: 1px solid #30cbf2;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 4px;
    border-radius: 5px;
}

.dropdown:hover a.nav-link.blue-menu-btn, .show a.nav-link.blue-menu-btn {
    color: #666 !important;
    background: transparent;
}

.last-li .nav-link {
    padding-right: 0
}

.dropdown-menu {
    top: 99%;
    border-radius: 0;
    opacity: 0;
    margin-top: 0;
    display: flex;
    visibility: hidden;
    -webkit-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.1);
    -moz-box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.1);
    box-shadow: 0 2px 5px 0 rgba(30, 30, 30, 0.1);
    -webkit-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.show > .dropdown-menu, .dropdown:hover > .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    -webkit-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

a.nav-link {
    position: relative;
    border-bottom: 1px solid transparent;
    z-index: 2000
}

a.nav-buy {
    border: 1px solid #30cbf2;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 4px;
    border-radius: 5px
}

.dropdown:hover > a.nav-link, .show > a.nav-link {
    border-color: #30cbf2
}

.dropdown:hover > a.nav-buy, .show > a.nav-buy {
    border: 1px solid transparent;
    border-radius: 0;
    border-bottom: 1px solid #30cbf2
}

.where-buy-row {
    float: right
}

.where-buy-row .dropdown-menu {
    margin-top: 8px
}

.dropdown-menu .dropdown-item {
    font-size: 15px;
    line-height: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    text-align: left;
    display: block;
    font-weight: 300;
    color: #000;
    padding: 0 24px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    transition: color .3s
}

.dropdown-item.indent-link {
    margin-bottom: 20px
}

.dropdown-item.active {
    color: #30cbf2 !important
}

.call-text-num {
    text-align: right
}

a svg #lk-img, a svg #lk-circle {
    fill: #003f4e
}

a svg:hover #lk-img, a svg:hover #lk-circle {
    fill: #30cbf2
}

.call-text-num > div {
    text-transform: uppercase;
    font-size: 12px
}

.tel-number {
    margin-right: -3px;
    line-height: 37px
}

.tel-number > a {
    display: inline-block;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400
}

.header__show-menu {
    height: 40px;
    border: none;
    margin-top: -5px;
}

#nav_desktop .dropdown-menu {
    padding-bottom: 1.2em
}

.dropdown-item.active, .dropdown-item:active {
    background-color: transparent
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
    color: #00c9fc !important
}

.dropdown-item.head-link, .dropdown-item.head-link, .dropdown-item.head-link:focus, .dropdown-item.head-link:hover {
    font-weight: 400;
    color: #000 !important;
    margin: 5px 0 10px
}

.dropdown-toggle::after {
    margin-left: 15px;
    border-right: none;
    border-left: none;
    content: none
}

.bg-page {
    background: rgba(255, 255, 255, 0.98)
}

.bg-page.bg-contacts-page {
    right: 0;
    left: initial
}

.where-buy-row .first {
    margin-right: 5px
}

a.hotels {
    display: none
}

.header__right-side .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.no-gutters > .col, .no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.header__right-side .no-gutters {
    margin-right: 0;
    margin-left: 0
}

.header__right-side .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav > li > a {
    padding: 5px 0
}

.nav > li > a:hover, .nav > li > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: transparent
}

.nav > li > a.nav-buy {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 4px
}

.user-activity .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.user-activity .btn {
    border-radius: .25rem
}

.user-activity .where-buy-div {
    margin-top: 2px
}

#logo img.default {
    height: 60px
}

#logo img.action, #footer img.action, #logo img.action-2, #logo img.action-presents, #logo img.action-dark, #logo img.darkblue-dot, #logo img.cornflowerblue-dot, #logo img.cornflowerblue-dot2, #logo img.blue-2 {
    display: none;
    height: 60px
}

.dropdown-menu .dropdown-item {
    position: relative
}

#cart_wrapper .quantity {
    height: auto;
    overflow: visible
}

#nav_mobile a.btn-secondary {
    background: #9c3;
    color: #fff;
    border: none;
    font-size: 14px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 4px;
    max-height: 35px
}

@media (min-width: 1200px) {
    ul.nav {
        margin-right: -90px
    }
}

@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important
    }
}

@media (max-width: 575px) {
    .hidden-xs-down {
        display: none !important
    }
}

@media (min-width: 576px) {
    .user-activity .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .hidden-sm-up {
        display: none !important
    }
}

@media (min-width: 768px) {
    .user-activity .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .hidden-md-up {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .user-activity .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .header__right-side .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .header__right-side .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .call-text-num > div {
        font-size: 12px;
        margin-right: 3px
    }
}

@media (max-width: 1199px) {
    #nav_desktop {
        margin: 0
    }

    #home .user-activity {
        width: 100%;
        max-width: 100%
    }
}

@media (max-width: 1199px) {
    ul.nav {
        float: right
    }

    #nav_desktop > ul > li:nth-child(4) > a {
        padding-right: 13px;
        margin-left: -1px
    }

    .call-text-num > div:nth-child(1) {
        margin-right: 2px
    }

    .where-buy-row .second {
        margin-top: 1px
    }

    .call-text-num {
        width: 185px;
        margin-right: 0
    }

    .wa-btn {
        top: -4px;
        left: 10px;
    }

    .call-text-num:before {
        display: none
    }

    .call-text-num > div {
        font-size: 11px
    }

    .header {
        padding: 0 10px
    }

    .where-buy-row .first {
        margin-right: 12px
    }

    .nav-link {
        font-size: 17px;
        padding: 5px 0
    }
}

@media (max-width: 991px) {
    .where-buy-row .dropdown-menu {
        right: 0;
        left: initial
    }

    ul.nav {
        justify-content: flex-end;
        margin-right: -13px
    }

    .user-activity > div {
        justify-content: flex-end !important
    }

    .call-text-num {
        position: absolute;
        right: 220px;
        width: 185px
    }

    .container.header-block {
        width: 100%
    }

    .where-buy-div {
        min-width: 220px
    }

    .where-buy-row .first {
        margin-right: 14px
    }

    .where-buy-row .second {
        margin-right: 15px
    }

    .where-buy-row > .col-7 {
        margin-top: -1px
    }

    .header {
        padding: 0 14px
    }

    .bg-page.bg-shop-page {
        right: -180px;
        left: initial
    }

    .last-li .nav-link {
        margin-right: 30px
    }

    #nav_desktop {
        margin-top: 10px
    }

    #nav_desktop > ul > li:nth-child(4) > a {
        margin-right: 15px;
        padding-right: 11px;
        padding-left: 11px
    }

    #nav_desktop > ul > li:nth-child(3) > a {
        margin-right: 15px
    }
    .bg-page.bg-shop-page{
        right:-90px;
        left:initial;
    }

    .bg-page.bg-product-page{
        /* right:-180px; */
        left:initial;
    }

    ul.nav-2 .dropdown-menu.bg-page.bg-page-filters {
        left:-240px;
        top: -10px;
    }
}

@media (max-width: 825px) {
    .nav-link {
        font-size: 14px
    }
}

@media (max-width: 767px) {
    .call-text-num {
        right: 160px;
        top: 0
    }
}

@media (max-width: 736px) {
    .call-text-num {
        right: 152px;
        top: 0
    }

    #logo a .default, #logo a .action {
        height: 45px
    }
}

@media (max-width: 320px) {
    #logo a {
        width: 100px;
        margin-top: 5px
    }
}

@media (max-width: 575px) {
    .where-buy-row .second.user-block-login-cart {
        width: 135px;
        justify-content: space-around;
    }

    .where-buy-row .second {
        margin-top: 0
    }

    .login-img {
        margin-right: 10px
    }

    .where-buy-row .second {
        margin-right: 0
    }
}

@media (max-width: 1200px) {
    a.nav-link {
        z-index: 5
    }
}

.user-activity .dropdown > a {
    width: 92px;
    height: 30px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding: 4px 12px;
    background: #30cbf2;
    border: 1px solid #30cbf2;
    line-height: 19px;
    cursor: pointer
}

.user-activity .dropdown > a:hover {
    border: 1px solid #003f4e;
    background: transparent;
    color: #003f4e
}

.second.user-block-login-cart {
    position: relative;
    width: 77px;
    height: 28px;
    z-index: 5
}

.mini-cart-background {
    width: 30px;
    height: 25px;
    background-image: url(https://cdn-server.tiondev.ru/img/icons/menu/cart.svg);
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    background-size: 30px 23px;
    margin-top: 2px;
    margin-right: 7px
}

.cart_label.not-empty .mini-cart-background {
    background-image: url(https://tion.ru/wp-content/plugins/GDS/images/cart_white.svg)
}

.cart_label.not-empty.active .mini-cart-background, .cart_label.loading .mini-cart-background {
    background-image: url(https://tion.ru/wp-content/plugins/GDS/images/cart_green.svg)
}

.login-button {
    display: inline-block;
    width: 29px;
    height: 26px;
    margin-top: 2px
}

a svg #lk-img, a svg #lk-circle {
    fill: #003f4e
}

a svg:hover #lk-img, a svg:hover #lk-circle {
    fill: #30cbf2
}

.widget_shopping_cart {
    position: absolute;
    right: -7px;
    top: 0;
    width: 40px;
    height: 30px
}

.cart-items {
    text-align: center
}

.cart-items-number {
    color: #666;
    position: absolute;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    left: 0;
    right: 0
}

.widget_shopping_cart .yit-mini-cart-icon {
    position: relative;
    width: 43px;
    height: 16px;
    display: block;
    margin-left: -3px
}

.widget_shopping_cart .cart_label {
    padding: 0;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 0;
    z-index: 899;
    position: absolute;
    top: 0;
    right: 7px;
    border-radius: 4px;
    height: 30px;
    width: 43px;
    cursor: pointer;
    -moz-transition: box-shadow .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: box-shadow .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: box-shadow .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: box-shadow .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.widget_shopping_cart .cart_label > a {
    z-index: 906;
    position: absolute;
    margin-left: 4px
}

.widget_shopping_cart .cart_label + .cart_wrapper {
    position: absolute;
    display: block;
    right: 7px;
    top: 35px;
    border: 1px solid #9c3;
    min-width: 440px;
    margin-top: -3px;
    z-index: 895;
    background: #fff;
    border-radius: 4px;
    padding: 5px 0 0;
    border-top-right-radius: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.widget_shopping_cart .cart_label.not-empty.active + .cart_wrapper, .widget_shopping_cart .cart_label.loading + .cart_wrapper {
    opacity: .95;
    visibility: visible;
    -webkit-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.widget_shopping_cart .cart_label + .cart_wrapper:before {
    content: " ";
    display: block;
    width: 41px;
    height: 12px;
    border: 1px solid #fff;
    border-bottom: 0;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: -6px
}

.widget_shopping_cart .cart_label.not-empty {
    background: #9c3;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0 0 2px 0 #99cc34;
    -moz-box-shadow: 0 0 2px 0 #99cc34;
    box-shadow: 0 0 2px 0 #99cc34
}

.widget_shopping_cart .cart_label.not-empty span.cart-items-number {
    color: #fff
}

.widget_shopping_cart .cart_label.not-empty.active span.cart-items-number, .widget_shopping_cart .cart_label.loading span.cart-items-number {
    color: #9c3
}

.widget_shopping_cart .cart_label.not-empty.active, .widget_shopping_cart .cart_label.loading {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.widget_shopping_cart .cart_label:after {
    content: " ";
    display: block;
    width: 43px;
    height: 33px;
    border: 1px solid #9c3;
    border-bottom: 0;
    background-color: #fff;
    margin-top: -1px;
    margin-left: -1px;
    position: absolute;
    right: -1px;
    top: 0;
    opacity: 0;
    z-index: 900;
    border-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    visibility: hidden;
    -webkit-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0 0.3s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

.widget_shopping_cart .cart_label.not-empty.active:after, .widget_shopping_cart .cart_label.loading:after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: visibility 0s, opacity .3s cubic-bezier(0.45, 0.05, 0.55, 0.95)
}

ul.cart_list.product_list_widget {
    list-style: none;
    margin: 0;
    padding: 0 15px
}

.product_list_widget li {
    font: 300 14px / 22px Roboto;
    overflow: visible;
    margin-left: 10px;
    padding: 8px 0 4px;
    position: relative;
    margin-bottom: 2px;
    min-width: 65px;
    border-bottom: 1px dashed #9c3
}

.product_list_widget li.empty {
    padding: 20px 0;
    border-color: transparent
}

.blockUI.blockOverlay:before {
    height: 12px;
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -6px;
    display: block;
    content: "";
    background: url(https://tion.ru/wp-content/themes/mindig/theme/assets/images/search.gif) no-repeat center;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0, 0, 0, .75)
}

.widget_shopping_cart_content .cart_list li > a.remove {
    position: absolute;
    margin: 0;
    width: 10px;
    height: 10px;
    background: url(https://tion.ru/wp-content/plugins/TIONDEV/public/css/images/cross-green.svg) center top no-repeat;
    left: -19px;
    top: 15px;
    transition: none;
    text-indent: -9999px;
    float: left
}

.widget_shopping_cart_content .cart_list li > a.remove:hover {
    background: url(https://tion.ru/wp-content/plugins/TIONDEV/public/css/images/cross-red.svg) center top no-repeat
}

ul.cart_list.product_list_widget .mini-cart-thumb {
    display: none
}

.widget_shopping_cart_content .mini-cart-item-info {
    float: none;
    width: 100%;
    padding-left: 0;
    display: inline-block;
    min-width: 199px;
    line-height: 1.5em;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #383838
}

.widget_shopping_cart_content a.button.wc-forward.btn-flat {
    background-color: #9c3;
    border: 0;
    border-color: #9c3;
    border-top-style: solid;
    border-top-width: 1px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    text-transform: unset;
    font-weight: 300;
    display: inline-block;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    transition: background-color .3s;
    text-align: center;
    width: 100%;
    font-size: 16px;
    padding: 7px 18px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    color: #fff
}

.widget_shopping_cart_content a.button.wc-forward.btn-flat:hover {
    background-color: #fff !important;
    color: #9c3 !important
}

.widget_shopping_cart_content .quantity {
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    float: left
}

.widget_shopping_cart_content p.total {
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    border-top: none;
    width: 100%;
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    height: 23px
}

.widget_shopping_cart_content p.total span {
    text-align: left;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    font-size: 16px
}

.widget_shopping_cart_content p.buttons {
    margin-bottom: 0
}

.widget_shopping_cart_content .mini-cart-item-info > a, .widget_shopping_cart_content .mini-cart-item-info > .mini-cart-item-subtotal .subtotal {
    float: left;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #383838;
    cursor: default
}

.widget_shopping_cart_content .mini-cart-item-info > .mini-cart-item-subtotal {
    float: right;
    display: block
}

.widget_shopping_cart_content .mini-cart-item-info > .mini-cart-item-subtotal .subtotal {
    min-width: 75px;
    text-align: right
}

.widget_shopping_cart_content .mini-cart-item-subtotal:before, .widget_shopping_cart_content .mini-cart-item-subtotal:after {
    content: '';
    display: block;
    clear: both
}

.product_list_widget .mini-cart-item-subtotal > .quantity > span {
    display: none
}

.product_list_widget .mini-cart-item-subtotal > .quantity > span.qty-input {
    display: block;
    width: 71px;
    height: 20px;
    position: relative;
    padding: 0 22px
}

.widget_shopping_cart_content .quantity .qty-input button {
    width: 22px;
    height: 22px;
    padding: 0;
    display: block;
    vertical-align: top;
    line-height: 1;
    background: #fff;
    color: #aaa;
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 300;
    background: #fff;
    color: #000;
    font-size: 26px;
    line-height: 21px;
    border-color: transparent;
    top: -1px
}

.widget_shopping_cart_content .quantity .qty-input button:hover {
    background: #fff;
    color: #666;
    cursor: pointer
}

.widget_shopping_cart_content .quantity .qty-input button.btn-minus {
    left: 0
}

.widget_shopping_cart_content .quantity .qty-input button.btn-plus {
    right: 0;
    font-size: 20px
}

.widget_shopping_cart_content .quantity .qty-input input {
    text-align: center;
    -moz-appearance: textfield;
    background-color: #9c3;
    color: #fff;
    border: 1px solid #9c3;
    border-radius: 4px;
    height: 25px;
    width: 25px;
    margin-top: -2px;
    margin-left: 2px;
    position: absolute;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif
}

:focus {
    outline: none;
    text-decoration: none !important
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.widget_shopping_cart_content .product_list_widget .mini-cart-item-info > .mini-cart-item-subtotal.montage-mini-subtotal > .quantity {
    display: none
}

.widget_shopping_cart_content .product_list_widget .mini-cart-item-info a.montage-linker {
    font-size: 14px;
    color: #9c3;
    cursor: pointer;
    text-transform: lowercase
}

.gds-promo-input {
    position: relative
}

.gds-promo-input .promo-popup-wrapper {
    position: absolute;
    right: 0;
    margin-top: 10px;
    background: #eee;
    border-top: 3px solid #888;
    padding: 8px 30px 8px 8px;
    width: 300px;
    display: none;
    z-index: 999999;
    max-width: 90vw
}

.gds-promo-input {
    position: relative
}

.woocommerce .gds-promo-input > input[type="text"], .gds-promo-input > input[type="text"] {
    height: 34px;
    box-sizing: border-box;
    border-color: #99cc34;
    color: #444;
    font-weight: 400;
    width: 100%;
    max-width: 185px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif
}

.woocommerce .gds-promo-input > input[type="text"]:focus, .gds-promo-input > input[type="text"]:focus {
    border-color: #99cc34;
    box-shadow: 0 0 10px 0 #99cc34
}

#promo_input_zone input {
    width: 100%;
    border: 1px solid #9c3;
    text-align: center;
    height: 36px;
    border-left: 0;
    border-right: 0;
    font-family: 'Roboto Condensed', sans-serif;
    max-width: none
}

#promo_input_zone .gds-promo-input .promo-popup-wrapper {
    top: -54px !important;
    left: 7px;
    width: 230px;
    height: 38px;
    line-height: 15px
}

.call-text-num:before {
    content: ' ';
    height: 40px;
    background: url(https://cdn-server.tiondev.ru/img/icons/phone.svg) left center no-repeat;
    position: absolute;
    width: 37px;
    margin-top: -1px;
    right: 108px
}

.cash-po-fact {
    color: #a4a4a4;
    font-weight: 400;
    position: absolute;
    top: 10px;
    right: 0;
    white-space: nowrap;
    line-height: 1;
    text-align: right;
    font-size: 11px
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important
    }
}
@media (max-width: 575px) {
    .widget_shopping_cart{
        right: -10px;
    }
    .btn-watsup {
        margin-right: 5px;
    }
    .wa-btn {
        left: -12px;
        top: 2px;
    }
	.phone-icon-mob {
		position: absolute;
		display: inline;
		height: 26px;
		width: 31px;
        margin-left: -6px;
		overflow: hidden;
	}
    .phone-icon-mob svg {
		position: relative;
    	height: 26px;
    }
	.phone-icon-mob .mgo-number-13230{
		position: absolute;
		left: 0px;
		height: 26px;
		width: 28px;
		font-size: 7px;
		color: transparent !important;
	}
    .login-button svg{
        height: 25px;
    }
	.login-img{
		margin-left: 28px;
	}
}

.new-product-pulse-icon{
    position: absolute;
    top:0;
    right: 55px;
    height:60px;
    width:60px;
    cursor:pointer;
    border-radius:80px;
    background-color:#77D519;
}

.new-product-pulse-icon img{
    margin-top: 24px;
    margin-left: 2px;
    width: 40px;
}
.new-product-pulse-icon .pulse-block-green{
    position:absolute;
    left:-10px;
    top: -10px;
}
.pulse-block-green{
    height:170px;
}
.pulse-block-green a{
    position:absolute;
    left:0;
    right:0;
    width:165px;
    margin:auto;
    z-index:3;
}
.pulse-block-green .pulse1{
    position:absolute;
    width:70px;
    height:70px;
    top:5px;
    left:5px;
    bottom:0;
    right:0;
    z-index:1;
    opacity:0;
    border:none;
    -webkit-animation:pulsejg1 4s linear infinite;
    -moz-animation:pulsejg1 4s linear infinite;
    animation:pulsejg1 4s linear infinite;
    -webkit-border-radius:999px;
    -moz-border-radius:999px;
    border-radius:999px;
    -webkit-box-shadow:inset 0 0 15px 10px rgba(136,243,29, 1);
    -moz-box-shadow:inset 0 0 15px 10px rgba(136,243,29, 1);
    box-shadow:inset 0 0 15px 10px rgba(136,243,29, 1);
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
.pulse-block-green .pulse2{
    position:absolute;
    width:80px;
    height:80px;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index:2;
    opacity:0;
    border:none;
    -webkit-animation:pulsejg2 4s linear infinite;
    -moz-animation:pulsejg2 4s linear infinite;
    animation:pulsejg2 4s linear infinite;
    -webkit-border-radius:999px;
    -moz-border-radius:999px;
    border-radius:999px;
    -webkit-box-shadow:inset 0 0 12px 5px rgba(136,243,29, 1);
    -moz-box-shadow:inset 0 0 12px 5px rgba(136,243,29, 1);
    box-shadow:inset 0 0 12px 5px rgba(136,243,29, 1);
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
@media (max-width: 767px) {
    .new-product-pulse-icon{
        right: 70px;
    }
}
@media (max-width: 465px) {
    .new-product-pulse-icon{
        right: 30px;
    }
}
@-webkit-keyframes pulsejg1{
    0%{
        -webkit-transform:scale(.6);
        opacity:0;
    }

    50%{
        -webkit-transform:scale(.6);
        opacity:0;
    }

    60%{
        -webkit-transform:scale(.9);
        opacity:.2;
    }

    70%{
        -webkit-transform:scale(1.1);
        opacity:.35;
    }

    80%{
        -webkit-transform:scale(1.25);
        opacity:.2;
    }

    100%{
        -webkit-transform:scale(1.4);
        opacity:0;
    }
}
@-moz-keyframes pulsejg1{
    0%{
        -moz-transform:scale(.6);
        opacity:0;
    }

    50%{
        -moz-transform:scale(.6);
        opacity:0;
    }

    60%{
        -moz-transform:scale(.9);
        opacity:.2;
    }

    70%{
        -moz-transform:scale(1.1);
        opacity:.35;
    }

    80%{
        -moz-transform:scale(1.25);
        opacity:.2;
    }

    100%{
        -moz-transform:scale(1.4);
        opacity:0;
    }
}
@keyframes pulsejg1{
    0%{
        transform:scale(.6);
        opacity:0;
    }

    50%{
        transform:scale(.6);
        opacity:0;
    }

    60%{
        transform:scale(.9);
        opacity:.1;
    }

    70%{
        transform:scale(1.1);
        opacity:.25;
    }

    80%{
        transform:scale(1.25);
        opacity:.1;
    }

    100%{
        transform:scale(1.4);
        opacity:0;
    }
}
@-webkit-keyframes pulsejg2{
    0%{
        -webkit-transform:scale(.6);
        opacity:0;
    }

    40%{
        -webkit-transform:scale(.8);
        opacity:.05;
    }

    50%{
        -webkit-transform:scale(1);
        opacity:.1;
    }

    60%{
        -webkit-transform:scale(1.1);
        opacity:.3;
    }

    80%{
        -webkit-transform:scale(1.2);
        opacity:.1;
    }

    100%{
        -webkit-transform:scale(1.3);
        opacity:0;
    }
}
@-moz-keyframes pulsejg2{
    0%{
        -moz-transform:scale(.6);
        opacity:0;
    }

    40%{
        -moz-transform:scale(.8);
        opacity:.05;
    }

    50%{
        -moz-transform:scale(1);
        opacity:.1;
    }

    60%{
        -moz-transform:scale(1.1);
        opacity:.3;
    }

    80%{
        -moz-transform:scale(1.2);
        opacity:.1;
    }

    100%{
        -moz-transform:scale(1.3);
        opacity:0;
    }
}
@keyframes pulsejg2{
    0%{
        transform:scale(.6);
        opacity:0;
    }

    40%{
        transform:scale(.8);
        opacity:.05;
    }

    50%{
        transform:scale(1);
        opacity:.1;
    }

    60%{
        transform:scale(1.1);
        opacity:.3;
    }

    80%{
        transform:scale(1.2);
        opacity:.1;
    }

    100%{
        transform:scale(1.3);
        opacity:0;
    }
}