/* Brands where to buy */
.brand-grid {
    list-style: none;
    overflow: hidden;
    margin-bottom: 50px
}

@media screen and (max-width: 991px) {
    .brand-grid {
        margin-bottom: 30px
    }
}

.brand-grid a {
    float: left;
    width: calc(16.66666% - 30px);
    margin-left: 30px;
    margin-bottom: 30px
}

.brand-grid a img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: filter .3s, opacity .3s;
    -webkit-transition: filter .3s, -webkit-filter .3s, opacity .3s;
    opacity: .5
}

.brand-grid a:focus img,
.brand-grid a:hover img {
    -webkit-filter: none;
    filter: none;
    opacity: 1
}

.brand-grid a>img {
    width: 100%
}

.brand-grid:not(.brand-carousel) {
    margin: 0 0 0 -30px;
    padding: 0;
    width: calc(100% + 30px)
}

.brand-grid:not(.brand-carousel) a {
    background-color: #f7f7f7
}

@media screen and (max-width: 991px) {
    .brand-grid:not(.brand-carousel) a {
        width: calc(33.33333% - 30px)
    }
}

@media screen and (max-width: 767px) {
    .brand-grid:not(.brand-carousel) a {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width: 480px) {
    .brand-grid:not(.brand-carousel) {
        width: calc(100% + 15px);
        margin-left: -15px
    }

    .brand-grid:not(.brand-carousel) a {
        width: calc(50% - 15px);
        margin-left: 15px;
        margin-bottom: 15px
    }
}

/* Brands where to buy */

.google-map,
.dealers-map {
    width: 100%;
    height: 700px;
    margin-bottom: 50px;
}

.column {
    margin: 15px 15px 0;
    padding: 0;
}

.column:last-child {
    padding-bottom: 40px;
}

.column::after {
    content: '';
    clear: both;
    display: block;
}

.column div {
    position: relative;
    float: left;
    padding: 0;
}


.column div span {
    position: absolute;
    bottom: -36px;
    left: 0;
    z-index: -1;
    display: block;
    margin: 0;
    padding: 0;
    color: #333745;
    font-size: 24px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
}

figure {
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

figure:hover+span:last-child {
    bottom: -43px !important;
    opacity: 1;
}

.text-style-3 {
    font-family: 'Oswald', sans-serif;
    font-size: .5em;
    font-weight: 300;
    color: #333745
}

/* Zoom In #1 */
.hover01 figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover01 figure:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* Zoom In #2 */
.hover02 figure img {
    width: 300px;
    height: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover02 figure:hover img {
    width: 350px;
}

/* Zoom Out #1 */
.hover03 figure img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover03 figure:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Zoom Out #2 */
.hover04 figure img {
    width: 400px;
    height: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover04 figure:hover img {
    width: 300px;
}

/* Slide */
.hover05 figure img {
    margin-left: 30px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover05 figure:hover img {
    margin-left: 0;
}

/* Rotate */
.hover06 figure img {
    -webkit-transform: rotate(15deg) scale(1.4);
    transform: rotate(15deg) scale(1.4);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover06 figure:hover img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

/* Blur */
.hover07 figure img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover07 figure:hover img {
    -webkit-filter: blur(0);
    filter: blur(0);
}

/* Gray Scale */
.hover08 figure img {
    -webkit-filter: grayscale(40%);
    filter: grayscale(40%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

body.rounded .hover08 figure img {
    border-radius: 6px;
}

.hover08 figure:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/* Sepia */
.hover09 figure img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover09 figure:hover img {
    -webkit-filter: sepia(0);
    filter: sepia(0);
}

/* Blur + Gray Scale */
.hover10 figure img {
    -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover10 figure:hover img {
    -webkit-filter: grayscale(100%) blur(3px);
    filter: grayscale(100%) blur(3px);
}

/* Opacity #1 */
.hover11 figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover11 figure:hover img {
    opacity: .5;
}

/* Opacity #2 */
.hover12 figure {
    background: #1abc9c;
}

.hover12 figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover12 figure:hover img {
    opacity: .5;
}

/* Flashing */
.hover13 figure:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

/* Shine */
.hover14 figure {
    position: relative;
}

.hover14 figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.hover14 figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Circle */
.hover15 figure {
    position: relative;
}

.hover15 figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.hover15 figure:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Fade Image Catalog */
.image.second {
    border: 2px solid transparent;
    margin: 0;
    padding: 0;
}

.image.first {
    border: 2px solid #ffffff;
    display: block;
    position: absolute;
    transition-duration: 0.96s;
    z-index: 9;
}

.image.first:hover {
    opacity: 0;
}


/* Responsive table */
.resp-table .table table {
    max-width: 100%;
    min-width: 70%;
}

.resp-table input[type="checkbox"].main-checkbox+label,
input[type="radio"].main-radio+label {
    margin-top: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 800px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    .resp-table .table table,
    .resp-table .table thead,
    .resp-table .table tbody,
    .resp-table .table th,
    .resp-table .table td,
    .resp-table .table tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .resp-table .table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .resp-table .table tr {
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

    .resp-table .table.cart-table tr {
        border-left: none;
    }

    .resp-table .table tr:last-child {
        border-bottom: 0;
    }

    .resp-table .table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    .resp-table .table.cart-table td {
        /* Behave  like a "row" */
        border: none;
    }

    .resp-table .table td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /* Label the data */
    .resp-table .table td:before {
        content: attr(data-title);
    }
}

/* END Responsive table */

/*CHARACTERS LIST - product info*/
.product_info_characters {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.product_info_characters li {
    display: block;
    float: left;
}

.product_info_characters li:after {
    content: ",";
    margin-right: 5px;
}

.product_info_characters li:last-child:after {
    content: "";
}

/* END CHARACTERS LIST - product info*/

.tab-content ul.marker-simple-list li {
    margin-left: 20px;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-v-20 {
    margin: 20px 0 !important;
}

.m-v-15 {
    margin: 15px 0 !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.product-meta.product-label {
    display: none;
    background-color: #fff !important;
    border: 2px solid #F5B03E;
    font-size: 14px;
    float: none;
    line-height: 25px;
    padding: 5px 10px;
}

.product-meta.product-label a {
    color: #333745 !important;
}

.product-meta.product-label a:hover {
    color: #A2092D !important;
}

.modal-content.yt-video {
    padding: 5px 20px 20px;
}

.yellow {
    color: #ff9d00;
}

.green {
    color: #49A470;
}

.blue {
    color: royalblue;
}

.grey {
    color: #ccc;
}

.red {
    color: #ff391c;
}

/*PREVENT SEARCH*/

.searchlayer {
    background: #fff;
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    width: auto;
    z-index: 999;
    box-shadow: 0 0 0 1px #e2e2e2;
}

.finded_element {
    font-family: inherit;
    font-size: 15px;
    display: block;
    clear: both;
    padding: 2px;
    text-align: left;
    font-weight: 400;
}

.finded_element a {
    color: #333745;
}

.finded_element a:hover {
    margin-left: 5px;
    color: #333;
}

.itemPreFilterCount span {
    float: left;
}

.itemPreFilterCount a:hover {
    color: #606060;
}

.ItemCountValue {
    font-size: 30px;
}

/* Online Bubble Generator http://ilikepixels.co.uk/drop/bubbler/ */

.bubble {
    position: absolute;
    z-index: 999;
    width: auto;
    height: auto;
    padding: 5px;
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: #333745 solid 2px;
}

.bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 0;
    border-color: #fff transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -10px;
    bottom: -10px;
    left: 50%;
}

.bubble:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 11px 11px 0;
    border-color: #333745 transparent;
    display: block;
    width: 0;
    z-index: 0;
    margin-left: -11px;
    bottom: -13px;
    left: 50%;
}

/* END Online Bubble Generator http://ilikepixels.co.uk/drop/bubbler/ */

.bubble a {
    color: #A2092D;
}

.bubble a i.fc {
    left: 10px;
    margin-top: -8px;
    position: relative;
}

.bubbleItemsResult .bubble-close {
    position: inherit;
    padding-left: 4px;
    margin-top: -2px;
    text-decoration: none;
    float: right;
}

/*BlockUI*/

.loading-message {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin: 0 auto;
    max-width: 340px;
    padding: 10px;
    width: auto;
}

.loading-message-boxed h4 {
    margin: 10px;
    font-size: 1.2em;
}

.loading-message.loading-message-boxed {
    background-color: #fff;
    border: 2px solid #663399;
}

.loading-message-boxed .btn-mini.grey {
    background-color: #eee;
    color: #333745;
}

.loading-message-boxed span {
    font-size: 1.2em;
}

.loading-message-boxed img {
    display: inline-block;
}

.footer-copyright a {
    text-decoration: none;
    text-transform: uppercase;
}

.footer-copyright a img {
    margin: -2px 0 0 0;
}

/* Yandex MAP */
h2.baloonTitle {
    font-size: 18px;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    /*пропорции видео 16:9 */
    padding-top: 25px;
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*CALLBACK FORM*/

.callback-btn {
    width: 100%;
    margin-bottom: 20px !important;
}

#callbackform-layer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background: #FFF;*/
    padding: 5px;
    z-index: 100000;
}

.callbackform-close-btn {
    float: right;
    padding-top: 10px;
    padding-right: 10px;
    cursor: pointer;
}

/*END CALLBACK FORM*/

.buy-oneclick-btn {
    width: 100%;
    margin-bottom: 20px !important;
}

#buy-oneclick-layer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background: #FFF;*/
    padding: 5px;
    z-index: 100000;
}

.oneclick-item-table {
    padding-top: 5px;
    padding-bottom: 15px;
}

.oneclick-item-table td {
    padding: 10px;
}

.oneclick-item-image>img {
    width: 100px;
    padding: 5px;
}

.oneclick-item-title {
    padding: 5px;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-size: 1.2em;
}

.buy-oneclick-close-btn {
    float: right;
    padding-top: 10px;
    padding-right: 10px;
    cursor: pointer;
}

ul.simple-list {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    list-style: none;
}

ul.simple-list li {
    display: list-item;
    position: relative;
    padding: 5px 0;
    line-height: 20px;
}

ul.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 12px;
}

.tags li {
    background-color: rgb(255, 255, 255);
    padding: 6px calc(8.2px + 0.25vw);
    transition: 0.2s ease-in-out;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(238, 238, 238);
    border-image: initial;
}

.bordered-box ul.tags {
    position: relative;
    background-color: rgb(248, 248, 248);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(238, 238, 238);
    border-image: initial;
    padding: calc(10.4px + 0.5vw);
    border-radius: 0px;
}

.status-badge {
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}

.status-badge__body {
    position: relative;
    min-height: 23px;
    border-radius: 11.5px;
    min-width: 31px;
}

.status-badge__icon svg {
    display: block;
}
.status-badge--has-icon .status-badge__text {
    padding-left: 28px;
}

.status-badge__text {
    font-size: 13px;
    line-height: 15px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
}
.status-badge__icon {
    fill: currentColor;
    position: absolute;
    top: calc(50% - 6.5px);
    opacity: .85;
    left: 9px;
}
.status-badge--style--success .status-badge__body {
    background-color: #f1f4fa;
    color: #233c51;
}
.status-badge--style--failure .status-badge__body {
    background-color: #f1f4fa;
    color: #993d3d;
}

.payment-card-bottom a {
    color: #fff;
}

.hide {
    display: none !important;
}

.desc ul, .desc ol {
    margin: 20px 0 20px 30px;
}

.desc ul li, .desc ol li {
    display: list-item !important;
    margin-bottom: 10px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));

}

.desc ul li {
    list-style: disc !important;
}

.desc ol li {
    list-style: decimal !important;
}
.mess_icon, .fb_icon {
  position: fixed;
  bottom: 130px;
  right: 21px;
  z-index: 10001;
}

.mess_icon img, .fb_icon img {
  width: 62px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .mess_icon, .fb_icon {
    bottom: 120px;
    right: 20px;
    z-index: 10;
  }
}

@media screen and (max-width: 590px) {
  .mess_icon, .fb_icon {
    bottom: 120px;
    right: 20px;
    z-index: 10;
  }
  .mess_icon img, .fb_icon img {
    width: 35px;
  }
}

.tap-top.question {
    bottom: 180px;
}

.blink-class {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    25% {
        opacity: 0.5;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 0.5;
    }
}
