.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes stretch {
    0% {
        color: #4CAF50
    }
    100% {
        color: #F9AA33
    }
}

@keyframes stretch {
    0% {
        color: #4CAF50
    }
    100% {
        color: #F9AA33
    }
}

@-webkit-keyframes logoRes {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1)
    }
}

@keyframes logoRes {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes showDialog {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes showDialog {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.scale {
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

@-webkit-keyframes jump {
    0% {
        bottom: 0
    }
    50% {
        bottom: 10px
    }
    100% {
        bottom: 0
    }
}

@keyframes jump {
    0% {
        bottom: 0
    }
    50% {
        bottom: 10px
    }
    100% {
        bottom: 0
    }
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none
}

video {
    width: 100%
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover,
a:focus {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

svg:not(:root) {
    overflow: hidden
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

p {
    font: 400 1.7rem/1.5 "Exo 2", sans-serif
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

ul,
ol {
    list-style-position: inside
}

img {
    max-width: 100%;
    height: auto;
    border: 0
}

[class^="icon_"],
[class*=" icon_"],
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor
}

ul li,
ol li {
    list-style: none
}

.dialog_wrapper.visible,
.dialog_bg.visible,
.dialog.visible {
    display: block
}

.dialog_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    display: none;
    z-index: 500;
    padding: 4rem 0
}

.dialog_wrapper .main_table {
    width: 100%;
    height: 100%;
    padding-right: 2rem
}

.dialog_wrapper .main_tcell {
    padding: 0 2rem
}

.dialog {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.4rem;
    background-color: rgba(0, 0, 0, 0.8);
    border: 0.3rem solid #fff;
    display: none;
    z-index: 503;
    position: relative
}

.dialog .button {
    width: 100%;
    max-width: 100%
}

.modal_success {
    text-align: center;
    color: #fff
}

.modal_success .modal_title {
    font-size: 3rem
}

.modal_success p {
    color: #fff
}

.modal_ajax p {
    color: #fff
}

.modal_ajax .modal_title {
    margin-bottom: .5rem;
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    margin-top: 0
}

.modal_ajax form label {
    display: block;
    position: relative
}

.modal_ajax form label.text svg {
    top: 1.2rem;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal_ajax form label svg {
    position: absolute;
    font-size: 1.8rem;
    top: 67%;
    left: 1rem;
    z-index: 2;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #009688
}

.modal_ajax form .input {
    border: 0.1rem solid #e8eeef;
    margin: 0 0 1rem;
    color: #000;
    background: #e8eeef;
    border-radius: 0;
    padding-left: 3.5rem
}

.modal_ajax form textarea.input {
    border: 0.1rem solid #e8eeef;
    min-height: 14rem
}

.modal_ajax form .button {
    margin: 1rem auto 0;
    display: block;
    width: 100%
}

.modal_ajax .search_form {
    position: relative
}

.modal_ajax .search_form .input {
    padding: 0 2.5rem 0 1rem
}

.modal_ajax .search_form button {
    background: transparent;
    border: none;
    position: absolute;
    right: 1rem;
    top: 4.2rem;
    font-size: 0
}

.modal_ajax .search_form button svg {
    position: relative;
    top: 0.1rem !important;
    color: #009688;
    width: 2rem;
    height: 2rem
}

.modal_ajax .search_form .button {
    display: block;
    width: 100%;
    margin-top: 1rem
}

.modal_ajax .search_form .button span {
    position: relative;
    top: -.2rem
}

.modal_ajax .search_form .button svg {
    position: relative;
    top: -.2rem
}

.dialog.error {
    max-width: 350px;
    padding: 0
}

.dialog.error .h2 {
    padding: 2.4rem;
    border-bottom: 2px solid #441420;
    color: #441420
}

.dialog.error p {
    display: block;
    padding: 0 2.4rem 2.4rem
}

.dialog .icon_close {
    position: absolute;
    top: -3.5rem;
    right: -3.5rem;
    color: #fff;
    cursor: pointer;
    font-size: 3.5rem;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease
}

.dialog .icon_close:hover,
.dialog .icon_close:focus {
    color: #F9AA33
}

.dialog .icon_close svg {
    float: left
}

.dialog_bg {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(33, 33, 33, 0.55);
    display: none;
    width: 100%;
    height: 100%
}

.dialog_opened {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
    height: 100%
}

.dialog_opened .dialog_bg {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.dialog_opened .dialog {
    -webkit-animation-name: showDialog;
    animation-name: showDialog;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.dialog_opened .dialog_wrapper {
    display: block
}

.dialog_scrollable_mobile .dialog_wrapper {
    width: 100% !important
}

.dialog_scrollable_mobile .main_table {
    padding-right: 0 !important
}

.dialog_scrollable .dialog_wrapper {
    overflow-y: scroll;
    width: calc(100% + 4rem)
}

#toast {
    position: fixed;
    z-index: 503;
    width: 100%;
    max-width: 280px;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    background-color: #fff;
    color: #fff;
    display: none;
    -webkit-box-shadow: 1px 5px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 5px 15px rgba(0, 0, 0, 0.25);
    padding: 1rem 2rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

#toast p {
    display: block;
    margin-bottom: 0;
    margin-top: .3rem;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Exo 2", sans-serif
}

#toast.error {
    background-color: rgba(239, 83, 80, 0.9)
}

#toast.wish {
    background-color: rgba(81, 43, 138, 0.8)
}

#toast.success {
    background-color: rgba(76, 175, 80, 0.8)
}

.toast_close {
    position: absolute;
    color: #fff;
    top: .3rem;
    right: 1rem;
    font-size: 2.5rem;
    cursor: pointer
}

.toast_icon {
    color: #fff;
    float: left;
    margin-right: 2rem;
    font-size: 3rem
}

.fixed_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%
}

html {
    font-size: 62.5%
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-family: "Exo 2", sans-serif, sans-serif;
    font-size: 1.6rem;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding-top: 7.7rem
}

[disabled],
.disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none
}

.clearfix::before,
.row::before,
.clearfix::after,
.row::after {
    content: " ";
    display: table
}

.clearfix::after,
.row::after {
    clear: both
}

.clearfix,
.row {
    *zoom: 1
}

::-webkit-input-placeholder {
    color: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

::-moz-placeholder {
    color: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

::-ms-input-placeholder {
    color: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

::placeholder {
    color: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

a {
    text-decoration: none;
    color: inherit
}

.table {
    display: table
}

.tableb {
    display: table;
    border-collapse: collapse;
    border-spacing: 0
}

.trow {
    display: table-row
}

.tcell {
    display: table-cell;
    vertical-align: middle
}

.tc {
    text-align: center
}

.tl {
    text-align: left
}

.tr {
    text-align: right
}

.fl {
    float: left
}

.fr {
    float: right
}

hr {
    border-top: 1px solid #dbdbdb;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    clear: both;
    margin: 2.4rem 0
}

hr.dotted {
    border-style: dotted
}

hr.dashed {
    border-style: dashed
}

.row {
    margin: 0 -1.5rem
}

.row:after {
    content: '';
    display: block;
    clear: both
}

.row .col_1 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 12 - 3rem)
}

.row .col_2 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 6 - 3rem)
}

.row .col_3 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 4 - 3rem)
}

.row .col_4 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 3 - 3rem)
}

.row .col_5 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 2.4 - 3rem)
}

.row .col_6 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 2 - 3rem)
}

.row .col_7 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 1.714285714285714 - 3rem)
}

.row .col_8 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 1.5 - 3rem)
}

.row .col_9 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 1.3333333333 - 3rem)
}

.row .col_10 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 1.2 - 3rem)
}

.row .col_11 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 1.0909090909091 - 3rem)
}

.row .col_12 {
    float: left;
    margin: 0 1.5rem;
    width: calc(100% / 1 - 3rem)
}

.row_b:after {
    content: '';
    display: block;
    clear: both
}

.row_b .col_1,
.row_b .col_10,
.row_b .col_11,
.row_b .col_12,
.row_b .col_2,
.row_b .col_3,
.row_b .col_4,
.row_b .col_5,
.row_b .col_6,
.row_b .col_7,
.row_b .col_8,
.row_b .col_9 {
    float: left
}

.row_b .col_12 {
    width: 100%
}

.row_b .col_11 {
    width: 91.66666667%
}

.row_b .col_10 {
    width: 83.33333333%
}

.row_b .col_9 {
    width: 75%
}

.row_b .col_8 {
    width: 66.66666667%
}

.row_b .col_7 {
    width: 58.33333333%
}

.row_b .col_6 {
    width: 50%
}

.row_b .col_5 {
    width: 41.66666667%
}

.row_b .col_4 {
    width: 33.33333333%
}

.row_b .col_3 {
    width: 25%
}

.row_b .col_2 {
    width: 16.66666667%
}

.row_b .col_1 {
    width: 8.33333333%
}

.map_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wrapper {
    width: 100%;
    max-width: 140rem;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative
}

.wrapper:after {
    content: "";
    display: table;
    clear: both
}

