.covid-fixed {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    position: relative;
    text-align: center
}

@media screen and (max-width:767px) {
    .covid-fixed {
        font-size: 16px;
        padding: 10px 40px
    }
}

.covid-fixed .close-button {
    align-items: center;
    bottom: 0;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    position: absolute;
    right: 20px;
    top: 0
}

@media screen and (max-width:767px) {
    .covid-fixed .close-button {
        right: 12px
    }
}

.fixed-region {
    z-index: 10000
}

.fixed-region.fixed {
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.header-region {
    align-items: center;
    background: #fff;
    box-shadow: 1px 1px 1px 1px hsla(0, 0%, 83.9%, .4);
    display: flex;
    height: 87px;
    padding: 3px
}

@media screen and (max-width:767px) {
    .header-region {
        height: auto
    }
}

.header-region>.container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center
}

@media screen and (max-width:767px) {
    .header-region>.container {
        justify-content: center
    }
}

.header-logo-link {
    display: flex;
    margin: 10px 0;
    text-decoration: none
}

.header-logo {
    height: 47px
}

@media screen and (max-width:767px) {
    .header-logo {
        height: 25px
    }
}

.header-logo-product-title {
    font-weight: 700;
    color: #333
}

.footer-region {
    align-items: center;
    background-color: #f3f3f3;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 300;
    padding: 27px 0;
    margin-top: 20px
}

.footer-region--no-top-space {
    margin-top: 0
}

.footer__row {
    align-items: center;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: auto;
    max-width: 1000px;
    padding-left: 0;
    padding-right: 0;
    text-align: center
}

@media screen and (max-width:767px) {
    .footer__row {
        flex-wrap: wrap
    }
}

.footer__row-item {
    margin: 10px 0
}