.icon {
    line-height: 0
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

table.table {
    width: 100%
}

.input::-webkit-input-placeholder {
    color: #a1a1a1
}

.input:-moz-placeholder {
    color: #000
}

.input::-moz-placeholder {
    color: #000
}

.input:-ms-input-placeholder {
    color: #000
}

.input::-ms-input-placeholder {
    color: #000
}

.input::placeholder {
    color: #000
}

.input:focus::-webkit-input-placeholder {
    opacity: 0
}

.input:focus:-moz-placeholder {
    opacity: 0
}

.input:focus::-moz-placeholder {
    opacity: 0
}

.input:focus:-ms-input-placeholder {
    opacity: 0
}

.input:focus::-ms-input-placeholder {
    opacity: 0
}

.input:focus::placeholder {
    opacity: 0
}

.input::-webkit-input-placeholder {
    font: 400 1.6rem/1.5 "Exo 2", sans-serif;
    color: #000
}

.input::-moz-placeholder {
    font: 400 1.6rem/4rem "Exo 2", sans-serif;
    color: #000
}

.input:-ms-input-placeholder {
    font: 400 1.6rem/1.5 "Exo 2", sans-serif;
    color: #000
}

.input:-moz-placeholder {
    font: 400 1.6rem/4rem "Exo 2", sans-serif;
    color: #000
}

input:-moz-placeholder {
    font: 400 1.6rem/4rem "Exo 2", sans-serif !important;
    color: #000
}

.input {
    display: block;
    width: 100%;
    height: 4rem;
    padding: 0 1.6rem;
    font-size: 1.7rem;
    border: 1px solid #F9AA33;
    background-color: #f5f5f5;
    color: #000;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 1rem 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

textarea.input {
    min-height: 12.8rem;
    padding-top: 1rem;
    resize: none
}

select.input {
    line-height: 1em;
    text-indent: 0.01px;
    -o-text-overflow: '';
    text-overflow: ''
}

select::-ms-expand {
    display: none
}

.validate_error {
    border: 1px solid #e57373 !important;
        background: #ffeb3b;
}

section {
    padding: 4rem 0
}

section.no_padding {
    padding: 0
}

.button {
    display: inline-block;
    padding: 0 2rem;
    color: #fff;
    height: 3.6rem;
    font-size: 1.6rem;
    font-family: "Exo 2", serif;
    font-weight: 400;
    line-height: 3.6rem;
    background-color: #4CAF50;
    width: auto;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    border-radius: .5rem;
    position: relative;
    overflow: hidden
}

.button.light {
    background: transparent;
    color: #4CAF50;
    border: 0.1rem solid #4CAF50
}

.button svg {
    position: relative;
    top: -.2rem;
    font-size: 1.8rem
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

.btn_loading.loading {
    -webkit-transition: background-color 0.2s linear, -webkit-box-shadow 0.8s ease;
    transition: background-color 0.2s linear, -webkit-box-shadow 0.8s ease;
    -o-transition: box-shadow 0.8s ease, background-color 0.2s linear;
    transition: box-shadow 0.8s ease, background-color 0.2s linear;
    transition: box-shadow 0.8s ease, background-color 0.2s linear, -webkit-box-shadow 0.8s ease;
    background: #ccc;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
    color: #ccc;
    position: relative;
    font-size: 0;
    pointer-events: none
}

.btn_loading.loading:hover {
    background: #ccc !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: default !important;
    color: #ccc !important
}

.btn_loading.loading:before {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    top: 24%;
    left: 40%;
    border-style: solid;
    border-color: #fff #D8D8D8 #D8D8D8;
    border-radius: 100%;
    animation: rotation .7s infinite linear;
    -webkit-animation: rotation .7s infinite linear;
    -moz-animation: rotation .7s infinite linear;
    -o-animation: rotation .7s infinite linear
}

.pagination {
    padding: 1rem 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pagination li {
    display: inline-block !important;
    padding: 0 !important;
    margin: .4rem .3rem;
    list-style: none
}

.pagination li span {
    color: #000;
    font-size: 1.4rem
}

.pagination li:before {
    display: none !important
}

.pagination li:after {
    display: none !important
}

.pagination li a {
    display: block;
    min-width: 3rem;
    height: 3rem;
    padding: 0 .5rem;
    font-size: 1.6rem;
    line-height: 3.2rem;
    border-radius: .5rem;
    font-weight: 700;
    background: #01887b;
    color: #fff;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.pagination li a:hover {
    background-color: #F9AA33;
    color: #fff !important
}

.pagination li.active a {
    background-color: #F9AA33;
    color: #fff;
    pointer-events: none
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.social {
    line-height: 0;
    font-size: 2.9rem
}

.social a {
    display: inline-block;
    line-height: 0
}

.social a .icon {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.social a:hover .icon {
    padding: .2rem
}

.feedback {
    width: 100%;
    padding: 1.6rem;
    background-color: rgba(0, 0, 0, 0.85);
    border: 0.1rem solid rgba(255, 255, 255, 0.7);
    pointer-events: auto
}

.feedback_title {
    margin-bottom: 1.2rem;
    font: 400 2.5rem/1.1 "Exo 2", sans-serif;
    color: #fff;
    text-align: center
}

.feedback_title span {
    color: #F9AA33
}

.feedback_title strong {
    font-weight: 700
}

.feedback .input {
    height: 3.4rem;
    margin-bottom: 1.2rem;
    background-color: #fff;
    color: #fff
}

.feedback textarea.input {
    min-height: 12.4rem
}

.feedback .button {
    width: 100%;
    background-color: #F9AA33
}

.modal_feedback {
    max-width: 36rem;
    background-color: transparent;
    padding: 0
}

.modal_feedback .feedback {
    background-color: rgba(226, 10, 24, 0.85);
    border: 0.8rem solid rgba(255, 255, 255, 0.8)
}

.content {
    font-size: 1.7rem;
    color: #000
}

.content:after {
    content: '';
    display: table;
    clear: both
}

.content a:not(.button):hover,
.content a:not(.button):focus {
    color: #000
}

.content img {
    height: auto !important
}

.content ul:last-child,
.content ol:last-child,
.content table:last-child,
.content img:last-child,
.content iframe:last-child,
.content p:last-child {
    margin-bottom: 0
}

.content p {
    margin: 1.5rem 0
}

.content a {
    display: inline-block;
    color: #4CAF50
}

.content ul {
    margin-bottom: 2rem
}

.content ul li {
    position: relative;
    display: table;
    padding: 0 0 0 2.2rem;
    font: 400 1.6rem/1.5 "Exo 2", sans-serif;
    color: #000;
    margin: 1rem 0
}

.content blockquote {
    padding-left: 2rem;
    border-left: 0.5rem solid #F9AA33;
    clear: both
}

.content ul li:before {
    display: block;
    position: absolute;
    color: #F9AA33;
    left: .3rem;
    content: '';
    width: .8rem;
    height: 1.2rem;
    top: 0.2rem;
    vertical-align: middle;
    border: 0 solid;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg)
}

.content ol {
    margin-bottom: 2rem;
    counter-reset: li
}

.content ol>li {
    padding-left: 2rem;
    margin-bottom: .4rem;
    overflow: hidden;
    line-height: 1.5
}

.content ol>li:before {
    margin-left: -2rem;
    counter-increment: li;
    content: counters(li, ".") ". ";
    color: #000;
    font-weight: 500
}

.select {
    position: relative;
    border-radius: .5rem;
    width: 100%;
    background: #fff;
    border: 0.1rem solid #e4e4e4
}

.select span {
    line-height: 4rem;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: #444;
    margin: 0;
    position: relative;
    vertical-align: middle;
    height: 40px;
    padding: 0 35px 0 10px;
    display: block
}

.select .drop {
    border: 1px solid #e4e4e4;
    position: absolute;
    top: 4rem;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: 100%
}

.select .drop:before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    top: -20px
}

.select .drop li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #009688;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-bottom: 0.1rem solid #e4e4e4
}

.select:after {
    display: block;
    position: absolute;
    color: #009688;
    right: 1.5rem;
    content: '';
    width: 1rem;
    height: 1rem;
    top: 40%;
    vertical-align: middle;
    border: 0 solid;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg) translate(0, -40%);
    -ms-transform: rotate(45deg) translate(0, -40%);
    transform: rotate(45deg) translate(0, -40%)
}

.select.visible .drop {
    visibility: visible;
    opacity: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 100
}

.dark_overlay.nav-opened:after {
    content: "";
    display: none;
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: .8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2
}

.mobile_call {
    display: none;
    width: 100%;
    padding: 0 2rem;
    font: 900 2.4rem/5.4rem "Exo 2", sans-serif;
    color: #fff;
    background-color: #F9AA33;
    z-index: 1
}

.mobile_call .icon {
    position: relative;
    top: -.1em;
    margin-right: .8rem;
    font-size: .95em
}

.mobile_call:hover,
.mobile_call:focus {
    color: #fff;
    background-color: #0a2c72
}

.mob_social {
    display: none;
    padding: 1rem 2rem;
    font-size: 2.4rem
}

.navigation .navigation_dropBtn {
    display: none
}

.navigation .navigation_dropBtn a {
    position: relative
}

.navigation .navigation_dropBtn a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    width: 1em;
    height: 1em;
    font-size: 1.2rem;
    border: 0 solid #000;
    border-width: 0 0 2px 2px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg)
}

.footer_bottom span {
    display: inline-block
}

input[type='checkbox'] {
    position: absolute;
    left: -9999px
}

input[type='checkbox']+label {
    position: relative;
    padding-left: 3rem;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 1rem
}