@media screen and (max-width:767px) {
    .footer__row-item {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media screen and (max-width:320px) {
    .footer__row-item {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.footer__row-item+.footer__row-item:before {
    color: #6c6c6c;
    content: "|";
    padding: 5px
}

@media screen and (max-width:767px) {
    .footer__row-item+.footer__row-item:before {
        display: none
    }
}

.footer__link {
    color: #064870;
    font-size: 10px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 7px;
    margin-left: 7px;
    white-space: nowrap
}

.footer-company-address {
    color: #333;
    font-size: 13px;
    padding: 10px 24px;
    text-align: center
}

html {
    scroll-behavior: smooth
}

body {
    color: #333;
    display: flex;
    flex-direction: column;
    font-family: Noto Sans, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    min-height: 100vh;
    text-align: left;
    transition: padding-top .3s ease
}

body,
body * {
    box-sizing: border-box
}

[dir=rtl] body {
    text-align: right
}

#app,
main {
    display: flex;
    flex-direction: column
}

p {
    margin: 0
}

input,
select,
textarea {
    color: #333;
    font-family: Noto Sans, sans-serif;
    font-size: 17px;
    line-height: 1.5
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative
}

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

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

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

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

.fa {
    font-size: 18px
}

.check {
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    display: flex;
    flex-shrink: 0;
    height: 20px;
    justify-content: center;
    width: 20px
}

.invalid>.check {
    animation: shadow-drop-center-error .4s cubic-bezier(.25, .46, .45, .94) 0s 1 normal both running
}

input:focus+.check {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    border-color: #409eff
}

.check div {
    border: solid #000;
    border-width: 0 3px 3px 0;
    height: 10px;
    margin-left: 1px;
    margin-top: -2px;
    transform: rotate(45deg);
    width: 5px
}

[dir=rtl] .check div {
    margin-left: -1px;
    transform: rotate(-45deg) scaleX(-1)
}

.dialog {
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000
}

.dialog,
.dialog>.inside {
    display: flex;
    flex-direction: column
}

.dialog>.inside {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    margin: 64px 0;
    max-width: 600px;
    width: 50%
}

@media screen and (max-width:767px) {
    .dialog>.inside {
        width: 90%
    }
}

.dialog-title {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 20px 10px;
    position: relative;
    text-align: center
}

.dialog-close {
    color: #999;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 20px
}

.dialog-content {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    padding: 30px 20px
}

.error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    color: #a94442;
    padding: 15px
}

.input {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    position: relative;
    width: 100%
}

.input-field-label {
    font-size: 17px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.input.invalid .input-field-label {
    color: #e74c3c
}

.input-field-container {
    display: flex;
    flex-direction: column;
    position: relative
}

.input-field-loading {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .5);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.input-field-loading .spinner {
    transform: scale(.4)
}

.input-field-prefix {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 46px;
    z-index: 1
}

[dir=rtl] .input-field-prefix {
    left: auto;
    right: 0
}

.input-field-prefix.clickable {
    cursor: pointer
}

.input-field-suffix {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 46px;
    z-index: 1
}

[dir=rtl] .input-field-suffix {
    left: 0;
    right: auto
}

.input-field-suffix.clickable {
    cursor: pointer
}

.input-field-mask {
    align-items: center;
    border: 1px solid transparent;
    bottom: 0;
    color: grey;
    display: flex;
    font-family: monospace;
    font-size: 17px;
    left: 0;
    padding: 2px 15px 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 1
}

.input-field-input {
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 40px;
    outline: none;
    padding: 0 15px;
    width: 100%
}

.input-field-input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    border-color: #409eff
}

.input-field-input.monospace {
    font-family: monospace
}

.input.invalid .input-field-input {
    animation: shadow-drop-center-error .4s cubic-bezier(.25, .46, .45, .94) 0s 1 normal both running
}

.input.with-prefix .input-field-input {
    padding-left: 46px
}

[dir=rtl] .input.with-prefix .input-field-input {
    padding-left: 15px;
    padding-right: 46px !important
}

.input.with-suffix .input-field-input {
    padding-right: 46px
}

[dir=rtl] .input.with-suffix .input-field-input {
    padding-left: 46px !important;
    padding-right: 15px
}

.input-field-errors {
    display: flex;
    flex-direction: column
}

.input-field-error {
    color: #2196f3;
    display: none;
    font-size: 17px
}

.input-field-error:first-child {
    display: inline
}

.input.invalid .input-field-error {
    color: #c0392b
}

.input-field-error * {
    display: inline
}

@keyframes shadow-drop-center-error {
    0% {
        box-shadow: 0 0 0 0 transparent
    }

    to {
        box-shadow: 0 0 6px 0 #c0392b
    }
}

.iti {
    display: flex;
    width: 100%
}

.iti__country {
    display: flex;
    align-items: center
}

.iti__selected-flag {
    outline: none
}

[dir=rtl] .iti__arrow,
[dir=rtl] .iti__selected-dial-code {
    margin-left: 0;
    margin-right: 6px
}

[dir=rtl] .iti__country-name,
[dir=rtl] .iti__flag-box {
    margin-left: 6px;
    margin-right: 0
}

[dir=rtl] .iti__flag-container {
    left: auto
}

.radio {
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 18px;
    justify-content: center;
    width: 18px
}

.radio div {
    background-color: #000;
    border-radius: 50%;
    height: 12px;
    width: 12px
}

.select {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    position: relative;
    width: 100%
}

.select-field-label {
    font-size: 17px;
    margin-bottom: 6px;
    white-space: nowrap
}

.select.invalid .select-field-label {
    color: #e74c3c
}

.select-field-container {
    display: flex;
    flex-direction: column;
    position: relative
}

.select-field-loading {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .5);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.select-field-loading .spinner {
    transform: scale(.4)
}

.select-field-input {
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    height: 40px;
    outline: none;
    padding: 0 15px
}

.select-field-input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    border-color: #409eff
}

.select.invalid .select-field-input {
    animation: shadow-drop-center-error .4s cubic-bezier(.25, .46, .45, .94) 0s 1 normal both running
}

.select-field-errors {
    display: flex;
    flex-direction: column
}

.select-field-error {
    color: #2196f3;
    display: none;
    font-size: 17px
}

.select-field-error:first-child {
    display: inline
}

.select.invalid .select-field-error {
    color: #c0392b
}

.select-field-error * {
    display: inline
}

.spinner {
    display: inline-block;
    height: 64px;
    position: relative;
    width: 64px
}

.spinner div {
    animation: spinner 1.2s linear infinite;
    transform-origin: 32px 32px
}

.spinner div:after {
    background-color: #409eff;
    border-radius: 20%;
    content: " ";
    display: block;
    height: 14px;
    left: 29px;
    position: absolute;
    top: 3px;
    width: 5px
}

.spinner div:first-child {
    animation-delay: -1.1s;
    transform: rotate(0)
}

.spinner div:nth-child(2) {
    animation-delay: -1s;
    transform: rotate(30deg)
}

.spinner div:nth-child(3) {
    animation-delay: -.9s;
    transform: rotate(60deg)
}

.spinner div:nth-child(4) {
    animation-delay: -.8s;
    transform: rotate(90deg)
}

.spinner div:nth-child(5) {
    animation-delay: -.7s;
    transform: rotate(120deg)
}

.spinner div:nth-child(6) {
    animation-delay: -.6s;
    transform: rotate(150deg)
}

.spinner div:nth-child(7) {
    animation-delay: -.5s;
    transform: rotate(180deg)
}

.spinner div:nth-child(8) {
    animation-delay: -.4s;
    transform: rotate(210deg)
}

.spinner div:nth-child(9) {
    animation-delay: -.3s;
    transform: rotate(240deg)
}

.spinner div:nth-child(10) {
    animation-delay: -.2s;
    transform: rotate(270deg)
}

.spinner div:nth-child(11) {
    animation-delay: -.1s;
    transform: rotate(300deg)
}

.spinner div:nth-child(12) {
    animation-delay: 0s;
    transform: rotate(330deg)
}

@keyframes spinner {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.card_number-field .input-field-prefix img {
    height: 22px
}

.card_number-field input {
    font-family: Pathway Gothic One, sans-serif !important;
    font-size: 19px !important
}

.card_cvv-dialog {
    display: none
}

.card_cvv-dialog img {
    align-self: center
}

.card_cvv-dialog.active {
    display: flex
}

.email-field .suggestion {
    font-weight: 700
}

.terms-field {
    cursor: pointer;
    display: flex
}

.terms-field-input {
    height: 0;
    position: absolute;
    width: 0
}

.terms-field-check {
    margin-right: 8px;
    margin-top: 2px
}

[dir=rtl] .terms-field-check {
    margin-left: 8px;
    margin-right: 0
}

.terms-field-label {
    font-size: 16px;
    line-height: 1.5
}

.terms-field.invalid .terms-field-label {
    color: #e74c3c
}

.terms-field-label a {
    color: #333
}

.terms-field.invalid .terms-field-label a {
    color: #e74c3c
}

.variant-field {
    display: flex;
    flex-direction: column
}

.variant-field-error {
    margin-bottom: 10px
}

.variant-field-label {
    margin-bottom: 6px
}

.variant-field.invalid .variant-field-label {
    color: #e74c3c
}

.variant-field>.inside {
    display: flex;
    flex-direction: column;
    position: relative
}

.variant-field-input {
    align-items: center;
    background: linear-gradient(180deg, #f7f8fa, #e7e9ec);
    border: 1px solid #bbb;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    padding: 8px 15px
}

.variant-field-input:hover {
    background: linear-gradient(180deg, #e7e9ec, #f7f8fa)
}

.variant-field.opened .variant-field-input {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    border-color: #409eff
}

.variant-field.invalid .variant-field-input {
    animation: shadow-drop-center-error .4s cubic-bezier(.25, .46, .45, .94) 0s 1 normal both running
}

.variant-field-input .icon {
    position: absolute;
    right: 13px
}

.variant-field-input i {
    color: #c0c4cc;
    font-size: 18px;
    margin-left: auto;
    margin-right: -4px;
    transition: transform .3s
}

[dir=rtl] .variant-field-input i {
    margin-left: -4px;
    margin-right: auto
}

.variant-field.opened .variant-field-input i {
    transform: rotate(180deg)
}

.variant-field-input-image {
    height: 80px;
    margin-right: 10px
}

[dir=rtl] .variant-field-input-image {
    margin-left: 10px;
    margin-right: 0
}

.variant-field-input-label {
    color: #555;
    font-size: 14px
}

.variant-field-input-label.empty {
    align-items: center;
    display: flex;
    font-size: 16px;
    height: 80px
}

.variant-field-backdrop {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 5
}

.variant-field-dropdown {
    background-color: #fff;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 6px 0;
    position: absolute;
    right: 0;
    top: 100%;
    transition: all .3s ease;
    z-index: 10
}

.variant-field.up .variant-field-dropdown {
    bottom: 100%;
    top: auto
}

.variant-field-dropdown.slide-down-enter,
.variant-field-dropdown.slide-down-leave-to {
    padding: 0
}

.variant-field-dropdown.slide-down-enter .variant-field-item,
.variant-field-dropdown.slide-down-leave-to .variant-field-item {
    height: 0
}

.variant-field-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    height: 80px;
    overflow: hidden;
    padding: 0 20px;
    transition: all .3s ease
}

.variant-field-item:hover {
    background-color: #f5f7fa
}

.variant-field-item.active {
    color: #409eff;
    font-weight: 700
}

.variant-field-item img {
    height: 80px;
    margin: 0 10px
}

.warranty-field {
    background-color: #ebebeb;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 #b4b5b5;
    cursor: pointer;
    display: flex;
    padding: 16px 70px;
    position: relative;
    transition: all .3s ease
}

.warranty-field:hover {
    background-color: hsla(0, 0%, 74.9%, .71);
    background-image: linear-gradient(180deg, #e6e6e6, #ccc)
}

.warranty-field.with-two-blocks {
    flex-wrap: wrap;
    padding: 0
}

.warranty-field.with-two-blocks .warranty-field-header-block {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px 20px 16px 45px;
    background-color: #fff3c9;
    position: relative
}

.warranty-field.with-two-blocks .warranty-field-header-block .warranty-arrow-right {
    top: calc(50% - 9px)
}

.warranty-field.with-two-blocks .warranty-field-text-block {
    width: 100%;
    padding: 16px 20px;
    background-color: #fdfceb
}

.warranty-field.with-two-blocks.small {
    padding: 0
}

.warranty-field.with-two-blocks.small .warranty-field-header-block {
    padding: 16px 20px 16px 45px
}

.warranty-field.with-two-blocks.small .warranty-field-text-block {
    padding: 16px
}

.warranty-field.small {
    padding: 16px 20px 16px 45px
}

[dir=rtl] .warranty-field.small {
    padding: 16px 45px 16px 20px
}

@media screen and (max-width:767px) {
    .warranty-field {
        padding: 16px 40px 16px 50px
    }

    [dir=rtl] .warranty-field {
        padding: 16px 50px 16px 40px
    }
}

.warranty-field.fade-enter,
.warranty-field.fade-leave-to {
    opacity: 0
}

.warranty-arrow-left {
    animation: warranty-arrow-left .5s cubic-bezier(.25, .46, .45, .94) infinite alternate both;
    color: #dc003a;
    display: none;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 20px
}

[dir=rtl] .warranty-arrow-left {
    display: block
}

@keyframes warranty-arrow-left {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-10px)
    }
}

.warranty-arrow-right {
    animation: warranty-arrow-right .5s cubic-bezier(.25, .46, .45, .94) infinite alternate both;
    color: #dc003a;
    font-size: 18px;
    left: 10px;
    position: absolute;
    top: 20px
}

[dir=rtl] .warranty-arrow-right {
    display: none
}

@keyframes warranty-arrow-right {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(10px)
    }
}

.warranty-field-image {
    height: auto;
    position: absolute;
    right: -7px;
    top: -7px;
    width: 30px
}

[dir=rtl] .warranty-field-image {
    left: -7px;
    right: auto;
    transform: rotate(-24deg)
}

.warranty-field-check {
    margin-right: 10px;
    margin-top: 4px
}

[dir=rtl] .warranty-field-check {
    margin-left: 10px;
    margin-right: 0
}

.small .warranty-field-check {
    margin-top: 3px
}

@media screen and (max-width:767px) {
    .warranty-field-check {
        margin-top: 3px
    }
}

.warranty-field-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8
}

.warranty-field.small .warranty-field-label {
    font-size: 14px
}

@media screen and (max-width:767px) {

    .warranty-field-label,
    .warranty-field.small .warranty-field-label {
        font-size: 14px
    }
}

.form {
    display: flex;
    flex-wrap: wrap;
    transition: all .3s ease
}

.form.fade-enter,
.form.fade-leave-to {
    opacity: 0
}

.apm-buttons {
    display: flex;
    flex-direction: column
}

.apm-button {
    background: linear-gradient(180deg, #f7f8fa, #e7e9ec);
    cursor: pointer;
    height: 56px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 2px 2px 2px 0 #b4b5b5;
    border: 1px solid #e7e9ec;
    border-radius: 4px
}

.apm-button,
.apm-button:before {
    align-items: center;
    display: flex
}

.apm-button:before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%333' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'></path></svg>");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 0 50% 50% 0;
    content: "";
    justify-content: center;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s linear 0s;
    width: 0;
    z-index: 1
}

[dir=rtl] .apm-button:before {
    border-radius: 50% 0 0 50%;
    content: "\F053";
    left: auto;
    right: 0
}

.apm-button:hover {
    background: linear-gradient(180deg, #e7e9ec, #f7f8fa)
}

.apm-button:hover:before {
    opacity: 1;
    width: 30px
}

.apm-button-arrow {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .3);
    border-radius: 0 50% 50% 0;
    bottom: 0;
    display: flex;
    font-size: 18px;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s linear;
    width: 0
}

[dir=rtl] .apm-button-arrow {
    border-radius: 50% 0 0 50%;
    left: auto;
    right: 0
}

.apm-button:hover .apm-button-arrow {
    opacity: 1;
    width: 30px
}

.apm-button-radio {
    margin-left: 16px;
    border-color: #c3bbbb
}

[dir=rtl] .apm-button-radio {
    margin-left: 0;
    margin-right: 16px
}

.apm-button-label {
    font-weight: 700;
    font-size: 16px;
    margin-left: 16px
}

[dir=rtl] .apm-button-label {
    margin-left: 0;
    margin-right: 16px
}

.apm-button-image {
    margin-left: auto;
    margin-right: 8px;
    max-width: 72px;
    max-height: 100%
}

.apm-button-image.little-height {
    padding: 3px 0
}

[dir=rtl] .apm-button-image {
    margin-left: 8px;
    margin-right: auto
}

.credit-cards-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px
}