input[type='checkbox']+label:before {
    content: '';
    border-radius: .5rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border: 1px solid #bbbcbe;
    background: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

input[type='checkbox']+label:after {
    content: '✔';
    position: absolute;
    top: -0.05rem;
    left: 0.45rem;
    font-size: 1.4rem;
    color: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

input[type='checkbox']:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

input[type='checkbox']:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

input[type='checkbox']:checked+label:before {
    background-color: #F9AA33;
    border: 1px solid #F9AA33
}

input[type='radio'] {
    position: absolute;
    left: -9999px
}

input[type='radio']+label {
    position: relative;
    padding-left: 3rem;
    cursor: pointer;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border-radius: 50%
}

input[type='radio']+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    border: 1px solid #bbbcbe;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

input[type='radio']:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

input[type='radio']:checked+label:after {
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: #F9AA33;
    border: 0.3rem solid #fff;
    top: 0.2rem;
    left: 0.2rem
}

input[type='radio']:checked+label:before {
    background-color: #F9AA33;
    border: 1px solid #F9AA33
}

.title,
h1,
.h1 {
    font: 400 3rem/1.2 "Exo 2", serif;
    color: #009688;
    position: relative;
    margin: 1rem 0
}

h2,
.h2 {
    font: 400 2.6rem/1.2 "Exo 2", serif;
    color: #009688;
    position: relative;
    margin: 1rem 0
}

.content .title,
.content h1,
.content .h1 {
    font: 400 3rem/1.2 "Exo 2", sans-serif;
    color: #009688;
    position: relative;
    margin: 1rem 0 2rem;
    display: table
}

.content h2,
.content .h2 {
    font: 400 2.6rem/1.2 "Exo 2", sans-serif;
    color: #009688;
    position: relative;
    margin: 1rem 0 2rem;
    display: table
}

p {
    font: 400 1.7rem/1.5 "Exo 2", sans-serif;
    color: #000;
    margin: 1rem 0
}

[data-open] {
    cursor: pointer
}

[data-madals] {
    cursor: pointer
}

.no-scroll {
    overflow: hidden
}

.hide_desctop {
    display: none !important
}

.img {
    width: 100%;
    max-width: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: block
}

.lb-data .lb-close {
    position: absolute;
    top: -4rem;
    right: 5rem
}

.lb-data .lb-number {
    display: none !important
}

.ui-widget-content {
    background: #fff !important;
    border-color: #e4e4e4 !important
}

.ui-widget-header {
    background: #F9AA33 !important
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: #fff !important;
    border-color: #e4e4e4 !important
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #009688;
    border-bottom: 0.4rem solid #01887b
}

.header .select {
    background: transparent;
    border: none
}

.header .select:after {
    display: none
}

.header .select span {
    padding: 0 5px;
    display: inline-block
}

.header .select span.select_sort {
    padding: 0 10px 0 0
}

.header .select svg {
    position: relative;
    top: -0.2rem;
    left: -0.4rem
}

.header .select .drop {
    top: 80%
}

.header .select .drop li {
    display: block !important;
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    color: #009688 !important;
    padding: 0 0.5rem;
    text-align: left;
    margin: 0 !important
}

.header .header_logo {
    display: block;
    text-align: center
}

.header .header_logo img {
    width: 14rem;
    position: relative;
    top: 2px
}

.header .header_logo svg {
    font-size: 7rem;
    position: relative;
    top: 4px
}

.header .phone {
    color: #fff;
    text-align: right;
    font-size: 2rem;
    margin-top: 1.5rem;
    display: block
}

.header .phone a {
    display: block
}

.header .phone a:hover {
    color: #F9AA33
}

.header form {
    position: relative
}

.header form .modal_title {
    display: none
}

.header form .input {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    margin: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.header form.active .input {
    visibility: visible;
    opacity: 1;
    width: 30rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.header form.active button {
    background: transparent;
    border: none;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 0
}

.header form.active button svg {
    position: relative;
    top: 0.1rem !important;
    color: #009688;
    width: 2rem;
    height: 2rem
}

.header form button {
    background: transparent;
    border: none
}

.header form button svg {
    color: #fff;
    width: 2rem;
    height: 2rem
}

.header .right_menu {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7.7rem;
    line-height: 7.7rem;
    color: #fff
}

.header .right_menu li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.5rem;
    color: #fff
}

.header .right_menu li span {
    color: #fff
}

.header .right_menu li svg {
    position: relative;
    top: -0.2rem
}

.header .right_menu li .basket {
    position: relative
}

.header .right_menu li .basket .main_count_basket {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    z-index: 2;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    border-radius: 50%;
    color: #fff;
    background: #d9534f
}

.header .right_menu li .basket svg {
    font-size: 2.7rem
}

.header .navigation_btn {
    display: none;
    position: absolute;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 600;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 2rem;
    padding: 0
}

.header .navigation_btn .lines {
    position: relative
}

.header .navigation_btn p {
    text-align: center;
    font-size: 1.4rem;
    color: #1a1d21;
    display: block;
    width: 4rem;
    font-weight: 400;
    float: right;
    margin: 1rem 0 0
}

.header .navigation_btn span {
    position: relative;
    display: block;
    width: 4rem;
    height: .4rem;
    background-color: #F9AA33
}

.header .navigation_btn span:first-child {
    content: '';
    position: absolute;
    top: -1rem;
    width: 4rem;
    height: .4rem;
    background-color: #F9AA33;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.header .navigation_btn span:nth-child(3) {
    content: '';
    position: absolute;
    top: 1rem;
    width: 4rem;
    height: .4rem;
    background-color: #F9AA33;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.header .navigation_btn.isOpen {
    color: #F9AA33
}

.header .navigation_btn.isOpen span {
    background: none;
    border: none
}

.header .navigation_btn.isOpen span:first-child {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    top: -2.4rem;
    background-color: #F9AA33;
    left: 0.5rem;
    -webkit-transform: rotateZ(45deg) translate(15px, 20px);
    -ms-transform: rotate(45deg) translate(15px, 20px);
    transform: rotateZ(45deg) translate(15px, 20px)
}

.header .navigation_btn.isOpen span:nth-child(3) {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    top: 2.5rem;
    left: 0.5rem;
    background-color: #F9AA33;
    -webkit-transform: rotateZ(-45deg) translate(15px, -20px);
    -ms-transform: rotate(-45deg) translate(15px, -20px);
    transform: rotateZ(-45deg) translate(15px, -20px)
}

.navigation {
    position: relative;
    width: 100%
}

.navigation .header_nav {
    height: 7.7rem;
    line-height: 7.7rem;
    position: relative
}

.navigation .header_nav li {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.5rem
}

.navigation .header_nav li a {
    font: 400 1.3rem/1.5 "Exo 2", sans-serif;
    color: #fff;
    height: 4rem;
    display: inline-block;
    line-height: 4rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.navigation .header_nav li.drDown .subMenu {
    border-radius: .5rem;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 100%;
    max-width: 80%;
    top: 80%;
    left: 0;
    background: #f9f9f9;
    padding: 0;
    border: 0.1rem solid #01887b
}

.navigation .header_nav li.drDown .subMenu:before {
    content: '';
    display: block;
    z-index: -1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 0;
    height: 0;
    position: absolute;
    left: -1rem;
    top: -1rem;
    background: #F9AA33;
    opacity: 0;
    border-radius: .5rem
}

.navigation .header_nav li.drDown .subMenu:after {
    content: '';
    display: block;
    z-index: -1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 0;
    height: 0;
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    background: #F9AA33;
    opacity: 0;
    border-radius: .5rem
}

.navigation .header_nav li.drDown .subMenu li {
    display: block;
    text-align: left;
    width: 100%
}

.navigation .header_nav li.drDown .subMenu li:last-child {
    border: none
}

.navigation .header_nav li.drDown .subMenu li a {
    border-radius: .5rem;
    width: 100%;
    padding: 0 2rem;
    font-size: 1.4rem;
    display: block;
    text-align: left;
    text-transform: capitalize;
    color: #009688 !important
}

.main_section aside {
    width: 22%;
    float: left
}

.main_section main {
    width: calc(78% - 1rem);
    float: right
}

.sidebar .list {
    display: none;
    margin: 0 0 1rem;
    background: #f5f5f5;
    padding: 1rem;
    border: 0.1rem solid #e4e4e4
}

.sidebar .list.active {
    display: block
}

.sidebar .list li {
    margin: 0.5rem 0
}

.sidebar .list li span {
    font-size: 1.5rem;
    color: #009688;
    display: block;
    cursor: pointer;
    text-decoration: underline
}

.sidebar .list li span i {
    float: right;
    color: #d9534f
}

.sidebar .list li span i svg {
    width: 2rem;
    height: 2rem
}

.sidebar .list li span:hover {
    color: #F9AA33
}

.sidebar .list li span:hover svg {
    color: #009688
}

.sidebar .block {
    border-radius: .5rem;
    background: #f5f5f5;
    padding: 1rem 1rem 0;
    border: 0.1rem solid #e4e4e4
}

.sidebar .block .button {
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    text-transform: uppercase
}

.sidebar .list_item {
    margin: 0 0 1rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 0.1rem solid #e4e4e4
}

.sidebar .list_item:last-child {
    border: none;
    margin-bottom: 0
}

.sidebar .list_item>span {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
    display: block;
    position: relative;
    padding-right: 1.5rem
}

.sidebar .list_item>span:after {
    content: '';
    display: block;
    position: absolute;
    color: #009688;
    right: .5rem;
    width: 1rem;
    height: 1rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    top: 50%;
    border-style: solid;
    border-width: 0 2px 2px 0;
    -webkit-transform: translate(0, -55%) rotate(-45deg);
    -ms-transform: translate(0, -55%) rotate(-45deg);
    transform: translate(0, -55%) rotate(-45deg)
}

.sidebar .list_item.active>span:after {
    -webkit-transform: translate(0, -55%) rotate(45deg);
    -ms-transform: translate(0, -55%) rotate(45deg);
    transform: translate(0, -55%) rotate(45deg)
}

.sidebar .list_item.active .sub {
    display: block
}

.sidebar .list_item.active .sub.no_mar {
    margin-left: 0
}

.sidebar .list_item #slider-range {
    margin: 0.5rem 0 0.5rem 1rem
}

.sidebar .list_item .amount {
    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
}

.sidebar .list_item .amount .input {
    width: 45%;
    height: 3rem;
    line-height: 3rem;
    border-radius: .5rem
}

.sidebar .list_item .sub {
    display: none;
    margin: 1rem 0 0 2rem
}

.sidebar .list_item .sub li {
    margin-bottom: 0
}

.sidebar .list_item .sub li:last-child label {
    margin-bottom: 0
}

.main_content {
    border-radius: .5rem;
    background: #f5f5f5;
    padding: 0 2rem 2rem;
    border: 0.1rem solid #e4e4e4
}

.main_content.large_padd {
    padding: 2rem 4rem
}

.bottom_content {
    margin: 1rem 0;
    border-radius: .5rem;
    background: #f5f5f5;
    padding: 2rem;
    border: 0.1rem solid #e4e4e4
}

.bottom_content .button {
    display: block;
    margin: 2rem auto 0;
    max-width: 25rem
}

.main_top {
    position: relative;
    padding: 0;
    z-index: 2;
    margin-bottom: 4rem
}

.main_top .banner {
    background-position: center !important;
    background-size: cover !important;
    width: 100%;
    max-width: 100%;
    position: relative
}

.main_top .banner:after {
    content: '';
    padding-top: 50%;
    display: block
}

.main_top .main_text {
    position: absolute;
    width: 100%;
    display: block;
    z-index: 4
}

.main_top .main_text.horizontal_0+.vertical_0 {
    text-align: left;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

.main_top .main_text.horizontal_0+.vertical_1 {
    text-align: left;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.main_top .main_text.horizontal_0+.vertical_2 {
    text-align: left;
    top: 100%;
    left: 0;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%)
}

.main_top .main_text.horizontal_1+.vertical_0 {
    text-align: center;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.main_top .main_text.horizontal_1,
.main_top .main_text .vertical_1 {
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.main_top .main_text.horizontal_1+.vertical_2 {
    text-align: right;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%)
}

.main_top .main_text.horizontal_2.vertical_0 {
    text-align: right;
    top: 0;
    left: 100%;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0)
}

.main_top .main_text.horizontal_2+.vertical_1 {
    text-align: right;
    top: 50%;
    left: 100%;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%)
}

.main_top .main_text.horizontal_2+.vertical_2 {
    text-align: right;
    top: 100%;
    left: 100%;
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%)
}

.main_top .main_text .text {
    text-shadow: 2px 2px 10px #009688;
    margin: 0;
    font-size: 5.5rem;
    color: #fff;
    line-height: 1.2;
    display: block;
    font-weight: 400
}

.main_top .main_text .text p,
.main_top .main_text .text h1,
.main_top .main_text .text h2,
.main_top .main_text .text h3 {
    text-shadow: 2px 2px 10px #009688;
    margin: 0;
    font-size: 5.5rem;
    color: #fff;
    line-height: 1.2;
    display: block;
    font-weight: 400
}

.main_top .main_text .text p:last-child:not(:first-child) {
    font-size: 1.6rem
}

.main_top .btns {
    margin: 2rem auto
}

.main_top .btns .button {
    margin: 0 1rem
}

.main_top .top_slider .slick-dots {
    bottom: 6rem
}

.main_top .top_slider .slick-dots li {
    width: 1rem;
    height: 1rem;
    margin: 0 .3rem
}

.main_top .top_slider.hidden_slider {
    opacity: 0;
    overflow: hidden;
    max-height: 60rem
}

.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 30
}

.slick-dots li {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.5rem;
    background: transparent;
    border: 0.1rem solid #009688;
    border-radius: 50%
}

.slick-dots li.slick-active {
    background: #009688
}

.slick-dots li button {
    background: transparent;
    border: none;
    font-size: 0
}

.products_info {
    padding: 1.5rem 0 0
}

.products {
    margin: 0 0 1rem -2rem;
    font-size: 0
}

.products.same_products_slider {
    display: block;
    margin: 0 auto
}

.products.same_products_slider .img {
    max-width: 70%
}

.products.same_products_slider.hidden_slider {
    overflow: hidden;
    max-height: 55rem;
    opacity: 0
}

.products.same_products_slider .prev {
    position: absolute;
    left: -3.5rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 3rem;
    z-index: 99;
    cursor: pointer
}

.products.same_products_slider .prev:hover {
    -webkit-transform: translate(0, -50%) scale(0.8);
    -ms-transform: translate(0, -50%) scale(0.8);
    transform: translate(0, -50%) scale(0.8);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.products.same_products_slider .next {
    position: absolute;
    right: -3.5rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 3rem;
    z-index: 99;
    cursor: pointer
}

.products.same_products_slider .next:hover {
    -webkit-transform: translate(0, -50%) scale(0.8);
    -ms-transform: translate(0, -50%) scale(0.8);
    transform: translate(0, -50%) scale(0.8);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.products.same_products_slider .product_item {
    -webkit-box-shadow: 0 0 3px 1px #6161615e;
    box-shadow: 0 0 3px 1px #6161615e;
    display: block;
    width: 100%;
    max-width: 95%;
    margin: 1rem auto;
    border: none;
    border-radius: 0
}

.products.same_products_slider .product_item .bonus {
    top: 0;
    right: 0
}

.products.same_products_slider .product_item .rating {
    margin-top: 2rem
}

.products.same_products_slider .product_item .rating svg {
    margin-right: .5rem;
    font-size: 1.6rem
}

.products .product_item {
    display: inline-block;
    vertical-align: top;
    border-radius: .5rem;
    position: relative;
    background: #fff;
    border: 0.1rem solid #e4e4e4;
    padding: 1rem;
    margin: 1% 0 1% 1rem
}
.products .product_item.status_1 {
    opacity: 0.8;filter: grayscale(0.8);
}

.products .product_item .bonus {
    background: url("/img/bonus_bg.png") no-repeat;
    background-position: left center;
    height: 4.6rem;
    width: 11rem;
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 30
}

.products .product_item .bonus .bonus_text {
    color: #009688;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.8rem;
    display: block;
    text-align: center;
    margin-top: .2rem
}

.products .product_item .bonus .bonus_price {
    color: #fff;
    text-align: center;
    font-weight: bold;
    display: block;
    font-size: 1.6rem
}

.products .product_item .rating {
    margin: 0 0 1rem 0
}

.products .product_item .rating svg {
    margin-right: .5rem;
    color: #F9AA33;
    font-size: 1.6rem
}

.products .product_item .info {
    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;
    margin: 0 0 1rem 0;
    font-size: 1.4rem
}

.products .product_item .info .instoke svg {
    font-size: 1.6rem;
    color: #4CAF50;
    position: relative;
    top: -.1rem
}

.products .product_item .info .wait svg {
    font-size: 1.8rem;
    color: #009688;
    position: relative;
    top: -.1rem
}

.products .product_item .info .out_of_stoke svg {
    font-size: 1.6rem;
    color: #d9534f;
    position: relative;
    top: -.2rem
}

.products .product_item .name {
    height: 6.4rem;
    overflow: hidden;
    text-align: left;
    display: block;
    margin: 2rem auto 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Exo 2", sans-serif
}

.products .product_item .price_block {
    overflow: hidden;
    margin: 0 0 1rem 0
}

.products .product_item .price_block .price {
    font-size: 2.2rem;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle
}

.products .product_item .price_block .price.new {
    font-size: 1.6rem;
    display: block
}

.products .product_item .price_block .old_price {
    color: #d9534f;
    font-size: 1.4rem;
    display: block
}

.products .product_item .price_block .prices {
    display: inline-block;
    vertical-align: middle;
    max-width: 50%
}

.products .product_item .price_block .button {
    float: right;
    vertical-align: middle;
    width: 100%;
    max-width: 14rem
}

.products .product_item .bottom_hover {
    position: absolute;
    display: none;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem
}

.products .product_item .bottom_hover table {
    font-size: 1.2rem;
    font-weight: 600
}

.products .product_item .bottom_hover table td {
    padding: 0.3rem
}

.products .cat_item {
    display: inline-block;
    vertical-align: top;
    border-radius: .5rem;
    position: relative;
    background: #fff;
    border: 0.1rem solid #e4e4e4;
    padding: 1rem;
    margin: 1% 0 .1% 1rem
}

.products .cat_item .name {
    height: 4rem;
    overflow: hidden;
    text-align: center;
    display: block;
    margin: 2rem auto 1rem;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: "Exo 2", sans-serif
}

.products .img {
    margin: 1rem auto;
    background-repeat: no-repeat !important;
    position: relative;
    background-size: contain !important;
    background-position: center !important;
    width: 100%;
    max-width: 90%;
    max-height: 100%;
    display: block
}

.products .img:after {
    content: '';
    display: block;
    padding-top: 70%
}

.products .img img {
    position: absolute;
    width: 1px;
    height: 1px;
    z-index: -1
}

.products.cols_4 .product_item,
.products.cols_4 .cat_item {
    width: 24.1%
}

.products.cols_3 .product_item,
.products.cols_3 .cat_item {
    width: 32%
}

.products.cols_2 .product_item {
    width: 48%
}

.products.cols_table .product_item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.products.cols_table .product_item .bottom_hover {
    display: block !important;
    position: static;
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
    padding-left: 1rem;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.products.cols_table .product_item .head_block {
    display: none
}

.products.cols_table .product_item .name {
    text-align: left
}

.products.cols_table .product_item .img {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%
}

.products.cols_table .product_item .bottom_block {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%
}

.row_table {
    display: table
}

.row_table .col_table {
    display: table-cell
}

.view_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.5rem
}

.view_block .view_list {
    width: 3rem;
    margin-left: 0.5rem;
    cursor: pointer
}

.view_block .view_list.active i {
    background: #F9AA33 !important
}

.view_block .view_list i {
    display: block;
    float: left;
    background: #009688;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0.3rem 0.2rem
}

.view_block .view_list:nth-child(2) i {
    width: 1.1rem;
    height: 1.1rem;
    background: #009688;
    margin: 0.28rem 0.2rem
}

.view_block .view_list:nth-child(3) i {
    width: 100%;
    height: 0.6rem;
    background: #009688;
    margin: 0.2rem
}

.breadcrumbs {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.breadcrumbs li {
    position: relative
}

.breadcrumbs li:after {
    display: block;
    position: absolute;
    color: #009688;
    right: 0.7rem;
    content: '';
    width: 0.7rem;
    height: 0.7rem;
    top: 0.7rem;
    vertical-align: middle;
    border: 0 solid;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.breadcrumbs li:last-child:after {
    display: none
}

.breadcrumbs li a {
    font-size: 1.4rem;
    color: #009688;
    margin-right: 2rem
}

.breadcrumbs li a:hover {
    color: #F9AA33
}

.reviews_block {
    position: relative
}

.reviews_block:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 30rem;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #e5e5e5 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0.01)), to(#e5e5e5));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #e5e5e5 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #e5e5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#e5e5e5', GradientType=0)
}

.reviews_block.active:after {
    display: none
}

.reviews_block.active .reviews_item:nth-child(n+4) {
    display: block
}

.reviews_block .h2 {
    margin-bottom: 2rem
}

.reviews_block .top {
    overflow: hidden
}

.reviews_block .top a {
    float: left;
    color: #009688;
    text-decoration: underline
}

.reviews_block .rating {
    float: right
}

.reviews_block .rating svg {
    margin-left: .5rem;
    font-size: 1.6rem;
    color: #F9AA33
}

.reviews_block .reviews_item {
    background: #fff;
    margin: 1rem auto;
    padding: 3rem;
    border: 0.1rem solid #e4e4e4
}

.reviews_block .reviews_item:nth-child(n+4) {
    display: none
}

.reviews_block .bottom {
    overflow: hidden
}

.reviews_block .bottom .date {
    float: right;
    color: #4A6572
}

.reviews_block .bottom .name {
    float: left;
    color: #01887b;
    font-size: 1.7rem
}

.text_block {
    padding: 2rem;
    max-height: 60rem;
    overflow: hidden;
    position: relative
}

.text_block:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 30rem;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #e5e5e5 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0.01)), to(#e5e5e5));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #e5e5e5 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #e5e5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#e5e5e5', GradientType=0)
}

.text_block.active {
    max-height: 100%;
    overflow: hidden
}

.text_block.active:after {
    display: none
}

.product_page h1 {
    margin: 0 0 2rem 0
}

.product_page .get_sale {
    padding-top: 1rem;
    float: right;
    color: #d9534f;
    cursor: pointer
}

.product_page .get_sale svg {
    font-size: 2.2rem;
    color: #d9534f;
    position: relative;
    top: -.3rem
}

.product_page .breadcrumbs {
    margin: 2rem 0
}

.product_page .breadcrumbs svg {
    position: relative;
    top: -.1rem
}

.product_page .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem
}

.product_page .rating svg {
    margin-right: .5rem;
    font-size: 1.6rem;
    color: #F9AA33
}

.product_page .buttons {
    margin: 2rem -1.5rem
}

.product_page .buttons .button {
    width: 100%;
    max-width: 100%
}

.product_page .instoke.red svg {
    color: #d9534f
}

.product_page .instoke svg {
    color: #4CAF50;
    position: relative;
    top: -0.2rem
}

.product_page .info {
    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;
    margin: 0 0 1rem 0
}

.product_page .info .instoke svg {
    font-size: 1.6rem;
    color: #4CAF50;
    position: relative;
    top: -.1rem
}

.product_page .info .wait svg {
    font-size: 1.8rem;
    color: #009688;
    position: relative;
    top: -.1rem
}

.product_page .info .out_of_stoke svg {
    font-size: 1.6rem;
    color: #d9534f;
    position: relative;
    top: -.2rem
}

.product_page .img {
    background-color: #fff;
    background-repeat: no-repeat !important;
    position: relative;
    background-size: contain !important;
    background-position: center !important;
    width: 100%;
    max-height: 100%;
    display: block
}

.product_page .img:after {
    content: '';
    display: block
}

.product_page .img img {
    position: absolute;
    width: 1px;
    height: 1px;
    z-index: -1
}

.product_page .slider_main {
    padding: 1rem 2rem;
    background-color: #fff;
    margin: 2rem 0
}

.product_page .slider_main.hidden_slider {
    overflow: hidden;
    max-height: 27rem
}

.product_page .slider_main .img:after {
    padding-top: 95%
}

.product_page .slider_nav {
    background-color: #fff;
    max-width: 100%;
    padding: 0 1rem;
    margin: 2rem auto
}

.product_page .slider_nav.hidden_slider {
    overflow: hidden;
    max-height: 4.5rem
}

.product_page .slider_nav .img {
    margin-bottom: 1.5rem
}

.product_page .slider_nav .img:after {
    padding-top: 113%
}

.product_page .slider_nav .prev {
    position: absolute;
    left: -2rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 2rem;
    z-index: 99;
    cursor: pointer
}

.product_page .slider_nav .prev:hover {
    -webkit-transform: translate(0, -50%) scale(0.8);
    -ms-transform: translate(0, -50%) scale(0.8);
    transform: translate(0, -50%) scale(0.8);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.product_page .slider_nav .next {
    position: absolute;
    right: -2rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 2rem;
    z-index: 99;
    cursor: pointer
}

.product_page .slider_nav .next:hover {
    -webkit-transform: translate(0, -50%) scale(0.8);
    -ms-transform: translate(0, -50%) scale(0.8);
    transform: translate(0, -50%) scale(0.8);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.product_page .price_blocks {
    width: 50%;
    display: inline-block;
    vertical-align: middle
}

.product_page .price {
    font-size: 2.8rem;
    font-family: "Exo 2", serif;
    font-weight: 900;
    color: #1e1e1e;
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.product_page .price.old {
    color: #d9534f;
    margin-right: 1rem;
    line-height: 1.2;
    font-size: 1.6rem
}

.product_page .number {
    width: 8rem
}

.product_page #options table tr:nth-child(even) {
    background: #f2f2f2
}

.product_page #options table td {
    padding: .5rem
}

.product_page #certificate .img {
    margin-bottom: 1rem;
    background-size: contain !important
}

.product_page #certificate .img:after {
    padding-top: 80%
}

.product_page .tabs {
    overflow: hidden;
    overflow-x: auto
}

.product_page .tabs li {
    white-space: nowrap
}

.label_39._bottom_3v._pad100_GR,
.label_39._left_2d._pad100_GR,
.label_39._right_1y._pad100_GR {
    right: 0
}

.tabs {
    margin: 2rem 0 0;
    display: inline-block;
    font-size: 0
}

.tabs li {
    display: inline-block;
    vertical-align: middle
}

.tabs li a {
    padding: .8rem 1.5rem;
    font-size: 1.8rem;
    display: block;
    position: relative;
    background: #e4e3e3
}

.tabs li a svg {
    font-size: 2rem;
    color: #009688;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -.2rem;
    z-index: 2
}

.tabs li a span {
    font-size: 1.8rem;
    position: relative;
    z-index: 2
}

.tabs li a:after {
    content: '';
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: block;
    width: 0;
    height: 0;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 1;
    position: absolute
}

.tabs li a.active:after {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.tab_container .tab_content {
    padding: 1rem 2rem;
    background: #fff;
    display: none;
    -webkit-animation: fadeInScale 0.1s ease-in-out;
    animation: fadeInScale 0.1s ease-in-out
}

.tab_container .tab_content.active {
    display: block;
    -webkit-animation: fadeInScale 0.7s ease-in-out;
    animation: fadeInScale 0.7s ease-in-out
}

@-webkit-keyframes fadeInScale {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes fadeInScale {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.pre_footer {
    padding: 4rem 0;
    background: #e4e4e4
}

.pre_footer svg {
    font-size: 10rem;
    display: block;
    margin: 1rem auto
}

.pre_footer p {
    text-align: center;
    font-size: 1.8rem;
    color: #009688
}

.same_products {
    padding-top: 0
}

.same_products h2 {
    margin-bottom: 3rem
}

.red {
    color: #d9534f
}

.number {
    border-radius: .5rem;
    text-align: center;
    border: 0.1rem solid #F9AA33;
    margin: 0;
    width: 3.5rem;
    background: none;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 2rem;
    color: #009688;
    float: left
}

.quantity {
    width: 15rem;
    display: block;
    margin: 0 auto
}

.value-button {
    color: #F9AA33;
    float: left;
    margin: 0 .5rem;
    width: 3rem;
    height: 3.6rem;
    line-height: 3.3rem;
    font-size: 3rem;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.faqs .faqs_item {
    position: relative
}

.faqs .faqs_item:first-child {
    border-top: none
}

.faqs .faqs_item.active .faqs_content {
    display: block
}

.faqs .faqs_item.active .faqs_question .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.faqs .faqs_question {
    position: relative;
    padding: 1rem 0 0 3rem;
    font: 700 2rem/1.2 "Exo 2", sans-serif, sans-serif;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #F9AA33
}

.faqs .faqs_question:hover {
    color: #000
}

.faqs .faqs_question .arrow {
    position: absolute;
    color: #F9AA33;
    top: 1.1rem;
    left: 0;
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.faqs .faqs_content {
    display: none;
    padding: 0 0 2rem 3rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #000;
    overflow: hidden;
    border-bottom: 0.2rem dotted #F9AA33
}

.faqs .faqs_content p:first-child img {
    margin-top: 2rem
}

footer {
    padding: 4rem 0;
    background: #009688
}

footer .title {
    text-transform: uppercase;
    text-align: left;
    font-size: 2rem;
    font-weight: 900;
    display: inline-block;
    color: #F9AA33;
    position: relative;
    padding: 1rem 0;
    margin: 0
}

footer .read_more {
    color: #F9AA33;
    text-transform: uppercase
}

footer a {
    display: block;
    font: 400 1.5rem/1.4 "Exo 2", sans-serif;
    text-align: left;
    margin: 0.5rem auto;
    color: #fff
}

footer a:hover {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #F9AA33
}

footer a:not(:hover) {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

footer p {
    display: block;
    color: #fff;
    font: 400 1.5rem/1.4 "Exo 2", sans-serif;
    text-align: left;
    margin: 0.5rem auto
}

footer p b {
    font-weight: 900
}

.fancybox-image,
.fancybox-spaceball {
    background: #fff
}

.fancybox-is-open .fancybox-bg {
    background: #fff;
    opacity: 1
}

.footer_bottom {
    padding: 2rem 0;
    margin-top: 4rem;
    background: #fff
}

.footer_bottom p,
.footer_bottom a {
    font: 500 1.5rem/1.4 "Exo 2", sans-serif;
    color: #2e2e2e
}

.mobile_phone {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: .3rem 0;
    font: 400 3.5rem "Exo 2", sans-serif;
    background-color: #F9AA33;
    color: #fff !important;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10
}

.blog .blog_search {
    position: relative
}

.blog .blog_search button {
    position: absolute;
    top: 50%;
    right: 2rem;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent;
    border: none
}

.blog .blog_search button svg {
    color: #01887b;
    font-size: 1.6rem
}

.blog .post_img {
    padding-top: 24%;
    max-width: 40%;
    float: left;
    position: relative;
    margin: 0 5rem 2rem 0;
    background-size: contain !important
}

.blog .post_img img {
    width: 1px;
    height: 1px;
    position: absolute;
    z-index: -1
}

.blog article {
    padding: 2rem;
    background: #fff;
    border-radius: .5rem;
    margin-bottom: 2rem
}

.blog .sidebar .block {
    margin-bottom: 1rem;
    padding-bottom: 1rem
}

.blog .sidebar .block .aside_title {
    margin-bottom: .5rem;
    font-size: 1.8rem;
    color: #009688
}

.blog .sidebar .recent li {
    margin-bottom: .5rem
}

.blog .sidebar .recent li span {
    font-size: 1.2rem;
    display: block;
    color: #636363
}

.blog .sidebar .aside_tags li {
    display: inline-block;
    vertical-align: top;
    margin: 0 .3rem .5rem 0
}

.blog .sidebar .aside_tags li a {
    display: inline-block;
    vertical-align: top;
    padding: .5rem;
    background: #F9AA33;
    color: #009688
}

.blog .sidebar ul li a {
    display: block;
    font-size: 1.4rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.search_results {
    position: absolute;
    visibility: hidden;
    display: block;
    opacity: 0;
    top: 2.1rem;
    right: 0;
    height: 0;
    width: 60rem;
    max-width: 60rem;
    border-radius: .5rem
}

.search_results.active {
    visibility: visible;
    opacity: 1;
    height: auto;
    background: #fff;
    border: 0.1rem solid #F9AA33;
    max-height: 51rem;
    overflow-y: auto
}

.search_results .search_list .search_item {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 0 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 10rem;
    font-size: 0;
    border-bottom: .1rem solid #e8e8e8
}

.search_results .search_list .search_item:nth-child(odd) {
    background: #f2f2f2
}

.search_results .search_list .search_item img {
    vertical-align: middle;
    display: inline-block;
    width: 9rem;
    height: 9rem;
    -o-object-fit: contain;
    object-fit: contain
}

.search_results .search_list .search_item .price {
    font-size: 1.5rem;
    color: #4CAF50
}

.search_results .search_list .search_item span {
    font-size: 1.6rem;
    color: #000;
    text-align: left;
    line-height: 1.3;
    vertical-align: middle;
    display: inline-block;
    width: 45rem;
    padding: 1rem;
}

.search_results .search_list .search_item span:last-child {
    width: 9rem;
    text-align: right
}

.view_cart .row_table {
    width: 100%;
}

.view_cart .row_table .col_table {
    vertical-align: middle;
    padding: 1rem .5rem
}

.view_cart .row_table .col_table:first-child {
    max-width: 10rem
}

.view_cart .row_table:first-child {
    border-top: .1rem solid #7d7d7d
}

.view_cart .row_table:nth-child(even) {
    background: #fcfcfc;
}

.view_cart .img {
    padding-top: 60%;
    width: 10rem;
    margin: 0 auto
}

.view_cart .text_cart_block {
    max-width: 15rem
}

.view_cart .text_cart_block .name {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #01887b;
    font-size: 1.6rem;
    line-height: 1.1
}

.view_cart .text_cart_block .code {
    display: block;
    color: #009688;
    margin-top: .5rem;
    font-size: 1.2rem
}

.view_cart .qty {
    display: block;
    font-size: 1.4rem
}

.table_view tr {
    border-bottom: .1rem solid #7d7d7d
}

.table_view tr:nth-child(even) {
    background: #dcdcdc
}

.table_view tr:first-child {
    border-top: .1rem solid #7d7d7d
}

.table_view td {
    padding: 1rem .5rem
}

.table_view td:first-child {
    width: 15rem
}

.dialog .search_results.active {
    top: 100%;
    width: 100%;
    max-width: 100%
}

.contact_page .aside {
    margin-top: 5rem;
    background: #f2f2f2;
    padding: 1rem
}

.contact_page .aside a {
    display: block;
    margin: 1rem 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.contact_page .aside h3 svg {
    position: relative;
    top: -.2rem;
    margin-right: 1rem
}

.page aside {
    float: left;
    width: 30rem
}

.page main {
    float: right;
    width: calc(100% - 35rem)
}

.contact_form label {
    display: block;
    position: relative
}

.contact_form label .input {
    padding-left: 3.5rem
}

.contact_form label svg {
    position: absolute;
    font-size: 1.8rem;
    top: 4rem;
    left: 1rem;
    z-index: 2;
    color: #009688
}

::-webkit-scrollbar {
    width: 1.1rem;
    height: .8rem
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 1rem
}

body::-webkit-scrollbar-track {
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    background: #F9AA33;
    border-radius: 1rem;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3)
}

.cart .rwd-table {
    min-width: 300px
}

.cart .rwd-table tr {
    border-top: 1px solid #eaeaeb;
    border-bottom: 1px solid #eaeaeb
}

.cart .rwd-table th {
    display: none
}

.cart .rwd-table td {
    display: block
}

.cart .rwd-table td:first-child {
    padding-top: .5em
}

.cart .rwd-table td:last-child {
    padding-bottom: .5em
}

.cart .rwd-table td:before {
    content: attr(data-th) " ";
    font-weight: bold;
    width: 100%;
    margin: 1rem 0 .5rem;
    display: table
}

.hover_svg { -webkit-transition: all 0.8s; transition: all 0.8s; }

.hover_svg.animated { fill: #ffffff !important; }
#text { -webkit-transition: all 2s ease; transition: all 2s ease; }

#text.animated .hover_svg { fill: #ffffff !important; }

.product_id {margin-bottom: -2rem; font-size: 1.2rem;}

@media (min-width: 480px) {
    .cart .rwd-table td:before {
        display: none
    }
}

.cart .rwd-table th,
.cart .rwd-table td {
    text-align: left
}

@media (min-width: 480px) {
    .cart .rwd-table th,
    .cart .rwd-table td {
        display: table-cell;
        padding: .25em .5em
    }
    .cart .rwd-table th:first-child,
    .cart .rwd-table td:first-child {
        padding-left: 0
    }
    .cart .rwd-table th:last-child,
    .cart .rwd-table td:last-child {
        padding-right: 0
    }
}

.cart .rwd-table {
    color: #000;
    overflow: hidden
}

.cart .rwd-table th,
.cart .rwd-table td {
    margin: .5em 1em
}

.cart .rwd-table tr:nth-child(odd) {
    background: #fff
}

@media (min-width: 480px) {
    .cart .rwd-table th,
    .cart .rwd-table td {
        padding: 1rem 0 !important
    }
}

.cart .rwd-table th,
.cart .rwd-table td:before {
    color: #000
}

.cart table {
    width: 100%
}

.cart table th {
    font-size: 2.2rem;
    color: #009688 !important
}

.cart table .price {
    max-width: 15rem;
    color: #01887b;
    font-size: 1.6rem;
    margin: 0
}

.cart table .price.old {
    color: #d9534f;
    font-size: 1.4rem;
    display: block
}

.cart table .img {
    max-width: 10rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background-size: contain !important
}

.cart table .img:after {
    content: '';
    display: block;
    padding-top: 100%
}

.cart table .quantity {
    width: auto
}

.cart table .text_cart_block {
    display: inline-block;
    vertical-align: middle;
    padding-left: 1.5rem;
    max-width: 35rem
}

.cart table .text_cart_block .name {
    max-width: 70%;
    color: #01887b;
    font-size: 2rem;
    line-height: 1.1
}

.cart table .text_cart_block .code {
    display: block;
    color: #bbbcbe;
    margin-top: .5rem;
    font-size: 1.4rem
}

.cart table .delete {
    cursor: pointer;
    max-width: 3rem
}

.cart table .delete:hover svg {
    color: #01887b
}

.cart table .delete svg {
    width: 2.5rem;
    color: #F9AA33;
    height: 2.5rem
}

.cart .button {
    margin-top: 1rem;
    width: 100%;
    max-width: 25rem
}

.cart .view_total {
    padding: 2rem !important
}

.cart .total_block {
    background: #fff;
    padding: 0 2rem;
    border: .1rem solid #eaeaeb;
    margin: 5.5rem 0 2rem;
    width: 100%;
    font-size: 2rem
}

.cart .total_block span {
    font-size: 2rem
}

.cart .total_block span.total_price {
    margin-left: 1rem;
    color: #F9AA33;
    font-size: 2.5rem
}

.cart .delivery_block {
    font-size: 1.6rem
}

.cart .delivery_block span {
    line-height: 1.2;
    font-size: 1.6rem;
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 4rem)
}

.cart .delivery_block svg {
    font-size: 2.6rem;
    color: #009688;
    margin-right: 1rem
}

.cart #res_city.active {
    width: 200%;
    display: block;
    overflow-y: auto;
    max-height: 20rem;
    border: 0.1rem solid #F9AA33;
    border-radius: .5rem;
    position: absolute;
    z-index: 5;
    background: #fff
}

.cart #res_city.active p {
    border-radius: .5rem;
    margin: 0;
    padding: .5rem
}

.cart #res_city.active p:nth-child(odd) {
    background: #f2f2f2
}

.cart .pr {
    position: relative
}

.cart #promo_code {
    display: none
}

.cart .question_form {
    display: none
}

.mobile_delete {
    display: none
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .row {
        margin: 0 -1.5rem
    }
    .row:after {
        content: '';
        display: block;
        clear: both
    }
    .row .col_1 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 12 - 3.01rem)
    }
    .row .col_2 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 6 - 3.01rem)
    }
    .row .col_3 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 4 - 3.01rem)
    }
    .row .col_4 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 3 - 3.01rem)
    }
    .row .col_5 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 2.4 - 3.01rem)
    }
    .row .col_6 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 2 - 3.01rem)
    }
    .row .col_7 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 1.714285714285714 - 3.01rem)
    }
    .row .col_8 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 1.5 - 3.01rem)
    }
    .row .col_9 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 1.3333333333 - 3.01rem)
    }
    .row .col_10 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 1.2 - 3.01rem)
    }
    .row .col_11 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 1.0909090909091 - 3.01rem)
    }
    .row .col_12 {
        float: left;
        margin: 0 1.5rem;
        width: calc(100% / 1 - 3.01rem)
    }
}

@media (min-width: 992px) {
    .mobile_btn {
        display: none
    }
    .btns_mobile {
        display: none
    }
    .value-button:hover {
        color: #000;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s
    }
    .contact_page .aside a:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        color: #F9AA33
    }
    .blog .sidebar ul li a:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        color: #F9AA33
    }
    #res_city.active p:hover {
        color: #009688;
        background: #bbbcbe
    }
    #res_city.active p:hover:nth-child(odd) {
        color: #009688;
        background: #bbbcbe
    }
    .header form button:hover {
        color: #F9AA33
    }
    .view_cart .text_cart_block .name:hover {
        color: #000;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }
    #search_results .search_list .search_item:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        background: #efefef
    }
    .products.same_products_slider .product_item:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        -webkit-box-shadow: 0 0 5px 5px rgba(249, 170, 51, 0.8);
        box-shadow: 0 0 5px 5px rgba(249, 170, 51, 0.8)
    }
    .products .product_item:hover {
        -webkit-box-shadow: 0 4px 5px 0px #6161615e;
        box-shadow: 0 4px 5px 0px #6161615e
    }
    .products .product_item:hover .bottom_hover {
        display: block;
        top: 100%;
        left: 0;
        z-index: 40;
        padding: 1rem;
        width: 100%;
        background: #fff;
        -webkit-box-shadow: 0 4px 5px 0px #6161615e;
        box-shadow: 0 4px 5px 0px #6161615e
    }
    .header .navigation .header_nav li.drDown:hover .subMenu {
        height: auto;
        opacity: 1;
        visibility: visible;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s
    }
    .header .navigation .header_nav li.drDown .subMenu:hover:before,
    .header .navigation .header_nav li.drDown .subMenu:hover:after {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        width: 30%;
        height: 30%;
        opacity: 1
    }
    .header .right_menu li .basket:hover {
        color: #F9AA33;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }
    .header .navigation .header_nav li.drDown .subMenu li:hover a {
        background: #F9AA33;
        color: #01887b !important;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }
    .products.cols_table .product_item:hover .bottom_hover {
        display: block;
        padding: 0;
        padding-left: 1rem;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #fff;
        border-left: none;
        border-right: none;
        border-bottom: none
    }
    .products .product_item .bottom_hover table tr:hover {
        color: #F9AA33;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s
    }
    .button:hover {
        background: #F9AA33;
        color: #fff
    }
    .button.light:hover {
        background: #4CAF50
    }
    .view_block .view_list:hover i {
        background: #F9AA33 !important
    }
    .sidebar .list_item>span:hover {
        color: #F9AA33;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s
    }
    .select:hover .drop {
        visibility: visible;
        opacity: 1;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        z-index: 100
    }
    .select .drop li:hover {
        color: #F9AA33 !important
    }
    .navigation li a:hover {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        color: #F9AA33 !important
    }
    .navigation li:hover {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s
    }
    .navigation li:hover a, .navigation li.active a {
        color: #F9AA33 !important
    }
    .search_results .search_list .search_item:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        background: #D3D3D3
    }
    .product_page .get_sale:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        opacity: .7
    }
    .has_promo:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        color: #d9534f;
        cursor: pointer
    }
    .have_question:hover {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        color: #d9534f;
        cursor: pointer
    }
}