.credit-card-item {
    display: flex;
    flex-direction: column;
    margin: 4px
}

.credit-card-item img {
    max-width: 56px
}

.credit-cards {
    align-items: center;
    background-image: linear-gradient(#0f9b0f, #0d840d);
    border-radius: 3px;
    box-shadow: 2px 2px 2px 0 #b4b5b5;
    cursor: pointer;
    display: flex;
    padding: 15px;
    position: relative;
    margin-top: 10px
}

.credit-cards:hover {
    background-image: linear-gradient(180deg, #6d4, #3d6c04)
}

.credit-cards .credit-cards-list {
    margin-top: 8px
}

.credit-cards-arrow {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .3);
    border-radius: 0 50% 50% 0;
    bottom: 0;
    color: #fff;
    display: flex;
    font-size: 18px;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s linear;
    width: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%23Ffff' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'></path></svg>");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50%
}

[dir=rtl] .credit-cards-arrow {
    border-radius: 50% 0 0 50%;
    left: auto;
    right: 0
}

.credit-cards:hover .credit-cards-arrow {
    opacity: 1;
    width: 30px
}

.credit-cards-radio {
    background-color: transparent;
    border-color: #fff
}

.credit-cards-radio div {
    background-color: #fff
}

.credit-cards>.inside {
    display: flex;
    flex-direction: column;
    margin-left: 12px
}

[dir=rtl] .credit-cards>.inside {
    margin-left: 0;
    margin-right: 12px
}

.credit-cards-label {
    color: #fff;
    font-family: Noto Sans, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, .3) -1px -1px 0;
    text-transform: capitalize
}

.paypal-button {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%
}

.paypal-button-original {
    height: 55px;
    overflow: hidden
}

.paypal-button-shim {
    align-items: center;
    background-color: #ffc438;
    background-image: linear-gradient(#fff0a8, #f9b421);
    border: 1px solid #feae01;
    border-radius: 5px;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100
}

.paypal-button-shim.active {
    pointer-events: none
}

.paypal-button:hover .paypal-button-shim.active {
    background-image: linear-gradient(#f9b421, #fff0a8)
}

.paypal-button-arrow {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .3);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%23Ffff' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'></path></svg>");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 0 50% 50% 0;
    bottom: 0;
    color: #000;
    display: flex;
    font-size: 18px;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s linear;
    width: 0
}

[dir=rtl] .paypal-button-arrow {
    border-radius: 50% 0 0 50%;
    left: auto;
    right: 0
}

.paypal-button:hover .paypal-button-shim.active .paypal-button-arrow {
    opacity: 1;
    width: 30px
}

.paypal-button-disabled {
    background-color: #fff;
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.paypal-button-label {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap
}

.paypal-button-image {
    margin-left: 10px;
    margin-top: -2px;
    max-width: 90px
}

[dir=rtl] .paypal-button-image {
    margin-left: 0;
    margin-right: 10px
}

.paypal-pay-later-label {
    font-style: italic;
    text-align: center;
    font-size: 13px;
    margin: 5px 28px
}

.pay-card-button {
    display: flex;
    flex-direction: column;
    position: relative
}

.pay-card-button.active {
    cursor: pointer
}

.pay-card-button .disabled {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .5);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.pay-card-button .disabled .spinner {
    transform: scale(.8)
}

.pay-card-button .disabled .spinner div:after {
    background-color: #fff
}

.pay-card-button .label.hidden {
    visibility: hidden
}

.timer-mobile {
    background-color: #22ab9f;
    color: #fff;
    display: none;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 40px;
    text-align: center
}

.timer-mobile.timer-black {
    background-color: #333
}

.timer-mobile.timer-black b {
    color: red;
    text-decoration: underline
}

.timer-mobile.timer-christmas {
    background-color: #e74c3c
}

.timer-mobile.timer-christmas b {
    color: #fef036;
    text-decoration: underline
}

@media screen and (max-width:767px) {
    .timer-mobile {
        display: flex
    }
}

.timer-mobile-label {
    margin-right: 5px
}

.timer-desktop {
    flex-grow: 1
}

@media screen and (max-width:767px) {
    .timer-desktop {
        display: none
    }
}

.timer-desktop>.inside {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.timer-desktop>.inside>* {
    padding: 7px 0
}

.timer-label {
    font-weight: 700;
    font-size: 20px;
    text-align: right;
    margin-right: 15px
}

.timer-label b {
    color: red;
    text-decoration: underline
}

.timer-time {
    line-height: 1.25
}

.timer-minutes,
.timer-seconds,
.timer-time {
    display: flex
}

.timer-minutes>div,
.timer-seconds>div {
    background-color: #333;
    border-radius: 6px;
    color: #ccc;
    font-size: 54px;
    font-weight: 700;
    margin-right: 5px;
    padding: 0 2px;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 2px #000
}

.timer-line {
    background-color: #000;
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.timer-dots {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    margin-right: 5px;
    padding: 18px 0
}

.timer-dots>div {
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background: #323434;
    border-radius: 50%;
    display: block;
    height: 7px;
    width: 7px
}

.preloader {
    align-items: center;
    bottom: 0;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000
}

.preloader,
.preloader>.inside {
    background-color: #fff;
    display: flex
}

.preloader>.inside {
    border-radius: 3px;
    flex-direction: column;
    justify-content: space-between;
    height: 460px;
    margin: auto 15px;
    max-width: 100%;
    padding: 60px 40px;
    width: 680px
}

.preloader-title {
    color: #333;
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400
}

.preloader-country-image {
    margin: auto;
    max-height: 128px;
    max-width: 128px;
    width: 100%
}

.preloader-svg-box {
    display: block;
    margin: 0 auto;
    position: relative;
    width: 150px
}

.preloader-svg-box svg {
    max-width: 100%;
    stroke: #7cb342
}

.preloader-svg-box circle {
    animation: preloader-draw-circle .7s ease-out;
    opacity: .4;
    stroke-dasharray: 330;
    stroke-dashoffset: 0;
    stroke-linecap: round
}

.preloader-checkmark {
    height: 40px;
    left: 49px;
    stroke-width: 6.25;
    stroke-linecap: round;
    position: absolute;
    top: 56px;
    width: 52px
}

.preloader-checkmark-check {
    animation: preloader-draw-check 1s ease-out
}

@keyframes preloader-draw-check {
    0% {
        stroke-dasharray: 49, 80;
        stroke-dashoffset: 48;
        opacity: 0
    }

    50% {
        stroke-dasharray: 49, 80;
        stroke-dashoffset: 48;
        opacity: 1
    }

    to {
        stroke-dasharray: 130, 80;
        stroke-dashoffset: 48
    }
}

@keyframes preloader-draw-circle {
    0% {
        stroke-dasharray: 0, 330;
        stroke-dashoffset: 0;
        opacity: 1
    }

    80% {
        stroke-dasharray: 330, 330;
        stroke-dashoffset: 0;
        opacity: 1
    }

    to {
        opacity: .4
    }
}

.preloader-progress {
    background-color: #ebeef5;
    border-radius: 0;
    height: 26px;
    overflow: hidden;
    position: relative;
    vertical-align: middle
}

.preloader-progress-value {
    align-items: center;
    animation: preloader-progress-stripes 2s linear infinite;
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-size: 40px 40px;
    background-color: #337ab7;
    border-radius: 0;
    color: #fff;
    display: flex;
    font-weight: 700;
    font-size: 16px;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .08s ease;
    white-space: nowrap
}

@keyframes preloader-progress-stripes {
    0% {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

.recently-bought {
    background-color: #fff;
    box-shadow: 1px 1px 23px 0 rgba(89, 89, 89, .2392156863);
    border: 1px solid rgba(0, 0, 0, .2588235294);
    border-radius: 40px;
    padding: 2px;
    bottom: 16px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    color: #606266;
    font-size: 14px;
    left: 16px;
    line-height: 21px;
    overflow: hidden;
    position: fixed;
    transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s;
    width: 330px;
    z-index: 2000
}

.recently-bought:hover {
    box-shadow: 1px 1px 30px 0 rgba(89, 89, 89, .2392156863)
}

.recently-bought:hover .recently-notice__close {
    display: block
}

.recently-bought p {
    margin: 0
}

.recently_bought_transition-enter {
    left: -362px
}

.recently_bought_transition-leave-to {
    opacity: 0
}

.recently-notice {
    color: #0a0f0a;
    display: flex;
    align-items: center
}

.recently-notice__left {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    text-align: center
}

.recently-notice__left img {
    height: 100%
}

.recently-notice__right {
    flex-grow: 1;
    padding: 5px 10px
}

.recently-notice__right .red {
    color: #e74c3c
}

.recently-notice__right .green {
    color: #28a745
}

.recently-notice__close {
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    color: grey;
    right: 21px;
    bottom: 12px;
    cursor: pointer;
    display: none
}

@media screen and (max-width:767px) {
    .recently-notice__close {
        display: block
    }
}

.recently-notice__footer {
    color: #65759e;
    font-size: 12px
}

.recently-notice__footer .green {
    color: #28a745;
    text-transform: lowercase
}

.leave-modal {
    align-items: center;
    background-color: rgba(0, 0, 0, .3);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000
}

.leave-modal .d-flex {
    display: flex
}

.leave-modal .timer-component {
    position: relative;
    top: unset;
    right: unset;
    left: unset;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-align: center
}

.leave-modal .timer-component .timer-component__minutes,
.leave-modal .timer-component .timer-component__seconds {
    display: flex;
    margin: 4px
}

.leave-modal .timer-component .timer-component__dots:after {
    content: ":";
    vertical-align: middle
}

.leave-modal>.inside {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    word-break: normal;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
    border-width: 2px
}

.leave-modal>.inside .ribbon {
    display: flex;
    margin: auto auto 20px;
    height: 60px
}

.leave-modal>.inside .ribbon>div {
    background-size: 50%
}

.leave-modal>.inside .ribbon>div:first-child {
    width: 64px;
    background-size: 100%
}

.leave-modal>.inside .ribbon>div:nth-child(2) {
    font-weight: 700;
    color: #fff;
    font-size: 1.5em;
    line-height: 20px;
    background-size: 142px;
    padding: 6px 20px;
    text-transform: uppercase
}

.leave-modal>.inside .ribbon>div:nth-child(3) {
    width: 64px;
    background-size: 100%
}

.leave-modal>.inside h2 {
    font-weight: 700;
    line-height: 1.5em
}

.leave-modal>.inside p {
    font-size: 16px;
    margin: 12px 0
}

.leave-modal>.inside .button {
    width: 100%;
    background-color: #fec31d;
    color: #222;
    text-align: center;
    font-weight: 700;
    margin-top: 0;
    padding: 10px;
    font-size: 15px;
    border-radius: 3px;
    cursor: pointer
}

.leave-modal>.inside .button span {
    color: #b51217
}

.leave-modal>.inside .button:hover {
    background-color: #f8d471
}

.christmas-toolbar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    text-align: center;
    transition: height .3s ease;
    background-color: #87050c;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    z-index: 1500
}

@media screen and (max-width:767px) {
    .christmas-toolbar {
        font-size: 15px
    }
}

.christmas-toolbar.hidden {
    visibility: hidden;
    transition: none !important
}

.christmas-toolbar>.inside {
    margin: 16px 24px
}

.christmas-toolbar a {
    color: #fff;
    cursor: pointer;
    text-decoration: underline
}

.black-friday-toolbar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    text-align: center;
    transition: height .3s ease;
    background-color: #000;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    z-index: 900
}

@media screen and (max-width:767px) {
    .black-friday-toolbar {
        font-size: 15px
    }
}

.black-friday-toolbar.hidden {
    visibility: hidden;
    transition: none !important
}

.black-friday-toolbar>.inside {
    margin: 16px 24px
}

.black-friday-toolbar a {
    color: red;
    cursor: pointer;
    text-decoration: underline
}

.header-region {
    box-shadow: none;
    height: auto;
    padding: 13px 0;
    z-index: 1;
    max-width: 967px;
    margin: 0 auto;
    width: 100%
}

.header-region>.container {
    justify-content: flex-start;
    flex-direction: column
}

@media(min-width:768px) {
    .header-region>.container {
        flex-direction: row;
        margin: 0
    }
}

.header-region .header-logo-link {
    margin: 0 0 15px
}

@media(min-width:768px) {
    .header-region .header-logo-link {
        margin: 0
    }
}

.header-region .header-logo {
    height: 35px
}

.secure-checkout {
    margin-bottom: 15px
}

@media(min-width:768px) {
    .secure-checkout {
        margin-bottom: 0
    }
}

.secure-checkout .inside {
    padding-left: 12px;
    align-items: center;
    display: flex;
    justify-content: center
}

[dir=rtl] .secure-checkout .inside {
    padding-right: 12px;
    padding-left: 0
}

@media(min-width:768px) {
    .secure-checkout .inside {
        margin-left: 16px;
        border-left: 1px solid #b8b8b8
    }

    [dir=rtl] .secure-checkout .inside {
        border-left: none;
        border-right: 1px solid #b8b8b8;
        margin-left: 0;
        margin-right: 16px
    }
}

.secure-checkout .image {
    margin-right: 5px;
    max-width: 18px
}

[dir=rtl] .secure-checkout .image {
    margin-left: 5px;
    margin-right: 0
}

.secure-checkout .text {
    color: #404040;
    font-size: 16px;
    line-height: 1;
    font-family: Roboto, sans-serif
}

.header-right-side {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center
}

@media(max-width:768px) {
    .header-right-side {
        flex-direction: column
    }
}

.footer-region {
    background-color: #00324e
}

.footer-region .footer__link {
    color: hsla(0, 0%, 100%, .4)
}

.footer-region .footer-company-address {
    color: #fff
}

.header-before {
    background-color: #30bd51;
    color: #fff;
    font-family: Roboto;
    font-size: 20px;
    line-height: 1.2;
    padding: 15px;
    text-align: center
}

.header-after {
    max-width: 967px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px
}

@media(max-width:768px) {
    .header-after {
        padding: 0 10px
    }
}

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

.header-after .product-discount {
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    line-height: 26px;
    font-family: Roboto, sans-serif;
    margin: 30px 0
}

.header-after .product-discount span {
    color: #e74c3c
}

.header-after .breadcrumb {
    align-items: center;
    display: flex;
    justify-content: center
}

.header-after .breadcrumb .item {
    list-style: none;
    display: inline-block;
    color: #b8b8b8;
    font-family: Helvetica;
    font-size: 14px;
    line-height: 17px
}

@media(min-width:768px) {
    .header-after .breadcrumb .item {
        font-size: 16px
    }
}

.header-after .breadcrumb .item:first-child {
    color: #000
}

.header-after .breadcrumb .fa {
    color: #000;
    font-size: 20px;
    margin: 0 8px
}

@media(min-width:768px) {
    .header-after .breadcrumb .fa {
        margin: 0 20px
    }
}

.discount-banner {
    background: rgba(48, 189, 81, .5);
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, .25);
    border-radius: 10px;
    margin-bottom: 20px;
    color: #035b18;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px 0 20px;
    font-size: 18px
}

@media(max-width:768px) {
    .discount-banner {
        padding-top: 26px;
        padding-bottom: 24px;
        height: auto
    }
}

.discount-banner .check-mark {
    margin-right: 10px
}

[dir=rtl] .discount-banner .check-mark {
    margin-left: 10px;
    margin-right: 0
}

.main-content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%
}

@media(min-width:768px) {
    .main-content {
        flex-direction: row;
        margin-left: auto;
        margin-right: auto;
        max-width: 970px
    }
}

.left-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 15px
}

@media(min-width:768px) {
    .left-column {
        width: 50%
    }
}

.right-column {
    display: flex;
    flex-direction: column;
    margin: 35px 15px 0
}

@media(min-width:768px) {
    .right-column {
        margin-top: 0;
        width: 50%
    }
}

@media(min-width:992px) {
    .right-column {
        width: 380px
    }
}

.variant-field-label {
    display: none
}

.warranty-field {
    margin-bottom: 20px
}

.apm-buttons,
.paypal-payment-error {
    margin-top: 10px
}

.input,
.select {
    margin: 0 0 15px
}

.input-field-label {
    color: #333;
    font-size: 15px;
    pointer-events: none;
    transition: all .1s ease-in;
    margin: 0 0 11px
}

.input-field-label--static {
    position: static;
    margin-bottom: 5px
}

.select-field-label--show {
    display: block
}

.input-field-input,
.select-field-input {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    color: #000;
    font-size: 16px;
    height: 50px;
    line-height: 1.15;
    padding: 0 18px
}

.input-field-input:focus,
.select-field-input:focus {
    border-color: rgba(0, 0, 0, .2);
    box-shadow: none
}

.input-field-input::-moz-placeholder,
.select-field-input::-moz-placeholder {
    color: transparent
}

.input-field-input::placeholder,
.select-field-input::placeholder {
    color: transparent
}

.card_date-field .input-field-input::-moz-placeholder,
.card_date-field .select-field-input::-moz-placeholder,
.card_number-field .input-field-input::-moz-placeholder,
.card_number-field .select-field-input::-moz-placeholder,
.document_number-field .input-field-input::-moz-placeholder,
.document_number-field .select-field-input::-moz-placeholder,
.phone-field .input-field-input::-moz-placeholder,
.phone-field .select-field-input::-moz-placeholder {
    color: #777
}

.card_date-field .input-field-input::placeholder,
.card_date-field .select-field-input::placeholder,
.card_number-field .input-field-input::placeholder,
.card_number-field .select-field-input::placeholder,
.document_number-field .input-field-input::placeholder,
.document_number-field .select-field-input::placeholder,
.phone-field .input-field-input::placeholder,
.phone-field .select-field-input::placeholder {
    color: #777
}

.card_date-field .input-field-input,
.card_number-field .input-field-input,
.document_number-field .input-field-input,
.phone-field .input-field-input {
    padding-top: 0
}

.select-field-input {
    padding: 0 14px;
    -webkit-appearance: none;
    position: relative
}

.input-field-mask {
    padding: 0 18px
}

.input-field-error,
.select-field-error {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 3px
}

.input.invalid .input-field-input,
.input.invalid .select-field-input,
.select.invalid .input-field-input,
.select.invalid .select-field-input {
    animation: none;
    background-color: #f9ecea;
    border-color: #cc4b37
}

.input.invalid .input-field-error,
.input.invalid .select-field-error,
.select.invalid .input-field-error,
.select.invalid .select-field-error {
    color: #cc4b37
}

input:focus+.check {
    box-shadow: none
}

.card_cvv-field,
.card_date-field,
.first_name-field,
.last_name-field {
    width: 48%
}

.card_cvv-field,
.last_name-field {
    margin-left: auto
}

[dir=rtl] .card_cvv-field,
[dir=rtl] .last_name-field {
    margin-left: 0;
    margin-right: auto
}

.pay-card-button {
    background-color: #29af5c;
    border-radius: 3px;
    box-shadow: 0 3px 0 #0f6a28;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.467;
    margin: 15px auto 0;
    padding: 18px 15px 17px;
    text-align: center;
    text-transform: uppercase;
    transition: all .25s ease
}

@media(min-width:768px) {
    .pay-card-button {
        width: 100%
    }
}

.pay-card-button:hover {
    transform: scale(1.025)
}

.select-field-container:after {
    content: url(../images/arrow.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-8%);
    right: 5px;
    height: 100%;
    font-size: 60%;
    padding: 0 10px;
    background: transparent;
    color: #000;
    pointer-events: none
}

[dir=rtl] .select-field-container:after {
    left: 5px;
    right: auto
}

.title-container-c {
    border-bottom: 2px solid #ddd;
    padding-bottom: 4px;
    margin-bottom: 16px
}

.title-container-c .title-step:after {
    counter-increment: section-step;
    content: counter(section-step);
    display: inline
}

.title-c {
    line-height: 19px;
    font-weight: 300;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.title-c.bigger {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 23.4px
}

.title-subrow-c {
    padding-top: 7px;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center
}

.title-subrow-c .icon {
    margin-right: 6px
}

.title-lowest-price {
    color: #30bd51;
    font-weight: 400;
    font-size: 16px;
    text-transform: none;
    line-height: 35px
}

.title-lowest-price img {
    vertical-align: middle
}

.wcu {
    color: #333
}

.wcu__content {
    display: flex;
    flex-direction: column;
    grid-row-gap: 32px
}

.wcu__row {
    display: flex;
    grid-column-gap: 5px;
    align-items: center
}

.wcu__text>div {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 4px
}

.wcu__text>div+div {
    font-size: 13px;
    line-height: 15px
}

.wcu__icon {
    max-width: 61px;
    width: 100%
}

.users-online {
    align-items: center;
    display: flex;
    margin: 10px 15px 0 0;
    justify-content: flex-start
}

.users-online .magnifier {
    max-width: 100%
}

.users-online .text {
    color: #2e98f8;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding-left: 10px;
    position: relative;
    align-items: center
}

[dir=rtl] .users-online .text {
    padding-left: 0;
    padding-right: 10px
}

.users-online .text .value {
    transition: all 1s ease
}

.users-online .text .value.fade-enter,
.users-online .text .value.fade-leave-to {
    opacity: 0
}

.users-online .text .value.fade-leave-active {
    position: absolute
}

.users-online .text .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    margin-left: 3px;
    animation: blinker-dot 3s infinite
}

[dir=rtl] .users-online .text .dot {
    margin-left: 0;
    margin-right: 3px
}

@keyframes blinker-dot {
    50% {
        opacity: 0
    }
}

.us-warehouse-title {
    margin-top: 15px;
    margin-right: 62px
}

@media(max-width:768px) {
    .us-warehouse-title {
        margin-right: 0
    }
}

.us-warehouse-title img {
    width: 65px
}

.deals {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 52px
}

@media(min-width:768px) {
    .deals {
        flex-direction: row;
        grid-row-gap: 0;
        grid-column-gap: 20px
    }
}

.deals .deal {
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    position: relative;
    outline: 1px solid #858585;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    box-sizing: content-box;
    transition: all .1s ease-in
}

.deals .deal:hover {
    background: hsla(0, 0%, 52.2%, .1)
}

@media(max-width:768px) {
    .deals .deal {
        max-width: 100%;
        position: relative
    }
}

@media(min-width:992px) {
    .deals .deal {
        padding-bottom: 20px
    }
}

.deals .deal:first-child {
    padding-top: 15px
}

@media(max-width:768px) {
    .deals .deal:first-child .deal-image {
        top: 15px
    }
}

.deals .deal:first-child .deal-title {
    display: none
}

.deals .deal:last-child {
    background: hsla(0, 0%, 52.2%, .1);
    outline: 2px solid hsla(0, 0%, 52.2%, .4);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.deals .deal:last-child:hover {
    background-color: hsla(0, 0%, 52.2%, .05)
}

.deals .deal.primary {
    outline: 1px solid #ffe15a;
    background: rgba(255, 225, 90, .2);
    border: 5px solid #ffe15a
}

.deals .deal.primary .deal-title {
    background-color: #ffe15a
}

.deals .deal.primary:hover {
    background: rgba(255, 225, 90, .1)
}

.deals .deal.selected {
    outline: 1px solid #30bd51;
    background: rgba(48, 189, 81, .1);
    border: 5px solid #30bd51;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    max-width: 800px;
    width: 100%
}

.deals .deal.selected:hover {
    background: rgba(48, 189, 81, .05)
}

@media(max-width:768px) {
    .deals .deal.selected {
        max-width: calc(100% - 10px);
        position: relative
    }
}

.deals .deal.selected .deal-title {
    background: #30bd51;
    color: #fff
}

.deals .deal.sellout {
    cursor: default
}

.deals .deal-sellout {
    background-color: hsla(0, 0%, 100%, .8);
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 10
}

.deals .deal-title {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18.75px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 11px;
    font-weight: 700;
    background: hsla(0, 0%, 52.2%, .1);
    color: #333
}

@media(max-width:768px) {
    .deals .deal-title {
        justify-content: center
    }
}

.deals .deal-title img {
    margin-right: 10px;
    margin-top: -5px
}

.deals .deal-content,
.deals .deal-title.center {
    justify-content: center
}

.deals .deal-content {
    display: flex;
    text-align: center;
    padding: 16px 15px 0
}

@media(max-width:768px) {
    .deals .deal-content {
        justify-content: flex-start;
        padding-left: 14px;
        padding-right: 12px
    }
}

.deals .deal-label {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #333
}

@media(max-width:768px) {
    .deals .deal-label {
        text-align: left
    }
}

.deals .deal-line {
    color: #29af5c;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1875;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.deals .deal-columns {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media(max-width:768px) {
    .deals .deal-columns {
        flex-direction: row;
        padding: 0 12px
    }
}

@media(min-width:992px) {
    .deals .deal-columns {
        flex-direction: column
    }
}

.deals .deal-image {
    display: flex;
    flex-direction: column;
    margin: 10px auto 0
}

@media(max-width:768px) {
    .deals .deal-image {
        margin-top: 0;
        position: absolute;
        top: 50px;
        right: 0
    }

    [dir=rtl] .deals .deal-image {
        left: 0;
        right: auto
    }
}

.deals .deal-image img {
    max-height: 211px;
    max-width: 100%
}

@media(max-width:768px) {
    .deals .deal-image img {
        max-height: 156px
    }
}

@media(min-width:992px) {
    .deals .deal-image img {
        max-height: 211px
    }
}

.deals .deal-prices {
    align-self: center;
    display: flex;
    flex-direction: column;
    padding-left: 35px;
    margin-top: 15px
}

[dir=rtl] .deals .deal-prices {
    padding-left: 0;
    padding-right: 35px
}

@media(max-width:768px) {
    .deals .deal-prices {
        padding-left: 0;
        margin-top: 5px
    }
}

@media(min-width:992px) {
    .deals .deal-prices {
        align-items: center;
        padding-left: 0;
        padding-bottom: 20px
    }

    [dir=rtl] .deals .deal-prices {
        padding-left: 30px;
        padding-right: 0
    }
}

.deals .deal-advantages {
    text-transform: uppercase;
    padding-left: 0;
    margin-bottom: 0;
    color: #2e98f8;
    list-style-position: inside;
    padding-right: 0
}

.deals .deal-discount-name {
    align-items: center;
    display: flex;
    font-size: 14px;
    line-height: 1.1875;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media(min-width:992px) {
    .deals .deal-discount-name {
        font-size: 16px
    }
}

.deals .deal-old-price {
    color: #e74c3c;
    font-size: 16px;
    text-decoration: line-through;
    line-height: 19px
}

.deals .deal-new-price,
.deals .deal-old-price {
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.deals .deal-new-price {
    color: #000;
    display: flex;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px
}

.summary {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 30px
}

.summary .deals-line {
    display: flex;
    justify-content: space-between
}

.summary .deals-line .left {
    font-size: 13px
}

.summary .deals-line .right {
    font-size: 14px
}

.summary .deal-summary {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    align-items: flex-start;
    margin-top: 15px
}

.summary .deal-summary .image {
    max-width: 100px
}

.summary .line {
    color: #000;
    font-size: 14px;
    line-height: 1.467
}

.summary .line,
.summary .total-block {
    display: flex;
    justify-content: space-between
}

.summary .total-block {
    align-items: center;
    background-color: rgba(248, 231, 28, .2);
    border: 1px dashed #ea0013;
    border-radius: 3px;
    margin-top: 20px
}

.summary .total-block .image {
    margin: 20px 0
}

.summary .total-block .image img {
    max-width: 200px
}

.summary .total-block .prices {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin-right: 10px
}

[dir=rtl] .summary .total-block .prices {
    margin-left: 10px;
    margin-right: 0
}

.summary .total-block .prices .old {
    color: red;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: line-through
}

.summary .total-block .prices .total {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-top: 15px
}

.paypal-button+.google-pay-section {
    margin-top: 10px
}

.google-pay-wrapper {
    position: relative
}

.google-pay-wrapper.active {
    cursor: pointer
}

.google-pay-wrapper .google-pay-disabled {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .5);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.google-pay-wrapper .google-pay-disabled .spinner {
    transform: scale(.8)
}

.google-pay-wrapper .google-pay-disabled .spinner div:after {
    background-color: #fff
}

.guarantee {
    margin-top: 15px
}

.guarantee,
.guarantee .section1,
.guarantee .section1 .title {
    display: flex;
    flex-direction: column
}

.guarantee .section1 .title {
    align-items: center;
    position: relative
}

.guarantee .section1 .title:before {
    content: "";
    border-top: 2px solid #29af5c;
    display: block;
    position: absolute;
    top: 15px;
    width: 100%;
    z-index: 1
}

.guarantee .section1 .title .value {
    background-color: #fff;
    color: #000;
    font-size: 15px;
    line-height: 1.467;
    margin: 0 auto;
    padding: 5px 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 2
}

.guarantee .section1 .title .value span {
    color: #29af5c;
    font-weight: 700
}

.guarantee .section1 .image {
    align-self: center;
    max-width: 100%
}

.guarantee .section2 {
    align-items: center;
    display: flex;
    margin-top: 20px
}

.guarantee .section2 .image {
    margin-right: 15px;
    max-width: 103px
}

[dir=rtl] .guarantee .section2 .image {
    margin-left: 15px;
    margin-right: 0
}

.guarantee .section2 .text {
    color: #000;
    font-size: 13px;
    line-height: 1.33333333
}

.reviews {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    width: 100%
}

@media(min-width:768px) {
    .reviews {
        margin-left: auto;
        margin-right: auto;
        max-width: 970px
    }
}

.reviews>.inside {
    display: flex;
    flex-direction: column;
    margin: 0;
    grid-row-gap: 20px
}

@media(min-width:768px) {
    .reviews>.inside {
        flex-direction: column
    }
}

.reviews .review {
    display: flex;
    margin-bottom: 15px;
    width: 100%
}

@media(min-width:768px) {
    .reviews .review {
        margin-bottom: 0
    }
}

.reviews .review>.inside {
    display: flex;
    margin: 0;
    width: 100%
}

.reviews .image {
    align-self: flex-start;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%
}

[dir=rtl] .reviews .image {
    margin-left: 15px;
    margin-right: 0
}

.reviews .content {
    display: flex;
    flex-direction: column
}

.reviews .name {
    color: #3658a6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.reviews .city {
    color: #999;
    font-size: 12px;
    font-weight: 400
}

.reviews .text {
    color: #000;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 12px
}

.reviews .bottom {
    display: flex
}

.reviews .like {
    color: #3658a6;
    font-size: 11px;
    line-height: 1.467
}

.reviews .reply {
    color: #3658a6;
    font-size: 12px;
    line-height: 1.28571429;
    margin-left: 3px
}

.reviews .likes {
    color: #3658a6;
    font-size: 11px;
    line-height: 1.467;
    margin-left: 3px
}

[dir=rtl] .reviews .likes {
    margin-left: 0;
    margin-right: 3px
}

.reviews .likes i {
    font-size: 11px;
    margin-right: 3px
}

[dir=rtl] .reviews .likes i {
    margin-left: 3px;
    margin-right: 0
}

.reviews .date {
    color: #999;
    font-size: 11px;
    line-height: 1.467;
    margin-left: 3px
}

[dir=rtl] .reviews .date {
    margin-left: 0;
    margin-right: 3px
}

.question {
    align-items: center;
    background-color: #eee;
    color: #000;
    display: flex;
    font-size: 16px;
    justify-content: center;
    line-height: 1.35em;
    padding: 20px 0;
    text-align: center
}

.question a {
    color: #000 !important;
    text-decoration: underline !important
}

.amc82 {
    color: #333;
    display: flex;
    flex-direction: column;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.467;
    margin-bottom: 50px;
    padding: 0 20px;
    counter-reset: section-step
}

@media(min-width:768px) {
    .amc82 {
        padding: 0
    }
}

@media(max-width:992px) {
    .amc82 {
        padding: 0 10px
    }
}

.amc82 .main__deal__coupon {
    margin-bottom: 15px;
    margin-top: 15px
}

.amc82 .only-desktop,
.amc82 .only-less-than-desktop {
    display: none
}

@media(max-width:768px) {
    .amc82 .only-less-than-desktop {
        display: block
    }
}

@media(min-width:768px) {
    .amc82 .only-desktop {
        display: block
    }
}

.amc82 input,
.amc82 select,
.amc82 textarea {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.15;
    background-color: #f7f7f8
}

.amc82 a {
    color: #29af5c;
    text-decoration: none
}

.amc82 a:focus,
.amc82 a:hover {
    color: #29af5c;
    text-decoration: underline
}

.amc82 .left-column {
    margin: 0
}

@media(min-width:768px) {
    .amc82 .left-column {
        max-width: 352px
    }
}

@media(max-width:500px) {
    .amc82 .left-column .wcu {
        order: 1
    }

    .amc82 .left-column .summary {
        order: -1
    }

    .amc82 .left-column .reviews {
        order: 0
    }

    .amc82 .left-column .pay-button {
        order: 2
    }
}

.amc82 .right-column {
    width: 100%;
    margin: -4px 0 0
}

.amc82 .main-content {
    flex-direction: column
}

.amc82 .main-content--inside {
    justify-content: space-between;
    grid-column-gap: 20px;
    flex-direction: column-reverse
}

@media(min-width:768px) {
    .amc82 .main-content--inside {
        flex-direction: row
    }
}

@media(max-width:768px) {
    .amc82 .main-content--inside {
        margin-top: 0
    }
}

.amc82 .main-content .right-block {
    margin-bottom: 25px
}

.amc82 .warranty-field {
    background-color: rgba(46, 152, 248, .25);
    justify-content: center
}

.amc82 .warranty-field .warranty-arrow-right {
    top: 18px;
    left: 10px
}

.amc82 .warranty-field .warranty-arrow-left {
    top: 18px;
    right: 10px
}

@media(min-width:992px) {
    .amc82 .warranty-field .warranty-arrow-right {
        left: 45px
    }

    .amc82 .warranty-field .warranty-arrow-left {
        right: 45px
    }
}

.amc82 .credit-cards-list {
    margin-top: 0
}

.amc82 .credit-cards-label {
    font-family: Roboto, sans-serif
}

.amc82 .credit-cards>.inside {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.amc82 .pay-card-button {
    font-family: Roboto, sans-serif
}

.amc82 .pay-card-button .label {
    text-transform: none;
    font-weight: 400
}

.amc82 .pay-card-button .label .title {
    font-size: 26px;
    line-height: 30.5px;
    font-weight: 700
}

.amc82 .pay-card-button .label .subtitle {
    text-transform: lowercase;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px
}

.amc82 .pay-card-button .label .subtitle:first-letter {
    text-transform: uppercase
}

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

.alert.alert-success {
    background-color: #6bbd6e;
    color: #fff
}

footer.footer {
    display: none;
}

.fixed-region .timer-mobile {
    display: flex
}

@media screen and (min-width:768px) {
    .fixed-region .timer-mobile {
        background-color: #30bd51
    }
}

footer .attachments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

footer .attachments a {
    text-decoration: underline;
}

footer .text-gray {
    color: #fff;
    margin-top: 15px;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
}