@media only screen and (max-width: 1200px) {
    .navigation .header_nav li {margin-right: 0.5rem;}
    .navigation .header_nav li a {font-size: 1.2rem;}
    .products.cols_4 .product_item,
    .products.cols_4 .cat_item {
        width: 24%
    }
    .products.same_products_slider .next {
        right: -1.5rem;
        max-width: 2rem;
        background: #fff;
        padding: .5rem;
        z-index: 5;
        -webkit-box-shadow: 0 0 3px 1px #6161615e;
        box-shadow: 0 0 3px 1px #6161615e
    }
    .products.same_products_slider .prev {
        left: -1.5rem;
        max-width: 2rem;
        background: #fff;
        padding: .5rem;
        -webkit-box-shadow: 0 0 3px 1px #6161615e;
        box-shadow: 0 0 3px 1px #6161615e
    }
}

@media only screen and (max-width: 1100px) {
    .products.cols_4 .product_item,
    .products.cols_4 .cat_item {
        width: 23.9%
    }
    .products.cols_3 .product_item {
        width: 31.9%
    }
    .product_page .number {
        width: 7rem
    }
}

@media only screen and (max-width: 992px) {
    .header_logo_wr svg {width: 10rem;position: absolute; top: 0.5rem;}
    body {
        padding-top: 5rem
    }
    .sidebar .list_item #slider-range {
        max-width: 95%
    }
    .header .navigation li.drDown {
        position: relative
    }
    .header .navigation li.drDown:after {
        content: '';
        position: absolute;
        display: block;
        top: 1.7rem;
        right: 1.6rem;
        width: 1em;
        height: 1em;
        font-size: 1.2rem;
        border-style: solid;
        border-width: 3px 3px 0 0;
        border-color: #fff;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    .header .header_logo {
        text-align: left
    }
    .header .navigation {
        position: absolute;
        right: -100%;
        margin-top: 0;
        top: 5rem;
        max-width: 100%;
        padding: 0;
        z-index: 5;
        overflow-x: hidden;
        overflow-y: hidden;
        -webkit-transition: top 0.3s;
        -o-transition: top 0.3s;
        transition: top 0.3s;
        float: none;
        border: none
    }
    .header .navigation.nav-opened {
        right: 0;
        overflow: visible;
        height: auto;
        width: 100%;
        background: #009688
    }
    .header_nav_wrap {
        margin: 0
    }
    .header .navigation .drDown.visibleSub .subMenu {
        position: static;
        width: 100%;
        max-width: 100%;
        visibility: visible;
        opacity: 1;
        display: block;
        height: auto
    }
    .navigation .header_nav li.drDown .subMenu {
        position: static;
        width: 100%;
        max-width: 100%;
        visibility: visible;
        opacity: 1;
        display: block;
        height: auto
    }
    .navigation .navigation_dropBtn {
        display: block
    }
    .header .navigation .header_nav {
        border: none;
        position: relative;
        display: block;
        left: 0;
        width: 100%;
        background: transparent;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        padding: 0;
        height: calc(100vh - 13.5rem);
        overflow-y: auto
    }
    .header_nav_wrap {
        position: absolute;
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
        margin-top: 5rem
    }
    .header .navigation li {
        width: 100%;
        display: block;
        margin: 0
    }
    .header .navigation li a {
        display: block;
        color: #fff;
        font-size: 1.8rem;
        border: none;
        height: 4rem;
        line-height: 4rem
    }
    .navigation .header_nav li.drDown .subMenu li a {
        display: block;
        color: #009688;
        font-size: 1.8rem;
        border: none;
        height: 4rem;
        line-height: 4rem;
        text-align: center
    }
    .header .navigation_btn {
        display: block
    }
    .header .right_menu {
        padding-right: 7rem
    }
    .navigation .navigation_dropBtn {
        display: block
    }
    .product_page .buttons {
        margin: 0 -1.5rem
    }
    .product_page .buttons .col_4 {
        width: calc(100% - 3rem);
        margin: .5rem 1.5rem
    }
    .header .row .header_logo_wr {
        width: calc(100% / 2 - 3rem)
    }
    .header .row .col_3 {
        width: calc(100% / 2 - 3rem)
    }
    .header .row .col_7 {
        width: 0
    }
    .hide_desctop {
        display: block !important
    }
    .hide_mobile {
        display: none !important
    }
    .products.cols_4 {
        margin: 0 0 1rem -1rem
    }
    .products.cols_4 .product_item,
    .products.cols_4 .cat_item {
        width: 31.8%
    }
    .products.cols_3 {
        margin: 0 0 1rem -1rem
    }
    .products.cols_3 .product_item {
        width: 47.8%
    }
    .main_section aside {
        width: 25rem
    }
    .main_section main {
        width: calc(100% - 26rem)
    }
    .product_page .sliders .col_3,
    .product_page .sliders .col_9 {
        width: calc(100% - 3rem)
    }
    footer .row .col_3,
    footer .row .col_2 {
        width: calc(100% / 3 - 3rem)
    }
    footer .row .col_4 {
        display: none
    }
    .product_page #certificate .col_3 {
        width: calc(100% / 3 - 3rem)
    }
    .product_page .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .mobile_btn {
        background: #fff;
        border-top: 0.1rem solid #bbbcbe;
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 999;
        padding: 1rem
    }
    .mobile_btn .rows {
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .mobile_btn .rows .column {
        width: 50%;
        float: left;
        text-align: left
    }
    .mobile_btn .rows .column:last-child {
        text-align: right
    }
    .mobile_btn p {
        margin: 0
    }
    .mobile_btn .price {
        font-size: 1.4rem;
        font-weight: 700
    }
    .mobile_btn .price.old {
        color: #d9534f;
        line-height: 1.2;
        font-size: 1.2rem
    }
    .tablet_view .col_6 {
        width: calc(100% - 3rem)
    }
    .tablet_view .view_cart {
        margin-top: 2rem
    }
    .cart .main_content.large_padd {
        padding: 2rem
    }
    .header .right_menu {
        height: 5rem;
        line-height: 5rem
    }
    .header .header_logo svg {
        top: 0;
        font-size: 5rem;
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
        margin-left: 1.4rem
    }
    .header .right_menu li .basket svg {
        font-size: 2.2rem
    }
    .header .right_menu li .basket .main_count_basket {
        font-size: 1rem;
        width: 1.8rem;
        height: 1.8rem
    }
}

@media only screen and (max-width: 850px) {
    .page aside,
    .page main {
        float: none;
        width: 100%;
        display: block;
        margin: 1rem auto
    }
}

@media (min-width: 769px) {
    .btns_mobile {
        display: none
    }
    .main_section aside.filters .show_filters {
        display: none
    }
    .select .show_sort {
        display: none
    }
}

@media only screen and (max-width: 768px) {
    .products.same_products_slider .prev {
        left: 0
    }
    .products.same_products_slider .next {
        right: 0
    }
    .cart #promo_code {
        display: block
    }
    .main_top .main_text .text p,
    .main_top .main_text .text h1,
    .main_top .main_text .text h2,
    .main_top .main_text .text h3 {
        font-size: 3.5rem
    }
    .main_top .top_slider .slick-dots {
        display: none !important
    }
    .blog article .button {
        float: none !important;
        margin: 2rem auto;
        display: block !important
    }
    .main_top .btns {
        margin: 0 auto
    }
    .cart .button {
        max-width: 100%
    }
    .cart table .price {
        max-width: 100%;
        margin: 1rem 0
    }
    .blog .post_img {
        max-width: 100%;
        display: block;
        float: none;
        width: 100%;
        margin: 1rem 0;
        padding-top: 64%;
        background-size: contain !important
    }
    .cart table .quantity {
        width: 100%;
        display: block;
        margin: 1rem 0 3rem
    }
    .main_section aside {
        width: 100%;
        float: none;
        margin: 1rem auto;
        display: block
    }
    .main_section aside.blog_sidebar .block {
        display: block
    }
    .sorting {
        width: 100%;
        right: -100%;
        visibility: hidden;
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 1600;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        background: #fff
    }
    .sorting.visible {
        right: 0;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        visibility: visible
    }
    .sorting.visible .show_sort {
        right: 0;
        display: block;
        position: absolute;
        bottom: 6rem;
        z-index: 3;
        font-size: 3rem
    }
    .sorting.visible .show_sort svg {
        color: #000
    }
    .sorting:after {
        display: none
    }
    .main_section aside.filters {
        width: 100%;
        left: -100%;
        visibility: hidden;
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 1600;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        background: #fff;
        margin: 0
    }
    .main_section aside.filters.visible {
        left: 0;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        visibility: visible
    }
    .main_section aside.filters.visible .show_filters {
        right: 0;
        display: block;
        position: absolute;
        bottom: 6rem;
        z-index: 3
    }
    .main_section aside.filters.visible .show_filters svg {
        font-size: 3rem;
        color: #000
    }
    .main_section main {
        width: 100%;
        float: none;
        margin: 1rem auto;
        display: block
    }
    .products.cols_4 .product_item,
    .products.cols_4 .cat_item {
        width: 47.9%
    }
    .products.cols_3 .product_item {
        width: 48%
    }
    .bottom_content {
        padding: 1rem
    }
    .text_block {
        padding: 0
    }
    .dialog .icon_close {
        right: 0
    }
    section {
        padding: 3rem 0
    }
    .hide_mobile {
        display: none !important
    }
    .btns_mobile {
        font-size: 0;
        background: #fff;
        border-top: 0.1rem solid #bbbcbe;
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 1999;
        padding: 1rem
    }
    .btns_mobile .button {
        width: calc(101% / 2 - 1rem)
    }
    .btns_mobile .button:last-child {
        background: #F9AA33;
        margin-left: 1rem
    }
    .content img[style*="float"] {
        float: none !important;
        display: block;
        max-width: 100%;
        margin: 0 auto 2rem !important
    }
    .content img[style*="float"][style*=" right"] {
        margin: 0 auto 2rem !important;
        text-align: center
    }
    .content img[style*="float"][style*=" left"] {
        margin: 0 auto 2rem !important;
        text-align: center
    }
    .content p[style*="float"] {
        float: none !important;
        display: block;
        max-width: 100%;
        margin: 1rem auto !important
    }
    .content p[style*="float"][style*=" right"] {
        margin: 1rem auto !important;
        text-align: center
    }
    .content p[style*="float"][style*=" left"] {
        margin: 1rem auto !important;
        text-align: center
    }
    .mobile_phone {
        display: block
    }
    .main_content {
        padding: 0 .5rem 0
    }
    footer {
        padding-bottom: 8rem
    }
    footer p,
    footer a,
    footer .title {
        text-align: center
    }
    footer .footer_bottom {
        margin-top: 2rem;
        padding-top: 0;
        padding-bottom: 3rem
    }
    .pagination {
        text-align: center
    }
    footer p,
    footer a,
    footer .title {
        text-align: left
    }
    footer a,
    footer p {
        font-size: 1.4rem
    }
    .product_page #certificate .col_3 {
        width: calc(100% / 2 - 3rem)
    }
    .row [class*='col_'] {
        width: calc(100% - 3rem)
    }
    footer .row .col_4:first-child {
        display: none
    }
    footer .row .col_3,
    footer .row .col_2 {
        width: calc(100% - 3rem)
    }
    footer a,
    footer p {
        font-size: 1.6rem
    }
    .header form button {
        font-size: 0
    }
    .header form button svg {
        font-size: 2rem
    }
    .product_page .rating {
        text-align: left;
        margin: 1rem 0
    }
    .product_page .breadcrumbs {
        margin: 1rem 0
    }
    .cart table .text_cart_block .name {
        font-size: 1.8rem
    }
    .label_39._bottom_3v._pad100_GR._init_Tk.notranslate {
        bottom: 4.8rem !important
    }
}

@media only screen and (max-width: 767px) {
    .cart table .text_cart_block {
        padding-top: 1rem
    }
}

@media only screen and (max-width: 550px) {
    .product_page .get_sale {
        float: none;
        display: inline-block;
        vertical-align: middle;
        padding: 0;
        font-size: 1.4rem
    }
    .product_page .slider_nav .img {
        max-width: 90%;
        margin: 1rem auto
    }
    .product_page .price_blocks {
        width: 45%
    }
    .product_page .price_blocks .price {
        margin: 0;
        display: block;
        line-height: 1.2
    }
    .product_page table td {
        font-size: 1.4rem
    }
    .product_page .products.cols_4 .product_item {
        width: 46.5%
    }
    .tab_container .tab_content {
        padding: 1rem
    }
    .search_results .search_list .search_item span {
        height: 4rem;
        overflow: hidden
    }
    .modal_ajax.dialog {
        padding: 1rem
    }
    .search_results .search_list .search_item .price {
        font-size: 1.3rem
    }
    .main_top .banner:after {
        padding-top: 70%
    }
    .content .title,
    .content h1,
    .content .h1,
    h1 {
        font-size: 2.8rem
    }
    .content h2,
    .content .h2,
    h2 {
        font-size: 2.4rem
    }
    .content h3,
    .content .h3,
    h3 {
        font-size: 2.2rem
    }
    .content h4,
    .content .h4,
    h4 {
        font-size: 2rem
    }
    .main_top .main_text .text p,
    .main_top .main_text .text h1,
    .main_top .main_text .text h2,
    .main_top .main_text .text h3 {
        font-size: 2.4rem
    }
    .product_page #certificate .col_3 {
        width: calc(100% - 3rem)
    }
    .products .product_item .rating {
        display: none
    }
    .products .product_item .price_block .old_price {
        display: none
    }
    .products .product_item .price_block .button {
        max-width: 5rem;
        font-size: 0;
        padding: 0
    }
    .products .product_item .price_block .button svg {
        font-size: 2rem
    }
    .top_banner_img:after {
        padding-top: 50%
    }
    .products.cols_3 .product_item,
    .products.cols_4 .product_item,
    .products.cols_4 .cat_item {
        width: 47%
    }
    .products .product_item .name {
        font-size: 1.4rem;
        height: 6.6rem
    }
    .products .product_item .price_block .price {
        font-size: 1.6rem
    }
    .pagination li a {
        min-width: 3rem;
        height: 3rem;
        line-height: 2.7rem
    }
    .mobile_phone {
        font-size: 2.8rem
    }
    .label_39._bottom_3v._pad100_GR._init_Tk.notranslate {
        bottom: 4rem !important
    }
    .cart .rwd-table th,
    .cart .rwd-table td {
        text-align: center
    }
    .cart table .quantity {
        max-width: 12rem;
        margin: 1rem auto 3.7rem
    }
    .cart table .text_cart_block {
        display: block;
        padding: 1.5rem 0;
        max-width: 100%
    }
    .mobile_delete {
        display: inline;
        color: #F9AA33
    }
    .td_mobile {
        width: 40%;
        display: inline-block !important;
        vertical-align: top
    }
    .cart table .price {
        margin: 1rem 0 0;
        line-height: 1.3
    }
    .cart table .price.old {
        margin: 0
    }
    .view_cart .row_table {
        display: block
    }
    .view_cart .row_table .col_table {
        display: inline-block;
        width: 48% !important;
        max-width: 48% !important
    }
    .view_cart .qty {
        font-size: 1.6rem
    }
    .view_cart .text_cart_block {
        max-width: 100% !important
    }
    .view_cart .img {
        background-size: contain !important;
        margin: 0;
        padding-top: 45%
    }
    .wrapper {
        padding: 0 1rem
    }
    .row {
        margin: 0 -.5rem
    }
}

@media only screen and (max-width: 450px) {
    .mobile_phone {
        font-size: 2.3rem
    }
    footer {
        padding-top: 2rem
    }
    .wrap_mW {
        bottom: 2rem !important
    }
    .label_39._bottom_3v._pad100_GR._init_Tk.notranslate {
        bottom: 3.4rem !important
    }
    .cart .total_block span,
    .cart .view_total {
        font-size: 1.6rem
    }
    .cart .total_block span.total_price {
        font-size: 1.8rem
    }
    .table_view td {
        display: block;
        width: 100%
    }
}

@media only screen and (max-width: 380px) {
    .product_page .content p {
        font-size: 1.4rem
    }
    .view_cart .row_table .col_table:nth-child(2) {
        display: block;
        width: 100% !important;
        max-width: 100% !important
    }
}

@media only screen and (max-width: 370px) {
    .product_page .products.cols_4 .product_item {
        width: 96.5%
    }
    .product_page table td {
        font-size: 1.2rem
    }
    .products.cols_3 .product_item,
    .products.cols_4 .product_item,
    .products.cols_4 .cat_item {
        width: 46%
    }
    .td_mobile {
        width: 39%
    }
}

@media only screen and (max-width: 350px) {
    .mobile_phone {
        font-size: 2rem
    }
    .cart .rwd-table {
        min-width: 267px
    }
    .wrap_mW {
        bottom: 1.1rem !important
    }
    .cart table .quantity {
        left: 25%
    }
    .cart .rwd-table th,
    .cart .rwd-table td {
        margin: .5em .5em
    }
    .td_mobile {
        width: 44%
    }
    .label_39._bottom_3v._pad100_GR._init_Tk.notranslate {
        bottom: 3rem !important
    }
}

@media (orientation: landscape) and (max-height: 450px) {
    footer {
        padding-bottom: 3rem
    }
    .mobile_phone {
        display: none
    }
}

@media (max-height: 600px) {
    .products .product_item .img {
        max-width: 50%
    }
    .products .product_item .rating {
        display: none
    }
}